{ "$schema": "https://json-schema.org/draft/2020-12/schema", "title": "ScumDatabaseVehiclesResult", "type": "object", "additionalProperties": false, "required": ["rows"], "properties": { "rows": { "type": "array", "maxItems": 500, "items": { "type": "object", "additionalProperties": false, "required": ["gameVehicleId"], "properties": { "gameVehicleId": { "type": "string", "minLength": 1, "maxLength": 32 }, "vehicleClass": { "type": ["string", "null"], "maxLength": 120 }, "displayName": { "type": ["string", "null"], "maxLength": 120 }, "functional": { "type": ["integer", "null"], "enum": [0, 1, null] }, "existsInGame": { "type": ["integer", "null"], "enum": [0, 1, null] }, "x": { "type": ["number", "null"] }, "y": { "type": ["number", "null"] }, "z": { "type": ["number", "null"] }, "lastAccessTime": { "type": ["string", "null"], "maxLength": 64 }, "observedAt": { "type": ["string", "null"], "maxLength": 64 } } } } } }