11 lines
319 B
JSON
11 lines
319 B
JSON
{
|
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
"title": "SCUMVehicleOwnerParameters",
|
|
"type": "object",
|
|
"additionalProperties": false,
|
|
"required": ["vehicleId"],
|
|
"properties": {
|
|
"vehicleId": { "type": "string", "minLength": 1, "maxLength": 96, "pattern": "^[A-Za-z0-9_.:-]{1,96}$" }
|
|
}
|
|
}
|