buncid/schema/nodecid.schema.json
Benjamin Toby 6867e8c17c Updates
2025-01-16 09:03:11 +01:00

40 lines
900 B
JSON

{
"$schema": "http://json-schema.org/draft-07/schema#",
"type": "object",
"properties": {
"start": {
"anyOf": [
{
"type": "array",
"items": {
"type": "string"
}
},
{
"type": "string"
}
]
},
"preflight": {
"anyOf": [
{
"type": "array",
"items": {
"type": "string"
}
},
{
"type": "string"
}
]
},
"redeploy_path": {
"type": "string"
},
"first_run": {
"type": "boolean"
}
},
"required": ["start", "preflight"]
}