# Bulk update family asset type associations Updates multiple asset type associations in a single operation. Endpoint: PATCH /v1/families/{familyUuid}/asset-types/bulk Version: 1.0.0 Security: Bearer ## Path parameters: - `familyUuid` (string, required) Unique identifier of the family. ## Request fields (application/json): - `uuid` (string, required) Identifier of the family asset type association to update. - `isRequired` (boolean,null, required) Whether assets of this type are required. - `minCount` (integer,null, required) Minimum number of assets of this type required. - `maxCount` (integer,null, required) Maximum number of assets of this type allowed. Null means unlimited. ## Response 200 fields (application/json): - `uuid` (string, required) Unique identifier for this family-asset type association. - `familyUuid` (string, required) Identifier of the family this association belongs to. - `productAssetTypeUuid` (string, required) Identifier of the product asset type that is associated. - `createdAt` (string, required) Timestamp when the association was created. Example: "2025-11-23T14:15:22.123456Z" - `updatedAt` (string, required) Timestamp when the association was last modified. Example: "2025-11-23T14:15:22.123456Z" - `isRequired` (boolean, required) Whether assets of this type are required for products in this family. - `minCount` (integer, required) Minimum number of assets of this type required. - `maxCount` (integer,null, required) Maximum number of assets of this type allowed. Null means unlimited. ## 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 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)