Webex · Schema

GetPartnerRolesResponse

CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing

Properties

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

JSON Schema

webex-getpartnerrolesresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/GetPartnerRolesResponse",
  "title": "GetPartnerRolesResponse",
  "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 Partner Roles assigned to that org."
    },
    "resources": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/Resource"
      },
      "description": "List of Partner Roles assigned to Org."
    }
  }
}