{ "$schema": "https://json-schema.org/draft/2020-12/schema", "title": "SCUMPositionsResult", "type": "object", "additionalProperties": false, "required": ["rows"], "properties": { "rows": { "type": "array", "maxItems": 500, "items": { "type": "object", "additionalProperties": false, "required": ["subjectType", "subjectId", "x", "y"], "properties": { "subjectType": { "enum": ["player", "vehicle", "flag"] }, "subjectId": { "type": "string", "minLength": 1, "maxLength": 96 }, "gamePlayerId": { "type": "string", "minLength": 1, "maxLength": 96 }, "vehicleId": { "type": "string", "minLength": 1, "maxLength": 96 }, "entityId": { "type": "string", "minLength": 1, "maxLength": 96 }, "x": { "type": "number" }, "y": { "type": "number" }, "z": { "type": "number" }, "lastSaveTime": { "type": "string", "format": "date-time" } } } }, "truncated": { "type": "boolean" } } }