{ "$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-list-schema.json", "title": "ProfileList", "description": "ProfileList schema", "type": "object", "properties": { "content": { "type": "array", "items": { "type": "object", "properties": { "PKey": { "type": "string" }, "email": { "type": "string" }, "firstName": { "type": "string" }, "lastName": { "type": "string" }, "birthDate": { "type": "string", "format": "date" }, "phone": { "type": "string" }, "created": { "type": "string", "format": "date-time" }, "lastModified": { "type": "string", "format": "date-time" } } } }, "count": { "type": "object", "properties": { "value": { "type": "integer" } } } } }