Files
browser/plugins/examples/scum-server-plugin/schemas/scum-live/positions-read.result.schema.json
T
2026-08-13 09:20:42 +08:00

35 lines
1.8 KiB
JSON

{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "SCUMPositionsReadResult",
"type": "object",
"additionalProperties": false,
"required": ["rows"],
"properties": {
"rows": {
"type": "array",
"maxItems": 500,
"items": {
"type": "object",
"additionalProperties": false,
"required": ["subjectType", "subjectId", "externalPlayerId", "profileId", "prisonerId", "entityId", "vehicleEntityId", "vehicleAssetId", "flagElementId", "x", "y", "z", "sourceTimeValue", "sourceTimeKind"],
"properties": {
"subjectType": { "enum": ["player", "vehicle", "flag"] },
"subjectId": { "type": "string", "minLength": 1, "maxLength": 96, "pattern": "^[A-Za-z0-9_.:-]{1,96}$" },
"externalPlayerId": { "type": ["string", "null"], "minLength": 1, "maxLength": 96, "pattern": "^[A-Za-z0-9_.:-]{1,96}$" },
"profileId": { "type": ["integer", "null"], "minimum": 0, "maximum": 2147483647 },
"prisonerId": { "type": ["integer", "null"], "minimum": 0, "maximum": 2147483647 },
"entityId": { "type": ["integer", "null"], "minimum": 0, "maximum": 2147483647 },
"vehicleEntityId": { "type": ["integer", "null"], "minimum": 0, "maximum": 2147483647 },
"vehicleAssetId": { "type": ["integer", "null"], "minimum": 0, "maximum": 2147483647 },
"flagElementId": { "type": ["integer", "null"], "minimum": 0, "maximum": 2147483647 },
"x": { "type": ["number", "null"] },
"y": { "type": ["number", "null"] },
"z": { "type": ["number", "null"] },
"sourceTimeValue": { "type": ["integer", "null"], "minimum": 0, "maximum": 2147483647 },
"sourceTimeKind": { "type": ["string", "null"], "enum": ["prisoner.last_save_time", null] }
}
}
}
}
}