forked from datasets/unece-package-codes
-
Notifications
You must be signed in to change notification settings - Fork 2
/
datapackage.json
34 lines (34 loc) · 963 Bytes
/
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
{
"name": "unece-package-codes",
"title": "UNECE/CEFACT package codes",
"license": "ODC-PDDL-1.0",
"description": "Coded representations of the package type names used in International Trade (UNECE/CEFACT Trade Facilitation Recommendation No.21)",
"version": "9.0.0",
"sources": [{
"name": "UNECE",
"web": "http://www.unece.org/tradewelcome/areas-of-work/un-centre-for-trade-facilitation-and-e-business-uncefact/outputs/cefactrecommendationsrec-index/list-of-trade-facilitation-recommendations-n-21-to-24.html"
}],
"resources": [
{
"path": "data/data.csv",
"schema": {
"fields": [
{
"name": "Code",
"type": "string",
"description": "A 2 character alpha numeric code value agreed by the UN/CEFACT content management group",
"pattern": "[A-Z]{2}"
},
{
"name": "Name",
"type": "string"
},
{
"name": "Description",
"type": "string"
}
]
}
}
]
}