UPS · Schema

ShipperInfo

LogisticsShippingFortune 500Supply Chain

Properties

Name Type Description
Name string
AttentionName string
ShipperNumber string UPS account number
Phone object
Address object
View JSON Schema on GitHub

JSON Schema

ups-shipperinfo-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ShipperInfo",
  "title": "ShipperInfo",
  "type": "object",
  "required": [
    "Name",
    "ShipperNumber",
    "Address"
  ],
  "properties": {
    "Name": {
      "type": "string"
    },
    "AttentionName": {
      "type": "string"
    },
    "ShipperNumber": {
      "type": "string",
      "description": "UPS account number"
    },
    "Phone": {
      "type": "object",
      "properties": {
        "Number": {
          "type": "string"
        }
      }
    },
    "Address": {
      "$ref": "#/components/schemas/Address"
    }
  }
}