Webex · Schema
SubAttributesObject
CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing
Properties
| Name | Type | Description |
|---|---|---|
| name | string | The name of the group. |
| type | string | The type of the group. |
| referenceTypes | array | An array of additional information about reference types of the group. |
| multiValued | boolean | A boolean value for the group. |
| description | string | Description of the group. |
| required | boolean | A boolean value for the group. |
| caseExact | boolean | A boolean value for the group. |
| mutability | string | Mutability of the group. |
| returned | string | Returned value of the group. |
| uniqueness | string | Uniqueness of the group. |
| canonicalValues | array | A list of canonical values of this group. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/SubAttributesObject",
"title": "SubAttributesObject",
"type": "object",
"properties": {
"name": {
"type": "string",
"example": "value",
"description": "The name of the group."
},
"type": {
"type": "string",
"example": "Reference",
"description": "The type of the group."
},
"referenceTypes": {
"type": "array",
"items": {
"$ref": "#/components/schemas/ReferenceTypesObject"
},
"description": "An array of additional information about reference types of the group."
},
"multiValued": {
"type": "boolean",
"description": "A boolean value for the group."
},
"description": {
"type": "string",
"example": "The identifier of the member of this Group.",
"description": "Description of the group."
},
"required": {
"type": "boolean",
"description": "A boolean value for the group."
},
"caseExact": {
"type": "boolean",
"description": "A boolean value for the group."
},
"mutability": {
"type": "string",
"example": "Immutable",
"description": "Mutability of the group."
},
"returned": {
"type": "string",
"example": "Default",
"description": "Returned value of the group."
},
"uniqueness": {
"type": "string",
"example": "None",
"description": "Uniqueness of the group."
},
"canonicalValues": {
"type": "array",
"items": {
"$ref": "#/components/schemas/CanonicalValuesObject"
},
"description": "A list of canonical values of this group."
}
}
}