{ "$schema": "https://json-schema.org/draft/2020-12/schema", "title": "SCUMFlagOwnershipResult", "type": "object", "additionalProperties": false, "required": ["ownership"], "properties": { "ownership": { "type": "array", "maxItems": 1, "items": { "type": "object", "additionalProperties": false, "required": ["flagId", "status"], "properties": { "flagId": { "type": "string", "minLength": 1, "maxLength": 96, "pattern": "^[A-Za-z0-9_.:-]{1,96}$" }, "ownerPlayerId": { "type": "string", "minLength": 1, "maxLength": 96, "pattern": "^[A-Za-z0-9_.:-]{1,96}$" }, "ownerPlayerName": { "type": "string", "minLength": 1, "maxLength": 80 }, "squadId": { "type": "string", "minLength": 1, "maxLength": 96, "pattern": "^[A-Za-z0-9_.:-]{1,96}$" }, "squadName": { "type": "string", "minLength": 1, "maxLength": 80 }, "status": { "type": "string", "minLength": 1, "maxLength": 16, "enum": ["active", "inactive", "contested", "unknown"] }, "lastUpdatedAt": { "type": "string", "minLength": 1, "maxLength": 64, "format": "date-time" } } } } } }