{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/CustomerGroupsQueryResponse", "title": "CustomerGroupsQueryResponse", "type": "object", "properties": { "totalResults": { "type": "integer", "description": "Total number of Customer Groups that match the query.", "example": 9 }, "itemsPerPage": { "type": "integer", "description": "Number of Customer Groups returned in the current response.", "example": 2 }, "startIndex": { "type": "integer", "description": "1-based index of the first result returned.", "example": 2 }, "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" ] }, "Resources": { "type": "array", "description": "List of Customer Groups.", "items": { "$ref": "#/components/schemas/CustomerQueryGroupResponse" } } } }