{ "$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." } } }