VTEX · Schema

SpecificationGroupInsertRequest

CommerceE-CommerceRetailMarketplacePayments

Properties

Name Type Description
CategoryId integer Category ID.
Name string Specification group name.
View JSON Schema on GitHub

JSON Schema

vtex-specificationgroupinsertrequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/SpecificationGroupInsertRequest",
  "title": "SpecificationGroupInsertRequest",
  "required": [
    "CategoryId",
    "Name"
  ],
  "type": "object",
  "properties": {
    "CategoryId": {
      "type": "integer",
      "format": "int32",
      "description": "Category ID."
    },
    "Name": {
      "type": "string",
      "description": "Specification group name."
    }
  },
  "example": {
    "CategoryId": 1,
    "Name": "GroupName1"
  }
}