Skip to content

1155 - Product Catalog

E-commerce product listings. This is an example of a MAML document.

maml
{
  products: [
    {
      sku: "VNYHR4GC"
      name: "Fantastic Silk Hat"
      price: 369.45
      category: "Computers"
      in_stock: false
      rating: 1.6
    }

    {
      sku: "YHPPBYCS"
      name: "Fantastic Metal Hat"
      price: 469.35
      category: "Shoes"
      in_stock: true
      rating: 4
    }

    {
      sku: "AXOUSYTO"
      name: "Luxurious Bamboo Shoes"
      price: 405.39
      category: "Electronics"
      in_stock: false
      rating: 2
    }

    {
      sku: "G4AX7GSR"
      name: "Ergonomic Ceramic Bike"
      price: 500.89
      category: "Beauty"
      in_stock: false
      rating: 2
    }
  ]
}

See Also