{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/CustomData", "title": "CustomData", "type": "object", "description": "A custom field value configured by the organization. Field IDs follow patterns like custom1-custom40 and orgUnit1-orgUnit6.", "required": [ "id" ], "properties": { "id": { "type": "string", "description": "The identifier of the custom field (e.g., custom1, orgUnit1)", "examples": [ "custom1" ] }, "value": { "type": "string", "description": "The value assigned to the custom field", "maxLength": 48, "examples": [ "Marketing Department" ] }, "isValid": { "type": "boolean", "description": "Whether the current value passes validation rules", "example": "500123" } } }