mental-spaces / schema.json
osteele's picture
Mental Spaces Corpus v0.1
96bc066
Raw
History Blame Contribute Delete
2.22 kB
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"additionalProperties": false,
"properties": {
"alternative_space": {
"type": ["string", "null"]
},
"alternative_value": {
"type": ["string", "null"]
},
"answer": {
"type": "string"
},
"answer_kind": {
"type": "string"
},
"answer_space": {
"type": "string"
},
"base_space": {
"type": "string"
},
"base_value": {
"type": ["string", "null"]
},
"confound_controls": {
"items": {
"type": "string"
},
"type": "array"
},
"construction": {
"type": "string"
},
"context": {
"type": "string"
},
"control_type": {
"type": "string"
},
"entity": {
"type": "string"
},
"family": {
"type": "string"
},
"id": {
"type": "string"
},
"labels": {
"additionalProperties": {
"type": ["string", "boolean"]
},
"type": "object"
},
"lexical_trigger_present": {
"type": "boolean"
},
"notes": {
"type": "string"
},
"prompt": {
"type": "string"
},
"query_type": {
"type": "string"
},
"scenario_id": {
"type": "string"
},
"source_experiment": {
"type": "string"
},
"space_builder": {
"type": ["string", "null"]
},
"template_id": {
"type": "string"
},
"value_space_map": {
"additionalProperties": {
"type": "string"
},
"type": "object"
},
"split": {
"enum": ["train", "validation", "test"],
"type": "string"
}
},
"required": [
"id",
"scenario_id",
"split",
"construction",
"family",
"source_experiment",
"context",
"prompt",
"answer",
"answer_space",
"entity",
"base_space",
"alternative_space",
"base_value",
"alternative_value",
"value_space_map",
"query_type",
"template_id",
"answer_kind",
"space_builder",
"lexical_trigger_present",
"control_type",
"labels",
"confound_controls",
"notes"
],
"title": "Mental Spaces Corpus record",
"type": "object"
}