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

33 lines
500 B
JSON

{
"$schema": "http://json-schema.org/draft-07/schema",
"type": "object",
"additionalProperties": false,
"properties": {
"start": {
"oneOf": [
{
"type": "number"
},
{
"type": "null"
}
],
"default": null
},
"end": {
"oneOf": [
{
"type": "number"
},
{
"type": "null"
}
],
"default": null
}
},
"required": [
"start",
"end"
]
}