BigCommerce · Schema

subscriber_Full

Full subscriber object returned in responses.

E-CommerceRetailCatalogOrdersCheckoutPaymentsSaaS
View JSON Schema on GitHub

JSON Schema

bigcommerce-subscriber-full-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/subscriber_Full",
  "title": "subscriber_Full",
  "description": "Full subscriber object returned in responses.",
  "allOf": [
    {
      "$ref": "#/components/schemas/subscriber_Base"
    },
    {
      "type": "object",
      "properties": {
        "id": {
          "type": "integer",
          "description": "The unique numeric ID of the subscriber; increments sequentially."
        },
        "date_modified": {
          "type": "string",
          "description": "The date on which the subscriber was modified.\n",
          "format": "date-time"
        },
        "date_created": {
          "type": "string",
          "description": "The date of which the subscriber was created.\n",
          "format": "date-time"
        }
      }
    }
  ],
  "x-internal": false
}