{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/PickupConsignmentLocation", "title": "PickupConsignmentLocation", "type": "object", "properties": { "id": { "type": "integer", "example": 1 }, "name": { "type": "string", "example": "Location 1" }, "address1": { "type": "string", "example": "2802 Skyway Cir" }, "address2": { "type": "string" }, "city": { "type": "string", "example": "Austin" }, "stateOrProvince": { "type": "string", "example": "Texas" }, "postalCode": { "type": "string", "example": "78704" }, "country": { "type": "string", "example": "United States" }, "countryCode": { "type": "string", "example": "US" }, "email": { "type": "string", "example": "loc1@bigcommerce.com" }, "phone": { "type": "string", "example": "0410123452" } }, "x-examples": { "example-1": { "id": 1, "name": "Location 1", "address1": "2802 Skyway Cir", "address2": "string", "city": "Austin", "stateOrProvince": "Texas", "postalCode": "78704", "country": "United States", "countryCode": "US", "email": "loc1@bigcommerce.com", "phone": "0410123452" } }, "x-internal": false }