Datasets:
File size: 1,043 Bytes
8869e8d | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 | {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "Survey benchmark paper metadata",
"type": "object",
"required": ["basic_info"],
"properties": {
"basic_info": {
"type": "object",
"required": ["title"],
"properties": {
"arxiv_id": {"type": "string"},
"title": {"type": "string"},
"authors": {"type": "array", "items": {"type": "string"}},
"publication_year": {"type": ["integer", "null"]},
"publication_date": {"type": ["string", "null"]},
"abstract": {"type": ["string", "null"]},
"file_path": {"type": ["string", "null"], "description": "Must be empty in the public metadata release."}
}
},
"categorization": {"type": "object"},
"technical_attributes": {"type": "object"},
"resource_info": {"type": "object"},
"method_details": {"type": "object"},
"dataset_info": {"type": "object"},
"research_logic": {"type": "object"},
"evaluation": {"type": "object"}
},
"additionalProperties": true
}
|