[
  {
    "name": "ProductsShelf",
    "schema": {
      "title": "Vitrine de produtos",
      "description": "Vitrine de produtos",
      "type": "object",
      "required": ["title"],
      "properties": {
        "title": {
          "title": "Título da vitrine",
          "type": "string"
        },
        "description": {
          "title": "Descrição da vitrine",
          "type": "string"
        },
        "items": {
          "type": "array",
          "minItems": 1,
          "maxItems": 10,
          "items": {
            "title": "Produto",
            "type": "object",
            "required": ["productId"],
            "properties": {
              "productId": {
                "title": "ID do produto",
                "type": "string"
              },
              "skuId": {
                "title": "SKU ID do produto",
                "type": "string",
                "description": "SKU ID que será exibido. Caso não preencher, mostrará o SKU de menor valor"
              }
            }
          }
        }
      }
    }
  },
  {
    "name": "SearchShelf",
    "schema": {
      "title": "Vitrine de buscas",
      "description": "Vitrine de buscas",
      "type": "object",
      "required": ["title"],
      "properties": {
        "title": {
          "title": "Título da vitrine",
          "type": "string"
        },
        "description": {
          "title": "Descrição da vitrine",
          "type": "string"
        },
        "items": {
          "type": "array",
          "minItems": 1,
          "maxItems": 10,
          "items": {
            "title": "Busca",
            "type": "object",
            "required": ["imageSrc", "name", "term"],
            "properties": {
              "imageSrc": {
                "title": "Imagem da busca",
                "type": "string",
                "widget": {
                  "ui:widget": "media-gallery"
                }
              },
              "name": {
                "title": "Nome da busca",
                "type": "string"
              },
              "term": {
                "title": "Termo da busca",
                "type": "string"
              }
            }
          }
        }
      }
    }
  },
  {
    "name": "CollectionShelf",
    "schema": {
      "title": "Vitrine de coleção",
      "description": "Vitrine de coleção",
      "type": "object",
      "required": ["title", "collectionId"],
      "properties": {
        "title": {
          "title": "Título da vitrine",
          "type": "string"
        },
        "description": {
          "title": "Descrição da vitrine",
          "type": "string"
        },
        "collectionId": {
          "title": "ID da coleção",
          "type": "string"
        }
      }
    }
  }
]
