{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/ContactCreateRequest", "title": "ContactCreateRequest", "type": "object", "description": "Request body for creating a new contact.", "required": [ "first_name", "last_name" ], "properties": { "first_name": { "type": "string", "description": "First name of the contact." }, "last_name": { "type": "string", "description": "Last name of the contact." }, "email": { "type": "string", "format": "email", "description": "Email address of the contact. Optional." }, "company": { "type": "string", "description": "Company name of the contact." }, "job_title": { "type": "string", "description": "Job title of the contact." }, "phone": { "type": "string", "description": "Phone number of the contact." } } }