ShipStation · Schema

Warehouse

EcommerceLabelsLogisticsOrder ManagementShippingWarehousing

Properties

Name Type Description
warehouseId integer
warehouseName string
originAddress object
returnAddress object
createDate string
isDefault boolean
View JSON Schema on GitHub

JSON Schema

shipstation-warehouse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Warehouse",
  "title": "Warehouse",
  "type": "object",
  "properties": {
    "warehouseId": {
      "type": "integer"
    },
    "warehouseName": {
      "type": "string"
    },
    "originAddress": {
      "$ref": "#/components/schemas/Address"
    },
    "returnAddress": {
      "$ref": "#/components/schemas/Address"
    },
    "createDate": {
      "type": "string",
      "format": "date-time"
    },
    "isDefault": {
      "type": "boolean"
    }
  }
}