Webex · Schema

GetRolesResponse

CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing

Properties

Name Type Description
schema array Input JSON schema.
totalResults number Total Roles assigned to that org.
resources array List of Roles assigned to Org.
View JSON Schema on GitHub

JSON Schema

webex-getrolesresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/GetRolesResponse",
  "title": "GetRolesResponse",
  "type": "object",
  "required": [
    "schema",
    "totalResults",
    "resources"
  ],
  "properties": {
    "schema": {
      "type": "array",
      "items": {
        "type": "string",
        "example": "urn:ietf:params:scim:api:messages:2.0:ListResponse"
      },
      "description": "Input JSON schema."
    },
    "totalResults": {
      "type": "number",
      "example": 1,
      "description": "Total Roles assigned to that org."
    },
    "resources": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/Resource"
      },
      "description": "List of Roles assigned to Org."
    }
  }
}