13 lines
437 B
JSON
13 lines
437 B
JSON
{
|
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
"title": "SCUMPositionsReadParameters",
|
|
"type": "object",
|
|
"additionalProperties": false,
|
|
"required": ["subjectType", "limit", "offset"],
|
|
"properties": {
|
|
"subjectType": { "enum": ["all", "player", "vehicle", "flag"] },
|
|
"limit": { "type": "integer", "minimum": 1, "maximum": 500 },
|
|
"offset": { "type": "integer", "minimum": 0, "maximum": 1000000 }
|
|
}
|
|
}
|