hts_entries
Data license: Public Domain · Data source: US International Trade Commission
160 rows where chapter_id = 32
This data as json, CSV (advanced)
Suggested facets: indent, general_rate, column2_rate, footnotes
unit 10
- kg 46
- - 42
- No. 28
- doz. 13
- m<sup>3</sup> 11
- m² 10
- pf.liters 6
- prs. 2
- m<sup>2</sup> 1
- t 1
Advanced export
JSON shape: default, array, newline-delimited, object
CREATE TABLE hts_entries (
id INTEGER PRIMARY KEY AUTOINCREMENT,
hts_code TEXT NOT NULL UNIQUE,
indent INTEGER,
description TEXT,
unit TEXT,
general_rate TEXT,
special_rate TEXT,
column2_rate TEXT,
footnotes TEXT,
chapter_id INTEGER REFERENCES chapters(id)
);
CREATE INDEX idx_hts_code ON hts_entries(hts_code);
CREATE INDEX idx_description ON hts_entries(description);