-
Notifications
You must be signed in to change notification settings - Fork 2
Moving clinical research elements to specimenPrep #14
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: v1
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
{ | ||
"_extends": "/core/schemas/research/experimentalActivity.schema.tpl.json", | ||
"_type": "https://openminds.ebrains.eu/specimenPrep/SubjectPreparation", | ||
"properties": { | ||
"assessment": { | ||
"_instruction": "Add All the assessments aquired during this session.", | ||
"_linkedTypes": [ | ||
"https://openminds.ebrains.eu/specimenPrep/Assessment" | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. TBD: I do not think this is a separate schema There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. most likely this will be a behavioral protocol |
||
], | ||
"minItems": 1, | ||
"type": "array", | ||
"uniqueItems": true | ||
}, | ||
"behavioralProtocol": { | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. this does not make sense here. please remove |
||
"_instruction": "Add all behavioral protocols that were performed during this session.", | ||
"_linkedTypes": [ | ||
"https://openminds.ebrains.eu/core/BehavioralProtocol" | ||
], | ||
"minItems": 1, | ||
"type": "array", | ||
"uniqueItems": true | ||
}, | ||
"input": { | ||
"_instruction": "Add the state of the subject before this session.", | ||
"_linkedTypes": [ | ||
"https://openminds.ebrains.eu/core/SubjectState" | ||
] | ||
}, | ||
"output": { | ||
"_instruction": "Add the state of the subject after this session.", | ||
"_linkedTypes": [ | ||
"https://openminds.ebrains.eu/core/SubjectState" | ||
] | ||
} | ||
} | ||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
{ | ||
"_extends": "/publications/schemas/creativeWork.schema.tpl.json", | ||
"_type": "https://openminds.ebrains.eu/specimenPrep/AssessmentInstrument", | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. type mismatches type of filename and of reference in the other schema. Plus: I don't think this is a separate schema. Questionnaires or behavioral assessments are captured in behavioral protocols. |
||
"required": [ | ||
"assessmentType" | ||
], | ||
"properties": { | ||
"assessmentType": { | ||
"_instruction": "Add the type of this assessment", | ||
"_linkedTypes": [ | ||
"https://openminds.ebrains.eu/controlledTerms/AssessmentType" | ||
] | ||
}, | ||
"webResource": { | ||
"_instruction": "Add online version of this assetment.", | ||
"_linkedTypes": [ | ||
"https://openminds.ebrains.eu/core/WebResource" | ||
] | ||
} | ||
} | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
name is too generic.