-
Notifications
You must be signed in to change notification settings - Fork 23
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 #140 from RADAR-base/release-0.4.0
Release 0.4.0
- Loading branch information
Showing
81 changed files
with
317 additions
and
1,379 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
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,14 @@ | ||
{ | ||
"namespace": "org.radarcns.connector.fitbit", | ||
"type": "record", | ||
"name": "FitbitSleepClassic", | ||
"doc": "Classic sleep data as defined at https://dev.fitbit.com/build/reference/web-api/sleep/. This is generally returned for devices without a heart rate sensor. Deduce absolute times using the timezone at the time of the measurement.", | ||
"fields": [ | ||
{ "name": "dateTime", "type": "string", "doc": "ISO 6801 formatted local date time of device (yyyy-MM-ddTHH:mm:ss)." }, | ||
{ "name": "timeReceived", "type": "double", "doc": "Time that the data was received from the Fitbit API (seconds since the Unix Epoch)." }, | ||
{ "name": "duration", "type": "int", "doc": "Duration at this sleep characteristic in seconds." }, | ||
{ "name": "level", "type": | ||
{ "name": "FitbitSleepClassicLevel", "type": "enum", "symbols": ["AWAKE", "RESTLESS", "ASLEEP", "UNKNOWN"], "doc": "Level of sleep as computed by Fitbit."}, | ||
"doc": "Level of sleep as computed by Fitbit.", "default": "UNKNOWN" } | ||
] | ||
} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
{ | ||
"namespace": "org.radarcns.connector.fitbit", | ||
"type": "record", | ||
"name": "FitbitTimeZone", | ||
"doc": "Fitbit profile time zone at the current time. This can be used to estimate the UTC time for the Sleep API.", | ||
"fields": [ | ||
{ "name": "timeReceived", "type": "double", "doc": "Time that the data was received from the Fitbit API (seconds since the Unix Epoch)." }, | ||
{ "name": "timeZoneOffset", "type": ["null", "int"], "doc": "Offset from UTC (s). If unknown, this is null.", "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,14 @@ | ||
{ | ||
"namespace": "org.radarcns.kafka", | ||
"name": "RecordSet", | ||
"type": "record", | ||
"doc": "Abbreviated record set, meant for binary data transfers of larger sets of data. It can contain just a source ID and the record values. The record keys are deduced from authentication parameters. This method of data transfer requires that the data actually adheres to the schemas identified by the schema version.", | ||
"fields": [ | ||
{"name": "keySchemaVersion", "type": "int", "doc": "Key schema version for the given topic."}, | ||
{"name": "valueSchemaVersion", "type": "int", "doc": "Value schema version for the given topic."}, | ||
{"name": "projectId", "type": ["null", "string"], "doc": "Project ID of the sent data. If null, it is attempted to be deduced from the credentials.", "default": null}, | ||
{"name": "userId", "type": ["null", "string"], "doc": "User ID of the sent data. If null, it is attempted to be deduced from the credentials.", "default": null}, | ||
{"name": "sourceId", "type": "string", "doc": "Source ID of the sent data."}, | ||
{"name": "data", "type": {"type": "array", "items": "bytes", "doc": "Binary serialized Avro records."}, "doc": "Collected data. This should just contain the value records."} | ||
] | ||
} |
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 |
---|---|---|
|
@@ -17,7 +17,7 @@ subprojects { | |
apply plugin: 'idea' | ||
|
||
// Configuration | ||
version = '0.3.6' | ||
version = '0.4.0' | ||
group = 'org.radarcns' | ||
ext.githubRepoName = 'RADAR-base/RADAR-Schemas' | ||
|
||
|
@@ -56,37 +56,25 @@ subprojects { | |
} | ||
} | ||
developers { | ||
developer { | ||
id 'herkulano' | ||
name 'Herculano Campos' | ||
email '[email protected]' | ||
organization 'Golden Arm Inc.' | ||
} | ||
developer { | ||
id 'fnobilia' | ||
name 'Francesco Nobilia' | ||
email '[email protected]' | ||
organization 'King\'s College London' | ||
} | ||
developer { | ||
id 'blootsvoets' | ||
name 'Joris Borgdorff' | ||
email '[email protected]' | ||
organization 'The Hyve' | ||
} | ||
developer { | ||
id 'strangepleasures' | ||
name 'Pavel Mikhailovskii' | ||
email '[email protected]' | ||
organization 'The Hyve' | ||
id 'yatharthranjan' | ||
name 'Yatharth Ranjan' | ||
email '[email protected]' | ||
organization 'King\'s College London' | ||
} | ||
} | ||
issueManagement { | ||
system 'GitHub' | ||
url issueUrl | ||
} | ||
organization { | ||
name 'RADAR-CNS' | ||
name 'RADAR-base' | ||
url website | ||
} | ||
scm { | ||
|
This file was deleted.
Oops, something went wrong.
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
Oops, something went wrong.