Group instance that resources can be assigned to
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/Group", "title": "Group", "type": "object", "description": "Group instance that resources can be assigned to", "required": [ "groupId", "groupTypeId", "title" ], "properties": { "groupId": { "$ref": "#/components/schemas/GroupId" }, "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 } } }