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

31 lines
568 B
JSON

{
"$schema": "http://json-schema.org/draft-07/schema",
"type": "object",
"additionalProperties": {
"type": "object",
"additionalProperties": {
"type": "object",
"additionalProperties": false,
"properties": {
"x": {
"type": "number"
},
"y": {
"type": "number"
},
"width": {
"type": "number"
},
"height": {
"type": "number"
}
},
"required": [
"x",
"y",
"width",
"height"
]
}
}
}