ProfileInput schema
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/adobe-experience-cloud/refs/heads/main/json-schema/campaign-api-profile-input-schema.json", "title": "ProfileInput", "description": "ProfileInput schema", "type": "object", "properties": { "email": { "type": "string" }, "firstName": { "type": "string" }, "lastName": { "type": "string" }, "birthDate": { "type": "string", "format": "date" }, "phone": { "type": "string" } } }