VTEX · Schema

Child1

CommerceE-CommerceRetailMarketplacePayments

Properties

Name Type Description
Quantity integer
Name string
Link string
Children array
View JSON Schema on GitHub

JSON Schema

vtex-child1-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Child1",
  "title": "Child1",
  "required": [
    "Quantity",
    "Name",
    "Link",
    "Children"
  ],
  "type": "object",
  "properties": {
    "Quantity": {
      "type": "integer",
      "format": "int32"
    },
    "Name": {
      "type": "string"
    },
    "Link": {
      "type": "string"
    },
    "Children": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "description": ""
    }
  },
  "example": {
    "Quantity": 6,
    "Name": "TV LED",
    "Link": "/Eletronicos/TV/TV-LED",
    "Children": []
  }
}