ShipStation · Schema

Rate

EcommerceLabelsLogisticsOrder ManagementShippingWarehousing

Properties

Name Type Description
serviceName string
serviceCode string
shipmentCost number
otherCost number
View JSON Schema on GitHub

JSON Schema

shipstation-rate-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Rate",
  "title": "Rate",
  "type": "object",
  "properties": {
    "serviceName": {
      "type": "string"
    },
    "serviceCode": {
      "type": "string"
    },
    "shipmentCost": {
      "type": "number",
      "format": "float"
    },
    "otherCost": {
      "type": "number",
      "format": "float"
    }
  }
}