{ "$schema": "https://json-schema.org/draft/2020-12/schema", "title": "SCUMVehiclesResult", "type": "object", "additionalProperties": false, "required": ["rows"], "properties": { "rows": { "type": "array", "maxItems": 500, "items": { "type": "object", "additionalProperties": false, "required": ["vehicleId", "entityId", "className", "label", "x", "y", "z", "lastAccessTime", "isFunctional"], "properties": { "vehicleId": { "type": "string", "minLength": 1, "maxLength": 96 }, "entityId": { "type": "string", "minLength": 1, "maxLength": 96 }, "className": { "type": "string", "minLength": 1, "maxLength": 120 }, "label": { "type": "string", "maxLength": 120 }, "lastAccessTime": { "type": ["string", "null"], "format": "date-time" }, "isFunctional": { "type": "integer", "minimum": 0, "maximum": 1 }, "x": { "type": "number" }, "y": { "type": "number" }, "z": { "type": "number" } } } }, "truncated": { "type": "boolean" } } }