diff --git a/commons/passive/google/google_activity_transition_event.avsc b/commons/passive/google/google_activity_transition_event.avsc new file mode 100644 index 00000000..0ee2b214 --- /dev/null +++ b/commons/passive/google/google_activity_transition_event.avsc @@ -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" } + ] +} diff --git a/specifications/passive/google_activity-1.0.0.yml b/specifications/passive/google_activity-1.0.0.yml new file mode 100644 index 00000000..591e297e --- /dev/null +++ b/specifications/passive/google_activity-1.0.0.yml @@ -0,0 +1,14 @@ +#======================================= Google Activity ==========================================# +vendor: GOOGLE +model: ACTIVITY +version: 1.0.0 +data: + #Google Activity Recognition + - type: ACTIVITY_TRANSITION_EVENT + app_provider: .google.GoogleActivityProvider + unit: NON_DIMENSIONAL + processing_state: RAW + topic: android_google_activity_transition_event + value_schema: .passive.google.GoogleActivityTransitionEvent + sample_rate: + dynamic: true