{ "$schema": "https://json-schema.org/draft/2020-12/schema", "title": "SCUMVehiclesReadResult", "type": "object", "additionalProperties": false, "required": ["rows"], "properties": { "rows": { "type": "array", "maxItems": 500, "items": { "type": "object", "additionalProperties": false, "required": ["vehicleEntityId", "entityId", "vehicleAssetId", "isVehicleFunctional", "vehicleLabel", "ownerProfileId", "ownerExternalPlayerId", "ownerSquadId", "x", "y", "z"], "properties": { "vehicleEntityId": { "type": "integer", "minimum": 0, "maximum": 2147483647 }, "entityId": { "type": "integer", "minimum": 0, "maximum": 2147483647 }, "vehicleAssetId": { "type": ["integer", "null"], "minimum": 0, "maximum": 2147483647 }, "isVehicleFunctional": { "type": ["integer", "null"], "minimum": 0, "maximum": 1 }, "vehicleLabel": { "type": ["string", "null"], "minLength": 1, "maxLength": 120 }, "ownerProfileId": { "type": ["integer", "null"], "minimum": 0, "maximum": 2147483647 }, "ownerExternalPlayerId": { "type": ["string", "null"], "minLength": 1, "maxLength": 96, "pattern": "^[A-Za-z0-9_.:-]{1,96}$" }, "ownerSquadId": { "type": ["integer", "null"], "minimum": 0, "maximum": 2147483647 }, "x": { "type": ["number", "null"] }, "y": { "type": ["number", "null"] }, "z": { "type": ["number", "null"] } } } } } }