26 lines
468 B
JSON
26 lines
468 B
JSON
{
|
|
"$schema": "http://json-schema.org/draft-07/schema",
|
|
"type": "object",
|
|
"additionalProperties": false,
|
|
"properties": {
|
|
"show": {
|
|
"type": "boolean",
|
|
"default": false
|
|
},
|
|
"runData": {
|
|
"oneOf": [
|
|
{
|
|
"$ref": "../node_modules/speedcontrol-util/schemas/reused/RunData.json"
|
|
},
|
|
{
|
|
"type": "null"
|
|
}
|
|
],
|
|
"default": null
|
|
}
|
|
},
|
|
"required": [
|
|
"show",
|
|
"runData"
|
|
]
|
|
} |