BigCommerce · Schema

Request Context

A collection of Reference Value objects.

E-CommerceRetailCatalogOrdersCheckoutPaymentsSaaS

Properties

Name Type Description
reference_values array
View JSON Schema on GitHub

JSON Schema

bigcommerce-requestcontext-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/RequestContext",
  "title": "Request Context",
  "type": "object",
  "properties": {
    "reference_values": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "name": {
            "type": "string"
          },
          "value": {
            "type": "string"
          }
        },
        "title": "Reference Value",
        "description": "Value objects contained within the request context."
      }
    }
  },
  "description": "A collection of Reference Value objects.",
  "x-internal": false
}