Webex · Schema

RoleObject

CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing

Properties

Name Type Description
value string CI Role
type string name
display string A human-readable name, primarily used for display purposes.
View JSON Schema on GitHub

JSON Schema

webex-roleobject-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/RoleObject",
  "title": "RoleObject",
  "type": "object",
  "properties": {
    "value": {
      "type": "string",
      "example": "id_full_admin",
      "description": "CI Role"
    },
    "type": {
      "type": "string",
      "example": "cirole",
      "description": "name"
    },
    "display": {
      "type": "string",
      "example": "Full Administrator",
      "description": "A human-readable name, primarily used for display purposes."
    }
  }
}