Skip to content

058 - Product Catalog

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

maml
{
  products: [
    {
      sku: "XLZ0I8FN"
      name: "Fresh Metal Table"
      price: 606.45
      category: "Games"
      in_stock: true
      rating: 2.9
    }

    {
      sku: "PQO8FW6V"
      name: "Soft Silk Cheese"
      price: 625.89
      category: "Health"
      in_stock: true
      rating: 3.4
    }

    {
      sku: "QEYTUXWP"
      name: "Electronic Rubber Hat"
      price: 716.55
      category: "Industrial"
      in_stock: false
      rating: 1.5
    }

    {
      sku: "HWCUEKUM"
      name: "Incredible Silk Towels"
      price: 215.09
      category: "Computers"
      in_stock: true
      rating: 4.5
    }

    {
      sku: "FNFQD2MY"
      name: "Elegant Steel Hat"
      price: 262.15
      category: "Baby"
      in_stock: true
      rating: 3.2
    }

    {
      sku: "CYJKEA7S"
      name: "Luxurious Granite Towels"
      price: 821.69
      category: "Kids"
      in_stock: true
      rating: 3.9
    }
  ]
}

See Also