-
Notifications
You must be signed in to change notification settings - Fork 22
/
datapackage.json
85 lines (85 loc) · 2.42 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
83
84
85
{
"name": "iso-container-codes",
"title": "ISO 6346 Container Type Codes",
"licenses": [
{
"name": "ODC-PDDL-1.0",
"path": "http://opendatacommons.org/licenses/pddl/",
"title": "Open Data Commons Public Domain Dedication and License v1.0"
}
],
"description": "List of ISO 6346 Container Type Codes",
"version": "1.0.0",
"sources": [
{
"name": "Container Container",
"path": "http://www.containercontainer.com/ISO6346.aspx",
"title": "Container Container"
},
{
"name": "Wikipedia",
"path": "https://en.wikipedia.org/wiki/ISO_6346",
"title": "Wikipediad"
}
],
"resources": [
{
"path": "data/iso-container-codes.csv",
"name": "iso-container-codes",
"schema": {
"fields": [
{
"name": "code",
"type": "string",
"description": "A 4 digit Alpha Numeric Code uniquely describing the container as defined by ISO 6346",
"pattern": "[A-Z0-9]{4}"
},
{
"name": "description",
"type": "string",
"description": "Description of the Container Type",
"pattern": "[A-Z]{50}"
},
{
"name": "length",
"type": "number",
"description": "External length in feet of the container",
"pattern": "[0-9]{2}"
},
{
"name": "height",
"type": "number",
"description": "External height of container in feet"
},
{
"name": "group",
"type": "string",
"description": "4 Digit ISO 6346 describing the group the codes belong to, more regularly used when sending electronic shipping messages",
"pattern": "[A-Z0-9]{4}"
}
]
}
},
{
"path": "data/iso-container-groups.csv",
"name": "iso-container-groups",
"schema": {
"fields": [
{
"name": "code",
"type": "string",
"description": "A 4 digit Alpha Numeric Code uniquely describing the container/group as defined by ISO 6346",
"pattern": "[A-Z0-9]{4}"
},
{
"name": "description",
"type": "string",
"description": "Description of the Container",
"pattern": "[A-Z]{50}"
}
]
}
}
],
"collection": "logistics-data"
}