14 lines
553 B
JSON
14 lines
553 B
JSON
{
|
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
"title": "SCUMPlayerFameSetConfirmation",
|
|
"type": "object",
|
|
"additionalProperties": false,
|
|
"required": ["playerId", "fame", "observedAt"],
|
|
"properties": {
|
|
"playerId": { "type": "string", "minLength": 17, "maxLength": 17, "pattern": "^[0-9]{17}$" },
|
|
"fame": { "type": "integer", "minimum": -2147483648, "maximum": 2147483647 },
|
|
"observationId": { "type": "string", "minLength": 1, "maxLength": 160 },
|
|
"observedAt": { "type": "string", "format": "date-time" }
|
|
}
|
|
}
|