BigCommerce · Schema

coupon_Full

E-CommerceRetailCatalogOrdersCheckoutPaymentsSaaS
View JSON Schema on GitHub

JSON Schema

bigcommerce-coupon-full-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/coupon_Full",
  "title": "coupon_Full",
  "allOf": [
    {
      "required": [
        "id"
      ],
      "type": "object",
      "properties": {
        "id": {
          "type": "integer",
          "description": "The coupon's ID. This is a read-only field; do not set or modify its value in a POST or PUT request.",
          "example": 2
        },
        "date_created": {
          "type": "string",
          "description": "Date Created",
          "example": "Tue, 13 Mar 2018 16:18:59 +0000"
        },
        "num_uses": {
          "type": "integer",
          "description": "Number of times this coupon has been used. This is a read-only field; do not set or modify its value in a POST or PUT request.",
          "example": 0
        }
      }
    },
    {
      "$ref": "#/components/schemas/coupon_Base"
    }
  ],
  "x-internal": false
}