# Update attribute Updates an existing attribute. Only provided fields are updated. Endpoint: PATCH /v1/attributes/{attributeUuid} Version: 1.0.0 Security: Bearer ## Path parameters: - `attributeUuid` (string, required) Unique identifier of the attribute. ## Request fields (application/json): - `name` (string,null) Updated display name for the attribute. - `description` (string,null) Updated explanation of the attribute. ## Response 200 fields (application/json): - `uuid` (string, required) Unique identifier for this attribute. - `createdAt` (string, required) Timestamp when this attribute was created. Example: "2025-11-23T14:15:22.123456Z" - `updatedAt` (string, required) Timestamp when this attribute was last modified. Example: "2025-11-23T14:15:22.123456Z" - `removedAt` (string,null) Timestamp when this attribute was removed. Null if not removed. Example: "2025-11-23T14:15:22.123456Z" - `status` (string, required) Current lifecycle status of this attribute. Enum: "draft", "published", "unpublished", "removed" - `name` (string, required) Display name for this attribute. - `description` (string,null) Explanation of what this attribute represents and when to use it. ## Response 401 fields (application/problem+json): - `type` (string,null) - `title` (string,null) - `status` (integer,null) - `detail` (string,null) - `instance` (string,null) ## Response 403 fields (application/problem+json): - `type` (string,null) - `title` (string,null) - `status` (integer,null) - `detail` (string,null) - `instance` (string,null) - `correlationId` (string,null) ## Response 404 fields (application/problem+json): - `type` (string,null) - `title` (string,null) - `status` (integer,null) - `detail` (string,null) - `instance` (string,null) - `correlationId` (string,null) ## Response 409 fields (application/problem+json): - `type` (string,null) - `title` (string,null) - `status` (integer,null) - `detail` (string,null) - `instance` (string,null) - `correlationId` (string,null) ## Response 422 fields (application/problem+json): - `errors` (array) - `errors.code` (string, required) - `errors.message` (string, required) - `type` (string,null) - `title` (string,null) - `status` (integer,null) - `detail` (string,null) - `instance` (string,null) - `correlationId` (string,null) ## Response 500 fields (application/problem+json): - `type` (string,null) - `title` (string,null) - `status` (integer,null) - `detail` (string,null) - `instance` (string,null) - `correlationId` (string,null)