BigCommerce · Schema

Listing

E-CommerceRetailCatalogOrdersCheckoutPaymentsSaaS

Properties

Name Type Description
channel_id object
listing_id object
external_id object
product_id object
state object
name object
description object
date_created object
date_modified object
variants array
View JSON Schema on GitHub

JSON Schema

bigcommerce-listing-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Listing",
  "title": "Listing",
  "type": "object",
  "properties": {
    "channel_id": {
      "$ref": "#/components/schemas/ChannelIdForListing"
    },
    "listing_id": {
      "$ref": "#/components/schemas/ListingId"
    },
    "external_id": {
      "$ref": "#/components/schemas/ExternalId"
    },
    "product_id": {
      "$ref": "#/components/schemas/ProductId"
    },
    "state": {
      "$ref": "#/components/schemas/ListingState"
    },
    "name": {
      "$ref": "#/components/schemas/ChannelProductName"
    },
    "description": {
      "$ref": "#/components/schemas/ChannelProductDescription"
    },
    "date_created": {
      "$ref": "#/components/schemas/ChannelListingDateCreated"
    },
    "date_modified": {
      "$ref": "#/components/schemas/ChannelListingDateModified"
    },
    "variants": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/ChannelProductVariantFull"
      }
    }
  },
  "x-internal": false
}