image imagewidth (px) 812 812 | system stringclasses 1 value | instruction stringclasses 1 value | text stringclasses 10 values |
|---|---|---|---|
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":"1","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":"745384","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2024-12-31","path":["专讻讜砖","专讻讜砖 砖讜讟祝","诪讝讜诪谞讬诐 讜砖讜讜讛 诪讝讜诪谞讬诐"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[244,278,50,18]},{"value":"851625","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2023-12-31","path":["专讻讜砖","专讻讜砖 砖讜讟祝","诪讝讜诪谞讬诐 讜砖讜讜讛 诪讝讜诪谞讬诐"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[149,278,50,18]},{"value":"322816","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2024-12-31","path":["专讻讜砖","专讻讜砖 砖讜讟祝","讛砖拽注讜转 讘谞讬讬专讜转 注专讱"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[244,294,50,18]},{"value":"537962","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2023-12-31","path":["专讻讜砖","专讻讜砖 砖讜讟祝","讛砖拽注讜转 讘谞讬讬专讜转 注专讱"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[149,294,50,18]},{"value":"6644","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2024-12-31","path":["专讻讜砖","专讻讜砖 砖讜讟祝","讞讬讬讘讬诐 讜讬转专讜转 讞讜讘讛"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[260,309,34,18]},{"value":"","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2023-12-31","path":["专讻讜砖","专讻讜砖 砖讜讟祝","讞讬讬讘讬诐 讜讬转专讜转 讞讜讘讛"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[159,314,11,12]},{"value":"1074844","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2024-12-31","path":["专讻讜砖","专讻讜砖 砖讜讟祝"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[235,325,58,18]},{"value":"1389587","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2023-12-31","path":["专讻讜砖","专讻讜砖 砖讜讟祝"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[137,327,58,18]},{"value":"40006913","comment":null,"is_note":false,"note":null,"note_reference":"3","date":"2024-12-31","path":["专讻讜砖","讛砖拽注讜转","驻拽讚讜谞讜转 讘讘谞拽讬诐"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[226,375,68,18]},{"value":"7016757","comment":null,"is_note":false,"note":null,"note_reference":"3","date":"2023-12-31","path":["专讻讜砖","讛砖拽注讜转","驻拽讚讜谞讜转 讘讘谞拽讬诐"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[137,375,58,18]},{"value":"1642248","comment":null,"is_note":false,"note":null,"note_reference":"4","date":"2024-12-31","path":["专讻讜砖","专讻讜砖 拽讘讜注"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[237,423,57,18]},{"value":"810066","comment":null,"is_note":false,"note":null,"note_reference":"4","date":"2023-12-31","path":["专讻讜砖","专讻讜砖 拽讘讜注"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[147,423,51,18]},{"value":"42724005","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2024-12-31","path":["专讻讜砖"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[225,455,69,18]},{"value":"9216410","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2023-12-31","path":["专讻讜砖"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[136,455,63,18]},{"value":"43125","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2024-12-31","path":["讛转讞讬讬讘讜讬讜转 讜谞讻住讬诐 谞讟讜","讛转讞讬讬讘讜讬讜转 砖讜讟驻讜转:","讛诪讞讗讜转 诇驻专注讜谉"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[244,516,51,18]},{"value":"14250","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2023-12-31","path":["讛转讞讬讬讘讜讬讜转 讜谞讻住讬诐 谞讟讜","讛转讞讬讬讘讜讬讜转 砖讜讟驻讜转:","讛诪讞讗讜转 诇驻专注讜谉"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[155,516,46,18]},{"value":"137754","comment":null,"is_note":false,"note":null,"note_reference":"5","date":"2024-12-31","path":["讛转讞讬讬讘讜讬讜转 讜谞讻住讬诐 谞讟讜","讛转讞讬讬讘讜讬讜转 砖讜讟驻讜转:","讝讻讗讬诐 讜讬转专讜转 讝讻讜转"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[239,532,56,18]},{"value":"84159","comment":null,"is_note":false,"note":null,"note_reference":"5","date":"2023-12-31","path":["讛转讞讬讬讘讜讬讜转 讜谞讻住讬诐 谞讟讜","讛转讞讬讬讘讜讬讜转 砖讜讟驻讜转:","讝讻讗讬诐 讜讬转专讜转 讝讻讜转"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[149,532,51,18]},{"value":"","comment":null,"is_note":false,"note":null,"note_reference":"6","date":"2024-12-31","path":["讛转讞讬讬讘讜讬讜转 讜谞讻住讬诐 谞讟讜","讛转讞讬讬讘讜讬讜转 砖讜讟驻讜转:","诪拽讚诪讜转 注诇-讞砖讘讜谉 诪讻讬专转 诪拽专拽注讬谉"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[257,552,9,8]},{"value":"7864400","comment":null,"is_note":false,"note":null,"note_reference":"6","date":"2023-12-31","path":["讛转讞讬讬讘讜讬讜转 讜谞讻住讬诐 谞讟讜","讛转讞讬讬讘讜讬讜转 砖讜讟驻讜转:","诪拽讚诪讜转 注诇-讞砖讘讜谉 诪讻讬专转 诪拽专拽注讬谉"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[136,548,58,18]},{"value":"180879","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2024-12-31","path":["讛转讞讬讬讘讜讬讜转 讜谞讻住讬诐 谞讟讜","讛转讞讬讬讘讜讬讜转 砖讜讟驻讜转:"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[245,565,50,18]},{"value":"7962809","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2023-12-31","path":["讛转讞讬讬讘讜讬讜转 讜谞讻住讬诐 谞讟讜","讛转讞讬讬讘讜讬讜转 砖讜讟驻讜转:"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[136,563,58,18]},{"value":"247368","comment":null,"is_note":false,"note":null,"note_reference":"7","date":"2024-12-31","path":["讛转讞讬讬讘讜讬讜转 讜谞讻住讬诐 谞讟讜","讛转讞讬讬讘讜讬讜转 诇讝诪谉 讗专讜讱 -","讘讙讬谉 住讬讜诐 讬讞住讬 注讜讘讚-诪注讘讬讚"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[242,613,50,18]},{"value":"247368","comment":null,"is_note":false,"note":null,"note_reference":"7","date":"2023-12-31","path":["讛转讞讬讬讘讜讬讜转 讜谞讻住讬诐 谞讟讜","讛转讞讬讬讘讜讬讜转 诇讝诪谉 讗专讜讱 -","讘讙讬谉 住讬讜诐 讬讞住讬 注讜讘讚-诪注讘讬讚"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[146,611,50,18]},{"value":"(1537213)","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2024-12-31","path":["讛转讞讬讬讘讜讬讜转 讜谞讻住讬诐 谞讟讜","谞讻住讬诐 谞讟讜:","砖诇讗 讬讜注讚讜 注\"讬 诪讜住讚讜转 讛诪诇讻\"专"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[223,672,73,18]},{"value":"(464404)","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2023-12-31","path":["讛转讞讬讬讘讜讬讜转 讜谞讻住讬诐 谞讟讜","谞讻住讬诐 谞讟讜:","砖诇讗 讬讜注讚讜 注\"讬 诪讜住讚讜转 讛诪诇讻\"专"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[130,672,70,18]},{"value":"42190723","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2024-12-31","path":["讛转讞讬讬讘讜讬讜转 讜谞讻住讬诐 谞讟讜","谞讻住讬诐 谞讟讜:","砖讬讜注讚讜 注\"讬 诪讜住讚讜转 讛诪诇讻\"专 诇讛砖拽注讛 讘专讻讜砖 拽讘讜注"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[224,687,70,18]},{"value":"660571","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2023-12-31","path":["讛转讞讬讬讘讜讬讜转 讜谞讻住讬诐 谞讟讜","谞讻住讬诐 谞讟讜:","砖讬讜注讚讜 注\"讬 诪讜住讚讜转 讛诪诇讻\"专 诇讛砖拽注讛 讘专讻讜砖 拽讘讜注"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[146,687,52,18]},{"value":"1642248","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2024-12-31","path":["讛转讞讬讬讘讜讬讜转 讜谞讻住讬诐 谞讟讜","谞讻住讬诐 谞讟讜:","砖砖讬诪砖讜 诇专讻讜砖 拽讘讜注"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[232,703,62,18]},{"value":"810066","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2023-12-31","path":["讛转讞讬讬讘讜讬讜转 讜谞讻住讬诐 谞讟讜","谞讻住讬诐 谞讟讜:","砖砖讬诪砖讜 诇专讻讜砖 拽讘讜注"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[142,703,56,18]},{"value":"42295758","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2024-12-31","path":["讛转讞讬讬讘讜讬讜转 讜谞讻住讬诐 谞讟讜","谞讻住讬诐 谞讟讜:"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[222,720,70,20]},{"value":"1006233","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2023-12-31","path":["讛转讞讬讬讘讜讬讜转 讜谞讻住讬诐 谞讟讜","谞讻住讬诐 谞讟讜:"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[133,720,64,20]},{"value":"42724005","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2024-12-31","path":["讛转讞讬讬讘讜讬讜转 讜谞讻住讬诐 谞讟讜"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[222,748,70,20]},{"value":"9216410","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2023-12-31","path":["讛转讞讬讬讘讜讬讜转 讜谞讻住讬诐 谞讟讜"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[133,748,64,20]}]} | |
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":"other","title":"讚讜讞讜转 注诇 讛驻注讬诇讜讬讜转"},"facts":[{"value":"1182689","comment":null,"is_note":false,"note":null,"note_reference":"8","date":"2024-12-31","path":["诪讞讝讜专 讛驻注讬诇讜讬讜转:","讛拽爪讘讜转"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[204,305,73,27]},{"value":"1200704","comment":null,"is_note":false,"note":null,"note_reference":"8","date":"2023-12-31","path":["诪讞讝讜专 讛驻注讬诇讜讬讜转:","讛拽爪讘讜转"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[114,305,71,27]},{"value":"929884","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2024-12-31","path":["诪讞讝讜专 讛驻注讬诇讜讬讜转:","砖讻专 诇讬诪讜讚 讜讛砖转转驻讜讬讜转"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[215,330,62,26]},{"value":"864227","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2023-12-31","path":["诪讞讝讜专 讛驻注讬诇讜讬讜转:","砖讻专 诇讬诪讜讚 讜讛砖转转驻讜讬讜转"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[125,330,61,26]},{"value":"411371","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2024-12-31","path":["诪讞讝讜专 讛驻注讬诇讜讬讜转:","转专讜诪讜转"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[216,354,60,26]},{"value":"614831","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2023-12-31","path":["诪讞讝讜专 讛驻注讬诇讜讬讜转:","转专讜诪讜转"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[125,354,60,26]},{"value":"2523944","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2024-12-31","path":["诪讞讝讜专 讛驻注讬诇讜讬讜转:"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[203,379,73,26]},{"value":"2679762","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2023-12-31","path":["诪讞讝讜专 讛驻注讬诇讜讬讜转:"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[112,379,73,26]},{"value":"795690","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2024-12-31","path":["注诇讜转 讛驻注讬诇讜讬讜转:","诪砖讻讜专讜转 讜转讜住驻讜转 住讜爪讬讗诇讬讜转"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[217,461,54,22]},{"value":"919976","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2023-12-31","path":["注诇讜转 讛驻注讬诇讜讬讜转:","诪砖讻讜专讜转 讜转讜住驻讜转 住讜爪讬讗诇讬讜转"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[125,458,62,25]},{"value":"754895","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2024-12-31","path":["注诇讜转 讛驻注讬诇讜讬讜转:","诪诇讙讜转 诇讗讘专讻讬诐"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[216,487,51,17]},{"value":"849868","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2023-12-31","path":["注诇讜转 讛驻注讬诇讜讬讜转:","诪诇讙讜转 诇讗讘专讻讬诐"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[126,484,56,20]},{"value":"471840","comment":null,"is_note":false,"note":null,"note_reference":"9","date":"2024-12-31","path":["注诇讜转 讛驻注讬诇讜讬讜转:","讻诇讻诇转 转诇诪讬讚讬诐"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[217,513,50,17]},{"value":"448860","comment":null,"is_note":false,"note":null,"note_reference":"9","date":"2023-12-31","path":["注诇讜转 讛驻注讬诇讜讬讜转:","讻诇讻诇转 转诇诪讬讚讬诐"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[127,510,55,20]},{"value":"186727","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2024-12-31","path":["注诇讜转 讛驻注讬诇讜讬讜转:","讗讞讝拽转 诪讘谞讛"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[218,538,48,17]},{"value":"243092","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2023-12-31","path":["注诇讜转 讛驻注讬诇讜讬讜转:","讗讞讝拽转 诪讘谞讛"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[129,534,54,20]},{"value":"20755","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2024-12-31","path":["注诇讜转 讛驻注讬诇讜讬讜转:","讗讬专讜注讬诐 讜讻谞住讬诐 讞讘专转讬讬诐"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[223,562,43,16]},{"value":"22586","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2023-12-31","path":["注诇讜转 讛驻注讬诇讜讬讜转:","讗讬专讜注讬诐 讜讻谞住讬诐 讞讘专转讬讬诐"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[133,559,49,19]},{"value":"48392","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2024-12-31","path":["注诇讜转 讛驻注讬诇讜讬讜转:","讛住注讜转 转诇诪讬讚讬诐"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[224,588,43,16]},{"value":"28663","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2023-12-31","path":["注诇讜转 讛驻注讬诇讜讬讜转:","讛住注讜转 转诇诪讬讚讬诐"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[134,585,49,19]},{"value":"16030","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2024-12-31","path":["注诇讜转 讛驻注讬诇讜讬讜转:","驻讞转 诪专讻讜砖 拽讘讜注"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[224,611,41,16]},{"value":"17069","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2023-12-31","path":["注诇讜转 讛驻注讬诇讜讬讜转:","驻讞转 诪专讻讜砖 拽讘讜注"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[138,607,48,19]},{"value":"2294329","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2024-12-31","path":["注诇讜转 讛驻注讬诇讜讬讜转:"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[208,633,61,17]},{"value":"2530114","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2023-12-31","path":["注诇讜转 讛驻注讬诇讜讬讜转:"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[120,633,58,17]},{"value":"229615","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2024-12-31","path":["讛讻谞住讜转 谞讟讜 诪驻注讬诇讜讬讜转"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[211,665,56,20]},{"value":"149648","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2023-12-31","path":["讛讻谞住讜转 谞讟讜 诪驻注讬诇讜讬讜转"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[127,665,49,17]},{"value":"489126","comment":null,"is_note":false,"note":null,"note_reference":"10","date":"2024-12-31","path":["讛讜爪讗讜转 讛谞讛诇讛 讜讻诇诇讬讜转"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[212,684,61,23]},{"value":"290228","comment":null,"is_note":false,"note":null,"note_reference":"10","date":"2023-12-31","path":["讛讜爪讗讜转 讛谞讛诇讛 讜讻诇诇讬讜转"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[123,681,62,23]},{"value":"(259511)","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2024-12-31","path":[],"currency":"ILS","scale":1,"value_type":"amount","bbox":[199,711,70,20]},{"value":"(140580)","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2023-12-31","path":[],"currency":"ILS","scale":1,"value_type":"amount","bbox":[112,709,74,22]},{"value":"18884","comment":null,"is_note":false,"note":null,"note_reference":"11","date":"2024-12-31","path":["讛讻谞住讜转 诪讬诪讜谉, 谞讟讜"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[221,739,46,15]},{"value":"98807","comment":null,"is_note":false,"note":null,"note_reference":"11","date":"2023-12-31","path":["讛讻谞住讜转 诪讬诪讜谉, 谞讟讜"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[128,734,52,22]},{"value":"(240627)","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2024-12-31","path":[],"currency":"ILS","scale":1,"value_type":"amount","bbox":[201,761,67,20]},{"value":"(41773)","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2023-12-31","path":[],"currency":"ILS","scale":1,"value_type":"amount","bbox":[111,756,70,24]},{"value":"","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2024-12-31","path":["讛讜爪讗讜转 讗讞专讜转, 谞讟讜"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[224,788,17,12]},{"value":"85099","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2023-12-31","path":["讛讜爪讗讜转 讗讞专讜转, 谞讟讜"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[130,780,52,22]},{"value":"(240627)","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2024-12-31","path":["讛讻谞住讜转 (讛讜爪讗讜转) 谞讟讜 诇砖谞讛"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[195,803,81,23]},{"value":"43326","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2023-12-31","path":["讛讻谞住讜转 (讛讜爪讗讜转) 谞讟讜 诇砖谞讛"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[127,805,52,23]}]} | |
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":"cash_flow","title":"讚讜讞讜转 注诇 转讝专讬诪讬 诪讝讜诪谞讬诐"},"facts":[{"value":"(240627)","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2024-12-31","path":["转讝专讬诪讬 诪讝讜诪谞讬诐 诪驻注讬诇讜转 砖讜讟驻转","讛讻谞住讜转 (讛讜爪讗讜转) 谞讟讜 诇砖谞讛"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[227,294,66,16]},{"value":"43326","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2023-12-31","path":["转讝专讬诪讬 诪讝讜诪谞讬诐 诪驻注讬诇讜转 砖讜讟驻转","讛讻谞住讜转 (讛讜爪讗讜转) 谞讟讜 诇砖谞讛"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[157,294,43,16]},{"value":"53905","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2024-12-31","path":["转讝专讬诪讬 诪讝讜诪谞讬诐 诪驻注讬诇讜转 砖讜讟驻转","讛转讗诪讜转 讛讚专讜砖讜转 讻讚讬 诇讛爪讬讙 讗转 转讝专讬诪讬 讛诪讝讜诪谞讬诐 诪驻注讬诇讜转 砖讜讟驻转 (专讗讛 诇讛诇谉)"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[243,340,63,19]},{"value":"(74279)","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2023-12-31","path":["转讝专讬诪讬 诪讝讜诪谞讬诐 诪驻注讬诇讜转 砖讜讟驻转","讛转讗诪讜转 讛讚专讜砖讜转 讻讚讬 诇讛爪讬讙 讗转 转讝专讬诪讬 讛诪讝讜诪谞讬诐 诪驻注讬诇讜转 砖讜讟驻转 (专讗讛 诇讛诇谉)"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[136,340,67,19]},{"value":"(186722)","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2024-12-31","path":["转讝专讬诪讬 诪讝讜诪谞讬诐 诪驻注讬诇讜转 砖讜讟驻转"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[224,362,81,19]},{"value":"(30953)","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2023-12-31","path":["转讝专讬诪讬 诪讝讜诪谞讬诐 诪驻注讬诇讜转 砖讜讟驻转"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[136,362,67,19]},{"value":"253097","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2024-12-31","path":["转讝专讬诪讬 诪讝讜诪谞讬诐 诪驻注讬诇讜转 讛砖拽注讛","转诪讜专讛 诪诪讻讬专转 谞讬讬专讜转 注专讱, 谞讟讜"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[238,417,55,16]},{"value":"327","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2023-12-31","path":["转讝专讬诪讬 诪讝讜诪谞讬诐 诪驻注讬诇讜转 讛砖拽注讛","转诪讜专讛 诪诪讻讬专转 谞讬讬专讜转 注专讱, 谞讟讜"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[171,417,29,16]},{"value":"32667923","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2024-12-31","path":["转讝专讬诪讬 诪讝讜诪谞讬诐 诪驻注讬诇讜转 讛砖拽注讛","转诪讜专讛 诪诪讻讬专转 诪拽专拽注讬谉"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[230,442,63,16]},{"value":"7864400","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2023-12-31","path":["转讝专讬诪讬 诪讝讜诪谞讬诐 诪驻注讬诇讜转 讛砖拽注讛","转诪讜专讛 诪诪讻讬专转 诪拽专拽注讬谉"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[144,442,56,16]},{"value":"(31992327)","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2024-12-31","path":["转讝专讬诪讬 诪讝讜诪谞讬诐 诪驻注讬诇讜转 讛砖拽注讛","讛砖拽注讛 讘驻讬拽讚讜谞讜转"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[224,465,70,16]},{"value":"(7016757)","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2023-12-31","path":["转讝专讬诪讬 诪讝讜诪谞讬诐 诪驻注讬诇讜转 讛砖拽注讛","讛砖拽注讛 讘驻讬拽讚讜谞讜转"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[139,465,62,16]},{"value":"(848212)","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2024-12-31","path":["转讝专讬诪讬 诪讝讜诪谞讬诐 诪驻注讬诇讜转 讛砖拽注讛","专讻讬砖转 专讻讜砖 拽讘讜注"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[224,485,73,19]},{"value":"(286449)","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2023-12-31","path":["转讝专讬诪讬 诪讝讜诪谞讬诐 诪驻注讬诇讜转 讛砖拽注讛","专讻讬砖转 专讻讜砖 拽讘讜注"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[139,489,64,16]},{"value":"80481","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2024-12-31","path":["转讝专讬诪讬 诪讝讜诪谞讬诐 诪驻注讬诇讜转 讛砖拽注讛"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[239,512,57,16]},{"value":"561521","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2023-12-31","path":["转讝专讬诪讬 诪讝讜诪谞讬诐 诪驻注讬诇讜转 讛砖拽注讛"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[147,513,58,15]},{"value":"(106241)","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2024-12-31","path":["讙讬讚讜诇 (拽讬讟讜谉) 讘诪讝讜诪谞讬诐 讜砖讜讜讛 诪讝讜诪谞讬诐","讙讬讚讜诇 (拽讬讟讜谉) 讘诪讝讜诪谞讬诐 讜砖讜讜讛 诪讝讜诪谞讬诐"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[226,544,70,16]},{"value":"530568","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2023-12-31","path":["讙讬讚讜诇 (拽讬讟讜谉) 讘诪讝讜诪谞讬诐 讜砖讜讜讛 诪讝讜诪谞讬诐","讙讬讚讜诇 (拽讬讟讜谉) 讘诪讝讜诪谞讬诐 讜砖讜讜讛 诪讝讜诪谞讬诐"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[147,544,58,16]},{"value":"851625","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2024-12-31","path":["讙讬讚讜诇 (拽讬讟讜谉) 讘诪讝讜诪谞讬诐 讜砖讜讜讛 诪讝讜诪谞讬诐","讬转专转 诪讝讜诪谞讬诐 讜砖讜讜讛 诪讝讜诪谞讬诐 诇转讞讬诇转 讛砖谞讛"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[232,568,64,16]},{"value":"321057","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2023-12-31","path":["讙讬讚讜诇 (拽讬讟讜谉) 讘诪讝讜诪谞讬诐 讜砖讜讜讛 诪讝讜诪谞讬诐","讬转专转 诪讝讜诪谞讬诐 讜砖讜讜讛 诪讝讜诪谞讬诐 诇转讞讬诇转 讛砖谞讛"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[147,568,58,16]},{"value":"745384","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2024-12-31","path":["讙讬讚讜诇 (拽讬讟讜谉) 讘诪讝讜诪谞讬诐 讜砖讜讜讛 诪讝讜诪谞讬诐","讬转专转 诪讝讜诪谞讬诐 讜砖讜讜讛 诪讝讜诪谞讬诐 诇住讜祝 讛砖谞讛"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[232,590,64,16]},{"value":"851625","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2023-12-31","path":["讙讬讚讜诇 (拽讬讟讜谉) 讘诪讝讜诪谞讬诐 讜砖讜讜讛 诪讝讜诪谞讬诐","讬转专转 诪讝讜诪谞讬诐 讜砖讜讜讛 诪讝讜诪谞讬诐 诇住讜祝 讛砖谞讛"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[147,590,58,16]},{"value":"16030","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2024-12-31","path":["讛转讗诪讜转 讛讚专讜砖讜转 讻讚讬 诇讛爪讬讙 讗转 转讝专讬诪讬 讛诪讝讜诪谞讬诐 诪驻注讬诇讜转 砖讜讟驻转","讛讜爪讗讜转 (讛讻谞住讜转) 砖讗讬谞谉 讻专讜讻讜转 讘转讝专讬诪讬 诪讝讜诪谞讬诐","驻讞转 诪专讻讜砖 拽讘讜注"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[233,666,55,18]},{"value":"17068","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2023-12-31","path":["讛转讗诪讜转 讛讚专讜砖讜转 讻讚讬 诇讛爪讬讙 讗转 转讝专讬诪讬 讛诪讝讜诪谞讬诐 诪驻注讬诇讜转 砖讜讟驻转","讛讜爪讗讜转 (讛讻谞住讜转) 砖讗讬谞谉 讻专讜讻讜转 讘转讝专讬诪讬 诪讝讜诪谞讬诐","驻讞转 诪专讻讜砖 拽讘讜注"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[152,663,51,22]},{"value":"(37951)","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2024-12-31","path":["讛转讗诪讜转 讛讚专讜砖讜转 讻讚讬 诇讛爪讬讙 讗转 转讝专讬诪讬 讛诪讝讜诪谞讬诐 诪驻注讬诇讜转 砖讜讟驻转","讛讜爪讗讜转 (讛讻谞住讜转) 砖讗讬谞谉 讻专讜讻讜转 讘转讝专讬诪讬 诪讝讜诪谞讬诐","专讜讜讞 诪诪讬诪讜砖 讜讛转讗诪转 注专讱 谞讬讬专讜转 注专讱"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[224,690,73,19]},{"value":"(31369)","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2023-12-31","path":["讛转讗诪讜转 讛讚专讜砖讜转 讻讚讬 诇讛爪讬讙 讗转 转讝专讬诪讬 讛诪讝讜诪谞讬诐 诪驻注讬诇讜转 砖讜讟驻转","讛讜爪讗讜转 (讛讻谞住讜转) 砖讗讬谞谉 讻专讜讻讜转 讘转讝专讬诪讬 诪讝讜诪谞讬诐","专讜讜讞 诪诪讬诪讜砖 讜讛转讗诪转 注专讱 谞讬讬专讜转 注专讱"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[136,687,67,22]},{"value":"(21921)","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2024-12-31","path":["讛转讗诪讜转 讛讚专讜砖讜转 讻讚讬 诇讛爪讬讙 讗转 转讝专讬诪讬 讛诪讝讜诪谞讬诐 诪驻注讬诇讜转 砖讜讟驻转","讛讜爪讗讜转 (讛讻谞住讜转) 砖讗讬谞谉 讻专讜讻讜转 讘转讝专讬诪讬 诪讝讜诪谞讬诐"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[224,713,73,19]},{"value":"(14301)","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2023-12-31","path":["讛转讗诪讜转 讛讚专讜砖讜转 讻讚讬 诇讛爪讬讙 讗转 转讝专讬诪讬 讛诪讝讜诪谞讬诐 诪驻注讬诇讜转 砖讜讟驻转","讛讜爪讗讜转 (讛讻谞住讜转) 砖讗讬谞谉 讻专讜讻讜转 讘转讝专讬诪讬 诪讝讜诪谞讬诐"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[136,710,67,22]},{"value":"(6644)","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2024-12-31","path":["讛转讗诪讜转 讛讚专讜砖讜转 讻讚讬 诇讛爪讬讙 讗转 转讝专讬诪讬 讛诪讝讜诪谞讬诐 诪驻注讬诇讜转 砖讜讟驻转","砖讬谞讜讬讬诐 讘住注讬驻讬 专讻讜砖 讜讛转讞讬讬讘讜讬讜转","讙讬讚讜诇 讘讞讬讬讘讬诐 讜讬转专讜转 讞讜讘讛"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[225,769,73,16]},{"value":"","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2023-12-31","path":["讛转讗诪讜转 讛讚专讜砖讜转 讻讚讬 诇讛爪讬讙 讗转 转讝专讬诪讬 讛诪讝讜诪谞讬诐 诪驻注讬诇讜转 砖讜讟驻转","砖讬谞讜讬讬诐 讘住注讬驻讬 专讻讜砖 讜讛转讞讬讬讘讜讬讜转","讙讬讚讜诇 讘讞讬讬讘讬诐 讜讬转专讜转 讞讜讘讛"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[159,768,19,16]},{"value":"82470","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2024-12-31","path":["讛转讗诪讜转 讛讚专讜砖讜转 讻讚讬 诇讛爪讬讙 讗转 转讝专讬诪讬 讛诪讝讜诪谞讬诐 诪驻注讬诇讜转 砖讜讟驻转","砖讬谞讜讬讬诐 讘住注讬驻讬 专讻讜砖 讜讛转讞讬讬讘讜讬讜转","讙讬讚讜诇 (拽讬讟讜谉) 讘讝讻讗讬诐 讜讬转专讜转 讝讻讜转"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[231,791,69,22]},{"value":"(59978)","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2023-12-31","path":["讛转讗诪讜转 讛讚专讜砖讜转 讻讚讬 诇讛爪讬讙 讗转 转讝专讬诪讬 讛诪讝讜诪谞讬诐 诪驻注讬诇讜转 砖讜讟驻转","砖讬谞讜讬讬诐 讘住注讬驻讬 专讻讜砖 讜讛转讞讬讬讘讜讬讜转","讙讬讚讜诇 (拽讬讟讜谉) 讘讝讻讗讬诐 讜讬转专讜转 讝讻讜转"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[127,789,73,22]},{"value":"75826","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2024-12-31","path":["讛转讗诪讜转 讛讚专讜砖讜转 讻讚讬 诇讛爪讬讙 讗转 转讝专讬诪讬 讛诪讝讜诪谞讬诐 诪驻注讬诇讜转 砖讜讟驻转","砖讬谞讜讬讬诐 讘住注讬驻讬 专讻讜砖 讜讛转讞讬讬讘讜讬讜转"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[233,811,58,22]},{"value":"(59978)","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2023-12-31","path":["讛转讗诪讜转 讛讚专讜砖讜转 讻讚讬 诇讛爪讬讙 讗转 转讝专讬诪讬 讛诪讝讜诪谞讬诐 诪驻注讬诇讜转 砖讜讟驻转","砖讬谞讜讬讬诐 讘住注讬驻讬 专讻讜砖 讜讛转讞讬讬讘讜讬讜转"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[127,811,73,22]},{"value":"53905","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2024-12-31","path":["讛转讗诪讜转 讛讚专讜砖讜转 讻讚讬 诇讛爪讬讙 讗转 转讝专讬诪讬 讛诪讝讜诪谞讬诐 诪驻注讬诇讜转 砖讜讟驻转"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[233,858,69,22]},{"value":"(74279)","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2023-12-31","path":["讛转讗诪讜转 讛讚专讜砖讜转 讻讚讬 诇讛爪讬讙 讗转 转讝专讬诪讬 讛诪讝讜诪谞讬诐 诪驻注讬诇讜转 砖讜讟驻转"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[127,858,73,22]}]} | |
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":"(238349)","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2023-01-01","path":["讬转专讛 诇讬讜诐 1 讘讬谞讜讗专 2023","诇砖讬诪讜砖 诇驻注讬诇讜讬讜转 砖诇讗 讬讜注讚讜 注''讬 诪讜住讚讜转 讛诪诇讻''专"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[391,397,59,17]},{"value":"660571","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2023-01-01","path":["讬转专讛 诇讬讜诐 1 讘讬谞讜讗专 2023","砖讬讜注讚讜 注''讬 诪讜住讚讜转 讛诪诇讻''专 诇讛砖拽注讛 讘专讻讜砖 拽讘讜注"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[312,397,44,16]},{"value":"540685","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2023-01-01","path":["讬转专讛 诇讬讜诐 1 讘讬谞讜讗专 2023","砖砖讬诪砖讜 诇专讻讜砖 拽讘讜注"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[222,396,45,15]},{"value":"962907","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2023-01-01","path":["讬转专讛 诇讬讜诐 1 讘讬谞讜讗专 2023","住讛''讻"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[133,396,45,15]},{"value":"43326","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2023","path":["砖讬谞讜讬讬诐 讘诪讛诇讱 砖谞转 2023:","讛讻谞住讜转 谞讟讜 诇砖谞讛","诇砖讬诪讜砖 诇驻注讬诇讜讬讜转 砖诇讗 讬讜注讚讜 注''讬 诪讜住讚讜转 讛诪诇讻''专"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[412,444,38,15]},{"value":"","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2023","path":["砖讬谞讜讬讬诐 讘诪讛诇讱 砖谞转 2023:","讛讻谞住讜转 谞讟讜 诇砖谞讛","砖讬讜注讚讜 注''讬 诪讜住讚讜转 讛诪诇讻''专 诇讛砖拽注讛 讘专讻讜砖 拽讘讜注"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[332,446,5,3]},{"value":"","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2023","path":["砖讬谞讜讬讬诐 讘诪讛诇讱 砖谞转 2023:","讛讻谞住讜转 谞讟讜 诇砖谞讛","砖砖讬诪砖讜 诇专讻讜砖 拽讘讜注"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[228,446,5,3]},{"value":"43326","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2023","path":["砖讬谞讜讬讬诐 讘诪讛诇讱 砖谞转 2023:","讛讻谞住讜转 谞讟讜 诇砖谞讛","住讛''讻"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[139,444,38,15]},{"value":"(286449)","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2023","path":["砖讬谞讜讬讬诐 讘诪讛诇讱 砖谞转 2023:","讛注讘专转 住讻讜诪讬诐 诇专讻讬砖转 专讻讜砖 拽讘讜注","诇砖讬诪讜砖 诇驻注讬诇讜讬讜转 砖诇讗 讬讜注讚讜 注''讬 诪讜住讚讜转 讛诪诇讻''专"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[391,471,59,16]},{"value":"","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2023","path":["砖讬谞讜讬讬诐 讘诪讛诇讱 砖谞转 2023:","讛注讘专转 住讻讜诪讬诐 诇专讻讬砖转 专讻讜砖 拽讘讜注","砖讬讜注讚讜 注''讬 诪讜住讚讜转 讛诪诇讻''专 诇讛砖拽注讛 讘专讻讜砖 拽讘讜注"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[332,472,5,3]},{"value":"286449","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2023","path":["砖讬谞讜讬讬诐 讘诪讛诇讱 砖谞转 2023:","讛注讘专转 住讻讜诪讬诐 诇专讻讬砖转 专讻讜砖 拽讘讜注","砖砖讬诪砖讜 诇专讻讜砖 拽讘讜注"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[222,470,45,15]},{"value":"","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2023","path":["砖讬谞讜讬讬诐 讘诪讛诇讱 砖谞转 2023:","讛注讘专转 住讻讜诪讬诐 诇专讻讬砖转 专讻讜砖 拽讘讜注","住讛''讻"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[146,472,5,3]},{"value":"17068","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2023","path":["砖讬谞讜讬讬诐 讘诪讛诇讱 砖谞转 2023:","住讻讜诪讬诐 砖讬讜注讚讜 诇讻讬住讜讬 讛讜爪讗讜转 驻讞转","诇砖讬诪讜砖 诇驻注讬诇讜讬讜转 砖诇讗 讬讜注讚讜 注''讬 诪讜住讚讜转 讛诪诇讻''专"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[412,496,38,15]},{"value":"","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2023","path":["砖讬谞讜讬讬诐 讘诪讛诇讱 砖谞转 2023:","住讻讜诪讬诐 砖讬讜注讚讜 诇讻讬住讜讬 讛讜爪讗讜转 驻讞转","砖讬讜注讚讜 注''讬 诪讜住讚讜转 讛诪诇讻''专 诇讛砖拽注讛 讘专讻讜砖 拽讘讜注"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[332,498,5,3]},{"value":"(17068)","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2023","path":["砖讬谞讜讬讬诐 讘诪讛诇讱 砖谞转 2023:","住讻讜诪讬诐 砖讬讜注讚讜 诇讻讬住讜讬 讛讜爪讗讜转 驻讞转","砖砖讬诪砖讜 诇专讻讜砖 拽讘讜注"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[208,496,59,17]},{"value":"","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2023","path":["砖讬谞讜讬讬诐 讘诪讛诇讱 砖谞转 2023:","住讻讜诪讬诐 砖讬讜注讚讜 诇讻讬住讜讬 讛讜爪讗讜转 驻讞转","住讛''讻"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[146,498,5,3]},{"value":"(464404)","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2023-12-31","path":["讬转专讛 诇讬讜诐 31 讘讚爪诪讘专 2023","诇砖讬诪讜砖 诇驻注讬诇讜讬讜转 砖诇讗 讬讜注讚讜 注''讬 诪讜住讚讜转 讛诪诇讻''专"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[391,523,59,16]},{"value":"660571","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2023-12-31","path":["讬转专讛 诇讬讜诐 31 讘讚爪诪讘专 2023","砖讬讜注讚讜 注''讬 诪讜住讚讜转 讛诪诇讻''专 诇讛砖拽注讛 讘专讻讜砖 拽讘讜注"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[312,522,44,16]},{"value":"810066","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2023-12-31","path":["讬转专讛 诇讬讜诐 31 讘讚爪诪讘专 2023","砖砖讬诪砖讜 诇专讻讜砖 拽讘讜注"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[222,522,45,15]},{"value":"1006233","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2023-12-31","path":["讬转专讛 诇讬讜诐 31 讘讚爪诪讘专 2023","住讛''讻"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[124,522,54,16]},{"value":"(240627)","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2024","path":["砖讬谞讜讬讬诐 讘诪讛诇讱 砖谞转 2024:","讛讜爪讗讜转 谞讟讜 诇砖谞讛","诇砖讬诪讜砖 诇驻注讬诇讜讬讜转 砖诇讗 讬讜注讚讜 注''讬 诪讜住讚讜转 讛诪诇讻''专"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[391,571,59,17]},{"value":"","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2024","path":["砖讬谞讜讬讬诐 讘诪讛诇讱 砖谞转 2024:","讛讜爪讗讜转 谞讟讜 诇砖谞讛","砖讬讜注讚讜 注''讬 诪讜住讚讜转 讛诪诇讻''专 诇讛砖拽注讛 讘专讻讜砖 拽讘讜注"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[332,573,5,3]},{"value":"","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2024","path":["砖讬谞讜讬讬诐 讘诪讛诇讱 砖谞转 2024:","讛讜爪讗讜转 谞讟讜 诇砖谞讛","砖砖讬诪砖讜 诇专讻讜砖 拽讘讜注"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[228,573,5,3]},{"value":"(240627)","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2024","path":["砖讬谞讜讬讬诐 讘诪讛诇讱 砖谞转 2024:","讛讜爪讗讜转 谞讟讜 诇砖谞讛","住讛''讻"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[112,571,65,17]},{"value":"","comment":null,"is_note":false,"note":null,"note_reference":"讘讗讜专 1讘.","date":"2024","path":["砖讬谞讜讬讬诐 讘诪讛诇讱 砖谞转 2024:","住讻讜诪讬诐 砖讛转拽讘诇讜 讜讬讜注讚讜 诇专讻讬砖转 专讻讜砖 拽讘讜注 (专讗讛 讘讗讜专 1讘.)","诇砖讬诪讜砖 诇驻注讬诇讜讬讜转 砖诇讗 讬讜注讚讜 注''讬 诪讜住讚讜转 讛诪诇讻''专"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[412,618,5,3]},{"value":"40532323","comment":null,"is_note":false,"note":null,"note_reference":"讘讗讜专 1讘.","date":"2024","path":["砖讬谞讜讬讬诐 讘诪讛诇讱 砖谞转 2024:","住讻讜诪讬诐 砖讛转拽讘诇讜 讜讬讜注讚讜 诇专讻讬砖转 专讻讜砖 拽讘讜注 (专讗讛 讘讗讜专 1讘.)","砖讬讜注讚讜 注''讬 诪讜住讚讜转 讛诪诇讻''专 诇讛砖拽注讛 讘专讻讜砖 拽讘讜注"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[291,617,65,16]},{"value":"","comment":null,"is_note":false,"note":null,"note_reference":"讘讗讜专 1讘.","date":"2024","path":["砖讬谞讜讬讬诐 讘诪讛诇讱 砖谞转 2024:","住讻讜诪讬诐 砖讛转拽讘诇讜 讜讬讜注讚讜 诇专讻讬砖转 专讻讜砖 拽讘讜注 (专讗讛 讘讗讜专 1讘.)","砖砖讬诪砖讜 诇专讻讜砖 拽讘讜注"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[228,618,5,3]},{"value":"40532323","comment":null,"is_note":false,"note":null,"note_reference":"讘讗讜专 1讘.","date":"2024","path":["砖讬谞讜讬讬诐 讘诪讛诇讱 砖谞转 2024:","住讻讜诪讬诐 砖讛转拽讘诇讜 讜讬讜注讚讜 诇专讻讬砖转 专讻讜砖 拽讘讜注 (专讗讛 讘讗讜专 1讘.)","住讛''讻"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[112,616,65,16]},{"value":"","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2024","path":["砖讬谞讜讬讬诐 讘诪讛诇讱 砖谞转 2024:","讛讻谞住讜转 诪讬诪讜谉 砖谞爪讘专讜 讘驻拽讚讜谞讜转 讘讘谞拽","诇砖讬诪讜砖 诇驻注讬诇讜讬讜转 砖诇讗 讬讜注讚讜 注''讬 诪讜住讚讜转 讛诪诇讻''专"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[412,640,5,3]},{"value":"997829","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2024","path":["砖讬谞讜讬讬诐 讘诪讛诇讱 砖谞转 2024:","讛讻谞住讜转 诪讬诪讜谉 砖谞爪讘专讜 讘驻拽讚讜谞讜转 讘讘谞拽","砖讬讜注讚讜 注''讬 诪讜住讚讜转 讛诪诇讻''专 诇讛砖拽注讛 讘专讻讜砖 拽讘讜注"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[312,639,44,16]},{"value":"","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2024","path":["砖讬谞讜讬讬诐 讘诪讛诇讱 砖谞转 2024:","讛讻谞住讜转 诪讬诪讜谉 砖谞爪讘专讜 讘驻拽讚讜谞讜转 讘讘谞拽","砖砖讬诪砖讜 诇专讻讜砖 拽讘讜注"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[228,640,5,3]},{"value":"997829","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2024","path":["砖讬谞讜讬讬诐 讘诪讛诇讱 砖谞转 2024:","讛讻谞住讜转 诪讬诪讜谉 砖谞爪讘专讜 讘驻拽讚讜谞讜转 讘讘谞拽","住讛''讻"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[133,638,45,16]},{"value":"(848212)","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2024","path":["砖讬谞讜讬讬诐 讘诪讛诇讱 砖谞转 2024:","讛注讘专转 住讻讜诪讬诐 诇专讻讬砖转 专讻讜砖 拽讘讜注","诇砖讬诪讜砖 诇驻注讬诇讜讬讜转 砖诇讗 讬讜注讚讜 注''讬 诪讜住讚讜转 讛诪诇讻''专"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[391,663,59,16]},{"value":"","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2024","path":["砖讬谞讜讬讬诐 讘诪讛诇讱 砖谞转 2024:","讛注讘专转 住讻讜诪讬诐 诇专讻讬砖转 专讻讜砖 拽讘讜注","砖讬讜注讚讜 注''讬 诪讜住讚讜转 讛诪诇讻''专 诇讛砖拽注讛 讘专讻讜砖 拽讘讜注"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[332,664,5,3]},{"value":"848212","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2024","path":["砖讬谞讜讬讬诐 讘诪讛诇讱 砖谞转 2024:","讛注讘专转 住讻讜诪讬诐 诇专讻讬砖转 专讻讜砖 拽讘讜注","砖砖讬诪砖讜 诇专讻讜砖 拽讘讜注"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[222,662,45,15]},{"value":"","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2024","path":["砖讬谞讜讬讬诐 讘诪讛诇讱 砖谞转 2024:","讛注讘专转 住讻讜诪讬诐 诇专讻讬砖转 专讻讜砖 拽讘讜注","住讛''讻"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[139,664,5,3]},{"value":"16030","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2024","path":["砖讬谞讜讬讬诐 讘诪讛诇讱 砖谞转 2024:","住讻讜诪讬诐 砖讬讜注讚讜 诇讻讬住讜讬 讛讜爪讗讜转 驻讞转","诇砖讬诪讜砖 诇驻注讬诇讜讬讜转 砖诇讗 讬讜注讚讜 注''讬 诪讜住讚讜转 讛诪诇讻''专"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[412,686,38,15]},{"value":"","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2024","path":["砖讬谞讜讬讬诐 讘诪讛诇讱 砖谞转 2024:","住讻讜诪讬诐 砖讬讜注讚讜 诇讻讬住讜讬 讛讜爪讗讜转 驻讞转","砖讬讜注讚讜 注''讬 诪讜住讚讜转 讛诪诇讻''专 诇讛砖拽注讛 讘专讻讜砖 拽讘讜注"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[332,689,5,3]},{"value":"(16030)","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2024","path":["砖讬谞讜讬讬诐 讘诪讛诇讱 砖谞转 2024:","住讻讜诪讬诐 砖讬讜注讚讜 诇讻讬住讜讬 讛讜爪讗讜转 驻讞转","砖砖讬诪砖讜 诇专讻讜砖 拽讘讜注"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[208,686,59,17]},{"value":"","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2024","path":["砖讬谞讜讬讬诐 讘诪讛诇讱 砖谞转 2024:","住讻讜诪讬诐 砖讬讜注讚讜 诇讻讬住讜讬 讛讜爪讗讜转 驻讞转","住讛''讻"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[139,689,5,3]},{"value":"(1537213)","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2024-12-31","path":["讬转专讛 诇讬讜诐 31 讘讚爪诪讘专 2024","诇砖讬诪讜砖 诇驻注讬诇讜讬讜转 砖诇讗 讬讜注讚讜 注''讬 诪讜住讚讜转 讛诪诇讻''专"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[384,710,66,17]},{"value":"42190723","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2024-12-31","path":["讬转专讛 诇讬讜诐 31 讘讚爪诪讘专 2024","砖讬讜注讚讜 注''讬 诪讜住讚讜转 讛诪诇讻''专 诇讛砖拽注讛 讘专讻讜砖 拽讘讜注"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[291,710,65,16]},{"value":"1642248","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2024-12-31","path":["讬转专讛 诇讬讜诐 31 讘讚爪诪讘专 2024","砖砖讬诪砖讜 诇专讻讜砖 拽讘讜注"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[204,709,63,15]},{"value":"42295758","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2024-12-31","path":["讬转专讛 诇讬讜诐 31 讘讚爪诪讘专 2024","住讛''讻"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[112,709,65,16]}]} | |
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":"4","comment":"2","is_note":true,"note":"2","note_reference":"","date":null,"path":["2. 注讬拽专讬 讛诪讚讬谞讬讜转 讛讞砖讘讜谞讗讬转","讚. 专讻讜砖 拽讘讜注","(2) 驻讞转 诪讛专讻讜砖 讛拽讘讜注 诪讞讜砖讘 讘砖讬讟转 讛拽讜 讛讬砖专 讘砖讬注讜专讬诐 讛砖谞转讬讬诐 讛讘讗讬诐","诪讘谞讛"],"currency":null,"scale":null,"value_type":"%","bbox":[300,719,12,18]},{"value":"","comment":"2","is_note":true,"note":"2","note_reference":"7-10","date":null,"path":["2. 注讬拽专讬 讛诪讚讬谞讬讜转 讛讞砖讘讜谞讗讬转","讚. 专讻讜砖 拽讘讜注","(2) 驻讞转 诪讛专讻讜砖 讛拽讘讜注 诪讞讜砖讘 讘砖讬讟转 讛拽讜 讛讬砖专 讘砖讬注讜专讬诐 讛砖谞转讬讬诐 讛讘讗讬诐","专讬讛讜讟 讜爪讬讜讚"],"currency":null,"scale":null,"value_type":"%","bbox":[286,742,33,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":"notes","title":"讘讬讗讜专讬诐 诇讚讜讞讜转 讛讻住驻讬讬诐"},"facts":[{"value":"1299782","comment":"4","is_note":true,"note":"4","note_reference":"","date":"2024-12-31","path":["4. 专讻讜砖 拽讘讜注","讗. 讛专讻讘","诪讘谞讛","注诇讜转"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[408,347,61,17]},{"value":"1214744","comment":"4","is_note":true,"note":"4","note_reference":"","date":"2024-12-31","path":["4. 专讻讜砖 拽讘讜注","讗. 讛专讻讘","诪讘谞讛","驻讞转 砖谞爪讘专"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[324,347,62,17]},{"value":"85038","comment":"4","is_note":true,"note":"4","note_reference":"","date":"2024-12-31","path":["4. 专讻讜砖 拽讘讜注","讗. 讛专讻讘","诪讘谞讛","注诇讜转 诪讜驻讞转转"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[244,347,44,16]},{"value":"86974","comment":"4","is_note":true,"note":"4","note_reference":"","date":"2023-12-31","path":["4. 专讻讜砖 拽讘讜注","讗. 讛专讻讘","诪讘谞讛","注诇讜转 诪讜驻讞转转"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[150,348,42,16]},{"value":"475416","comment":"4","is_note":true,"note":"4","note_reference":"","date":"2024-12-31","path":["4. 专讻讜砖 拽讘讜注","讗. 讛专讻讘","专讬讛讜讟 讜爪讬讜讚","注诇讜转"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[414,370,55,17]},{"value":"276813","comment":"4","is_note":true,"note":"4","note_reference":"","date":"2024-12-31","path":["4. 专讻讜砖 拽讘讜注","讗. 讛专讻讘","专讬讛讜讟 讜爪讬讜讚","驻讞转 砖谞爪讘专"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[333,370,51,17]},{"value":"198603","comment":"4","is_note":true,"note":"4","note_reference":"","date":"2024-12-31","path":["4. 专讻讜砖 拽讘讜注","讗. 讛专讻讘","专讬讛讜讟 讜爪讬讜讚","注诇讜转 诪讜驻讞转转"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[239,371,50,16]},{"value":"140060","comment":"4","is_note":true,"note":"4","note_reference":"","date":"2023-12-31","path":["4. 专讻讜砖 拽讘讜注","讗. 讛专讻讘","专讬讛讜讟 讜爪讬讜讚","注诇讜转 诪讜驻讞转转"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[144,371,50,16]},{"value":"1775198","comment":"4","is_note":true,"note":"4","note_reference":"","date":"2024-12-31","path":["4. 专讻讜砖 拽讘讜注","讗. 讛专讻讘","住讛\"讻","注诇讜转"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[406,394,63,17]},{"value":"1491557","comment":"4","is_note":true,"note":"4","note_reference":"","date":"2024-12-31","path":["4. 专讻讜砖 拽讘讜注","讗. 讛专讻讘","住讛\"讻","驻讞转 砖谞爪讘专"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[324,394,61,17]},{"value":"283641","comment":"4","is_note":true,"note":"4","note_reference":"","date":"2024-12-31","path":["4. 专讻讜砖 拽讘讜注","讗. 讛专讻讘","住讛\"讻","注诇讜转 诪讜驻讞转转"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[240,394,49,16]},{"value":"227034","comment":"4","is_note":true,"note":"4","note_reference":"","date":"2023-12-31","path":["4. 专讻讜砖 拽讘讜注","讗. 讛专讻讘","住讛\"讻","注诇讜转 诪讜驻讞转转"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[145,395,49,16]},{"value":"1358607","comment":"4","is_note":true,"note":"4","note_reference":"讘. 诇讛诇谉","date":"2024-12-31","path":["4. 专讻讜砖 拽讘讜注","讗. 讛专讻讘","转砖诇讜诪讬诐 注诇-讞砖讘讜谉 诪讘谞讛 讘转讻谞讜谉 (讘. 诇讛诇谉)","注诇讜转 诪讜驻讞转转"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[227,422,59,20]},{"value":"583032","comment":"4","is_note":true,"note":"4","note_reference":"讘. 诇讛诇谉","date":"2023-12-31","path":["4. 专讻讜砖 拽讘讜注","讗. 讛专讻讘","转砖诇讜诪讬诐 注诇-讞砖讘讜谉 诪讘谞讛 讘转讻谞讜谉 (讘. 诇讛诇谉)","注诇讜转 诪讜驻讞转转"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[143,424,50,18]},{"value":"1642248","comment":"4","is_note":true,"note":"4","note_reference":"","date":"2024-12-31","path":["4. 专讻讜砖 拽讘讜注","讗. 讛专讻讘","住讛\"讻 专讻讜砖 拽讘讜注","注诇讜转 诪讜驻讞转转"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[228,447,59,19]},{"value":"810066","comment":"4","is_note":true,"note":"4","note_reference":"","date":"2023-12-31","path":["4. 专讻讜砖 拽讘讜注","讗. 讛专讻讘","住讛\"讻 专讻讜砖 拽讘讜注","注诇讜转 诪讜驻讞转转"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[142,448,52,18]},{"value":"61907","comment":"5","is_note":true,"note":"5","note_reference":"","date":"2024-12-31","path":["5. 讝讻讗讬诐 讜讬转专讜转 讝讻讜转","讛专讻讘 :","住驻拽讬诐 讜谞讜转谞讬 砖讬专讜转讬诐"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[242,710,44,18]},{"value":"40447","comment":"5","is_note":true,"note":"5","note_reference":"","date":"2023-12-31","path":["5. 讝讻讗讬诐 讜讬转专讜转 讝讻讜转","讛专讻讘 :","住驻拽讬诐 讜谞讜转谞讬 砖讬专讜转讬诐"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[148,710,47,18]},{"value":"25000","comment":"5","is_note":true,"note":"5","note_reference":"","date":"2024-12-31","path":["5. 讝讻讗讬诐 讜讬转专讜转 讝讻讜转","讛专讻讘 :","讘注诇讬 诪谞讬讜转"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[243,735,43,18]},{"value":"","comment":"5","is_note":true,"note":"5","note_reference":"","date":"2023-12-31","path":["5. 讝讻讗讬诐 讜讬转专讜转 讝讻讜转","讛专讻讘 :","讘注诇讬 诪谞讬讜转"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[158,736,16,17]},{"value":"50847","comment":"5","is_note":true,"note":"5","note_reference":"","date":"2024-12-31","path":["5. 讝讻讗讬诐 讜讬转专讜转 讝讻讜转","讛专讻讘 :","砖讻专 讜谞诇讜讜转 诇砖诇诐"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[242,758,43,18]},{"value":"43712","comment":"5","is_note":true,"note":"5","note_reference":"","date":"2023-12-31","path":["5. 讝讻讗讬诐 讜讬转专讜转 讝讻讜转","讛专讻讘 :","砖讻专 讜谞诇讜讜转 诇砖诇诐"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[146,757,49,19]},{"value":"137754","comment":"5","is_note":true,"note":"5","note_reference":"","date":"2024-12-31","path":["5. 讝讻讗讬诐 讜讬转专讜转 讝讻讜转","讛专讻讘 :","住讛\"讻"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[237,783,47,18]},{"value":"84159","comment":"5","is_note":true,"note":"5","note_reference":"","date":"2023-12-31","path":["5. 讝讻讗讬诐 讜讬转专讜转 讝讻讜转","讛专讻讘 :","住讛\"讻"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[144,781,50,20]}]} | |
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":"9","type":"notes","title":"讘讗讜专讬诐 诇讚讜讞讜转 讛讻住驻讬讬诐"},"facts":[{"value":"990027","comment":"8","is_note":true,"note":"8","note_reference":"","date":"2024-12-31","path":["8. 讛拽爪讘讜转 讜转诪讬讻讜转","讛专讻讘","诪诪砖专讚 讛讞讬谞讜讱"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[257,431,54,20]},{"value":"973336","comment":"8","is_note":true,"note":"8","note_reference":"","date":"2023-12-31","path":["8. 讛拽爪讘讜转 讜转诪讬讻讜转","讛专讻讘","诪诪砖专讚 讛讞讬谞讜讱"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[168,434,52,18]},{"value":"192662","comment":"8","is_note":true,"note":"8","note_reference":"","date":"2024-12-31","path":["8. 讛拽爪讘讜转 讜转诪讬讻讜转","讛专讻讘","诪诪砖专讚 讛讞讬谞讜讱 - 诪讜住讚讜转 讚转"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[260,457,52,17]},{"value":"227368","comment":"8","is_note":true,"note":"8","note_reference":"","date":"2023-12-31","path":["8. 讛拽爪讘讜转 讜转诪讬讻讜转","讛专讻讘","诪诪砖专讚 讛讞讬谞讜讱 - 诪讜住讚讜转 讚转"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[170,455,50,18]},{"value":"1182689","comment":"8","is_note":true,"note":"8","note_reference":"","date":"2024-12-31","path":["8. 讛拽爪讘讜转 讜转诪讬讻讜转","讛专讻讘"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[249,481,63,22]},{"value":"1200704","comment":"8","is_note":true,"note":"8","note_reference":"","date":"2023-12-31","path":["8. 讛拽爪讘讜转 讜转诪讬讻讜转","讛专讻讘"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[159,480,61,22]},{"value":"81990","comment":"9","is_note":true,"note":"9","note_reference":"","date":"2024-12-31","path":["9. 讻诇讻诇转 转诇诪讬讚讬诐","讛专讻讘","诪砖讻讜专讜转 讜谞诇讜讜转 诇注讜讘讚讬 诪讟讘讞"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[249,626,45,19]},{"value":"81529","comment":"9","is_note":true,"note":"9","note_reference":"","date":"2023-12-31","path":["9. 讻诇讻诇转 转诇诪讬讚讬诐","讛专讻讘","诪砖讻讜专讜转 讜谞诇讜讜转 诇注讜讘讚讬 诪讟讘讞"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[168,624,44,19]},{"value":"389850","comment":"9","is_note":true,"note":"9","note_reference":"","date":"2024-12-31","path":["9. 讻诇讻诇转 转诇诪讬讚讬诐","讛专讻讘","拽谞讬讜转 诪讝讜谉 讜讻诇讬 诪讟讘讞"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[244,648,49,18]},{"value":"367331","comment":"9","is_note":true,"note":"9","note_reference":"","date":"2023-12-31","path":["9. 讻诇讻诇转 转诇诪讬讚讬诐","讛专讻讘","拽谞讬讜转 诪讝讜谉 讜讻诇讬 诪讟讘讞"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[162,647,48,18]},{"value":"471840","comment":"9","is_note":true,"note":"9","note_reference":"","date":"2024-12-31","path":["9. 讻诇讻诇转 转诇诪讬讚讬诐","讛专讻讘"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[240,673,52,22]},{"value":"448860","comment":"9","is_note":true,"note":"9","note_reference":"","date":"2023-12-31","path":["9. 讻诇讻诇转 转诇诪讬讚讬诐","讛专讻讘"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[160,671,51,20]},{"value":"382675","comment":"10","is_note":true,"note":"10","note_reference":"","date":"2024-12-31","path":["10. 讛讜爪讗讜转 讛谞讛诇讛 讜讻诇诇讬讜转","讛专讻讘","诪砖讻讜专讜转 讜谞诇讜讜转"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[229,839,65,22]},{"value":"217349","comment":"10","is_note":true,"note":"10","note_reference":"","date":"2023-12-31","path":["10. 讛讜爪讗讜转 讛谞讛诇讛 讜讻诇诇讬讜转","讛专讻讘","诪砖讻讜专讜转 讜谞诇讜讜转"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[142,836,62,20]},{"value":"80212","comment":"10","is_note":true,"note":"10","note_reference":"","date":"2024-12-31","path":["10. 讛讜爪讗讜转 讛谞讛诇讛 讜讻诇诇讬讜转","讛专讻讘","砖讻专 诪拽爪讜注讬"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[241,862,56,20]},{"value":"51728","comment":"10","is_note":true,"note":"10","note_reference":"","date":"2023-12-31","path":["10. 讛讜爪讗讜转 讛谞讛诇讛 讜讻诇诇讬讜转","讛专讻讘","砖讻专 诪拽爪讜注讬"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[153,859,54,19]},{"value":"7093","comment":"10","is_note":true,"note":"10","note_reference":"","date":"2024-12-31","path":["10. 讛讜爪讗讜转 讛谞讛诇讛 讜讻诇诇讬讜转","讛专讻讘","讟诇驻讜谉 讜转拽砖讜专转"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[250,883,46,19]},{"value":"6533","comment":"10","is_note":true,"note":"10","note_reference":"","date":"2023-12-31","path":["10. 讛讜爪讗讜转 讛谞讛诇讛 讜讻诇诇讬讜转","讛专讻讘","讟诇驻讜谉 讜转拽砖讜专转"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[162,882,43,18]},{"value":"16484","comment":"10","is_note":true,"note":"10","note_reference":"","date":"2024-12-31","path":["10. 讛讜爪讗讜转 讛谞讛诇讛 讜讻诇诇讬讜转","讛专讻讘","诪砖专讚讬讜转 讜谞住讬注讜转"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[241,906,55,20]},{"value":"12203","comment":"10","is_note":true,"note":"10","note_reference":"","date":"2023-12-31","path":["10. 讛讜爪讗讜转 讛谞讛诇讛 讜讻诇诇讬讜转","讛专讻讘","诪砖专讚讬讜转 讜谞住讬注讜转"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[152,905,52,20]},{"value":"2662","comment":"10","is_note":true,"note":"10","note_reference":"","date":"2024-12-31","path":["10. 讛讜爪讗讜转 讛谞讛诇讛 讜讻诇诇讬讜转","讛专讻讘","讗讙专讜转"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[249,929,47,20]},{"value":"2415","comment":"10","is_note":true,"note":"10","note_reference":"","date":"2023-12-31","path":["10. 讛讜爪讗讜转 讛谞讛诇讛 讜讻诇诇讬讜转","讛专讻讘","讗讙专讜转"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[160,929,46,20]},{"value":"489126","comment":"10","is_note":true,"note":"10","note_reference":"","date":"2024-12-31","path":["10. 讛讜爪讗讜转 讛谞讛诇讛 讜讻诇诇讬讜转","讛专讻讘"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[228,955,68,22]},{"value":"290228","comment":"10","is_note":true,"note":"10","note_reference":"","date":"2023-12-31","path":["10. 讛讜爪讗讜转 讛谞讛诇讛 讜讻诇诇讬讜转","讛专讻讘"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[141,952,64,20]}]} | |
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":"10","type":"notes","title":"讘讗讜专讬诐 诇讚讜讞讜转 讛讻住驻讬讬诐"},"facts":[{"value":"","comment":"11","is_note":true,"note":"11","note_reference":"","date":"2022-12-31","path":["讛讻谞住讜转 诪讬诪讜谉, 谞讟讜","专讘讬转 诪驻拽讚讜谞讜转 讘讘谞拽"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[264,350,7,16]},{"value":"84155","comment":"11","is_note":true,"note":"11","note_reference":"","date":"2023-12-31","path":["讛讻谞住讜转 诪讬诪讜谉, 谞讟讜","专讘讬转 诪驻拽讚讜谞讜转 讘讘谞拽"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[172,349,45,18]},{"value":"37951","comment":"11","is_note":true,"note":"11","note_reference":"","date":"2022-12-31","path":["讛讻谞住讜转 诪讬诪讜谉, 谞讟讜","专讜讜讞 诪诪讬诪讜砖 讜讛转讗诪转 注专讱 谞讬讬专讜转 注专讱"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[247,375,45,18]},{"value":"31369","comment":"11","is_note":true,"note":"11","note_reference":"","date":"2023-12-31","path":["讛讻谞住讜转 诪讬诪讜谉, 谞讟讜","专讜讜讞 诪诪讬诪讜砖 讜讛转讗诪转 注专讱 谞讬讬专讜转 注专讱"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[172,375,45,18]},{"value":"(19067)","comment":"11","is_note":true,"note":"11","note_reference":"","date":"2022-12-31","path":["讛讻谞住讜转 诪讬诪讜谉, 谞讟讜","专讬讘讬转 讜注诪诇讜转 讘谞拽"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[245,399,50,18]},{"value":"(16717)","comment":"11","is_note":true,"note":"11","note_reference":"","date":"2023-12-31","path":["讛讻谞住讜转 诪讬诪讜谉, 谞讟讜","专讬讘讬转 讜注诪诇讜转 讘谞拽"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[168,399,50,18]},{"value":"18884","comment":"11","is_note":true,"note":"11","note_reference":"","date":"2022-12-31","path":["讛讻谞住讜转 诪讬诪讜谉, 谞讟讜"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[247,422,45,19]},{"value":"98807","comment":"11","is_note":true,"note":"11","note_reference":"","date":"2023-12-31","path":["讛讻谞住讜转 诪讬诪讜谉, 谞讟讜"],"currency":"ILS","scale":1,"value_type":"amount","bbox":[172,422,45,19]}]} |
README.md exists but content is empty.
- Downloads last month
- 11