Skip to content

Commit

Permalink
Merge pull request #83 from RADAR-CNS/release_0.2.3
Browse files Browse the repository at this point in the history
Release 0.2.3
  • Loading branch information
yatharthranjan authored Dec 11, 2017
2 parents 2117dbc + 75c8452 commit 6b4c59a
Show file tree
Hide file tree
Showing 8 changed files with 1,996 additions and 5 deletions.
29 changes: 29 additions & 0 deletions commons/active/thincit/thinc_it_pdq.avsc
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
{
"namespace": "org.radarcns.active.thincit",
"type": "record",
"name": "ThincItPdq",
"doc": "THINC-it Assessment derived from PDQ5.",
"fields": [
{ "name": "time", "type": "double", "doc": "Timestamp in UTC (s) when the test is submitted to the subject." },
{ "name": "timeCompleted", "type": "double", "doc": "Timestamp in UTC (s) when the subject completes the test." },
{ "name": "score", "type": "int", "doc": "THINC-it index score - 0 to 4000." },
{ "name": "questionOne", "type": ["null",
{
"type": "enum",
"name": "ThincItPdqQuestion",
"doc": "PDQ5 question.",
"symbols": [
"NEVER",
"RARELY",
"SOMETIMES",
"OFTEN",
"VERYOFTEN"
]
}], "doc": "PDQ5 Question 1.", "default": null},
{ "name": "questionTwo", "type": ["null", "ThincItPdqQuestion"], "doc": "PDQ5 Question 2.", "default": null},
{ "name": "questionThree", "type": ["null", "ThincItPdqQuestion"], "doc": "PDQ5 Question 3.", "default": null},
{ "name": "questionFour", "type": ["null", "ThincItPdqQuestion"], "doc": "PDQ5 Question 4.", "default": null},
{ "name": "questionFive", "type": ["null", "ThincItPdqQuestion"], "doc": "PDQ5 Question 5.", "default": null},
{ "name": "appVersion", "type": "int", "doc": "App version." }
]
}
3 changes: 2 additions & 1 deletion commons/catalogue/radar_widget.avsc
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
"symbols": [
"RADIO" ,
"SLIDER",
"NONE"
"NONE",
"RANGE"
]
}
2 changes: 1 addition & 1 deletion java-sdk/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ subprojects {
apply plugin: 'idea'

// Configuration
version = '0.2.2'
version = '0.2.3'
group = 'org.radarcns'
ext.githubRepoName = 'RADAR-CNS/RADAR-Schemas'

Expand Down
Loading

0 comments on commit 6b4c59a

Please sign in to comment.