Last active
August 7, 2024 18:01
-
-
Save susanBuck/c8898f8965043e8cf2b8552c719ba093 to your computer and use it in GitHub Desktop.
Example EST conditions array
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
[ | |
{ | |
"block": "practice", | |
"trials": [ | |
{ | |
"word": "crumb", | |
"color": "red", | |
"isNeutral": true | |
}, | |
{ | |
"word": "muddy", | |
"color": "green", | |
"isNeutral": true | |
} | |
] | |
}, | |
{ | |
"block": "positive", | |
"trials": [ | |
{ | |
"word": "smile", | |
"color": "red", | |
"isNeutral": false | |
}, | |
{ | |
"word": "snail", | |
"color": "blue", | |
"isNeutral": true | |
} | |
] | |
}, | |
{ | |
"block": "negative", | |
"trials": [ | |
{ | |
"word": "agony", | |
"color": "blue", | |
"isNeutral": false | |
}, | |
{ | |
"word": "ledge", | |
"color": "green", | |
"isNeutral": true | |
} | |
] | |
} | |
] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment