This commit is contained in:
Benjamin Toby
2025-01-16 09:03:11 +01:00
parent a7b4e3f00b
commit 6867e8c17c
6 changed files with 4 additions and 13 deletions
+39
View File
@@ -0,0 +1,39 @@
{
"$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"]
}