Properties
| Name | Type | Description |
|---|---|---|
| stopNumber | integer | |
| stopType | string | |
| city | string | |
| state | string | |
| postalCode | string | |
| country | string | |
| appointmentWindow | object |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/ShipmentStopInput",
"title": "ShipmentStopInput",
"type": "object",
"required": [
"stopNumber",
"stopType"
],
"properties": {
"stopNumber": {
"type": "integer"
},
"stopType": {
"type": "string",
"enum": [
"ORIGIN",
"DESTINATION",
"INTERMEDIATE"
]
},
"city": {
"type": "string"
},
"state": {
"type": "string"
},
"postalCode": {
"type": "string"
},
"country": {
"type": "string",
"maxLength": 3
},
"appointmentWindow": {
"$ref": "#/components/schemas/TimeWindow"
}
}
}