32 lines
1.1 KiB
JSON
32 lines
1.1 KiB
JSON
{
|
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
"title": "SCUMFlagsResult",
|
|
"type": "object",
|
|
"additionalProperties": false,
|
|
"required": ["rows"],
|
|
"properties": {
|
|
"rows": {
|
|
"type": "array",
|
|
"maxItems": 500,
|
|
"items": {
|
|
"type": "object",
|
|
"additionalProperties": false,
|
|
"required": ["flagId"],
|
|
"properties": {
|
|
"flagId": { "type": "string", "minLength": 1, "maxLength": 96 },
|
|
"entityId": { "type": "string", "minLength": 1, "maxLength": 96 },
|
|
"ownerProfileId": { "type": "string", "minLength": 1, "maxLength": 96 },
|
|
"ownerPlayerId": { "type": "string", "minLength": 1, "maxLength": 96 },
|
|
"baseId": { "type": "string", "minLength": 1, "maxLength": 96 },
|
|
"overtakerProfileId": { "type": "string", "minLength": 1, "maxLength": 96 },
|
|
"overtakeEndTime": { "type": "string", "format": "date-time" },
|
|
"x": { "type": "number" },
|
|
"y": { "type": "number" },
|
|
"z": { "type": "number" }
|
|
}
|
|
}
|
|
},
|
|
"truncated": { "type": "boolean" }
|
|
}
|
|
}
|