{ "$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" } } }