41 lines
737 B
JSON
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": []
|
|
} |