mirror of
https://github.com/danbulant/monaco-yaml
synced 2026-05-24 20:31:58 +00:00
34 lines
641 B
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"
|
|
}
|