{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/ClearAssessorsRequestContent", "title": "ClearAssessorsRequestContent", "type": "object", "additionalProperties": false, "required": [ "connection", "assessors" ], "properties": { "connection": { "type": "string", "description": "The name of the connection containing the user whose assessors should be cleared.", "minLength": 1, "maxLength": 128, "pattern": "^[a-zA-Z0-9](-[a-zA-Z0-9]|[a-zA-Z0-9])*$" }, "assessors": { "type": "array", "description": "List of assessors to clear.", "minItems": 1, "items": { "$ref": "#/components/schemas/AssessorsTypeEnum" } } } }