esa-nodecg/shared/schemas/countdown.json
2024-03-13 11:26:46 +01:00

24 lines
430 B
JSON

{
"$schema": "http://json-schema.org/draft-07/schema",
"type": "object",
"additionalProperties": false,
"properties": {
"remaining": {
"type": "number",
"default": 0
},
"originalDuration": {
"type": "number",
"default": 3600000
},
"timestamp": {
"type": "number",
"default": 0
}
},
"required": [
"remaining",
"originalDuration",
"timestamp"
]
}