Created
October 10, 2019 14:26
-
-
Save lindemann09/869536f0e2640eb82a2fa19158d6236a to your computer and use it in GitHub Desktop.
Example Levels
This file contains hidden or 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
{ | |
"@type": "dataset", | |
"@context": "https://schema.org/", | |
"schemaVersion": "Psych-DS 0.1.0", | |
"name": "Dataset Demo", | |
"description": "", | |
"keywords": [], | |
"license": "", | |
"temporalCoverage": "", | |
"spatialCoverage": "", | |
"datePublished": "", | |
"dateCreated": "", | |
"variableMeasured": [ | |
{ | |
"@type": "PropertyValue", | |
"name": "Gender", | |
"description": "The gender of the person", | |
"levels": [ | |
{ | |
"@type": "CategoryCode", | |
"codeValue": 1, | |
"description": "Female" | |
}, | |
{ | |
"@type": "CategoryCode", | |
"codeValue": 2, | |
"description": "Male" | |
} | |
] | |
}, | |
{ | |
"@type": "PropertyValue", | |
"name": "Colour", | |
"description": "The color of the stimulus", | |
"levels": [ | |
{ | |
"@type": "CategoryCode", | |
"codeValue": 0, | |
"description": "Red" | |
}, | |
{ | |
"@type": "CategoryCode", | |
"codeValue": 1, | |
"description": "Green" | |
} | |
] | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment