Skip to main content
Version: v2.0.0-rc6

StudyMetadata

Defined in: parser/types.ts:48

The StudyMetadata is used to describe certain properties of a study. Some of this data is displayed on the landing page when running the app, such as the title and description. Below is an example of a StudyMetadata entry in your study configuration file:

"studyMetadata" : {
"title": "My New Study",
"version": "pilot",
"authors": [
"Jane Doe",
"John Doe"
],
"date": "2024-04-01",
"description": "This study is meant to test your ability.",
"organizations": [
"The reVISit Team",
"The Other Team"
]
}

Properties

PropertyTypeDescriptionDefined in
authorsstring[]The authors of your study.parser/types.ts:54
datestringThe date of your study, may be useful for the researcher.parser/types.ts:56
descriptionstringThe description of your study, shown on the landing page.parser/types.ts:58
organizationsstring[]The organizations that are associated with your study.parser/types.ts:60
titlestringThe title of your study, shown on the landing page.parser/types.ts:50
versionstringThe version of your study. When you change a configuration file after a study has already been distributed to participants, you can change the version number so that the participants who see this new configuration file can be identified.parser/types.ts:52