Schema resource_core_patch.json
Show original (referenced schemas with $ref)
{
"$schema": "http://json-schema.org/draft-04/schema#",
"additionalProperties": false,
"description": "Describes the foundations of all NMOS resources",
"properties": {
"description": {
"description": "Detailed description of the resource. Set to null to restore default description.",
"type": [
"null",
"string"
]
},
"label": {
"description": "Freeform string label for the resource. Set to null to restore default label.",
"type": [
"null",
"string"
]
},
"tags": {
"description": "Key value set of freeform string tags to aid in filtering resources. Set to null to restore default tags. Values should be represented as an array of strings. Can be empty. Set to null to delete or restore default values for a tag.",
"patternProperties": {
"": {
"items": {
"type": "string"
},
"type": [
"null",
"array"
]
}
},
"type": [
"null",
"object"
]
}
},
"title": "Base resource",
"type": "object"
}