Unified.to · Schema

ShippingRateRate

IntegrationsUnified API

Properties

Name Type Description
amount number
base_amount number
currency string
delivery_days number
delivery_terms string
description string
discount_amount number
estimated_days number
estimated_delivery_end_at string
estimated_delivery_start_at string
is_active boolean
is_guaranteed boolean
is_negotiated_rate boolean
is_trackable boolean
package_type string
rate_source string
surcharges object
tax_amount number
title string
transit_hours number
View JSON Schema on GitHub

JSON Schema

unified-to-shippingraterate-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ShippingRateRate",
  "title": "ShippingRateRate",
  "properties": {
    "amount": {
      "type": "number"
    },
    "base_amount": {
      "type": "number"
    },
    "currency": {
      "type": "string"
    },
    "delivery_days": {
      "type": "number"
    },
    "delivery_terms": {
      "type": "string"
    },
    "description": {
      "type": "string"
    },
    "discount_amount": {
      "type": "number"
    },
    "estimated_days": {
      "type": "number"
    },
    "estimated_delivery_end_at": {
      "format": "date-time",
      "type": "string"
    },
    "estimated_delivery_start_at": {
      "format": "date-time",
      "type": "string"
    },
    "is_active": {
      "type": "boolean"
    },
    "is_guaranteed": {
      "type": "boolean"
    },
    "is_negotiated_rate": {
      "type": "boolean"
    },
    "is_trackable": {
      "type": "boolean"
    },
    "package_type": {
      "type": "string"
    },
    "rate_source": {
      "type": "string"
    },
    "surcharges": {
      "$ref": "#/components/schemas/property_ShippingRateRate_surcharges"
    },
    "tax_amount": {
      "type": "number"
    },
    "title": {
      "type": "string"
    },
    "transit_hours": {
      "type": "number"
    }
  },
  "required": [
    "title"
  ],
  "type": "object"
}