buncid/config/nodecid.schema.json

27 lines
587 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": {
"type": "string"
},
"preflight": {
"anyOf": [
{
"type": "array",
"items": {
"type": "string"
}
},
{
"type": "string"
}
]
},
"redeploy_path": {
"type": "string"
}
},
"required": ["start", "preflight"]
}