nodecid/config/nodecid.schema.json

37 lines
836 B
JSON
Raw Normal View History

2023-10-29 07:35:26 +00:00
{
"$schema": "http://json-schema.org/draft-07/schema#",
"type": "object",
"properties": {
"start": {
2023-10-29 10:49:04 +00:00
"anyOf": [
{
"type": "array",
"items": {
"type": "string"
}
},
{
"type": "string"
}
]
2023-10-29 07:35:26 +00:00
},
"preflight": {
"anyOf": [
{
"type": "array",
"items": {
"type": "string"
}
},
{
"type": "string"
}
]
},
"redeploy_path": {
"type": "string"
}
},
"required": ["start", "preflight"]
}