forked from zephyr-data-specs/GMNS
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathuse_definition.schema.json
49 lines (49 loc) · 1.36 KB
/
use_definition.schema.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
{
"primaryKey": "use",
"missingValues": [
"NaN",
""
],
"fieldsMatch": "subset",
"fields": [
{
"name": "use",
"type": "string",
"description": "Primary key",
"constraints": {
"required": true
}
},
{
"name": "persons_per_vehicle",
"type": "number",
"description": "Required.",
"constraints": {
"required": true,
"minimum": 0
}
},
{
"name": "pce",
"type": "number",
"description": "Required. Passenger car equivalent.",
"constraints": {
"required": true,
"minimum": 0
}
},
{
"name": "special_conditions",
"type": "string",
"description": "Optional."
},
{
"name": "description",
"type": "string",
"description": "Optional "
}
],
"name": "use_definition.schema.json",
"description": "The Use_Definition file defines the characteristics of each vehicle type or non-travel purpose (e.g., a shoulder or parking lane). A two-way left turn lane (TWLTL) is also a use.",
"$schema": "https://datapackage.org/profiles/2.0/tableschema.json"
}