BigCommerce · Schema

attribute_Post

E-CommerceRetailCatalogOrdersCheckoutPaymentsSaaS

Properties

Name Type Description
name string Attribute name.
type string Attribute type should match one of: string, number, date.
View JSON Schema on GitHub

JSON Schema

bigcommerce-attribute-post-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/attribute_Post",
  "title": "attribute_Post",
  "example": {
    "name": "attribute_string 01",
    "type": "string"
  },
  "type": "object",
  "properties": {
    "name": {
      "description": "Attribute name.",
      "type": "string",
      "minLength": 1,
      "maxLength": 255
    },
    "type": {
      "title": "Type",
      "description": "Attribute type should match one of: string, number, date.",
      "example": "string",
      "type": "string",
      "enum": [
        "string",
        "number",
        "date"
      ]
    }
  },
  "required": [
    "name",
    "type"
  ],
  "x-internal": false
}