{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/GetGroupSchemaResponse", "title": "GetGroupSchemaResponse", "type": "object", "properties": { "urn:ietf:params:scim:schemas:core:2.0:Group": { "type": "object", "required": [ "id", "name", "description" ], "properties": { "id": { "type": "string", "example": "urn:ietf:params:scim:schemas:core:2.0:Group", "description": "A unique identifier for the group." }, "name": { "type": "string", "example": "Group", "description": "The name of the group." }, "description": { "type": "string", "example": "Group", "description": "Description of the group." }, "attributes": { "type": "array", "items": { "$ref": "#/components/schemas/AttributesObject" }, "description": "A list of attributes of this group." } }, "description": "The core extension of SCIM 2." }, "urn:scim:schemas:extension:cisco:webexidentity:2.0:Group": { "type": "object", "required": [ "id", "name", "description" ], "properties": { "id": { "type": "string", "example": "urn:scim:schemas:extension:cisco:webexidentity:2.0:Group", "description": "A unique identifier for the group." }, "name": { "type": "string", "example": "Cisco Group", "description": "The name of the group." }, "description": { "type": "string", "example": "Cisco Group", "description": "Description of the group." }, "attributes": { "type": "array", "items": { "$ref": "#/components/schemas/AttributesObject" }, "description": "A list of attributes of this group." } }, "description": "The core extension of SCIM 2." } } }