{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/SelfServiceProfileUserAttribute", "title": "SelfServiceProfileUserAttribute", "type": "object", "additionalProperties": false, "required": [ "name", "description", "is_optional" ], "properties": { "name": { "type": "string", "description": "Identifier of this attribute.", "maxLength": 250 }, "description": { "type": "string", "description": "Description of this attribute." }, "is_optional": { "type": "boolean", "description": "Determines if this attribute is required" } } }