Datasets:
Tasks:
Document Question Answering
Size:
n<1K
Tags:
benchmark
document-ai
information-extraction
structured-extraction
key-information-extraction
ocr
License:
File size: 3,857 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 | {
"type": "object",
"additionalProperties": false,
"properties": {
"rateYear": {
"type": "integer",
"description": "Tax year the arnona rates apply to (שנת הארנונה)"
},
"rateUnit": {
"type": "string",
"description": "Unit the rates are expressed in",
"enum": [
"NIS per square meter",
"NIS"
]
},
"residentialRates": {
"type": "array",
"description": "Residential arnona rates by property class, one row per class, with the rate for each zone",
"items": {
"type": "object",
"additionalProperties": false,
"properties": {
"propertyClass": {
"type": "string",
"description": "Residential property class (סוג הכנס)",
"enum": [
"א+",
"א",
"ב",
"ג",
"ד"
]
},
"zoneARate": {
"type": "number",
"description": "Rate for zone א (אזור א') in NIS/m2"
},
"zoneBRate": {
"type": "number",
"description": "Rate for zone ב (אזור ב') in NIS/m2"
},
"zoneCRate": {
"type": "number",
"description": "Rate for zone ג (אזור ג') in NIS/m2"
},
"zoneDRate": {
"type": "number",
"description": "Rate for zone ד (אזור ד') in NIS/m2"
}
}
}
},
"officeAndCommercialRates": {
"type": "array",
"description": "Office, business and commerce arnona rates by zone, split by business area size band",
"items": {
"type": "object",
"additionalProperties": false,
"properties": {
"zone": {
"type": "string",
"description": "Zone (אזור)",
"enum": [
"א",
"ב",
"ג",
"ד"
]
},
"rateUpTo300sqm": {
"type": "number",
"description": "Rate for businesses up to 300 m2 (עסקים עד 300 מ\"ר) in NIS/m2"
},
"rateAbove300sqm": {
"type": "number",
"description": "Rate for businesses above 300 m2 (עסקים מעל 300 מ\"ר) in NIS/m2"
}
}
}
},
"propertyTypeRates": {
"type": "array",
"description": "arnona for property categories outside the residential and office/commerce tables; emit one row per distinct printed rate: if a category has per-zone or per-size-band sub-rates, emit a separate row for each sub-rate with zone/sizeBand set, otherwise set both to null",
"items": {
"type": "object",
"additionalProperties": false,
"properties": {
"propertyType": {
"type": "string",
"description": "base property category WITHOUT the zone or size-band modifier, as printed (e.g. גני ילדים ומוסדות חינוך, בתי קולנוע, תעשיה, בתי תוכנה, בתי מלון)"
},
"rate": {
"type": "number",
"description": "Rate in NIS/m2"
},
"zone": {
"type": [
"string",
"null"
],
"enum": [
"א",
"ב",
"ג",
"ד",
null
],
"description": "zone modifier when the category is split by zone (אזור), else null"
},
"sizeBand": {
"type": [
"string",
"null"
],
"description": "size-band or location modifier when the category is split by area/location, as printed, else null"
}
}
}
}
}
} |