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

41 lines
737 B
JSON

{
"$schema": "http://json-schema.org/draft-07/schema",
"type": "array",
"items": {
"type": "object",
"additionalProperties": false,
"properties": {
"event": {
"type": "string"
},
"_id": {
"type": "number"
},
"donor_visiblename": {
"type": "string"
},
"amount": {
"type": "number"
},
"comment_state": {
"type": "string"
},
"comment": {
"type": "string"
},
"time_received": {
"type": "string"
}
},
"required": [
"event",
"_id",
"donor_visiblename",
"amount",
"comment_state",
"comment",
"time_received"
]
},
"default": []
}