Raw schema
{
"type": "object",
"properties": {
"contacts": {
"type": "array",
"items": {
"type": "object",
"properties": {
"first_name": {
"type": "string",
"description": "First name (required)"
},
"last_name": {
"description": "Last name",
"type": "string"
},
"nickname": {
"description": "Nickname",
"type": "string"
},
"maiden_name": {
"description": "Maiden name",
"type": "string"
},
"gender": {
"description": "Gender",
"type": "string"
},
"pronouns": {
"description": "Pronouns (e.g. she/her, he/him, they/them)",
"type": "string"
},
"avatar_url": {
"description": "Avatar URL",
"type": "string"
},
"birthday_mode": {
"description": "Birthday mode: full_date (YYYY-MM-DD), month_day (month + day only), or approximate_age (birth year estimate)",
"type": "string",
"enum": [
"full_date",
"month_day",
"approximate_age"
]
},
"birthday_date": {
"description": "Full birthday date (YYYY-MM-DD), used with birthday_mode=full_date",
"type": "string"
},
"birthday_month": {
"description": "Birthday month (1-12), used with birthday_mode=month_day",
"type": "number"
},
"birthday_day": {
"description": "Birthday day (1-31), used with birthday_mode=month_day",
"type": "number"
},
"birthday_year_approximate": {
"description": "Approximate birth year, used with birthday_mode=approximate_age",
"type": "number"
},
"status": {
"description": "Contact status (default: active)",
"type": "string",
"enum": [
"active",
"archived",
"deceased"
]
},
"deceased_date": {
"description": "Date of death (YYYY-MM-DD)",
"type": "string"
},
"is_favorite": {
"description": "Mark as favorite",
"type": "boolean"
},
"met_at_date": {
"description": "Date you met this person (YYYY-MM-DD)",
"type": "string"
},
"met_at_location": {
"description": "Where you met this person",
"type": "string"
},
"met_through_contact_id": {
"description": "Contact ID of person who introduced you",
"type": "string"
},
"met_description": {
"description": "Story of how you met",
"type": "string"
},
"job_title": {
"description": "Job title",
"type": "string"
},
"company": {
"description": "Company or organization",
"type": "string"
},
"industry": {
"description": "Industry",
"type": "string"
},
"work_notes": {
"description": "Notes about their work",
"type": "string"
}
},
"required": [
"first_name"
]
},
"description": "Array of contact creation inputs (max 50)"
}
},
"required": [
"contacts"
],
"$schema": "http://json-schema.org/draft-07/schema#"
}