-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathTrackingHistory.dtd
64 lines (64 loc) · 1.44 KB
/
TrackingHistory.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
{
"$schema": "http://json-schema.org/draft-04/schema#",
"id": "https://github.com/route4me/route4me-json-schemas/blob/master/TrackingHistory.dtd",
"title": "Tracking History",
"type": "object",
"properties": {
"s": {
"type": [
"string", "null"
],
"title": "Speed",
"description": "Speed at the time of the location transaction event"
},
"lt": {
"type": [
"string", "null"
],
"title": "Latitude",
"description": "Latitude at the time of the location transaction event"
},
"m": {
"type": [
"integer", "null"
],
"title": "Member ID",
"description": "Member ID"
},
"lg": {
"type": [
"string", "null"
],
"title": "Longitude",
"description": "Longitude at the time of the location transaction event"
},
"d": {
"type": [
"integer", "null"
],
"title": "Direction",
"description": "Direction/Heading at the time of the location transaction event"
},
"ts": {
"type": [
"string", "null"
],
"title": "Timestamp",
"description": "The original timestamp in unix timestamp format at the moment location transaction event"
},
"ts_friendly": {
"type": [
"string", "null"
],
"title": "Friendly Timestamp",
"description": "The original timestamp in a human readable timestamp format at the moment location transaction event"
},
"src": {
"type": [
"string", "null"
],
"title": "SRC",
"description": "Package src (e.g. 'R4M')"
}
}
}