11 lines
316 B
JSON
11 lines
316 B
JSON
{
|
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
"title": "SCUMVehicleSpawnResult",
|
|
"type": "object",
|
|
"additionalProperties": false,
|
|
"required": ["outcome"],
|
|
"properties": {
|
|
"outcome": { "type": "string", "minLength": 6, "maxLength": 9, "enum": ["succeeded", "failed", "unknown"] }
|
|
}
|
|
}
|