{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/CustomerGroupResponse", "title": "CustomerGroupResponse", "type": "object", "required": [ "schemas", "id", "meta", "displayName", "memberSize" ], "properties": { "schemas": { "type": "array", "items": { "type": "string" }, "description": "An array of schema URNs.", "example": [ "urn:scim:schemas:core:1.0", "urn:scim:schemas:extension:cisco:commonidentity:1.0" ] }, "id": { "type": "string", "description": "Unique Customer Group Id.", "example": "230898d8-f528-432f-93db-d138fa7fb20c" }, "meta": { "$ref": "#/components/schemas/GroupMeta" }, "displayName": { "type": "string", "description": "A human readable name for the Customer Group.", "example": "customerGroup09-101" }, "description": { "type": "string", "description": "Description of the group.", "example": "Customer Group For PA63" }, "cisSyncSource": { "type": "string", "description": "Sync Source.", "enum": [ "SCIM", "DIRSYNC" ], "example": "SCIM" }, "memberSize": { "type": "integer", "description": "Number of members in the group.", "example": 1 }, "members": { "type": "array", "description": "A list of members of the Group. Maximum of 500 members will be shown.", "items": { "$ref": "#/components/schemas/MemberResponse" } }, "managedBy": { "type": "array", "description": "Administrators of customer groups.", "items": { "$ref": "#/components/schemas/ManagedBy" } } } }