{ "$schema": "https://json-structure.org/meta/core/v0/#", "$id": "https://raw.githubusercontent.com/api-evangelist/adobe-campaign/refs/heads/main/json-structure/adobe-campaign-standard-profile-create-structure.json", "name": "ProfileCreate", "description": "ProfileCreate from Adobe Campaign API", "type": "object", "properties": { "email": { "type": "string", "format": "email", "description": "Email address for the new profile.", "example": "user@example.com" }, "firstName": { "type": "string", "example": "Example Campaign" }, "lastName": { "type": "string", "example": "Example Campaign" }, "phone": { "type": "string", "example": "example_value" }, "mobilePhone": { "type": "string", "example": "example_value" }, "birthDate": { "type": "string", "format": "date", "example": "2026-04-17T12:00:00Z" }, "gender": { "type": "string", "enum": [ "male", "female", "unknown" ], "example": "male" }, "preferredLanguage": { "type": "string", "example": "example_value" } }, "required": [ "email" ] }