BigCommerce · Schema

Transit Time Object

Value object for the length of time in transit.

E-CommerceRetailCatalogOrdersCheckoutPaymentsSaaS

Properties

Name Type Description
units string
duration integer
View JSON Schema on GitHub

JSON Schema

bigcommerce-transittimeobject-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/TransitTimeObject",
  "title": "Transit Time Object",
  "type": "object",
  "properties": {
    "units": {
      "type": "string",
      "enum": [
        "BUSINESS_DAYS",
        "DAYS",
        "HOURS"
      ]
    },
    "duration": {
      "type": "integer",
      "minimum": 1,
      "maximum": 90
    }
  },
  "description": "Value object for the length of time in transit.",
  "x-internal": false
}