{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/CreateCustomerRequest", "title": "CreateCustomerRequest", "type": "object", "required": [ "firstName", "lastName", "email" ], "description": "Request to create a new customer", "properties": { "firstName": { "type": "string", "example": "Jane" }, "lastName": { "type": "string", "example": "Smith" }, "email": { "type": "string", "format": "email", "example": "jane.smith@example.com" }, "phone": { "type": "string", "example": "+41791234567" }, "residenceCountry": { "type": "string", "example": "CH" }, "dateOfBirth": { "type": "string", "format": "date", "example": "1980-06-15" } } }