VTEX · Schema

ResoluO

CommerceE-CommerceRetailMarketplacePayments

Properties

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

JSON Schema

vtex-resoluo-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ResoluO",
  "title": "ResoluO",
  "required": [
    "Quantity",
    "Name",
    "Link"
  ],
  "type": "object",
  "properties": {
    "Quantity": {
      "type": "integer",
      "format": "int32"
    },
    "Name": {
      "type": "string"
    },
    "Link": {
      "type": "string"
    }
  },
  "example": {
    "Quantity": 10,
    "Name": "Full-HD",
    "Link": "/eletronicos/tv/Full-HD?map=c,c,specificationFilter_73"
  }
}