43 lines
895 B
JSON
43 lines
895 B
JSON
{
|
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
"type": "object",
|
|
"properties": {
|
|
"version": {
|
|
"type": "string"
|
|
},
|
|
"fromVersion": {
|
|
"type": "string"
|
|
},
|
|
"changes": {
|
|
"type": "array",
|
|
"minItems": 1,
|
|
"items": {
|
|
"type": "object",
|
|
"properties": {
|
|
"path": {
|
|
"type": "string"
|
|
},
|
|
"script": {
|
|
"type": "string"
|
|
},
|
|
"publishConfigurations": {
|
|
"type": "string",
|
|
"enum": [
|
|
"AllConfigurations",
|
|
"OnlyCustomConfigurations"
|
|
],
|
|
"default": "AllConfigurations"
|
|
}
|
|
},
|
|
"required": [ "path", "script" ],
|
|
"additionalProperties": false
|
|
}
|
|
}
|
|
},
|
|
"additionalProperties": false,
|
|
"required": [
|
|
"version",
|
|
"fromVersion",
|
|
"changes"
|
|
]
|
|
} |