BigCommerce · Schema

dateFormat

E-CommerceRetailCatalogOrdersCheckoutPaymentsSaaS

Properties

Name Type Description
display string A string that defines dates’ display formats, in the pattern: M jS Y
export string A string that defines the CSV export format for orders, customers, and products, in the pattern: M jS Y
extended_display string A string that defines dates’ extended-display format, in the pattern: M jS Y @ g:i A.
View JSON Schema on GitHub

JSON Schema

bigcommerce-dateformat-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/dateFormat",
  "title": "dateFormat",
  "type": "object",
  "properties": {
    "display": {
      "type": "string",
      "description": "A string that defines dates\u2019 display formats, in the pattern: M jS Y",
      "example": "M jS Y"
    },
    "export": {
      "type": "string",
      "description": "A string that defines the CSV export format for orders, customers, and products, in the pattern: M jS Y",
      "example": "M jS Y"
    },
    "extended_display": {
      "type": "string",
      "description": "A string that defines dates\u2019 extended-display format, in the pattern: M jS Y @ g:i A.",
      "example": "M jS Y @ g:i A"
    }
  },
  "x-internal": false
}