The Legal Metrology (Packaged Commodities) Amendment Rules, 2026 were notified on 13 February 2026 and took effect on 1 July 2026. They insert Rule 6(10A), which requires e-commerce entities to display imported products through a searchable filter and to provide a sortable filter based on country of origin. If you run or build an Indian e-commerce platform and that filter does not exist, the compliance date has passed and this is a remediation item rather than something to schedule.
The scope is broad and deliberately catches every model. Marketplace platforms, inventory-based e-commerce entities, foreign e-commerce companies operating in India, and direct-to-consumer brands selling imported goods online are all covered. Being a marketplace that merely hosts other people's listings does not remove the obligation — the rule attaches to the e-commerce entity, which means the platform is responsible for what its listings display even where a seller supplied the data.
That last point is what makes this an engineering problem rather than a content one. Delivering a searchable and sortable country-of-origin filter requires the field to exist on every product, to be populated, to be validated, and to be indexed. Most catalogues have a country field that is optional, inconsistently filled, and stored as free text — so the same country appears as India, INDIA, Bharat and IN across a hundred thousand listings, and no filter built on it will work.
The work therefore runs in a specific order. Add or promote the field to mandatory in the product schema. Normalise what is already there against a controlled list of countries rather than accepting text. Backfill the gaps, which means going to sellers for data they may not have supplied, with a deadline and a consequence. Index it for search and expose it in the filter and sort. And align the backend data with what the front end displays, because a filter that returns products whose listing pages say something different is a worse position than no filter.
Identify imported products separately, which is the underlying intent. A platform that cannot distinguish domestic from imported stock cannot satisfy the rule however good its country field is, and for many catalogues that distinction has never been recorded because nobody needed it commercially. Deriving it after the fact from supplier data or HSN codes is possible and imperfect; capturing it at listing time is the only durable answer.
For anyone building marketplace or catalogue software, the general lesson is worth taking beyond this particular rule. Indian e-commerce regulation has moved steadily toward mandated disclosure on listings — country of origin, seller identity, the dark patterns provisions, GST-compliant invoicing — and each new requirement lands on the product schema. A catalogue where attributes are a flexible free-text bag absorbs each of those as a data-cleaning project. One where attributes are typed, controlled and validated absorbs them as a migration. The difference compounds with every new rule.