mirror of
https://github.com/foomo/posh-providers.git
synced 2025-10-16 12:35:41 +00:00
43 lines
926 B
JSON
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"
|
|
}
|
|
}
|
|
} |