27 lines
910 B
JSON
27 lines
910 B
JSON
{
|
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
"title": "SCUMNativeTimedGiftsResult",
|
|
"type": "object",
|
|
"additionalProperties": false,
|
|
"required": ["rows"],
|
|
"properties": {
|
|
"rows": {
|
|
"type": "array",
|
|
"maxItems": 500,
|
|
"items": {
|
|
"type": "object",
|
|
"additionalProperties": false,
|
|
"required": ["timedGiftId", "userProfileId", "mapId", "spawnTime", "spawnAt"],
|
|
"properties": {
|
|
"timedGiftId": { "type": "string", "minLength": 1, "maxLength": 192 },
|
|
"userProfileId": { "type": ["string", "null"], "minLength": 1, "maxLength": 96 },
|
|
"mapId": { "type": ["string", "null"], "minLength": 1, "maxLength": 96 },
|
|
"spawnTime": { "type": ["integer", "null"] },
|
|
"spawnAt": { "type": ["string", "null"], "format": "date-time" }
|
|
}
|
|
}
|
|
},
|
|
"truncated": { "type": "boolean" }
|
|
}
|
|
}
|