Apparel metadata

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

Metadata attribute nameRelevanceProducts count
sizesClothing and shoes402 216

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 (XXSXSSMLXLXXLXXXLXXXXL, XXXXXLone_size)
  • waist_inches — waist size in inches (usually used for pants, skirts, shorts)
  • length_inches — waist size in inches (usually used for pants, skirts, shorts)
  • eu_size — for European shoe / clothing sizes
  • us_size — for US shoe / clothing 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"}
}]