Apparel metadata

Contains apparel-related metadata for products like shoes and clothing.

Metadata attribute nameRelevanceProducts count
sizesClothing and shoes.339 219

apparel.sizes

The sizes field is an array containing one or more Measurement objects. Each object specifies a size using one of the following units:

  • size_label — for standard clothing size labels (XXSXSSMLXLXXLXXXLXXXXLone_size)
  • eu_shoe_size — for European shoe sizes
  • us_shoe_size — for US shoe sizes

A garment with size XS:

{
    "product": {
        "metadata": {
            "apparel": {
                "sizes": [{
                    "equals": {"value": "XS", "unit": "size_label"}
                }]
            }
        }
    }
}

A pair of shoes with US and EU sizes:

[{
    "equals": {"value": "8", "unit": "us_shoe_size"}
}, {
    "equals": {"value": "41", "unit": "eu_shoe_size"}
}]