mirror of
https://github.com/outbackdingo/cozystack.git
synced 2026-03-22 06:41:22 +00:00
48 lines
863 B
JSON
48 lines
863 B
JSON
{
|
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
"type": "object",
|
|
"properties": {
|
|
"core": {
|
|
"oneOf": [
|
|
{ "type": "object" },
|
|
{ "type": "null" }
|
|
]
|
|
},
|
|
"bootstrap": {
|
|
"type": "object",
|
|
"oneOf": [
|
|
{ "type": "object" },
|
|
{ "type": "null" }
|
|
]
|
|
},
|
|
"controlPlane": {
|
|
"type": "object",
|
|
"oneOf": [
|
|
{ "type": "object" },
|
|
{ "type": "null" }
|
|
]
|
|
},
|
|
"infrastructure": {
|
|
"type": "object",
|
|
"oneOf": [
|
|
{ "type": "object" },
|
|
{ "type": "null" }
|
|
]
|
|
},
|
|
"addon": {
|
|
"type": "object",
|
|
"oneOf": [
|
|
{ "type": "object" },
|
|
{ "type": "null" }
|
|
]
|
|
},
|
|
"ipam": {
|
|
"type": "object",
|
|
"oneOf": [
|
|
{ "type": "object" },
|
|
{ "type": "null" }
|
|
]
|
|
}
|
|
}
|
|
}
|