{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/GroupLabel",
"title": "GroupLabel",
"additionalProperties": false,
"description": "A group label.",
"properties": {
"text": {
"description": "The group label name.",
"type": "string"
},
"title": {
"description": "The title of the group label.",
"type": "string"
},
"type": {
"description": "The type of the group label.",
"enum": [
"ADMIN",
"SINGLE",
"MULTIPLE"
],
"type": "string"
}
},
"type": "object",
"xml": {
"name": "grouplabel"
}
}