11 lines
370 B
JSON
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"] }
|
|
}
|
|
}
|