Webex · Schema

PutGroup

CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing

Properties

Name Type Description
schemas array Input JSON schemas.
displayName string A human-readable name for the group.
externalId string An identifier for the resource as defined by the provisioning client.
members array A list of members of this group.
urn:scim:schemas:extension:cisco:webexidentity:2.0:Group object The Cisco extension of SCIM 2.
View JSON Schema on GitHub

JSON Schema

webex-putgroup-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/PutGroup",
  "title": "PutGroup",
  "type": "object",
  "required": [
    "schemas",
    "displayName"
  ],
  "properties": {
    "schemas": {
      "type": "array",
      "items": {
        "type": "string",
        "example": "urn:ietf:params:scim:schemas:core:2.0:Group,urn:scim:schemas:extension:cisco:webexidentity:2.0:Group"
      },
      "description": "Input JSON schemas."
    },
    "displayName": {
      "type": "string",
      "example": "[email protected]",
      "description": "A human-readable name for the group."
    },
    "externalId": {
      "type": "string",
      "example": "test",
      "description": "An identifier for the resource as defined by the provisioning client."
    },
    "members": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/GroupMemberObject"
      },
      "description": "A list of members of this group."
    },
    "urn:scim:schemas:extension:cisco:webexidentity:2.0:Group": {
      "type": "object",
      "properties": {
        "usage": {
          "type": "string",
          "example": "policy",
          "description": "The identifier of this Group."
        },
        "owners": {
          "type": "array",
          "items": {
            "type": "object",
            "properties": {
              "value": {
                "type": "string",
                "example": "c5349664-9f3d-410b-8bd3-6c31f181f13d",
                "description": "The identifier of the owner of this group."
              }
            }
          },
          "description": "The owners of this group."
        },
        "inheritances": {
          "type": "array",
          "items": {
            "$ref": "#/components/schemas/GroupInheritancesObject"
          },
          "description": "An array of inheritances"
        },
        "managedBy": {
          "type": "array",
          "items": {
            "$ref": "#/components/schemas/ManagedByObject"
          },
          "description": "A list of delegates of this group."
        }
      },
      "description": "The Cisco extension of SCIM 2."
    }
  }
}