{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/UserAttributesObject", "title": "UserAttributesObject", "type": "object", "required": [ "referenceTypes" ], "properties": { "name": { "type": "string", "example": "value", "description": "The name of the user." }, "type": { "type": "string", "example": "Reference", "description": "The type of the user." }, "referenceTypes": { "$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 user." }, "description": { "type": "string", "example": "The identifier of the member of this Group.", "description": "Description of the user." }, "required": { "type": "boolean", "description": "A boolean value for the user." }, "caseExact": { "type": "boolean", "description": "A boolean value for the user." }, "mutability": { "type": "string", "example": "Immutable", "description": "Mutability of the user." }, "returned": { "type": "string", "example": "Default", "description": "Returned value of the user." }, "canonicalValues": { "type": "array", "items": { "$ref": "#/components/schemas/CanonicalValuesObject" }, "description": "A list of canonical values of this user." }, "uniqueness": { "type": "string", "example": "None", "description": "Uniqueness of the user." }, "subAttributes": { "type": "array", "items": { "$ref": "#/components/schemas/SubAttributesObject" }, "description": "A list of sub-attributes of this user." }, "size": { "type": "number", "example": 50, "description": "This refers to the measurement or magnitude of an object, entity, or dataset, quantified as 50." }, "length": { "type": "number", "example": 128, "description": "This describes the extent or measurement of something from end to end, quantified as 128." } } }