Skip to content

054 - Product Catalog

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

maml
{
  products: [
    {
      sku: "TA49RFP2"
      name: "Rustic Bamboo Computer"
      price: 430.49
      category: "Music"
      in_stock: true
      rating: 1
    }

    {
      sku: "QRID3WJP"
      name: "Elegant Wooden Ball"
      price: 167.35
      category: "Books"
      in_stock: false
      rating: 1.8
    }

    {
      sku: "BLG7EXBT"
      name: "Small Plastic Chair"
      price: 230.69
      category: "Outdoors"
      in_stock: false
      rating: 1.3
    }

    {
      sku: "PQOPG3ZE"
      name: "Luxurious Cotton Cheese"
      price: 901.19
      category: "Kids"
      in_stock: true
      rating: 2.4
    }

    {
      sku: "7SXVGV6S"
      name: "Handcrafted Cotton Bike"
      price: 25.55
      category: "Kids"
      in_stock: false
      rating: 1.2
    }

    {
      sku: "2HH4IHOM"
      name: "Refined Ceramic Ball"
      price: 800.33
      category: "Grocery"
      in_stock: true
      rating: 4
    }

    {
      sku: "DB1KMQRN"
      name: "Intelligent Bronze Keyboard"
      price: 755.85
      category: "Sports"
      in_stock: true
      rating: 4.2
    }
  ]
}

See Also