BigCommerce · Schema

Key Value Pair

E-CommerceRetailCatalogOrdersCheckoutPaymentsSaaS

Properties

Name Type Description
key string
value string
View JSON Schema on GitHub

JSON Schema

bigcommerce-keyvaluepair-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/KeyValuePair",
  "title": "Key Value Pair",
  "type": "object",
  "properties": {
    "key": {
      "type": "string"
    },
    "value": {
      "type": "string"
    }
  },
  "required": [
    "key",
    "value"
  ],
  "x-internal": false
}