image imagewidth (px) 812 924 | system stringclasses 1 value | instruction stringclasses 1 value | text stringlengths 125 21.2k |
|---|---|---|---|
You are a precise financial statement extraction system. Return only valid JSON that matches the required schema. | You are extracting financial-statement annotations from a single page image into the exact Pydantic schema `PageExtraction`.
Return ONLY valid JSON.
Do NOT return markdown, code fences, comments, prose, or extra keys.
Top-level schema (exact keys only):
{
"meta": {
"entity_name": "<string or null>",
"page_num": "<string or null>",
"type": "balance_sheet|income_statement|cash_flow|notes|contents_page|title|declaration|profits|other",
"title": "<string or null>"
},
"facts": [
{
"bbox": { "x": <number>, "y": <number>, "w": <number>, "h": <number> },
"value": "<string>",
"comment": "<string or null>",
"is_note": <true|false>,
"note": "<string or null>",
"note_reference": "<string>",
"date": "<string or null>",
"path": ["<string>", "..."],
"currency": "ILS|USD|EUR|GBP|null",
"scale": 1|1000|1000000|null,
"value_type": "amount|%|null"
}
]
}
Type/validation rules (must match schema):
1. `meta` and `facts` are required.
2. `note_reference` is required string. Use "" when missing.
3. `path` is required list of strings (use [] when unknown, never null).
4. `is_note` must be boolean (never null and never "true"/"false" strings).
5. `date` must be `YYYY` or `YYYY-MM-DD` when provided.
6. `value` rules:
- If the value is a percentage, include `%` (for example `12%`, `12.5%`).
- If not a percentage, output only canonical numeric text: `Num`, `Num.Num`, `(Num)`, or `(Num.Num)`.
- For non-`%` values remove commas, spaces, currency signs/codes, and use parentheses for negatives (never leading `-`).
7. Use JSON null literal for missing optional values (never "null" string).
8. Do not include any keys not listed above.
Extraction rules:
1. Extract all visible numeric/table facts, including negatives in parentheses and totals.
2. If source is a dash placeholder (`-`, `โ`, `โ`), still extract the fact but set `value` to empty string `""`.
3. For non-`%` values, normalize `value` to canonical numeric shape only (`Num`, `Num.Num`, `(Num)`, `(Num.Num)`).
4. For `%` values, keep `%` in `value`.
5. `bbox` must tightly cover the value text only, in pixel coordinates of the original image.
6. `comment`: textual qualifier tied to the specific fact (for example `*without debt insurance`), else null.
7. `is_note`: true when the fact is itself inside a note section, else false.
8. `note`: use when this fact belongs to data presented inside a note section; else null.
9. `note_reference`: use when this fact points/references another note; else "".
10. `currency`: infer from page/header context (for example "ืฉืงืืื ืืืฉืื" -> "ILS"), else null.
11. `scale`: 1 unless page/header indicates thousands or millions.
12. `value_type`: "amount" unless the fact is a percentage ("%").
13. `date`: output only `YYYY` or `YYYY-MM-DD`. Convert dotted dates (`D.M.YYYY` / `DD.MM.YYYY`) to `YYYY-MM-DD` using day-first parsing.
14. `meta.type`: use "profits" for "ืืืืืช ืขื ืืคืขืืืืืืช"; otherwise choose the best enum value.
15. No duplicate facts. Order `facts` top-to-bottom; within each row use right-to-left for Hebrew/RTL pages and left-to-right for English/LTR pages (fallback RTL if uncertain).
16. Output UTF-8 Hebrew directly (do not escape to unicode sequences).
Path hierarchy rule:
1. Build `path` with horizontal-axis hierarchy first (row-side structure: group -> subgroup -> line item).
2. Then append vertical-axis hierarchy only when it adds business semantics not already represented by dedicated fields.
3. Do not encode period/currency/scale/value-format in `path` when already represented by `date`/`currency`/`scale`/`value_type`.
4. Keep labels exactly as shown. Do not invent levels.
| {"meta":{"entity_name":"ืขืชืื ืืื ืืก - ืขืืืชื ืืงืืืื ืืื ืืก ืืืืืจ ืจืืฉืื ืืฆืืื ืืืกืืืื (ืขืดืจ)","page_num":null,"type":"title","title":null},"facts":[]} | |
You are a precise financial statement extraction system. Return only valid JSON that matches the required schema. | You are extracting financial-statement annotations from a single page image into the exact Pydantic schema `PageExtraction`.
Return ONLY valid JSON.
Do NOT return markdown, code fences, comments, prose, or extra keys.
Top-level schema (exact keys only):
{
"meta": {
"entity_name": "<string or null>",
"page_num": "<string or null>",
"type": "balance_sheet|income_statement|cash_flow|notes|contents_page|title|declaration|profits|other",
"title": "<string or null>"
},
"facts": [
{
"bbox": { "x": <number>, "y": <number>, "w": <number>, "h": <number> },
"value": "<string>",
"comment": "<string or null>",
"is_note": <true|false>,
"note": "<string or null>",
"note_reference": "<string>",
"date": "<string or null>",
"path": ["<string>", "..."],
"currency": "ILS|USD|EUR|GBP|null",
"scale": 1|1000|1000000|null,
"value_type": "amount|%|null"
}
]
}
Type/validation rules (must match schema):
1. `meta` and `facts` are required.
2. `note_reference` is required string. Use "" when missing.
3. `path` is required list of strings (use [] when unknown, never null).
4. `is_note` must be boolean (never null and never "true"/"false" strings).
5. `date` must be `YYYY` or `YYYY-MM-DD` when provided.
6. `value` rules:
- If the value is a percentage, include `%` (for example `12%`, `12.5%`).
- If not a percentage, output only canonical numeric text: `Num`, `Num.Num`, `(Num)`, or `(Num.Num)`.
- For non-`%` values remove commas, spaces, currency signs/codes, and use parentheses for negatives (never leading `-`).
7. Use JSON null literal for missing optional values (never "null" string).
8. Do not include any keys not listed above.
Extraction rules:
1. Extract all visible numeric/table facts, including negatives in parentheses and totals.
2. If source is a dash placeholder (`-`, `โ`, `โ`), still extract the fact but set `value` to empty string `""`.
3. For non-`%` values, normalize `value` to canonical numeric shape only (`Num`, `Num.Num`, `(Num)`, `(Num.Num)`).
4. For `%` values, keep `%` in `value`.
5. `bbox` must tightly cover the value text only, in pixel coordinates of the original image.
6. `comment`: textual qualifier tied to the specific fact (for example `*without debt insurance`), else null.
7. `is_note`: true when the fact is itself inside a note section, else false.
8. `note`: use when this fact belongs to data presented inside a note section; else null.
9. `note_reference`: use when this fact points/references another note; else "".
10. `currency`: infer from page/header context (for example "ืฉืงืืื ืืืฉืื" -> "ILS"), else null.
11. `scale`: 1 unless page/header indicates thousands or millions.
12. `value_type`: "amount" unless the fact is a percentage ("%").
13. `date`: output only `YYYY` or `YYYY-MM-DD`. Convert dotted dates (`D.M.YYYY` / `DD.MM.YYYY`) to `YYYY-MM-DD` using day-first parsing.
14. `meta.type`: use "profits" for "ืืืืืช ืขื ืืคืขืืืืืืช"; otherwise choose the best enum value.
15. No duplicate facts. Order `facts` top-to-bottom; within each row use right-to-left for Hebrew/RTL pages and left-to-right for English/LTR pages (fallback RTL if uncertain).
16. Output UTF-8 Hebrew directly (do not escape to unicode sequences).
Path hierarchy rule:
1. Build `path` with horizontal-axis hierarchy first (row-side structure: group -> subgroup -> line item).
2. Then append vertical-axis hierarchy only when it adds business semantics not already represented by dedicated fields.
3. Do not encode period/currency/scale/value-format in `path` when already represented by `date`/`currency`/`scale`/`value_type`.
4. Keep labels exactly as shown. Do not invent levels.
| {"meta":{"entity_name":"ืขืชืื ืืื ืืก - ืขืืืชื ืืงืืืื ืืื ืืก ืืืืืจ ืจืืฉืื ืืฆืืื ืืืกืืืื (ืขืดืจ)","page_num":null,"type":"contents_page","title":null},"facts":[]} | |
You are a precise financial statement extraction system. Return only valid JSON that matches the required schema. | You are extracting financial-statement annotations from a single page image into the exact Pydantic schema `PageExtraction`.
Return ONLY valid JSON.
Do NOT return markdown, code fences, comments, prose, or extra keys.
Top-level schema (exact keys only):
{
"meta": {
"entity_name": "<string or null>",
"page_num": "<string or null>",
"type": "balance_sheet|income_statement|cash_flow|notes|contents_page|title|declaration|profits|other",
"title": "<string or null>"
},
"facts": [
{
"bbox": { "x": <number>, "y": <number>, "w": <number>, "h": <number> },
"value": "<string>",
"comment": "<string or null>",
"is_note": <true|false>,
"note": "<string or null>",
"note_reference": "<string>",
"date": "<string or null>",
"path": ["<string>", "..."],
"currency": "ILS|USD|EUR|GBP|null",
"scale": 1|1000|1000000|null,
"value_type": "amount|%|null"
}
]
}
Type/validation rules (must match schema):
1. `meta` and `facts` are required.
2. `note_reference` is required string. Use "" when missing.
3. `path` is required list of strings (use [] when unknown, never null).
4. `is_note` must be boolean (never null and never "true"/"false" strings).
5. `date` must be `YYYY` or `YYYY-MM-DD` when provided.
6. `value` rules:
- If the value is a percentage, include `%` (for example `12%`, `12.5%`).
- If not a percentage, output only canonical numeric text: `Num`, `Num.Num`, `(Num)`, or `(Num.Num)`.
- For non-`%` values remove commas, spaces, currency signs/codes, and use parentheses for negatives (never leading `-`).
7. Use JSON null literal for missing optional values (never "null" string).
8. Do not include any keys not listed above.
Extraction rules:
1. Extract all visible numeric/table facts, including negatives in parentheses and totals.
2. If source is a dash placeholder (`-`, `โ`, `โ`), still extract the fact but set `value` to empty string `""`.
3. For non-`%` values, normalize `value` to canonical numeric shape only (`Num`, `Num.Num`, `(Num)`, `(Num.Num)`).
4. For `%` values, keep `%` in `value`.
5. `bbox` must tightly cover the value text only, in pixel coordinates of the original image.
6. `comment`: textual qualifier tied to the specific fact (for example `*without debt insurance`), else null.
7. `is_note`: true when the fact is itself inside a note section, else false.
8. `note`: use when this fact belongs to data presented inside a note section; else null.
9. `note_reference`: use when this fact points/references another note; else "".
10. `currency`: infer from page/header context (for example "ืฉืงืืื ืืืฉืื" -> "ILS"), else null.
11. `scale`: 1 unless page/header indicates thousands or millions.
12. `value_type`: "amount" unless the fact is a percentage ("%").
13. `date`: output only `YYYY` or `YYYY-MM-DD`. Convert dotted dates (`D.M.YYYY` / `DD.MM.YYYY`) to `YYYY-MM-DD` using day-first parsing.
14. `meta.type`: use "profits" for "ืืืืืช ืขื ืืคืขืืืืืืช"; otherwise choose the best enum value.
15. No duplicate facts. Order `facts` top-to-bottom; within each row use right-to-left for Hebrew/RTL pages and left-to-right for English/LTR pages (fallback RTL if uncertain).
16. Output UTF-8 Hebrew directly (do not escape to unicode sequences).
Path hierarchy rule:
1. Build `path` with horizontal-axis hierarchy first (row-side structure: group -> subgroup -> line item).
2. Then append vertical-axis hierarchy only when it adds business semantics not already represented by dedicated fields.
3. Do not encode period/currency/scale/value-format in `path` when already represented by `date`/`currency`/`scale`/`value_type`.
4. Keep labels exactly as shown. Do not invent levels.
| {"meta":{"entity_name":"ืขืชืื ืืื ืืก - ืขืืืชื ืืงืืืื ืืื ืืก ืืืืืจ ืจืืฉืื ืืฆืืื ืืืกืืืื (ืขืดืจ)","page_num":"2","type":"declaration","title":null},"facts":[]} | |
You are a precise financial statement extraction system. Return only valid JSON that matches the required schema. | You are extracting financial-statement annotations from a single page image into the exact Pydantic schema `PageExtraction`.
Return ONLY valid JSON.
Do NOT return markdown, code fences, comments, prose, or extra keys.
Top-level schema (exact keys only):
{
"meta": {
"entity_name": "<string or null>",
"page_num": "<string or null>",
"type": "balance_sheet|income_statement|cash_flow|notes|contents_page|title|declaration|profits|other",
"title": "<string or null>"
},
"facts": [
{
"bbox": { "x": <number>, "y": <number>, "w": <number>, "h": <number> },
"value": "<string>",
"comment": "<string or null>",
"is_note": <true|false>,
"note": "<string or null>",
"note_reference": "<string>",
"date": "<string or null>",
"path": ["<string>", "..."],
"currency": "ILS|USD|EUR|GBP|null",
"scale": 1|1000|1000000|null,
"value_type": "amount|%|null"
}
]
}
Type/validation rules (must match schema):
1. `meta` and `facts` are required.
2. `note_reference` is required string. Use "" when missing.
3. `path` is required list of strings (use [] when unknown, never null).
4. `is_note` must be boolean (never null and never "true"/"false" strings).
5. `date` must be `YYYY` or `YYYY-MM-DD` when provided.
6. `value` rules:
- If the value is a percentage, include `%` (for example `12%`, `12.5%`).
- If not a percentage, output only canonical numeric text: `Num`, `Num.Num`, `(Num)`, or `(Num.Num)`.
- For non-`%` values remove commas, spaces, currency signs/codes, and use parentheses for negatives (never leading `-`).
7. Use JSON null literal for missing optional values (never "null" string).
8. Do not include any keys not listed above.
Extraction rules:
1. Extract all visible numeric/table facts, including negatives in parentheses and totals.
2. If source is a dash placeholder (`-`, `โ`, `โ`), still extract the fact but set `value` to empty string `""`.
3. For non-`%` values, normalize `value` to canonical numeric shape only (`Num`, `Num.Num`, `(Num)`, `(Num.Num)`).
4. For `%` values, keep `%` in `value`.
5. `bbox` must tightly cover the value text only, in pixel coordinates of the original image.
6. `comment`: textual qualifier tied to the specific fact (for example `*without debt insurance`), else null.
7. `is_note`: true when the fact is itself inside a note section, else false.
8. `note`: use when this fact belongs to data presented inside a note section; else null.
9. `note_reference`: use when this fact points/references another note; else "".
10. `currency`: infer from page/header context (for example "ืฉืงืืื ืืืฉืื" -> "ILS"), else null.
11. `scale`: 1 unless page/header indicates thousands or millions.
12. `value_type`: "amount" unless the fact is a percentage ("%").
13. `date`: output only `YYYY` or `YYYY-MM-DD`. Convert dotted dates (`D.M.YYYY` / `DD.MM.YYYY`) to `YYYY-MM-DD` using day-first parsing.
14. `meta.type`: use "profits" for "ืืืืืช ืขื ืืคืขืืืืืืช"; otherwise choose the best enum value.
15. No duplicate facts. Order `facts` top-to-bottom; within each row use right-to-left for Hebrew/RTL pages and left-to-right for English/LTR pages (fallback RTL if uncertain).
16. Output UTF-8 Hebrew directly (do not escape to unicode sequences).
Path hierarchy rule:
1. Build `path` with horizontal-axis hierarchy first (row-side structure: group -> subgroup -> line item).
2. Then append vertical-axis hierarchy only when it adds business semantics not already represented by dedicated fields.
3. Do not encode period/currency/scale/value-format in `path` when already represented by `date`/`currency`/`scale`/`value_type`.
4. Keep labels exactly as shown. Do not invent levels.
| {"meta":{"entity_name":"ืขืชืื ืืื ืืก - ืขืืืชื ืืงืืืื ืืื ืืก ืืืืืจ ืจืืฉืื ืืฆืืื ืืืกืืืื (ืขืดืจ)","page_num":"3","type":"balance_sheet","title":"ืืืื ืื"},"facts":[{"value":"2002","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2023-12-31","path":["ืจืืืฉ ืฉืืืฃ","ืืืืื ืื ืืฉืืื ืืืืื ืื"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[250,277,51,24]},{"value":"8196","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2022-12-31","path":["ืจืืืฉ ืฉืืืฃ","ืืืืื ืื ืืฉืืื ืืืืื ืื"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[147,277,51,18]},{"value":"14854","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2023-12-31","path":["ืจืืืฉ ืฉืืืฃ","ืืื ืืืจ ืืงืื / ืืงืืืืช"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[252,305,51,18]},{"value":"3800","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2022-12-31","path":["ืจืืืฉ ืฉืืืฃ","ืืื ืืืจ ืืงืื / ืืงืืืืช"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[148,301,51,18]},{"value":"16856","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2023-12-31","path":["ืจืืืฉ ืฉืืืฃ","ืกืืดื"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[252,327,51,20]},{"value":"11996","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2022-12-31","path":["ืจืืืฉ ืฉืืืฃ","ืกืืดื"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[139,326,51,15]},{"value":"26003","comment":null,"is_note":false,"note":null,"note_reference":"3","date":"2023-12-31","path":["ืจืืืฉ ืงืืืข"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[252,366,51,27]},{"value":"8281","comment":null,"is_note":false,"note":null,"note_reference":"3","date":"2022-12-31","path":["ืจืืืฉ ืงืืืข"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[144,370,51,18]},{"value":"42859","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2023-12-31","path":["ืกื\"ื ื ืืกืื"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[252,393,51,24]},{"value":"20277","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2022-12-31","path":["ืกื\"ื ื ืืกืื"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[141,392,51,18]},{"value":"27709","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2023-12-31","path":["ืืชืืืืืืืืช ืฉืืืคืืช","ืืฉืจืื ืืชืืืืืื ืื ืงืืืื"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[249,465,51,18]},{"value":"11460","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2022-12-31","path":["ืืชืืืืืืืืช ืฉืืืคืืช","ืืฉืจืื ืืชืืืืืื ืื ืงืืืื"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[139,466,51,18]},{"value":"15927","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2023-12-31","path":["ืืชืืืืืืืืช ืฉืืืคืืช","ืกืคืงืื ืื ืืชื ื ืฉืจืืชืื"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[249,489,51,18]},{"value":"12230","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2022-12-31","path":["ืืชืืืืืืืืช ืฉืืืคืืช","ืกืคืงืื ืื ืืชื ื ืฉืจืืชืื"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[142,489,51,18]},{"value":"37348","comment":null,"is_note":false,"note":null,"note_reference":"4","date":"2023-12-31","path":["ืืชืืืืืืืืช ืฉืืืคืืช","ืืืืื ืฉืื ืื ืืืชืจืืช ืืืืช"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[250,512,51,18]},{"value":"30594","comment":null,"is_note":false,"note":null,"note_reference":"4","date":"2022-12-31","path":["ืืชืืืืืืืืช ืฉืืืคืืช","ืืืืื ืฉืื ืื ืืืชืจืืช ืืืืช"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[140,513,51,18]},{"value":"80984","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2023-12-31","path":["ืืชืืืืืืืืช ืฉืืืคืืช","ืกืืดื"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[252,534,51,18]},{"value":"54284","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2022-12-31","path":["ืืชืืืืืืืืช ืฉืืืคืืช","ืกืืดื"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[140,535,51,18]},{"value":"80984","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2023-12-31","path":["ืกื\"ื ืืชืืืืืืืืช"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[249,559,51,18]},{"value":"54284","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2022-12-31","path":["ืกื\"ื ืืชืืืืืืืืช"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[141,559,51,18]},{"value":"","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2023-12-31","path":["ืืจืขืื ืืืื","ื ืืกืื ื ืื ืฉืื ืงืืืืช ืืืืืื ืืืืื (ืืจืขืื)","ื ืืกืื ื ืื ืืฉืืืืฉ ืืคืขืืืืืืช","ืฉืืืขืื ืขื ืืื ืืืกืืืช ืืืื\"ืจ"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[282,670,24,24]},{"value":"","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2022-12-31","path":["ืืจืขืื ืืืื","ื ืืกืื ื ืื ืฉืื ืงืืืืช ืืืืืื ืืืืื (ืืจืขืื)","ื ืืกืื ื ืื ืืฉืืืืฉ ืืคืขืืืืืืช","ืฉืืืขืื ืขื ืืื ืืืกืืืช ืืืื\"ืจ"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[173,668,24,24]},{"value":"(64128)","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2023-12-31","path":["ืืจืขืื ืืืื","ื ืืกืื ื ืื ืืฉืืืืฉ ืืคืขืืืืืืช","ื ืืกืื ื ืื ืฉืื ืงืืืืช ืืืืืื ืืืืื (ืืจืขืื)","ืฉืื ืืืขืื ืขื ืืื ืืืกืืืช ืืืื\"ืจ"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[252,696,51,26]},{"value":"(42288)","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2022-12-31","path":["ืืจืขืื ืืืื","ื ืืกืื ื ืื ืืฉืืืืฉ ืืคืขืืืืืืช","ื ืืกืื ื ืื ืฉืื ืงืืืืช ืืืืืื ืืืืื (ืืจืขืื)","ืฉืื ืืืขืื ืขื ืืื ืืืกืืืช ืืืื\"ืจ"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[138,699,51,18]},{"value":"(64128)","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2023-12-31","path":["ืืจืขืื ืืืื","ื ืืกืื ื ืื ืฉืื ืงืืืืช ืืืืืื ืืืืื (ืืจืขืื)","ื ืืกืื ื ืื ืืฉืืืืฉ ืืคืขืืืืืืช","ืกื\"ื"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[253,720,51,26]},{"value":"(42288)","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2022-12-31","path":["ืืจืขืื ืืืื","ื ืืกืื ื ืื ืฉืื ืงืืืืช ืืืืืื ืืืืื (ืืจืขืื)","ื ืืกืื ื ืื ืืฉืืืืฉ ืืคืขืืืืืืช","ืกื\"ื"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[128,715,69,26]},{"value":"26003","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2023-12-31","path":["ืืจืขืื ืืืื","ื ืืกืื ื ืื ืฉืื ืงืืืืช ืืืืืื ืืืืื (ืืจืขืื)","ื ืืกืื ื ืื ืฉืฉืืืฉื ืืจืืืฉ ืงืืืข"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[250,736,51,26]},{"value":"8281","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2022-12-31","path":["ืืจืขืื ืืืื","ื ืืกืื ื ืื ืฉืื ืงืืืืช ืืืืืื ืืืืื (ืืจืขืื)","ื ืืกืื ื ืื ืฉืฉืืืฉื ืืจืืืฉ ืงืืืข"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[151,740,51,26]},{"value":"(38125)","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2023-12-31","path":["ืืจืขืื ืืืื","ืกืืดื"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[253,761,51,25]},{"value":"(34007)","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2022-12-31","path":["ืืจืขืื ืืืื","ืกืืดื"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[139,767,63,27]},{"value":"42859","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2023-12-31","path":["ืกื\"ื ืืชืืืืืืืืช ืื ืืกืื ื ืื"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[252,793,51,18]},{"value":"20277","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2022-12-31","path":["ืกื\"ื ืืชืืืืืืืืช ืื ืืกืื ื ืื"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[144,792,51,18]}]} | |
You are a precise financial statement extraction system. Return only valid JSON that matches the required schema. | You are extracting financial-statement annotations from a single page image into the exact Pydantic schema `PageExtraction`.
Return ONLY valid JSON.
Do NOT return markdown, code fences, comments, prose, or extra keys.
Top-level schema (exact keys only):
{
"meta": {
"entity_name": "<string or null>",
"page_num": "<string or null>",
"type": "balance_sheet|income_statement|cash_flow|notes|contents_page|title|declaration|profits|other",
"title": "<string or null>"
},
"facts": [
{
"bbox": { "x": <number>, "y": <number>, "w": <number>, "h": <number> },
"value": "<string>",
"comment": "<string or null>",
"is_note": <true|false>,
"note": "<string or null>",
"note_reference": "<string>",
"date": "<string or null>",
"path": ["<string>", "..."],
"currency": "ILS|USD|EUR|GBP|null",
"scale": 1|1000|1000000|null,
"value_type": "amount|%|null"
}
]
}
Type/validation rules (must match schema):
1. `meta` and `facts` are required.
2. `note_reference` is required string. Use "" when missing.
3. `path` is required list of strings (use [] when unknown, never null).
4. `is_note` must be boolean (never null and never "true"/"false" strings).
5. `date` must be `YYYY` or `YYYY-MM-DD` when provided.
6. `value` rules:
- If the value is a percentage, include `%` (for example `12%`, `12.5%`).
- If not a percentage, output only canonical numeric text: `Num`, `Num.Num`, `(Num)`, or `(Num.Num)`.
- For non-`%` values remove commas, spaces, currency signs/codes, and use parentheses for negatives (never leading `-`).
7. Use JSON null literal for missing optional values (never "null" string).
8. Do not include any keys not listed above.
Extraction rules:
1. Extract all visible numeric/table facts, including negatives in parentheses and totals.
2. If source is a dash placeholder (`-`, `โ`, `โ`), still extract the fact but set `value` to empty string `""`.
3. For non-`%` values, normalize `value` to canonical numeric shape only (`Num`, `Num.Num`, `(Num)`, `(Num.Num)`).
4. For `%` values, keep `%` in `value`.
5. `bbox` must tightly cover the value text only, in pixel coordinates of the original image.
6. `comment`: textual qualifier tied to the specific fact (for example `*without debt insurance`), else null.
7. `is_note`: true when the fact is itself inside a note section, else false.
8. `note`: use when this fact belongs to data presented inside a note section; else null.
9. `note_reference`: use when this fact points/references another note; else "".
10. `currency`: infer from page/header context (for example "ืฉืงืืื ืืืฉืื" -> "ILS"), else null.
11. `scale`: 1 unless page/header indicates thousands or millions.
12. `value_type`: "amount" unless the fact is a percentage ("%").
13. `date`: output only `YYYY` or `YYYY-MM-DD`. Convert dotted dates (`D.M.YYYY` / `DD.MM.YYYY`) to `YYYY-MM-DD` using day-first parsing.
14. `meta.type`: use "profits" for "ืืืืืช ืขื ืืคืขืืืืืืช"; otherwise choose the best enum value.
15. No duplicate facts. Order `facts` top-to-bottom; within each row use right-to-left for Hebrew/RTL pages and left-to-right for English/LTR pages (fallback RTL if uncertain).
16. Output UTF-8 Hebrew directly (do not escape to unicode sequences).
Path hierarchy rule:
1. Build `path` with horizontal-axis hierarchy first (row-side structure: group -> subgroup -> line item).
2. Then append vertical-axis hierarchy only when it adds business semantics not already represented by dedicated fields.
3. Do not encode period/currency/scale/value-format in `path` when already represented by `date`/`currency`/`scale`/`value_type`.
4. Keep labels exactly as shown. Do not invent levels.
| {"meta":{"entity_name":"ืขืชืื ืืื ืืก - ืขืืืชื ืืงืืืื ืืื ืืก ืืืืืจ ืจืืฉืื ืืฆืืื ืืืกืืืื (ืขืดืจ)","page_num":"4","type":"income_statement","title":"ืืืืืช ืขื ืืคืขืืืืืืช"},"facts":[{"value":"1445674","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2023-12-31","path":["ืืืืืจ ืืคืขืืืืืืช","ืืื ืกืืช ืืืชื ืฉืืจืืชืื"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[235,291,76,18]},{"value":"1280395","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2022-12-31","path":["ืืืืืจ ืืคืขืืืืืืช","ืืื ืกืืช ืืืชื ืฉืืจืืชืื"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[122,291,76,18]},{"value":"1304248","comment":null,"is_note":false,"note":null,"note_reference":"5","date":"2023-12-31","path":["ืขืืืช ืืคืขืืืืืืช"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[229,317,76,18]},{"value":"1344239","comment":null,"is_note":false,"note":null,"note_reference":"5","date":"2022-12-31","path":["ืขืืืช ืืคืขืืืืืืช"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[121,315,76,21]},{"value":"141426","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2023-12-31","path":["ืืื ืกืืช (ืืืฆืืืช) ื ืื ืืคืขืืืืืืช (ืืคืขืืืืืืช)"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[230,340,76,18]},{"value":"(63844)","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2022-12-31","path":["ืืื ืกืืช (ืืืฆืืืช) ื ืื ืืคืขืืืืืืช (ืืคืขืืืืืืช)"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[124,341,76,17]},{"value":"134960","comment":null,"is_note":false,"note":null,"note_reference":"6","date":"2023-12-31","path":["ืืืฆืืืช ืื ืืื ืืืืืืืช"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[234,387,76,18]},{"value":"142051","comment":null,"is_note":false,"note":null,"note_reference":"6","date":"2022-12-31","path":["ืืืฆืืืช ืื ืืื ืืืืืืืช"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[117,386,76,18]},{"value":"6466","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2023-12-31","path":["ืืื ืกืืช (ืืืฆืืืช) ื ืื ืืคื ื ืืืืื"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[232,409,76,18]},{"value":"(205895)","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2022-12-31","path":["ืืื ืกืืช (ืืืฆืืืช) ื ืื ืืคื ื ืืืืื"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[117,408,76,18]},{"value":"10584","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2023-12-31","path":["ืืืืื, ื ืื"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[234,455,76,18]},{"value":"9102","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2022-12-31","path":["ืืืืื, ื ืื"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[116,456,76,18]},{"value":"(4118)","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2023-12-31","path":["ืืจืขืื ืืชืงืืคื"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[231,479,76,18]},{"value":"(214997)","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2022-12-31","path":["ืืจืขืื ืืชืงืืคื"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[115,480,76,18]}]} | |
You are a precise financial statement extraction system. Return only valid JSON that matches the required schema. | You are extracting financial-statement annotations from a single page image into the exact Pydantic schema `PageExtraction`.
Return ONLY valid JSON.
Do NOT return markdown, code fences, comments, prose, or extra keys.
Top-level schema (exact keys only):
{
"meta": {
"entity_name": "<string or null>",
"page_num": "<string or null>",
"type": "balance_sheet|income_statement|cash_flow|notes|contents_page|title|declaration|profits|other",
"title": "<string or null>"
},
"facts": [
{
"bbox": { "x": <number>, "y": <number>, "w": <number>, "h": <number> },
"value": "<string>",
"comment": "<string or null>",
"is_note": <true|false>,
"note": "<string or null>",
"note_reference": "<string>",
"date": "<string or null>",
"path": ["<string>", "..."],
"currency": "ILS|USD|EUR|GBP|null",
"scale": 1|1000|1000000|null,
"value_type": "amount|%|null"
}
]
}
Type/validation rules (must match schema):
1. `meta` and `facts` are required.
2. `note_reference` is required string. Use "" when missing.
3. `path` is required list of strings (use [] when unknown, never null).
4. `is_note` must be boolean (never null and never "true"/"false" strings).
5. `date` must be `YYYY` or `YYYY-MM-DD` when provided.
6. `value` rules:
- If the value is a percentage, include `%` (for example `12%`, `12.5%`).
- If not a percentage, output only canonical numeric text: `Num`, `Num.Num`, `(Num)`, or `(Num.Num)`.
- For non-`%` values remove commas, spaces, currency signs/codes, and use parentheses for negatives (never leading `-`).
7. Use JSON null literal for missing optional values (never "null" string).
8. Do not include any keys not listed above.
Extraction rules:
1. Extract all visible numeric/table facts, including negatives in parentheses and totals.
2. If source is a dash placeholder (`-`, `โ`, `โ`), still extract the fact but set `value` to empty string `""`.
3. For non-`%` values, normalize `value` to canonical numeric shape only (`Num`, `Num.Num`, `(Num)`, `(Num.Num)`).
4. For `%` values, keep `%` in `value`.
5. `bbox` must tightly cover the value text only, in pixel coordinates of the original image.
6. `comment`: textual qualifier tied to the specific fact (for example `*without debt insurance`), else null.
7. `is_note`: true when the fact is itself inside a note section, else false.
8. `note`: use when this fact belongs to data presented inside a note section; else null.
9. `note_reference`: use when this fact points/references another note; else "".
10. `currency`: infer from page/header context (for example "ืฉืงืืื ืืืฉืื" -> "ILS"), else null.
11. `scale`: 1 unless page/header indicates thousands or millions.
12. `value_type`: "amount" unless the fact is a percentage ("%").
13. `date`: output only `YYYY` or `YYYY-MM-DD`. Convert dotted dates (`D.M.YYYY` / `DD.MM.YYYY`) to `YYYY-MM-DD` using day-first parsing.
14. `meta.type`: use "profits" for "ืืืืืช ืขื ืืคืขืืืืืืช"; otherwise choose the best enum value.
15. No duplicate facts. Order `facts` top-to-bottom; within each row use right-to-left for Hebrew/RTL pages and left-to-right for English/LTR pages (fallback RTL if uncertain).
16. Output UTF-8 Hebrew directly (do not escape to unicode sequences).
Path hierarchy rule:
1. Build `path` with horizontal-axis hierarchy first (row-side structure: group -> subgroup -> line item).
2. Then append vertical-axis hierarchy only when it adds business semantics not already represented by dedicated fields.
3. Do not encode period/currency/scale/value-format in `path` when already represented by `date`/`currency`/`scale`/`value_type`.
4. Keep labels exactly as shown. Do not invent levels.
| {"meta":{"entity_name":"ืขืชืื ืืื ืืก - ืขืืืชื ืืงืืืื ืืื ืืก ืืืืืจ ืจืืฉืื ืืฆืืื ืืืกืืืื (ืข\"ืจ)","page_num":"5","type":"profits","title":"ืืืืืช ืขื ืืฉืื ืืืื ืืืจืขืื ืืืื"},"facts":[{"value":"180990","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2022-01-01","path":["ืืชืจืืช ืืืื 1 ืืื ืืืจ 2022","ืฉืืื ืืืืืื ืืืืื","ืืฉืืืืฉ ืืคืขืืืืืืช ืฉืื ืืืขืื ืขื ืืื ืืืกืืืช ืืืื\"ืจ"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[375,332,64,20]},{"value":"","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2022-01-01","path":["ืืชืจืืช ืืืื 1 ืืื ืืืจ 2022","ืฉืืื ืืืืืื ืืืืื","ืืฉืืืืฉ ืืคืขืืืืืืช ืฉืืืขืื ืขื ืืื ืืืกืืืช ืืืื\"ืจ"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[331,340,8,7]},{"value":"","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2022-01-01","path":["ืืชืจืืช ืืืื 1 ืืื ืืืจ 2022","ืฉืืื ืืืืืื ืืืืื","ื ืืกืื ื ืื ืฉืฉืืืฉื ืืจืืืฉ ืงืืืข"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[238,338,8,7]},{"value":"180990","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2022-01-01","path":["ืืชืจืืช ืืืื 1 ืืื ืืืจ 2022","ืกื\"ื"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[112,334,51,17]},{"value":"(214997)","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2022-12-31","path":["ืชืืกืคืืช ืืืืื ืืฉื ื","ืืจืขืื ืืฉื ื","ืฉืืื ืืืืืื ืืืืื","ืืฉืืืืฉ ืืคืขืืืืืืช ืฉืื ืืืขืื ืขื ืืื ืืืกืืืช ืืืื\"ืจ"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[371,379,69,20]},{"value":"","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2022-12-31","path":["ืชืืกืคืืช ืืืืื ืืฉื ื","ืืจืขืื ืืฉื ื","ืฉืืื ืืืืืื ืืืืื","ืืฉืืืืฉ ืืคืขืืืืืืช ืฉืืืขืื ืขื ืืื ืืืกืืืช ืืืื\"ืจ"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[331,385,8,7]},{"value":"","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2022-12-31","path":["ืชืืกืคืืช ืืืืื ืืฉื ื","ืืจืขืื ืืฉื ื","ืฉืืื ืืืืืื ืืืืื","ื ืืกืื ื ืื ืฉืฉืืืฉื ืืจืืืฉ ืงืืืข"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[238,385,8,7]},{"value":"(214997)","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2022-12-31","path":["ืชืืกืคืืช ืืืืื ืืฉื ื","ืืจืขืื ืืฉื ื","ืกื\"ื"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[107,380,59,17]},{"value":"(9401)","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2022-12-31","path":["ืืขืืจืช ืกืืืืื ืฉืื ืงืืืืช ืืืืืื ืืืืื","ืฉืฉืืืฉื ืืจืืืฉ ืงืืืข","ืฉืืื ืืืืืื ืืืืื","ืืฉืืืืฉ ืืคืขืืืืืืช ืฉืื ืืืขืื ืขื ืืื ืืืกืืืช ืืืื\"ืจ"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[380,451,57,18]},{"value":"","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2022-12-31","path":["ืืขืืจืช ืกืืืืื ืฉืื ืงืืืืช ืืืืืื ืืืืื","ืฉืฉืืืฉื ืืจืืืฉ ืงืืืข","ืฉืืื ืืืืืื ืืืืื","ืืฉืืืืฉ ืืคืขืืืืืืช ืฉืืืขืื ืขื ืืื ืืืกืืืช ืืืื\"ืจ"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[331,456,8,5]},{"value":"9401","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2022-12-31","path":["ืืขืืจืช ืกืืืืื ืฉืื ืงืืืืช ืืืืืื ืืืืื","ืฉืฉืืืฉื ืืจืืืฉ ืงืืืข","ืฉืืื ืืืืืื ืืืืื","ื ืืกืื ื ืื ืฉืฉืืืฉื ืืจืืืฉ ืงืืืข"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[204,452,43,17]},{"value":"","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2022-12-31","path":["ืืขืืจืช ืกืืืืื ืฉืื ืงืืืืช ืืืืืื ืืืืื","ืฉืฉืืืฉื ืืจืืืฉ ืงืืืข","ืกื\"ื"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[155,455,6,6]},{"value":"1120","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2022-12-31","path":["ืืขืืจืช ืกืืืืื ืฉืื ืงืืืืช ืืืืืื ืืืืื","ืกืืืืื ืฉืืืขืืจื ืืืืกืื ืืืฆืืืช ืคืืช","ืฉืืื ืืืืืื ืืืืื","ืืฉืืืืฉ ืืคืขืืืืืืช ืฉืื ืืืขืื ืขื ืืื ืืืกืืืช ืืืื\"ืจ"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[392,472,44,17]},{"value":"","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2022-12-31","path":["ืืขืืจืช ืกืืืืื ืฉืื ืงืืืืช ืืืืืื ืืืืื","ืกืืืืื ืฉืืืขืืจื ืืืืกืื ืืืฆืืืช ืคืืช","ืฉืืื ืืืืืื ืืืืื","ืืฉืืืืฉ ืืคืขืืืืืืช ืฉืืืขืื ืขื ืืื ืืืกืืืช ืืืื\"ืจ"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[331,479,7,5]},{"value":"(1120)","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2022-12-31","path":["ืืขืืจืช ืกืืืืื ืฉืื ืงืืืืช ืืืืืื ืืืืื","ืกืืืืื ืฉืืืขืืจื ืืืืกืื ืืืฆืืืช ืคืืช","ืฉืืื ืืืืืื ืืืืื","ื ืืกืื ื ืื ืฉืฉืืืฉื ืืจืืืฉ ืงืืืข"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[202,472,46,19]},{"value":"","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2022-12-31","path":["ืืขืืจืช ืกืืืืื ืฉืื ืงืืืืช ืืืืืื ืืืืื","ืกืืืืื ืฉืืืขืืจื ืืืืกืื ืืืฆืืืช ืคืืช","ืกื\"ื"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[155,479,8,5]},{"value":"(8281)","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2022-12-31","path":["ืืขืืจืช ืกืืืืื ืฉืื ืงืืืืช ืืืืืื ืืืืื","ืฉืืื ืืืืืื ืืืืื","ืืฉืืืืฉ ืืคืขืืืืืืช ืฉืื ืืืขืื ืขื ืืื ืืืกืืืช ืืืื\"ืจ"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[380,498,57,17]},{"value":"","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2022-12-31","path":["ืืขืืจืช ืกืืืืื ืฉืื ืงืืืืช ืืืืืื ืืืืื","ืฉืืื ืืืืืื ืืืืื","ืืฉืืืืฉ ืืคืขืืืืืืช ืฉืืืขืื ืขื ืืื ืืืกืืืช ืืืื\"ืจ"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[331,502,7,5]},{"value":"8281","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2022-12-31","path":["ืืขืืจืช ืกืืืืื ืฉืื ืงืืืืช ืืืืืื ืืืืื","ืฉืืื ืืืืืื ืืืืื","ื ืืกืื ื ืื ืฉืฉืืืฉื ืืจืืืฉ ืงืืืข"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[204,498,43,17]},{"value":"","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2022-12-31","path":["ืืขืืจืช ืกืืืืื ืฉืื ืงืืืืช ืืืืืื ืืืืื","ืกื\"ื"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[155,502,8,7]},{"value":"(42288)","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2022-12-31","path":["ืืชืจืืช ืืืื 31 ืืืฆืืืจ 2022","ืฉืืื ืืืืืื ืืืืื","ืืฉืืืืฉ ืืคืขืืืืืืช ืฉืื ืืืขืื ืขื ืืื ืืืกืืืช ืืืื\"ืจ"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[376,521,62,17]},{"value":"","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2022-12-31","path":["ืืชืจืืช ืืืื 31 ืืืฆืืืจ 2022","ืฉืืื ืืืืืื ืืืืื","ืืฉืืืืฉ ืืคืขืืืืืืช ืฉืืืขืื ืขื ืืื ืืืกืืืช ืืืื\"ืจ"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[331,525,8,5]},{"value":"8281","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2022-12-31","path":["ืืชืจืืช ืืืื 31 ืืืฆืืืจ 2022","ืฉืืื ืืืืืื ืืืืื","ื ืืกืื ื ืื ืฉืฉืืืฉื ืืจืืืฉ ืงืืืข"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[204,522,43,17]},{"value":"(34007)","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2022-12-31","path":["ืืชืจืืช ืืืื 31 ืืืฆืืืจ 2022","ืกื\"ื"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[111,521,55,17]},{"value":"(4118)","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2023-12-31","path":["ืชืืกืคืืช ืืืืื ืืฉื ื","ืืจืขืื ืืฉื ื","ืฉืืื ืืืืืื ืืืืื","ืืฉืืืืฉ ืืคืขืืืืืืช ืฉืื ืืืขืื ืขื ืืื ืืืกืืืช ืืืื\"ืจ"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[383,567,55,17]},{"value":"","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2023-12-31","path":["ืชืืกืคืืช ืืืืื ืืฉื ื","ืืจืขืื ืืฉื ื","ืฉืืื ืืืืืื ืืืืื","ืืฉืืืืฉ ืืคืขืืืืืืช ืฉืืืขืื ืขื ืืื ืืืกืืืช ืืืื\"ืจ"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[331,571,8,5]},{"value":"","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2023-12-31","path":["ืชืืกืคืืช ืืืืื ืืฉื ื","ืืจืขืื ืืฉื ื","ืฉืืื ืืืืืื ืืืืื","ื ืืกืื ื ืื ืฉืฉืืืฉื ืืจืืืฉ ืงืืืข"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[238,573,8,3]},{"value":"(4118)","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2023-12-31","path":["ืชืืกืคืืช ืืืืื ืืฉื ื","ืืจืขืื ืืฉื ื","ืกื\"ื"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[119,567,47,17]},{"value":"(20160)","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2023-12-31","path":["ืืขืืจืช ืกืืืืื ืฉืื ืงืืืืช ืืืืืื ืืืืื","ืฉืฉืืืฉื ืืจืืืฉ ืงืืืข","ืฉืืื ืืืืืื ืืืืื","ืืฉืืืืฉ ืืคืขืืืืืืช ืฉืื ืืืขืื ืขื ืืื ืืืกืืืช ืืืื\"ืจ"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[375,638,62,17]},{"value":"","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2023-12-31","path":["ืืขืืจืช ืกืืืืื ืฉืื ืงืืืืช ืืืืืื ืืืืื","ืฉืฉืืืฉื ืืจืืืฉ ืงืืืข","ืฉืืื ืืืืืื ืืืืื","ืืฉืืืืฉ ืืคืขืืืืืืช ืฉืืืขืื ืขื ืืื ืืืกืืืช ืืืื\"ืจ"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[330,641,8,7]},{"value":"20160","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2023-12-31","path":["ืืขืืจืช ืกืืืืื ืฉืื ืงืืืืช ืืืืืื ืืืืื","ืฉืฉืืืฉื ืืจืืืฉ ืงืืืข","ืฉืืื ืืืืืื ืืืืื","ื ืืกืื ื ืื ืฉืฉืืืฉื ืืจืืืฉ ืงืืืข"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[197,638,50,17]},{"value":"","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2023-12-31","path":["ืืขืืจืช ืกืืืืื ืฉืื ืงืืืืช ืืืืืื ืืืืื","ืฉืฉืืืฉื ืืจืืืฉ ืงืืืข","ืกื\"ื"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[155,642,8,7]},{"value":"2438","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2023-12-31","path":["ืืขืืจืช ืกืืืืื ืฉืื ืงืืืืช ืืืืืื ืืืืื","ืกืืืืื ืฉืืืขืืจื ืืืืกืื ืืืฆืืืช ืคืืช","ืฉืืื ืืืืืื ืืืืื","ืืฉืืืืฉ ืืคืขืืืืืืช ืฉืื ืืืขืื ืขื ืืื ืืืกืืืช ืืืื\"ืจ"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[393,658,44,17]},{"value":"","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2023-12-31","path":["ืืขืืจืช ืกืืืืื ืฉืื ืงืืืืช ืืืืืื ืืืืื","ืกืืืืื ืฉืืืขืืจื ืืืืกืื ืืืฆืืืช ืคืืช","ืฉืืื ืืืืืื ืืืืื","ืืฉืืืืฉ ืืคืขืืืืืืช ืฉืืืขืื ืขื ืืื ืืืกืืืช ืืืื\"ืจ"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[330,663,8,7]},{"value":"(2438)","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2023-12-31","path":["ืืขืืจืช ืกืืืืื ืฉืื ืงืืืืช ืืืืืื ืืืืื","ืกืืืืื ืฉืืืขืืจื ืืืืกืื ืืืฆืืืช ืคืืช","ืฉืืื ืืืืืื ืืืืื","ื ืืกืื ื ืื ืฉืฉืืืฉื ืืจืืืฉ ืงืืืข"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[203,658,45,17]},{"value":"","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2023-12-31","path":["ืืขืืจืช ืกืืืืื ืฉืื ืงืืืืช ืืืืืื ืืืืื","ืกืืืืื ืฉืืืขืืจื ืืืืกืื ืืืฆืืืช ืคืืช","ืกื\"ื"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[155,664,8,7]},{"value":"(17722)","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2023-12-31","path":["ืืขืืจืช ืกืืืืื ืฉืื ืงืืืืช ืืืืืื ืืืืื","ืฉืืื ืืืืืื ืืืืื","ืืฉืืืืฉ ืืคืขืืืืืืช ืฉืื ืืืขืื ืขื ืืื ืืืกืืืช ืืืื\"ืจ"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[375,683,62,17]},{"value":"","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2023-12-31","path":["ืืขืืจืช ืกืืืืื ืฉืื ืงืืืืช ืืืืืื ืืืืื","ืฉืืื ืืืืืื ืืืืื","ืืฉืืืืฉ ืืคืขืืืืืืช ืฉืืืขืื ืขื ืืื ืืืกืืืช ืืืื\"ืจ"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[331,687,8,6]},{"value":"17722","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2023-12-31","path":["ืืขืืจืช ืกืืืืื ืฉืื ืงืืืืช ืืืืืื ืืืืื","ืฉืืื ืืืืืื ืืืืื","ื ืืกืื ื ืื ืฉืฉืืืฉื ืืจืืืฉ ืงืืืข"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[197,683,50,17]},{"value":"","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2023-12-31","path":["ืืขืืจืช ืกืืืืื ืฉืื ืงืืืืช ืืืืืื ืืืืื","ืกื\"ื"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[154,687,8,7]},{"value":"(64128)","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2023-12-31","path":["ืืชืจืืช ืืืื 31 ืืืฆืืืจ 2023","ืฉืืื ืืืืืื ืืืืื","ืืฉืืืืฉ ืืคืขืืืืืืช ืฉืื ืืืขืื ืขื ืืื ืืืกืืืช ืืืื\"ืจ"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[375,707,62,17]},{"value":"","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2023-12-31","path":["ืืชืจืืช ืืืื 31 ืืืฆืืืจ 2023","ืฉืืื ืืืืืื ืืืืื","ืืฉืืืืฉ ืืคืขืืืืืืช ืฉืืืขืื ืขื ืืื ืืืกืืืช ืืืื\"ืจ"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[330,711,9,4]},{"value":"26003","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2023-12-31","path":["ืืชืจืืช ืืืื 31 ืืืฆืืืจ 2023","ืฉืืื ืืืืืื ืืืืื","ื ืืกืื ื ืื ืฉืฉืืืฉื ืืจืืืฉ ืงืืืข"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[197,707,50,17]},{"value":"(38125)","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2023-12-31","path":["ืืชืจืืช ืืืื 31 ืืืฆืืืจ 2023","ืกื\"ื"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[113,706,54,17]}]} | |
You are a precise financial statement extraction system. Return only valid JSON that matches the required schema. | You are extracting financial-statement annotations from a single page image into the exact Pydantic schema `PageExtraction`.
Return ONLY valid JSON.
Do NOT return markdown, code fences, comments, prose, or extra keys.
Top-level schema (exact keys only):
{
"meta": {
"entity_name": "<string or null>",
"page_num": "<string or null>",
"type": "balance_sheet|income_statement|cash_flow|notes|contents_page|title|declaration|profits|other",
"title": "<string or null>"
},
"facts": [
{
"bbox": { "x": <number>, "y": <number>, "w": <number>, "h": <number> },
"value": "<string>",
"comment": "<string or null>",
"is_note": <true|false>,
"note": "<string or null>",
"note_reference": "<string>",
"date": "<string or null>",
"path": ["<string>", "..."],
"currency": "ILS|USD|EUR|GBP|null",
"scale": 1|1000|1000000|null,
"value_type": "amount|%|null"
}
]
}
Type/validation rules (must match schema):
1. `meta` and `facts` are required.
2. `note_reference` is required string. Use "" when missing.
3. `path` is required list of strings (use [] when unknown, never null).
4. `is_note` must be boolean (never null and never "true"/"false" strings).
5. `date` must be `YYYY` or `YYYY-MM-DD` when provided.
6. `value` rules:
- If the value is a percentage, include `%` (for example `12%`, `12.5%`).
- If not a percentage, output only canonical numeric text: `Num`, `Num.Num`, `(Num)`, or `(Num.Num)`.
- For non-`%` values remove commas, spaces, currency signs/codes, and use parentheses for negatives (never leading `-`).
7. Use JSON null literal for missing optional values (never "null" string).
8. Do not include any keys not listed above.
Extraction rules:
1. Extract all visible numeric/table facts, including negatives in parentheses and totals.
2. If source is a dash placeholder (`-`, `โ`, `โ`), still extract the fact but set `value` to empty string `""`.
3. For non-`%` values, normalize `value` to canonical numeric shape only (`Num`, `Num.Num`, `(Num)`, `(Num.Num)`).
4. For `%` values, keep `%` in `value`.
5. `bbox` must tightly cover the value text only, in pixel coordinates of the original image.
6. `comment`: textual qualifier tied to the specific fact (for example `*without debt insurance`), else null.
7. `is_note`: true when the fact is itself inside a note section, else false.
8. `note`: use when this fact belongs to data presented inside a note section; else null.
9. `note_reference`: use when this fact points/references another note; else "".
10. `currency`: infer from page/header context (for example "ืฉืงืืื ืืืฉืื" -> "ILS"), else null.
11. `scale`: 1 unless page/header indicates thousands or millions.
12. `value_type`: "amount" unless the fact is a percentage ("%").
13. `date`: output only `YYYY` or `YYYY-MM-DD`. Convert dotted dates (`D.M.YYYY` / `DD.MM.YYYY`) to `YYYY-MM-DD` using day-first parsing.
14. `meta.type`: use "profits" for "ืืืืืช ืขื ืืคืขืืืืืืช"; otherwise choose the best enum value.
15. No duplicate facts. Order `facts` top-to-bottom; within each row use right-to-left for Hebrew/RTL pages and left-to-right for English/LTR pages (fallback RTL if uncertain).
16. Output UTF-8 Hebrew directly (do not escape to unicode sequences).
Path hierarchy rule:
1. Build `path` with horizontal-axis hierarchy first (row-side structure: group -> subgroup -> line item).
2. Then append vertical-axis hierarchy only when it adds business semantics not already represented by dedicated fields.
3. Do not encode period/currency/scale/value-format in `path` when already represented by `date`/`currency`/`scale`/`value_type`.
4. Keep labels exactly as shown. Do not invent levels.
| {"meta":{"entity_name":"ืขืชืื ืืื ืืก - ืขืืืชื ืืงืืืื ืืื ืืก ืืืืืจ ืจืืฉืื ืืฆืืื ืืืกืืืื (ืข\"ืจ)","page_num":"6","type":"notes","title":"ืืืืจืื ืืืืืืช ืืืกืคืืื"},"facts":[{"value":"29561","comment":"3","is_note":true,"note":"3","note_reference":"","date":"2023-12-31","path":["ืืืืจ 3 - ืจืืืฉ ืงืืืข","ืจืืืื ืืฆืืื ืืฉืจืื","ืขืืืช"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[349,989,49,17]},{"value":"3558","comment":"3","is_note":true,"note":"3","note_reference":"","date":"2023-12-31","path":["ืืืืจ 3 - ืจืืืฉ ืงืืืข","ืจืืืื ืืฆืืื ืืฉืจืื","ืคืืช ืฉื ืฆืืจ"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[278,989,44,17]},{"value":"26003","comment":"3","is_note":true,"note":"3","note_reference":"","date":"2023-12-31","path":["ืืืืจ 3 - ืจืืืฉ ืงืืืข","ืจืืืื ืืฆืืื ืืฉืจืื","ืขืืืช ืืืคืืชืช"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[194,989,52,17]},{"value":"8281","comment":"3","is_note":true,"note":"3","note_reference":"","date":"2022-12-31","path":["ืืืืจ 3 - ืจืืืฉ ืงืืืข","ืจืืืื ืืฆืืื ืืฉืจืื","ืขืืืช ืืืคืืชืช"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[115,989,47,17]}]} | |
You are a precise financial statement extraction system. Return only valid JSON that matches the required schema. | You are extracting financial-statement annotations from a single page image into the exact Pydantic schema `PageExtraction`.
Return ONLY valid JSON.
Do NOT return markdown, code fences, comments, prose, or extra keys.
Top-level schema (exact keys only):
{
"meta": {
"entity_name": "<string or null>",
"page_num": "<string or null>",
"type": "balance_sheet|income_statement|cash_flow|notes|contents_page|title|declaration|profits|other",
"title": "<string or null>"
},
"facts": [
{
"bbox": { "x": <number>, "y": <number>, "w": <number>, "h": <number> },
"value": "<string>",
"comment": "<string or null>",
"is_note": <true|false>,
"note": "<string or null>",
"note_reference": "<string>",
"date": "<string or null>",
"path": ["<string>", "..."],
"currency": "ILS|USD|EUR|GBP|null",
"scale": 1|1000|1000000|null,
"value_type": "amount|%|null"
}
]
}
Type/validation rules (must match schema):
1. `meta` and `facts` are required.
2. `note_reference` is required string. Use "" when missing.
3. `path` is required list of strings (use [] when unknown, never null).
4. `is_note` must be boolean (never null and never "true"/"false" strings).
5. `date` must be `YYYY` or `YYYY-MM-DD` when provided.
6. `value` rules:
- If the value is a percentage, include `%` (for example `12%`, `12.5%`).
- If not a percentage, output only canonical numeric text: `Num`, `Num.Num`, `(Num)`, or `(Num.Num)`.
- For non-`%` values remove commas, spaces, currency signs/codes, and use parentheses for negatives (never leading `-`).
7. Use JSON null literal for missing optional values (never "null" string).
8. Do not include any keys not listed above.
Extraction rules:
1. Extract all visible numeric/table facts, including negatives in parentheses and totals.
2. If source is a dash placeholder (`-`, `โ`, `โ`), still extract the fact but set `value` to empty string `""`.
3. For non-`%` values, normalize `value` to canonical numeric shape only (`Num`, `Num.Num`, `(Num)`, `(Num.Num)`).
4. For `%` values, keep `%` in `value`.
5. `bbox` must tightly cover the value text only, in pixel coordinates of the original image.
6. `comment`: textual qualifier tied to the specific fact (for example `*without debt insurance`), else null.
7. `is_note`: true when the fact is itself inside a note section, else false.
8. `note`: use when this fact belongs to data presented inside a note section; else null.
9. `note_reference`: use when this fact points/references another note; else "".
10. `currency`: infer from page/header context (for example "ืฉืงืืื ืืืฉืื" -> "ILS"), else null.
11. `scale`: 1 unless page/header indicates thousands or millions.
12. `value_type`: "amount" unless the fact is a percentage ("%").
13. `date`: output only `YYYY` or `YYYY-MM-DD`. Convert dotted dates (`D.M.YYYY` / `DD.MM.YYYY`) to `YYYY-MM-DD` using day-first parsing.
14. `meta.type`: use "profits" for "ืืืืืช ืขื ืืคืขืืืืืืช"; otherwise choose the best enum value.
15. No duplicate facts. Order `facts` top-to-bottom; within each row use right-to-left for Hebrew/RTL pages and left-to-right for English/LTR pages (fallback RTL if uncertain).
16. Output UTF-8 Hebrew directly (do not escape to unicode sequences).
Path hierarchy rule:
1. Build `path` with horizontal-axis hierarchy first (row-side structure: group -> subgroup -> line item).
2. Then append vertical-axis hierarchy only when it adds business semantics not already represented by dedicated fields.
3. Do not encode period/currency/scale/value-format in `path` when already represented by `date`/`currency`/`scale`/`value_type`.
4. Keep labels exactly as shown. Do not invent levels.
| {"meta":{"entity_name":"ืขืชืื ืืื ืืก - ืขืืืชื ืืงืืืื ืืื ืืก ืืืืืจ ืจืืฉืื ืืฆืืื ืืืกืืืื (ืข\"ืจ)","page_num":"7","type":"notes","title":"ืืืืจืื ืืืืืืช ืืืกืคืืื"},"facts":[{"value":"8230","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2023-12-31","path":["ืืืืจ 4 - ืืืืื ืฉืื ืื ืืืชืจืืช ืืืืช","ืืืกืืืช"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[252,261,57,17]},{"value":"20021","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2022-12-31","path":["ืืืืจ 4 - ืืืืื ืฉืื ืื ืืืชืจืืช ืืืืช","ืืืกืืืช"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[137,261,52,17]},{"value":"25780","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2023-12-31","path":["ืืืืจ 4 - ืืืืื ืฉืื ืื ืืืชืจืืช ืืืืช","ืขืืืืื"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[252,281,60,17]},{"value":"10573","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2022-12-31","path":["ืืืืจ 4 - ืืืืื ืฉืื ืื ืืืชืจืืช ืืืืช","ืขืืืืื"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[137,281,52,17]},{"value":"3338","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2023-12-31","path":["ืืืืจ 4 - ืืืืื ืฉืื ืื ืืืชืจืืช ืืืืช","ืืืจืื"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[262,299,47,17]},{"value":"","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2022-12-31","path":["ืืืืจ 4 - ืืืืื ืฉืื ืื ืืืชืจืืช ืืืืช","ืืืจืื"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[168,297,31,18]},{"value":"37348","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2023-12-31","path":["ืืืืจ 4 - ืืืืื ืฉืื ืื ืืืชืจืืช ืืืืช","ืกื\"ื"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[250,319,61,17]},{"value":"30594","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2022-12-31","path":["ืืืืจ 4 - ืืืืื ืฉืื ืื ืืืชืจืืช ืืืืช","ืกื\"ื"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[137,319,52,17]},{"value":"483409","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2023-12-31","path":["ืืืืจ 5 - ืขืืืช ืืคืขืืืืืืช","ืฉืืจ ืขืืืื"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[248,465,56,17]},{"value":"389331","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2022-12-31","path":["ืืืืจ 5 - ืขืืืช ืืคืขืืืืืืช","ืฉืืจ ืขืืืื"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[132,465,58,17]},{"value":"88943","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2023-12-31","path":["ืืืืจ 5 - ืขืืืช ืืคืขืืืืืืช","ืืืฆืืืช ื ืืืืช ืืฉืืจ"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[255,484,49,17]},{"value":"80649","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2022-12-31","path":["ืืืืจ 5 - ืขืืืช ืืคืขืืืืืืช","ืืืฆืืืช ื ืืืืช ืืฉืืจ"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[140,484,50,17]},{"value":"330793","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2023-12-31","path":["ืืืืจ 5 - ืขืืืช ืืคืขืืืืืืช","ืงืืื ื ืืฉื ื ืืขืืืืืช ืืืฅ"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[250,502,54,17]},{"value":"434594","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2022-12-31","path":["ืืืืจ 5 - ืขืืืช ืืคืขืืืืืืช","ืงืืื ื ืืฉื ื ืืขืืืืืช ืืืฅ"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[134,502,56,17]},{"value":"118105","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2023-12-31","path":["ืืืืจ 5 - ืขืืืช ืืคืขืืืืืืช","ืฉืืืจืืช ืืชืงื ืื ืืืืจืฉืื"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[252,521,53,17]},{"value":"168043","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2022-12-31","path":["ืืืืจ 5 - ืขืืืช ืืคืขืืืืืืช","ืฉืืืจืืช ืืชืงื ืื ืืืืจืฉืื"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[136,522,54,17]},{"value":"4461","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2023-12-31","path":["ืืืืจ 5 - ืขืืืช ืืคืขืืืืืืช","ืืกืขืืช ืืืืืืืช"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[267,541,38,17]},{"value":"8495","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2022-12-31","path":["ืืืืจ 5 - ืขืืืช ืืคืขืืืืืืช","ืืกืขืืช ืืืืืืืช"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[152,542,38,17]},{"value":"80865","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2023-12-31","path":["ืืืืจ 5 - ืขืืืช ืืคืขืืืืืืช","ืงื ืืืช ืคืจืกืื, ืฆืืื ืืืืืื"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[258,558,47,18]},{"value":"91309","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2022-12-31","path":["ืืืืจ 5 - ืขืืืช ืืคืขืืืืืืช","ืงื ืืืช ืคืจืกืื, ืฆืืื ืืืืืื"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[143,558,48,17]},{"value":"197672","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2023-12-31","path":["ืืืืจ 5 - ืขืืืช ืืคืขืืืืืืช","ืืคืงืช ืคืจืืืืงืืื ืืืืจืืขืื"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[253,578,53,17]},{"value":"171818","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2022-12-31","path":["ืืืืจ 5 - ืขืืืช ืืคืขืืืืืืช","ืืคืงืช ืคืจืืืืงืืื ืืืืจืืขืื"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[136,576,53,17]},{"value":"1304248","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2023-12-31","path":["ืืืืจ 5 - ืขืืืช ืืคืขืืืืืืช","ืกื\"ื"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[241,597,66,17]},{"value":"1344239","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2022-12-31","path":["ืืืืจ 5 - ืขืืืช ืืคืขืืืืืืช","ืกื\"ื"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[126,596,64,17]},{"value":"10389","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2023-12-31","path":["ืืืืจ 6 - ืืืฆืืืช ืื ืืื ืืืืืืืช","ืืฉืจืืืืช"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[255,743,49,17]},{"value":"11572","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2022-12-31","path":["ืืืืจ 6 - ืืืฆืืืช ืื ืืื ืืืืืืืช","ืืฉืจืืืืช"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[141,743,48,17]},{"value":"10134","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2023-12-31","path":["ืืืืจ 6 - ืืืฆืืืช ืื ืืื ืืืืืืืช","ืืืืงื"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[255,762,49,17]},{"value":"4983","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2022-12-31","path":["ืืืืจ 6 - ืืืฆืืืช ืื ืืื ืืืืืืืช","ืืืืงื"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[152,762,38,17]},{"value":"31856","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2023-12-31","path":["ืืืืจ 6 - ืืืฆืืืช ืื ืืื ืืืืืืืช","ืฉืืจืืชืื ืืงืฆืืขืืื"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[255,782,49,17]},{"value":"39560","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2022-12-31","path":["ืืืืจ 6 - ืืืฆืืืช ืื ืืื ืืืืืืืช","ืฉืืจืืชืื ืืงืฆืืขืืื"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[140,782,50,17]},{"value":"","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2023-12-31","path":["ืืืืจ 6 - ืืืฆืืืช ืื ืืื ืืืืืืืช","ืืืืืืื ืืืฉ\"ื"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[295,799,11,17]},{"value":"4384","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2022-12-31","path":["ืืืืจ 6 - ืืืฆืืืช ืื ืืื ืืืืืืืช","ืืืืืืื ืืืฉ\"ื"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[151,800,38,17]},{"value":"11658","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2023-12-31","path":["ืืืืจ 6 - ืืืฆืืืช ืื ืืื ืืืืืืืช","ืืืืืืื"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[258,818,50,20]},{"value":"12971","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2022-12-31","path":["ืืืืจ 6 - ืืืฆืืืช ืื ืืื ืืืืืืืช","ืืืืืืื"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[142,818,48,17]},{"value":"45309","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2023-12-31","path":["ืืืืจ 6 - ืืืฆืืืช ืื ืืื ืืืืืืืช","ืืืืงืช ืจืื"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[255,837,56,21]},{"value":"45984","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2022-12-31","path":["ืืืืจ 6 - ืืืฆืืืช ืื ืืื ืืืืืืืช","ืืืืงืช ืจืื"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[141,837,50,17]},{"value":"702","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2023-12-31","path":["ืืืืจ 6 - ืืืฆืืืช ืื ืืื ืืืืืืืช","ืืฉืคืืืืช"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[282,858,22,17]},{"value":"","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2022-12-31","path":["ืืืืจ 6 - ืืืฆืืืช ืื ืืื ืืืืืืืช","ืืฉืคืืืืช"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[174,854,22,17]},{"value":"18964","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2023-12-31","path":["ืืืืจ 6 - ืืืฆืืืช ืื ืืื ืืืืืืืช","ืคืจืกืื"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[255,878,49,17]},{"value":"13122","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2022-12-31","path":["ืืืืจ 6 - ืืืฆืืืช ืื ืืื ืืืืืืืช","ืคืจืกืื"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[142,876,48,16]},{"value":"1715","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2023-12-31","path":["ืืืืจ 6 - ืืืฆืืืช ืื ืืื ืืืืืืืช","ืืืกืื ืืืืจืืช"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[267,893,39,22]},{"value":"4966","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2022-12-31","path":["ืืืืจ 6 - ืืืฆืืืช ืื ืืื ืืืืืืืช","ืืืกืื ืืืืจืืช"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[152,893,38,22]},{"value":"(35)","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2023-12-31","path":["ืืืืจ 6 - ืืืฆืืืช ืื ืืื ืืืืืืืช","ืฉืื ืืช ืืืืืื ืืชืจืืช"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[280,912,30,16]},{"value":"(261)","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2022-12-31","path":["ืืืืจ 6 - ืืืฆืืืช ืื ืืื ืืืืืืืช","ืฉืื ืืช ืืืืืื ืืชืจืืช"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[159,913,31,17]},{"value":"1830","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2023-12-31","path":["ืืืืจ 6 - ืืืฆืืืช ืื ืืื ืืืืืืืช","ืืชื ืืช"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[267,932,37,22]},{"value":"3650","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2022-12-31","path":["ืืืืจ 6 - ืืืฆืืืช ืื ืืื ืืืืืืืช","ืืชื ืืช"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[151,933,38,17]},{"value":"2438","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2023-12-31","path":["ืืืืจ 6 - ืืืฆืืืช ืื ืืื ืืืืืืืช","ืืืฆืืืช ืคืืช"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[267,949,37,23]},{"value":"1120","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2022-12-31","path":["ืืืืจ 6 - ืืืฆืืืช ืื ืืื ืืืืืืืช","ืืืฆืืืช ืคืืช"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[154,953,36,17]},{"value":"134960","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2023-12-31","path":["ืืืืจ 6 - ืืืฆืืืช ืื ืืื ืืืืืืืช","ืกื\"ื"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[250,970,54,17]},{"value":"142051","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2022-12-31","path":["ืืืืจ 6 - ืืืฆืืืช ืื ืืื ืืืืืืืช","ืกื\"ื"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[135,972,54,17]}]} | |
You are a precise financial statement extraction system. Return only valid JSON that matches the required schema. | You are extracting financial-statement annotations from a single page image into the exact Pydantic schema `PageExtraction`.
Return ONLY valid JSON.
Do NOT return markdown, code fences, comments, prose, or extra keys.
Top-level schema (exact keys only):
{
"meta": {
"entity_name": "<string or null>",
"page_num": "<string or null>",
"type": "balance_sheet|income_statement|cash_flow|notes|contents_page|title|declaration|profits|other",
"title": "<string or null>"
},
"facts": [
{
"bbox": { "x": <number>, "y": <number>, "w": <number>, "h": <number> },
"value": "<string>",
"comment": "<string or null>",
"is_note": <true|false>,
"note": "<string or null>",
"note_reference": "<string>",
"date": "<string or null>",
"path": ["<string>", "..."],
"currency": "ILS|USD|EUR|GBP|null",
"scale": 1|1000|1000000|null,
"value_type": "amount|%|null"
}
]
}
Type/validation rules (must match schema):
1. `meta` and `facts` are required.
2. `note_reference` is required string. Use "" when missing.
3. `path` is required list of strings (use [] when unknown, never null).
4. `is_note` must be boolean (never null and never "true"/"false" strings).
5. `date` must be `YYYY` or `YYYY-MM-DD` when provided.
6. `value` rules:
- If the value is a percentage, include `%` (for example `12%`, `12.5%`).
- If not a percentage, output only canonical numeric text: `Num`, `Num.Num`, `(Num)`, or `(Num.Num)`.
- For non-`%` values remove commas, spaces, currency signs/codes, and use parentheses for negatives (never leading `-`).
7. Use JSON null literal for missing optional values (never "null" string).
8. Do not include any keys not listed above.
Extraction rules:
1. Extract all visible numeric/table facts, including negatives in parentheses and totals.
2. If source is a dash placeholder (`-`, `โ`, `โ`), still extract the fact but set `value` to empty string `""`.
3. For non-`%` values, normalize `value` to canonical numeric shape only (`Num`, `Num.Num`, `(Num)`, `(Num.Num)`).
4. For `%` values, keep `%` in `value`.
5. `bbox` must tightly cover the value text only, in pixel coordinates of the original image.
6. `comment`: textual qualifier tied to the specific fact (for example `*without debt insurance`), else null.
7. `is_note`: true when the fact is itself inside a note section, else false.
8. `note`: use when this fact belongs to data presented inside a note section; else null.
9. `note_reference`: use when this fact points/references another note; else "".
10. `currency`: infer from page/header context (for example "ืฉืงืืื ืืืฉืื" -> "ILS"), else null.
11. `scale`: 1 unless page/header indicates thousands or millions.
12. `value_type`: "amount" unless the fact is a percentage ("%").
13. `date`: output only `YYYY` or `YYYY-MM-DD`. Convert dotted dates (`D.M.YYYY` / `DD.MM.YYYY`) to `YYYY-MM-DD` using day-first parsing.
14. `meta.type`: use "profits" for "ืืืืืช ืขื ืืคืขืืืืืืช"; otherwise choose the best enum value.
15. No duplicate facts. Order `facts` top-to-bottom; within each row use right-to-left for Hebrew/RTL pages and left-to-right for English/LTR pages (fallback RTL if uncertain).
16. Output UTF-8 Hebrew directly (do not escape to unicode sequences).
Path hierarchy rule:
1. Build `path` with horizontal-axis hierarchy first (row-side structure: group -> subgroup -> line item).
2. Then append vertical-axis hierarchy only when it adds business semantics not already represented by dedicated fields.
3. Do not encode period/currency/scale/value-format in `path` when already represented by `date`/`currency`/`scale`/`value_type`.
4. Keep labels exactly as shown. Do not invent levels.
| {"meta":{"entity_name":"ืืืจื ืื - ืืืืืื ืืืงืืืืช ืืืื ืื, ืืชื ืืขื ืืงืืืืฆืืช","page_num":null,"type":"other","title":"ืืืืืช ืืกืคืืื"},"facts":[]} | |
You are a precise financial statement extraction system. Return only valid JSON that matches the required schema. | You are extracting financial-statement annotations from a single page image into the exact Pydantic schema `PageExtraction`.
Return ONLY valid JSON.
Do NOT return markdown, code fences, comments, prose, or extra keys.
Top-level schema (exact keys only):
{
"meta": {
"entity_name": "<string or null>",
"page_num": "<string or null>",
"type": "balance_sheet|income_statement|cash_flow|notes|contents_page|title|declaration|profits|other",
"title": "<string or null>"
},
"facts": [
{
"bbox": { "x": <number>, "y": <number>, "w": <number>, "h": <number> },
"value": "<string>",
"comment": "<string or null>",
"is_note": <true|false>,
"note": "<string or null>",
"note_reference": "<string>",
"date": "<string or null>",
"path": ["<string>", "..."],
"currency": "ILS|USD|EUR|GBP|null",
"scale": 1|1000|1000000|null,
"value_type": "amount|%|null"
}
]
}
Type/validation rules (must match schema):
1. `meta` and `facts` are required.
2. `note_reference` is required string. Use "" when missing.
3. `path` is required list of strings (use [] when unknown, never null).
4. `is_note` must be boolean (never null and never "true"/"false" strings).
5. `date` must be `YYYY` or `YYYY-MM-DD` when provided.
6. `value` rules:
- If the value is a percentage, include `%` (for example `12%`, `12.5%`).
- If not a percentage, output only canonical numeric text: `Num`, `Num.Num`, `(Num)`, or `(Num.Num)`.
- For non-`%` values remove commas, spaces, currency signs/codes, and use parentheses for negatives (never leading `-`).
7. Use JSON null literal for missing optional values (never "null" string).
8. Do not include any keys not listed above.
Extraction rules:
1. Extract all visible numeric/table facts, including negatives in parentheses and totals.
2. If source is a dash placeholder (`-`, `โ`, `โ`), still extract the fact but set `value` to empty string `""`.
3. For non-`%` values, normalize `value` to canonical numeric shape only (`Num`, `Num.Num`, `(Num)`, `(Num.Num)`).
4. For `%` values, keep `%` in `value`.
5. `bbox` must tightly cover the value text only, in pixel coordinates of the original image.
6. `comment`: textual qualifier tied to the specific fact (for example `*without debt insurance`), else null.
7. `is_note`: true when the fact is itself inside a note section, else false.
8. `note`: use when this fact belongs to data presented inside a note section; else null.
9. `note_reference`: use when this fact points/references another note; else "".
10. `currency`: infer from page/header context (for example "ืฉืงืืื ืืืฉืื" -> "ILS"), else null.
11. `scale`: 1 unless page/header indicates thousands or millions.
12. `value_type`: "amount" unless the fact is a percentage ("%").
13. `date`: output only `YYYY` or `YYYY-MM-DD`. Convert dotted dates (`D.M.YYYY` / `DD.MM.YYYY`) to `YYYY-MM-DD` using day-first parsing.
14. `meta.type`: use "profits" for "ืืืืืช ืขื ืืคืขืืืืืืช"; otherwise choose the best enum value.
15. No duplicate facts. Order `facts` top-to-bottom; within each row use right-to-left for Hebrew/RTL pages and left-to-right for English/LTR pages (fallback RTL if uncertain).
16. Output UTF-8 Hebrew directly (do not escape to unicode sequences).
Path hierarchy rule:
1. Build `path` with horizontal-axis hierarchy first (row-side structure: group -> subgroup -> line item).
2. Then append vertical-axis hierarchy only when it adds business semantics not already represented by dedicated fields.
3. Do not encode period/currency/scale/value-format in `path` when already represented by `date`/`currency`/`scale`/`value_type`.
4. Keep labels exactly as shown. Do not invent levels.
| {"meta":{"entity_name":"ืืืจื ืื - ืืืืืื ืืืงืืืืช ืืืื ืื, ืืชื ืืขื ืืงืืืืฆืืช","page_num":null,"type":"contents_page","title":"ืชืืื ืืขื ืืื ืื"},"facts":[]} | |
You are a precise financial statement extraction system. Return only valid JSON that matches the required schema. | You are extracting financial-statement annotations from a single page image into the exact Pydantic schema `PageExtraction`.
Return ONLY valid JSON.
Do NOT return markdown, code fences, comments, prose, or extra keys.
Top-level schema (exact keys only):
{
"meta": {
"entity_name": "<string or null>",
"page_num": "<string or null>",
"type": "balance_sheet|income_statement|cash_flow|notes|contents_page|title|declaration|profits|other",
"title": "<string or null>"
},
"facts": [
{
"bbox": { "x": <number>, "y": <number>, "w": <number>, "h": <number> },
"value": "<string>",
"comment": "<string or null>",
"is_note": <true|false>,
"note": "<string or null>",
"note_reference": "<string>",
"date": "<string or null>",
"path": ["<string>", "..."],
"currency": "ILS|USD|EUR|GBP|null",
"scale": 1|1000|1000000|null,
"value_type": "amount|%|null"
}
]
}
Type/validation rules (must match schema):
1. `meta` and `facts` are required.
2. `note_reference` is required string. Use "" when missing.
3. `path` is required list of strings (use [] when unknown, never null).
4. `is_note` must be boolean (never null and never "true"/"false" strings).
5. `date` must be `YYYY` or `YYYY-MM-DD` when provided.
6. `value` rules:
- If the value is a percentage, include `%` (for example `12%`, `12.5%`).
- If not a percentage, output only canonical numeric text: `Num`, `Num.Num`, `(Num)`, or `(Num.Num)`.
- For non-`%` values remove commas, spaces, currency signs/codes, and use parentheses for negatives (never leading `-`).
7. Use JSON null literal for missing optional values (never "null" string).
8. Do not include any keys not listed above.
Extraction rules:
1. Extract all visible numeric/table facts, including negatives in parentheses and totals.
2. If source is a dash placeholder (`-`, `โ`, `โ`), still extract the fact but set `value` to empty string `""`.
3. For non-`%` values, normalize `value` to canonical numeric shape only (`Num`, `Num.Num`, `(Num)`, `(Num.Num)`).
4. For `%` values, keep `%` in `value`.
5. `bbox` must tightly cover the value text only, in pixel coordinates of the original image.
6. `comment`: textual qualifier tied to the specific fact (for example `*without debt insurance`), else null.
7. `is_note`: true when the fact is itself inside a note section, else false.
8. `note`: use when this fact belongs to data presented inside a note section; else null.
9. `note_reference`: use when this fact points/references another note; else "".
10. `currency`: infer from page/header context (for example "ืฉืงืืื ืืืฉืื" -> "ILS"), else null.
11. `scale`: 1 unless page/header indicates thousands or millions.
12. `value_type`: "amount" unless the fact is a percentage ("%").
13. `date`: output only `YYYY` or `YYYY-MM-DD`. Convert dotted dates (`D.M.YYYY` / `DD.MM.YYYY`) to `YYYY-MM-DD` using day-first parsing.
14. `meta.type`: use "profits" for "ืืืืืช ืขื ืืคืขืืืืืืช"; otherwise choose the best enum value.
15. No duplicate facts. Order `facts` top-to-bottom; within each row use right-to-left for Hebrew/RTL pages and left-to-right for English/LTR pages (fallback RTL if uncertain).
16. Output UTF-8 Hebrew directly (do not escape to unicode sequences).
Path hierarchy rule:
1. Build `path` with horizontal-axis hierarchy first (row-side structure: group -> subgroup -> line item).
2. Then append vertical-axis hierarchy only when it adds business semantics not already represented by dedicated fields.
3. Do not encode period/currency/scale/value-format in `path` when already represented by `date`/`currency`/`scale`/`value_type`.
4. Keep labels exactly as shown. Do not invent levels.
| {"meta":{"entity_name":"ืืืจื ืื - ืืืืืื ืืืงืืืืช ืืืื ืื, ืืชื ืืขื ืืงืืืืฆืืช","page_num":"2","type":"declaration","title":"ืืื ืจืืื ืืืฉืืื ืืืืงืจ ืืืืจื ืืขืืืชื"},"facts":[]} | |
You are a precise financial statement extraction system. Return only valid JSON that matches the required schema. | You are extracting financial-statement annotations from a single page image into the exact Pydantic schema `PageExtraction`.
Return ONLY valid JSON.
Do NOT return markdown, code fences, comments, prose, or extra keys.
Top-level schema (exact keys only):
{
"meta": {
"entity_name": "<string or null>",
"page_num": "<string or null>",
"type": "balance_sheet|income_statement|cash_flow|notes|contents_page|title|declaration|profits|other",
"title": "<string or null>"
},
"facts": [
{
"bbox": { "x": <number>, "y": <number>, "w": <number>, "h": <number> },
"value": "<string>",
"comment": "<string or null>",
"is_note": <true|false>,
"note": "<string or null>",
"note_reference": "<string>",
"date": "<string or null>",
"path": ["<string>", "..."],
"currency": "ILS|USD|EUR|GBP|null",
"scale": 1|1000|1000000|null,
"value_type": "amount|%|null"
}
]
}
Type/validation rules (must match schema):
1. `meta` and `facts` are required.
2. `note_reference` is required string. Use "" when missing.
3. `path` is required list of strings (use [] when unknown, never null).
4. `is_note` must be boolean (never null and never "true"/"false" strings).
5. `date` must be `YYYY` or `YYYY-MM-DD` when provided.
6. `value` rules:
- If the value is a percentage, include `%` (for example `12%`, `12.5%`).
- If not a percentage, output only canonical numeric text: `Num`, `Num.Num`, `(Num)`, or `(Num.Num)`.
- For non-`%` values remove commas, spaces, currency signs/codes, and use parentheses for negatives (never leading `-`).
7. Use JSON null literal for missing optional values (never "null" string).
8. Do not include any keys not listed above.
Extraction rules:
1. Extract all visible numeric/table facts, including negatives in parentheses and totals.
2. If source is a dash placeholder (`-`, `โ`, `โ`), still extract the fact but set `value` to empty string `""`.
3. For non-`%` values, normalize `value` to canonical numeric shape only (`Num`, `Num.Num`, `(Num)`, `(Num.Num)`).
4. For `%` values, keep `%` in `value`.
5. `bbox` must tightly cover the value text only, in pixel coordinates of the original image.
6. `comment`: textual qualifier tied to the specific fact (for example `*without debt insurance`), else null.
7. `is_note`: true when the fact is itself inside a note section, else false.
8. `note`: use when this fact belongs to data presented inside a note section; else null.
9. `note_reference`: use when this fact points/references another note; else "".
10. `currency`: infer from page/header context (for example "ืฉืงืืื ืืืฉืื" -> "ILS"), else null.
11. `scale`: 1 unless page/header indicates thousands or millions.
12. `value_type`: "amount" unless the fact is a percentage ("%").
13. `date`: output only `YYYY` or `YYYY-MM-DD`. Convert dotted dates (`D.M.YYYY` / `DD.MM.YYYY`) to `YYYY-MM-DD` using day-first parsing.
14. `meta.type`: use "profits" for "ืืืืืช ืขื ืืคืขืืืืืืช"; otherwise choose the best enum value.
15. No duplicate facts. Order `facts` top-to-bottom; within each row use right-to-left for Hebrew/RTL pages and left-to-right for English/LTR pages (fallback RTL if uncertain).
16. Output UTF-8 Hebrew directly (do not escape to unicode sequences).
Path hierarchy rule:
1. Build `path` with horizontal-axis hierarchy first (row-side structure: group -> subgroup -> line item).
2. Then append vertical-axis hierarchy only when it adds business semantics not already represented by dedicated fields.
3. Do not encode period/currency/scale/value-format in `path` when already represented by `date`/`currency`/`scale`/`value_type`.
4. Keep labels exactly as shown. Do not invent levels.
| {"meta":{"entity_name":"ืืืจื ืื - ืืืืืื ืืืงืืืืช ืืืื ืื, ืืชื ืืขื ืืงืืืืฆืืช","page_num":"3","type":"balance_sheet","title":"ืืืืืช ืขื ืืืฆื ืืืกืคื"},"facts":[{"value":"10255","comment":null,"is_note":false,"note":null,"note_reference":"4","date":"2021-09-30","path":["ื ืืกืื ืฉืืืคืื","ืืืืื ืื ืืฉืืื ืืืืื ืื"],"currency":"ILS","scale":1000,"value_type":"amount","bbox":[236,295,39,13]},{"value":"4851","comment":null,"is_note":false,"note":null,"note_reference":"4","date":"2020-09-30","path":["ื ืืกืื ืฉืืืคืื","ืืืืื ืื ืืฉืืื ืืืืื ืื"],"currency":"ILS","scale":1000,"value_type":"amount","bbox":[134,295,37,13]},{"value":"3283","comment":null,"is_note":false,"note":null,"note_reference":"5","date":"2021-09-30","path":["ื ืืกืื ืฉืืืคืื","ื ืืืจืืช ืขืจื ืกืืืจืื ืืืื ืงืฆืจ"],"currency":"ILS","scale":1000,"value_type":"amount","bbox":[240,312,36,13]},{"value":"5240","comment":null,"is_note":false,"note":null,"note_reference":"5","date":"2020-09-30","path":["ื ืืกืื ืฉืืืคืื","ื ืืืจืืช ืขืจื ืกืืืจืื ืืืื ืงืฆืจ"],"currency":"ILS","scale":1000,"value_type":"amount","bbox":[137,313,33,13]},{"value":"963","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2021-09-30","path":["ื ืืกืื ืฉืืืคืื","ืืงืืืืช"],"currency":"ILS","scale":1000,"value_type":"amount","bbox":[247,329,29,13]},{"value":"1361","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2020-09-30","path":["ื ืืกืื ืฉืืืคืื","ืืงืืืืช"],"currency":"ILS","scale":1000,"value_type":"amount","bbox":[138,328,29,13]},{"value":"12164","comment":null,"is_note":false,"note":null,"note_reference":"6","date":"2021-09-30","path":["ื ืืกืื ืฉืืืคืื","ืืืืืื ืืืชืจืืช ืืืื"],"currency":"ILS","scale":1000,"value_type":"amount","bbox":[238,344,38,16]},{"value":"11337","comment":null,"is_note":false,"note":null,"note_reference":"6","date":"2020-09-30","path":["ื ืืกืื ืฉืืืคืื","ืืืืืื ืืืชืจืืช ืืืื"],"currency":"ILS","scale":1000,"value_type":"amount","bbox":[132,345,37,13]},{"value":"26665","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2021-09-30","path":["ื ืืกืื ืฉืืืคืื"],"currency":"ILS","scale":1000,"value_type":"amount","bbox":[236,377,40,13]},{"value":"22789","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2020-09-30","path":["ื ืืกืื ืฉืืืคืื"],"currency":"ILS","scale":1000,"value_type":"amount","bbox":[131,378,40,13]},{"value":"2296","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2021-09-30","path":["ื ืืกืื ืื ืฉืืืคืื","ืืืืื ืื ืืืืืขืืื ืืืืกืื ืงืจื ืืช"],"currency":"ILS","scale":1000,"value_type":"amount","bbox":[241,441,33,15]},{"value":"2123","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2020-09-30","path":["ื ืืกืื ืื ืฉืืืคืื","ืืืืื ืื ืืืืืขืืื ืืืืกืื ืงืจื ืืช"],"currency":"ILS","scale":1000,"value_type":"amount","bbox":[137,442,32,13]},{"value":"23878","comment":null,"is_note":false,"note":null,"note_reference":"12,5ื'","date":"2021-09-30","path":["ื ืืกืื ืื ืฉืืืคืื","ื ืืืจืืช ืขืจื ืืืื ืืจืื ืืืืขืืื"],"currency":"ILS","scale":1000,"value_type":"amount","bbox":[233,459,45,13]},{"value":"20340","comment":null,"is_note":false,"note":null,"note_reference":"12,5ื'","date":"2020-09-30","path":["ื ืืกืื ืื ืฉืืืคืื","ื ืืืจืืช ืขืจื ืืืื ืืจืื ืืืืขืืื"],"currency":"ILS","scale":1000,"value_type":"amount","bbox":[130,460,42,14]},{"value":"3104","comment":null,"is_note":false,"note":null,"note_reference":"13ื'","date":"2021-09-30","path":["ื ืืกืื ืื ืฉืืืคืื","ืืืฆืืืช ืืจืืฉ"],"currency":"ILS","scale":1000,"value_type":"amount","bbox":[236,477,43,14]},{"value":"3252","comment":null,"is_note":false,"note":null,"note_reference":"13ื'","date":"2020-09-30","path":["ื ืืกืื ืื ืฉืืืคืื","ืืืฆืืืช ืืจืืฉ"],"currency":"ILS","scale":1000,"value_type":"amount","bbox":[138,476,33,13]},{"value":"42289","comment":null,"is_note":false,"note":null,"note_reference":"7","date":"2021-09-30","path":["ื ืืกืื ืื ืฉืืืคืื","ืจืืืฉ ืงืืืข, ื ืื"],"currency":"ILS","scale":1000,"value_type":"amount","bbox":[235,493,39,13]},{"value":"44066","comment":null,"is_note":false,"note":null,"note_reference":"7","date":"2020-09-30","path":["ื ืืกืื ืื ืฉืืืคืื","ืจืืืฉ ืงืืืข, ื ืื"],"currency":"ILS","scale":1000,"value_type":"amount","bbox":[130,492,40,13]},{"value":"99","comment":null,"is_note":false,"note":null,"note_reference":"8","date":"2021-09-30","path":["ื ืืกืื ืื ืฉืืืคืื","ื ืืกืื ืืืชื ืืืืฉืืื, ื ืื"],"currency":"ILS","scale":1000,"value_type":"amount","bbox":[258,510,19,12]},{"value":"75","comment":null,"is_note":false,"note":null,"note_reference":"8","date":"2020-09-30","path":["ื ืืกืื ืื ืฉืืืคืื","ื ืืกืื ืืืชื ืืืืฉืืื, ื ืื"],"currency":"ILS","scale":1000,"value_type":"amount","bbox":[152,510,18,13]},{"value":"71666","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2021-09-30","path":["ื ืืกืื ืื ืฉืืืคืื","ืกืืดื"],"currency":"ILS","scale":1000,"value_type":"amount","bbox":[236,540,43,15]},{"value":"69856","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2020-09-30","path":["ื ืืกืื ืื ืฉืืืคืื","ืกืืดื"],"currency":"ILS","scale":1000,"value_type":"amount","bbox":[127,540,46,15]},{"value":"98331","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2021-09-30","path":["ื ืืกืื","ืกืืดื"],"currency":"ILS","scale":1000,"value_type":"amount","bbox":[234,601,41,13]},{"value":"92645","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2020-09-30","path":["ื ืืกืื","ืกืืดื"],"currency":"ILS","scale":1000,"value_type":"amount","bbox":[127,599,49,15]}]} | |
You are a precise financial statement extraction system. Return only valid JSON that matches the required schema. | You are extracting financial-statement annotations from a single page image into the exact Pydantic schema `PageExtraction`.
Return ONLY valid JSON.
Do NOT return markdown, code fences, comments, prose, or extra keys.
Top-level schema (exact keys only):
{
"meta": {
"entity_name": "<string or null>",
"page_num": "<string or null>",
"type": "balance_sheet|income_statement|cash_flow|notes|contents_page|title|declaration|profits|other",
"title": "<string or null>"
},
"facts": [
{
"bbox": { "x": <number>, "y": <number>, "w": <number>, "h": <number> },
"value": "<string>",
"comment": "<string or null>",
"is_note": <true|false>,
"note": "<string or null>",
"note_reference": "<string>",
"date": "<string or null>",
"path": ["<string>", "..."],
"currency": "ILS|USD|EUR|GBP|null",
"scale": 1|1000|1000000|null,
"value_type": "amount|%|null"
}
]
}
Type/validation rules (must match schema):
1. `meta` and `facts` are required.
2. `note_reference` is required string. Use "" when missing.
3. `path` is required list of strings (use [] when unknown, never null).
4. `is_note` must be boolean (never null and never "true"/"false" strings).
5. `date` must be `YYYY` or `YYYY-MM-DD` when provided.
6. `value` rules:
- If the value is a percentage, include `%` (for example `12%`, `12.5%`).
- If not a percentage, output only canonical numeric text: `Num`, `Num.Num`, `(Num)`, or `(Num.Num)`.
- For non-`%` values remove commas, spaces, currency signs/codes, and use parentheses for negatives (never leading `-`).
7. Use JSON null literal for missing optional values (never "null" string).
8. Do not include any keys not listed above.
Extraction rules:
1. Extract all visible numeric/table facts, including negatives in parentheses and totals.
2. If source is a dash placeholder (`-`, `โ`, `โ`), still extract the fact but set `value` to empty string `""`.
3. For non-`%` values, normalize `value` to canonical numeric shape only (`Num`, `Num.Num`, `(Num)`, `(Num.Num)`).
4. For `%` values, keep `%` in `value`.
5. `bbox` must tightly cover the value text only, in pixel coordinates of the original image.
6. `comment`: textual qualifier tied to the specific fact (for example `*without debt insurance`), else null.
7. `is_note`: true when the fact is itself inside a note section, else false.
8. `note`: use when this fact belongs to data presented inside a note section; else null.
9. `note_reference`: use when this fact points/references another note; else "".
10. `currency`: infer from page/header context (for example "ืฉืงืืื ืืืฉืื" -> "ILS"), else null.
11. `scale`: 1 unless page/header indicates thousands or millions.
12. `value_type`: "amount" unless the fact is a percentage ("%").
13. `date`: output only `YYYY` or `YYYY-MM-DD`. Convert dotted dates (`D.M.YYYY` / `DD.MM.YYYY`) to `YYYY-MM-DD` using day-first parsing.
14. `meta.type`: use "profits" for "ืืืืืช ืขื ืืคืขืืืืืืช"; otherwise choose the best enum value.
15. No duplicate facts. Order `facts` top-to-bottom; within each row use right-to-left for Hebrew/RTL pages and left-to-right for English/LTR pages (fallback RTL if uncertain).
16. Output UTF-8 Hebrew directly (do not escape to unicode sequences).
Path hierarchy rule:
1. Build `path` with horizontal-axis hierarchy first (row-side structure: group -> subgroup -> line item).
2. Then append vertical-axis hierarchy only when it adds business semantics not already represented by dedicated fields.
3. Do not encode period/currency/scale/value-format in `path` when already represented by `date`/`currency`/`scale`/`value_type`.
4. Keep labels exactly as shown. Do not invent levels.
| {"meta":{"entity_name":"ืืืจื ืื - ืืืืืื ืืืงืืืืช ืืืื ืื, ืืชื ืืขื ืืงืืืืฆืืช","page_num":"4","type":"balance_sheet","title":"ืืืืืช ืขื ืืืฆื ืืืกืคื"},"facts":[{"value":"8330","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2021-09-30","path":["ืืชืืืืืืืืช ืฉืืืคืืช","ืืงืืืืช ืขื ืืฉืืื ืฉืืจ ืืืืื"],"currency":"ILS","scale":1000,"value_type":"amount","bbox":[218,268,50,18]},{"value":"6077","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2020-09-30","path":["ืืชืืืืืืืืช ืฉืืืคืืช","ืืงืืืืช ืขื ืืฉืืื ืฉืืจ ืืืืื"],"currency":"ILS","scale":1000,"value_type":"amount","bbox":[125,265,51,18]},{"value":"3671","comment":null,"is_note":false,"note":null,"note_reference":"9","date":"2021-09-30","path":["ืืชืืืืืืืืช ืฉืืืคืืช","ืกืคืงืื"],"currency":"ILS","scale":1000,"value_type":"amount","bbox":[219,283,49,18]},{"value":"3201","comment":null,"is_note":false,"note":null,"note_reference":"9","date":"2020-09-30","path":["ืืชืืืืืืืืช ืฉืืืคืืช","ืกืคืงืื"],"currency":"ILS","scale":1000,"value_type":"amount","bbox":[125,280,50,18]},{"value":"12407","comment":null,"is_note":false,"note":null,"note_reference":"10","date":"2021-09-30","path":["ืืชืืืืืืืืช ืฉืืืคืืช","ืืชืืืืืืืืช ืืขืืืืื ืืืชืืืืืืืืช ืืืจืืช ืืืื ืฉืืจ ืืืฉืืืจืช"],"currency":"ILS","scale":1000,"value_type":"amount","bbox":[213,298,55,18]},{"value":"11263","comment":null,"is_note":false,"note":null,"note_reference":"10","date":"2020-09-30","path":["ืืชืืืืืืืืช ืฉืืืคืืช","ืืชืืืืืืืืช ืืขืืืืื ืืืชืืืืืืืืช ืืืจืืช ืืืื ืฉืืจ ืืืฉืืืจืช"],"currency":"ILS","scale":1000,"value_type":"amount","bbox":[121,294,55,19]},{"value":"5179","comment":null,"is_note":false,"note":null,"note_reference":"11","date":"2021-09-30","path":["ืืชืืืืืืืืช ืฉืืืคืืช","ืืืืื ืืืชืจืืช ืืืืช"],"currency":"ILS","scale":1000,"value_type":"amount","bbox":[220,312,48,18]},{"value":"7080","comment":null,"is_note":false,"note":null,"note_reference":"11","date":"2020-09-30","path":["ืืชืืืืืืืืช ืฉืืืคืืช","ืืืืื ืืืชืจืืช ืืืืช"],"currency":"ILS","scale":1000,"value_type":"amount","bbox":[125,310,50,18]},{"value":"29587","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2021-09-30","path":["ืืชืืืืืืืืช ืฉืืืคืืช","ืกื ืืื"],"currency":"ILS","scale":1000,"value_type":"amount","bbox":[214,348,55,18]},{"value":"27621","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2020-09-30","path":["ืืชืืืืืืืืช ืฉืืืคืืช","ืกื ืืื"],"currency":"ILS","scale":1000,"value_type":"amount","bbox":[120,346,55,18]},{"value":"118","comment":null,"is_note":false,"note":null,"note_reference":"13ื'","date":"2021-09-30","path":["ืืชืืืืืืืืช ืื ืฉืืืคืืช","ืืืืื ืืืื ืืจืื"],"currency":"ILS","scale":1000,"value_type":"amount","bbox":[233,394,40,20]},{"value":"318","comment":null,"is_note":false,"note":null,"note_reference":"13ื'","date":"2020-09-30","path":["ืืชืืืืืืืืช ืื ืฉืืืคืืช","ืืืืื ืืืื ืืจืื"],"currency":"ILS","scale":1000,"value_type":"amount","bbox":[139,391,41,20]},{"value":"18093","comment":null,"is_note":false,"note":null,"note_reference":"12","date":"2021-09-30","path":["ืืชืืืืืืืืช ืื ืฉืืืคืืช","ืืชืืืืืืืืช ืืฉื ืืืืืืช ืขืืืืื"],"currency":"ILS","scale":1000,"value_type":"amount","bbox":[219,409,55,22]},{"value":"18731","comment":null,"is_note":false,"note":null,"note_reference":"12","date":"2020-09-30","path":["ืืชืืืืืืืืช ืื ืฉืืืคืืช","ืืชืืืืืืืืช ืืฉื ืืืืืืช ืขืืืืื"],"currency":"ILS","scale":1000,"value_type":"amount","bbox":[126,405,55,22]},{"value":"1422","comment":null,"is_note":false,"note":null,"note_reference":"14","date":"2021-09-30","path":["ืืชืืืืืืืืช ืื ืฉืืืคืืช","ืฉืืจื ืืื"],"currency":"ILS","scale":1000,"value_type":"amount","bbox":[225,423,48,22]},{"value":"1422","comment":null,"is_note":false,"note":null,"note_reference":"14","date":"2020-09-30","path":["ืืชืืืืืืืืช ืื ืฉืืืคืืช","ืฉืืจื ืืื"],"currency":"ILS","scale":1000,"value_type":"amount","bbox":[131,421,48,22]},{"value":"19633","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2021-09-30","path":["ืืชืืืืืืืืช ืื ืฉืืืคืืช","ืกื ืืื"],"currency":"ILS","scale":1000,"value_type":"amount","bbox":[218,458,54,22]},{"value":"20471","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2020-09-30","path":["ืืชืืืืืืืืช ืื ืฉืืืคืืช","ืกื ืืื"],"currency":"ILS","scale":1000,"value_type":"amount","bbox":[126,455,55,22]},{"value":"1391","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2021-09-30","path":["ื ืืกืื ื ืื ืฉืื ืงืืืืช ืืืืืื ืืืืื","ืืฉืืืืฉ ืืคืขืืืืืืช"],"currency":"ILS","scale":1000,"value_type":"amount","bbox":[221,555,47,18]},{"value":"(4887)","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2020-09-30","path":["ื ืืกืื ื ืื ืฉืื ืงืืืืช ืืืืืื ืืืืื","ืืฉืืืืฉ ืืคืขืืืืืืช"],"currency":"ILS","scale":1000,"value_type":"amount","bbox":[115,552,60,19]},{"value":"42388","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2021-09-30","path":["ื ืืกืื ื ืื ืฉืื ืงืืืืช ืืืืืื ืืืืื","ืฉืฉืืืฉื ืืจืืืฉ ืงืืืข ืื ืืกืื ืืืชื ืืืืฉืืื"],"currency":"ILS","scale":1000,"value_type":"amount","bbox":[214,570,55,18]},{"value":"44141","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2020-09-30","path":["ื ืืกืื ื ืื ืฉืื ืงืืืืช ืืืืืื ืืืืื","ืฉืฉืืืฉื ืืจืืืฉ ืงืืืข ืื ืืกืื ืืืชื ืืืืฉืืื"],"currency":"ILS","scale":1000,"value_type":"amount","bbox":[121,567,55,18]},{"value":"43779","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2021-09-30","path":["ื ืืกืื ื ืื ืฉืื ืงืืืืช ืืืืืื ืืืืื","ืกื ืืื"],"currency":"ILS","scale":1000,"value_type":"amount","bbox":[213,596,55,18]},{"value":"39254","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2020-09-30","path":["ื ืืกืื ื ืื ืฉืื ืงืืืืช ืืืืืื ืืืืื","ืกื ืืื"],"currency":"ILS","scale":1000,"value_type":"amount","bbox":[121,596,55,18]},{"value":"5315","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2021-09-30","path":["ื ืืกืื ื ืื ืฉืงืืืืช ืืืืืื ืืืืื","ืืขืืช ืืืคื ืืื ื"],"currency":"ILS","scale":1000,"value_type":"amount","bbox":[219,644,49,18]},{"value":"5164","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2020-09-30","path":["ื ืืกืื ื ืื ืฉืงืืืืช ืืืืืื ืืืืื","ืืขืืช ืืืคื ืืื ื"],"currency":"ILS","scale":1000,"value_type":"amount","bbox":[125,640,49,19]},{"value":"17","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2021-09-30","path":["ื ืืกืื ื ืื ืฉืงืืืืช ืืืืืื ืืืืื","ืืขืืช ืืืคื ืงืืืข"],"currency":"ILS","scale":1000,"value_type":"amount","bbox":[232,659,34,16]},{"value":"135","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2020-09-30","path":["ื ืืกืื ื ืื ืฉืงืืืืช ืืืืืื ืืืืื","ืืขืืช ืืืคื ืงืืืข"],"currency":"ILS","scale":1000,"value_type":"amount","bbox":[134,655,40,16]},{"value":"5332","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2021-09-30","path":["ื ืืกืื ื ืื ืฉืงืืืืช ืืืืืื ืืืืื","ืกื ืืื"],"currency":"ILS","scale":1000,"value_type":"amount","bbox":[220,693,48,18]},{"value":"5299","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2020-09-30","path":["ื ืืกืื ื ืื ืฉืงืืืืช ืืืืืื ืืืืื","ืกื ืืื"],"currency":"ILS","scale":1000,"value_type":"amount","bbox":[125,691,49,18]},{"value":"49111","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2021-09-30","path":["ืกื ืืื ื ืืกืื ื ืื"],"currency":"ILS","scale":1000,"value_type":"amount","bbox":[213,724,55,18]},{"value":"44553","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2020-09-30","path":["ืกื ืืื ื ืืกืื ื ืื"],"currency":"ILS","scale":1000,"value_type":"amount","bbox":[121,720,55,18]},{"value":"98331","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2021-09-30","path":["ืกื ืืื ืืชืืืืืืืืช ืื ืืกืื ื ืื"],"currency":"ILS","scale":1000,"value_type":"amount","bbox":[213,766,55,18]},{"value":"92645","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2020-09-30","path":["ืกื ืืื ืืชืืืืืืืืช ืื ืืกืื ื ืื"],"currency":"ILS","scale":1000,"value_type":"amount","bbox":[114,763,55,18]}]} | |
You are a precise financial statement extraction system. Return only valid JSON that matches the required schema. | You are extracting financial-statement annotations from a single page image into the exact Pydantic schema `PageExtraction`.
Return ONLY valid JSON.
Do NOT return markdown, code fences, comments, prose, or extra keys.
Top-level schema (exact keys only):
{
"meta": {
"entity_name": "<string or null>",
"page_num": "<string or null>",
"type": "balance_sheet|income_statement|cash_flow|notes|contents_page|title|declaration|profits|other",
"title": "<string or null>"
},
"facts": [
{
"bbox": { "x": <number>, "y": <number>, "w": <number>, "h": <number> },
"value": "<string>",
"comment": "<string or null>",
"is_note": <true|false>,
"note": "<string or null>",
"note_reference": "<string>",
"date": "<string or null>",
"path": ["<string>", "..."],
"currency": "ILS|USD|EUR|GBP|null",
"scale": 1|1000|1000000|null,
"value_type": "amount|%|null"
}
]
}
Type/validation rules (must match schema):
1. `meta` and `facts` are required.
2. `note_reference` is required string. Use "" when missing.
3. `path` is required list of strings (use [] when unknown, never null).
4. `is_note` must be boolean (never null and never "true"/"false" strings).
5. `date` must be `YYYY` or `YYYY-MM-DD` when provided.
6. `value` rules:
- If the value is a percentage, include `%` (for example `12%`, `12.5%`).
- If not a percentage, output only canonical numeric text: `Num`, `Num.Num`, `(Num)`, or `(Num.Num)`.
- For non-`%` values remove commas, spaces, currency signs/codes, and use parentheses for negatives (never leading `-`).
7. Use JSON null literal for missing optional values (never "null" string).
8. Do not include any keys not listed above.
Extraction rules:
1. Extract all visible numeric/table facts, including negatives in parentheses and totals.
2. If source is a dash placeholder (`-`, `โ`, `โ`), still extract the fact but set `value` to empty string `""`.
3. For non-`%` values, normalize `value` to canonical numeric shape only (`Num`, `Num.Num`, `(Num)`, `(Num.Num)`).
4. For `%` values, keep `%` in `value`.
5. `bbox` must tightly cover the value text only, in pixel coordinates of the original image.
6. `comment`: textual qualifier tied to the specific fact (for example `*without debt insurance`), else null.
7. `is_note`: true when the fact is itself inside a note section, else false.
8. `note`: use when this fact belongs to data presented inside a note section; else null.
9. `note_reference`: use when this fact points/references another note; else "".
10. `currency`: infer from page/header context (for example "ืฉืงืืื ืืืฉืื" -> "ILS"), else null.
11. `scale`: 1 unless page/header indicates thousands or millions.
12. `value_type`: "amount" unless the fact is a percentage ("%").
13. `date`: output only `YYYY` or `YYYY-MM-DD`. Convert dotted dates (`D.M.YYYY` / `DD.MM.YYYY`) to `YYYY-MM-DD` using day-first parsing.
14. `meta.type`: use "profits" for "ืืืืืช ืขื ืืคืขืืืืืืช"; otherwise choose the best enum value.
15. No duplicate facts. Order `facts` top-to-bottom; within each row use right-to-left for Hebrew/RTL pages and left-to-right for English/LTR pages (fallback RTL if uncertain).
16. Output UTF-8 Hebrew directly (do not escape to unicode sequences).
Path hierarchy rule:
1. Build `path` with horizontal-axis hierarchy first (row-side structure: group -> subgroup -> line item).
2. Then append vertical-axis hierarchy only when it adds business semantics not already represented by dedicated fields.
3. Do not encode period/currency/scale/value-format in `path` when already represented by `date`/`currency`/`scale`/`value_type`.
4. Keep labels exactly as shown. Do not invent levels.
| {"meta":{"entity_name":"ืืืจื ืื - ืืืืืื ืืืงืืืืช ืืืื ืื, ืืชื ืืขื ืืงืืืืฆืืช","page_num":"5","type":"profits","title":"ืืืืืช ืขื ืืคืขืืืืืืช"},"facts":[{"value":"47121","comment":null,"is_note":false,"note":null,"note_reference":"15","date":"2021-09-30","path":["ืืืืืจ ืืคืขืืืืืืช","ืืื ืกืืช ืืกืืืื ืืื"],"currency":"ILS","scale":1000,"value_type":"amount","bbox":[298,289,37,17]},{"value":"47463","comment":null,"is_note":false,"note":null,"note_reference":"15","date":"2020-09-30","path":["ืืืืืจ ืืคืขืืืืืืช","ืืื ืกืืช ืืกืืืื ืืื"],"currency":"ILS","scale":1000,"value_type":"amount","bbox":[157,290,39,17]},{"value":"75887","comment":"ืืืื ืืื ืกืืช (ืืืฆืืืช) ืืชืงืืืืช (ืื ืืชื ืืช) ืืฉืืจืืช ืืืืจืื ืืืฉืจื ืืืื ืื.","is_note":false,"note":null,"note_reference":"16","date":"2021-09-30","path":["ืืืืืจ ืืคืขืืืืืืช","ืืงืฆืืืช ืืืฉืจื ืืืื ืื ืืฉืืืืฉ ืืคืขืืืืช ืืืจืื (ื)"],"currency":"ILS","scale":1000,"value_type":"amount","bbox":[298,308,39,17]},{"value":"76814","comment":"ืืืื ืืื ืกืืช (ืืืฆืืืช) ืืชืงืืืืช (ืื ืืชื ืืช) ืืฉืืจืืช ืืืืจืื ืืืฉืจื ืืืื ืื.","is_note":false,"note":null,"note_reference":"16","date":"2020-09-30","path":["ืืืืืจ ืืคืขืืืืืืช","ืืงืฆืืืช ืืืฉืจื ืืืื ืื ืืฉืืืืฉ ืืคืขืืืืช ืืืจืื (ื)"],"currency":"ILS","scale":1000,"value_type":"amount","bbox":[156,309,39,17]},{"value":"7213","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2021-09-30","path":["ืืืืืจ ืืคืขืืืืืืช","ืืงืฆืืืช ืืืจืืช ืืืฉืจืื ืืืฉืื"],"currency":"ILS","scale":1000,"value_type":"amount","bbox":[305,326,32,17]},{"value":"5289","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2020-09-30","path":["ืืืืืจ ืืคืขืืืืืืช","ืืงืฆืืืช ืืืจืืช ืืืฉืจืื ืืืฉืื"],"currency":"ILS","scale":1000,"value_type":"amount","bbox":[163,326,32,17]},{"value":"20081","comment":"ืืขืืืชื ืื ืงืืืื ืชืจืืื ืืืฉืืช ืืืื ืืช ืืจื ืืืฉืืขืืชื ืืกืขืืฃ 36ืืณ ืืืืง ืืขืืืชืืช.","is_note":false,"note":null,"note_reference":"17","date":"2021-09-30","path":["ืืืืืจ ืืคืขืืืืืืช","ืชืจืืืืช ืืืงืฆืืืช (ื)"],"currency":"ILS","scale":1000,"value_type":"amount","bbox":[298,343,38,17]},{"value":"19336","comment":"ืืขืืืชื ืื ืงืืืื ืชืจืืื ืืืฉืืช ืืืื ืืช ืืจื ืืืฉืืขืืชื ืืกืขืืฃ 36ืืณ ืืืืง ืืขืืืชืืช.","is_note":false,"note":null,"note_reference":"17","date":"2020-09-30","path":["ืืืืืจ ืืคืขืืืืืืช","ืชืจืืืืช ืืืงืฆืืืช (ื)"],"currency":"ILS","scale":1000,"value_type":"amount","bbox":[156,344,39,17]},{"value":"2288","comment":null,"is_note":false,"note":null,"note_reference":"18","date":"2021-09-30","path":["ืืืืืจ ืืคืขืืืืืืช","ืืื ืกืืช ืฉืื ืืช"],"currency":"ILS","scale":1000,"value_type":"amount","bbox":[304,361,32,17]},{"value":"2511","comment":null,"is_note":false,"note":null,"note_reference":"18","date":"2020-09-30","path":["ืืืืืจ ืืคืขืืืืืืช","ืืื ืกืืช ืฉืื ืืช"],"currency":"ILS","scale":1000,"value_type":"amount","bbox":[163,362,32,17]},{"value":"152590","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2021-09-30","path":["ืืืืืจ ืืคืขืืืืืืช","ืกืืดื"],"currency":"ILS","scale":1000,"value_type":"amount","bbox":[292,394,45,17]},{"value":"151413","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2020-09-30","path":["ืืืืืจ ืืคืขืืืืืืช","ืกืืดื"],"currency":"ILS","scale":1000,"value_type":"amount","bbox":[151,394,44,17]},{"value":"130782","comment":"ืืืื ืืื ืกืืช (ืืืฆืืืช) ืืชืงืืืืช (ืื ืืชื ืืช) ืืฉืืจืืช ืืืืจืื ืืืฉืจื ืืืื ืื.","is_note":false,"note":null,"note_reference":"19","date":"2021-09-30","path":["ืขืืืช ืืคืขืืืืืืช","ืืืจืื, ืืืงืจ ืืฉืืจืืชื ืขืืจ (ื)"],"currency":"ILS","scale":1000,"value_type":"amount","bbox":[292,460,45,17]},{"value":"129337","comment":"ืืืื ืืื ืกืืช (ืืืฆืืืช) ืืชืงืืืืช (ืื ืืชื ืืช) ืืฉืืจืืช ืืืืจืื ืืืฉืจื ืืืื ืื.","is_note":false,"note":null,"note_reference":"19","date":"2020-09-30","path":["ืขืืืช ืืคืขืืืืืืช","ืืืจืื, ืืืงืจ ืืฉืืจืืชื ืขืืจ (ื)"],"currency":"ILS","scale":1000,"value_type":"amount","bbox":[150,460,45,17]},{"value":"7765","comment":null,"is_note":false,"note":null,"note_reference":"20","date":"2021-09-30","path":["ืขืืืช ืืคืขืืืืืืช","ืฉืืจืืชืื ืืืืืืช ืืกืืืื ืืื"],"currency":"ILS","scale":1000,"value_type":"amount","bbox":[304,477,32,17]},{"value":"8542","comment":null,"is_note":false,"note":null,"note_reference":"20","date":"2020-09-30","path":["ืขืืืช ืืคืขืืืืืืช","ืฉืืจืืชืื ืืืืืืช ืืกืืืื ืืื"],"currency":"ILS","scale":1000,"value_type":"amount","bbox":[162,478,33,17]},{"value":"138547","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2021-09-30","path":["ืขืืืช ืืคืขืืืืืืช"],"currency":"ILS","scale":1000,"value_type":"amount","bbox":[292,509,45,17]},{"value":"137879","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2020-09-30","path":["ืขืืืช ืืคืขืืืืืืช"],"currency":"ILS","scale":1000,"value_type":"amount","bbox":[151,510,44,17]},{"value":"14043","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2021-09-30","path":["ืืื ืกืืช ื ืื ืืคืขืืืืืืช"],"currency":"ILS","scale":1000,"value_type":"amount","bbox":[298,550,39,17]},{"value":"13534","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2020-09-30","path":["ืืื ืกืืช ื ืื ืืคืขืืืืืืช"],"currency":"ILS","scale":1000,"value_type":"amount","bbox":[156,551,39,17]},{"value":"7098","comment":null,"is_note":false,"note":null,"note_reference":"21","date":"2021-09-30","path":["ืืืฆืืืช ืื ืืื ืืืืืืืช"],"currency":"ILS","scale":1000,"value_type":"amount","bbox":[304,581,32,17]},{"value":"6427","comment":null,"is_note":false,"note":null,"note_reference":"21","date":"2020-09-30","path":["ืืืฆืืืช ืื ืืื ืืืืืืืช"],"currency":"ILS","scale":1000,"value_type":"amount","bbox":[162,581,33,17]},{"value":"2356","comment":null,"is_note":false,"note":null,"note_reference":"22","date":"2021-09-30","path":["ืืืฆืืืช ืคืจืกืื ืืฉืืืืง"],"currency":"ILS","scale":1000,"value_type":"amount","bbox":[304,597,32,17]},{"value":"2371","comment":null,"is_note":false,"note":null,"note_reference":"22","date":"2020-09-30","path":["ืืืฆืืืช ืคืจืกืื ืืฉืืืืง"],"currency":"ILS","scale":1000,"value_type":"amount","bbox":[163,598,32,17]},{"value":"4589","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2021-09-30","path":["ืืื ืกืืช ื ืื ืืคื ื ืืืืื ืืืืจืืช"],"currency":"ILS","scale":1000,"value_type":"amount","bbox":[304,630,43,17]},{"value":"4736","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2020-09-30","path":["ืืื ืกืืช ื ืื ืืคื ื ืืืืื ืืืืจืืช"],"currency":"ILS","scale":1000,"value_type":"amount","bbox":[163,631,32,17]},{"value":"1274","comment":null,"is_note":false,"note":null,"note_reference":"23","date":"2021-09-30","path":["ืืื ืกืืช (ืืืฆืืืช) ืืืืื, ื ืื"],"currency":"ILS","scale":1000,"value_type":"amount","bbox":[308,663,36,17]},{"value":"(561)","comment":null,"is_note":false,"note":null,"note_reference":"23","date":"2020-09-30","path":["ืืื ืกืืช (ืืืฆืืืช) ืืืืื, ื ืื"],"currency":"ILS","scale":1000,"value_type":"amount","bbox":[160,664,36,17]},{"value":"5863","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2021-09-30","path":["ืขืืืฃ ืืฉื ื"],"currency":"ILS","scale":1000,"value_type":"amount","bbox":[310,696,32,17]},{"value":"4175","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2020-09-30","path":["ืขืืืฃ ืืฉื ื"],"currency":"ILS","scale":1000,"value_type":"amount","bbox":[163,697,32,17]}]} | |
You are a precise financial statement extraction system. Return only valid JSON that matches the required schema. | You are extracting financial-statement annotations from a single page image into the exact Pydantic schema `PageExtraction`.
Return ONLY valid JSON.
Do NOT return markdown, code fences, comments, prose, or extra keys.
Top-level schema (exact keys only):
{
"meta": {
"entity_name": "<string or null>",
"page_num": "<string or null>",
"type": "balance_sheet|income_statement|cash_flow|notes|contents_page|title|declaration|profits|other",
"title": "<string or null>"
},
"facts": [
{
"bbox": { "x": <number>, "y": <number>, "w": <number>, "h": <number> },
"value": "<string>",
"comment": "<string or null>",
"is_note": <true|false>,
"note": "<string or null>",
"note_reference": "<string>",
"date": "<string or null>",
"path": ["<string>", "..."],
"currency": "ILS|USD|EUR|GBP|null",
"scale": 1|1000|1000000|null,
"value_type": "amount|%|null"
}
]
}
Type/validation rules (must match schema):
1. `meta` and `facts` are required.
2. `note_reference` is required string. Use "" when missing.
3. `path` is required list of strings (use [] when unknown, never null).
4. `is_note` must be boolean (never null and never "true"/"false" strings).
5. `date` must be `YYYY` or `YYYY-MM-DD` when provided.
6. `value` rules:
- If the value is a percentage, include `%` (for example `12%`, `12.5%`).
- If not a percentage, output only canonical numeric text: `Num`, `Num.Num`, `(Num)`, or `(Num.Num)`.
- For non-`%` values remove commas, spaces, currency signs/codes, and use parentheses for negatives (never leading `-`).
7. Use JSON null literal for missing optional values (never "null" string).
8. Do not include any keys not listed above.
Extraction rules:
1. Extract all visible numeric/table facts, including negatives in parentheses and totals.
2. If source is a dash placeholder (`-`, `โ`, `โ`), still extract the fact but set `value` to empty string `""`.
3. For non-`%` values, normalize `value` to canonical numeric shape only (`Num`, `Num.Num`, `(Num)`, `(Num.Num)`).
4. For `%` values, keep `%` in `value`.
5. `bbox` must tightly cover the value text only, in pixel coordinates of the original image.
6. `comment`: textual qualifier tied to the specific fact (for example `*without debt insurance`), else null.
7. `is_note`: true when the fact is itself inside a note section, else false.
8. `note`: use when this fact belongs to data presented inside a note section; else null.
9. `note_reference`: use when this fact points/references another note; else "".
10. `currency`: infer from page/header context (for example "ืฉืงืืื ืืืฉืื" -> "ILS"), else null.
11. `scale`: 1 unless page/header indicates thousands or millions.
12. `value_type`: "amount" unless the fact is a percentage ("%").
13. `date`: output only `YYYY` or `YYYY-MM-DD`. Convert dotted dates (`D.M.YYYY` / `DD.MM.YYYY`) to `YYYY-MM-DD` using day-first parsing.
14. `meta.type`: use "profits" for "ืืืืืช ืขื ืืคืขืืืืืืช"; otherwise choose the best enum value.
15. No duplicate facts. Order `facts` top-to-bottom; within each row use right-to-left for Hebrew/RTL pages and left-to-right for English/LTR pages (fallback RTL if uncertain).
16. Output UTF-8 Hebrew directly (do not escape to unicode sequences).
Path hierarchy rule:
1. Build `path` with horizontal-axis hierarchy first (row-side structure: group -> subgroup -> line item).
2. Then append vertical-axis hierarchy only when it adds business semantics not already represented by dedicated fields.
3. Do not encode period/currency/scale/value-format in `path` when already represented by `date`/`currency`/`scale`/`value_type`.
4. Keep labels exactly as shown. Do not invent levels.
| {"meta":{"entity_name":"ืืืจื ืื - ืืืืืื ืืืงืืืืช ืืืื ืื, ืืชื ืืขื ืืงืืืืฆืืช","page_num":"6","type":"profits","title":"ืืื ืขื ืืฉืื ืืืื ืื ืืกืื ื ืื"},"facts":[{"value":"(4887)","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2020-10-01","path":["ืืชืจื ืืืื 1 ืืืืงืืืืจ, 2020","ื ืืกืื ื ืื ืฉืื ืงืืืืช ืืืืืื ืืืืื (ืืืจืขืื ืืฆืืืจ ืืคืขืืืืืืช)","ืืฉืืืฉ ืืคืขืืืืืืช"],"currency":"ILS","scale":1000,"value_type":"amount","bbox":[492,353,47,18]},{"value":"44141","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2020-10-01","path":["ืืชืจื ืืืื 1 ืืืืงืืืืจ, 2020","ื ืืกืื ื ืื ืฉืื ืงืืืืช ืืืืืื ืืืืื (ืืืจืขืื ืืฆืืืจ ืืคืขืืืืืืช)","ืฉืฉืืืฉื ืืจืืืฉ ืงืืืข ืื ืืกืื ืืืชื ืืืืฉืืื"],"currency":"ILS","scale":1000,"value_type":"amount","bbox":[398,353,41,18]},{"value":"5164","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2020-10-01","path":["ืืชืจื ืืืื 1 ืืืืงืืืืจ, 2020","ื ืืกืื ื ืื ืฉืงืืืืช ืืืืืื ืืืืื","ืืขืืช ืืืคื ืืื ื"],"currency":"ILS","scale":1000,"value_type":"amount","bbox":[314,353,37,18]},{"value":"135","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2020-10-01","path":["ืืชืจื ืืืื 1 ืืืืงืืืืจ, 2020","ื ืืกืื ื ืื ืฉืงืืืืช ืืืืืื ืืืืื","ืืขืืช ืืืคื ืงืืืข"],"currency":"ILS","scale":1000,"value_type":"amount","bbox":[240,353,28,18]},{"value":"44553","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2020-10-01","path":["ืืชืจื ืืืื 1 ืืืืงืืืืจ, 2020","ืกื ืืื"],"currency":"ILS","scale":1000,"value_type":"amount","bbox":[135,353,42,18]},{"value":"5863","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2021-09-30","path":["ืฉืื ืืืื ืืืืื ืืฉื ื","ืขืืืฃ ืืฉื ื","ื ืืกืื ื ืื ืฉืื ืงืืืืช ืืืืืื ืืืืื (ืืืจืขืื ืืฆืืืจ ืืคืขืืืืืืช)","ืืฉืืืฉ ืืคืขืืืืืืช"],"currency":"ILS","scale":1000,"value_type":"amount","bbox":[497,408,39,18]},{"value":"","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2021-09-30","path":["ืฉืื ืืืื ืืืืื ืืฉื ื","ืขืืืฃ ืืฉื ื","ื ืืกืื ื ืื ืฉืื ืงืืืืช ืืืืืื ืืืืื (ืืืจืขืื ืืฆืืืจ ืืคืขืืืืืืช)","ืฉืฉืืืฉื ืืจืืืฉ ืงืืืข ืื ืืกืื ืืืชื ืืืืฉืืื"],"currency":"ILS","scale":1000,"value_type":"amount","bbox":[429,408,11,18]},{"value":"","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2021-09-30","path":["ืฉืื ืืืื ืืืืื ืืฉื ื","ืขืืืฃ ืืฉื ื","ื ืืกืื ื ืื ืฉืงืืืืช ืืืืืื ืืืืื","ืืขืืช ืืืคื ืืื ื"],"currency":"ILS","scale":1000,"value_type":"amount","bbox":[341,406,12,13]},{"value":"","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2021-09-30","path":["ืฉืื ืืืื ืืืืื ืืฉื ื","ืขืืืฃ ืืฉื ื","ื ืืกืื ื ืื ืฉืงืืืืช ืืืืืื ืืืืื","ืืขืืช ืืืคื ืงืืืข"],"currency":"ILS","scale":1000,"value_type":"amount","bbox":[256,408,16,11]},{"value":"5863","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2021-09-30","path":["ืฉืื ืืืื ืืืืื ืืฉื ื","ืขืืืฃ ืืฉื ื","ืกื ืืื"],"currency":"ILS","scale":1000,"value_type":"amount","bbox":[144,405,37,18]},{"value":"","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2021-09-30","path":["ืฉืื ืืืื ืืืืื ืืฉื ื","ืชืจืืืืช","ื ืืกืื ื ืื ืฉืื ืงืืืืช ืืืืืื ืืืืื (ืืืจืขืื ืืฆืืืจ ืืคืขืืืืืืช)","ืืฉืืืฉ ืืคืขืืืืืืช"],"currency":"ILS","scale":1000,"value_type":"amount","bbox":[525,425,9,8]},{"value":"","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2021-09-30","path":["ืฉืื ืืืื ืืืืื ืืฉื ื","ืชืจืืืืช","ื ืืกืื ื ืื ืฉืื ืงืืืืช ืืืืืื ืืืืื (ืืืจืขืื ืืฆืืืจ ืืคืขืืืืืืช)","ืฉืฉืืืฉื ืืจืืืฉ ืงืืืข ืื ืืกืื ืืืชื ืืืืฉืืื"],"currency":"ILS","scale":1000,"value_type":"amount","bbox":[429,423,12,18]},{"value":"3129","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2021-09-30","path":["ืฉืื ืืืื ืืืืื ืืฉื ื","ืชืจืืืืช","ื ืืกืื ื ืื ืฉืงืืืืช ืืืืืื ืืืืื","ืืขืืช ืืืคื ืืื ื"],"currency":"ILS","scale":1000,"value_type":"amount","bbox":[315,423,36,18]},{"value":"","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2021-09-30","path":["ืฉืื ืืืื ืืืืื ืืฉื ื","ืชืจืืืืช","ื ืืกืื ื ืื ืฉืงืืืืช ืืืืืื ืืืืื","ืืขืืช ืืืคื ืงืืืข"],"currency":"ILS","scale":1000,"value_type":"amount","bbox":[255,425,16,10]},{"value":"3129","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2021-09-30","path":["ืฉืื ืืืื ืืืืื ืืฉื ื","ืชืจืืืืช","ืกื ืืื"],"currency":"ILS","scale":1000,"value_type":"amount","bbox":[146,420,36,21]},{"value":"","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2021-09-30","path":["ืฉืื ืืืื ืืืืื ืืฉื ื","ืกืืืืื ืฉืฉืืืจืจื ืืืืืืืช","ื ืืกืื ื ืื ืฉืื ืงืืืืช ืืืืืื ืืืืื (ืืืจืขืื ืืฆืืืจ ืืคืขืืืืืืช)","ืืฉืืืฉ ืืคืขืืืืืืช"],"currency":"ILS","scale":1000,"value_type":"amount","bbox":[524,466,13,18]},{"value":"","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2021-09-30","path":["ืฉืื ืืืื ืืืืื ืืฉื ื","ืกืืืืื ืฉืฉืืืจืจื ืืืืืืืช","ื ืืกืื ื ืื ืฉืื ืงืืืืช ืืืืืื ืืืืื (ืืืจืขืื ืืฆืืืจ ืืคืขืืืืืืช)","ืฉืฉืืืฉื ืืจืืืฉ ืงืืืข ืื ืืกืื ืืืชื ืืืืฉืืื"],"currency":"ILS","scale":1000,"value_type":"amount","bbox":[429,466,12,18]},{"value":"(2978)","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2021-09-30","path":["ืฉืื ืืืื ืืืืื ืืฉื ื","ืกืืืืื ืฉืฉืืืจืจื ืืืืืืืช","ื ืืกืื ื ืื ืฉืงืืืืช ืืืืืื ืืืืื","ืืขืืช ืืืคื ืืื ื"],"currency":"ILS","scale":1000,"value_type":"amount","bbox":[311,466,46,18]},{"value":"(118)","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2021-09-30","path":["ืฉืื ืืืื ืืืืื ืืฉื ื","ืกืืืืื ืฉืฉืืืจืจื ืืืืืืืช","ื ืืกืื ื ืื ืฉืงืืืืช ืืืืืื ืืืืื","ืืขืืช ืืืคื ืงืืืข"],"currency":"ILS","scale":1000,"value_type":"amount","bbox":[236,466,39,18]},{"value":"(3096)","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2021-09-30","path":["ืฉืื ืืืื ืืืืื ืืฉื ื","ืกืืืืื ืฉืฉืืืจืจื ืืืืืืืช","ืกื ืืื"],"currency":"ILS","scale":1000,"value_type":"amount","bbox":[140,466,46,18]},{"value":"(1338)","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2021-09-30","path":["ืฉืื ืืืื ืืืืื ืืฉื ื","ืืขืืจืช ืคืขืืืืช ืืืขืืืชื","ื ืืกืื ื ืื ืฉืื ืงืืืืช ืืืืืื ืืืืื (ืืืจืขืื ืืฆืืืจ ืืคืขืืืืืืช)","ืืฉืืืฉ ืืคืขืืืืืืช"],"currency":"ILS","scale":1000,"value_type":"amount","bbox":[489,481,51,18]},{"value":"","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2021-09-30","path":["ืฉืื ืืืื ืืืืื ืืฉื ื","ืืขืืจืช ืคืขืืืืช ืืืขืืืชื","ื ืืกืื ื ืื ืฉืื ืงืืืืช ืืืืืื ืืืืื (ืืืจืขืื ืืฆืืืจ ืืคืขืืืืืืช)","ืฉืฉืืืฉื ืืจืืืฉ ืงืืืข ืื ืืกืื ืืืชื ืืืืฉืืื"],"currency":"ILS","scale":1000,"value_type":"amount","bbox":[429,483,12,18]},{"value":"","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2021-09-30","path":["ืฉืื ืืืื ืืืืื ืืฉื ื","ืืขืืจืช ืคืขืืืืช ืืืขืืืชื","ื ืืกืื ื ืื ืฉืงืืืืช ืืืืืื ืืืืื","ืืขืืช ืืืคื ืืื ื"],"currency":"ILS","scale":1000,"value_type":"amount","bbox":[344,483,12,18]},{"value":"","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2021-09-30","path":["ืฉืื ืืืื ืืืืื ืืฉื ื","ืืขืืจืช ืคืขืืืืช ืืืขืืืชื","ื ืืกืื ื ืื ืฉืงืืืืช ืืืืืื ืืืืื","ืืขืืช ืืืคื ืงืืืข"],"currency":"ILS","scale":1000,"value_type":"amount","bbox":[260,483,12,18]},{"value":"(1338)","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2021-09-30","path":["ืฉืื ืืืื ืืืืื ืืฉื ื","ืืขืืจืช ืคืขืืืืช ืืืขืืืชื","ืกื ืืื"],"currency":"ILS","scale":1000,"value_type":"amount","bbox":[135,483,51,18]},{"value":"(4857)","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2021-09-30","path":["ืืขืืจืช ืกืืืืื ืฉืื ืงืืืืช ืืืืืื ืืืืื","ืฉืฉืืืฉื ืืจืืืฉืช ืจืืืฉ ืงืืืข ืื ืืกืื ืืืชื ืืืืฉืืื","ื ืืกืื ื ืื ืฉืื ืงืืืืช ืืืืืื ืืืืื (ืืืจืขืื ืืฆืืืจ ืืคืขืืืืืืช)","ืืฉืืืฉ ืืคืขืืืืืืช"],"currency":"ILS","scale":1000,"value_type":"amount","bbox":[490,564,47,18]},{"value":"4857","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2021-09-30","path":["ืืขืืจืช ืกืืืืื ืฉืื ืงืืืืช ืืืืืื ืืืืื","ืฉืฉืืืฉื ืืจืืืฉืช ืจืืืฉ ืงืืืข ืื ืืกืื ืืืชื ืืืืฉืืื","ื ืืกืื ื ืื ืฉืื ืงืืืืช ืืืืืื ืืืืื (ืืืจืขืื ืืฆืืืจ ืืคืขืืืืืืช)","ืฉืฉืืืฉื ืืจืืืฉ ืงืืืข ืื ืืกืื ืืืชื ืืืืฉืืื"],"currency":"ILS","scale":1000,"value_type":"amount","bbox":[399,564,41,18]},{"value":"","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2021-09-30","path":["ืืขืืจืช ืกืืืืื ืฉืื ืงืืืืช ืืืืืื ืืืืื","ืฉืฉืืืฉื ืืจืืืฉืช ืจืืืฉ ืงืืืข ืื ืืกืื ืืืชื ืืืืฉืืื","ื ืืกืื ื ืื ืฉืงืืืืช ืืืืืื ืืืืื","ืืขืืช ืืืคื ืืื ื"],"currency":"ILS","scale":1000,"value_type":"amount","bbox":[347,563,8,14]},{"value":"","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2021-09-30","path":["ืืขืืจืช ืกืืืืื ืฉืื ืงืืืืช ืืืืืื ืืืืื","ืฉืฉืืืฉื ืืจืืืฉืช ืจืืืฉ ืงืืืข ืื ืืกืื ืืืชื ืืืืฉืืื","ื ืืกืื ื ืื ืฉืงืืืืช ืืืืืื ืืืืื","ืืขืืช ืืืคื ืงืืืข"],"currency":"ILS","scale":1000,"value_type":"amount","bbox":[262,568,7,8]},{"value":"","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2021-09-30","path":["ืืขืืจืช ืกืืืืื ืฉืื ืงืืืืช ืืืืืื ืืืืื","ืฉืฉืืืฉื ืืจืืืฉืช ืจืืืฉ ืงืืืข ืื ืืกืื ืืืชื ืืืืฉืืื","ืกื ืืื"],"currency":"ILS","scale":1000,"value_type":"amount","bbox":[171,566,15,12]},{"value":"1198","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2021-09-30","path":["ืืขืืจืช ืกืืืืื ืฉืื ืงืืืืช ืืืืืื ืืืืื","ืืคืืชืช ืืขื ืง ื ืืืฉืืช","ื ืืกืื ื ืื ืฉืื ืงืืืืช ืืืืืื ืืืืื (ืืืจืขืื ืืฆืืืจ ืืคืขืืืืืืช)","ืืฉืืืฉ ืืคืขืืืืืืช"],"currency":"ILS","scale":1000,"value_type":"amount","bbox":[495,581,38,16]},{"value":"(1198)","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2021-09-30","path":["ืืขืืจืช ืกืืืืื ืฉืื ืงืืืืช ืืืืืื ืืืืื","ืืคืืชืช ืืขื ืง ื ืืืฉืืช","ื ืืกืื ื ืื ืฉืื ืงืืืืช ืืืืืื ืืืืื (ืืืจืขืื ืืฆืืืจ ืืคืขืืืืืืช)","ืฉืฉืืืฉื ืืจืืืฉ ืงืืืข ืื ืืกืื ืืืชื ืืืืฉืืื"],"currency":"ILS","scale":1000,"value_type":"amount","bbox":[393,580,49,18]},{"value":"","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2021-09-30","path":["ืืขืืจืช ืกืืืืื ืฉืื ืงืืืืช ืืืืืื ืืืืื","ืืคืืชืช ืืขื ืง ื ืืืฉืืช","ื ืืกืื ื ืื ืฉืงืืืืช ืืืืืื ืืืืื","ืืขืืช ืืืคื ืืื ื"],"currency":"ILS","scale":1000,"value_type":"amount","bbox":[346,581,8,10]},{"value":"","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2021-09-30","path":["ืืขืืจืช ืกืืืืื ืฉืื ืงืืืืช ืืืืืื ืืืืื","ืืคืืชืช ืืขื ืง ื ืืืฉืืช","ื ืืกืื ื ืื ืฉืงืืืืช ืืืืืื ืืืืื","ืืขืืช ืืืคื ืงืืืข"],"currency":"ILS","scale":1000,"value_type":"amount","bbox":[262,582,6,9]},{"value":"","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2021-09-30","path":["ืืขืืจืช ืกืืืืื ืฉืื ืงืืืืช ืืืืืื ืืืืื","ืืคืืชืช ืืขื ืง ื ืืืฉืืช","ืกื ืืื"],"currency":"ILS","scale":1000,"value_type":"amount","bbox":[175,582,7,9]},{"value":"5412","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2021-09-30","path":["ืืขืืจืช ืกืืืืื ืฉืื ืงืืืืช ืืืืืื ืืืืื","ืกืืืืื ืฉืืืขืืจื ืืืืกืื ืืืฆืืืช ืคืืช","ื ืืกืื ื ืื ืฉืื ืงืืืืช ืืืืืื ืืืืื (ืืืจืขืื ืืฆืืืจ ืืคืขืืืืืืช)","ืืฉืืืฉ ืืคืขืืืืืืช"],"currency":"ILS","scale":1000,"value_type":"amount","bbox":[497,607,41,18]},{"value":"(5412)","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2021-09-30","path":["ืืขืืจืช ืกืืืืื ืฉืื ืงืืืืช ืืืืืื ืืืืื","ืกืืืืื ืฉืืืขืืจื ืืืืกืื ืืืฆืืืช ืคืืช","ื ืืกืื ื ืื ืฉืื ืงืืืืช ืืืืืื ืืืืื (ืืืจืขืื ืืฆืืืจ ืืคืขืืืืืืช)","ืฉืฉืืืฉื ืืจืืืฉ ืงืืืข ืื ืืกืื ืืืชื ืืืืฉืืื"],"currency":"ILS","scale":1000,"value_type":"amount","bbox":[390,607,48,18]},{"value":"","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2021-09-30","path":["ืืขืืจืช ืกืืืืื ืฉืื ืงืืืืช ืืืืืื ืืืืื","ืกืืืืื ืฉืืืขืืจื ืืืืกืื ืืืฆืืืช ืคืืช","ื ืืกืื ื ืื ืฉืงืืืืช ืืืืืื ืืืืื","ืืขืืช ืืืคื ืืื ื"],"currency":"ILS","scale":1000,"value_type":"amount","bbox":[346,610,7,18]},{"value":"","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2021-09-30","path":["ืืขืืจืช ืกืืืืื ืฉืื ืงืืืืช ืืืืืื ืืืืื","ืกืืืืื ืฉืืืขืืจื ืืืืกืื ืืืฆืืืช ืคืืช","ื ืืกืื ื ืื ืฉืงืืืืช ืืืืืื ืืืืื","ืืขืืช ืืืคื ืงืืืข"],"currency":"ILS","scale":1000,"value_type":"amount","bbox":[262,610,7,18]},{"value":"","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2021-09-30","path":["ืืขืืจืช ืกืืืืื ืฉืื ืงืืืืช ืืืืืื ืืืืื","ืกืืืืื ืฉืืืขืืจื ืืืืกืื ืืืฆืืืช ืคืืช","ืกื ืืื"],"currency":"ILS","scale":1000,"value_type":"amount","bbox":[175,607,7,18]},{"value":"1391","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2021-09-30","path":["ืืชืจื ืืืื 30 ืืกืคืืืืจ, 2021","ื ืืกืื ื ืื ืฉืื ืงืืืืช ืืืืืื ืืืืื (ืืืจืขืื ืืฆืืืจ ืืคืขืืืืืืช)","ืืฉืืืฉ ืืคืขืืืืืืช"],"currency":"ILS","scale":1000,"value_type":"amount","bbox":[498,655,37,18]},{"value":"42388","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2021-09-30","path":["ืืชืจื ืืืื 30 ืืกืคืืืืจ, 2021","ื ืืกืื ื ืื ืฉืื ืงืืืืช ืืืืืื ืืืืื (ืืืจืขืื ืืฆืืืจ ืืคืขืืืืืืช)","ืฉืฉืืืฉื ืืจืืืฉ ืงืืืข ืื ืืกืื ืืืชื ืืืืฉืืื"],"currency":"ILS","scale":1000,"value_type":"amount","bbox":[398,655,41,18]},{"value":"5315","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2021-09-30","path":["ืืชืจื ืืืื 30 ืืกืคืืืืจ, 2021","ื ืืกืื ื ืื ืฉืงืืืืช ืืืืืื ืืืืื","ืืขืืช ืืืคื ืืื ื"],"currency":"ILS","scale":1000,"value_type":"amount","bbox":[315,655,37,18]},{"value":"17","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2021-09-30","path":["ืืชืจื ืืืื 30 ืืกืคืืืืจ, 2021","ื ืืกืื ื ืื ืฉืงืืืืช ืืืืืื ืืืืื","ืืขืืช ืืืคื ืงืืืข"],"currency":"ILS","scale":1000,"value_type":"amount","bbox":[252,655,15,18]},{"value":"49111","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2021-09-30","path":["ืืชืจื ืืืื 30 ืืกืคืืืืจ, 2021","ืกื ืืื"],"currency":"ILS","scale":1000,"value_type":"amount","bbox":[136,655,42,18]}]} | |
You are a precise financial statement extraction system. Return only valid JSON that matches the required schema. | You are extracting financial-statement annotations from a single page image into the exact Pydantic schema `PageExtraction`.
Return ONLY valid JSON.
Do NOT return markdown, code fences, comments, prose, or extra keys.
Top-level schema (exact keys only):
{
"meta": {
"entity_name": "<string or null>",
"page_num": "<string or null>",
"type": "balance_sheet|income_statement|cash_flow|notes|contents_page|title|declaration|profits|other",
"title": "<string or null>"
},
"facts": [
{
"bbox": { "x": <number>, "y": <number>, "w": <number>, "h": <number> },
"value": "<string>",
"comment": "<string or null>",
"is_note": <true|false>,
"note": "<string or null>",
"note_reference": "<string>",
"date": "<string or null>",
"path": ["<string>", "..."],
"currency": "ILS|USD|EUR|GBP|null",
"scale": 1|1000|1000000|null,
"value_type": "amount|%|null"
}
]
}
Type/validation rules (must match schema):
1. `meta` and `facts` are required.
2. `note_reference` is required string. Use "" when missing.
3. `path` is required list of strings (use [] when unknown, never null).
4. `is_note` must be boolean (never null and never "true"/"false" strings).
5. `date` must be `YYYY` or `YYYY-MM-DD` when provided.
6. `value` rules:
- If the value is a percentage, include `%` (for example `12%`, `12.5%`).
- If not a percentage, output only canonical numeric text: `Num`, `Num.Num`, `(Num)`, or `(Num.Num)`.
- For non-`%` values remove commas, spaces, currency signs/codes, and use parentheses for negatives (never leading `-`).
7. Use JSON null literal for missing optional values (never "null" string).
8. Do not include any keys not listed above.
Extraction rules:
1. Extract all visible numeric/table facts, including negatives in parentheses and totals.
2. If source is a dash placeholder (`-`, `โ`, `โ`), still extract the fact but set `value` to empty string `""`.
3. For non-`%` values, normalize `value` to canonical numeric shape only (`Num`, `Num.Num`, `(Num)`, `(Num.Num)`).
4. For `%` values, keep `%` in `value`.
5. `bbox` must tightly cover the value text only, in pixel coordinates of the original image.
6. `comment`: textual qualifier tied to the specific fact (for example `*without debt insurance`), else null.
7. `is_note`: true when the fact is itself inside a note section, else false.
8. `note`: use when this fact belongs to data presented inside a note section; else null.
9. `note_reference`: use when this fact points/references another note; else "".
10. `currency`: infer from page/header context (for example "ืฉืงืืื ืืืฉืื" -> "ILS"), else null.
11. `scale`: 1 unless page/header indicates thousands or millions.
12. `value_type`: "amount" unless the fact is a percentage ("%").
13. `date`: output only `YYYY` or `YYYY-MM-DD`. Convert dotted dates (`D.M.YYYY` / `DD.MM.YYYY`) to `YYYY-MM-DD` using day-first parsing.
14. `meta.type`: use "profits" for "ืืืืืช ืขื ืืคืขืืืืืืช"; otherwise choose the best enum value.
15. No duplicate facts. Order `facts` top-to-bottom; within each row use right-to-left for Hebrew/RTL pages and left-to-right for English/LTR pages (fallback RTL if uncertain).
16. Output UTF-8 Hebrew directly (do not escape to unicode sequences).
Path hierarchy rule:
1. Build `path` with horizontal-axis hierarchy first (row-side structure: group -> subgroup -> line item).
2. Then append vertical-axis hierarchy only when it adds business semantics not already represented by dedicated fields.
3. Do not encode period/currency/scale/value-format in `path` when already represented by `date`/`currency`/`scale`/`value_type`.
4. Keep labels exactly as shown. Do not invent levels.
| {"meta":{"entity_name":"ืืืจื ืื - ืืืืืื ืืืงืืืืช ืืืื ืื, ืืชื ืืขื ืืงืืืืฆืืช","page_num":"7","type":"profits","title":"ืืื ืขื ืืฉืื ืืืื ืื ืืกืื ื ืื"},"facts":[{"value":"(10152)","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2019-10-01","path":["ืืชืจื ืืืื 1 ืืืืงืืืืจ, 2019","ื ืืกืื ื ืื ืฉืื ืงืืืืช ืืืืืื ืืืืื (ืืืจืขืื ืืฆืืืจ ืืคืขืืืืืืช)","ืืฉืืืืฉ ืืคืขืืืืืืช"],"currency":"ILS","scale":1000,"value_type":"amount","bbox":[485,350,49,19]},{"value":"45866","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2019-10-01","path":["ืืชืจื ืืืื 1 ืืืืงืืืืจ, 2019","ื ืืกืื ื ืื ืฉืื ืงืืืืช ืืืืืื ืืืืื (ืืืจืขืื ืืฆืืืจ ืืคืขืืืืืืช)","ืฉืฉืืืฉื ืืจืืืฉืช ืจืืืฉ ืงืืืข ืื ืืกืื ืืืชื ืืืืฉืืื"],"currency":"ILS","scale":1000,"value_type":"amount","bbox":[397,353,40,16]},{"value":"5381","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2019-10-01","path":["ืืชืจื ืืืื 1 ืืืืงืืืืจ, 2019","ื ืืกืื ื ืื ืฉืงืืืืช ืืืืืื ืืืืื","ืืขืืช ืืืคื ืืื ื"],"currency":"ILS","scale":1000,"value_type":"amount","bbox":[314,353,32,16]},{"value":"145","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2019-10-01","path":["ืืชืจื ืืืื 1 ืืืืงืืืืจ, 2019","ื ืืกืื ื ืื ืฉืงืืืืช ืืืืืื ืืืืื","ืืขืืช ืืืคื ืงืืืข"],"currency":"ILS","scale":1000,"value_type":"amount","bbox":[241,355,22,15]},{"value":"41240","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2019-10-01","path":["ืืชืจื ืืืื 1 ืืืืงืืืืจ, 2019","ืกื ืืื"],"currency":"ILS","scale":1000,"value_type":"amount","bbox":[136,353,38,16]},{"value":"4175","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2020-09-30","path":["ืฉืื ืืืื ืืืืื ืืฉื ื","ืขืืืฃ ืืฉื ื","ื ืืกืื ื ืื ืฉืื ืงืืืืช ืืืืืื ืืืืื (ืืืจืขืื ืืฆืืืจ ืืคืขืืืืืืช)","ืืฉืืืืฉ ืืคืขืืืืืืช"],"currency":"ILS","scale":1000,"value_type":"amount","bbox":[500,405,40,17]},{"value":"","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2020-09-30","path":["ืฉืื ืืืื ืืืืื ืืฉื ื","ืขืืืฃ ืืฉื ื","ื ืืกืื ื ืื ืฉืื ืงืืืืช ืืืืืื ืืืืื (ืืืจืขืื ืืฆืืืจ ืืคืขืืืืืืช)","ืฉืฉืืืฉื ืืจืืืฉืช ืจืืืฉ ืงืืืข ืื ืืกืื ืืืชื ืืืืฉืืื"],"currency":"ILS","scale":1000,"value_type":"amount","bbox":[429,406,13,10]},{"value":"","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2020-09-30","path":["ืฉืื ืืืื ืืืืื ืืฉื ื","ืขืืืฃ ืืฉื ื","ื ืืกืื ื ืื ืฉืงืืืืช ืืืืืื ืืืืื","ืืขืืช ืืืคื ืืื ื"],"currency":"ILS","scale":1000,"value_type":"amount","bbox":[341,406,12,12]},{"value":"","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2020-09-30","path":["ืฉืื ืืืื ืืืืื ืืฉื ื","ืขืืืฃ ืืฉื ื","ื ืืกืื ื ืื ืฉืงืืืืช ืืืืืื ืืืืื","ืืขืืช ืืืคื ืงืืืข"],"currency":"ILS","scale":1000,"value_type":"amount","bbox":[260,407,10,10]},{"value":"4175","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2020-09-30","path":["ืฉืื ืืืื ืืืืื ืืฉื ื","ืขืืืฃ ืืฉื ื","ืกื ืืื"],"currency":"ILS","scale":1000,"value_type":"amount","bbox":[142,403,39,19]},{"value":"","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2020-09-30","path":["ืฉืื ืืืื ืืืืื ืืฉื ื","ืชืจืืืืช","ื ืืกืื ื ืื ืฉืื ืงืืืืช ืืืืืื ืืืืื (ืืืจืขืื ืืฆืืืจ ืืคืขืืืืืืช)","ืืฉืืืืฉ ืืคืขืืืืืืช"],"currency":"ILS","scale":1000,"value_type":"amount","bbox":[525,422,14,9]},{"value":"","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2020-09-30","path":["ืฉืื ืืืื ืืืืื ืืฉื ื","ืชืจืืืืช","ื ืืกืื ื ืื ืฉืื ืงืืืืช ืืืืืื ืืืืื (ืืืจืขืื ืืฆืืืจ ืืคืขืืืืืืช)","ืฉืฉืืืฉื ืืจืืืฉืช ืจืืืฉ ืงืืืข ืื ืืกืื ืืืชื ืืืืฉืืื"],"currency":"ILS","scale":1000,"value_type":"amount","bbox":[429,421,11,10]},{"value":"3520","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2020-09-30","path":["ืฉืื ืืืื ืืืืื ืืฉื ื","ืชืจืืืืช","ื ืืกืื ื ืื ืฉืงืืืืช ืืืืืื ืืืืื","ืืขืืช ืืืคื ืืื ื"],"currency":"ILS","scale":1000,"value_type":"amount","bbox":[313,420,39,21]},{"value":"","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2020-09-30","path":["ืฉืื ืืืื ืืืืื ืืฉื ื","ืชืจืืืืช","ื ืืกืื ื ืื ืฉืงืืืืช ืืืืืื ืืืืื","ืืขืืช ืืืคื ืงืืืข"],"currency":"ILS","scale":1000,"value_type":"amount","bbox":[261,424,10,8]},{"value":"3520","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2020-09-30","path":["ืฉืื ืืืื ืืืืื ืืฉื ื","ืชืจืืืืช","ืกื ืืื"],"currency":"ILS","scale":1000,"value_type":"amount","bbox":[142,422,39,19]},{"value":"","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2020-09-30","path":["ืฉืื ืืืื ืืืืื ืืฉื ื","ืกืืืืื ืฉืฉืืืจืจื ืืืืืืืช","ื ืืกืื ื ืื ืฉืื ืงืืืืช ืืืืืื ืืืืื (ืืืจืขืื ืืฆืืืจ ืืคืขืืืืืืช)","ืืฉืืืืฉ ืืคืขืืืืืืช"],"currency":"ILS","scale":1000,"value_type":"amount","bbox":[516,468,28,10]},{"value":"","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2020-09-30","path":["ืฉืื ืืืื ืืืืื ืืฉื ื","ืกืืืืื ืฉืฉืืืจืจื ืืืืืืืช","ื ืืกืื ื ืื ืฉืื ืงืืืืช ืืืืืื ืืืืื (ืืืจืขืื ืืฆืืืจ ืืคืขืืืืืืช)","ืฉืฉืืืฉื ืืจืืืฉืช ืจืืืฉ ืงืืืข ืื ืืกืื ืืืชื ืืืืฉืืื"],"currency":"ILS","scale":1000,"value_type":"amount","bbox":[429,467,11,10]},{"value":"(3737)","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2020-09-30","path":["ืฉืื ืืืื ืืืืื ืืฉื ื","ืกืืืืื ืฉืฉืืืจืจื ืืืืืืืช","ื ืืกืื ื ืื ืฉืงืืืืช ืืืืืื ืืืืื","ืืขืืช ืืืคื ืืื ื"],"currency":"ILS","scale":1000,"value_type":"amount","bbox":[311,464,43,19]},{"value":"(10)","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2020-09-30","path":["ืฉืื ืืืื ืืืืื ืืฉื ื","ืกืืืืื ืฉืฉืืืจืจื ืืืืืืืช","ื ืืกืื ื ืื ืฉืงืืืืช ืืืืืื ืืืืื","ืืขืืช ืืืคื ืงืืืข"],"currency":"ILS","scale":1000,"value_type":"amount","bbox":[242,464,26,18]},{"value":"(3747)","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2020-09-30","path":["ืฉืื ืืืื ืืืืื ืืฉื ื","ืกืืืืื ืฉืฉืืืจืจื ืืืืืืืช","ืกื ืืื"],"currency":"ILS","scale":1000,"value_type":"amount","bbox":[137,464,44,18]},{"value":"(635)","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2020-09-30","path":["ืฉืื ืืืื ืืืืื ืืฉื ื","ืกืืืืื ืฉืฉืืืจืจื ืืืืืืืช","ืฉืื ืื ืืงืจื ืืช ืืคืขืืืืช ืฉืืืคืช","ื ืืกืื ื ืื ืฉืื ืงืืืืช ืืืืืื ืืืืื (ืืืจืขืื ืืฆืืืจ ืืคืขืืืืืืช)","ืืฉืืืืฉ ืืคืขืืืืืืช"],"currency":"ILS","scale":1000,"value_type":"amount","bbox":[501,478,33,19]},{"value":"","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2020-09-30","path":["ืฉืื ืืืื ืืืืื ืืฉื ื","ืกืืืืื ืฉืฉืืืจืจื ืืืืืืืช","ืฉืื ืื ืืงืจื ืืช ืืคืขืืืืช ืฉืืืคืช","ื ืืกืื ื ืื ืฉืื ืงืืืืช ืืืืืื ืืืืื (ืืืจืขืื ืืฆืืืจ ืืคืขืืืืืืช)","ืฉืฉืืืฉื ืืจืืืฉืช ืจืืืฉ ืงืืืข ืื ืืกืื ืืืชื ืืืืฉืืื"],"currency":"ILS","scale":1000,"value_type":"amount","bbox":[429,483,11,10]},{"value":"","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2020-09-30","path":["ืฉืื ืืืื ืืืืื ืืฉื ื","ืกืืืืื ืฉืฉืืืจืจื ืืืืืืืช","ืฉืื ืื ืืงืจื ืืช ืืคืขืืืืช ืฉืืืคืช","ื ืืกืื ื ืื ืฉืงืืืืช ืืืืืื ืืืืื","ืืขืืช ืืืคื ืืื ื"],"currency":"ILS","scale":1000,"value_type":"amount","bbox":[339,481,18,11]},{"value":"","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2020-09-30","path":["ืฉืื ืืืื ืืืืื ืืฉื ื","ืกืืืืื ืฉืฉืืืจืจื ืืืืืืืช","ืฉืื ืื ืืงืจื ืืช ืืคืขืืืืช ืฉืืืคืช","ื ืืกืื ื ืื ืฉืงืืืืช ืืืืืื ืืืืื","ืืขืืช ืืืคื ืงืืืข"],"currency":"ILS","scale":1000,"value_type":"amount","bbox":[261,484,8,10]},{"value":"(635)","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2020-09-30","path":["ืฉืื ืืืื ืืืืื ืืฉื ื","ืกืืืืื ืฉืฉืืืจืจื ืืืืืืืช","ืฉืื ืื ืืงืจื ืืช ืืคืขืืืืช ืฉืืืคืช","ืกื ืืื"],"currency":"ILS","scale":1000,"value_type":"amount","bbox":[140,480,45,17]},{"value":"(3815)","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2020-09-30","path":["ืฉืื ืืืื ืืืืื ืืฉื ื","ืืขืืจืช ืกืืืืื ืฉืื ืงืืืืช ืืืืืื ืืืืื","ืฉืฉืืืฉื ืืจืืืฉืช ืจืืืฉ ืงืืืข ืื ืืกืื ืืืชื ืืืืฉืืื","ื ืืกืื ื ืื ืฉืื ืงืืืืช ืืืืืื ืืืืื (ืืืจืขืื ืืฆืืืจ ืืคืขืืืืืืช)","ืืฉืืืืฉ ืืคืขืืืืืืช"],"currency":"ILS","scale":1000,"value_type":"amount","bbox":[491,562,43,20]},{"value":"3815","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2020-09-30","path":["ืฉืื ืืืื ืืืืื ืืฉื ื","ืืขืืจืช ืกืืืืื ืฉืื ืงืืืืช ืืืืืื ืืืืื","ืฉืฉืืืฉื ืืจืืืฉืช ืจืืืฉ ืงืืืข ืื ืืกืื ืืืชื ืืืืฉืืื","ื ืืกืื ื ืื ืฉืื ืงืืืืช ืืืืืื ืืืืื (ืืืจืขืื ืืฆืืืจ ืืคืขืืืืืืช)","ืฉืฉืืืฉื ืืจืืืฉืช ืจืืืฉ ืงืืืข ืื ืืกืื ืืืชื ืืืืฉืืื"],"currency":"ILS","scale":1000,"value_type":"amount","bbox":[400,563,37,18]},{"value":"","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2020-09-30","path":["ืฉืื ืืืื ืืืืื ืืฉื ื","ืืขืืจืช ืกืืืืื ืฉืื ืงืืืืช ืืืืืื ืืืืื","ืฉืฉืืืฉื ืืจืืืฉืช ืจืืืฉ ืงืืืข ืื ืืกืื ืืืชื ืืืืฉืืื","ื ืืกืื ื ืื ืฉืงืืืืช ืืืืืื ืืืืื","ืืขืืช ืืืคื ืืื ื"],"currency":"ILS","scale":1000,"value_type":"amount","bbox":[338,567,18,6]},{"value":"","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2020-09-30","path":["ืฉืื ืืืื ืืืืื ืืฉื ื","ืืขืืจืช ืกืืืืื ืฉืื ืงืืืืช ืืืืืื ืืืืื","ืฉืฉืืืฉื ืืจืืืฉืช ืจืืืฉ ืงืืืข ืื ืืกืื ืืืชื ืืืืฉืืื","ื ืืกืื ื ืื ืฉืงืืืืช ืืืืืื ืืืืื","ืืขืืช ืืืคื ืงืืืข"],"currency":"ILS","scale":1000,"value_type":"amount","bbox":[255,567,18,6]},{"value":"","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2020-09-30","path":["ืฉืื ืืืื ืืืืื ืืฉื ื","ืืขืืจืช ืกืืืืื ืฉืื ืงืืืืช ืืืืืื ืืืืื","ืฉืฉืืืฉื ืืจืืืฉืช ืจืืืฉ ืงืืืข ืื ืืกืื ืืืชื ืืืืฉืืื","ืกื ืืื"],"currency":"ILS","scale":1000,"value_type":"amount","bbox":[168,567,18,6]},{"value":"5540","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2020-09-30","path":["ืฉืื ืืืื ืืืืื ืืฉื ื","ืืขืืจืช ืกืืืืื ืฉืื ืงืืืืช ืืืืืื ืืืืื","ืกืืืืื ืฉืืืขืืจื ืืืืกืื ืืืฆืืืช ืคืืช","ื ืืกืื ื ืื ืฉืื ืงืืืืช ืืืืืื ืืืืื (ืืืจืขืื ืืฆืืืจ ืืคืขืืืืืืช)","ืืฉืืืืฉ ืืคืขืืืืืืช"],"currency":"ILS","scale":1000,"value_type":"amount","bbox":[496,591,37,19]},{"value":"(5540)","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2020-09-30","path":["ืฉืื ืืืื ืืืืื ืืฉื ื","ืืขืืจืช ืกืืืืื ืฉืื ืงืืืืช ืืืืืื ืืืืื","ืกืืืืื ืฉืืืขืืจื ืืืืกืื ืืืฆืืืช ืคืืช","ื ืืกืื ื ืื ืฉืื ืงืืืืช ืืืืืื ืืืืื (ืืืจืขืื ืืฆืืืจ ืืคืขืืืืืืช)","ืฉืฉืืืฉื ืืจืืืฉืช ืจืืืฉ ืงืืืข ืื ืืกืื ืืืชื ืืืืฉืืื"],"currency":"ILS","scale":1000,"value_type":"amount","bbox":[394,591,44,20]},{"value":"","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2020-09-30","path":["ืฉืื ืืืื ืืืืื ืืฉื ื","ืืขืืจืช ืกืืืืื ืฉืื ืงืืืืช ืืืืืื ืืืืื","ืกืืืืื ืฉืืืขืืจื ืืืืกืื ืืืฆืืืช ืคืืช","ื ืืกืื ื ืื ืฉืงืืืืช ืืืืืื ืืืืื","ืืขืืช ืืืคื ืืื ื"],"currency":"ILS","scale":1000,"value_type":"amount","bbox":[338,598,18,6]},{"value":"","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2020-09-30","path":["ืฉืื ืืืื ืืืืื ืืฉื ื","ืืขืืจืช ืกืืืืื ืฉืื ืงืืืืช ืืืืืื ืืืืื","ืกืืืืื ืฉืืืขืืจื ืืืืกืื ืืืฆืืืช ืคืืช","ื ืืกืื ื ืื ืฉืงืืืืช ืืืืืื ืืืืื","ืืขืืช ืืืคื ืงืืืข"],"currency":"ILS","scale":1000,"value_type":"amount","bbox":[255,598,18,6]},{"value":"","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2020-09-30","path":["ืฉืื ืืืื ืืืืื ืืฉื ื","ืืขืืจืช ืกืืืืื ืฉืื ืงืืืืช ืืืืืื ืืืืื","ืกืืืืื ืฉืืืขืืจื ืืืืกืื ืืืฆืืืช ืคืืช","ืกื ืืื"],"currency":"ILS","scale":1000,"value_type":"amount","bbox":[168,598,18,6]},{"value":"(4887)","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2020-09-30","path":["ืืชืจื ืืืื 30 ืืกืคืืืืจ, 2020","ื ืืกืื ื ืื ืฉืื ืงืืืืช ืืืืืื ืืืืื (ืืืจืขืื ืืฆืืืจ ืืคืขืืืืืืช)","ืืฉืืืืฉ ืืคืขืืืืืืช"],"currency":"ILS","scale":1000,"value_type":"amount","bbox":[490,636,44,19]},{"value":"44141","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2020-09-30","path":["ืืชืจื ืืืื 30 ืืกืคืืืืจ, 2020","ื ืืกืื ื ืื ืฉืื ืงืืืืช ืืืืืื ืืืืื (ืืืจืขืื ืืฆืืืจ ืืคืขืืืืืืช)","ืฉืฉืืืฉื ืืจืืืฉืช ืจืืืฉ ืงืืืข ืื ืืกืื ืืืชื ืืืืฉืืื"],"currency":"ILS","scale":1000,"value_type":"amount","bbox":[393,637,47,17]},{"value":"5164","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2020-09-30","path":["ืืชืจื ืืืื 30 ืืกืคืืืืจ, 2020","ื ืืกืื ื ืื ืฉืงืืืืช ืืืืืื ืืืืื","ืืขืืช ืืืคื ืืื ื"],"currency":"ILS","scale":1000,"value_type":"amount","bbox":[311,637,40,17]},{"value":"135","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2020-09-30","path":["ืืชืจื ืืืื 30 ืืกืคืืืืจ, 2020","ื ืืกืื ื ืื ืฉืงืืืืช ืืืืืื ืืืืื","ืืขืืช ืืืคื ืงืืืข"],"currency":"ILS","scale":1000,"value_type":"amount","bbox":[240,638,29,17]},{"value":"44553","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2020-09-30","path":["ืืชืจื ืืืื 30 ืืกืคืืืืจ, 2020","ืกื ืืื"],"currency":"ILS","scale":1000,"value_type":"amount","bbox":[133,636,47,19]}]} | |
You are a precise financial statement extraction system. Return only valid JSON that matches the required schema. | You are extracting financial-statement annotations from a single page image into the exact Pydantic schema `PageExtraction`.
Return ONLY valid JSON.
Do NOT return markdown, code fences, comments, prose, or extra keys.
Top-level schema (exact keys only):
{
"meta": {
"entity_name": "<string or null>",
"page_num": "<string or null>",
"type": "balance_sheet|income_statement|cash_flow|notes|contents_page|title|declaration|profits|other",
"title": "<string or null>"
},
"facts": [
{
"bbox": { "x": <number>, "y": <number>, "w": <number>, "h": <number> },
"value": "<string>",
"comment": "<string or null>",
"is_note": <true|false>,
"note": "<string or null>",
"note_reference": "<string>",
"date": "<string or null>",
"path": ["<string>", "..."],
"currency": "ILS|USD|EUR|GBP|null",
"scale": 1|1000|1000000|null,
"value_type": "amount|%|null"
}
]
}
Type/validation rules (must match schema):
1. `meta` and `facts` are required.
2. `note_reference` is required string. Use "" when missing.
3. `path` is required list of strings (use [] when unknown, never null).
4. `is_note` must be boolean (never null and never "true"/"false" strings).
5. `date` must be `YYYY` or `YYYY-MM-DD` when provided.
6. `value` rules:
- If the value is a percentage, include `%` (for example `12%`, `12.5%`).
- If not a percentage, output only canonical numeric text: `Num`, `Num.Num`, `(Num)`, or `(Num.Num)`.
- For non-`%` values remove commas, spaces, currency signs/codes, and use parentheses for negatives (never leading `-`).
7. Use JSON null literal for missing optional values (never "null" string).
8. Do not include any keys not listed above.
Extraction rules:
1. Extract all visible numeric/table facts, including negatives in parentheses and totals.
2. If source is a dash placeholder (`-`, `โ`, `โ`), still extract the fact but set `value` to empty string `""`.
3. For non-`%` values, normalize `value` to canonical numeric shape only (`Num`, `Num.Num`, `(Num)`, `(Num.Num)`).
4. For `%` values, keep `%` in `value`.
5. `bbox` must tightly cover the value text only, in pixel coordinates of the original image.
6. `comment`: textual qualifier tied to the specific fact (for example `*without debt insurance`), else null.
7. `is_note`: true when the fact is itself inside a note section, else false.
8. `note`: use when this fact belongs to data presented inside a note section; else null.
9. `note_reference`: use when this fact points/references another note; else "".
10. `currency`: infer from page/header context (for example "ืฉืงืืื ืืืฉืื" -> "ILS"), else null.
11. `scale`: 1 unless page/header indicates thousands or millions.
12. `value_type`: "amount" unless the fact is a percentage ("%").
13. `date`: output only `YYYY` or `YYYY-MM-DD`. Convert dotted dates (`D.M.YYYY` / `DD.MM.YYYY`) to `YYYY-MM-DD` using day-first parsing.
14. `meta.type`: use "profits" for "ืืืืืช ืขื ืืคืขืืืืืืช"; otherwise choose the best enum value.
15. No duplicate facts. Order `facts` top-to-bottom; within each row use right-to-left for Hebrew/RTL pages and left-to-right for English/LTR pages (fallback RTL if uncertain).
16. Output UTF-8 Hebrew directly (do not escape to unicode sequences).
Path hierarchy rule:
1. Build `path` with horizontal-axis hierarchy first (row-side structure: group -> subgroup -> line item).
2. Then append vertical-axis hierarchy only when it adds business semantics not already represented by dedicated fields.
3. Do not encode period/currency/scale/value-format in `path` when already represented by `date`/`currency`/`scale`/`value_type`.
4. Keep labels exactly as shown. Do not invent levels.
| {"meta":{"entity_name":"ืืืจื ืื - ืืืืืื ืืืงืืืืช ืืืื ืื, ืืชื ืืขื ืืงืืืืฆืืช","page_num":"8","type":"cash_flow","title":"ืืืืืช ืขื ืชืืจืืื ืืืืืื ืื"},"facts":[{"value":"5863","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2021-09-30","path":["ืชืืจืืื ืืืืื ืื ืืคืขืืืืช ืฉืืืคืช","ืขืืืฃ ืืฉื ื"],"currency":"ILS","scale":1000,"value_type":"amount","bbox":[252,270,42,17]},{"value":"4175","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2020-09-30","path":["ืชืืจืืื ืืืืื ืื ืืคืขืืืืช ืฉืืืคืช","ืขืืืฃ ืืฉื ื"],"currency":"ILS","scale":1000,"value_type":"amount","bbox":[145,270,42,17]},{"value":"139","comment":null,"is_note":false,"note":null,"note_reference":"ื","date":"2021-09-30","path":["ืชืืจืืื ืืืืื ืื ืืคืขืืืืช ืฉืืืคืช","ืืชืืืืช ืืืจืืฉืืช ืืื ืืืฆืื ืืช ืชืืจืืื ืืืืืื ืื ืืคืขืืืืช ืฉืืืคืช (ื)"],"currency":"ILS","scale":1000,"value_type":"amount","bbox":[252,288,42,17]},{"value":"1078","comment":null,"is_note":false,"note":null,"note_reference":"ื","date":"2020-09-30","path":["ืชืืจืืื ืืืืื ืื ืืคืขืืืืช ืฉืืืคืช","ืืชืืืืช ืืืจืืฉืืช ืืื ืืืฆืื ืืช ืชืืจืืื ืืืืืื ืื ืืคืขืืืืช ืฉืืืคืช (ื)"],"currency":"ILS","scale":1000,"value_type":"amount","bbox":[145,288,42,17]},{"value":"6002","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2021-09-30","path":["ืชืืจืืื ืืืืื ืื ืืคืขืืืืช ืฉืืืคืช","ืืืืื ืื ื ืื ืฉื ืืขื ืืคืขืืืืช ืฉืืืคืช"],"currency":"ILS","scale":1000,"value_type":"amount","bbox":[252,316,42,17]},{"value":"5253","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2020-09-30","path":["ืชืืจืืื ืืืืื ืื ืืคืขืืืืช ืฉืืืคืช","ืืืืื ืื ื ืื ืฉื ืืขื ืืคืขืืืืช ืฉืืืคืช"],"currency":"ILS","scale":1000,"value_type":"amount","bbox":[145,316,42,17]},{"value":"(173)","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2021-09-30","path":["ืชืืจืืื ืืืืื ืื ืืคืขืืืืช ืืฉืงืขื","ืงืืืื (ืืืืื) ืืืืืื ืื ืืืืขืืื"],"currency":"ILS","scale":1000,"value_type":"amount","bbox":[252,370,42,17]},{"value":"91","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2020-09-30","path":["ืชืืจืืื ืืืืื ืื ืืคืขืืืืช ืืฉืงืขื","ืงืืืื (ืืืืื) ืืืืืื ืื ืืืืขืืื"],"currency":"ILS","scale":1000,"value_type":"amount","bbox":[145,366,42,17]},{"value":"(4764)","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2021-09-30","path":["ืชืืจืืื ืืืืื ืื ืืคืขืืืืช ืืฉืงืขื","ืจืืืฉืช ืจืืืฉ ืงืืืข"],"currency":"ILS","scale":1000,"value_type":"amount","bbox":[246,385,48,17]},{"value":"(3777)","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2020-09-30","path":["ืชืืจืืื ืืืืื ืื ืืคืขืืืืช ืืฉืงืขื","ืจืืืฉืช ืจืืืฉ ืงืืืข"],"currency":"ILS","scale":1000,"value_type":"amount","bbox":[139,385,47,17]},{"value":"1198","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2021-09-30","path":["ืชืืจืืื ืืืืื ืื ืืคืขืืืืช ืืฉืงืขื","ืืคืืชืช ืืขื ืง ื ืืืฉืืช"],"currency":"ILS","scale":1000,"value_type":"amount","bbox":[250,400,42,17]},{"value":"","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2020-09-30","path":["ืชืืจืืื ืืืืื ืื ืืคืขืืืืช ืืฉืงืขื","ืืคืืชืช ืืขื ืง ื ืืืฉืืช"],"currency":"ILS","scale":1000,"value_type":"amount","bbox":[169,402,15,10]},{"value":"(93)","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2021-09-30","path":["ืชืืจืืื ืืืืื ืื ืืคืขืืืืช ืืฉืงืขื","ืืฉืงืขื ืื ืืกืื ืืืชื ืืืืฉืืื"],"currency":"ILS","scale":1000,"value_type":"amount","bbox":[252,413,42,17]},{"value":"(37)","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2020-09-30","path":["ืชืืจืืื ืืืืื ืื ืืคืขืืืืช ืืฉืงืขื","ืืฉืงืขื ืื ืืกืื ืืืชื ืืืืฉืืื"],"currency":"ILS","scale":1000,"value_type":"amount","bbox":[145,415,42,15]},{"value":"2105","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2021-09-30","path":["ืชืืจืืื ืืืืื ืื ืืคืขืืืืช ืืฉืงืขื","ืืืืจืช ื ืืืจืืช ืขืจื"],"currency":"ILS","scale":1000,"value_type":"amount","bbox":[249,431,42,15]},{"value":"","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2020-09-30","path":["ืชืืจืืื ืืืืื ืื ืืคืขืืืืช ืืฉืงืขื","ืืืืจืช ื ืืืจืืช ืขืจื"],"currency":"ILS","scale":1000,"value_type":"amount","bbox":[167,433,18,12]},{"value":"(2000)","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2021-09-30","path":["ืชืืจืืื ืืืืื ืื ืืคืขืืืืช ืืฉืงืขื","ืจืืืฉืช ื ืืืจืืช ืขืจื"],"currency":"ILS","scale":1000,"value_type":"amount","bbox":[249,445,42,17]},{"value":"(1000)","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2020-09-30","path":["ืชืืจืืื ืืืืื ืื ืืคืขืืืืช ืืฉืงืขื","ืจืืืฉืช ื ืืืจืืช ืขืจื"],"currency":"ILS","scale":1000,"value_type":"amount","bbox":[136,444,47,17]},{"value":"(3727)","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2021-09-30","path":["ืชืืจืืื ืืืืื ืื ืืคืขืืืืช ืืฉืงืขื","ืืืืื ืื ื ืื ืฉืฉืืืฉื ืืคืขืืืืช ืืฉืงืขื"],"currency":"ILS","scale":1000,"value_type":"amount","bbox":[246,468,42,17]},{"value":"(4723)","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2020-09-30","path":["ืชืืจืืื ืืืืื ืื ืืคืขืืืืช ืืฉืงืขื","ืืืืื ืื ื ืื ืฉืฉืืืฉื ืืคืขืืืืช ืืฉืงืขื"],"currency":"ILS","scale":1000,"value_type":"amount","bbox":[135,467,52,17]},{"value":"3129","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2021-09-30","path":["ืชืืจืืื ืืืืื ืื ืืคืขืืืืช ืืืืื","ืชืจืืืืช ืฉืืชืงืืื ืื ืืกืื ื ืื ืฉืงืืืืช ืืืืืื ืืืืื"],"currency":"ILS","scale":1000,"value_type":"amount","bbox":[252,530,42,17]},{"value":"3520","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2020-09-30","path":["ืชืืจืืื ืืืืื ืื ืืคืขืืืืช ืืืืื","ืชืจืืืืช ืฉืืชืงืืื ืื ืืกืื ื ืื ืฉืงืืืืช ืืืืืื ืืืืื"],"currency":"ILS","scale":1000,"value_type":"amount","bbox":[145,530,42,17]},{"value":"3129","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2021-09-30","path":["ืชืืจืืื ืืืืื ืื ืืคืขืืืืช ืืืืื","ืืืืื ืื ื ืื ืฉื ืืขื ืืคืขืืืืช ืืืืื"],"currency":"ILS","scale":1000,"value_type":"amount","bbox":[252,560,42,17]},{"value":"3520","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2020-09-30","path":["ืชืืจืืื ืืืืื ืื ืืคืขืืืืช ืืืืื","ืืืืื ืื ื ืื ืฉื ืืขื ืืคืขืืืืช ืืืืื"],"currency":"ILS","scale":1000,"value_type":"amount","bbox":[145,560,42,17]},{"value":"5404","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2021-09-30","path":["ืขืืื ืืืืืื ืื ืืฉืืื ืืืืื ืื"],"currency":"ILS","scale":1000,"value_type":"amount","bbox":[252,606,42,17]},{"value":"4050","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2020-09-30","path":["ืขืืื ืืืืืื ืื ืืฉืืื ืืืืื ืื"],"currency":"ILS","scale":1000,"value_type":"amount","bbox":[145,606,42,17]},{"value":"4851","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2021-09-30","path":["ืืืืื ืื ืืฉืืื ืืืืื ืื ืืชืืืืช ืืฉื ื"],"currency":"ILS","scale":1000,"value_type":"amount","bbox":[244,633,46,19]},{"value":"801","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2020-09-30","path":["ืืืืื ืื ืืฉืืื ืืืืื ืื ืืชืืืืช ืืฉื ื"],"currency":"ILS","scale":1000,"value_type":"amount","bbox":[145,637,42,17]},{"value":"10255","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2021-09-30","path":["ืืืืื ืื ืืฉืืื ืืืืื ืื ืืกืืฃ ืืฉื ื"],"currency":"ILS","scale":1000,"value_type":"amount","bbox":[243,666,42,17]},{"value":"4851","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2020-09-30","path":["ืืืืื ืื ืืฉืืื ืืืืื ืื ืืกืืฃ ืืฉื ื"],"currency":"ILS","scale":1000,"value_type":"amount","bbox":[145,669,42,17]}]} |
End of preview. Expand
in Data Studio
README.md exists but content is empty.
- Downloads last month
- 10