JL-AgentBehavior-10K / schema.json
jumplander's picture
Upload 20 files
f301d78 verified
Raw
History Blame Contribute Delete
2.63 kB
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://jumplander.org/schemas/jl-agentbehavior-10k-v1.schema.json",
"title": "JL-AgentBehavior-10K v1 Record",
"type": "object",
"required": [
"id",
"version",
"split",
"record_type",
"primary_behavior",
"language",
"task_type",
"difficulty",
"task",
"environment",
"behavioral_labels",
"provenance",
"quality",
"supervision",
"fingerprint"
],
"properties": {
"id": {
"type": "string",
"pattern": "^jlab-v1-[0-9]{5}$"
},
"version": {
"const": "1.0.0"
},
"split": {
"enum": [
"train",
"validation",
"test"
]
},
"record_type": {
"enum": [
"trajectory",
"preference",
"repair"
]
},
"primary_behavior": {
"enum": [
"repository_grounding",
"planning_decomposition",
"tool_selection_execution",
"bounded_code_editing",
"test_verification",
"failure_diagnosis_repair",
"code_review_security",
"permission_scope_safety",
"final_reporting"
]
},
"secondary_behaviors": {
"type": "array",
"items": {
"type": "string"
}
},
"language": {
"enum": [
"python",
"typescript",
"php",
"java",
"go",
"rust",
"csharp",
"cpp"
]
},
"ecosystem": {
"type": "string"
},
"task_type": {
"enum": [
"bug_fix",
"feature_implementation",
"refactoring",
"test_generation",
"code_review",
"security_fix",
"documentation_configuration"
]
},
"difficulty": {
"enum": [
"easy",
"medium",
"hard"
]
},
"task": {
"type": "object",
"required": [
"instruction",
"constraints",
"acceptance_criteria"
]
},
"environment": {
"type": "object",
"required": [
"repository_id",
"target_file",
"test_file",
"targeted_test_command"
]
},
"behavioral_labels": {
"type": "object"
},
"provenance": {
"type": "object",
"required": [
"origin",
"execution_verified",
"release_stage"
]
},
"quality": {
"type": "object"
},
"supervision": {
"type": "object"
},
"fingerprint": {
"type": "string",
"pattern": "^[0-9a-f]{64}$"
}
},
"additionalProperties": false
}