Defines the semantics of group assignments
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/GroupType", "title": "Group Type", "type": "object", "description": "Defines the semantics of group assignments", "required": [ "groupTypeId", "title" ], "properties": { "groupTypeId": { "type": "string", "pattern": "^([a-z0-9-]+(?:[.][a-z0-9-]+)*):([a-zA-Z0-9._\\-\\/]+)$" }, "title": { "type": "string", "minLength": 1, "maxLength": 255 }, "description": { "type": "string", "minLength": 1 } } }