{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/ProfileInput", "title": "ProfileInput", "type": "object", "description": "Input for creating or updating a customer profile", "properties": { "identifiers": { "type": "object", "description": "Customer identifiers for matching", "additionalProperties": { "type": "string" } }, "attributes": { "type": "object", "description": "Profile attributes to set or update", "additionalProperties": true } } }