Skip to content

Commit

Permalink
Added schema for Activity Transition event
Browse files Browse the repository at this point in the history
  • Loading branch information
this-Aditya committed Jul 6, 2023
1 parent 0137ea8 commit f44dff3
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions commons/passive/google/google_activity_transition_event.avsc
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
{
"namespace": "org.radarcns.passive.google",
"type": "record",
"name": "GoogleActivityTransitionEvent",
"doc": "Represents an activity transition event, for example start to walk, stop running etc.",
"fields": [
{ "name": "time", "type": "double", "doc": "The UNIX epoch time (s) for the moment when the activity takes place.." },
{ "name": "timeReceived", "type": "double", "doc": "Device receiver timestamp in UTC (s)." },
{ "name": "activity", "type": {
"name": "ActivityType",
"type": "enum",
"doc": "The detected activity of the device. \nIN_VEHICLE indicates the device is in a vehicle, such as a car. \nON_BICYCLE indicates the device is on a bicycle. \n ON_FOOT indicates the device is on a user who is walking or running. \nRUNNING indicates the device is on a user who is running. This is a sub-activity of ON_FOOT. \nSTILL indicates the device is still (not moving). \nTILTING indicates the device angle relative to gravity changed significantly. This often occurs when a device is picked up from a desk or a user who is sitting stands up. \nWALKING indicates the device is on a user who is walking. This is a sub-activity of ON_FOOT. \nUNKNOWN indicates activity is not detected.",
"symbols": ["IN_VEHICLE", "ON_BICYCLE", "ON_FOOT", "RUNNING", "STILL", "TILTING", "WALKING", "UNKNOWN"]
}, "doc": "Gets the type of the activity of the transition.", "default": "UNKNOWN" },
{ "name": "transition", "type": {
"name": "TransitionType",
"type": "enum",
"doc": "Represents the transition associated with an activity listed in ActivityType. For instance start to walk, stop running etc. \nENTER represents user enters the given activity from ActivityType. \nEXIT represents user exits the given activity from ActivityType.",
"symbols": ["ENTER", "EXIT", "UNKNOWN"]
}, "doc": "Represents the transition associated with an activity listed in ActivityType.", "default": "UNKNOWN" }
]
}

0 comments on commit f44dff3

Please sign in to comment.