BigCommerce · Schema

Date Range

Representation of a range of date objects.

E-CommerceRetailCatalogOrdersCheckoutPaymentsSaaS

Properties

Name Type Description
from object Value Object representing a Date.
to object Value Object representing a Date.
View JSON Schema on GitHub

JSON Schema

bigcommerce-daterange-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/DateRange",
  "title": "Date Range",
  "type": "object",
  "properties": {
    "from": {
      "type": "object",
      "properties": {
        "date": {
          "type": "string",
          "format": "date"
        },
        "timezone": {
          "type": "string"
        }
      },
      "title": "Date Value",
      "description": "Value Object representing a Date."
    },
    "to": {
      "type": "object",
      "properties": {
        "date": {
          "type": "string",
          "format": "date"
        },
        "timezone": {
          "type": "string"
        }
      },
      "title": "Date Value",
      "description": "Value Object representing a Date."
    }
  },
  "description": "Representation of a range of date objects.",
  "x-internal": false
}