-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathDataObjectRoute.dtd
137 lines (137 loc) · 2.61 KB
/
DataObjectRoute.dtd
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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
{
"$schema": "http://json-schema.org/draft-04/schema#",
"id": "https://github.com/route4me/route4me-json-schemas/blob/master/DataObjectRoute.dtd",
"title": "DataObjectRoute",
"type": "object",
"properties": {
"route_id": {
"type": [
"string"
],
"title": "Route ID",
"descrption": "Route unique identifier"
},
"member_id": {
"type": [
"string",
"null"
],
"title": "Member ID",
"descrption": "User ID who is assigned to the route"
},
"member_email": {
"type": [
"string",
"null"
],
"title": "Member Email",
"format": "email",
"descrption": "User email"
},
"member_picture":{
"type": [
"string",
"null"
],
"title": "Member Picture",
"description": "URL to a member picture"
},
"member_tracking_subheadline" : {
"type": [
"string",
"null"
],
"title": "Member Tracking Subheadline",
"description": "Member tracking subheadline"
},
"approved_for_execution": {
"type": "boolean",
"title": "Approved For Execution",
"description": "The route approved for execution"
},
"vehicle_alias": {
"type": [
"string",
"null"
],
"title": "Vehicle Alias",
"descrption": "Name of vehicle_id"
},
"driver_alias": {
"type": [
"string",
"null"
],
"title": "Driver Alias",
"descrption": "Name of driver_id"
},
"route_cost": {
"type": [
"number",
"null"
],
"title": "Route Cost",
"descrption": "Route cost"
},
"route_revenue": {
"type": [
"number",
"null"
],
"title": "Route Revenue",
"descrption": "Route revenue"
},
"net_revenue_per_distance_unit": {
"type": [
"number",
"null"
],
"title": "Net Revenue per Distance Unit",
"descrption": "equal to (Revenue - cost) / distance units"
},
"created_timestamp": {
"type": [
"integer",
"null"
],
"title": "Created Timestamp",
"descrption": "When was the route created"
},
"mpg": {
"type": [
"string",
"null"
],
"title": "Miles per Gallon",
"descrption": "Miles per gallon (used to compute fuel consumption)"
},
"trip_distance": {
"type": [
"number",
"null"
],
"title": "Trip Distance",
"descrption": "Route length (the unit is given by distance_unit)"
},
"gas_price": {
"type": [
"number",
"null"
],
"title": "Gas Price",
"descrption": "Price of gas (used to compute route costs)"
},
"route_duration_sec": {
"type": [
"integer",
"null"
],
"title": "Route Duration (sec)",
"descrption": "Estimated drive time of route (Seconds)"
}
},
"required": [
"route_id",
"member_id"
]
}