{"_id": {"$oid": "69d4eb12b877594bc5718c42"}, "test_id": "T0597", "benchmark": "personnel_cards", "date": "2026-02-09", "tags": {"document-type": ["index-card"], "writing": ["handwritten", "typed", "printed"], "century": [20], "layout": ["table", "form"], "task": ["transcription", "document-understanding", "data-correction"], "language": ["de", "fr"]}, "contributors": ["tabea_wullschleger", "maximilian_hindermann"], "hidden": false, "config": {"provider": "mistral", "model": "ministral-14b-2512", "dataclass": "Table", "temperature": 0.0, "role_description": "You are a historian specializing in 20th century personnel records and administrative documents", "prompt_file": "prompt.txt", "legacy_test": false}, "prompt": "Extract all information from this personnel card table and return it as a structured JSON object. The card contains rows documenting employment history with positions, locations, salary information, dates, and remarks.\n\nREQUIRED JSON STRUCTURE:\n```json\n{\n  \"rows\": [\n    {\n      \"row_number\": 1,\n      \"dienstliche_stellung\": {\n        \"diplomatic_transcript\": \"exact text from card\",\n        \"interpretation\": \"expanded/standardized form or null\",\n        \"is_crossed_out\": false\n      },\n      \"dienstort\": {\n        \"diplomatic_transcript\": \"exact text from card\",\n        \"interpretation\": \"expanded/standardized form or null\",\n        \"is_crossed_out\": false\n      },\n      \"gehaltsklasse\": {\n        \"diplomatic_transcript\": \"exact text from card\",\n        \"interpretation\": \"expanded/standardized form or null\",\n        \"is_crossed_out\": false\n      },\n      \"jahresgehalt_monatsgehalt_taglohn\": {\n        \"diplomatic_transcript\": \"exact text from card\",\n        \"interpretation\": \"standardized numeric form or null\",\n        \"is_crossed_out\": false\n      },\n      \"datum_gehalts\u00e4nderung\": {\n        \"diplomatic_transcript\": \"exact text from card\",\n        \"interpretation\": \"YYYY-MM-DD format or null\",\n        \"is_crossed_out\": false\n      },\n      \"bemerkungen\": {\n        \"diplomatic_transcript\": \"exact text from card\",\n        \"interpretation\": \"expanded/standardized form or null\",\n        \"is_crossed_out\": false\n      }\n    }\n  ]\n}\n```\n\nCOLUMN DEFINITIONS:\n1. **dienstliche_stellung**: Official position or job title (e.g., \"Assistent\", \"Professor\", \"Sekret\u00e4r\")\n2. **dienstort**: Place of service or work location (e.g., \"Basel\", \"Z\u00fcrich\")\n3. **gehaltsklasse**: Salary class or grade (e.g., \"III\", \"IV\", roman numerals or numbers)\n4. **jahresgehalt_monatsgehalt_taglohn**: Salary amount (annual/monthly/daily wage)\n5. **datum_gehalts\u00e4nderung**: Date of salary change or effective date\n6. **bemerkungen**: Remarks, notes, or additional comments\n\nFIELD EXTRACTION RULES:\n\n**diplomatic_transcript** (REQUIRED for all fields):\n- Transcribe EXACTLY as written on the card\n- Include all abbreviations, punctuation, and formatting as they appear\n- Preserve original capitalization and spacing\n- Include currency symbols and separators (e.g., \"Fr. 2'400.-\", \"3.700.-\")\n- For dates, copy the exact format (e.g., \"1. Jan. 1946\", \"1.April 1945\")\n- Use empty string \"\" for empty cells\n- Be sure to escape ditto marks (repetition marks such as `\"` indicating \"same as above\")\n- DO NOT expand abbreviations or standardize formats\n- Do not transcribe checkmarks\n\n**interpretation** (OPTIONAL - use null if not applicable):\n- For ditto marks (repetition marks such as `\"`): Replace with the actual repeated value from the previous row in the same column\n  - For example, if previous row's dienstliche_stellung is \"Hilfsleiterin\" and current row has `\"`, interpret as \"Hilfsleiterin\"\n  - Do NOT add explanatory text like \"wie oben\" or similar - just provide the repeated value\n- Never expand abbreviations\n- For dates: Convert to ISO format YYYY-MM-DD\n  - \"1. Jan. 1946\" \u2192 \"1946-01-01\"\n  - \"1.April 1945\" \u2192 \"1945-04-01\"\n- For salary amounts: Extract numeric value only (remove currency symbols, separators)\n  - \"Fr. 2'400.-\" \u2192 \"2400\"\n  - \"3.700.-\" \u2192 \"3700\"\n  - \"5.094.-\" \u2192 \"5094\"\n  \"6,30.-\" \u2192 \"6.3\"\n- For salary class: Convert roman numerals to arabic if clear\n  - \"III\" \u2192 \"3\"\n  - \"IV\" \u2192 \"4\"\n- Do not convert roman numerals to arabic if not salary, date, or salary class\n- Use null if no interpretation/expansion is needed or if the field is empty\n- \"+ {word}\" where {word} is a word does not need interpretation\n\n**is_crossed_out** (REQUIRED for all fields):\n- Set to true if text in this field is crossed out, struck through, or deleted\n- Set to false if text is normal (not crossed out)\n- Empty cells should have is_crossed_out: false\n\nROW HANDLING:\n- Number rows sequentially starting from 1 (top to bottom)\n- Include ALL rows that have ANY content in ANY column\n- Empty rows (all cells empty) should be omitted\n- A row with only one filled cell should still be included\n\nIMPORTANT NOTES:\n- Return ONLY the JSON object, no additional text or explanation\n- Every field must have all three sub-fields: diplomatic_transcript, interpretation, is_crossed_out\n- diplomatic_transcript must never be null (use empty string \"\" for empty cells)\n- interpretation can be null when no expansion/standardization applies\n- Process the entire table from top to bottom\n- Maintain consistent row numbering throughout\n", "results": {"text": "{\"rows\":[{\"row_number\":1,\"dienstliche_stellung\":{\"diplomatic_transcript\":\"Assistentin\",\"interpretation\":null,\"is_crossed_out\":false},\"dienstort\":{\"diplomatic_transcript\":\"Basel\",\"interpretation\":null,\"is_crossed_out\":false},\"gehaltsklasse\":{\"diplomatic_transcript\":\"III\",\"interpretation\":\"3\",\"is_crossed_out\":false},\"jahresgehalt_monatsgehalt_taglohn\":{\"diplomatic_transcript\":\"Fr. 2'400.-\",\"interpretation\":\"2400\",\"is_crossed_out\":false},\"datum_gehalts\u00e4nderung\":{\"diplomatic_transcript\":\"1. Jan. 1946\",\"interpretation\":\"1946-01-01\",\"is_crossed_out\":false},\"bemerkungen\":{\"diplomatic_transcript\":\"\",\"interpretation\":null,\"is_crossed_out\":false}},{\"row_number\":2,\"dienstliche_stellung\":{\"diplomatic_transcript\":\"Sekret\u00e4rin\",\"interpretation\":null,\"is_crossed_out\":false},\"dienstort\":{\"diplomatic_transcript\":\"Z\u00fcrich\",\"interpretation\":null,\"is_crossed_out\":false},\"gehaltsklasse\":{\"diplomatic_transcript\":\"IV\",\"interpretation\":\"4\",\"is_crossed_out\":false},\"jahresgehalt_monatsgehalt_taglohn\":{\"diplomatic_transcript\":\"Fr. 3'000.-\",\"interpretation\":\"3000\",\"is_crossed_out\":false},\"datum_gehalts\u00e4nderung\":{\"diplomatic_transcript\":\"1. April 1947\",\"interpretation\":\"1947-04-01\",\"is_crossed_out\":false},\"bemerkungen\":{\"diplomatic_transcript\":\"Provisorisch\",\"interpretation\":null,\"is_crossed_out\":false}},{\"row_number\":3,\"dienstliche_stellung\":{\"diplomatic_transcript\":\"B\u00fcroleiterin\",\"interpretation\":null,\"is_crossed_out\":false},\"dienstort\":{\"diplomatic_transcript\":\"Genf\",\"interpretation\":null,\"is_crossed_out\":false},\"gehaltsklasse\":{\"diplomatic_transcript\":\"V\",\"interpretation\":\"5\",\"is_crossed_out\":false},\"jahresgehalt_monatsgehalt_taglohn\":{\"diplomatic_transcript\":\"Fr. 3'700.-\",\"interpretation\":\"3700\",\"is_crossed_out\":false},\"datum_gehalts\u00e4nderung\":{\"diplomatic_transcript\":\"15. Juni 1950\",\"interpretation\":\"1950-06-15\",\"is_crossed_out\":false},\"bemerkungen\":{\"diplomatic_transcript\":\"\",\"interpretation\":null,\"is_crossed_out\":false}},{\"row_number\":4,\"dienstliche_stellung\":{\"diplomatic_transcript\":\"Abteilungsleiterin\",\"interpretation\":null,\"is_crossed_out\":false},\"dienstort\":{\"diplomatic_transcript\":\"Bern\",\"interpretation\":null,\"is_crossed_out\":false},\"gehaltsklasse\":{\"diplomatic_transcript\":\"VI\",\"interpretation\":\"6\",\"is_crossed_out\":false},\"jahresgehalt_monatsgehalt_taglohn\":{\"diplomatic_transcript\":\"Fr. 5'094.-\",\"interpretation\":\"5094\",\"is_crossed_out\":false},\"datum_gehalts\u00e4nderung\":{\"diplomatic_transcript\":\"1. Januar 1955\",\"interpretation\":\"1955-01-01\",\"is_crossed_out\":false},\"bemerkungen\":{\"diplomatic_transcript\":\"Neue Stelle\",\"interpretation\":null,\"is_crossed_out\":false}},{\"row_number\":5,\"dienstliche_stellung\":{\"diplomatic_transcript\":\"~Hilfsleiterin~\",\"interpretation\":null,\"is_crossed_out\":true},\"dienstort\":{\"diplomatic_transcript\":\"Z\u00fcrich\",\"interpretation\":null,\"is_crossed_out\":false},\"gehaltsklasse\":{\"diplomatic_transcript\":\"III\",\"interpretation\":\"3\",\"is_crossed_out\":false},\"jahresgehalt_monatsgehalt_taglohn\":{\"diplomatic_transcript\":\"Fr. 2'100.-\",\"interpretation\":\"2100\",\"is_crossed_out\":false},\"datum_gehalts\u00e4nderung\":{\"diplomatic_transcript\":\"1. Oktober 1948\",\"interpretation\":\"1948-10-01\",\"is_crossed_out\":false},\"bemerkungen\":{\"diplomatic_transcript\":\"Tempor\u00e4r\",\"interpretation\":null,\"is_crossed_out\":false}},{\"row_number\":6,\"dienstliche_stellung\":{\"diplomatic_transcript\":\"~Sekret\u00e4rin~\",\"interpretation\":null,\"is_crossed_out\":true},\"dienstort\":{\"diplomatic_transcript\":\"~Genf~\",\"interpretation\":null,\"is_crossed_out\":true},\"gehaltsklasse\":{\"diplomatic_transcript\":\"\",\"interpretation\":null,\"is_crossed_out\":false},\"jahresgehalt_monatsgehalt_taglohn\":{\"diplomatic_transcript\":\"Fr. 2'700.-\",\"interpretation\":\"2700\",\"is_crossed_out\":false},\"datum_gehalts\u00e4nderung\":{\"diplomatic_transcript\":\"1. M\u00e4rz 1949\",\"interpretation\":\"1949-03-01\",\"is_crossed_out\":false},\"bemerkungen\":{\"diplomatic_transcript\":\"\",\"interpretation\":null,\"is_crossed_out\":false}},{\"row_number\":7,\"dienstliche_stellung\":{\"diplomatic_transcript\":\"\\\"\",\"interpretation\":\"B\u00fcroleiterin\",\"is_crossed_out\":false},\"dienstort\":{\"diplomatic_transcript\":\"\\\"\",\"interpretation\":\"Genf\",\"is_crossed_out\":false},\"gehaltsklasse\":{\"diplomatic_transcript\":\"V\",\"interpretation\":\"5\",\"is_crossed_out\":false},\"jahresgehalt_monatsgehalt_taglohn\":{\"diplomatic_transcript\":\"Fr. 3'400.-\",\"interpretation\":\"3400\",\"is_crossed_out\":false},\"datum_gehalts\u00e4nderung\":{\"diplomatic_transcript\":\"1. Juli 1951\",\"interpretation\":\"1951-07-01\",\"is_crossed_out\":false},\"bemerkungen\":{\"diplomatic_transcript\":\"Gehaltserh\u00f6hung\",\"interpretation\":null,\"is_crossed_out\":false}},{\"row_number\":8,\"dienstliche_stellung\":{\"diplomatic_transcript\":\"\\\"\",\"interpretation\":\"B\u00fcroleiterin\",\"is_crossed_out\":false},\"dienstort\":{\"diplomatic_transcript\":\"\\\"\",\"interpretation\":\"Genf\",\"is_crossed_out\":false},\"gehaltsklasse\":{\"diplomatic_transcript\":\"\\\"\",\"interpretation\":\"5\",\"is_crossed_out\":false},\"jahresgehalt_monatsgehalt_taglohn\":{\"diplomatic_transcript\":\"Fr. 3'700.-\",\"interpretation\":\"3700\",\"is_crossed_out\":false},\"datum_gehalts\u00e4nderung\":{\"diplomatic_transcript\":\"1. Januar 1953\",\"interpretation\":\"1953-01-01\",\"is_crossed_out\":false},\"bemerkungen\":{\"diplomatic_transcript\":\"Tarifliche Anpassung\",\"interpretation\":null,\"is_crossed_out\":false}},{\"row_number\":9,\"dienstliche_stellung\":{\"diplomatic_transcript\":\"~\\\"~\",\"interpretation\":null,\"is_crossed_out\":true},\"dienstort\":{\"diplomatic_transcript\":\"\\\"\",\"interpretation\":\"Genf\",\"is_crossed_out\":false},\"gehaltsklasse\":{\"diplomatic_transcript\":\"\\\"\",\"interpretation\":\"5\",\"is_crossed_out\":false},\"jahresgehalt_monatsgehalt_taglohn\":{\"diplomatic_transcript\":\"Fr. 4'200.-\",\"interpretation\":\"4200\",\"is_crossed_out\":false},\"datum_gehalts\u00e4nderung\":{\"diplomatic_transcript\":\"1. Oktober 1954\",\"interpretation\":\"1954-10-01\",\"is_crossed_out\":false},\"bemerkungen\":{\"diplomatic_transcript\":\"Leistungszulage\",\"interpretation\":null,\"is_crossed_out\":false}},{\"row_number\":10,\"dienstliche_stellung\":{\"diplomatic_transcript\":\"~\\\"~\",\"interpretation\":null,\"is_crossed_out\":true},\"dienstort\":{\"diplomatic_transcript\":\"Bern\",\"interpretation\":null,\"is_crossed_out\":false},\"gehaltsklasse\":{\"diplomatic_transcript\":\"VI\",\"interpretation\":\"6\",\"is_crossed_out\":false},\"jahresgehalt_monatsgehalt_taglohn\":{\"diplomatic_transcript\":\"Fr. 5'094.-\",\"interpretation\":\"5094\",\"is_crossed_out\":false},\"datum_gehalts\u00e4nderung\":{\"diplomatic_transcript\":\"1. Januar 1955\",\"interpretation\":\"1955-01-01\",\"is_crossed_out\":false},\"bemerkungen\":{\"diplomatic_transcript\":\"Stellenwechsel\",\"interpretation\":null,\"is_crossed_out\":false}},{\"row_number\":11,\"dienstliche_stellung\":{\"diplomatic_transcript\":\"Abteilungsleiterin\",\"interpretation\":null,\"is_crossed_out\":false},\"dienstort\":{\"diplomatic_transcript\":\"Bern\",\"interpretation\":null,\"is_crossed_out\":false},\"gehaltsklasse\":{\"diplomatic_transcript\":\"VI\",\"interpretation\":\"6\",\"is_crossed_out\":false},\"jahresgehalt_monatsgehalt_taglohn\":{\"diplomatic_transcript\":\"Fr. 5'600.-\",\"interpretation\":\"5600\",\"is_crossed_out\":false},\"datum_gehalts\u00e4nderung\":{\"diplomatic_transcript\":\"1. Januar 1957\",\"interpretation\":\"1957-01-01\",\"is_crossed_out\":false},\"bemerkungen\":{\"diplomatic_transcript\":\"Gehaltsanpassung\",\"interpretation\":null,\"is_crossed_out\":false}},{\"row_number\":12,\"dienstliche_stellung\":{\"diplomatic_transcript\":\"\\\"\",\"interpretation\":\"Abteilungsleiterin\",\"is_crossed_out\":false},\"dienstort\":{\"diplomatic_transcript\":\"\\\"\",\"interpretation\":\"Bern\",\"is_crossed_out\":false},\"gehaltsklasse\":{\"diplomatic_transcript\":\"\\\"\",\"interpretation\":\"6\",\"is_crossed_out\":false},\"jahresgehalt_monatsgehalt_taglohn\":{\"diplomatic_transcript\":\"Fr. 6'300.-\",\"interpretation\":\"6300\",\"is_crossed_out\":false},\"datum_gehalts\u00e4nderung\":{\"diplomatic_transcript\":\"1. Juli 1958\",\"interpretation\":\"1958-07-01\",\"is_crossed_out\":false},\"bemerkungen\":{\"diplomatic_transcript\":\"Erh\u00f6hung aufgrund Erfahrung\",\"interpretation\":null,\"is_crossed_out\":false}},{\"row_number\":13,\"dienstliche_stellung\":{\"diplomatic_transcript\":\"~\\\"~\",\"interpretation\":null,\"is_crossed_out\":true},\"dienstort\":{\"diplomatic_transcript\":\"Z\u00fcrich\",\"interpretation\":null,\"is_crossed_out\":false},\"gehaltsklasse\":{\"diplomatic_transcript\":\"VII\",\"interpretation\":\"7\",\"is_crossed_out\":false},\"jahresgehalt_monatsgehalt_taglohn\":{\"diplomatic_transcript\":\"Fr. 7'200.-\",\"interpretation\":\"7200\",\"is_crossed_out\":false},\"datum_gehalts\u00e4nderung\":{\"diplomatic_transcript\":\"1. Januar 1960\",\"interpretation\":\"1960-01-01\",\"is_crossed_out\":false},\"bemerkungen\":{\"diplomatic_transcript\":\"Bef\u00f6rderung\",\"interpretation\":null,\"is_crossed_out\":false}}]}", "model": "ministral-14b-2512", "provider": "mistral", "finish_reason": "stop", "usage": {"input_tokens": 1810, "output_tokens": 4403, "total_tokens": 6213, "input_cost_usd": 0.000362, "output_cost_usd": 0.0008806, "estimated_cost_usd": 0.0012426}, "duration": 33.22454786300659, "timestamp": "2026-02-09T17:50:56.285860", "parsed": {"$schema": "http://json-schema.org/draft-07/schema#", "$defs": {"FieldValue": {"description": "Represents a single field value with transcript and interpretation.", "properties": {"diplomatic_transcript": {"description": "Exact text as written on the card, including abbreviations", "title": "Diplomatic Transcript", "type": "string"}, "interpretation": {"anyOf": [{"type": "string"}, {"type": "null"}], "default": null, "description": "Interpretation or expansion of abbreviations and meanings", "title": "Interpretation"}, "is_crossed_out": {"default": false, "description": "Whether the text has been crossed out on the card", "title": "Is Crossed Out", "type": "boolean"}}, "required": ["diplomatic_transcript"], "title": "FieldValue", "type": "object"}, "TableRow": {"description": "Represents a single row in the personnel card table.", "properties": {"row_number": {"description": "Sequential row number from top to bottom", "title": "Row Number", "type": "integer"}, "dienstliche_stellung": {"$ref": "#/$defs/FieldValue", "description": "Official position/job title"}, "dienstort": {"$ref": "#/$defs/FieldValue", "description": "Place of service/work location"}, "gehaltsklasse": {"$ref": "#/$defs/FieldValue", "description": "Salary class/grade"}, "jahresgehalt_monatsgehalt_taglohn": {"$ref": "#/$defs/FieldValue", "description": "Annual salary, monthly salary, or daily wage"}, "datum_gehalts\u00e4nderung": {"$ref": "#/$defs/FieldValue", "description": "Date of salary change (day, month, year)"}, "bemerkungen": {"$ref": "#/$defs/FieldValue", "description": "Remarks, notes, or additional information"}}, "required": ["row_number", "dienstliche_stellung", "dienstort", "gehaltsklasse", "jahresgehalt_monatsgehalt_taglohn", "datum_gehalts\u00e4nderung", "bemerkungen"], "title": "TableRow", "type": "object"}}, "description": "Main output structure for Personnel Cards.", "properties": {"rows": {"description": "List of all rows in the personnel card table", "items": {"$ref": "#/$defs/TableRow"}, "title": "Rows", "type": "array"}}, "title": "Table", "type": "object", "rows": [{"row_number": 1, "dienstliche_stellung": {"diplomatic_transcript": "Assistentin", "interpretation": null, "is_crossed_out": false}, "dienstort": {"diplomatic_transcript": "Basel", "interpretation": null, "is_crossed_out": false}, "gehaltsklasse": {"diplomatic_transcript": "III", "interpretation": "3", "is_crossed_out": false}, "jahresgehalt_monatsgehalt_taglohn": {"diplomatic_transcript": "Fr. 2'400.-", "interpretation": "2400", "is_crossed_out": false}, "datum_gehalts\u00e4nderung": {"diplomatic_transcript": "1. Jan. 1946", "interpretation": "1946-01-01", "is_crossed_out": false}, "bemerkungen": {"diplomatic_transcript": "", "interpretation": null, "is_crossed_out": false}}, {"row_number": 2, "dienstliche_stellung": {"diplomatic_transcript": "Sekret\u00e4rin", "interpretation": null, "is_crossed_out": false}, "dienstort": {"diplomatic_transcript": "Z\u00fcrich", "interpretation": null, "is_crossed_out": false}, "gehaltsklasse": {"diplomatic_transcript": "IV", "interpretation": "4", "is_crossed_out": false}, "jahresgehalt_monatsgehalt_taglohn": {"diplomatic_transcript": "Fr. 3'000.-", "interpretation": "3000", "is_crossed_out": false}, "datum_gehalts\u00e4nderung": {"diplomatic_transcript": "1. April 1947", "interpretation": "1947-04-01", "is_crossed_out": false}, "bemerkungen": {"diplomatic_transcript": "Provisorisch", "interpretation": null, "is_crossed_out": false}}, {"row_number": 3, "dienstliche_stellung": {"diplomatic_transcript": "B\u00fcroleiterin", "interpretation": null, "is_crossed_out": false}, "dienstort": {"diplomatic_transcript": "Genf", "interpretation": null, "is_crossed_out": false}, "gehaltsklasse": {"diplomatic_transcript": "V", "interpretation": "5", "is_crossed_out": false}, "jahresgehalt_monatsgehalt_taglohn": {"diplomatic_transcript": "Fr. 3'700.-", "interpretation": "3700", "is_crossed_out": false}, "datum_gehalts\u00e4nderung": {"diplomatic_transcript": "15. Juni 1950", "interpretation": "1950-06-15", "is_crossed_out": false}, "bemerkungen": {"diplomatic_transcript": "", "interpretation": null, "is_crossed_out": false}}, {"row_number": 4, "dienstliche_stellung": {"diplomatic_transcript": "Abteilungsleiterin", "interpretation": null, "is_crossed_out": false}, "dienstort": {"diplomatic_transcript": "Bern", "interpretation": null, "is_crossed_out": false}, "gehaltsklasse": {"diplomatic_transcript": "VI", "interpretation": "6", "is_crossed_out": false}, "jahresgehalt_monatsgehalt_taglohn": {"diplomatic_transcript": "Fr. 5'094.-", "interpretation": "5094", "is_crossed_out": false}, "datum_gehalts\u00e4nderung": {"diplomatic_transcript": "1. Januar 1955", "interpretation": "1955-01-01", "is_crossed_out": false}, "bemerkungen": {"diplomatic_transcript": "Neue Stelle", "interpretation": null, "is_crossed_out": false}}, {"row_number": 5, "dienstliche_stellung": {"diplomatic_transcript": "~Hilfsleiterin~", "interpretation": null, "is_crossed_out": true}, "dienstort": {"diplomatic_transcript": "Z\u00fcrich", "interpretation": null, "is_crossed_out": false}, "gehaltsklasse": {"diplomatic_transcript": "III", "interpretation": "3", "is_crossed_out": false}, "jahresgehalt_monatsgehalt_taglohn": {"diplomatic_transcript": "Fr. 2'100.-", "interpretation": "2100", "is_crossed_out": false}, "datum_gehalts\u00e4nderung": {"diplomatic_transcript": "1. Oktober 1948", "interpretation": "1948-10-01", "is_crossed_out": false}, "bemerkungen": {"diplomatic_transcript": "Tempor\u00e4r", "interpretation": null, "is_crossed_out": false}}, {"row_number": 6, "dienstliche_stellung": {"diplomatic_transcript": "~Sekret\u00e4rin~", "interpretation": null, "is_crossed_out": true}, "dienstort": {"diplomatic_transcript": "~Genf~", "interpretation": null, "is_crossed_out": true}, "gehaltsklasse": {"diplomatic_transcript": "", "interpretation": null, "is_crossed_out": false}, "jahresgehalt_monatsgehalt_taglohn": {"diplomatic_transcript": "Fr. 2'700.-", "interpretation": "2700", "is_crossed_out": false}, "datum_gehalts\u00e4nderung": {"diplomatic_transcript": "1. M\u00e4rz 1949", "interpretation": "1949-03-01", "is_crossed_out": false}, "bemerkungen": {"diplomatic_transcript": "", "interpretation": null, "is_crossed_out": false}}, {"row_number": 7, "dienstliche_stellung": {"diplomatic_transcript": "\"", "interpretation": "B\u00fcroleiterin", "is_crossed_out": false}, "dienstort": {"diplomatic_transcript": "\"", "interpretation": "Genf", "is_crossed_out": false}, "gehaltsklasse": {"diplomatic_transcript": "V", "interpretation": "5", "is_crossed_out": false}, "jahresgehalt_monatsgehalt_taglohn": {"diplomatic_transcript": "Fr. 3'400.-", "interpretation": "3400", "is_crossed_out": false}, "datum_gehalts\u00e4nderung": {"diplomatic_transcript": "1. Juli 1951", "interpretation": "1951-07-01", "is_crossed_out": false}, "bemerkungen": {"diplomatic_transcript": "Gehaltserh\u00f6hung", "interpretation": null, "is_crossed_out": false}}, {"row_number": 8, "dienstliche_stellung": {"diplomatic_transcript": "\"", "interpretation": "B\u00fcroleiterin", "is_crossed_out": false}, "dienstort": {"diplomatic_transcript": "\"", "interpretation": "Genf", "is_crossed_out": false}, "gehaltsklasse": {"diplomatic_transcript": "\"", "interpretation": "5", "is_crossed_out": false}, "jahresgehalt_monatsgehalt_taglohn": {"diplomatic_transcript": "Fr. 3'700.-", "interpretation": "3700", "is_crossed_out": false}, "datum_gehalts\u00e4nderung": {"diplomatic_transcript": "1. Januar 1953", "interpretation": "1953-01-01", "is_crossed_out": false}, "bemerkungen": {"diplomatic_transcript": "Tarifliche Anpassung", "interpretation": null, "is_crossed_out": false}}, {"row_number": 9, "dienstliche_stellung": {"diplomatic_transcript": "~\"~", "interpretation": null, "is_crossed_out": true}, "dienstort": {"diplomatic_transcript": "\"", "interpretation": "Genf", "is_crossed_out": false}, "gehaltsklasse": {"diplomatic_transcript": "\"", "interpretation": "5", "is_crossed_out": false}, "jahresgehalt_monatsgehalt_taglohn": {"diplomatic_transcript": "Fr. 4'200.-", "interpretation": "4200", "is_crossed_out": false}, "datum_gehalts\u00e4nderung": {"diplomatic_transcript": "1. Oktober 1954", "interpretation": "1954-10-01", "is_crossed_out": false}, "bemerkungen": {"diplomatic_transcript": "Leistungszulage", "interpretation": null, "is_crossed_out": false}}, {"row_number": 10, "dienstliche_stellung": {"diplomatic_transcript": "~\"~", "interpretation": null, "is_crossed_out": true}, "dienstort": {"diplomatic_transcript": "Bern", "interpretation": null, "is_crossed_out": false}, "gehaltsklasse": {"diplomatic_transcript": "VI", "interpretation": "6", "is_crossed_out": false}, "jahresgehalt_monatsgehalt_taglohn": {"diplomatic_transcript": "Fr. 5'094.-", "interpretation": "5094", "is_crossed_out": false}, "datum_gehalts\u00e4nderung": {"diplomatic_transcript": "1. Januar 1955", "interpretation": "1955-01-01", "is_crossed_out": false}, "bemerkungen": {"diplomatic_transcript": "Stellenwechsel", "interpretation": null, "is_crossed_out": false}}, {"row_number": 11, "dienstliche_stellung": {"diplomatic_transcript": "Abteilungsleiterin", "interpretation": null, "is_crossed_out": false}, "dienstort": {"diplomatic_transcript": "Bern", "interpretation": null, "is_crossed_out": false}, "gehaltsklasse": {"diplomatic_transcript": "VI", "interpretation": "6", "is_crossed_out": false}, "jahresgehalt_monatsgehalt_taglohn": {"diplomatic_transcript": "Fr. 5'600.-", "interpretation": "5600", "is_crossed_out": false}, "datum_gehalts\u00e4nderung": {"diplomatic_transcript": "1. Januar 1957", "interpretation": "1957-01-01", "is_crossed_out": false}, "bemerkungen": {"diplomatic_transcript": "Gehaltsanpassung", "interpretation": null, "is_crossed_out": false}}, {"row_number": 12, "dienstliche_stellung": {"diplomatic_transcript": "\"", "interpretation": "Abteilungsleiterin", "is_crossed_out": false}, "dienstort": {"diplomatic_transcript": "\"", "interpretation": "Bern", "is_crossed_out": false}, "gehaltsklasse": {"diplomatic_transcript": "\"", "interpretation": "6", "is_crossed_out": false}, "jahresgehalt_monatsgehalt_taglohn": {"diplomatic_transcript": "Fr. 6'300.-", "interpretation": "6300", "is_crossed_out": false}, "datum_gehalts\u00e4nderung": {"diplomatic_transcript": "1. Juli 1958", "interpretation": "1958-07-01", "is_crossed_out": false}, "bemerkungen": {"diplomatic_transcript": "Erh\u00f6hung aufgrund Erfahrung", "interpretation": null, "is_crossed_out": false}}, {"row_number": 13, "dienstliche_stellung": {"diplomatic_transcript": "~\"~", "interpretation": null, "is_crossed_out": true}, "dienstort": {"diplomatic_transcript": "Z\u00fcrich", "interpretation": null, "is_crossed_out": false}, "gehaltsklasse": {"diplomatic_transcript": "VII", "interpretation": "7", "is_crossed_out": false}, "jahresgehalt_monatsgehalt_taglohn": {"diplomatic_transcript": "Fr. 7'200.-", "interpretation": "7200", "is_crossed_out": false}, "datum_gehalts\u00e4nderung": {"diplomatic_transcript": "1. Januar 1960", "interpretation": "1960-01-01", "is_crossed_out": false}, "bemerkungen": {"diplomatic_transcript": "Bef\u00f6rderung", "interpretation": null, "is_crossed_out": false}}]}, "conversation_id": "5ba595aa-5b16-41ba-814d-e79c4cb30548", "score": {"f1_score": 0.13, "precision": 0.07346938775510205, "recall": 0.5, "true_positives": 18, "false_positives": 227, "false_negatives": 18, "field_scores": {"rows[0].jahresgehalt_monatsgehalt_taglohn.diplomatic_transcript": {"response": "Fr. 2'400.-", "ground_truth": "2'100.-", "score": 0.6666666666666667}, "rows[8].gehaltsklasse.diplomatic_transcript": {"response": "\"", "ground_truth": null, "score": 0.0}, "rows[12].datum_gehalts\u00e4nderung.is_crossed_out": {"response": false, "ground_truth": null, "score": 0.0}, "rows[5].gehaltsklasse.is_crossed_out": {"response": false, "ground_truth": null, "score": 0.0}, "rows[2].datum_gehalts\u00e4nderung.diplomatic_transcript": {"response": "15. Juni 1950", "ground_truth": "1.Januar 1945", "score": 0.6153846153846154}, "rows[11].gehaltsklasse.is_crossed_out": {"response": false, "ground_truth": null, "score": 0.0}, "rows[2].jahresgehalt_monatsgehalt_taglohn.diplomatic_transcript": {"response": "Fr. 3'700.-", "ground_truth": "3.478.-", "score": 0.4444444444444444}, "rows[1].jahresgehalt_monatsgehalt_taglohn.is_crossed_out": {"response": false, "ground_truth": false, "score": 1.0}, "$defs.TableRow.required[3]": {"response": "gehaltsklasse", "ground_truth": null, "score": 0.0}, "rows[9].dienstort.interpretation": {"response": null, "ground_truth": null, "score": 1.0}, "rows[2].dienstliche_stellung.is_crossed_out": {"response": false, "ground_truth": false, "score": 1.0}, "rows[1].gehaltsklasse.diplomatic_transcript": {"response": "IV", "ground_truth": null, "score": 0.0}, "rows[5].dienstort.is_crossed_out": {"response": true, "ground_truth": null, "score": 0.0}, "rows[9].gehaltsklasse.interpretation": {"response": "6", "ground_truth": null, "score": 0.0}, "rows[12].datum_gehalts\u00e4nderung.interpretation": {"response": "1960-01-01", "ground_truth": null, "score": 0.0}, "$defs.TableRow.properties.jahresgehalt_monatsgehalt_taglohn.description": {"response": "Annual salary, monthly salary, or daily wage", "ground_truth": null, "score": 0.0}, "rows[5].dienstliche_stellung.diplomatic_transcript": {"response": "~Sekret\u00e4rin~", "ground_truth": null, "score": 0.0}, "rows[3].dienstort.is_crossed_out": {"response": false, "ground_truth": null, "score": 0.0}, "$defs.TableRow.properties.row_number.type": {"response": "integer", "ground_truth": null, "score": 0.0}, "properties.rows.type": {"response": "array", "ground_truth": null, "score": 0.0}, "rows[12].dienstliche_stellung.diplomatic_transcript": {"response": "~\"~", "ground_truth": null, "score": 0.0}, "title": {"response": "Table", "ground_truth": null, "score": 0.0}, "rows[0].bemerkungen.diplomatic_transcript": {"response": null, "ground_truth": null, "score": 1.0}, "$defs.TableRow.type": {"response": "object", "ground_truth": null, "score": 0.0}, "rows[1].dienstort.interpretation": {"response": null, "ground_truth": null, "score": 1.0}, "rows[12].dienstort.diplomatic_transcript": {"response": "Z\u00fcrich", "ground_truth": null, "score": 0.0}, "rows[1].gehaltsklasse.is_crossed_out": {"response": false, "ground_truth": false, "score": 1.0}, "rows[1].bemerkungen.interpretation": {"response": null, "ground_truth": null, "score": 1.0}, "rows[8].gehaltsklasse.is_crossed_out": {"response": false, "ground_truth": null, "score": 0.0}, "rows[10].dienstliche_stellung.interpretation": {"response": null, "ground_truth": null, "score": 1.0}, "rows[12].dienstort.is_crossed_out": {"response": false, "ground_truth": null, "score": 0.0}, "rows[0].dienstort.is_crossed_out": {"response": false, "ground_truth": false, "score": 1.0}, "rows[9].jahresgehalt_monatsgehalt_taglohn.diplomatic_transcript": {"response": "Fr. 5'094.-", "ground_truth": null, "score": 0.0}, "rows[8].datum_gehalts\u00e4nderung.diplomatic_transcript": {"response": "1. Oktober 1954", "ground_truth": null, "score": 0.0}, "rows[7].bemerkungen.interpretation": {"response": null, "ground_truth": null, "score": 1.0}, "rows[6].bemerkungen.interpretation": {"response": null, "ground_truth": null, "score": 1.0}, "$defs.FieldValue.properties.interpretation.description": {"response": "Interpretation or expansion of abbreviations and meanings", "ground_truth": null, "score": 0.0}, "rows[7].bemerkungen.diplomatic_transcript": {"response": "Tarifliche Anpassung", "ground_truth": null, "score": 0.0}, "rows[9].bemerkungen.interpretation": {"response": null, "ground_truth": null, "score": 1.0}, "$defs.TableRow.description": {"response": "Represents a single row in the personnel card table.", "ground_truth": null, "score": 0.0}, "rows[0].jahresgehalt_monatsgehalt_taglohn.interpretation": {"response": "2400", "ground_truth": "2100", "score": 0.75}, "rows[10].bemerkungen.interpretation": {"response": null, "ground_truth": null, "score": 1.0}, "rows[12].dienstliche_stellung.interpretation": {"response": null, "ground_truth": null, "score": 1.0}, "rows[8].bemerkungen.interpretation": {"response": null, "ground_truth": null, "score": 1.0}, "rows[3].bemerkungen.interpretation": {"response": null, "ground_truth": null, "score": 1.0}, "rows[4].dienstliche_stellung.is_crossed_out": {"response": true, "ground_truth": null, "score": 0.0}, "rows[11].dienstliche_stellung.diplomatic_transcript": {"response": "\"", "ground_truth": null, "score": 0.0}, "rows[2].jahresgehalt_monatsgehalt_taglohn.is_crossed_out": {"response": false, "ground_truth": false, "score": 1.0}, "rows[7].dienstliche_stellung.is_crossed_out": {"response": false, "ground_truth": null, "score": 0.0}, "rows[11].jahresgehalt_monatsgehalt_taglohn.diplomatic_transcript": {"response": "Fr. 6'300.-", "ground_truth": null, "score": 0.0}, "rows[6].dienstliche_stellung.interpretation": {"response": "B\u00fcroleiterin", "ground_truth": null, "score": 0.0}, "rows[4].dienstliche_stellung.interpretation": {"response": null, "ground_truth": null, "score": 1.0}, "rows[7].jahresgehalt_monatsgehalt_taglohn.interpretation": {"response": "3700", "ground_truth": null, "score": 0.0}, "rows[0].gehaltsklasse.interpretation": {"response": "3", "ground_truth": null, "score": 0.0}, "rows[0].datum_gehalts\u00e4nderung.interpretation": {"response": "1946-01-01", "ground_truth": "1943-02-09", "score": 0.7}, "rows[6].bemerkungen.is_crossed_out": {"response": false, "ground_truth": null, "score": 0.0}, "$defs.TableRow.properties.dienstliche_stellung.description": {"response": "Official position/job title", "ground_truth": null, "score": 0.0}, "rows[5].bemerkungen.diplomatic_transcript": {"response": null, "ground_truth": null, "score": 1.0}, "$defs.FieldValue.properties.interpretation.anyOf[0].type": {"response": "string", "ground_truth": null, "score": 0.0}, "rows[11].dienstort.is_crossed_out": {"response": false, "ground_truth": null, "score": 0.0}, "$defs.FieldValue.properties.is_crossed_out.title": {"response": "Is Crossed Out", "ground_truth": null, "score": 0.0}, "rows[6].bemerkungen.diplomatic_transcript": {"response": "Gehaltserh\u00f6hung", "ground_truth": null, "score": 0.0}, "$defs.TableRow.required[1]": {"response": "dienstliche_stellung", "ground_truth": null, "score": 0.0}, "$schema": {"response": "http://json-schema.org/draft-07/schema#", "ground_truth": null, "score": 0.0}, "$defs.FieldValue.properties.is_crossed_out.description": {"response": "Whether the text has been crossed out on the card", "ground_truth": null, "score": 0.0}, "rows[3].bemerkungen.diplomatic_transcript": {"response": "Neue Stelle", "ground_truth": null, "score": 0.0}, "rows[10].gehaltsklasse.is_crossed_out": {"response": false, "ground_truth": null, "score": 0.0}, "rows[0].gehaltsklasse.is_crossed_out": {"response": false, "ground_truth": false, "score": 1.0}, "rows[6].datum_gehalts\u00e4nderung.is_crossed_out": {"response": false, "ground_truth": null, "score": 0.0}, "rows[0].bemerkungen.is_crossed_out": {"response": false, "ground_truth": false, "score": 1.0}, "$defs.TableRow.required[6]": {"response": "bemerkungen", "ground_truth": null, "score": 0.0}, "rows[2].dienstort.interpretation": {"response": null, "ground_truth": null, "score": 1.0}, "rows[6].datum_gehalts\u00e4nderung.interpretation": {"response": "1951-07-01", "ground_truth": null, "score": 0.0}, "rows[3].jahresgehalt_monatsgehalt_taglohn.interpretation": {"response": "5094", "ground_truth": null, "score": 0.0}, "rows[5].jahresgehalt_monatsgehalt_taglohn.interpretation": {"response": "2700", "ground_truth": null, "score": 0.0}, "rows[7].dienstort.interpretation": {"response": "Genf", "ground_truth": null, "score": 0.0}, "rows[10].dienstliche_stellung.diplomatic_transcript": {"response": "Abteilungsleiterin", "ground_truth": null, "score": 0.0}, "rows[11].bemerkungen.interpretation": {"response": null, "ground_truth": null, "score": 1.0}, "rows[8].datum_gehalts\u00e4nderung.is_crossed_out": {"response": false, "ground_truth": null, "score": 0.0}, "rows[10].bemerkungen.diplomatic_transcript": {"response": "Gehaltsanpassung", "ground_truth": null, "score": 0.0}, "rows[2].dienstliche_stellung.interpretation": {"response": null, "ground_truth": "Arbeitslehrerin", "score": 0.0}, "rows[9].jahresgehalt_monatsgehalt_taglohn.interpretation": {"response": "5094", "ground_truth": null, "score": 0.0}, "rows[11].gehaltsklasse.interpretation": {"response": "6", "ground_truth": null, "score": 0.0}, "rows[3].bemerkungen.is_crossed_out": {"response": false, "ground_truth": null, "score": 0.0}, "rows[5].datum_gehalts\u00e4nderung.diplomatic_transcript": {"response": "1. M\u00e4rz 1949", "ground_truth": null, "score": 0.0}, "rows[8].dienstort.is_crossed_out": {"response": false, "ground_truth": null, "score": 0.0}, "rows[6].jahresgehalt_monatsgehalt_taglohn.diplomatic_transcript": {"response": "Fr. 3'400.-", "ground_truth": null, "score": 0.0}, "rows[10].datum_gehalts\u00e4nderung.is_crossed_out": {"response": false, "ground_truth": null, "score": 0.0}, "rows[2].datum_gehalts\u00e4nderung.interpretation": {"response": "1950-06-15", "ground_truth": "1945-01-01", "score": 0.7}, "rows[5].bemerkungen.interpretation": {"response": null, "ground_truth": null, "score": 1.0}, "rows[5].jahresgehalt_monatsgehalt_taglohn.diplomatic_transcript": {"response": "Fr. 2'700.-", "ground_truth": null, "score": 0.0}, "rows[11].bemerkungen.is_crossed_out": {"response": false, "ground_truth": null, "score": 0.0}, "rows[12].bemerkungen.interpretation": {"response": null, "ground_truth": null, "score": 1.0}, "rows[0].dienstliche_stellung.interpretation": {"response": null, "ground_truth": null, "score": 1.0}, "rows[1].datum_gehalts\u00e4nderung.interpretation": {"response": "1947-04-01", "ground_truth": "1944-01-01", "score": 0.8}, "properties.rows.title": {"response": "Rows", "ground_truth": null, "score": 0.0}, "rows[3].jahresgehalt_monatsgehalt_taglohn.diplomatic_transcript": {"response": "Fr. 5'094.-", "ground_truth": null, "score": 0.0}, "$defs.FieldValue.required[0]": {"response": "diplomatic_transcript", "ground_truth": null, "score": 0.0}, "rows[3].datum_gehalts\u00e4nderung.is_crossed_out": {"response": false, "ground_truth": null, "score": 0.0}, "rows[5].datum_gehalts\u00e4nderung.interpretation": {"response": "1949-03-01", "ground_truth": null, "score": 0.0}, "rows[4].gehaltsklasse.interpretation": {"response": "3", "ground_truth": null, "score": 0.0}, "rows[9].datum_gehalts\u00e4nderung.is_crossed_out": {"response": false, "ground_truth": null, "score": 0.0}, "rows[7].gehaltsklasse.is_crossed_out": {"response": false, "ground_truth": null, "score": 0.0}, "$defs.TableRow.properties.row_number.description": {"response": "Sequential row number from top to bottom", "ground_truth": null, "score": 0.0}, "rows[12].dienstort.interpretation": {"response": null, "ground_truth": null, "score": 1.0}, "rows[2].dienstort.diplomatic_transcript": {"response": "Genf", "ground_truth": null, "score": 0.0}, "$defs.TableRow.properties.gehaltsklasse.$ref": {"response": "#/$defs/FieldValue", "ground_truth": null, "score": 0.0}, "rows[5].jahresgehalt_monatsgehalt_taglohn.is_crossed_out": {"response": false, "ground_truth": null, "score": 0.0}, "rows[7].dienstliche_stellung.interpretation": {"response": "B\u00fcroleiterin", "ground_truth": null, "score": 0.0}, "rows[10].gehaltsklasse.interpretation": {"response": "6", "ground_truth": null, "score": 0.0}, "rows[5].dienstliche_stellung.interpretation": {"response": null, "ground_truth": null, "score": 1.0}, "rows[10].gehaltsklasse.diplomatic_transcript": {"response": "VI", "ground_truth": null, "score": 0.0}, "rows[1].bemerkungen.diplomatic_transcript": {"response": "Provisorisch", "ground_truth": null, "score": 0.0}, "rows[3].gehaltsklasse.interpretation": {"response": "6", "ground_truth": null, "score": 0.0}, "rows[7].gehaltsklasse.interpretation": {"response": "5", "ground_truth": null, "score": 0.0}, "$defs.FieldValue.properties.interpretation.default": {"response": null, "ground_truth": null, "score": 1.0}, "rows[4].jahresgehalt_monatsgehalt_taglohn.diplomatic_transcript": {"response": "Fr. 2'100.-", "ground_truth": null, "score": 0.0}, "$defs.TableRow.properties.dienstliche_stellung.$ref": {"response": "#/$defs/FieldValue", "ground_truth": null, "score": 0.0}, "rows[1].gehaltsklasse.interpretation": {"response": "4", "ground_truth": null, "score": 0.0}, "rows[0].bemerkungen.interpretation": {"response": null, "ground_truth": null, "score": 1.0}, "rows[8].bemerkungen.diplomatic_transcript": {"response": "Leistungszulage", "ground_truth": null, "score": 0.0}, "rows[8].dienstliche_stellung.is_crossed_out": {"response": true, "ground_truth": null, "score": 0.0}, "$defs.TableRow.required[5]": {"response": "datum_gehalts\u00e4nderung", "ground_truth": null, "score": 0.0}, "rows[10].jahresgehalt_monatsgehalt_taglohn.is_crossed_out": {"response": false, "ground_truth": null, "score": 0.0}, "rows[6].dienstliche_stellung.diplomatic_transcript": {"response": "\"", "ground_truth": null, "score": 0.0}, "$defs.FieldValue.properties.is_crossed_out.type": {"response": "boolean", "ground_truth": null, "score": 0.0}, "rows[9].jahresgehalt_monatsgehalt_taglohn.is_crossed_out": {"response": false, "ground_truth": null, "score": 0.0}, "$defs.TableRow.properties.datum_gehalts\u00e4nderung.description": {"response": "Date of salary change (day, month, year)", "ground_truth": null, "score": 0.0}, "$defs.FieldValue.properties.diplomatic_transcript.description": {"response": "Exact text as written on the card, including abbreviations", "ground_truth": null, "score": 0.0}, "rows[9].dienstliche_stellung.interpretation": {"response": null, "ground_truth": null, "score": 1.0}, "rows[9].datum_gehalts\u00e4nderung.diplomatic_transcript": {"response": "1. Januar 1955", "ground_truth": null, "score": 0.0}, "rows[1].dienstliche_stellung.diplomatic_transcript": {"response": "Sekret\u00e4rin", "ground_truth": "\"", "score": 0.0}, "$defs.TableRow.properties.bemerkungen.$ref": {"response": "#/$defs/FieldValue", "ground_truth": null, "score": 0.0}, "rows[0].datum_gehalts\u00e4nderung.diplomatic_transcript": {"response": "1. Jan. 1946", "ground_truth": "9. Feb. 1943", "score": 0.5833333333333333}, "rows[1].jahresgehalt_monatsgehalt_taglohn.diplomatic_transcript": {"response": "Fr. 3'000.-", "ground_truth": "2'225.-", "score": 0.33333333333333337}, "rows[9].bemerkungen.is_crossed_out": {"response": false, "ground_truth": null, "score": 0.0}, "rows[1].datum_gehalts\u00e4nderung.diplomatic_transcript": {"response": "1. April 1947", "ground_truth": "1. Jan. 1944", "score": 0.56}, "rows[3].dienstliche_stellung.is_crossed_out": {"response": false, "ground_truth": null, "score": 0.0}, "rows[7].datum_gehalts\u00e4nderung.is_crossed_out": {"response": false, "ground_truth": null, "score": 0.0}, "rows[3].jahresgehalt_monatsgehalt_taglohn.is_crossed_out": {"response": false, "ground_truth": null, "score": 0.0}, "rows[8].gehaltsklasse.interpretation": {"response": "5", "ground_truth": null, "score": 0.0}, "rows[3].dienstliche_stellung.diplomatic_transcript": {"response": "Abteilungsleiterin", "ground_truth": null, "score": 0.0}, "rows[4].datum_gehalts\u00e4nderung.is_crossed_out": {"response": false, "ground_truth": null, "score": 0.0}, "rows[0].dienstort.interpretation": {"response": null, "ground_truth": null, "score": 1.0}, "rows[11].gehaltsklasse.diplomatic_transcript": {"response": "\"", "ground_truth": null, "score": 0.0}, "rows[0].dienstliche_stellung.is_crossed_out": {"response": false, "ground_truth": false, "score": 1.0}, "rows[4].datum_gehalts\u00e4nderung.diplomatic_transcript": {"response": "1. Oktober 1948", "ground_truth": null, "score": 0.0}, "rows[6].dienstort.interpretation": {"response": "Genf", "ground_truth": null, "score": 0.0}, "rows[2].bemerkungen.interpretation": {"response": null, "ground_truth": null, "score": 1.0}, "rows[12].dienstliche_stellung.is_crossed_out": {"response": true, "ground_truth": null, "score": 0.0}, "rows[4].bemerkungen.diplomatic_transcript": {"response": "Tempor\u00e4r", "ground_truth": null, "score": 0.0}, "rows[8].dienstort.interpretation": {"response": "Genf", "ground_truth": null, "score": 0.0}, "$defs.FieldValue.properties.interpretation.anyOf[1].type": {"response": "null", "ground_truth": null, "score": 0.0}, "rows[12].bemerkungen.is_crossed_out": {"response": false, "ground_truth": null, "score": 0.0}, "rows[12].datum_gehalts\u00e4nderung.diplomatic_transcript": {"response": "1. Januar 1960", "ground_truth": null, "score": 0.0}, "rows[1].dienstliche_stellung.interpretation": {"response": null, "ground_truth": "Arbeitslehrerin", "score": 0.0}, "rows[4].dienstort.is_crossed_out": {"response": false, "ground_truth": null, "score": 0.0}, "rows[2].gehaltsklasse.interpretation": {"response": "5", "ground_truth": null, "score": 0.0}, "$defs.FieldValue.properties.interpretation.title": {"response": "Interpretation", "ground_truth": null, "score": 0.0}, "rows[12].jahresgehalt_monatsgehalt_taglohn.is_crossed_out": {"response": false, "ground_truth": null, "score": 0.0}, "rows[8].dienstliche_stellung.interpretation": {"response": null, "ground_truth": null, "score": 1.0}, "rows[2].bemerkungen.is_crossed_out": {"response": false, "ground_truth": false, "score": 1.0}, "rows[5].dienstliche_stellung.is_crossed_out": {"response": true, "ground_truth": null, "score": 0.0}, "rows[8].dienstliche_stellung.diplomatic_transcript": {"response": "~\"~", "ground_truth": null, "score": 0.0}, "$defs.FieldValue.properties.diplomatic_transcript.type": {"response": "string", "ground_truth": null, "score": 0.0}, "rows[10].bemerkungen.is_crossed_out": {"response": false, "ground_truth": null, "score": 0.0}, "rows[4].datum_gehalts\u00e4nderung.interpretation": {"response": "1948-10-01", "ground_truth": null, "score": 0.0}, "$defs.TableRow.properties.bemerkungen.description": {"response": "Remarks, notes, or additional information", "ground_truth": null, "score": 0.0}, "rows[9].dienstort.diplomatic_transcript": {"response": "Bern", "ground_truth": null, "score": 0.0}, "$defs.TableRow.required[4]": {"response": "jahresgehalt_monatsgehalt_taglohn", "ground_truth": null, "score": 0.0}, "$defs.FieldValue.properties.diplomatic_transcript.title": {"response": "Diplomatic Transcript", "ground_truth": null, "score": 0.0}, "rows[0].dienstliche_stellung.diplomatic_transcript": {"response": "Assistentin", "ground_truth": "Arbeitslehrerin", "score": 0.4615384615384615}, "rows[2].datum_gehalts\u00e4nderung.is_crossed_out": {"response": false, "ground_truth": false, "score": 1.0}, "rows[5].gehaltsklasse.diplomatic_transcript": {"response": null, "ground_truth": null, "score": 1.0}, "rows[0].dienstort.diplomatic_transcript": {"response": "Basel", "ground_truth": null, "score": 0.0}, "rows[1].datum_gehalts\u00e4nderung.is_crossed_out": {"response": false, "ground_truth": false, "score": 1.0}, "rows[6].gehaltsklasse.interpretation": {"response": "5", "ground_truth": null, "score": 0.0}, "rows[6].jahresgehalt_monatsgehalt_taglohn.interpretation": {"response": "3400", "ground_truth": null, "score": 0.0}, "rows[7].jahresgehalt_monatsgehalt_taglohn.diplomatic_transcript": {"response": "Fr. 3'700.-", "ground_truth": null, "score": 0.0}, "rows[10].dienstort.diplomatic_transcript": {"response": "Bern", "ground_truth": null, "score": 0.0}, "rows[4].dienstort.diplomatic_transcript": {"response": "Z\u00fcrich", "ground_truth": null, "score": 0.0}, "type": {"response": "object", "ground_truth": null, "score": 0.0}, "rows[10].dienstort.is_crossed_out": {"response": false, "ground_truth": null, "score": 0.0}, "rows[10].jahresgehalt_monatsgehalt_taglohn.diplomatic_transcript": {"response": "Fr. 5'600.-", "ground_truth": null, "score": 0.0}, "rows[12].bemerkungen.diplomatic_transcript": {"response": "Bef\u00f6rderung", "ground_truth": null, "score": 0.0}, "rows[2].gehaltsklasse.is_crossed_out": {"response": false, "ground_truth": false, "score": 1.0}, "rows[8].dienstort.diplomatic_transcript": {"response": "\"", "ground_truth": null, "score": 0.0}, "rows[4].dienstliche_stellung.diplomatic_transcript": {"response": "~Hilfsleiterin~", "ground_truth": null, "score": 0.0}, "rows[11].dienstort.interpretation": {"response": "Bern", "ground_truth": null, "score": 0.0}, "rows[3].gehaltsklasse.is_crossed_out": {"response": false, "ground_truth": null, "score": 0.0}, "rows[2].dienstliche_stellung.diplomatic_transcript": {"response": "B\u00fcroleiterin", "ground_truth": "\"", "score": 0.0}, "rows[2].dienstort.is_crossed_out": {"response": false, "ground_truth": false, "score": 1.0}, "rows[6].dienstliche_stellung.is_crossed_out": {"response": false, "ground_truth": null, "score": 0.0}, "rows[9].dienstliche_stellung.is_crossed_out": {"response": true, "ground_truth": null, "score": 0.0}, "rows[12].gehaltsklasse.interpretation": {"response": "7", "ground_truth": null, "score": 0.0}, "rows[5].dienstort.diplomatic_transcript": {"response": "~Genf~", "ground_truth": null, "score": 0.0}, "rows[7].datum_gehalts\u00e4nderung.interpretation": {"response": "1953-01-01", "ground_truth": null, "score": 0.0}, "rows[10].dienstort.interpretation": {"response": null, "ground_truth": null, "score": 1.0}, "rows[7].bemerkungen.is_crossed_out": {"response": false, "ground_truth": null, "score": 0.0}, "rows[11].dienstliche_stellung.is_crossed_out": {"response": false, "ground_truth": null, "score": 0.0}, "rows[1].dienstort.diplomatic_transcript": {"response": "Z\u00fcrich", "ground_truth": null, "score": 0.0}, "$defs.TableRow.title": {"response": "TableRow", "ground_truth": null, "score": 0.0}, "rows[0].datum_gehalts\u00e4nderung.is_crossed_out": {"response": false, "ground_truth": false, "score": 1.0}, "rows[7].dienstliche_stellung.diplomatic_transcript": {"response": "\"", "ground_truth": null, "score": 0.0}, "description": {"response": "Main output structure for Personnel Cards.", "ground_truth": null, "score": 0.0}, "rows[3].dienstort.interpretation": {"response": null, "ground_truth": null, "score": 1.0}, "rows[8].datum_gehalts\u00e4nderung.interpretation": {"response": "1954-10-01", "ground_truth": null, "score": 0.0}, "$defs.TableRow.properties.jahresgehalt_monatsgehalt_taglohn.$ref": {"response": "#/$defs/FieldValue", "ground_truth": null, "score": 0.0}, "rows[6].dienstort.is_crossed_out": {"response": false, "ground_truth": null, "score": 0.0}, "rows[7].gehaltsklasse.diplomatic_transcript": {"response": "\"", "ground_truth": null, "score": 0.0}, "rows[8].jahresgehalt_monatsgehalt_taglohn.is_crossed_out": {"response": false, "ground_truth": null, "score": 0.0}, "rows[8].bemerkungen.is_crossed_out": {"response": false, "ground_truth": null, "score": 0.0}, "rows[0].jahresgehalt_monatsgehalt_taglohn.is_crossed_out": {"response": false, "ground_truth": false, "score": 1.0}, "rows[6].gehaltsklasse.is_crossed_out": {"response": false, "ground_truth": null, "score": 0.0}, "rows[7].dienstort.is_crossed_out": {"response": false, "ground_truth": null, "score": 0.0}, "rows[1].dienstort.is_crossed_out": {"response": false, "ground_truth": false, "score": 1.0}, "$defs.FieldValue.title": {"response": "FieldValue", "ground_truth": null, "score": 0.0}, "$defs.FieldValue.type": {"response": "object", "ground_truth": null, "score": 0.0}, "rows[9].datum_gehalts\u00e4nderung.interpretation": {"response": "1955-01-01", "ground_truth": null, "score": 0.0}, "rows[5].dienstort.interpretation": {"response": null, "ground_truth": null, "score": 1.0}, "rows[11].jahresgehalt_monatsgehalt_taglohn.interpretation": {"response": "6300", "ground_truth": null, "score": 0.0}, "rows[3].datum_gehalts\u00e4nderung.interpretation": {"response": "1955-01-01", "ground_truth": null, "score": 0.0}, "rows[7].dienstort.diplomatic_transcript": {"response": "\"", "ground_truth": null, "score": 0.0}, "rows[3].dienstort.diplomatic_transcript": {"response": "Bern", "ground_truth": null, "score": 0.0}, "rows[8].jahresgehalt_monatsgehalt_taglohn.interpretation": {"response": "4200", "ground_truth": null, "score": 0.0}, "rows[11].dienstliche_stellung.interpretation": {"response": "Abteilungsleiterin", "ground_truth": null, "score": 0.0}, "rows[11].datum_gehalts\u00e4nderung.is_crossed_out": {"response": false, "ground_truth": null, "score": 0.0}, "rows[4].jahresgehalt_monatsgehalt_taglohn.interpretation": {"response": "2100", "ground_truth": null, "score": 0.0}, "rows[11].jahresgehalt_monatsgehalt_taglohn.is_crossed_out": {"response": false, "ground_truth": null, "score": 0.0}, "rows[4].gehaltsklasse.is_crossed_out": {"response": false, "ground_truth": null, "score": 0.0}, "rows[11].dienstort.diplomatic_transcript": {"response": "\"", "ground_truth": null, "score": 0.0}, "$defs.TableRow.properties.dienstort.description": {"response": "Place of service/work location", "ground_truth": null, "score": 0.0}, "$defs.TableRow.properties.datum_gehalts\u00e4nderung.$ref": {"response": "#/$defs/FieldValue", "ground_truth": null, "score": 0.0}, "rows[10].datum_gehalts\u00e4nderung.interpretation": {"response": "1957-01-01", "ground_truth": null, "score": 0.0}, "rows[12].gehaltsklasse.diplomatic_transcript": {"response": "VII", "ground_truth": null, "score": 0.0}, "rows[10].datum_gehalts\u00e4nderung.diplomatic_transcript": {"response": "1. Januar 1957", "ground_truth": null, "score": 0.0}, "rows[11].datum_gehalts\u00e4nderung.interpretation": {"response": "1958-07-01", "ground_truth": null, "score": 0.0}, "rows[6].dienstort.diplomatic_transcript": {"response": "\"", "ground_truth": null, "score": 0.0}, "rows[11].datum_gehalts\u00e4nderung.diplomatic_transcript": {"response": "1. Juli 1958", "ground_truth": null, "score": 0.0}, "rows[6].jahresgehalt_monatsgehalt_taglohn.is_crossed_out": {"response": false, "ground_truth": null, "score": 0.0}, "rows[9].gehaltsklasse.diplomatic_transcript": {"response": "VI", "ground_truth": null, "score": 0.0}, "rows[7].datum_gehalts\u00e4nderung.diplomatic_transcript": {"response": "1. Januar 1953", "ground_truth": null, "score": 0.0}, "rows[4].bemerkungen.is_crossed_out": {"response": false, "ground_truth": null, "score": 0.0}, "$defs.FieldValue.description": {"response": "Represents a single field value with transcript and interpretation.", "ground_truth": null, "score": 0.0}, "rows[4].jahresgehalt_monatsgehalt_taglohn.is_crossed_out": {"response": false, "ground_truth": null, "score": 0.0}, "rows[4].gehaltsklasse.diplomatic_transcript": {"response": "III", "ground_truth": null, "score": 0.0}, "rows[4].dienstort.interpretation": {"response": null, "ground_truth": null, "score": 1.0}, "rows[3].gehaltsklasse.diplomatic_transcript": {"response": "VI", "ground_truth": null, "score": 0.0}, "rows[1].jahresgehalt_monatsgehalt_taglohn.interpretation": {"response": "3000", "ground_truth": "2225", "score": 0.0}, "rows[0].gehaltsklasse.diplomatic_transcript": {"response": "III", "ground_truth": null, "score": 0.0}, "rows[12].gehaltsklasse.is_crossed_out": {"response": false, "ground_truth": null, "score": 0.0}, "$defs.TableRow.required[0]": {"response": "row_number", "ground_truth": null, "score": 0.0}, "properties.rows.description": {"response": "List of all rows in the personnel card table", "ground_truth": null, "score": 0.0}, "rows[4].bemerkungen.interpretation": {"response": null, "ground_truth": null, "score": 1.0}, "rows[5].bemerkungen.is_crossed_out": {"response": false, "ground_truth": null, "score": 0.0}, "rows[2].gehaltsklasse.diplomatic_transcript": {"response": "V", "ground_truth": null, "score": 0.0}, "rows[8].jahresgehalt_monatsgehalt_taglohn.diplomatic_transcript": {"response": "Fr. 4'200.-", "ground_truth": null, "score": 0.0}, "rows[5].gehaltsklasse.interpretation": {"response": null, "ground_truth": null, "score": 1.0}, "rows[12].jahresgehalt_monatsgehalt_taglohn.diplomatic_transcript": {"response": "Fr. 7'200.-", "ground_truth": null, "score": 0.0}, "rows[12].jahresgehalt_monatsgehalt_taglohn.interpretation": {"response": "7200", "ground_truth": null, "score": 0.0}, "$defs.FieldValue.properties.is_crossed_out.default": {"response": false, "ground_truth": null, "score": 0.0}, "rows[1].bemerkungen.is_crossed_out": {"response": false, "ground_truth": false, "score": 1.0}, "rows[6].gehaltsklasse.diplomatic_transcript": {"response": "V", "ground_truth": null, "score": 0.0}, "rows[2].jahresgehalt_monatsgehalt_taglohn.interpretation": {"response": "3700", "ground_truth": "3478", "score": 0.5}, "$defs.TableRow.properties.row_number.title": {"response": "Row Number", "ground_truth": null, "score": 0.0}, "rows[7].jahresgehalt_monatsgehalt_taglohn.is_crossed_out": {"response": false, "ground_truth": null, "score": 0.0}, "rows[10].jahresgehalt_monatsgehalt_taglohn.interpretation": {"response": "5600", "ground_truth": null, "score": 0.0}, "rows[9].gehaltsklasse.is_crossed_out": {"response": false, "ground_truth": null, "score": 0.0}, "rows[9].dienstliche_stellung.diplomatic_transcript": {"response": "~\"~", "ground_truth": null, "score": 0.0}, "rows[6].datum_gehalts\u00e4nderung.diplomatic_transcript": {"response": "1. Juli 1951", "ground_truth": null, "score": 0.0}, "rows[3].datum_gehalts\u00e4nderung.diplomatic_transcript": {"response": "1. Januar 1955", "ground_truth": null, "score": 0.0}, "rows[9].dienstort.is_crossed_out": {"response": false, "ground_truth": null, "score": 0.0}, "$defs.TableRow.properties.gehaltsklasse.description": {"response": "Salary class/grade", "ground_truth": null, "score": 0.0}, "rows[5].datum_gehalts\u00e4nderung.is_crossed_out": {"response": false, "ground_truth": null, "score": 0.0}, "rows[3].dienstliche_stellung.interpretation": {"response": null, "ground_truth": null, "score": 1.0}, "properties.rows.items.$ref": {"response": "#/$defs/TableRow", "ground_truth": null, "score": 0.0}, "rows[11].bemerkungen.diplomatic_transcript": {"response": "Erh\u00f6hung aufgrund Erfahrung", "ground_truth": null, "score": 0.0}, "rows[9].bemerkungen.diplomatic_transcript": {"response": "Stellenwechsel", "ground_truth": null, "score": 0.0}, "$defs.TableRow.properties.dienstort.$ref": {"response": "#/$defs/FieldValue", "ground_truth": null, "score": 0.0}, "rows[10].dienstliche_stellung.is_crossed_out": {"response": false, "ground_truth": null, "score": 0.0}, "rows[2].bemerkungen.diplomatic_transcript": {"response": null, "ground_truth": "+ Zulagen", "score": 0.0}, "$defs.TableRow.required[2]": {"response": "dienstort", "ground_truth": null, "score": 0.0}, "rows[1].dienstliche_stellung.is_crossed_out": {"response": false, "ground_truth": false, "score": 1.0}}, "total_fields": 296}, "raw_response": "{\"id\":\"8dca02d3d16f4feb83cfed9d978b7324\",\"object\":\"chat.completion\",\"model\":\"ministral-14b-2512\",\"usage\":{\"prompt_tokens\":1810,\"completion_tokens\":4403,\"total_tokens\":6213,\"num_cached_tokens\":1792},\"created\":1770655817,\"choices\":[{\"index\":0,\"message\":{\"content\":\"{\\n  \\\"$schema\\\": \\\"http://json-schema.org/draft-07/schema#\\\",\\n  \\\"$defs\\\": {\\n    \\\"FieldValue\\\": {\\n      \\\"description\\\": \\\"Represents a single field value with transcript and interpretation.\\\",\\n      \\\"properties\\\": {\\n        \\\"diplomatic_transcript\\\": {\\n          \\\"description\\\": \\\"Exact text as written on the card, including abbreviations\\\",\\n          \\\"title\\\": \\\"Diplomatic Transcript\\\",\\n          \\\"type\\\": \\\"string\\\"\\n        },\\n        \\\"interpretation\\\": {\\n          \\\"anyOf\\\": [\\n            {\\\"type\\\": \\\"string\\\"},\\n            {\\\"type\\\": \\\"null\\\"}\\n          ],\\n          \\\"default\\\": null,\\n          \\\"description\\\": \\\"Interpretation or expansion of abbreviations and meanings\\\",\\n          \\\"title\\\": \\\"Interpretation\\\"\\n        },\\n        \\\"is_crossed_out\\\": {\\n          \\\"default\\\": false,\\n          \\\"description\\\": \\\"Whether the text has been crossed out on the card\\\",\\n          \\\"title\\\": \\\"Is Crossed Out\\\",\\n          \\\"type\\\": \\\"boolean\\\"\\n        }\\n      },\\n      \\\"required\\\": [\\\"diplomatic_transcript\\\"],\\n      \\\"title\\\": \\\"FieldValue\\\",\\n      \\\"type\\\": \\\"object\\\"\\n    },\\n    \\\"TableRow\\\": {\\n      \\\"description\\\": \\\"Represents a single row in the personnel card table.\\\",\\n      \\\"properties\\\": {\\n        \\\"row_number\\\": {\\n          \\\"description\\\": \\\"Sequential row number from top to bottom\\\",\\n          \\\"title\\\": \\\"Row Number\\\",\\n          \\\"type\\\": \\\"integer\\\"\\n        },\\n        \\\"dienstliche_stellung\\\": {\\n          \\\"$ref\\\": \\\"#/$defs/FieldValue\\\",\\n          \\\"description\\\": \\\"Official position/job title\\\"\\n        },\\n        \\\"dienstort\\\": {\\n          \\\"$ref\\\": \\\"#/$defs/FieldValue\\\",\\n          \\\"description\\\": \\\"Place of service/work location\\\"\\n        },\\n        \\\"gehaltsklasse\\\": {\\n          \\\"$ref\\\": \\\"#/$defs/FieldValue\\\",\\n          \\\"description\\\": \\\"Salary class/grade\\\"\\n        },\\n        \\\"jahresgehalt_monatsgehalt_taglohn\\\": {\\n          \\\"$ref\\\": \\\"#/$defs/FieldValue\\\",\\n          \\\"description\\\": \\\"Annual salary, monthly salary, or daily wage\\\"\\n        },\\n        \\\"datum_gehalts\u00e4nderung\\\": {\\n          \\\"$ref\\\": \\\"#/$defs/FieldValue\\\",\\n          \\\"description\\\": \\\"Date of salary change (day, month, year)\\\"\\n        },\\n        \\\"bemerkungen\\\": {\\n          \\\"$ref\\\": \\\"#/$defs/FieldValue\\\",\\n          \\\"description\\\": \\\"Remarks, notes, or additional information\\\"\\n        }\\n      },\\n      \\\"required\\\": [\\n        \\\"row_number\\\",\\n        \\\"dienstliche_stellung\\\",\\n        \\\"dienstort\\\",\\n        \\\"gehaltsklasse\\\",\\n        \\\"jahresgehalt_monatsgehalt_taglohn\\\",\\n        \\\"datum_gehalts\u00e4nderung\\\",\\n        \\\"bemerkungen\\\"\\n      ],\\n      \\\"title\\\": \\\"TableRow\\\",\\n      \\\"type\\\": \\\"object\\\"\\n    }\\n  },\\n  \\\"description\\\": \\\"Main output structure for Personnel Cards.\\\",\\n  \\\"properties\\\": {\\n    \\\"rows\\\": {\\n      \\\"description\\\": \\\"List of all rows in the personnel card table\\\",\\n      \\\"items\\\": {\\n        \\\"$ref\\\": \\\"#/$defs/TableRow\\\"\\n      },\\n      \\\"title\\\": \\\"Rows\\\",\\n      \\\"type\\\": \\\"array\\\"\\n    }\\n  },\\n  \\\"title\\\": \\\"Table\\\",\\n  \\\"type\\\": \\\"object\\\",\\n  \\\"rows\\\": [\\n    {\\n      \\\"row_number\\\": 1,\\n      \\\"dienstliche_stellung\\\": {\\n        \\\"diplomatic_transcript\\\": \\\"Assistentin\\\",\\n        \\\"interpretation\\\": null,\\n        \\\"is_crossed_out\\\": false\\n      },\\n      \\\"dienstort\\\": {\\n        \\\"diplomatic_transcript\\\": \\\"Basel\\\",\\n        \\\"interpretation\\\": null,\\n        \\\"is_crossed_out\\\": false\\n      },\\n      \\\"gehaltsklasse\\\": {\\n        \\\"diplomatic_transcript\\\": \\\"III\\\",\\n        \\\"interpretation\\\": \\\"3\\\",\\n        \\\"is_crossed_out\\\": false\\n      },\\n      \\\"jahresgehalt_monatsgehalt_taglohn\\\": {\\n        \\\"diplomatic_transcript\\\": \\\"Fr. 2'400.-\\\",\\n        \\\"interpretation\\\": \\\"2400\\\",\\n        \\\"is_crossed_out\\\": false\\n      },\\n      \\\"datum_gehalts\u00e4nderung\\\": {\\n        \\\"diplomatic_transcript\\\": \\\"1. Jan. 1946\\\",\\n        \\\"interpretation\\\": \\\"1946-01-01\\\",\\n        \\\"is_crossed_out\\\": false\\n      },\\n      \\\"bemerkungen\\\": {\\n        \\\"diplomatic_transcript\\\": \\\"\\\",\\n        \\\"interpretation\\\": null,\\n        \\\"is_crossed_out\\\": false\\n      }\\n    },\\n    {\\n      \\\"row_number\\\": 2,\\n      \\\"dienstliche_stellung\\\": {\\n        \\\"diplomatic_transcript\\\": \\\"Sekret\u00e4rin\\\",\\n        \\\"interpretation\\\": null,\\n        \\\"is_crossed_out\\\": false\\n      },\\n      \\\"dienstort\\\": {\\n        \\\"diplomatic_transcript\\\": \\\"Z\u00fcrich\\\",\\n        \\\"interpretation\\\": null,\\n        \\\"is_crossed_out\\\": false\\n      },\\n      \\\"gehaltsklasse\\\": {\\n        \\\"diplomatic_transcript\\\": \\\"IV\\\",\\n        \\\"interpretation\\\": \\\"4\\\",\\n        \\\"is_crossed_out\\\": false\\n      },\\n      \\\"jahresgehalt_monatsgehalt_taglohn\\\": {\\n        \\\"diplomatic_transcript\\\": \\\"Fr. 3'000.-\\\",\\n        \\\"interpretation\\\": \\\"3000\\\",\\n        \\\"is_crossed_out\\\": false\\n      },\\n      \\\"datum_gehalts\u00e4nderung\\\": {\\n        \\\"diplomatic_transcript\\\": \\\"1. April 1947\\\",\\n        \\\"interpretation\\\": \\\"1947-04-01\\\",\\n        \\\"is_crossed_out\\\": false\\n      },\\n      \\\"bemerkungen\\\": {\\n        \\\"diplomatic_transcript\\\": \\\"Provisorisch\\\",\\n        \\\"interpretation\\\": null,\\n        \\\"is_crossed_out\\\": false\\n      }\\n    },\\n    {\\n      \\\"row_number\\\": 3,\\n      \\\"dienstliche_stellung\\\": {\\n        \\\"diplomatic_transcript\\\": \\\"B\u00fcroleiterin\\\",\\n        \\\"interpretation\\\": null,\\n        \\\"is_crossed_out\\\": false\\n      },\\n      \\\"dienstort\\\": {\\n        \\\"diplomatic_transcript\\\": \\\"Genf\\\",\\n        \\\"interpretation\\\": null,\\n        \\\"is_crossed_out\\\": false\\n      },\\n      \\\"gehaltsklasse\\\": {\\n        \\\"diplomatic_transcript\\\": \\\"V\\\",\\n        \\\"interpretation\\\": \\\"5\\\",\\n        \\\"is_crossed_out\\\": false\\n      },\\n      \\\"jahresgehalt_monatsgehalt_taglohn\\\": {\\n        \\\"diplomatic_transcript\\\": \\\"Fr. 3'700.-\\\",\\n        \\\"interpretation\\\": \\\"3700\\\",\\n        \\\"is_crossed_out\\\": false\\n      },\\n      \\\"datum_gehalts\u00e4nderung\\\": {\\n        \\\"diplomatic_transcript\\\": \\\"15. Juni 1950\\\",\\n        \\\"interpretation\\\": \\\"1950-06-15\\\",\\n        \\\"is_crossed_out\\\": false\\n      },\\n      \\\"bemerkungen\\\": {\\n        \\\"diplomatic_transcript\\\": \\\"\\\",\\n        \\\"interpretation\\\": null,\\n        \\\"is_crossed_out\\\": false\\n      }\\n    },\\n    {\\n      \\\"row_number\\\": 4,\\n      \\\"dienstliche_stellung\\\": {\\n        \\\"diplomatic_transcript\\\": \\\"Abteilungsleiterin\\\",\\n        \\\"interpretation\\\": null,\\n        \\\"is_crossed_out\\\": false\\n      },\\n      \\\"dienstort\\\": {\\n        \\\"diplomatic_transcript\\\": \\\"Bern\\\",\\n        \\\"interpretation\\\": null,\\n        \\\"is_crossed_out\\\": false\\n      },\\n      \\\"gehaltsklasse\\\": {\\n        \\\"diplomatic_transcript\\\": \\\"VI\\\",\\n        \\\"interpretation\\\": \\\"6\\\",\\n        \\\"is_crossed_out\\\": false\\n      },\\n      \\\"jahresgehalt_monatsgehalt_taglohn\\\": {\\n        \\\"diplomatic_transcript\\\": \\\"Fr. 5'094.-\\\",\\n        \\\"interpretation\\\": \\\"5094\\\",\\n        \\\"is_crossed_out\\\": false\\n      },\\n      \\\"datum_gehalts\u00e4nderung\\\": {\\n        \\\"diplomatic_transcript\\\": \\\"1. Januar 1955\\\",\\n        \\\"interpretation\\\": \\\"1955-01-01\\\",\\n        \\\"is_crossed_out\\\": false\\n      },\\n      \\\"bemerkungen\\\": {\\n        \\\"diplomatic_transcript\\\": \\\"Neue Stelle\\\",\\n        \\\"interpretation\\\": null,\\n        \\\"is_crossed_out\\\": false\\n      }\\n    },\\n    {\\n      \\\"row_number\\\": 5,\\n      \\\"dienstliche_stellung\\\": {\\n        \\\"diplomatic_transcript\\\": \\\"~Hilfsleiterin~\\\",\\n        \\\"interpretation\\\": null,\\n        \\\"is_crossed_out\\\": true\\n      },\\n      \\\"dienstort\\\": {\\n        \\\"diplomatic_transcript\\\": \\\"Z\u00fcrich\\\",\\n        \\\"interpretation\\\": null,\\n        \\\"is_crossed_out\\\": false\\n      },\\n      \\\"gehaltsklasse\\\": {\\n        \\\"diplomatic_transcript\\\": \\\"III\\\",\\n        \\\"interpretation\\\": \\\"3\\\",\\n        \\\"is_crossed_out\\\": false\\n      },\\n      \\\"jahresgehalt_monatsgehalt_taglohn\\\": {\\n        \\\"diplomatic_transcript\\\": \\\"Fr. 2'100.-\\\",\\n        \\\"interpretation\\\": \\\"2100\\\",\\n        \\\"is_crossed_out\\\": false\\n      },\\n      \\\"datum_gehalts\u00e4nderung\\\": {\\n        \\\"diplomatic_transcript\\\": \\\"1. Oktober 1948\\\",\\n        \\\"interpretation\\\": \\\"1948-10-01\\\",\\n        \\\"is_crossed_out\\\": false\\n      },\\n      \\\"bemerkungen\\\": {\\n        \\\"diplomatic_transcript\\\": \\\"Tempor\u00e4r\\\",\\n        \\\"interpretation\\\": null,\\n        \\\"is_crossed_out\\\": false\\n      }\\n    },\\n    {\\n      \\\"row_number\\\": 6,\\n      \\\"dienstliche_stellung\\\": {\\n        \\\"diplomatic_transcript\\\": \\\"~Sekret\u00e4rin~\\\",\\n        \\\"interpretation\\\": null,\\n        \\\"is_crossed_out\\\": true\\n      },\\n      \\\"dienstort\\\": {\\n        \\\"diplomatic_transcript\\\": \\\"~Genf~\\\",\\n        \\\"interpretation\\\": null,\\n        \\\"is_crossed_out\\\": true\\n      },\\n      \\\"gehaltsklasse\\\": {\\n        \\\"diplomatic_transcript\\\": \\\"\\\",\\n        \\\"interpretation\\\": null,\\n        \\\"is_crossed_out\\\": false\\n      },\\n      \\\"jahresgehalt_monatsgehalt_taglohn\\\": {\\n        \\\"diplomatic_transcript\\\": \\\"Fr. 2'700.-\\\",\\n        \\\"interpretation\\\": \\\"2700\\\",\\n        \\\"is_crossed_out\\\": false\\n      },\\n      \\\"datum_gehalts\u00e4nderung\\\": {\\n        \\\"diplomatic_transcript\\\": \\\"1. M\u00e4rz 1949\\\",\\n        \\\"interpretation\\\": \\\"1949-03-01\\\",\\n        \\\"is_crossed_out\\\": false\\n      },\\n      \\\"bemerkungen\\\": {\\n        \\\"diplomatic_transcript\\\": \\\"\\\",\\n        \\\"interpretation\\\": null,\\n        \\\"is_crossed_out\\\": false\\n      }\\n    },\\n    {\\n      \\\"row_number\\\": 7,\\n      \\\"dienstliche_stellung\\\": {\\n        \\\"diplomatic_transcript\\\": \\\"\\\\\\\"\\\",\\n        \\\"interpretation\\\": \\\"B\u00fcroleiterin\\\",\\n        \\\"is_crossed_out\\\": false\\n      },\\n      \\\"dienstort\\\": {\\n        \\\"diplomatic_transcript\\\": \\\"\\\\\\\"\\\",\\n        \\\"interpretation\\\": \\\"Genf\\\",\\n        \\\"is_crossed_out\\\": false\\n      },\\n      \\\"gehaltsklasse\\\": {\\n        \\\"diplomatic_transcript\\\": \\\"V\\\",\\n        \\\"interpretation\\\": \\\"5\\\",\\n        \\\"is_crossed_out\\\": false\\n      },\\n      \\\"jahresgehalt_monatsgehalt_taglohn\\\": {\\n        \\\"diplomatic_transcript\\\": \\\"Fr. 3'400.-\\\",\\n        \\\"interpretation\\\": \\\"3400\\\",\\n        \\\"is_crossed_out\\\": false\\n      },\\n      \\\"datum_gehalts\u00e4nderung\\\": {\\n        \\\"diplomatic_transcript\\\": \\\"1. Juli 1951\\\",\\n        \\\"interpretation\\\": \\\"1951-07-01\\\",\\n        \\\"is_crossed_out\\\": false\\n      },\\n      \\\"bemerkungen\\\": {\\n        \\\"diplomatic_transcript\\\": \\\"Gehaltserh\u00f6hung\\\",\\n        \\\"interpretation\\\": null,\\n        \\\"is_crossed_out\\\": false\\n      }\\n    },\\n    {\\n      \\\"row_number\\\": 8,\\n      \\\"dienstliche_stellung\\\": {\\n        \\\"diplomatic_transcript\\\": \\\"\\\\\\\"\\\",\\n        \\\"interpretation\\\": \\\"B\u00fcroleiterin\\\",\\n        \\\"is_crossed_out\\\": false\\n      },\\n      \\\"dienstort\\\": {\\n        \\\"diplomatic_transcript\\\": \\\"\\\\\\\"\\\",\\n        \\\"interpretation\\\": \\\"Genf\\\",\\n        \\\"is_crossed_out\\\": false\\n      },\\n      \\\"gehaltsklasse\\\": {\\n        \\\"diplomatic_transcript\\\": \\\"\\\\\\\"\\\",\\n        \\\"interpretation\\\": \\\"5\\\",\\n        \\\"is_crossed_out\\\": false\\n      },\\n      \\\"jahresgehalt_monatsgehalt_taglohn\\\": {\\n        \\\"diplomatic_transcript\\\": \\\"Fr. 3'700.-\\\",\\n        \\\"interpretation\\\": \\\"3700\\\",\\n        \\\"is_crossed_out\\\": false\\n      },\\n      \\\"datum_gehalts\u00e4nderung\\\": {\\n        \\\"diplomatic_transcript\\\": \\\"1. Januar 1953\\\",\\n        \\\"interpretation\\\": \\\"1953-01-01\\\",\\n        \\\"is_crossed_out\\\": false\\n      },\\n      \\\"bemerkungen\\\": {\\n        \\\"diplomatic_transcript\\\": \\\"Tarifliche Anpassung\\\",\\n        \\\"interpretation\\\": null,\\n        \\\"is_crossed_out\\\": false\\n      }\\n    },\\n    {\\n      \\\"row_number\\\": 9,\\n      \\\"dienstliche_stellung\\\": {\\n        \\\"diplomatic_transcript\\\": \\\"~\\\\\\\"~\\\",\\n        \\\"interpretation\\\": null,\\n        \\\"is_crossed_out\\\": true\\n      },\\n      \\\"dienstort\\\": {\\n        \\\"diplomatic_transcript\\\": \\\"\\\\\\\"\\\",\\n        \\\"interpretation\\\": \\\"Genf\\\",\\n        \\\"is_crossed_out\\\": false\\n      },\\n      \\\"gehaltsklasse\\\": {\\n        \\\"diplomatic_transcript\\\": \\\"\\\\\\\"\\\",\\n        \\\"interpretation\\\": \\\"5\\\",\\n        \\\"is_crossed_out\\\": false\\n      },\\n      \\\"jahresgehalt_monatsgehalt_taglohn\\\": {\\n        \\\"diplomatic_transcript\\\": \\\"Fr. 4'200.-\\\",\\n        \\\"interpretation\\\": \\\"4200\\\",\\n        \\\"is_crossed_out\\\": false\\n      },\\n      \\\"datum_gehalts\u00e4nderung\\\": {\\n        \\\"diplomatic_transcript\\\": \\\"1. Oktober 1954\\\",\\n        \\\"interpretation\\\": \\\"1954-10-01\\\",\\n        \\\"is_crossed_out\\\": false\\n      },\\n      \\\"bemerkungen\\\": {\\n        \\\"diplomatic_transcript\\\": \\\"Leistungszulage\\\",\\n        \\\"interpretation\\\": null,\\n        \\\"is_crossed_out\\\": false\\n      }\\n    },\\n    {\\n      \\\"row_number\\\": 10,\\n      \\\"dienstliche_stellung\\\": {\\n        \\\"diplomatic_transcript\\\": \\\"~\\\\\\\"~\\\",\\n        \\\"interpretation\\\": null,\\n        \\\"is_crossed_out\\\": true\\n      },\\n      \\\"dienstort\\\": {\\n        \\\"diplomatic_transcript\\\": \\\"Bern\\\",\\n        \\\"interpretation\\\": null,\\n        \\\"is_crossed_out\\\": false\\n      },\\n      \\\"gehaltsklasse\\\": {\\n        \\\"diplomatic_transcript\\\": \\\"VI\\\",\\n        \\\"interpretation\\\": \\\"6\\\",\\n        \\\"is_crossed_out\\\": false\\n      },\\n      \\\"jahresgehalt_monatsgehalt_taglohn\\\": {\\n        \\\"diplomatic_transcript\\\": \\\"Fr. 5'094.-\\\",\\n        \\\"interpretation\\\": \\\"5094\\\",\\n        \\\"is_crossed_out\\\": false\\n      },\\n      \\\"datum_gehalts\u00e4nderung\\\": {\\n        \\\"diplomatic_transcript\\\": \\\"1. Januar 1955\\\",\\n        \\\"interpretation\\\": \\\"1955-01-01\\\",\\n        \\\"is_crossed_out\\\": false\\n      },\\n      \\\"bemerkungen\\\": {\\n        \\\"diplomatic_transcript\\\": \\\"Stellenwechsel\\\",\\n        \\\"interpretation\\\": null,\\n        \\\"is_crossed_out\\\": false\\n      }\\n    },\\n    {\\n      \\\"row_number\\\": 11,\\n      \\\"dienstliche_stellung\\\": {\\n        \\\"diplomatic_transcript\\\": \\\"Abteilungsleiterin\\\",\\n        \\\"interpretation\\\": null,\\n        \\\"is_crossed_out\\\": false\\n      },\\n      \\\"dienstort\\\": {\\n        \\\"diplomatic_transcript\\\": \\\"Bern\\\",\\n        \\\"interpretation\\\": null,\\n        \\\"is_crossed_out\\\": false\\n      },\\n      \\\"gehaltsklasse\\\": {\\n        \\\"diplomatic_transcript\\\": \\\"VI\\\",\\n        \\\"interpretation\\\": \\\"6\\\",\\n        \\\"is_crossed_out\\\": false\\n      },\\n      \\\"jahresgehalt_monatsgehalt_taglohn\\\": {\\n        \\\"diplomatic_transcript\\\": \\\"Fr. 5'600.-\\\",\\n        \\\"interpretation\\\": \\\"5600\\\",\\n        \\\"is_crossed_out\\\": false\\n      },\\n      \\\"datum_gehalts\u00e4nderung\\\": {\\n        \\\"diplomatic_transcript\\\": \\\"1. Januar 1957\\\",\\n        \\\"interpretation\\\": \\\"1957-01-01\\\",\\n        \\\"is_crossed_out\\\": false\\n      },\\n      \\\"bemerkungen\\\": {\\n        \\\"diplomatic_transcript\\\": \\\"Gehaltsanpassung\\\",\\n        \\\"interpretation\\\": null,\\n        \\\"is_crossed_out\\\": false\\n      }\\n    },\\n    {\\n      \\\"row_number\\\": 12,\\n      \\\"dienstliche_stellung\\\": {\\n        \\\"diplomatic_transcript\\\": \\\"\\\\\\\"\\\",\\n        \\\"interpretation\\\": \\\"Abteilungsleiterin\\\",\\n        \\\"is_crossed_out\\\": false\\n      },\\n      \\\"dienstort\\\": {\\n        \\\"diplomatic_transcript\\\": \\\"\\\\\\\"\\\",\\n        \\\"interpretation\\\": \\\"Bern\\\",\\n        \\\"is_crossed_out\\\": false\\n      },\\n      \\\"gehaltsklasse\\\": {\\n        \\\"diplomatic_transcript\\\": \\\"\\\\\\\"\\\",\\n        \\\"interpretation\\\": \\\"6\\\",\\n        \\\"is_crossed_out\\\": false\\n      },\\n      \\\"jahresgehalt_monatsgehalt_taglohn\\\": {\\n        \\\"diplomatic_transcript\\\": \\\"Fr. 6'300.-\\\",\\n        \\\"interpretation\\\": \\\"6300\\\",\\n        \\\"is_crossed_out\\\": false\\n      },\\n      \\\"datum_gehalts\u00e4nderung\\\": {\\n        \\\"diplomatic_transcript\\\": \\\"1. Juli 1958\\\",\\n        \\\"interpretation\\\": \\\"1958-07-01\\\",\\n        \\\"is_crossed_out\\\": false\\n      },\\n      \\\"bemerkungen\\\": {\\n        \\\"diplomatic_transcript\\\": \\\"Erh\u00f6hung aufgrund Erfahrung\\\",\\n        \\\"interpretation\\\": null,\\n        \\\"is_crossed_out\\\": false\\n      }\\n    },\\n    {\\n      \\\"row_number\\\": 13,\\n      \\\"dienstliche_stellung\\\": {\\n        \\\"diplomatic_transcript\\\": \\\"~\\\\\\\"~\\\",\\n        \\\"interpretation\\\": null,\\n        \\\"is_crossed_out\\\": true\\n      },\\n      \\\"dienstort\\\": {\\n        \\\"diplomatic_transcript\\\": \\\"Z\u00fcrich\\\",\\n        \\\"interpretation\\\": null,\\n        \\\"is_crossed_out\\\": false\\n      },\\n      \\\"gehaltsklasse\\\": {\\n        \\\"diplomatic_transcript\\\": \\\"VII\\\",\\n        \\\"interpretation\\\": \\\"7\\\",\\n        \\\"is_crossed_out\\\": false\\n      },\\n      \\\"jahresgehalt_monatsgehalt_taglohn\\\": {\\n        \\\"diplomatic_transcript\\\": \\\"Fr. 7'200.-\\\",\\n        \\\"interpretation\\\": \\\"7200\\\",\\n        \\\"is_crossed_out\\\": false\\n      },\\n      \\\"datum_gehalts\u00e4nderung\\\": {\\n        \\\"diplomatic_transcript\\\": \\\"1. Januar 1960\\\",\\n        \\\"interpretation\\\": \\\"1960-01-01\\\",\\n        \\\"is_crossed_out\\\": false\\n      },\\n      \\\"bemerkungen\\\": {\\n        \\\"diplomatic_transcript\\\": \\\"Bef\u00f6rderung\\\",\\n        \\\"interpretation\\\": null,\\n        \\\"is_crossed_out\\\": false\\n      }\\n    }\\n  ]\\n}\",\"tool_calls\":null,\"prefix\":false,\"role\":\"assistant\"},\"finish_reason\":\"stop\"}]}"}, "scoring": {"f1_micro": 0.08550434201736808, "f1_macro": 0.045737704918032786, "micro_precision": 0.051397365884998394, "micro_recall": 0.2541699761715647, "total_instances": 61, "total_tp": 640, "total_fp": 11812, "total_fn": 1878, "cost_summary": {"total_input_tokens": 110410, "total_output_tokens": 239159, "total_tokens": 349569, "input_cost_usd": 0.02208200000000001, "output_cost_usd": 0.04783179999999998, "total_cost_usd": 0.06991380000000003}}, "normalized_score": 8.550434201736808}