{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/ShipperCustomerResponse", "title": "ShipperCustomerResponse", "type": "object", "properties": { "idShipperCustomer": { "type": "integer", "format": "int32" }, "email": { "type": "string" }, "firstName": { "type": "string" }, "lastName": { "type": "string" }, "cpf": { "type": "string" }, "addressStreet": { "type": "string" }, "addressNumber": { "type": "string" }, "addressComplement": { "type": "string" }, "addressNeighborhood": { "type": "string" }, "addressCity": { "type": "string" }, "postalCode": { "type": "string" }, "state": { "$ref": "#/components/schemas/StateResponse" }, "country": { "$ref": "#/components/schemas/CountryResponse" }, "created": { "type": "string", "format": "date-time" }, "companyName": { "type": "string" }, "cnpj": { "type": "string" }, "legalType": { "$ref": "#/components/schemas/LegalTypeResponse" }, "idExternalShipperCustomer": { "type": "string" }, "phoneAreaCode": { "type": "string" }, "phoneNumber": { "type": "string" } } }