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

76 lines
1.4 KiB
JSON

{
"$schema": "http://json-schema.org/draft-07/schema",
"type": "array",
"items": {
"type": "object",
"additionalProperties": false,
"properties": {
"id": {
"type": "number"
},
"name": {
"type": "string"
},
"description": {
"type": "string"
},
"total": {
"type": "number"
},
"game": {
"type": "string"
},
"category": {
"type": "string"
},
"endTime": {
"type": "number"
},
"war": {
"type": "boolean"
},
"allowUserOptions": {
"type": "boolean"
},
"options": {
"type": "array",
"items": {
"type": "object",
"additionalProperties": false,
"properties": {
"id": {
"type": "number"
},
"parent": {
"type": "number"
},
"name": {
"type": "string"
},
"total": {
"type": "number"
}
},
"required": [
"id",
"parent",
"name",
"total"
]
}
},
"goal": {
"type": "number"
}
},
"required": [
"id",
"name",
"total",
"war",
"allowUserOptions",
"options"
]
},
"default": []
}