JumpLander-PMB-100K / schema /schema.json
jumplander's picture
Upload 6 files
e19f925 verified
Raw
History Blame Contribute Delete
1.53 kB
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "JumpLander-PMB-100K Record Schema",
"type": "object",
"required": [
"id",
"dataset",
"version",
"split",
"language",
"domain",
"scenario_type",
"raw_user_message",
"normalized_user_intent",
"intent",
"constraints",
"ambiguity",
"expected_model_behavior",
"bad_model_behavior",
"ideal_response",
"evaluation",
"metadata"
],
"properties": {
"id": {
"type": "string"
},
"dataset": {
"type": "string"
},
"version": {
"type": "string"
},
"split": {
"type": "string",
"enum": [
"train",
"validation",
"test"
]
},
"language": {
"type": "string"
},
"domain": {
"type": "string"
},
"scenario_type": {
"type": "string"
},
"task_type": {
"type": "string"
},
"raw_user_message": {
"type": "string"
},
"normalized_user_intent": {
"type": "string"
},
"intent": {
"type": "object"
},
"constraints": {
"type": "array"
},
"context": {
"type": "object"
},
"ambiguity": {
"type": "object"
},
"expected_model_behavior": {
"type": "object"
},
"bad_model_behavior": {
"type": "object"
},
"ideal_response": {
"type": "object"
},
"evaluation": {
"type": "object"
},
"metadata": {
"type": "object"
}
}
}