ShipStation · Schema

CarrierService

EcommerceLabelsLogisticsOrder ManagementShippingWarehousing

Properties

Name Type Description
carrierId integer
carrierCode string
code string
name string
domestic boolean
international boolean
View JSON Schema on GitHub

JSON Schema

shipstation-carrierservice-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CarrierService",
  "title": "CarrierService",
  "type": "object",
  "properties": {
    "carrierId": {
      "type": "integer"
    },
    "carrierCode": {
      "type": "string"
    },
    "code": {
      "type": "string"
    },
    "name": {
      "type": "string"
    },
    "domestic": {
      "type": "boolean"
    },
    "international": {
      "type": "boolean"
    }
  }
}