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": [
{
"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`.
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": [
{
"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`.
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": [
{
"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`.
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"},{"value":"851625","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2023-12-31","path":["专讻讜砖","专讻讜砖 砖讜讟祝","诪讝讜诪谞讬诐 讜砖讜讜讛 诪讝讜诪谞讬诐"],"currency":"ILS","scale":1,"value_type":"amount"},{"value":"322816","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2024-12-31","path":["专讻讜砖","专讻讜砖 砖讜讟祝","讛砖拽注讜转 讘谞讬讬专讜转 注专讱"],"currency":"ILS","scale":1,"value_type":"amount"},{"value":"537962","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2023-12-31","path":["专讻讜砖","专讻讜砖 砖讜讟祝","讛砖拽注讜转 讘谞讬讬专讜转 注专讱"],"currency":"ILS","scale":1,"value_type":"amount"},{"value":"6644","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2024-12-31","path":["专讻讜砖","专讻讜砖 砖讜讟祝","讞讬讬讘讬诐 讜讬转专讜转 讞讜讘讛"],"currency":"ILS","scale":1,"value_type":"amount"},{"value":"","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2023-12-31","path":["专讻讜砖","专讻讜砖 砖讜讟祝","讞讬讬讘讬诐 讜讬转专讜转 讞讜讘讛"],"currency":"ILS","scale":1,"value_type":"amount"},{"value":"1074844","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2024-12-31","path":["专讻讜砖","专讻讜砖 砖讜讟祝"],"currency":"ILS","scale":1,"value_type":"amount"},{"value":"1389587","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2023-12-31","path":["专讻讜砖","专讻讜砖 砖讜讟祝"],"currency":"ILS","scale":1,"value_type":"amount"},{"value":"40006913","comment":null,"is_note":false,"note":null,"note_reference":"3","date":"2024-12-31","path":["专讻讜砖","讛砖拽注讜转","驻拽讚讜谞讜转 讘讘谞拽讬诐"],"currency":"ILS","scale":1,"value_type":"amount"},{"value":"7016757","comment":null,"is_note":false,"note":null,"note_reference":"3","date":"2023-12-31","path":["专讻讜砖","讛砖拽注讜转","驻拽讚讜谞讜转 讘讘谞拽讬诐"],"currency":"ILS","scale":1,"value_type":"amount"},{"value":"1642248","comment":null,"is_note":false,"note":null,"note_reference":"4","date":"2024-12-31","path":["专讻讜砖","专讻讜砖 拽讘讜注"],"currency":"ILS","scale":1,"value_type":"amount"},{"value":"810066","comment":null,"is_note":false,"note":null,"note_reference":"4","date":"2023-12-31","path":["专讻讜砖","专讻讜砖 拽讘讜注"],"currency":"ILS","scale":1,"value_type":"amount"},{"value":"42724005","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2024-12-31","path":["专讻讜砖"],"currency":"ILS","scale":1,"value_type":"amount"},{"value":"9216410","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2023-12-31","path":["专讻讜砖"],"currency":"ILS","scale":1,"value_type":"amount"},{"value":"43125","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2024-12-31","path":["讛转讞讬讬讘讜讬讜转 讜谞讻住讬诐 谞讟讜","讛转讞讬讬讘讜讬讜转 砖讜讟驻讜转:","讛诪讞讗讜转 诇驻专注讜谉"],"currency":"ILS","scale":1,"value_type":"amount"},{"value":"14250","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2023-12-31","path":["讛转讞讬讬讘讜讬讜转 讜谞讻住讬诐 谞讟讜","讛转讞讬讬讘讜讬讜转 砖讜讟驻讜转:","讛诪讞讗讜转 诇驻专注讜谉"],"currency":"ILS","scale":1,"value_type":"amount"},{"value":"137754","comment":null,"is_note":false,"note":null,"note_reference":"5","date":"2024-12-31","path":["讛转讞讬讬讘讜讬讜转 讜谞讻住讬诐 谞讟讜","讛转讞讬讬讘讜讬讜转 砖讜讟驻讜转:","讝讻讗讬诐 讜讬转专讜转 讝讻讜转"],"currency":"ILS","scale":1,"value_type":"amount"},{"value":"84159","comment":null,"is_note":false,"note":null,"note_reference":"5","date":"2023-12-31","path":["讛转讞讬讬讘讜讬讜转 讜谞讻住讬诐 谞讟讜","讛转讞讬讬讘讜讬讜转 砖讜讟驻讜转:","讝讻讗讬诐 讜讬转专讜转 讝讻讜转"],"currency":"ILS","scale":1,"value_type":"amount"},{"value":"","comment":null,"is_note":false,"note":null,"note_reference":"6","date":"2024-12-31","path":["讛转讞讬讬讘讜讬讜转 讜谞讻住讬诐 谞讟讜","讛转讞讬讬讘讜讬讜转 砖讜讟驻讜转:","诪拽讚诪讜转 注诇-讞砖讘讜谉 诪讻讬专转 诪拽专拽注讬谉"],"currency":"ILS","scale":1,"value_type":"amount"},{"value":"7864400","comment":null,"is_note":false,"note":null,"note_reference":"6","date":"2023-12-31","path":["讛转讞讬讬讘讜讬讜转 讜谞讻住讬诐 谞讟讜","讛转讞讬讬讘讜讬讜转 砖讜讟驻讜转:","诪拽讚诪讜转 注诇-讞砖讘讜谉 诪讻讬专转 诪拽专拽注讬谉"],"currency":"ILS","scale":1,"value_type":"amount"},{"value":"180879","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2024-12-31","path":["讛转讞讬讬讘讜讬讜转 讜谞讻住讬诐 谞讟讜","讛转讞讬讬讘讜讬讜转 砖讜讟驻讜转:"],"currency":"ILS","scale":1,"value_type":"amount"},{"value":"7962809","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2023-12-31","path":["讛转讞讬讬讘讜讬讜转 讜谞讻住讬诐 谞讟讜","讛转讞讬讬讘讜讬讜转 砖讜讟驻讜转:"],"currency":"ILS","scale":1,"value_type":"amount"},{"value":"247368","comment":null,"is_note":false,"note":null,"note_reference":"7","date":"2024-12-31","path":["讛转讞讬讬讘讜讬讜转 讜谞讻住讬诐 谞讟讜","讛转讞讬讬讘讜讬讜转 诇讝诪谉 讗专讜讱 -","讘讙讬谉 住讬讜诐 讬讞住讬 注讜讘讚-诪注讘讬讚"],"currency":"ILS","scale":1,"value_type":"amount"},{"value":"247368","comment":null,"is_note":false,"note":null,"note_reference":"7","date":"2023-12-31","path":["讛转讞讬讬讘讜讬讜转 讜谞讻住讬诐 谞讟讜","讛转讞讬讬讘讜讬讜转 诇讝诪谉 讗专讜讱 -","讘讙讬谉 住讬讜诐 讬讞住讬 注讜讘讚-诪注讘讬讚"],"currency":"ILS","scale":1,"value_type":"amount"},{"value":"(1537213)","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2024-12-31","path":["讛转讞讬讬讘讜讬讜转 讜谞讻住讬诐 谞讟讜","谞讻住讬诐 谞讟讜:","砖诇讗 讬讜注讚讜 注\"讬 诪讜住讚讜转 讛诪诇讻\"专"],"currency":"ILS","scale":1,"value_type":"amount"},{"value":"(464404)","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2023-12-31","path":["讛转讞讬讬讘讜讬讜转 讜谞讻住讬诐 谞讟讜","谞讻住讬诐 谞讟讜:","砖诇讗 讬讜注讚讜 注\"讬 诪讜住讚讜转 讛诪诇讻\"专"],"currency":"ILS","scale":1,"value_type":"amount"},{"value":"42190723","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2024-12-31","path":["讛转讞讬讬讘讜讬讜转 讜谞讻住讬诐 谞讟讜","谞讻住讬诐 谞讟讜:","砖讬讜注讚讜 注\"讬 诪讜住讚讜转 讛诪诇讻\"专 诇讛砖拽注讛 讘专讻讜砖 拽讘讜注"],"currency":"ILS","scale":1,"value_type":"amount"},{"value":"660571","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2023-12-31","path":["讛转讞讬讬讘讜讬讜转 讜谞讻住讬诐 谞讟讜","谞讻住讬诐 谞讟讜:","砖讬讜注讚讜 注\"讬 诪讜住讚讜转 讛诪诇讻\"专 诇讛砖拽注讛 讘专讻讜砖 拽讘讜注"],"currency":"ILS","scale":1,"value_type":"amount"},{"value":"1642248","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2024-12-31","path":["讛转讞讬讬讘讜讬讜转 讜谞讻住讬诐 谞讟讜","谞讻住讬诐 谞讟讜:","砖砖讬诪砖讜 诇专讻讜砖 拽讘讜注"],"currency":"ILS","scale":1,"value_type":"amount"},{"value":"810066","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2023-12-31","path":["讛转讞讬讬讘讜讬讜转 讜谞讻住讬诐 谞讟讜","谞讻住讬诐 谞讟讜:","砖砖讬诪砖讜 诇专讻讜砖 拽讘讜注"],"currency":"ILS","scale":1,"value_type":"amount"},{"value":"42295758","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2024-12-31","path":["讛转讞讬讬讘讜讬讜转 讜谞讻住讬诐 谞讟讜","谞讻住讬诐 谞讟讜:"],"currency":"ILS","scale":1,"value_type":"amount"},{"value":"1006233","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2023-12-31","path":["讛转讞讬讬讘讜讬讜转 讜谞讻住讬诐 谞讟讜","谞讻住讬诐 谞讟讜:"],"currency":"ILS","scale":1,"value_type":"amount"},{"value":"42724005","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2024-12-31","path":["讛转讞讬讬讘讜讬讜转 讜谞讻住讬诐 谞讟讜"],"currency":"ILS","scale":1,"value_type":"amount"},{"value":"9216410","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2023-12-31","path":["讛转讞讬讬讘讜讬讜转 讜谞讻住讬诐 谞讟讜"],"currency":"ILS","scale":1,"value_type":"amount"}]} | |
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": [
{
"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`.
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"},{"value":"1200704","comment":null,"is_note":false,"note":null,"note_reference":"8","date":"2023-12-31","path":["诪讞讝讜专 讛驻注讬诇讜讬讜转:","讛拽爪讘讜转"],"currency":"ILS","scale":1,"value_type":"amount"},{"value":"929884","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2024-12-31","path":["诪讞讝讜专 讛驻注讬诇讜讬讜转:","砖讻专 诇讬诪讜讚 讜讛砖转转驻讜讬讜转"],"currency":"ILS","scale":1,"value_type":"amount"},{"value":"864227","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2023-12-31","path":["诪讞讝讜专 讛驻注讬诇讜讬讜转:","砖讻专 诇讬诪讜讚 讜讛砖转转驻讜讬讜转"],"currency":"ILS","scale":1,"value_type":"amount"},{"value":"411371","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2024-12-31","path":["诪讞讝讜专 讛驻注讬诇讜讬讜转:","转专讜诪讜转"],"currency":"ILS","scale":1,"value_type":"amount"},{"value":"614831","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2023-12-31","path":["诪讞讝讜专 讛驻注讬诇讜讬讜转:","转专讜诪讜转"],"currency":"ILS","scale":1,"value_type":"amount"},{"value":"2523944","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2024-12-31","path":["诪讞讝讜专 讛驻注讬诇讜讬讜转:"],"currency":"ILS","scale":1,"value_type":"amount"},{"value":"2679762","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2023-12-31","path":["诪讞讝讜专 讛驻注讬诇讜讬讜转:"],"currency":"ILS","scale":1,"value_type":"amount"},{"value":"795690","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2024-12-31","path":["注诇讜转 讛驻注讬诇讜讬讜转:","诪砖讻讜专讜转 讜转讜住驻讜转 住讜爪讬讗诇讬讜转"],"currency":"ILS","scale":1,"value_type":"amount"},{"value":"919976","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2023-12-31","path":["注诇讜转 讛驻注讬诇讜讬讜转:","诪砖讻讜专讜转 讜转讜住驻讜转 住讜爪讬讗诇讬讜转"],"currency":"ILS","scale":1,"value_type":"amount"},{"value":"754895","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2024-12-31","path":["注诇讜转 讛驻注讬诇讜讬讜转:","诪诇讙讜转 诇讗讘专讻讬诐"],"currency":"ILS","scale":1,"value_type":"amount"},{"value":"849868","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2023-12-31","path":["注诇讜转 讛驻注讬诇讜讬讜转:","诪诇讙讜转 诇讗讘专讻讬诐"],"currency":"ILS","scale":1,"value_type":"amount"},{"value":"471840","comment":null,"is_note":false,"note":null,"note_reference":"9","date":"2024-12-31","path":["注诇讜转 讛驻注讬诇讜讬讜转:","讻诇讻诇转 转诇诪讬讚讬诐"],"currency":"ILS","scale":1,"value_type":"amount"},{"value":"448860","comment":null,"is_note":false,"note":null,"note_reference":"9","date":"2023-12-31","path":["注诇讜转 讛驻注讬诇讜讬讜转:","讻诇讻诇转 转诇诪讬讚讬诐"],"currency":"ILS","scale":1,"value_type":"amount"},{"value":"186727","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2024-12-31","path":["注诇讜转 讛驻注讬诇讜讬讜转:","讗讞讝拽转 诪讘谞讛"],"currency":"ILS","scale":1,"value_type":"amount"},{"value":"243092","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2023-12-31","path":["注诇讜转 讛驻注讬诇讜讬讜转:","讗讞讝拽转 诪讘谞讛"],"currency":"ILS","scale":1,"value_type":"amount"},{"value":"20755","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2024-12-31","path":["注诇讜转 讛驻注讬诇讜讬讜转:","讗讬专讜注讬诐 讜讻谞住讬诐 讞讘专转讬讬诐"],"currency":"ILS","scale":1,"value_type":"amount"},{"value":"22586","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2023-12-31","path":["注诇讜转 讛驻注讬诇讜讬讜转:","讗讬专讜注讬诐 讜讻谞住讬诐 讞讘专转讬讬诐"],"currency":"ILS","scale":1,"value_type":"amount"},{"value":"48392","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2024-12-31","path":["注诇讜转 讛驻注讬诇讜讬讜转:","讛住注讜转 转诇诪讬讚讬诐"],"currency":"ILS","scale":1,"value_type":"amount"},{"value":"28663","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2023-12-31","path":["注诇讜转 讛驻注讬诇讜讬讜转:","讛住注讜转 转诇诪讬讚讬诐"],"currency":"ILS","scale":1,"value_type":"amount"},{"value":"16030","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2024-12-31","path":["注诇讜转 讛驻注讬诇讜讬讜转:","驻讞转 诪专讻讜砖 拽讘讜注"],"currency":"ILS","scale":1,"value_type":"amount"},{"value":"17069","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2023-12-31","path":["注诇讜转 讛驻注讬诇讜讬讜转:","驻讞转 诪专讻讜砖 拽讘讜注"],"currency":"ILS","scale":1,"value_type":"amount"},{"value":"2294329","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2024-12-31","path":["注诇讜转 讛驻注讬诇讜讬讜转:"],"currency":"ILS","scale":1,"value_type":"amount"},{"value":"2530114","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2023-12-31","path":["注诇讜转 讛驻注讬诇讜讬讜转:"],"currency":"ILS","scale":1,"value_type":"amount"},{"value":"229615","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2024-12-31","path":["讛讻谞住讜转 谞讟讜 诪驻注讬诇讜讬讜转"],"currency":"ILS","scale":1,"value_type":"amount"},{"value":"149648","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2023-12-31","path":["讛讻谞住讜转 谞讟讜 诪驻注讬诇讜讬讜转"],"currency":"ILS","scale":1,"value_type":"amount"},{"value":"489126","comment":null,"is_note":false,"note":null,"note_reference":"10","date":"2024-12-31","path":["讛讜爪讗讜转 讛谞讛诇讛 讜讻诇诇讬讜转"],"currency":"ILS","scale":1,"value_type":"amount"},{"value":"290228","comment":null,"is_note":false,"note":null,"note_reference":"10","date":"2023-12-31","path":["讛讜爪讗讜转 讛谞讛诇讛 讜讻诇诇讬讜转"],"currency":"ILS","scale":1,"value_type":"amount"},{"value":"(259511)","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2024-12-31","path":[],"currency":"ILS","scale":1,"value_type":"amount"},{"value":"(140580)","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2023-12-31","path":[],"currency":"ILS","scale":1,"value_type":"amount"},{"value":"18884","comment":null,"is_note":false,"note":null,"note_reference":"11","date":"2024-12-31","path":["讛讻谞住讜转 诪讬诪讜谉, 谞讟讜"],"currency":"ILS","scale":1,"value_type":"amount"},{"value":"98807","comment":null,"is_note":false,"note":null,"note_reference":"11","date":"2023-12-31","path":["讛讻谞住讜转 诪讬诪讜谉, 谞讟讜"],"currency":"ILS","scale":1,"value_type":"amount"},{"value":"(240627)","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2024-12-31","path":[],"currency":"ILS","scale":1,"value_type":"amount"},{"value":"(41773)","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2023-12-31","path":[],"currency":"ILS","scale":1,"value_type":"amount"},{"value":"","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2024-12-31","path":["讛讜爪讗讜转 讗讞专讜转, 谞讟讜"],"currency":"ILS","scale":1,"value_type":"amount"},{"value":"85099","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2023-12-31","path":["讛讜爪讗讜转 讗讞专讜转, 谞讟讜"],"currency":"ILS","scale":1,"value_type":"amount"},{"value":"(240627)","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2024-12-31","path":["讛讻谞住讜转 (讛讜爪讗讜转) 谞讟讜 诇砖谞讛"],"currency":"ILS","scale":1,"value_type":"amount"},{"value":"43326","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2023-12-31","path":["讛讻谞住讜转 (讛讜爪讗讜转) 谞讟讜 诇砖谞讛"],"currency":"ILS","scale":1,"value_type":"amount"}]} | |
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": [
{
"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`.
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"},{"value":"43326","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2023-12-31","path":["转讝专讬诪讬 诪讝讜诪谞讬诐 诪驻注讬诇讜转 砖讜讟驻转","讛讻谞住讜转 (讛讜爪讗讜转) 谞讟讜 诇砖谞讛"],"currency":"ILS","scale":1,"value_type":"amount"},{"value":"53905","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2024-12-31","path":["转讝专讬诪讬 诪讝讜诪谞讬诐 诪驻注讬诇讜转 砖讜讟驻转","讛转讗诪讜转 讛讚专讜砖讜转 讻讚讬 诇讛爪讬讙 讗转 转讝专讬诪讬 讛诪讝讜诪谞讬诐 诪驻注讬诇讜转 砖讜讟驻转 (专讗讛 诇讛诇谉)"],"currency":"ILS","scale":1,"value_type":"amount"},{"value":"(74279)","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2023-12-31","path":["转讝专讬诪讬 诪讝讜诪谞讬诐 诪驻注讬诇讜转 砖讜讟驻转","讛转讗诪讜转 讛讚专讜砖讜转 讻讚讬 诇讛爪讬讙 讗转 转讝专讬诪讬 讛诪讝讜诪谞讬诐 诪驻注讬诇讜转 砖讜讟驻转 (专讗讛 诇讛诇谉)"],"currency":"ILS","scale":1,"value_type":"amount"},{"value":"(186722)","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2024-12-31","path":["转讝专讬诪讬 诪讝讜诪谞讬诐 诪驻注讬诇讜转 砖讜讟驻转"],"currency":"ILS","scale":1,"value_type":"amount"},{"value":"(30953)","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2023-12-31","path":["转讝专讬诪讬 诪讝讜诪谞讬诐 诪驻注讬诇讜转 砖讜讟驻转"],"currency":"ILS","scale":1,"value_type":"amount"},{"value":"253097","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2024-12-31","path":["转讝专讬诪讬 诪讝讜诪谞讬诐 诪驻注讬诇讜转 讛砖拽注讛","转诪讜专讛 诪诪讻讬专转 谞讬讬专讜转 注专讱, 谞讟讜"],"currency":"ILS","scale":1,"value_type":"amount"},{"value":"327","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2023-12-31","path":["转讝专讬诪讬 诪讝讜诪谞讬诐 诪驻注讬诇讜转 讛砖拽注讛","转诪讜专讛 诪诪讻讬专转 谞讬讬专讜转 注专讱, 谞讟讜"],"currency":"ILS","scale":1,"value_type":"amount"},{"value":"32667923","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2024-12-31","path":["转讝专讬诪讬 诪讝讜诪谞讬诐 诪驻注讬诇讜转 讛砖拽注讛","转诪讜专讛 诪诪讻讬专转 诪拽专拽注讬谉"],"currency":"ILS","scale":1,"value_type":"amount"},{"value":"7864400","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2023-12-31","path":["转讝专讬诪讬 诪讝讜诪谞讬诐 诪驻注讬诇讜转 讛砖拽注讛","转诪讜专讛 诪诪讻讬专转 诪拽专拽注讬谉"],"currency":"ILS","scale":1,"value_type":"amount"},{"value":"(31992327)","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2024-12-31","path":["转讝专讬诪讬 诪讝讜诪谞讬诐 诪驻注讬诇讜转 讛砖拽注讛","讛砖拽注讛 讘驻讬拽讚讜谞讜转"],"currency":"ILS","scale":1,"value_type":"amount"},{"value":"(7016757)","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2023-12-31","path":["转讝专讬诪讬 诪讝讜诪谞讬诐 诪驻注讬诇讜转 讛砖拽注讛","讛砖拽注讛 讘驻讬拽讚讜谞讜转"],"currency":"ILS","scale":1,"value_type":"amount"},{"value":"(848212)","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2024-12-31","path":["转讝专讬诪讬 诪讝讜诪谞讬诐 诪驻注讬诇讜转 讛砖拽注讛","专讻讬砖转 专讻讜砖 拽讘讜注"],"currency":"ILS","scale":1,"value_type":"amount"},{"value":"(286449)","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2023-12-31","path":["转讝专讬诪讬 诪讝讜诪谞讬诐 诪驻注讬诇讜转 讛砖拽注讛","专讻讬砖转 专讻讜砖 拽讘讜注"],"currency":"ILS","scale":1,"value_type":"amount"},{"value":"80481","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2024-12-31","path":["转讝专讬诪讬 诪讝讜诪谞讬诐 诪驻注讬诇讜转 讛砖拽注讛"],"currency":"ILS","scale":1,"value_type":"amount"},{"value":"561521","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2023-12-31","path":["转讝专讬诪讬 诪讝讜诪谞讬诐 诪驻注讬诇讜转 讛砖拽注讛"],"currency":"ILS","scale":1,"value_type":"amount"},{"value":"(106241)","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2024-12-31","path":["讙讬讚讜诇 (拽讬讟讜谉) 讘诪讝讜诪谞讬诐 讜砖讜讜讛 诪讝讜诪谞讬诐","讙讬讚讜诇 (拽讬讟讜谉) 讘诪讝讜诪谞讬诐 讜砖讜讜讛 诪讝讜诪谞讬诐"],"currency":"ILS","scale":1,"value_type":"amount"},{"value":"530568","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2023-12-31","path":["讙讬讚讜诇 (拽讬讟讜谉) 讘诪讝讜诪谞讬诐 讜砖讜讜讛 诪讝讜诪谞讬诐","讙讬讚讜诇 (拽讬讟讜谉) 讘诪讝讜诪谞讬诐 讜砖讜讜讛 诪讝讜诪谞讬诐"],"currency":"ILS","scale":1,"value_type":"amount"},{"value":"851625","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2024-12-31","path":["讙讬讚讜诇 (拽讬讟讜谉) 讘诪讝讜诪谞讬诐 讜砖讜讜讛 诪讝讜诪谞讬诐","讬转专转 诪讝讜诪谞讬诐 讜砖讜讜讛 诪讝讜诪谞讬诐 诇转讞讬诇转 讛砖谞讛"],"currency":"ILS","scale":1,"value_type":"amount"},{"value":"321057","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2023-12-31","path":["讙讬讚讜诇 (拽讬讟讜谉) 讘诪讝讜诪谞讬诐 讜砖讜讜讛 诪讝讜诪谞讬诐","讬转专转 诪讝讜诪谞讬诐 讜砖讜讜讛 诪讝讜诪谞讬诐 诇转讞讬诇转 讛砖谞讛"],"currency":"ILS","scale":1,"value_type":"amount"},{"value":"745384","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2024-12-31","path":["讙讬讚讜诇 (拽讬讟讜谉) 讘诪讝讜诪谞讬诐 讜砖讜讜讛 诪讝讜诪谞讬诐","讬转专转 诪讝讜诪谞讬诐 讜砖讜讜讛 诪讝讜诪谞讬诐 诇住讜祝 讛砖谞讛"],"currency":"ILS","scale":1,"value_type":"amount"},{"value":"851625","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2023-12-31","path":["讙讬讚讜诇 (拽讬讟讜谉) 讘诪讝讜诪谞讬诐 讜砖讜讜讛 诪讝讜诪谞讬诐","讬转专转 诪讝讜诪谞讬诐 讜砖讜讜讛 诪讝讜诪谞讬诐 诇住讜祝 讛砖谞讛"],"currency":"ILS","scale":1,"value_type":"amount"},{"value":"16030","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2024-12-31","path":["讛转讗诪讜转 讛讚专讜砖讜转 讻讚讬 诇讛爪讬讙 讗转 转讝专讬诪讬 讛诪讝讜诪谞讬诐 诪驻注讬诇讜转 砖讜讟驻转","讛讜爪讗讜转 (讛讻谞住讜转) 砖讗讬谞谉 讻专讜讻讜转 讘转讝专讬诪讬 诪讝讜诪谞讬诐","驻讞转 诪专讻讜砖 拽讘讜注"],"currency":"ILS","scale":1,"value_type":"amount"},{"value":"17068","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2023-12-31","path":["讛转讗诪讜转 讛讚专讜砖讜转 讻讚讬 诇讛爪讬讙 讗转 转讝专讬诪讬 讛诪讝讜诪谞讬诐 诪驻注讬诇讜转 砖讜讟驻转","讛讜爪讗讜转 (讛讻谞住讜转) 砖讗讬谞谉 讻专讜讻讜转 讘转讝专讬诪讬 诪讝讜诪谞讬诐","驻讞转 诪专讻讜砖 拽讘讜注"],"currency":"ILS","scale":1,"value_type":"amount"},{"value":"(37951)","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2024-12-31","path":["讛转讗诪讜转 讛讚专讜砖讜转 讻讚讬 诇讛爪讬讙 讗转 转讝专讬诪讬 讛诪讝讜诪谞讬诐 诪驻注讬诇讜转 砖讜讟驻转","讛讜爪讗讜转 (讛讻谞住讜转) 砖讗讬谞谉 讻专讜讻讜转 讘转讝专讬诪讬 诪讝讜诪谞讬诐","专讜讜讞 诪诪讬诪讜砖 讜讛转讗诪转 注专讱 谞讬讬专讜转 注专讱"],"currency":"ILS","scale":1,"value_type":"amount"},{"value":"(31369)","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2023-12-31","path":["讛转讗诪讜转 讛讚专讜砖讜转 讻讚讬 诇讛爪讬讙 讗转 转讝专讬诪讬 讛诪讝讜诪谞讬诐 诪驻注讬诇讜转 砖讜讟驻转","讛讜爪讗讜转 (讛讻谞住讜转) 砖讗讬谞谉 讻专讜讻讜转 讘转讝专讬诪讬 诪讝讜诪谞讬诐","专讜讜讞 诪诪讬诪讜砖 讜讛转讗诪转 注专讱 谞讬讬专讜转 注专讱"],"currency":"ILS","scale":1,"value_type":"amount"},{"value":"(21921)","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2024-12-31","path":["讛转讗诪讜转 讛讚专讜砖讜转 讻讚讬 诇讛爪讬讙 讗转 转讝专讬诪讬 讛诪讝讜诪谞讬诐 诪驻注讬诇讜转 砖讜讟驻转","讛讜爪讗讜转 (讛讻谞住讜转) 砖讗讬谞谉 讻专讜讻讜转 讘转讝专讬诪讬 诪讝讜诪谞讬诐"],"currency":"ILS","scale":1,"value_type":"amount"},{"value":"(14301)","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2023-12-31","path":["讛转讗诪讜转 讛讚专讜砖讜转 讻讚讬 诇讛爪讬讙 讗转 转讝专讬诪讬 讛诪讝讜诪谞讬诐 诪驻注讬诇讜转 砖讜讟驻转","讛讜爪讗讜转 (讛讻谞住讜转) 砖讗讬谞谉 讻专讜讻讜转 讘转讝专讬诪讬 诪讝讜诪谞讬诐"],"currency":"ILS","scale":1,"value_type":"amount"},{"value":"(6644)","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2024-12-31","path":["讛转讗诪讜转 讛讚专讜砖讜转 讻讚讬 诇讛爪讬讙 讗转 转讝专讬诪讬 讛诪讝讜诪谞讬诐 诪驻注讬诇讜转 砖讜讟驻转","砖讬谞讜讬讬诐 讘住注讬驻讬 专讻讜砖 讜讛转讞讬讬讘讜讬讜转","讙讬讚讜诇 讘讞讬讬讘讬诐 讜讬转专讜转 讞讜讘讛"],"currency":"ILS","scale":1,"value_type":"amount"},{"value":"","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2023-12-31","path":["讛转讗诪讜转 讛讚专讜砖讜转 讻讚讬 诇讛爪讬讙 讗转 转讝专讬诪讬 讛诪讝讜诪谞讬诐 诪驻注讬诇讜转 砖讜讟驻转","砖讬谞讜讬讬诐 讘住注讬驻讬 专讻讜砖 讜讛转讞讬讬讘讜讬讜转","讙讬讚讜诇 讘讞讬讬讘讬诐 讜讬转专讜转 讞讜讘讛"],"currency":"ILS","scale":1,"value_type":"amount"},{"value":"82470","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2024-12-31","path":["讛转讗诪讜转 讛讚专讜砖讜转 讻讚讬 诇讛爪讬讙 讗转 转讝专讬诪讬 讛诪讝讜诪谞讬诐 诪驻注讬诇讜转 砖讜讟驻转","砖讬谞讜讬讬诐 讘住注讬驻讬 专讻讜砖 讜讛转讞讬讬讘讜讬讜转","讙讬讚讜诇 (拽讬讟讜谉) 讘讝讻讗讬诐 讜讬转专讜转 讝讻讜转"],"currency":"ILS","scale":1,"value_type":"amount"},{"value":"(59978)","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2023-12-31","path":["讛转讗诪讜转 讛讚专讜砖讜转 讻讚讬 诇讛爪讬讙 讗转 转讝专讬诪讬 讛诪讝讜诪谞讬诐 诪驻注讬诇讜转 砖讜讟驻转","砖讬谞讜讬讬诐 讘住注讬驻讬 专讻讜砖 讜讛转讞讬讬讘讜讬讜转","讙讬讚讜诇 (拽讬讟讜谉) 讘讝讻讗讬诐 讜讬转专讜转 讝讻讜转"],"currency":"ILS","scale":1,"value_type":"amount"},{"value":"75826","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2024-12-31","path":["讛转讗诪讜转 讛讚专讜砖讜转 讻讚讬 诇讛爪讬讙 讗转 转讝专讬诪讬 讛诪讝讜诪谞讬诐 诪驻注讬诇讜转 砖讜讟驻转","砖讬谞讜讬讬诐 讘住注讬驻讬 专讻讜砖 讜讛转讞讬讬讘讜讬讜转"],"currency":"ILS","scale":1,"value_type":"amount"},{"value":"(59978)","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2023-12-31","path":["讛转讗诪讜转 讛讚专讜砖讜转 讻讚讬 诇讛爪讬讙 讗转 转讝专讬诪讬 讛诪讝讜诪谞讬诐 诪驻注讬诇讜转 砖讜讟驻转","砖讬谞讜讬讬诐 讘住注讬驻讬 专讻讜砖 讜讛转讞讬讬讘讜讬讜转"],"currency":"ILS","scale":1,"value_type":"amount"},{"value":"53905","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2024-12-31","path":["讛转讗诪讜转 讛讚专讜砖讜转 讻讚讬 诇讛爪讬讙 讗转 转讝专讬诪讬 讛诪讝讜诪谞讬诐 诪驻注讬诇讜转 砖讜讟驻转"],"currency":"ILS","scale":1,"value_type":"amount"},{"value":"(74279)","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2023-12-31","path":["讛转讗诪讜转 讛讚专讜砖讜转 讻讚讬 诇讛爪讬讙 讗转 转讝专讬诪讬 讛诪讝讜诪谞讬诐 诪驻注讬诇讜转 砖讜讟驻转"],"currency":"ILS","scale":1,"value_type":"amount"}]} | |
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": [
{
"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`.
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"},{"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"},{"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"},{"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"},{"value":"43326","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2023","path":["砖讬谞讜讬讬诐 讘诪讛诇讱 砖谞转 2023:","讛讻谞住讜转 谞讟讜 诇砖谞讛","诇砖讬诪讜砖 诇驻注讬诇讜讬讜转 砖诇讗 讬讜注讚讜 注''讬 诪讜住讚讜转 讛诪诇讻''专"],"currency":"ILS","scale":1,"value_type":"amount"},{"value":"","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2023","path":["砖讬谞讜讬讬诐 讘诪讛诇讱 砖谞转 2023:","讛讻谞住讜转 谞讟讜 诇砖谞讛","砖讬讜注讚讜 注''讬 诪讜住讚讜转 讛诪诇讻''专 诇讛砖拽注讛 讘专讻讜砖 拽讘讜注"],"currency":"ILS","scale":1,"value_type":"amount"},{"value":"","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2023","path":["砖讬谞讜讬讬诐 讘诪讛诇讱 砖谞转 2023:","讛讻谞住讜转 谞讟讜 诇砖谞讛","砖砖讬诪砖讜 诇专讻讜砖 拽讘讜注"],"currency":"ILS","scale":1,"value_type":"amount"},{"value":"43326","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2023","path":["砖讬谞讜讬讬诐 讘诪讛诇讱 砖谞转 2023:","讛讻谞住讜转 谞讟讜 诇砖谞讛","住讛''讻"],"currency":"ILS","scale":1,"value_type":"amount"},{"value":"(286449)","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2023","path":["砖讬谞讜讬讬诐 讘诪讛诇讱 砖谞转 2023:","讛注讘专转 住讻讜诪讬诐 诇专讻讬砖转 专讻讜砖 拽讘讜注","诇砖讬诪讜砖 诇驻注讬诇讜讬讜转 砖诇讗 讬讜注讚讜 注''讬 诪讜住讚讜转 讛诪诇讻''专"],"currency":"ILS","scale":1,"value_type":"amount"},{"value":"","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2023","path":["砖讬谞讜讬讬诐 讘诪讛诇讱 砖谞转 2023:","讛注讘专转 住讻讜诪讬诐 诇专讻讬砖转 专讻讜砖 拽讘讜注","砖讬讜注讚讜 注''讬 诪讜住讚讜转 讛诪诇讻''专 诇讛砖拽注讛 讘专讻讜砖 拽讘讜注"],"currency":"ILS","scale":1,"value_type":"amount"},{"value":"286449","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2023","path":["砖讬谞讜讬讬诐 讘诪讛诇讱 砖谞转 2023:","讛注讘专转 住讻讜诪讬诐 诇专讻讬砖转 专讻讜砖 拽讘讜注","砖砖讬诪砖讜 诇专讻讜砖 拽讘讜注"],"currency":"ILS","scale":1,"value_type":"amount"},{"value":"","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2023","path":["砖讬谞讜讬讬诐 讘诪讛诇讱 砖谞转 2023:","讛注讘专转 住讻讜诪讬诐 诇专讻讬砖转 专讻讜砖 拽讘讜注","住讛''讻"],"currency":"ILS","scale":1,"value_type":"amount"},{"value":"17068","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2023","path":["砖讬谞讜讬讬诐 讘诪讛诇讱 砖谞转 2023:","住讻讜诪讬诐 砖讬讜注讚讜 诇讻讬住讜讬 讛讜爪讗讜转 驻讞转","诇砖讬诪讜砖 诇驻注讬诇讜讬讜转 砖诇讗 讬讜注讚讜 注''讬 诪讜住讚讜转 讛诪诇讻''专"],"currency":"ILS","scale":1,"value_type":"amount"},{"value":"","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2023","path":["砖讬谞讜讬讬诐 讘诪讛诇讱 砖谞转 2023:","住讻讜诪讬诐 砖讬讜注讚讜 诇讻讬住讜讬 讛讜爪讗讜转 驻讞转","砖讬讜注讚讜 注''讬 诪讜住讚讜转 讛诪诇讻''专 诇讛砖拽注讛 讘专讻讜砖 拽讘讜注"],"currency":"ILS","scale":1,"value_type":"amount"},{"value":"(17068)","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2023","path":["砖讬谞讜讬讬诐 讘诪讛诇讱 砖谞转 2023:","住讻讜诪讬诐 砖讬讜注讚讜 诇讻讬住讜讬 讛讜爪讗讜转 驻讞转","砖砖讬诪砖讜 诇专讻讜砖 拽讘讜注"],"currency":"ILS","scale":1,"value_type":"amount"},{"value":"","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2023","path":["砖讬谞讜讬讬诐 讘诪讛诇讱 砖谞转 2023:","住讻讜诪讬诐 砖讬讜注讚讜 诇讻讬住讜讬 讛讜爪讗讜转 驻讞转","住讛''讻"],"currency":"ILS","scale":1,"value_type":"amount"},{"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"},{"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"},{"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"},{"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"},{"value":"(240627)","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2024","path":["砖讬谞讜讬讬诐 讘诪讛诇讱 砖谞转 2024:","讛讜爪讗讜转 谞讟讜 诇砖谞讛","诇砖讬诪讜砖 诇驻注讬诇讜讬讜转 砖诇讗 讬讜注讚讜 注''讬 诪讜住讚讜转 讛诪诇讻''专"],"currency":"ILS","scale":1,"value_type":"amount"},{"value":"","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2024","path":["砖讬谞讜讬讬诐 讘诪讛诇讱 砖谞转 2024:","讛讜爪讗讜转 谞讟讜 诇砖谞讛","砖讬讜注讚讜 注''讬 诪讜住讚讜转 讛诪诇讻''专 诇讛砖拽注讛 讘专讻讜砖 拽讘讜注"],"currency":"ILS","scale":1,"value_type":"amount"},{"value":"","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2024","path":["砖讬谞讜讬讬诐 讘诪讛诇讱 砖谞转 2024:","讛讜爪讗讜转 谞讟讜 诇砖谞讛","砖砖讬诪砖讜 诇专讻讜砖 拽讘讜注"],"currency":"ILS","scale":1,"value_type":"amount"},{"value":"(240627)","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2024","path":["砖讬谞讜讬讬诐 讘诪讛诇讱 砖谞转 2024:","讛讜爪讗讜转 谞讟讜 诇砖谞讛","住讛''讻"],"currency":"ILS","scale":1,"value_type":"amount"},{"value":"","comment":null,"is_note":false,"note":null,"note_reference":"讘讗讜专 1讘.","date":"2024","path":["砖讬谞讜讬讬诐 讘诪讛诇讱 砖谞转 2024:","住讻讜诪讬诐 砖讛转拽讘诇讜 讜讬讜注讚讜 诇专讻讬砖转 专讻讜砖 拽讘讜注 (专讗讛 讘讗讜专 1讘.)","诇砖讬诪讜砖 诇驻注讬诇讜讬讜转 砖诇讗 讬讜注讚讜 注''讬 诪讜住讚讜转 讛诪诇讻''专"],"currency":"ILS","scale":1,"value_type":"amount"},{"value":"40532323","comment":null,"is_note":false,"note":null,"note_reference":"讘讗讜专 1讘.","date":"2024","path":["砖讬谞讜讬讬诐 讘诪讛诇讱 砖谞转 2024:","住讻讜诪讬诐 砖讛转拽讘诇讜 讜讬讜注讚讜 诇专讻讬砖转 专讻讜砖 拽讘讜注 (专讗讛 讘讗讜专 1讘.)","砖讬讜注讚讜 注''讬 诪讜住讚讜转 讛诪诇讻''专 诇讛砖拽注讛 讘专讻讜砖 拽讘讜注"],"currency":"ILS","scale":1,"value_type":"amount"},{"value":"","comment":null,"is_note":false,"note":null,"note_reference":"讘讗讜专 1讘.","date":"2024","path":["砖讬谞讜讬讬诐 讘诪讛诇讱 砖谞转 2024:","住讻讜诪讬诐 砖讛转拽讘诇讜 讜讬讜注讚讜 诇专讻讬砖转 专讻讜砖 拽讘讜注 (专讗讛 讘讗讜专 1讘.)","砖砖讬诪砖讜 诇专讻讜砖 拽讘讜注"],"currency":"ILS","scale":1,"value_type":"amount"},{"value":"40532323","comment":null,"is_note":false,"note":null,"note_reference":"讘讗讜专 1讘.","date":"2024","path":["砖讬谞讜讬讬诐 讘诪讛诇讱 砖谞转 2024:","住讻讜诪讬诐 砖讛转拽讘诇讜 讜讬讜注讚讜 诇专讻讬砖转 专讻讜砖 拽讘讜注 (专讗讛 讘讗讜专 1讘.)","住讛''讻"],"currency":"ILS","scale":1,"value_type":"amount"},{"value":"","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2024","path":["砖讬谞讜讬讬诐 讘诪讛诇讱 砖谞转 2024:","讛讻谞住讜转 诪讬诪讜谉 砖谞爪讘专讜 讘驻拽讚讜谞讜转 讘讘谞拽","诇砖讬诪讜砖 诇驻注讬诇讜讬讜转 砖诇讗 讬讜注讚讜 注''讬 诪讜住讚讜转 讛诪诇讻''专"],"currency":"ILS","scale":1,"value_type":"amount"},{"value":"997829","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2024","path":["砖讬谞讜讬讬诐 讘诪讛诇讱 砖谞转 2024:","讛讻谞住讜转 诪讬诪讜谉 砖谞爪讘专讜 讘驻拽讚讜谞讜转 讘讘谞拽","砖讬讜注讚讜 注''讬 诪讜住讚讜转 讛诪诇讻''专 诇讛砖拽注讛 讘专讻讜砖 拽讘讜注"],"currency":"ILS","scale":1,"value_type":"amount"},{"value":"","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2024","path":["砖讬谞讜讬讬诐 讘诪讛诇讱 砖谞转 2024:","讛讻谞住讜转 诪讬诪讜谉 砖谞爪讘专讜 讘驻拽讚讜谞讜转 讘讘谞拽","砖砖讬诪砖讜 诇专讻讜砖 拽讘讜注"],"currency":"ILS","scale":1,"value_type":"amount"},{"value":"997829","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2024","path":["砖讬谞讜讬讬诐 讘诪讛诇讱 砖谞转 2024:","讛讻谞住讜转 诪讬诪讜谉 砖谞爪讘专讜 讘驻拽讚讜谞讜转 讘讘谞拽","住讛''讻"],"currency":"ILS","scale":1,"value_type":"amount"},{"value":"(848212)","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2024","path":["砖讬谞讜讬讬诐 讘诪讛诇讱 砖谞转 2024:","讛注讘专转 住讻讜诪讬诐 诇专讻讬砖转 专讻讜砖 拽讘讜注","诇砖讬诪讜砖 诇驻注讬诇讜讬讜转 砖诇讗 讬讜注讚讜 注''讬 诪讜住讚讜转 讛诪诇讻''专"],"currency":"ILS","scale":1,"value_type":"amount"},{"value":"","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2024","path":["砖讬谞讜讬讬诐 讘诪讛诇讱 砖谞转 2024:","讛注讘专转 住讻讜诪讬诐 诇专讻讬砖转 专讻讜砖 拽讘讜注","砖讬讜注讚讜 注''讬 诪讜住讚讜转 讛诪诇讻''专 诇讛砖拽注讛 讘专讻讜砖 拽讘讜注"],"currency":"ILS","scale":1,"value_type":"amount"},{"value":"848212","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2024","path":["砖讬谞讜讬讬诐 讘诪讛诇讱 砖谞转 2024:","讛注讘专转 住讻讜诪讬诐 诇专讻讬砖转 专讻讜砖 拽讘讜注","砖砖讬诪砖讜 诇专讻讜砖 拽讘讜注"],"currency":"ILS","scale":1,"value_type":"amount"},{"value":"","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2024","path":["砖讬谞讜讬讬诐 讘诪讛诇讱 砖谞转 2024:","讛注讘专转 住讻讜诪讬诐 诇专讻讬砖转 专讻讜砖 拽讘讜注","住讛''讻"],"currency":"ILS","scale":1,"value_type":"amount"},{"value":"16030","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2024","path":["砖讬谞讜讬讬诐 讘诪讛诇讱 砖谞转 2024:","住讻讜诪讬诐 砖讬讜注讚讜 诇讻讬住讜讬 讛讜爪讗讜转 驻讞转","诇砖讬诪讜砖 诇驻注讬诇讜讬讜转 砖诇讗 讬讜注讚讜 注''讬 诪讜住讚讜转 讛诪诇讻''专"],"currency":"ILS","scale":1,"value_type":"amount"},{"value":"","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2024","path":["砖讬谞讜讬讬诐 讘诪讛诇讱 砖谞转 2024:","住讻讜诪讬诐 砖讬讜注讚讜 诇讻讬住讜讬 讛讜爪讗讜转 驻讞转","砖讬讜注讚讜 注''讬 诪讜住讚讜转 讛诪诇讻''专 诇讛砖拽注讛 讘专讻讜砖 拽讘讜注"],"currency":"ILS","scale":1,"value_type":"amount"},{"value":"(16030)","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2024","path":["砖讬谞讜讬讬诐 讘诪讛诇讱 砖谞转 2024:","住讻讜诪讬诐 砖讬讜注讚讜 诇讻讬住讜讬 讛讜爪讗讜转 驻讞转","砖砖讬诪砖讜 诇专讻讜砖 拽讘讜注"],"currency":"ILS","scale":1,"value_type":"amount"},{"value":"","comment":null,"is_note":false,"note":null,"note_reference":"","date":"2024","path":["砖讬谞讜讬讬诐 讘诪讛诇讱 砖谞转 2024:","住讻讜诪讬诐 砖讬讜注讚讜 诇讻讬住讜讬 讛讜爪讗讜转 驻讞转","住讛''讻"],"currency":"ILS","scale":1,"value_type":"amount"},{"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"},{"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"},{"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"},{"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"}]} | |
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": [
{
"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`.
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":"%"},{"value":"","comment":"2","is_note":true,"note":"2","note_reference":"7-10","date":null,"path":["2. 注讬拽专讬 讛诪讚讬谞讬讜转 讛讞砖讘讜谞讗讬转","讚. 专讻讜砖 拽讘讜注","(2) 驻讞转 诪讛专讻讜砖 讛拽讘讜注 诪讞讜砖讘 讘砖讬讟转 讛拽讜 讛讬砖专 讘砖讬注讜专讬诐 讛砖谞转讬讬诐 讛讘讗讬诐","专讬讛讜讟 讜爪讬讜讚"],"currency":null,"scale":null,"value_type":"%"}]} | |
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": [
{
"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`.
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"},{"value":"1214744","comment":"4","is_note":true,"note":"4","note_reference":"","date":"2024-12-31","path":["4. 专讻讜砖 拽讘讜注","讗. 讛专讻讘","诪讘谞讛","驻讞转 砖谞爪讘专"],"currency":"ILS","scale":1,"value_type":"amount"},{"value":"85038","comment":"4","is_note":true,"note":"4","note_reference":"","date":"2024-12-31","path":["4. 专讻讜砖 拽讘讜注","讗. 讛专讻讘","诪讘谞讛","注诇讜转 诪讜驻讞转转"],"currency":"ILS","scale":1,"value_type":"amount"},{"value":"86974","comment":"4","is_note":true,"note":"4","note_reference":"","date":"2023-12-31","path":["4. 专讻讜砖 拽讘讜注","讗. 讛专讻讘","诪讘谞讛","注诇讜转 诪讜驻讞转转"],"currency":"ILS","scale":1,"value_type":"amount"},{"value":"475416","comment":"4","is_note":true,"note":"4","note_reference":"","date":"2024-12-31","path":["4. 专讻讜砖 拽讘讜注","讗. 讛专讻讘","专讬讛讜讟 讜爪讬讜讚","注诇讜转"],"currency":"ILS","scale":1,"value_type":"amount"},{"value":"276813","comment":"4","is_note":true,"note":"4","note_reference":"","date":"2024-12-31","path":["4. 专讻讜砖 拽讘讜注","讗. 讛专讻讘","专讬讛讜讟 讜爪讬讜讚","驻讞转 砖谞爪讘专"],"currency":"ILS","scale":1,"value_type":"amount"},{"value":"198603","comment":"4","is_note":true,"note":"4","note_reference":"","date":"2024-12-31","path":["4. 专讻讜砖 拽讘讜注","讗. 讛专讻讘","专讬讛讜讟 讜爪讬讜讚","注诇讜转 诪讜驻讞转转"],"currency":"ILS","scale":1,"value_type":"amount"},{"value":"140060","comment":"4","is_note":true,"note":"4","note_reference":"","date":"2023-12-31","path":["4. 专讻讜砖 拽讘讜注","讗. 讛专讻讘","专讬讛讜讟 讜爪讬讜讚","注诇讜转 诪讜驻讞转转"],"currency":"ILS","scale":1,"value_type":"amount"},{"value":"1775198","comment":"4","is_note":true,"note":"4","note_reference":"","date":"2024-12-31","path":["4. 专讻讜砖 拽讘讜注","讗. 讛专讻讘","住讛\"讻","注诇讜转"],"currency":"ILS","scale":1,"value_type":"amount"},{"value":"1491557","comment":"4","is_note":true,"note":"4","note_reference":"","date":"2024-12-31","path":["4. 专讻讜砖 拽讘讜注","讗. 讛专讻讘","住讛\"讻","驻讞转 砖谞爪讘专"],"currency":"ILS","scale":1,"value_type":"amount"},{"value":"283641","comment":"4","is_note":true,"note":"4","note_reference":"","date":"2024-12-31","path":["4. 专讻讜砖 拽讘讜注","讗. 讛专讻讘","住讛\"讻","注诇讜转 诪讜驻讞转转"],"currency":"ILS","scale":1,"value_type":"amount"},{"value":"227034","comment":"4","is_note":true,"note":"4","note_reference":"","date":"2023-12-31","path":["4. 专讻讜砖 拽讘讜注","讗. 讛专讻讘","住讛\"讻","注诇讜转 诪讜驻讞转转"],"currency":"ILS","scale":1,"value_type":"amount"},{"value":"1358607","comment":"4","is_note":true,"note":"4","note_reference":"讘. 诇讛诇谉","date":"2024-12-31","path":["4. 专讻讜砖 拽讘讜注","讗. 讛专讻讘","转砖诇讜诪讬诐 注诇-讞砖讘讜谉 诪讘谞讛 讘转讻谞讜谉 (讘. 诇讛诇谉)","注诇讜转 诪讜驻讞转转"],"currency":"ILS","scale":1,"value_type":"amount"},{"value":"583032","comment":"4","is_note":true,"note":"4","note_reference":"讘. 诇讛诇谉","date":"2023-12-31","path":["4. 专讻讜砖 拽讘讜注","讗. 讛专讻讘","转砖诇讜诪讬诐 注诇-讞砖讘讜谉 诪讘谞讛 讘转讻谞讜谉 (讘. 诇讛诇谉)","注诇讜转 诪讜驻讞转转"],"currency":"ILS","scale":1,"value_type":"amount"},{"value":"1642248","comment":"4","is_note":true,"note":"4","note_reference":"","date":"2024-12-31","path":["4. 专讻讜砖 拽讘讜注","讗. 讛专讻讘","住讛\"讻 专讻讜砖 拽讘讜注","注诇讜转 诪讜驻讞转转"],"currency":"ILS","scale":1,"value_type":"amount"},{"value":"810066","comment":"4","is_note":true,"note":"4","note_reference":"","date":"2023-12-31","path":["4. 专讻讜砖 拽讘讜注","讗. 讛专讻讘","住讛\"讻 专讻讜砖 拽讘讜注","注诇讜转 诪讜驻讞转转"],"currency":"ILS","scale":1,"value_type":"amount"},{"value":"61907","comment":"5","is_note":true,"note":"5","note_reference":"","date":"2024-12-31","path":["5. 讝讻讗讬诐 讜讬转专讜转 讝讻讜转","讛专讻讘 :","住驻拽讬诐 讜谞讜转谞讬 砖讬专讜转讬诐"],"currency":"ILS","scale":1,"value_type":"amount"},{"value":"40447","comment":"5","is_note":true,"note":"5","note_reference":"","date":"2023-12-31","path":["5. 讝讻讗讬诐 讜讬转专讜转 讝讻讜转","讛专讻讘 :","住驻拽讬诐 讜谞讜转谞讬 砖讬专讜转讬诐"],"currency":"ILS","scale":1,"value_type":"amount"},{"value":"25000","comment":"5","is_note":true,"note":"5","note_reference":"","date":"2024-12-31","path":["5. 讝讻讗讬诐 讜讬转专讜转 讝讻讜转","讛专讻讘 :","讘注诇讬 诪谞讬讜转"],"currency":"ILS","scale":1,"value_type":"amount"},{"value":"","comment":"5","is_note":true,"note":"5","note_reference":"","date":"2023-12-31","path":["5. 讝讻讗讬诐 讜讬转专讜转 讝讻讜转","讛专讻讘 :","讘注诇讬 诪谞讬讜转"],"currency":"ILS","scale":1,"value_type":"amount"},{"value":"50847","comment":"5","is_note":true,"note":"5","note_reference":"","date":"2024-12-31","path":["5. 讝讻讗讬诐 讜讬转专讜转 讝讻讜转","讛专讻讘 :","砖讻专 讜谞诇讜讜转 诇砖诇诐"],"currency":"ILS","scale":1,"value_type":"amount"},{"value":"43712","comment":"5","is_note":true,"note":"5","note_reference":"","date":"2023-12-31","path":["5. 讝讻讗讬诐 讜讬转专讜转 讝讻讜转","讛专讻讘 :","砖讻专 讜谞诇讜讜转 诇砖诇诐"],"currency":"ILS","scale":1,"value_type":"amount"},{"value":"137754","comment":"5","is_note":true,"note":"5","note_reference":"","date":"2024-12-31","path":["5. 讝讻讗讬诐 讜讬转专讜转 讝讻讜转","讛专讻讘 :","住讛\"讻"],"currency":"ILS","scale":1,"value_type":"amount"},{"value":"84159","comment":"5","is_note":true,"note":"5","note_reference":"","date":"2023-12-31","path":["5. 讝讻讗讬诐 讜讬转专讜转 讝讻讜转","讛专讻讘 :","住讛\"讻"],"currency":"ILS","scale":1,"value_type":"amount"}]} | |
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": [
{
"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`.
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"},{"value":"973336","comment":"8","is_note":true,"note":"8","note_reference":"","date":"2023-12-31","path":["8. 讛拽爪讘讜转 讜转诪讬讻讜转","讛专讻讘","诪诪砖专讚 讛讞讬谞讜讱"],"currency":"ILS","scale":1,"value_type":"amount"},{"value":"192662","comment":"8","is_note":true,"note":"8","note_reference":"","date":"2024-12-31","path":["8. 讛拽爪讘讜转 讜转诪讬讻讜转","讛专讻讘","诪诪砖专讚 讛讞讬谞讜讱 - 诪讜住讚讜转 讚转"],"currency":"ILS","scale":1,"value_type":"amount"},{"value":"227368","comment":"8","is_note":true,"note":"8","note_reference":"","date":"2023-12-31","path":["8. 讛拽爪讘讜转 讜转诪讬讻讜转","讛专讻讘","诪诪砖专讚 讛讞讬谞讜讱 - 诪讜住讚讜转 讚转"],"currency":"ILS","scale":1,"value_type":"amount"},{"value":"1182689","comment":"8","is_note":true,"note":"8","note_reference":"","date":"2024-12-31","path":["8. 讛拽爪讘讜转 讜转诪讬讻讜转","讛专讻讘"],"currency":"ILS","scale":1,"value_type":"amount"},{"value":"1200704","comment":"8","is_note":true,"note":"8","note_reference":"","date":"2023-12-31","path":["8. 讛拽爪讘讜转 讜转诪讬讻讜转","讛专讻讘"],"currency":"ILS","scale":1,"value_type":"amount"},{"value":"81990","comment":"9","is_note":true,"note":"9","note_reference":"","date":"2024-12-31","path":["9. 讻诇讻诇转 转诇诪讬讚讬诐","讛专讻讘","诪砖讻讜专讜转 讜谞诇讜讜转 诇注讜讘讚讬 诪讟讘讞"],"currency":"ILS","scale":1,"value_type":"amount"},{"value":"81529","comment":"9","is_note":true,"note":"9","note_reference":"","date":"2023-12-31","path":["9. 讻诇讻诇转 转诇诪讬讚讬诐","讛专讻讘","诪砖讻讜专讜转 讜谞诇讜讜转 诇注讜讘讚讬 诪讟讘讞"],"currency":"ILS","scale":1,"value_type":"amount"},{"value":"389850","comment":"9","is_note":true,"note":"9","note_reference":"","date":"2024-12-31","path":["9. 讻诇讻诇转 转诇诪讬讚讬诐","讛专讻讘","拽谞讬讜转 诪讝讜谉 讜讻诇讬 诪讟讘讞"],"currency":"ILS","scale":1,"value_type":"amount"},{"value":"367331","comment":"9","is_note":true,"note":"9","note_reference":"","date":"2023-12-31","path":["9. 讻诇讻诇转 转诇诪讬讚讬诐","讛专讻讘","拽谞讬讜转 诪讝讜谉 讜讻诇讬 诪讟讘讞"],"currency":"ILS","scale":1,"value_type":"amount"},{"value":"471840","comment":"9","is_note":true,"note":"9","note_reference":"","date":"2024-12-31","path":["9. 讻诇讻诇转 转诇诪讬讚讬诐","讛专讻讘"],"currency":"ILS","scale":1,"value_type":"amount"},{"value":"448860","comment":"9","is_note":true,"note":"9","note_reference":"","date":"2023-12-31","path":["9. 讻诇讻诇转 转诇诪讬讚讬诐","讛专讻讘"],"currency":"ILS","scale":1,"value_type":"amount"},{"value":"382675","comment":"10","is_note":true,"note":"10","note_reference":"","date":"2024-12-31","path":["10. 讛讜爪讗讜转 讛谞讛诇讛 讜讻诇诇讬讜转","讛专讻讘","诪砖讻讜专讜转 讜谞诇讜讜转"],"currency":"ILS","scale":1,"value_type":"amount"},{"value":"217349","comment":"10","is_note":true,"note":"10","note_reference":"","date":"2023-12-31","path":["10. 讛讜爪讗讜转 讛谞讛诇讛 讜讻诇诇讬讜转","讛专讻讘","诪砖讻讜专讜转 讜谞诇讜讜转"],"currency":"ILS","scale":1,"value_type":"amount"},{"value":"80212","comment":"10","is_note":true,"note":"10","note_reference":"","date":"2024-12-31","path":["10. 讛讜爪讗讜转 讛谞讛诇讛 讜讻诇诇讬讜转","讛专讻讘","砖讻专 诪拽爪讜注讬"],"currency":"ILS","scale":1,"value_type":"amount"},{"value":"51728","comment":"10","is_note":true,"note":"10","note_reference":"","date":"2023-12-31","path":["10. 讛讜爪讗讜转 讛谞讛诇讛 讜讻诇诇讬讜转","讛专讻讘","砖讻专 诪拽爪讜注讬"],"currency":"ILS","scale":1,"value_type":"amount"},{"value":"7093","comment":"10","is_note":true,"note":"10","note_reference":"","date":"2024-12-31","path":["10. 讛讜爪讗讜转 讛谞讛诇讛 讜讻诇诇讬讜转","讛专讻讘","讟诇驻讜谉 讜转拽砖讜专转"],"currency":"ILS","scale":1,"value_type":"amount"},{"value":"6533","comment":"10","is_note":true,"note":"10","note_reference":"","date":"2023-12-31","path":["10. 讛讜爪讗讜转 讛谞讛诇讛 讜讻诇诇讬讜转","讛专讻讘","讟诇驻讜谉 讜转拽砖讜专转"],"currency":"ILS","scale":1,"value_type":"amount"},{"value":"16484","comment":"10","is_note":true,"note":"10","note_reference":"","date":"2024-12-31","path":["10. 讛讜爪讗讜转 讛谞讛诇讛 讜讻诇诇讬讜转","讛专讻讘","诪砖专讚讬讜转 讜谞住讬注讜转"],"currency":"ILS","scale":1,"value_type":"amount"},{"value":"12203","comment":"10","is_note":true,"note":"10","note_reference":"","date":"2023-12-31","path":["10. 讛讜爪讗讜转 讛谞讛诇讛 讜讻诇诇讬讜转","讛专讻讘","诪砖专讚讬讜转 讜谞住讬注讜转"],"currency":"ILS","scale":1,"value_type":"amount"},{"value":"2662","comment":"10","is_note":true,"note":"10","note_reference":"","date":"2024-12-31","path":["10. 讛讜爪讗讜转 讛谞讛诇讛 讜讻诇诇讬讜转","讛专讻讘","讗讙专讜转"],"currency":"ILS","scale":1,"value_type":"amount"},{"value":"2415","comment":"10","is_note":true,"note":"10","note_reference":"","date":"2023-12-31","path":["10. 讛讜爪讗讜转 讛谞讛诇讛 讜讻诇诇讬讜转","讛专讻讘","讗讙专讜转"],"currency":"ILS","scale":1,"value_type":"amount"},{"value":"489126","comment":"10","is_note":true,"note":"10","note_reference":"","date":"2024-12-31","path":["10. 讛讜爪讗讜转 讛谞讛诇讛 讜讻诇诇讬讜转","讛专讻讘"],"currency":"ILS","scale":1,"value_type":"amount"},{"value":"290228","comment":"10","is_note":true,"note":"10","note_reference":"","date":"2023-12-31","path":["10. 讛讜爪讗讜转 讛谞讛诇讛 讜讻诇诇讬讜转","讛专讻讘"],"currency":"ILS","scale":1,"value_type":"amount"}]} | |
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": [
{
"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`.
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"},{"value":"84155","comment":"11","is_note":true,"note":"11","note_reference":"","date":"2023-12-31","path":["讛讻谞住讜转 诪讬诪讜谉, 谞讟讜","专讘讬转 诪驻拽讚讜谞讜转 讘讘谞拽"],"currency":"ILS","scale":1,"value_type":"amount"},{"value":"37951","comment":"11","is_note":true,"note":"11","note_reference":"","date":"2022-12-31","path":["讛讻谞住讜转 诪讬诪讜谉, 谞讟讜","专讜讜讞 诪诪讬诪讜砖 讜讛转讗诪转 注专讱 谞讬讬专讜转 注专讱"],"currency":"ILS","scale":1,"value_type":"amount"},{"value":"31369","comment":"11","is_note":true,"note":"11","note_reference":"","date":"2023-12-31","path":["讛讻谞住讜转 诪讬诪讜谉, 谞讟讜","专讜讜讞 诪诪讬诪讜砖 讜讛转讗诪转 注专讱 谞讬讬专讜转 注专讱"],"currency":"ILS","scale":1,"value_type":"amount"},{"value":"(19067)","comment":"11","is_note":true,"note":"11","note_reference":"","date":"2022-12-31","path":["讛讻谞住讜转 诪讬诪讜谉, 谞讟讜","专讬讘讬转 讜注诪诇讜转 讘谞拽"],"currency":"ILS","scale":1,"value_type":"amount"},{"value":"(16717)","comment":"11","is_note":true,"note":"11","note_reference":"","date":"2023-12-31","path":["讛讻谞住讜转 诪讬诪讜谉, 谞讟讜","专讬讘讬转 讜注诪诇讜转 讘谞拽"],"currency":"ILS","scale":1,"value_type":"amount"},{"value":"18884","comment":"11","is_note":true,"note":"11","note_reference":"","date":"2022-12-31","path":["讛讻谞住讜转 诪讬诪讜谉, 谞讟讜"],"currency":"ILS","scale":1,"value_type":"amount"},{"value":"98807","comment":"11","is_note":true,"note":"11","note_reference":"","date":"2023-12-31","path":["讛讻谞住讜转 诪讬诪讜谉, 谞讟讜"],"currency":"ILS","scale":1,"value_type":"amount"}]} |
README.md exists but content is empty.
- Downloads last month
- 13