π Global Standard: Our open-source, standardized product taxonomy establishes a universal language for product classification. Comprehensive and already empowering merchants on Shopify.
π©πΌβπ» Integration Friendly: With a stable structure and diverse formats our taxonomy is designed for effortless integration into any system.
π Industry Benchmark: Spanning 25+ essential verticals, our taxonomy encompasses categories, attributes, and values, all thoughtfully integrated within Shopify and numerous marketplaces.
Learn more on help.shopify.com
Our taxonomy is an open-source comprehensive, global standard for product classification. It's a universal language that empowers merchants to categorize their products. Spanning 25+ essential verticals, our taxonomy encompasses categories, attributes, and values, all thoughtfully integrated within Shopify and numerous marketplaces.
Ready to dive in? Explore our taxonomy interactively to visualize and discover what's published across the many categories, attributes, and values.
This repository is the home of Shopify's Standard Product Taxonomy. It houses the source-of-truth data, the distribution files for implementation, and the source code that makes this all sing.
You can think of this repository serving 3 primary users:
Dive straight into dist
to find the files you need and integrate this taxonomy into your system.
We offer txt
and json
formats to make it easy to integrate with your systems. If you have a specific format you'd like to see, please open an issue and let us know!
To make it easier to integrate with the taxonomy, we have also included a set of data called mappings. These are rules that can be used to convert between categories and attributes in the Shopify taxonomy to categories and attributes of another taxonomy. For more on mappings see documentaton in the integrations directory.
Submit a taxonomy tree change request to give us insight and evolve the taxonomy. This is the simplest way to effect change.
Alternatively, you may submit PRs directly yourself against the source-of-truth files in data/
.
If you make changes to any files in data/
, you'll need to update the distribution files. There are two ways:
/generate_dist
to have CI commit the changes for you π€make
locally and commit the changes yourselfOur taxonomy supports translations to various languages in the localizations
directory. To report a translation issue (non-English text), submit a localization fix request.
Everything else is how we manage the taxonomy and generate distributions. This is where the magic happens.
This is a simple ETL app composed of a few core models. The app is built on Rails and Jekyll:
data/
and ensure the correctness of results.For Shopify employees or folks with minidev
:
dev up
For everyone else you'll need to:
ruby
, version matching .ruby-version
cue
, version 0.7.x or highermake
bundle install
Here are the commands you'll use most often:
make [build] # build the dist and documentation files
make clean # remove sentinels and generated files
make seed # parse data/ into local db
make console # irb with dependencies loaded
make test # run ruby tests and cue schema verification
make run_docs # http://localhost:4000 interactive view of dist/
If you want to add a new distribution format, you'll need to do 3 things:
Category#as_json
, Category#as_pkl
)bin/generate_dist
to write files in the new formatMakefile
to add the new file format to the clean targetThis is a Rails app after all, so we'll give a map of the novel pieces of our system:
βββ Makefile # key dev and build commands
βββ app/ # rails standard
βββ bin/
β βββ generate_dist # primary entrypoint for generating dist/
β βββ generate_docs # primary entrypoint for generating docs/
βββ db/
β βββ schema.rb # because this is a local-only app, we don't use migrations
β βββ seed.rb # a custom seed script to load data/ into the local db
βββ dist/ # generated distribution files
βββ data/
β βββ integrations/ # integrations and mappings between taxonomies
β βββ localizations/ # localizations for categories, attributes, and values
β βββ categories/ # source-of-truth for categories
β βββ attributes.yml # source-of-truth for attributes
β βββ values.yml # source-of-truth for values
βββ test/ # rails standard
We welcome contributions! Before we can merge any changes you submit via PR, you'll need to sign the Shopify CLA (a friendly robot will help when you open your first PR π€).
You can always find the current published version in VERSION
. The changelog is available in CHANGELOG.md
.
Versions are determined by CalVer, in sync with Shopify's API release schedule.
That means a stable release every 3 months at most, at the beginning of the quarter. Version names are date-based to be meaningful and semantically unambiguous (for example, 2024-07
).
Formal releases are published as Github releases and available on the interactive docs site.
Shopify's Product Taxonomy is released under the MIT License. So go ahead, explore, play, and build something awesome!