Properties
| Name | Type | Description |
|---|---|---|
| id | integer | |
| name | string | |
| address1 | string | |
| address2 | string | |
| city | string | |
| stateOrProvince | string | |
| postalCode | string | |
| country | string | |
| countryCode | string | |
| string | ||
| phone | string |
JSON Schema
{
"$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": "[email protected]"
},
"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": "[email protected]",
"phone": "0410123452"
}
},
"x-internal": false
}