forked from datasets/ISO-Container-Codes
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdatapackage.json
More file actions
69 lines (69 loc) · 2.02 KB
/
datapackage.json
File metadata and controls
69 lines (69 loc) · 2.02 KB
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
{
"name": "iso-container-codes",
"title": "ISO 6346 Container Type Codes",
"license": "ODC-PDDL-1.0",
"description": "List of ISO 6346 Container Type Codes",
"version": "1.0.0",
"sources": [{
"name": "Container Container",
"web": "http://www.containercontainer.com/ISO6346.aspx"
},{
"name": "Wikipedia",
"web": "https://en.wikipedia.org/wiki/ISO_6346"
}],
"resources": [
{
"path": "data/iso-container-codes.csv",
"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": "Length in feet of the container",
"pattern": "[0-9]{2}"
},
{
"name": "height",
"type": "decimal",
"description": "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",
"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}"
}]
}
}
]
}