34 lines
891 B
JSON
34 lines
891 B
JSON
{
|
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
"title": "SCUMRewardDeliverPayload",
|
|
"type": "object",
|
|
"additionalProperties": false,
|
|
"required": ["grantId", "playerId", "items"],
|
|
"properties": {
|
|
"playerId": {
|
|
"type": "string",
|
|
"maxLength": 96,
|
|
"pattern": "^[A-Za-z0-9_.:-]{1,96}$"
|
|
},
|
|
"grantId": {
|
|
"type": "string",
|
|
"maxLength": 96,
|
|
"pattern": "^[A-Za-z0-9_.:-]{1,96}$"
|
|
},
|
|
"items": {
|
|
"type": "array",
|
|
"minItems": 1,
|
|
"maxItems": 8,
|
|
"items": {
|
|
"type": "object",
|
|
"additionalProperties": false,
|
|
"required": ["catalogItemKey", "quantity"],
|
|
"properties": {
|
|
"catalogItemKey": { "type": "string", "maxLength": 64, "pattern": "^[a-z0-9-]{1,64}$" },
|
|
"quantity": { "type": "integer", "minimum": 1, "maximum": 100 }
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|