Files
browser/plugins/examples/scum-server-plugin/schemas/bridge/vehicle-spawn.payload.schema.json
T

11 lines
370 B
JSON

{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "SCUMVehicleSpawnPayload",
"type": "object",
"additionalProperties": false,
"required": ["vehicleCode"],
"properties": {
"vehicleCode": { "type": "string", "minLength": 3, "maxLength": 64, "pattern": "^[A-Za-z][A-Za-z0-9_]{2,63}$", "enum": ["BPC_Laika_C", "BPC_WolfsWagen_C"] }
}
}