Webex · Schema
SearchGroupResponse
CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing
Properties
| Name | Type | Description |
|---|---|---|
| schemas | array | Input JSON schemas. |
| memberSize | number | Total number of groups in search results. |
| itemsPerPage | number | The total number of items in a paged result. |
| startIndex | number | Start at the one-based offset in the list of matching contacts. |
| Resources | array | An array of group objects. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/SearchGroupResponse",
"title": "SearchGroupResponse",
"type": "object",
"required": [
"schemas"
],
"properties": {
"schemas": {
"type": "array",
"items": {
"type": "string",
"example": "urn:scim:schemas:extension:cisco:webexidentity:2.0:GroupMembers"
},
"description": "Input JSON schemas."
},
"memberSize": {
"type": "number",
"example": 2,
"description": "Total number of groups in search results."
},
"itemsPerPage": {
"type": "number",
"example": 2,
"description": "The total number of items in a paged result."
},
"startIndex": {
"type": "number",
"example": 1,
"description": "Start at the one-based offset in the list of matching contacts."
},
"Resources": {
"type": "array",
"items": {
"$ref": "#/components/schemas/GetGroupResponse"
},
"description": "An array of group objects."
}
}
}