2021-03-08 18:12:59 +05:30
|
|
|
{
|
|
|
|
"type": "object",
|
2021-03-11 19:13:27 +05:30
|
|
|
"additionalProperties": false,
|
|
|
|
"required": [
|
|
|
|
"id", "name", "createdAt", "updatedAt", "version", "packageType",
|
|
|
|
"project", "tags", "pipelines", "versions", "metadata"
|
|
|
|
],
|
2021-03-08 18:12:59 +05:30
|
|
|
"properties": {
|
|
|
|
"id": {
|
|
|
|
"type": "string"
|
|
|
|
},
|
|
|
|
"name": {
|
|
|
|
"type": "string"
|
|
|
|
},
|
|
|
|
"createdAt": {
|
|
|
|
"type": "string"
|
|
|
|
},
|
|
|
|
"updatedAt": {
|
|
|
|
"type": "string"
|
|
|
|
},
|
|
|
|
"version": {
|
|
|
|
"type": ["string", "null"]
|
|
|
|
},
|
2021-03-11 19:13:27 +05:30
|
|
|
"packageType": {
|
2021-03-08 18:12:59 +05:30
|
|
|
"type": ["string"],
|
|
|
|
"enum": ["MAVEN", "NPM", "CONAN", "NUGET", "PYPI", "COMPOSER", "GENERIC", "GOLANG", "DEBIAN"]
|
|
|
|
},
|
|
|
|
"tags": {
|
2021-03-11 19:13:27 +05:30
|
|
|
"type": "object",
|
|
|
|
"additionalProperties": false,
|
|
|
|
"properties": {
|
|
|
|
"pageInfo": { "type": "object" },
|
|
|
|
"edges": { "type": "array" },
|
|
|
|
"nodes": { "type": "array" }
|
|
|
|
}
|
2021-03-08 18:12:59 +05:30
|
|
|
},
|
|
|
|
"project": {
|
|
|
|
"type": "object"
|
|
|
|
},
|
|
|
|
"pipelines": {
|
2021-03-11 19:13:27 +05:30
|
|
|
"type": "object",
|
|
|
|
"additionalProperties": false,
|
|
|
|
"properties": {
|
|
|
|
"pageInfo": { "type": "object" },
|
|
|
|
"count": { "type": "integer" },
|
|
|
|
"edges": { "type": "array" },
|
|
|
|
"nodes": { "type": "array" }
|
|
|
|
}
|
2021-03-08 18:12:59 +05:30
|
|
|
},
|
|
|
|
"versions": {
|
2021-03-11 19:13:27 +05:30
|
|
|
"type": "object",
|
|
|
|
"additionalProperties": false,
|
|
|
|
"properties": {
|
|
|
|
"pageInfo": { "type": "object" },
|
|
|
|
"edges": { "type": "array" },
|
|
|
|
"nodes": { "type": "array" }
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"metadata": {
|
|
|
|
"anyOf": [
|
|
|
|
{ "$ref": "./package_composer_metadata.json" },
|
|
|
|
{ "type": "null" }
|
|
|
|
]
|
2021-03-08 18:12:59 +05:30
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|