You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
71 lines
1.6 KiB
JSON
71 lines
1.6 KiB
JSON
{
|
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
"additionalProperties": false,
|
|
"properties": {
|
|
"$schema": {
|
|
"type": "string",
|
|
"format": "uri"
|
|
},
|
|
"community": {
|
|
"type": "array",
|
|
"items": {
|
|
"type": "object",
|
|
"properties": {
|
|
"image": {
|
|
"type": "string"
|
|
},
|
|
"date": {
|
|
"type": "string",
|
|
"pattern": "^\\d+-\\d+-\\d+$"
|
|
},
|
|
"id": {
|
|
"type": "string"
|
|
},
|
|
"versionRange": {
|
|
"type": "array",
|
|
"items": {
|
|
"type": "string",
|
|
"pattern": "^\\d+\\.\\d+\\.\\d+$"
|
|
},
|
|
"minItems": 1,
|
|
"maxItems": 2
|
|
}
|
|
},
|
|
"required": ["date", "id", "versionRange"],
|
|
"additionalProperties": false
|
|
}
|
|
},
|
|
"cloud": {
|
|
"type": "array",
|
|
"items": {
|
|
"type": "object",
|
|
"properties": {
|
|
"image": {
|
|
"type": "string"
|
|
},
|
|
"date": {
|
|
"type": "string",
|
|
"pattern": "^\\d+-\\d+-\\d+$"
|
|
},
|
|
"id": {
|
|
"type": "string"
|
|
},
|
|
"versionRange": {
|
|
"type": "array",
|
|
"items": {
|
|
"type": "string",
|
|
"pattern": "^\\d+\\.\\d+\\.\\d+$"
|
|
},
|
|
"minItems": 1,
|
|
"maxItems": 2
|
|
}
|
|
},
|
|
"required": ["date", "id", "versionRange"],
|
|
"additionalProperties": false
|
|
}
|
|
}
|
|
},
|
|
"required": ["$schema", "community"],
|
|
"type": "object"
|
|
}
|