monaco-yaml/test/fixtures/testArrayIndent.json

34 lines
641 B
JSON

{
"$schema": "http://json-schema.org/draft-07/schema#",
"definitions": {
"installStep": {
"properties": {
"helm": {
"additionalProperties": false,
"properties": {
"name": {
"type": "string"
}
},
"required": ["name"],
"type": "object"
}
},
"required": ["helm"],
"type": "object"
}
},
"properties": {
"install": {
"items": {
"anyOf": [
{
"$ref": "#/definitions/installStep"
}
]
},
"type": "array"
}
},
"type": "object"
}