27 lines
572 B
JSON
27 lines
572 B
JSON
{
|
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
"title": "SCUMRewardDeliverResult",
|
|
"type": "object",
|
|
"additionalProperties": false,
|
|
"required": ["accepted", "status"],
|
|
"properties": {
|
|
"accepted": {
|
|
"type": "boolean"
|
|
},
|
|
"status": {
|
|
"type": "string",
|
|
"maxLength": 16,
|
|
"enum": ["queued", "delivered", "rejected"]
|
|
},
|
|
"deliveryId": {
|
|
"type": "string",
|
|
"maxLength": 96,
|
|
"pattern": "^[A-Za-z0-9_.:-]{1,96}$"
|
|
},
|
|
"message": {
|
|
"type": "string",
|
|
"maxLength": 200
|
|
}
|
|
}
|
|
}
|