project44 · Schema

ShipmentStopInput

LogisticsSupply Chain VisibilityTrackingFreightMulti-modal

Properties

Name Type Description
stopNumber integer
stopType string
city string
state string
postalCode string
country string
appointmentWindow object
View JSON Schema on GitHub

JSON Schema

project44-shipmentstopinput-schema.json Raw ↑
{
  "$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"
    }
  }
}