Webex · Schema

GroupInheritancesObject

CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing

Properties

Name Type Description
type string Type of inheritance. Currently, only the `role` type is supported. Only `policy` usage supports inheritance.
value string The value of the inheritance. For the role type, this can be role names such as `id_full_admin`, `id_user_admin`, etc.
nested boolean Indicates whether this inheritance is nested.
scope array Indicates which types of entities can inherit this property.
View JSON Schema on GitHub

JSON Schema

webex-groupinheritancesobject-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/GroupInheritancesObject",
  "title": "GroupInheritancesObject",
  "type": "object",
  "properties": {
    "type": {
      "type": "string",
      "enum": [
        "role"
      ],
      "example": "role",
      "description": "Type of inheritance. Currently, only the `role` type is supported. Only `policy` usage supports inheritance."
    },
    "value": {
      "type": "string",
      "example": "id_full_admin",
      "description": "The value of the inheritance. For the role type, this can be role names such as `id_full_admin`, `id_user_admin`, etc."
    },
    "nested": {
      "type": "boolean",
      "example": false,
      "description": "Indicates whether this inheritance is nested."
    },
    "scope": {
      "type": "array",
      "items": {
        "type": "string",
        "example": [
          "user"
        ]
      },
      "description": "Indicates which types of entities can inherit this property."
    }
  }
}