Contains apparel-related metadata for products like shoes and clothing.
| Metadata attribute name | Products count |
|---|---|
| sizes | 320 739 |
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 (XXS, XS, S, M, L, XL, XXL, XXXL, XXXXL, one_size)eu_shoe_size — for European shoe sizesus_shoe_size — for US shoe sizesA 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"}
}]