23 lines
453 B
JSON
23 lines
453 B
JSON
{
|
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
"title": "SCUMPlayerLookupPayload",
|
|
"type": "object",
|
|
"additionalProperties": false,
|
|
"required": ["query", "maxResults"],
|
|
"properties": {
|
|
"query": {
|
|
"type": "string",
|
|
"minLength": 1,
|
|
"maxLength": 80
|
|
},
|
|
"includeOffline": {
|
|
"type": "boolean"
|
|
},
|
|
"maxResults": {
|
|
"type": "integer",
|
|
"minimum": 1,
|
|
"maximum": 50
|
|
}
|
|
}
|
|
}
|