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

27 lines
435 B
JSON

{
"$schema": "http://json-schema.org/draft-07/schema",
"type": "object",
"additionalProperties": false,
"properties": {
"current": {
"anyOf": [
{
"type": "string"
},
{
"type": "string",
"enum": [
"RunInfo"
]
},
{
"type": "null"
}
],
"default": null
}
},
"required": [
"current"
]
}