Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
36 changes: 36 additions & 0 deletions schemas/activity/subjectPreparation.schema.tpl.json
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",
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

name is too generic.

"properties": {
"assessment": {
"_instruction": "Add All the assessments aquired during this session.",
"_linkedTypes": [
"https://openminds.ebrains.eu/specimenPrep/Assessment"
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

TBD: I do not think this is a separate schema

Copy link
Member

Choose a reason for hiding this comment

The 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": {
Copy link
Member

Choose a reason for hiding this comment

The 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"
]
}
}
}
21 changes: 21 additions & 0 deletions schemas/entity/assessment.schema.tpl.json
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",
Copy link
Member

Choose a reason for hiding this comment

The 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"
]
}
}
}