Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
110 changes: 54 additions & 56 deletions events/examples.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,29 +25,29 @@ A [Query Event](/events#query-event) example of `/events/events` with minimum re
"currency": "USD",
"author": "City of Metropolis",
"license_url": "https://creativecommons.org/licenses/by/4.0/",
"data": [
{
"events": [
{
"event_id": "7d8a5885-e949-4ac9-afb7-fa4d43b68530",
"event_type": "park_start",
"event_location": {
"type": "Feature",
"properties": { "timestamp": 1552678574581 },
"geometry": {
"type": "Point",
"coordinates": [ -85.7629808, 38.257341 ]
}
"data": {
"events": [
{
"event_id": "7d8a5885-e949-4ac9-afb7-fa4d43b68530",
"event_type": "park_start",
"event_location": {
"type": "Feature",
"properties": {
"timestamp": 1552678574581
},
"event_time": "1552678578632",
"event_publication_time": "1552678594428",
"curb_zone_id": "02885f6f-ef93-441b-9e74-487279380656",
"data_source_type": "above_ground",
"data_source_device_id": "0fcb51b0-4529-4d28-a339-81e9a9bbcdb3"
}
]
}
]
"geometry": {
"type": "Point",
"coordinates": [-85.7629808, 38.257341]
}
},
"event_time": "1552678578632",
"event_publication_time": "1552678594428",
"curb_zone_id": "02885f6f-ef93-441b-9e74-487279380656",
"data_source_type": "above_ground",
"data_source_device_id": "0fcb51b0-4529-4d28-a339-81e9a9bbcdb3"
}
]
}
}
```

Expand All @@ -69,40 +69,38 @@ A [Query Event](/events#query-event) example of `/events/events` from a fleet op
"currency": "USD",
"author": "City of Metropolis",
"license_url": "https://creativecommons.org/licenses/by/4.0/",
"data": [
{
"events": [
{
"event_id": "7d8a5885-e949-4ac9-afb7-fa4d43b68530",
"event_type": "park_start",
"event_purpose": "parcel_delivery",
"event_location": {
"type": "Feature",
"properties": { "timestamp": 1552678574581 },
"geometry": {
"type": "Point",
"coordinates": [ -85.7629808, 38.257341 ]
}
},
"event_time": "1552678578632",
"event_publication_time": "1552678594428",
"curb_zone_id": "02885f6f-ef93-441b-9e74-487279380656",
"data_source_type": "data_feed",
"data_source_operator_id": "16a85550-51d3-4f52-8ea9-e8a10306cab2",
"data_source_operator_name": "USPS",
"data_source_device_id": "618e92a4-e557-42a9-8f0a-0273545f7f49",
"data_source_manufacturer": "Grumman",
"data_source_model": "LLV",
"vehicle_id": "USDOT 33213",
"vehicle_permit_number": "KYVID-319380-A",
"vehicle_length": "670",
"vehicle_type": "truck",
"vehicle_propulsion_types": ["electric"],
"vehicle_blocked_lane_types": ["parking"]
}
]
}
]
"data": {
"events": [
{
"event_id": "7d8a5885-e949-4ac9-afb7-fa4d43b68530",
"event_type": "park_start",
"event_purpose": "parcel_delivery",
"event_location": {
"type": "Feature",
"properties": {"timestamp": 1552678574581},
"geometry": {
"type": "Point",
"coordinates": [-85.7629808, 38.257341]
}
},
"event_time": "1552678578632",
"event_publication_time": "1552678594428",
"curb_zone_id": "02885f6f-ef93-441b-9e74-487279380656",
"data_source_type": "data_feed",
"data_source_operator_id": "16a85550-51d3-4f52-8ea9-e8a10306cab2",
"data_source_operator_name": "USPS",
"data_source_device_id": "618e92a4-e557-42a9-8f0a-0273545f7f49",
"data_source_manufacturer": "Grumman",
"data_source_model": "LLV",
"vehicle_id": "USDOT 33213",
"vehicle_permit_number": "KYVID-319380-A",
"vehicle_length": "670",
"vehicle_type": "truck",
"vehicle_propulsion_types": ["electric"],
"vehicle_blocked_lane_types": ["parking"]
}
]
}
}
```

Expand Down