-
Notifications
You must be signed in to change notification settings - Fork 24
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #114 from RADAR-base/release-0.3.2
Release 0.3.2
- Loading branch information
Showing
30 changed files
with
254 additions
and
2,484 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
{ | ||
"namespace": "org.radarcns.active.notification", | ||
"type": "record", | ||
"name": "Notification", | ||
"doc": "General schema for notifications. Check the specification folder to see how the notification has been defined. For each NotificationType there is a JSON file reporting the questions set and possible answers if available.", | ||
"fields": [ | ||
{ "name": "time", "type": "double", "doc": "Timestamp in UTC (s) when the notification is submitted to the subject." }, | ||
{ "name": "timeCompleted", "type": "double", "doc": "Timestamp in UTC (s) when subject marks the notification as complete." }, | ||
{ "name": "name", "type": "string", "doc": "Notifications names." }, | ||
{ "name": "version", "type": "string", "doc": "It reports the notification version stated in the JSON specification." }, | ||
{ "name": "answers", "type": { | ||
"type": "array", | ||
"items": { | ||
"name": "Answer", | ||
"type": "record", | ||
"doc": "Notification answer.", | ||
"fields": [ | ||
{ "name": "value", "type": ["int", "string", "double"], "doc": "Subject answer." }, | ||
{ "name": "startTime", "type": "double", "doc": "Timestamp in UTC (s) when the notification is shown." }, | ||
{ "name": "endTime", "type": "double", "doc": "Timestamp in UTC (s) when the notification is answered." } | ||
] | ||
}}, "doc": "Answers list. The answers order must follow the notification order."} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
{ | ||
"namespace": "org.radarcns.active.opensmile", | ||
"type": "record", | ||
"name": "OpenSmile2AudioAnalysis", | ||
"doc": "Audio data collected by aRMT app and processed using openSMILE.", | ||
"fields": [ | ||
{"name": "time", "type": "double", "doc": "Device timestamp in UTC (s)."}, | ||
{ "name": "timeCompleted", "type": "double", "doc": "Timestamp in UTC (s) when subject completed the audio questionnaire." }, | ||
{"name": "config", "type": "string", "doc": "Contents of an OpenSMILE configuration file." }, | ||
{"name": "data", "type": ["null", "string"], "doc": "Audio features computed by openSMILE in plain text.", "default": null}, | ||
{ "name": "reciteText", "type": ["null", "string"], "doc": "Text that was supposed to be recited as part of the recording.", "default": null } | ||
] | ||
} |
13 changes: 13 additions & 0 deletions
13
commons/active/opensmile/open_smile_2_audio_recording.avsc
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
{ | ||
"namespace": "org.radarcns.active.opensmile", | ||
"name": "OpenSmile2AudioRecording", | ||
"type": "record", | ||
"doc": "Audio recording part of the RADAR aRMT app.", | ||
"fields": [ | ||
{ "name": "time", "type": "double", "doc": "Device timestamp when the audio recording was started (s since the Unix Epoch)." }, | ||
{ "name": "timeCompleted", "type": "double", "doc": "Device timestamp when the audio recording was completed (s since the Unix Epoch)." }, | ||
{ "name": "mediaType", "type": "string", "doc": "Media type of the audio recording format. For example, audio/wav for a WAV recording. See https://www.iana.org/assignments/media-types/media-types.xhtml#audio for the list of standardized audio media types."}, | ||
{ "name": "data", "type": "string", "doc": "Base64 encoded contents of the recorded audio file." }, | ||
{ "name": "reciteText", "type": ["null", "string"], "doc": "Text that was supposed to be recited as part of the recording.", "default": null } | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
{ | ||
"namespace": "org.radarcns.active.task", | ||
"type": "record", | ||
"name": "Task", | ||
"doc": "General schema for tasks. Check the specification folder to see how the task has been defined. For each TaskType there is a JSON file reporting the tasks set and possible answers if available.", | ||
"fields": [ | ||
{ "name": "time", "type": "double", "doc": "Timestamp in UTC (s) when the task is submitted to the subject." }, | ||
{ "name": "timeCompleted", "type": "double", "doc": "Timestamp in UTC (s) when subject marks the task as complete." }, | ||
{ "name": "name", "type": "string", "doc": "Task names." }, | ||
{ "name": "version", "type": "string", "doc": "It reports the task version stated in the JSON specification." }, | ||
{ "name": "answers", "type": { | ||
"type": "array", | ||
"items": { | ||
"name": "Answer", | ||
"type": "record", | ||
"doc": "Task answer.", | ||
"fields": [ | ||
{ "name": "value", "type": ["int", "string", "double"], "doc": "Subject answer." }, | ||
{ "name": "startTime", "type": "double", "doc": "Timestamp in UTC (s) when the task is shown." }, | ||
{ "name": "endTime", "type": "double", "doc": "Timestamp in UTC (s) when the task is answered." } | ||
] | ||
}}, "doc": "Answers list. The answers order must follow the task order."} | ||
] | ||
} |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
{ | ||
"namespace": "org.radarcns.monitor.application", | ||
"name": "ApplicationTimeZone", | ||
"type": "record", | ||
"doc": "Local time zone that the device is running in.", | ||
"fields": [ | ||
{ "name": "time", "type": "double", "doc": "Device timestamp in UTC (s)." }, | ||
{ "name": "offset", "type": "int", "doc": "Offset from UTC (s)." } | ||
] | ||
} |
6 changes: 3 additions & 3 deletions
6
...e/emotion/emotion_faros_acceleration.avsc → ...e/bittium/bittium_faros_acceleration.avsc
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
{ | ||
"namespace": "org.radarcns.passive.bittium", | ||
"type": "record", | ||
"name": "BittiumFarosBatteryLevel", | ||
"doc": "Battery level of a Bittium Faros device.", | ||
"fields": [ | ||
{ "name": "time", "type": "double", "doc": "Device timestamp in UTC (s)." }, | ||
{ "name": "timeReceived", "type": "double", "doc": "Device receiver timestamp in UTC (s)." }, | ||
{ "name": "batteryLevel", "type": "float", "doc": "Battery level from 0 to 1. Note that the battery level is a rough estimate." }, | ||
{ "name": "exact", "type": "boolean", "doc": "Whether the batteryLevel can be taken as an exact value. True if the battery level is an exact representation, false if it is just an estimate based on the battery status (CRITICAL/LOW/MEDIUM/HIGH)." } | ||
] | ||
} |
6 changes: 3 additions & 3 deletions
6
...ns/passive/emotion/emotion_faros_ecg.avsc → ...ns/passive/bittium/bittium_faros_ecg.avsc
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
6 changes: 3 additions & 3 deletions
6
...on/emotion_faros_inter_beat_interval.avsc → ...um/bittium_faros_inter_beat_interval.avsc
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
6 changes: 3 additions & 3 deletions
6
...ve/emotion/emotion_faros_temperature.avsc → ...ve/bittium/bittium_faros_temperature.avsc
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
57 changes: 0 additions & 57 deletions
57
...-tools/src/main/java/org/radarcns/schema/specification/active/questionnaire/Question.java
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
40 changes: 0 additions & 40 deletions
40
...-tools/src/main/java/org/radarcns/schema/specification/active/questionnaire/Response.java
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.