posh-providers/stackitcloud/stackit/config.schema.json
2025-09-22 10:25:50 +02:00

43 lines
926 B
JSON

{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://github.com/foomo/posh-providers/stackitcloud/stackit",
"$ref": "#/$defs/Config",
"$defs": {
"Cluster": {
"properties": {
"name": {
"type": "string"
}
},
"additionalProperties": false,
"type": "object"
},
"Config": {
"properties": {
"projects": {
"additionalProperties": {
"$ref": "#/$defs/Project"
},
"type": "object"
}
},
"additionalProperties": false,
"type": "object"
},
"Project": {
"properties": {
"id": {
"type": "string"
},
"clusters": {
"additionalProperties": {
"$ref": "#/$defs/Cluster"
},
"type": "object"
}
},
"additionalProperties": false,
"type": "object"
}
}
}