Datasets:
Tasks:
Document Question Answering
Size:
n<1K
Tags:
benchmark
document-ai
information-extraction
structured-extraction
key-information-extraction
ocr
License:
File size: 4,069 Bytes
8143f06 | 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 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 | {
"type": "object",
"additionalProperties": false,
"properties": {
"authorityName": {
"type": "string",
"description": "Name of the local authority (מועצה מקומית)"
},
"reportYear": {
"type": "integer",
"description": "Fiscal year of the financial statements"
},
"amountUnits": {
"type": "string",
"description": "Units the amounts are stated in",
"enum": [
"אלפי ש\"ח",
"ש\"ח"
]
},
"totalAssets": {
"type": "number",
"description": "Total assets at the report date for the current year (balance sheet)"
},
"totalLiabilitiesAndFunds": {
"type": "number",
"description": "Total liabilities and funds at the report date for the current year (balance sheet)"
},
"totalBudgetReceipts": {
"type": "number",
"description": "Grand total of regular-budget receipts for the actual current year (סה\"כ תקבולים)"
},
"totalBudgetPayments": {
"type": "number",
"description": "Grand total of regular-budget payments for the actual current year (סה\"כ תשלומים)"
},
"balanceSheetLineItems": {
"type": "array",
"description": "Balance-sheet line items (assets and liabilities) with both-year values",
"items": {
"type": "object",
"additionalProperties": false,
"properties": {
"section": {
"type": "string",
"description": "Balance sheet side",
"enum": [
"נכסים",
"התחייבויות"
]
},
"lineLabel": {
"type": "string",
"description": "Line item name as printed"
},
"currentYearAmount": {
"type": "number",
"description": "Amount for the current report year"
},
"priorYearAmount": {
"type": "number",
"description": "Amount for the prior year"
}
}
}
},
"budgetReceiptsByChapter": {
"type": "array",
"description": "Regular-budget receipts by chapter (תקבולים) from the budget summary form",
"items": {
"type": "object",
"additionalProperties": false,
"properties": {
"chapterNumber": {
"type": "string",
"description": "Chapter number (מספר הפרק)"
},
"chapterName": {
"type": "string",
"description": "Chapter name (שם הפרק)"
},
"budgetAmount": {
"type": "number",
"description": "Budgeted amount for the current year (תקציב)"
},
"actualCurrentYear": {
"type": "number",
"description": "Actual amount for the current year (ביצוע)"
},
"actualPriorYear": {
"type": "number",
"description": "Actual amount for the prior year (ביצוע)"
}
}
}
},
"budgetPaymentsByChapter": {
"type": "array",
"description": "Regular-budget payments by chapter (תשלומים) from the budget summary form",
"items": {
"type": "object",
"additionalProperties": false,
"properties": {
"chapterNumber": {
"type": "string",
"description": "Chapter number (מספר הפרק)"
},
"chapterName": {
"type": "string",
"description": "Chapter name (שם הפרק)"
},
"budgetAmount": {
"type": "number",
"description": "Budgeted amount for the current year (תקציב)"
},
"actualCurrentYear": {
"type": "number",
"description": "Actual amount for the current year (ביצוע)"
},
"actualPriorYear": {
"type": "number",
"description": "Actual amount for the prior year (ביצוע)"
}
}
}
}
}
} |