edgarcalcqa / schema.json
EDGARCalcQA's picture
Upload folder using huggingface_hub
571ed33 verified
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "EDGARCalcQA benchmark example",
"description": "Schema summary for EDGARCalcQA expanded 513-example release records.",
"type": "object",
"required": [
"id",
"company",
"ticker",
"question_type",
"question",
"answer_numeric",
"answer_display",
"unit",
"gold_concepts",
"gold_period",
"form",
"filed",
"derivation",
"gold_evidence",
"gold_exact",
"accepted_numeric_forms",
"support_units",
"accepted_support_paths"
],
"properties": {
"accepted_numeric_forms": {
"types": [
"array"
],
"required": true,
"present_in_examples": 513,
"description": "Accepted rounded/display-equivalent numeric forms."
},
"accepted_support_paths": {
"types": [
"array"
],
"required": true,
"present_in_examples": 513,
"description": "Valid support-unit paths for relaxed citation scoring."
},
"answer_display": {
"types": [
"string"
],
"required": true,
"present_in_examples": 513,
"description": "Human-readable gold answer."
},
"answer_numeric": {
"types": [
"number"
],
"required": true,
"present_in_examples": 513,
"description": "Gold numeric answer used for scoring."
},
"company": {
"types": [
"string"
],
"required": true,
"present_in_examples": 513,
"description": "Company name."
},
"derivation": {
"types": [
"null",
"object"
],
"required": true,
"present_in_examples": 513,
"description": "Structured derivation inputs and formula metadata."
},
"filed": {
"types": [
"string"
],
"required": true,
"present_in_examples": 513,
"description": "Filing date."
},
"form": {
"types": [
"string"
],
"required": true,
"present_in_examples": 513,
"description": "SEC filing form type."
},
"gold_concepts": {
"types": [
"array"
],
"required": true,
"present_in_examples": 513,
"description": "XBRL concept names used to derive the answer."
},
"gold_evidence": {
"types": [
"array"
],
"required": true,
"present_in_examples": 513,
"description": "Gold evidence passage metadata from filing text."
},
"gold_exact": {
"types": [
"object"
],
"required": true,
"present_in_examples": 513,
"description": "Canonical exact gold value metadata."
},
"gold_period": {
"types": [
"object"
],
"required": true,
"present_in_examples": 513,
"description": "Fiscal period metadata for the answer."
},
"id": {
"types": [
"string"
],
"required": true,
"present_in_examples": 513,
"description": "Stable benchmark example identifier."
},
"question": {
"types": [
"string"
],
"required": true,
"present_in_examples": 513,
"description": "Natural-language question."
},
"question_type": {
"types": [
"string"
],
"required": true,
"present_in_examples": 513,
"description": "Task family: value_lookup, derived_ratio, or temporal_comparison."
},
"support_units": {
"types": [
"array"
],
"required": true,
"present_in_examples": 513,
"description": "Evaluation support units for relaxed citation scoring."
},
"ticker": {
"types": [
"string"
],
"required": true,
"present_in_examples": 513,
"description": "Company ticker symbol."
},
"unit": {
"types": [
"string"
],
"required": true,
"present_in_examples": 513,
"description": "Answer unit or scale."
}
}
}