forked from datasets/harmonized-system
-
Notifications
You must be signed in to change notification settings - Fork 0
/
datapackage.json
82 lines (82 loc) · 2.04 KB
/
datapackage.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "harmonized-system",
"title": "Harmonized System",
"description": "International classification standard for trade products developed by the World Customs Organization",
"homepage": "http://www.wcoomd.org/en/topics/nomenclature/instrument-and-tools.aspx",
"version": "2017.0",
"keywords": ["HS Code", "commodity", "trade", "customs"],
"licenses": [
{
"name": "ODC-PDDL-1.0",
"path": "http://opendatacommons.org/licenses/pddl/",
"title": "Open Data Commons Public Domain Dedication and License v1.0"
}
],
"sources": [
{
"name": "UN Comtrade Reference Tables",
"path": "https://unstats.un.org/unsd/tradekb/Knowledgebase/50039/UN-Comtrade-Reference-Tables",
"title": "UN Comtrade"
}
],
"resources": [
{
"name": "sections",
"title": "Sections",
"path": "data/sections.csv",
"format": "CSV",
"mediatype": "text/csv",
"schema": {
"fields": [
{
"name": "section",
"title": "Section",
"type": "string",
"format": "default"
},
{
"name": "name",
"type": "string",
"format": "default"
}
]
}
},
{
"name": "harmonized-system",
"title": "Harmonized System",
"path": "data/harmonized-system.csv",
"format": "CSV",
"mediatype": "text/csv",
"schema": {
"fields": [
{
"name": "section",
"type": "string",
"format": "default"
},
{
"name": "hscode",
"type": "string",
"format": "default"
},
{
"name": "description",
"type": "string",
"format": "default"
},
{
"name": "parent",
"type": "string",
"format": "default"
},
{
"name": "level",
"type": "number",
"format": "default"
},
]
}
}
]
}