input stringlengths 170 4.38k | target stringlengths 11 500 | corruption_type stringclasses 28
values | schema dict | invalid_json stringlengths 2 1.02k | error stringlengths 21 156 | target_json stringlengths 11 500 |
|---|---|---|---|---|---|---|
TASK repair_structured_output
SPEC
FIELD patient_id.crew_id TYPE string_email REQUIRED no
FIELD patient_id.build_status TYPE boolean REQUIRED no
FIELD patient_id.port_code TYPE null REQUIRED no
FIELD patient_id.phenotype TYPE integer REQUIRED no
FIELD patient_id.aligned_pct TYPE string REQUIRED no
FIELD patient_id.dep... | {"patient_id":{"build_status":true,"port_code":null,"phenotype":93,"aligned_pct":"2023-12-25","department":"Oliveira"},"voltage":"Alice","filter_flag":"Sao Paulo","product_id":"test@test.io","height":"archived","first_name":"bar"} | tool_call_python_syntax | {
"type": "object",
"properties": {
"patient_id": {
"type": "object",
"properties": {
"crew_id": {
"type": "string",
"format": "email"
},
"build_status": {
"type": "boolean"
},
"port_code": {
"type": "null"
},
... | call_variants(patient_id={'build_status': True, 'port_code': None, 'phenotype': 93, 'aligned_pct': '2023-12-25', 'department': 'Oliveira'}, voltage='Alice', filter_flag='Sao Paulo', product_id='test@test.io', height='archived', first_name='bar') | Tool call uses Python syntax instead of JSON | {"patient_id":{"build_status":true,"port_code":null,"phenotype":93,"aligned_pct":"2023-12-25","department":"Oliveira"},"voltage":"Alice","filter_flag":"Sao Paulo","product_id":"test@test.io","height":"archived","first_name":"bar"} |
TASK repair_structured_output
SPEC
FIELD dim_g30 TYPE string VALUES berthed|anchored|underway|moored REQUIRED yes
FIELD attr_e85 TYPE string REQUIRED yes
FIELD param_l47 TYPE integer REQUIRED yes
FIELD field_b03 TYPE integer REQUIRED no
FIELD key_g02 TYPE number REQUIRED yes
FIELD param_a52 TYPE string_uri REQUIRED no... | {"dim_g30":"moored","attr_e85":"chr1","param_l47":763,"field_b03":994,"key_g02":397.72,"param_a52":"https://data.com/data","attr_j37":false,"key_i14":"option_d"} | unquoted_keys | {
"type": "object",
"properties": {
"dim_g30": {
"type": "string",
"enum": [
"berthed",
"anchored",
"underway",
"moored"
]
},
"attr_e85": {
"type": "string"
},
"param_l47": {
"type": "integer"
},
"field_b03": {
"type": "... | {dim_g30:"moored",attr_e85:"chr1",param_l47:763,field_b03:994,key_g02:397.72,param_a52:"https://data.com/data",attr_j37:false,key_i14:"option_d"} | Expecting property name enclosed in double quotes | {"dim_g30":"moored","attr_e85":"chr1","param_l47":763,"field_b03":994,"key_g02":397.72,"param_a52":"https://data.com/data","attr_j37":false,"key_i14":"option_d"} |
TASK repair_structured_output
SPEC
FIELD prop_i92 TYPE string REQUIRED yes
FIELD param_c42 TYPE string VALUES pending_review|confirmed|rejected|escalated REQUIRED no
FIELD field_g55.param_f99 TYPE string REQUIRED no
FIELD field_g55.field_d07 TYPE string VALUES open|in_progress|resolved|closed REQUIRED yes
FIELD field_... | {"prop_i92":"2024-06-30","param_c42":"escalated","field_g55":{"param_f99":"GRCh38","field_d07":"open","dim_q42":"bar"},"dim_k51":{"key_q93":"user@domain.org","key_o18":{"field_u90":541,"val_z52":"Luis"},"prop_c58":481,"dim_q24":"Santos","field_l14":{"val_h65":"editor","param_l58":"confirmed","dim_w89":false,"col_y44":"... | markdown_fences | {
"type": "object",
"properties": {
"prop_i92": {
"type": "string"
},
"param_c42": {
"type": "string",
"enum": [
"pending_review",
"confirmed",
"rejected",
"escalated"
]
},
"field_g55": {
"type": "object",
"properties": {
... | ```json
{"prop_i92":"2024-06-30","param_c42":"escalated","field_g55":{"param_f99":"GRCh38","field_d07":"open","dim_q42":"bar"},"dim_k51":{"key_q93":"user@domain.org","key_o18":{"field_u90":541,"val_z52":"Luis"},"prop_c58":481,"dim_q24":"Santos","field_l14":{"val_h65":"editor","param_l58":"confirmed","dim_w89":false,"co... | Output contains markdown code fences | {"prop_i92":"2024-06-30","param_c42":"escalated","field_g55":{"param_f99":"GRCh38","field_d07":"open","dim_q42":"bar"},"dim_k51":{"key_q93":"user@domain.org","key_o18":{"field_u90":541,"val_z52":"Luis"},"prop_c58":481,"dim_q24":"Santos","field_l14":{"val_h65":"editor","param_l58":"confirmed","dim_w89":false,"col_y44":"... |
TASK repair_structured_output
SPEC
FIELD dim_v86 TYPE string VALUES single|married|divorced REQUIRED no
FIELD prop_s43 TYPE string REQUIRED no
FIELD prop_q96 TYPE string VALUES admin|editor|viewer REQUIRED yes
FIELD field_y31.param_h10 TYPE string REQUIRED yes
FIELD field_y31.prop_t96 TYPE null REQUIRED no
FIELD field... | {"dim_v86":"single","prop_s43":"Hapag-Lloyd-Express","prop_q96":"admin"} | markdown_fences | {
"type": "object",
"properties": {
"dim_v86": {
"type": "string",
"enum": [
"single",
"married",
"divorced"
]
},
"prop_s43": {
"type": "string"
},
"prop_q96": {
"type": "string",
"enum": [
"admin",
"editor",
"vi... | ```json
{"dim_v86":"single","prop_s43":"Hapag-Lloyd-Express","prop_q96":"admin"}
``` | Output contains markdown code fences | {"dim_v86":"single","prop_s43":"Hapag-Lloyd-Express","prop_q96":"admin"} |
TASK repair_structured_output
SPEC
FIELD col_o43 TYPE string REQUIRED yes
FIELD attr_n07 TYPE boolean REQUIRED yes
FIELD field_s59 TYPE number REQUIRED no
BROKEN_OUTPUT
Let me check the system.
Action: process_payment
Arguments: {"col_o43": "Luis", "field_s59": 778.51} | {"col_o43":"Luis","attr_n07":false,"field_s59":778.51} | tool_call_partial_args | {
"type": "object",
"properties": {
"col_o43": {
"type": "string"
},
"attr_n07": {
"type": "boolean"
},
"field_s59": {
"type": "number"
}
},
"required": [
"col_o43",
"attr_n07"
]
} | Let me check the system.
Action: process_payment
Arguments: {"col_o43": "Luis", "field_s59": 778.51} | Agent tool call missing required parameter 'attr_n07' | {"col_o43":"Luis","attr_n07":false,"field_s59":778.51} |
TASK repair_structured_output
SPEC
FIELD prop_k90 TYPE string VALUES open|in_progress|resolved|closed REQUIRED yes
FIELD dim_j43 TYPE string VALUES red|blue|green|black|white REQUIRED no
FIELD val_z32 TYPE integer REQUIRED no
FIELD attr_r29 TYPE string_email REQUIRED no
FIELD col_q92 TYPE number REQUIRED no
FIELD prop... | {"prop_k90":"closed","dim_j43":"blue","attr_r29":"ops@test.io","prop_c78":"2022-12-01T23:36:00Z","dim_i08":"John","col_b55":"2023-12-25"} | tool_call_text_mix | {
"type": "object",
"properties": {
"prop_k90": {
"type": "string",
"enum": [
"open",
"in_progress",
"resolved",
"closed"
]
},
"dim_j43": {
"type": "string",
"enum": [
"red",
"blue",
"green",
"black",
"... | Let me check the system.
<tool_call name="read_sensor_array">
{"prop_k90":"closed","dim_j43":"blue","attr_r29":"ops@test.io","prop_c78":"2022-12-01T23:36:00Z","dim_i08":"John","col_b55":"2023-12-25"}
</tool_call.
Operation completed. | Agent response mixes reasoning text with tool call | {"prop_k90":"closed","dim_j43":"blue","attr_r29":"ops@test.io","prop_c78":"2022-12-01T23:36:00Z","dim_i08":"John","col_b55":"2023-12-25"} |
TASK repair_structured_output
SPEC
FIELD country TYPE integer REQUIRED no
FIELD zip_code TYPE integer REQUIRED yes
FIELD current_draw TYPE string VALUES cat_a|cat_b|cat_c REQUIRED yes
BROKEN_OUTPUT
{"zip_code": "\"638\"", "current_draw": "cat_c"} | {"zip_code":638,"current_draw":"cat_c"} | wrong_type | {
"type": "object",
"properties": {
"country": {
"type": "integer"
},
"zip_code": {
"type": "integer"
},
"current_draw": {
"type": "string",
"enum": [
"cat_a",
"cat_b",
"cat_c"
]
}
},
"required": [
"zip_code",
"current_draw"
... | {"zip_code": "\"638\"", "current_draw": "cat_c"} | Field 'zip_code' must be integer, got string | {"zip_code":638,"current_draw":"cat_c"} |
TASK repair_structured_output
SPEC
FIELD field_v84 TYPE boolean REQUIRED yes
FIELD param_p21 TYPE string_email REQUIRED yes
FIELD prop_y63 TYPE string REQUIRED yes
FIELD dim_y51.dim_e10 TYPE string VALUES red|blue|green|black|white REQUIRED no
FIELD dim_y51.param_s95 TYPE null REQUIRED yes
FIELD dim_y51.field_o46 TYPE... | {"field_v84":true,"param_p21":"info@test.io","prop_y63":"2024-01-15","dim_y51":{"dim_e10":"green","param_s95":null,"field_o46":"cat_e","field_w76":"2023-01-05T03:35:00Z"},"prop_j20":934,"prop_w96":"ops@example.com","param_g66":null} | partial_structure | {
"type": "object",
"properties": {
"field_v84": {
"type": "boolean"
},
"param_p21": {
"type": "string",
"format": "email"
},
"prop_y63": {
"type": "string"
},
"dim_y51": {
"type": "object",
"properties": {
"dim_e10": {
"type": "strin... | Based on the data, param_g66 is None. {"field_v84":true,"param_p21":"info@test.io","prop_y63":"2024-01-15","dim_y51":{"dim_e10":"green","param_s95":null,"field_o46":"cat_e","field_w76":"2023-01-05T03:35:00Z"},"prop_j20":934,"prop_w96":"ops@example.com","param_g66":null} | Output mixes natural language with JSON | {"field_v84":true,"param_p21":"info@test.io","prop_y63":"2024-01-15","dim_y51":{"dim_e10":"green","param_s95":null,"field_o46":"cat_e","field_w76":"2023-01-05T03:35:00Z"},"prop_j20":934,"prop_w96":"ops@example.com","param_g66":null} |
TASK repair_structured_output
SPEC
FIELD prop_k64 TYPE integer REQUIRED no
FIELD attr_r78.prop_v08 TYPE integer REQUIRED yes
FIELD attr_r78.dim_c96 TYPE string REQUIRED yes
FIELD attr_r78.field_m48 TYPE string REQUIRED yes
FIELD col_z76 TYPE string REQUIRED yes
FIELD dim_t00.dim_o34 TYPE string VALUES active|inactive|... | {"attr_r78":{"prop_v08":719,"dim_c96":"A short description.","field_m48":"2023-12-25"},"col_z76":"Diana","dim_t00":{"col_f52":378.0,"param_y41":false,"prop_o55":"synonymous","col_o56":"world"},"attr_j38":"single"} | missing_required | {
"type": "object",
"properties": {
"prop_k64": {
"type": "integer"
},
"attr_r78": {
"type": "object",
"properties": {
"prop_v08": {
"type": "integer"
},
"dim_c96": {
"type": "string"
},
"field_m48": {
"type": "strin... | {"attr_r78": {"prop_v08": 719, "dim_c96": "A short description.", "field_m48": "2023-12-25"}, "col_z76": "Diana", "attr_j38": "single"} | Required field 'dim_t00' is missing | {"attr_r78":{"prop_v08":719,"dim_c96":"A short description.","field_m48":"2023-12-25"},"col_z76":"Diana","dim_t00":{"col_f52":378.0,"param_y41":false,"prop_o55":"synonymous","col_o56":"world"},"attr_j38":"single"} |
TASK repair_structured_output
SPEC
FIELD invoice_id TYPE string REQUIRED no
FIELD length TYPE string_date-time REQUIRED no
FIELD brake_pressure TYPE string VALUES coastal|oceanic|inland|arctic REQUIRED yes
BROKEN_OUTPUT
{"invoice_id":"Smith","length":"2026-04-28T12:23:00Z","brake_pressure":"arctic" | {"invoice_id":"Smith","length":"2026-04-28T12:23:00Z","brake_pressure":"arctic"} | missing_brace | {
"type": "object",
"properties": {
"invoice_id": {
"type": "string"
},
"length": {
"type": "string",
"format": "date-time"
},
"brake_pressure": {
"type": "string",
"enum": [
"coastal",
"oceanic",
"inland",
"arctic"
]
}
},... | {"invoice_id":"Smith","length":"2026-04-28T12:23:00Z","brake_pressure":"arctic" | Missing closing brace | {"invoice_id":"Smith","length":"2026-04-28T12:23:00Z","brake_pressure":"arctic"} |
TASK repair_structured_output
SPEC
FIELD full_name TYPE number REQUIRED yes
FIELD quality_score TYPE string REQUIRED no
FIELD nickname TYPE string VALUES level_1|level_2|level_3|level_4|level_5 REQUIRED no
FIELD title[].size TYPE boolean REQUIRED no
FIELD title[].conductivity TYPE string REQUIRED no
FIELD title[].addr... | {"full_name":620.49,"quality_score":"Charlie","title":[{"conductivity":"example","end_date":"anchored","comments":306,"trace_id":"option_d"},{"size":true,"address":"2025-12-27T01:04:00Z","end_date":"moored","comments":515,"trace_id":"option_a"},{"conductivity":"completed","end_date":"moored","trace_id":"option_c"},{"si... | wrong_type | {
"type": "object",
"properties": {
"full_name": {
"type": "number"
},
"quality_score": {
"type": "string"
},
"nickname": {
"type": "string",
"enum": [
"level_1",
"level_2",
"level_3",
"level_4",
"level_5"
]
},
"title"... | {"full_name": "\"620.49\"", "quality_score": "Charlie", "title": [{"conductivity": "example", "end_date": "anchored", "comments": 306, "trace_id": "option_d"}, {"size": true, "address": "2025-12-27T01:04:00Z", "end_date": "moored", "comments": 515, "trace_id": "option_a"}, {"conductivity": "completed", "end_date": "moo... | Field 'full_name' must be number, got string | {"full_name":620.49,"quality_score":"Charlie","title":[{"conductivity":"example","end_date":"anchored","comments":306,"trace_id":"option_d"},{"size":true,"address":"2025-12-27T01:04:00Z","end_date":"moored","comments":515,"trace_id":"option_a"},{"conductivity":"completed","end_date":"moored","trace_id":"option_c"},{"si... |
TASK repair_structured_output
SPEC
FIELD level TYPE string VALUES USD|EUR|GBP|BRL|JPY REQUIRED yes
FIELD credit_score TYPE string REQUIRED no
FIELD bill_of_lading TYPE integer REQUIRED no
FIELD website TYPE integer REQUIRED no
FIELD country.timezone TYPE string VALUES pending_review|confirmed|rejected|escalated REQUIR... | {"level":"BRL","credit_score":"inactive","website":834} | extra_field | {
"type": "object",
"properties": {
"level": {
"type": "string",
"enum": [
"USD",
"EUR",
"GBP",
"BRL",
"JPY"
]
},
"credit_score": {
"type": "string"
},
"bill_of_lading": {
"type": "integer"
},
"website": {
"type"... | {"level": "BRL", "credit_score": "inactive", "website": 834, "extra_data_6031": 42} | Unknown field 'extra_data_6031' not defined in schema | {"level":"BRL","credit_score":"inactive","website":834} |
TASK repair_structured_output
SPEC
FIELD key_j06 TYPE string VALUES single|married|divorced REQUIRED no
FIELD val_d30 TYPE string VALUES single|married|divorced REQUIRED no
FIELD param_k65 TYPE string VALUES type_a|type_b REQUIRED yes
FIELD attr_m73 TYPE boolean REQUIRED no
FIELD attr_j03 TYPE string VALUES cat_a|cat_... | {"key_j06":"single","param_k65":"type_a","attr_m73":true,"attr_j03":"cat_c","prop_p70":660} | partial_structure | {
"type": "object",
"properties": {
"key_j06": {
"type": "string",
"enum": [
"single",
"married",
"divorced"
]
},
"val_d30": {
"type": "string",
"enum": [
"single",
"married",
"divorced"
]
},
"param_k65": {
... | Based on the data, prop_p70 is 660. {"key_j06":"single","param_k65":"type_a","attr_m73":true,"attr_j03":"cat_c","prop_p70":660} | Output mixes natural language with JSON | {"key_j06":"single","param_k65":"type_a","attr_m73":true,"attr_j03":"cat_c","prop_p70":660} |
TASK repair_structured_output
SPEC
FIELD crew_id.fleet_number TYPE string REQUIRED no
FIELD crew_id.quantity TYPE string REQUIRED yes
FIELD crew_id.ward[].created_at TYPE string REQUIRED no
FIELD crew_id.ward[].discount TYPE string REQUIRED yes
FIELD crew_id.ward[].product_id TYPE string_date-time REQUIRED no
FIELD cr... | {"crew_id":{"fleet_number":"Berlin","quantity":"Oliveira","ward":[{"discount":"https://api.example.com/v1","product_id":"2021-10-17T12:56:00Z","bill_of_lading":"type_c","aligned_pct":"https://www.io/api"}]},"age":null,"longitude":"level_1","current_draw":null,"frequency_hz":"cancelled"} | single_quotes | {
"type": "object",
"properties": {
"crew_id": {
"type": "object",
"properties": {
"fleet_number": {
"type": "string"
},
"quantity": {
"type": "string"
},
"ward": {
"type": "array",
"items": {
"type": "object... | {'crew_id':{'fleet_number':'Berlin','quantity':'Oliveira','ward':[{'discount':'https://api.example.com/v1','product_id':'2021-10-17T12:56:00Z','bill_of_lading':'type_c','aligned_pct':'https://www.io/api'}]},'age':null,'longitude':'level_1','current_draw':null,'frequency_hz':'cancelled'} | Expecting property name enclosed in double quotes | {"crew_id":{"fleet_number":"Berlin","quantity":"Oliveira","ward":[{"discount":"https://api.example.com/v1","product_id":"2021-10-17T12:56:00Z","bill_of_lading":"type_c","aligned_pct":"https://www.io/api"}]},"age":null,"longitude":"level_1","current_draw":null,"frequency_hz":"cancelled"} |
TASK repair_structured_output
SPEC
FIELD voltage TYPE boolean REQUIRED no
FIELD latitude TYPE string VALUES coastal|oceanic|inland|arctic REQUIRED no
FIELD subtotal TYPE string_date-time REQUIRED no
FIELD vital_sign.width TYPE integer REQUIRED no
FIELD vital_sign.cargo_type TYPE boolean REQUIRED yes
FIELD vital_sign.a... | {"latitude":"arctic","subtotal":"2025-06-03T10:37:00Z","vital_sign":{"width":409,"cargo_type":false,"account_id":"underway","medication":{"humidity_pct":"Alice","branch":true,"published":375.91,"item_id":"Hapag-Lloyd-Express","width":"synonymous","enabled":"https://data.com/api","frequency_hz":"admin@domain.org","decay... | missing_bracket | {
"type": "object",
"properties": {
"voltage": {
"type": "boolean"
},
"latitude": {
"type": "string",
"enum": [
"coastal",
"oceanic",
"inland",
"arctic"
]
},
"subtotal": {
"type": "string",
"format": "date-time"
},
"vita... | {"latitude":"arctic","subtotal":"2025-06-03T10:37:00Z","vital_sign":{"width":409,"cargo_type":false,"account_id":"underway","medication":{"humidity_pct":"Alice","branch":true,"published":375.91,"item_id":"Hapag-Lloyd-Express","width":"synonymous","enabled":"https://data.com/api","frequency_hz":"admin@domain.org","decay... | Missing closing bracket | {"latitude":"arctic","subtotal":"2025-06-03T10:37:00Z","vital_sign":{"width":409,"cargo_type":false,"account_id":"underway","medication":{"humidity_pct":"Alice","branch":true,"published":375.91,"item_id":"Hapag-Lloyd-Express","width":"synonymous","enabled":"https://data.com/api","frequency_hz":"admin@domain.org","decay... |
TASK repair_structured_output
SPEC
FIELD key_b31 TYPE string VALUES red|blue|green|black|white REQUIRED yes
FIELD param_x64 TYPE string VALUES new|in_transit|delivered|returned REQUIRED no
FIELD col_x90 TYPE null REQUIRED no
FIELD val_b19 TYPE number REQUIRED no
FIELD prop_k27 TYPE string_email REQUIRED no
FIELD prop_... | {"key_b31":"blue","col_x90":null,"prop_c72":762,"attr_j48":"https://www.com/api"} | number_with_unit | {
"type": "object",
"properties": {
"key_b31": {
"type": "string",
"enum": [
"red",
"blue",
"green",
"black",
"white"
]
},
"param_x64": {
"type": "string",
"enum": [
"new",
"in_transit",
"delivered",
"r... | {"key_b31": "blue", "col_x90": null, "prop_c72": "762ms", "attr_j48": "https://www.com/api"} | Field 'prop_c72' must be number, got string with unit | {"key_b31":"blue","col_x90":null,"prop_c72":762,"attr_j48":"https://www.com/api"} |
TASK repair_structured_output
SPEC
FIELD options TYPE string REQUIRED no
FIELD vital_sign TYPE string REQUIRED no
FIELD barcode TYPE string REQUIRED no
FIELD umi[].subject TYPE null REQUIRED yes
FIELD umi[].terminal_id TYPE string REQUIRED no
FIELD umi[].loan_amount TYPE string VALUES type_a|type_b|type_c|type_d|type_... | {"options":"Maria","barcode":"MV-Evergreen-01","umi":[{"subject":null,"terminal_id":"baz","bed_number":false,"options":"success"},{"subject":null,"loan_amount":"type_c","bed_number":false,"options":"error"}],"count":["user@test.io","ops@test.io"]} | extra_field | {
"type": "object",
"properties": {
"options": {
"type": "string"
},
"vital_sign": {
"type": "string"
},
"barcode": {
"type": "string"
},
"umi": {
"type": "array",
"items": {
"type": "object",
"properties": {
"subject": {
... | {"options": "Maria", "barcode": "MV-Evergreen-01", "umi": [{"subject": null, "terminal_id": "baz", "bed_number": false, "options": "success"}, {"subject": null, "loan_amount": "type_c", "bed_number": false, "options": "error"}], "count": ["user@test.io", "ops@test.io"], "extra_field_4979": true} | Unknown field 'extra_field_4979' not defined in schema | {"options":"Maria","barcode":"MV-Evergreen-01","umi":[{"subject":null,"terminal_id":"baz","bed_number":false,"options":"success"},{"subject":null,"loan_amount":"type_c","bed_number":false,"options":"error"}],"count":["user@test.io","ops@test.io"]} |
TASK repair_structured_output
SPEC
FIELD age TYPE string VALUES free|basic|pro|enterprise REQUIRED no
FIELD crew_id TYPE string VALUES mode_a|mode_b|mode_c REQUIRED no
FIELD height TYPE integer REQUIRED no
FIELD branch TYPE null REQUIRED yes
FIELD features TYPE integer REQUIRED no
FIELD compound TYPE string VALUES USD... | {"age":"enterprise","crew_id":"mode_a","height":550,"branch":null,"features":2,"compound":"USD"} | truncated_object | {
"type": "object",
"properties": {
"age": {
"type": "string",
"enum": [
"free",
"basic",
"pro",
"enterprise"
]
},
"crew_id": {
"type": "string",
"enum": [
"mode_a",
"mode_b",
"mode_c"
]
},
"height": {
... | {"age":"enterprise","crew_id":"mode_a","height":550,"branch":null,"features":2,"compound":"USD" | Unexpected end of JSON input — truncated object | {"age":"enterprise","crew_id":"mode_a","height":550,"branch":null,"features":2,"compound":"USD"} |
TASK repair_structured_output
SPEC
FIELD order_id.zip_code TYPE null REQUIRED yes
FIELD order_id.score TYPE boolean REQUIRED no
FIELD order_id.url TYPE boolean REQUIRED no
FIELD order_id.country TYPE boolean REQUIRED no
FIELD order_id.hazmat_code TYPE number REQUIRED yes
FIELD order_id.paragraph TYPE integer REQUIRED ... | {"order_id":{"zip_code":null,"score":false,"url":false,"hazmat_code":717.21},"zip_code":"cat_c"} | tool_call_bad_format | {
"type": "object",
"properties": {
"order_id": {
"type": "object",
"properties": {
"zip_code": {
"type": "null"
},
"score": {
"type": "boolean"
},
"url": {
"type": "boolean"
},
"country": {
"type": "bool... | <functioncall> query_port_status
{order_id: {zip_code: null, score: false, url: false, hazmat_code: 717.21}, zip_code: "cat_c"} | Tool call has malformed arguments — unquoted keys in function parameters | {"order_id":{"zip_code":null,"score":false,"url":false,"hazmat_code":717.21},"zip_code":"cat_c"} |
TASK repair_structured_output
SPEC
FIELD color TYPE string VALUES mode_a|mode_b|mode_c REQUIRED no
FIELD interest_rate TYPE string VALUES level_1|level_2 REQUIRED no
FIELD dissolved_oxygen TYPE string VALUES cat_a|cat_b REQUIRED no
FIELD items TYPE integer REQUIRED yes
FIELD turbidity TYPE string VALUES operational|de... | {"interest_rate":"level_2","items":921,"turbidity":"operational"} | partial_structure | {
"type": "object",
"properties": {
"color": {
"type": "string",
"enum": [
"mode_a",
"mode_b",
"mode_c"
]
},
"interest_rate": {
"type": "string",
"enum": [
"level_1",
"level_2"
]
},
"dissolved_oxygen": {
"type": "s... | I found that interest_rate should be level_2. {"interest_rate":"level_2","items":921,"turbidity":"operational"} | Output mixes natural language with JSON | {"interest_rate":"level_2","items":921,"turbidity":"operational"} |
TASK repair_structured_output
SPEC
FIELD comments TYPE string VALUES option_a|option_b REQUIRED no
FIELD yield_pct TYPE integer REQUIRED yes
FIELD umi TYPE integer REQUIRED no
FIELD subject TYPE integer REQUIRED yes
FIELD due_date TYPE integer REQUIRED no
BROKEN_OUTPUT
{"yield_pct":156,"subject":971,"due_date":305} | {"yield_pct":156,"subject":971,"due_date":305} | missing_bracket | {
"type": "object",
"properties": {
"comments": {
"type": "string",
"enum": [
"option_a",
"option_b"
]
},
"yield_pct": {
"type": "integer"
},
"umi": {
"type": "integer"
},
"subject": {
"type": "integer"
},
"due_date": {
"t... | {"yield_pct":156,"subject":971,"due_date":305} | Missing closing bracket | {"yield_pct":156,"subject":971,"due_date":305} |
TASK repair_structured_output
SPEC
FIELD dim_k84 TYPE string VALUES email|phone|sms|push REQUIRED yes
FIELD param_a83 TYPE boolean REQUIRED yes
FIELD val_d53 TYPE boolean REQUIRED no
FIELD dim_e35 TYPE string REQUIRED no
BROKEN_OUTPUT
{'dim_k84':'phone','param_a83':true,'val_d53':false,'dim_e35':'Luis'} | {"dim_k84":"phone","param_a83":true,"val_d53":false,"dim_e35":"Luis"} | single_quotes | {
"type": "object",
"properties": {
"dim_k84": {
"type": "string",
"enum": [
"email",
"phone",
"sms",
"push"
]
},
"param_a83": {
"type": "boolean"
},
"val_d53": {
"type": "boolean"
},
"dim_e35": {
"type": "string"
}
... | {'dim_k84':'phone','param_a83':true,'val_d53':false,'dim_e35':'Luis'} | Expecting property name enclosed in double quotes | {"dim_k84":"phone","param_a83":true,"val_d53":false,"dim_e35":"Luis"} |
TASK repair_structured_output
SPEC
FIELD field_x43.param_e92 TYPE string_date-time REQUIRED yes
FIELD field_x43.param_i64.col_c69 TYPE string VALUES type_a|type_b|type_c|type_d|type_e|type_f REQUIRED yes
FIELD field_x43.param_i64.val_l08 TYPE string REQUIRED yes
FIELD field_x43.param_i64.prop_i91 TYPE string REQUIRED ... | {"field_x43":{"param_e92":"2024-09-10T20:42:00Z","param_i64":{"col_c69":"type_c","val_l08":"Alice","prop_i91":"Hapag-Lloyd-Express"}},"val_c07":"heterozygous"} | truncated_object | {
"type": "object",
"properties": {
"field_x43": {
"type": "object",
"properties": {
"param_e92": {
"type": "string",
"format": "date-time"
},
"param_i64": {
"type": "object",
"properties": {
"col_c69": {
"type... | {"field_x43":{"param_e92":"2024-09-10T20:42:00Z","param_i64":{"col_c69":"type_c","val_l08":"Alice","prop_i91":"Hapag-Lloyd-Express"}},"val_c07":"heterozygous" | Unexpected end of JSON input — truncated object | {"field_x43":{"param_e92":"2024-09-10T20:42:00Z","param_i64":{"col_c69":"type_c","val_l08":"Alice","prop_i91":"Hapag-Lloyd-Express"}},"val_c07":"heterozygous"} |
TASK repair_structured_output
SPEC
FIELD prop_b81 TYPE number REQUIRED yes
FIELD prop_b71 TYPE boolean REQUIRED yes
FIELD dim_x77 TYPE number REQUIRED yes
FIELD attr_o73 TYPE string REQUIRED no
BROKEN_OUTPUT
transfer_call(prop_b81=892.6, prop_b71=False, dim_x77=389.26, attr_o73='test@example.com') | {"prop_b81":892.6,"prop_b71":false,"dim_x77":389.26,"attr_o73":"test@example.com"} | tool_call_python_syntax | {
"type": "object",
"properties": {
"prop_b81": {
"type": "number"
},
"prop_b71": {
"type": "boolean"
},
"dim_x77": {
"type": "number"
},
"attr_o73": {
"type": "string"
}
},
"required": [
"prop_b71",
"prop_b81",
"dim_x77"
]
} | transfer_call(prop_b81=892.6, prop_b71=False, dim_x77=389.26, attr_o73='test@example.com') | Tool call uses Python syntax instead of JSON | {"prop_b81":892.6,"prop_b71":false,"dim_x77":389.26,"attr_o73":"test@example.com"} |
TASK repair_structured_output
SPEC
FIELD due_date TYPE integer REQUIRED no
FIELD tile TYPE string VALUES success|error|warning|info REQUIRED yes
FIELD medication TYPE string VALUES type_a|type_b|type_c|type_d REQUIRED yes
FIELD throttle_pos TYPE string_email REQUIRED no
FIELD build_status.allele TYPE string VALUES mod... | {"due_date":136,"tile":"error","medication":"type_d","throttle_pos":"admin@example.com","build_status":{"allele":"mode_b","branch":646,"phenotype":966,"conductivity":"JPY","build_status":"https://example.com/v1","yield_pct":"option_a"},"torque_output":"London","invoice_id":{"height":"pro","vital_sign":{"notes":"level_2... | tool_call_text_mix | {
"type": "object",
"properties": {
"due_date": {
"type": "integer"
},
"tile": {
"type": "string",
"enum": [
"success",
"error",
"warning",
"info"
]
},
"medication": {
"type": "string",
"enum": [
"type_a",
"type_... | I need to look up the information first.
<tool_call name="run_diagnostics">
{"due_date":136,"tile":"error","medication":"type_d","throttle_pos":"admin@example.com","build_status":{"allele":"mode_b","branch":646,"phenotype":966,"conductivity":"JPY","build_status":"https://example.com/v1","yield_pct":"option_a"},"torque_... | Agent response mixes reasoning text with tool call | {"due_date":136,"tile":"error","medication":"type_d","throttle_pos":"admin@example.com","build_status":{"allele":"mode_b","branch":646,"phenotype":966,"conductivity":"JPY","build_status":"https://example.com/v1","yield_pct":"option_a"},"torque_output":"London","invoice_id":{"height":"pro","vital_sign":{"notes":"level_2... |
TASK repair_structured_output
SPEC
FIELD url TYPE null REQUIRED yes
FIELD bill_of_lading TYPE string REQUIRED no
FIELD interest_rate TYPE boolean REQUIRED no
FIELD created_at TYPE string_uri REQUIRED yes
FIELD item_id.id TYPE string REQUIRED no
FIELD item_id.phenotype TYPE string VALUES USD|EUR|GBP|BRL|JPY REQUIRED ye... | {"url":null,"bill_of_lading":"Berlin","interest_rate":false,"created_at":"https://api.com/data","item_id":{"id":"Oliveira","phenotype":"BRL","price":false,"item_id":"https://data.io/v1","manifest_ref":"QC-07","filter_flag":"PASS","coverage":{"version":402.92,"commit_hash":"cat_c","subtotal":"Silva","rating":761,"decay_... | missing_brace | {
"type": "object",
"properties": {
"url": {
"type": "null"
},
"bill_of_lading": {
"type": "string"
},
"interest_rate": {
"type": "boolean"
},
"created_at": {
"type": "string",
"format": "uri"
},
"item_id": {
"type": "object",
"properties... | {"url":null,"bill_of_lading":"Berlin","interest_rate":false,"created_at":"https://api.com/data","item_id":{"id":"Oliveira","phenotype":"BRL","price":false,"item_id":"https://data.io/v1","manifest_ref":"QC-07","filter_flag":"PASS","coverage":{"version":402.92,"commit_hash":"cat_c","subtotal":"Silva","rating":761,"decay_... | Missing closing brace | {"url":null,"bill_of_lading":"Berlin","interest_rate":false,"created_at":"https://api.com/data","item_id":{"id":"Oliveira","phenotype":"BRL","price":false,"item_id":"https://data.io/v1","manifest_ref":"QC-07","filter_flag":"PASS","coverage":{"version":402.92,"commit_hash":"cat_c","subtotal":"Silva","rating":761,"decay_... |
TASK repair_structured_output
SPEC
FIELD level TYPE integer REQUIRED yes
FIELD maturity_date TYPE string_email REQUIRED no
FIELD shipping TYPE integer REQUIRED yes
FIELD website[] TYPE string REQUIRED yes
BROKEN_OUTPUT
I need to check the port status before assigning the berth.
Let me verify the cargo manifest.
{"le... | {"level":10,"shipping":764,"website":["MV-Evergreen-01","John","https://api.example.com/v1","London"]} | thought_process | {
"type": "object",
"properties": {
"level": {
"type": "integer"
},
"maturity_date": {
"type": "string",
"format": "email"
},
"shipping": {
"type": "integer"
},
"website": {
"type": "array",
"items": {
"type": "string"
}
}
},
"req... | I need to check the port status before assigning the berth.
Let me verify the cargo manifest.
{"level":10,"shipping":764,"website":["MV-Evergreen-01","John","https://api.example.com/v1","London"]} | Output contains chain-of-thought reasoning before JSON | {"level":10,"shipping":764,"website":["MV-Evergreen-01","John","https://api.example.com/v1","London"]} |
TASK repair_structured_output
SPEC
FIELD current_draw TYPE string VALUES active|inactive|pending REQUIRED yes
FIELD paragraph.yield_pct TYPE string REQUIRED yes
FIELD paragraph.organism TYPE integer REQUIRED yes
FIELD paragraph.pressure_kpa TYPE integer REQUIRED no
FIELD paragraph.bearing TYPE null REQUIRED no
FIELD p... | {"current_draw":"inactive","paragraph":{"yield_pct":"Charlie","organism":920,"pressure_kpa":444,"bearing":null,"priority":"homozygous","collateral":"2022-08-19T08:01:00Z"},"count":608,"currency":{"dosage":615,"length":174,"visible":"oceanic","log_level":"married"},"type":{"half_life":"admin","comments":"confirmed","pat... | unquoted_keys | {
"type": "object",
"properties": {
"current_draw": {
"type": "string",
"enum": [
"active",
"inactive",
"pending"
]
},
"paragraph": {
"type": "object",
"properties": {
"yield_pct": {
"type": "string"
},
"organism": {... | {current_draw:"inactive",paragraph:{yield_pct:"Charlie",organism:920,pressure_kpa:444,bearing:null,priority:"homozygous",collateral:"2022-08-19T08:01:00Z"},count:608,currency:{dosage:615,length:174,visible:"oceanic",log_level:"married"},type:{half_life:"admin",comments:"confirmed",patient_id:"offline",enabled:"approved... | Expecting property name enclosed in double quotes | {"current_draw":"inactive","paragraph":{"yield_pct":"Charlie","organism":920,"pressure_kpa":444,"bearing":null,"priority":"homozygous","collateral":"2022-08-19T08:01:00Z"},"count":608,"currency":{"dosage":615,"length":174,"visible":"oceanic","log_level":"married"},"type":{"half_life":"admin","comments":"confirmed","pat... |
TASK repair_structured_output
SPEC
FIELD attr_q19 TYPE string VALUES cat_a|cat_b REQUIRED no
FIELD col_k27 TYPE string VALUES open|in_progress|resolved|closed REQUIRED yes
FIELD col_r84 TYPE string REQUIRED no
FIELD val_x00.key_y78 TYPE string REQUIRED yes
FIELD val_x00.val_x49 TYPE string_date-time REQUIRED no
FIELD ... | {"attr_q19":"cat_a","col_k27":"in_progress","val_x00":{"key_y78":"GRCh38","field_j21":436},"dim_u29":null,"param_y51":901.28,"dim_f21":140} | tool_call_python_syntax | {
"type": "object",
"properties": {
"attr_q19": {
"type": "string",
"enum": [
"cat_a",
"cat_b"
]
},
"col_k27": {
"type": "string",
"enum": [
"open",
"in_progress",
"resolved",
"closed"
]
},
"col_r84": {
"ty... | send_email(attr_q19='cat_a', col_k27='in_progress', val_x00={'key_y78': 'GRCh38', 'field_j21': 436}, dim_u29=None, param_y51=901.28, dim_f21=140) | Tool call uses Python syntax instead of JSON | {"attr_q19":"cat_a","col_k27":"in_progress","val_x00":{"key_y78":"GRCh38","field_j21":436},"dim_u29":null,"param_y51":901.28,"dim_f21":140} |
TASK repair_structured_output
SPEC
FIELD val_c30 TYPE string VALUES single|married|divorced REQUIRED no
FIELD prop_y72 TYPE number REQUIRED no
FIELD val_k40.val_o17 TYPE boolean REQUIRED no
FIELD val_k40.param_i53.dim_o70 TYPE number REQUIRED yes
FIELD val_k40.param_i53.key_s87 TYPE integer REQUIRED no
FIELD val_k40.p... | {"prop_y72":21.86,"val_k40":{"val_o17":true,"param_i53":{"dim_o70":545.53,"key_s87":740,"param_m42":"inland","attr_s31":true},"val_n73":null,"param_p80":{"key_n54":"unstable","attr_j36":677},"prop_x90":"new","attr_h29":{"key_v18":"inactive","key_s47":925,"prop_n71":679,"field_f54":"pending_review"}}} | trailing_comma | {
"type": "object",
"properties": {
"val_c30": {
"type": "string",
"enum": [
"single",
"married",
"divorced"
]
},
"prop_y72": {
"type": "number"
},
"val_k40": {
"type": "object",
"properties": {
"val_o17": {
"type": "b... | {"prop_y72":21.86,"val_k40":{"val_o17":true,"param_i53":{"dim_o70":545.53,"key_s87":740,"param_m42":"inland","attr_s31":true},"val_n73":null,"param_p80":{"key_n54":"unstable","attr_j36":677},"prop_x90":"new","attr_h29":{"key_v18":"inactive","key_s47":925,"prop_n71":679,"field_f54":"pending_review"}},} | Unexpected trailing comma | {"prop_y72":21.86,"val_k40":{"val_o17":true,"param_i53":{"dim_o70":545.53,"key_s87":740,"param_m42":"inland","attr_s31":true},"val_n73":null,"param_p80":{"key_n54":"unstable","attr_j36":677},"prop_x90":"new","attr_h29":{"key_v18":"inactive","key_s47":925,"prop_n71":679,"field_f54":"pending_review"}}} |
TASK repair_structured_output
SPEC
FIELD turbidity TYPE boolean REQUIRED yes
FIELD start_date TYPE string_uri REQUIRED no
FIELD temp_celsius TYPE string REQUIRED no
FIELD tile[] TYPE null REQUIRED no
BROKEN_OUTPUT
Based on the data, temp_celsius is active. {"turbidity":true,"start_date":"https://example.io/api","temp... | {"turbidity":true,"start_date":"https://example.io/api","temp_celsius":"active"} | partial_structure | {
"type": "object",
"properties": {
"turbidity": {
"type": "boolean"
},
"start_date": {
"type": "string",
"format": "uri"
},
"temp_celsius": {
"type": "string"
},
"tile": {
"type": "array",
"items": {
"type": "null"
}
}
},
"requir... | Based on the data, temp_celsius is active. {"turbidity":true,"start_date":"https://example.io/api","temp_celsius":"active"} | Output mixes natural language with JSON | {"turbidity":true,"start_date":"https://example.io/api","temp_celsius":"active"} |
TASK repair_structured_output
SPEC
FIELD prop_h74.val_g63 TYPE string VALUES coastal|oceanic|inland|arctic REQUIRED yes
FIELD prop_h74.attr_s88 TYPE string REQUIRED yes
FIELD prop_h74.attr_f27 TYPE string VALUES reliable|unstable|intermittent REQUIRED yes
FIELD param_e54 TYPE string REQUIRED no
FIELD param_s89 TYPE st... | {"prop_h74":{"val_g63":"oceanic","attr_s88":"https://example.com","attr_f27":"intermittent"},"param_e54":"bar","param_s89":"homozygous","field_n58":"2021-01-12T01:00:00Z","field_g70":false} | agent_chain | {
"type": "object",
"properties": {
"prop_h74": {
"type": "object",
"properties": {
"val_g63": {
"type": "string",
"enum": [
"coastal",
"oceanic",
"inland",
"arctic"
]
},
"attr_s88": {
"ty... | Let me check the system.
Action: process_payment
Result: {"prop_h74": {"val_g63": "oceanic", "attr_s88": "https://example.com", "attr_f27": "intermittent"}, "param_s89": "homozygous", "field_n58": "2021-01-12T01:00:00Z", "field_g70": false}
Processing the request now.
Action: get_account
Result: | Agent multi-step chain with truncated tool output | {"prop_h74":{"val_g63":"oceanic","attr_s88":"https://example.com","attr_f27":"intermittent"},"param_e54":"bar","param_s89":"homozygous","field_n58":"2021-01-12T01:00:00Z","field_g70":false} |
TASK repair_structured_output
SPEC
FIELD shipper_ref TYPE number REQUIRED yes
FIELD user_id TYPE number REQUIRED no
FIELD vessel_name TYPE integer REQUIRED yes
FIELD sensor_id TYPE string REQUIRED yes
BROKEN_OUTPUT
{"shipper_ref":528.89,"user_id":213.67,"vessel_name":201,"sensor_id":"chr1" | {"shipper_ref":528.89,"user_id":213.67,"vessel_name":201,"sensor_id":"chr1"} | truncated_array | {
"type": "object",
"properties": {
"shipper_ref": {
"type": "number"
},
"user_id": {
"type": "number"
},
"vessel_name": {
"type": "integer"
},
"sensor_id": {
"type": "string"
}
},
"required": [
"sensor_id",
"vessel_name",
"shipper_ref"
]
} | {"shipper_ref":528.89,"user_id":213.67,"vessel_name":201,"sensor_id":"chr1" | Unexpected end of JSON input — truncated object | {"shipper_ref":528.89,"user_id":213.67,"vessel_name":201,"sensor_id":"chr1"} |
TASK repair_structured_output
SPEC
FIELD field_r26 TYPE string VALUES homozygous|heterozygous|hemizygous REQUIRED no
FIELD val_h68 TYPE string VALUES free|basic|pro|enterprise REQUIRED yes
FIELD attr_j77 TYPE number REQUIRED no
BROKEN_OUTPUT
{"field_r26":"homozygous","val_h68":"enterprise" | {"field_r26":"homozygous","val_h68":"enterprise"} | truncated_object | {
"type": "object",
"properties": {
"field_r26": {
"type": "string",
"enum": [
"homozygous",
"heterozygous",
"hemizygous"
]
},
"val_h68": {
"type": "string",
"enum": [
"free",
"basic",
"pro",
"enterprise"
]
}... | {"field_r26":"homozygous","val_h68":"enterprise" | Unexpected end of JSON input — truncated object | {"field_r26":"homozygous","val_h68":"enterprise"} |
TASK repair_structured_output
SPEC
FIELD field_c32 TYPE string VALUES option_a|option_b|option_c|option_d|option_e REQUIRED no
FIELD col_w09 TYPE string VALUES option_a|option_b REQUIRED yes
FIELD col_s82 TYPE string VALUES reliable|unstable|intermittent REQUIRED no
FIELD dim_x51 TYPE integer REQUIRED no
FIELD col_o11... | {"field_c32":"option_d","col_w09":"option_b","dim_x51":617,"col_o11":"Smith","key_r31":"mode_a"} | number_with_unit | {
"type": "object",
"properties": {
"field_c32": {
"type": "string",
"enum": [
"option_a",
"option_b",
"option_c",
"option_d",
"option_e"
]
},
"col_w09": {
"type": "string",
"enum": [
"option_a",
"option_b"
]
... | {"field_c32": "option_d", "col_w09": "option_b", "dim_x51": "617%", "col_o11": "Smith", "key_r31": "mode_a"} | Field 'dim_x51' must be number, got string with unit | {"field_c32":"option_d","col_w09":"option_b","dim_x51":617,"col_o11":"Smith","key_r31":"mode_a"} |
TASK repair_structured_output
SPEC
FIELD prop_n64 TYPE string_uri REQUIRED no
FIELD key_l94 TYPE string REQUIRED no
FIELD val_v62.prop_w85 TYPE string_email REQUIRED yes
FIELD val_v62.val_a30 TYPE string REQUIRED yes
FIELD val_v62.dim_g67 TYPE null REQUIRED yes
FIELD dim_f80.attr_n40 TYPE string_uri REQUIRED no
FIELD ... | {"prop_n64":"https://www.org/api","key_l94":"qux","val_v62":{"prop_w85":"test@test.io","val_a30":"2024-01-15","dim_g67":null},"dim_f80":{"attr_n40":"https://www.org/api","prop_k95":{"val_b14":"type_d","key_c54":"resolved","col_i58":"cancelled","key_g44":"demo","field_k76":"type_c","field_v91":103.09},"param_e30":101.85... | tool_call_partial_args | {
"type": "object",
"properties": {
"prop_n64": {
"type": "string",
"format": "uri"
},
"key_l94": {
"type": "string"
},
"val_v62": {
"type": "object",
"properties": {
"prop_w85": {
"type": "string",
"format": "email"
},
"v... | I need to look up the information first.
Action: check_availability
Arguments: {"prop_n64": "https://www.org/api", "key_l94": "qux", "val_v62": {"prop_w85": "test@test.io", "val_a30": "2024-01-15", "dim_g67": null}, "dim_f80": {"attr_n40": "https://www.org/api", "prop_k95": {"val_b14": "type_d", "key_c54": "resolved", ... | Agent tool call missing required parameter 'param_o92' | {"prop_n64":"https://www.org/api","key_l94":"qux","val_v62":{"prop_w85":"test@test.io","val_a30":"2024-01-15","dim_g67":null},"dim_f80":{"attr_n40":"https://www.org/api","prop_k95":{"val_b14":"type_d","key_c54":"resolved","col_i58":"cancelled","key_g44":"demo","field_k76":"type_c","field_v91":103.09},"param_e30":101.85... |
TASK repair_structured_output
SPEC
FIELD department TYPE string REQUIRED yes
FIELD payment_status TYPE number REQUIRED no
FIELD size[].width TYPE boolean REQUIRED no
FIELD size[].state TYPE boolean REQUIRED no
FIELD size[].priority TYPE string REQUIRED yes
FIELD size[].bearing TYPE string REQUIRED no
FIELD size[].lab_... | {"department":"example"} | tool_call_wrong_param | {
"type": "object",
"properties": {
"department": {
"type": "string"
},
"payment_status": {
"type": "number"
},
"size": {
"type": "array",
"items": {
"type": "object",
"properties": {
"width": {
"type": "boolean"
},
... | Tool: annotate_mutation
Params: {"department": "example"} | Agent used wrong parameter name 'payment_status_id' instead of 'payment_status' | {"department":"example"} |
TASK repair_structured_output
SPEC
FIELD insurance_id TYPE string_email REQUIRED yes
FIELD level.first_name TYPE string VALUES level_1|level_2|level_3|level_4|level_5|level_6 REQUIRED no
FIELD level.id TYPE string VALUES mode_a|mode_b|mode_c|mode_d|mode_e REQUIRED yes
FIELD level.chapter TYPE string VALUES mode_a|mode... | {"insurance_id":"ops@domain.org","level":{"first_name":"level_1","id":"mode_c","chapter":"mode_b","due_date":"inactive","payment_status":"Oliveira","half_life":"BRL","city":"cancelled","sensor_id":482.95},"published":{"tile":"arctic","version":"medium","bearing":475,"amplitude":666.65,"subtotal":"option_c","end_date":"... | tool_call_python_syntax | {
"type": "object",
"properties": {
"insurance_id": {
"type": "string",
"format": "email"
},
"level": {
"type": "object",
"properties": {
"first_name": {
"type": "string",
"enum": [
"level_1",
"level_2",
"level_3",
... | update_preferences(insurance_id='ops@domain.org', level={'first_name': 'level_1', 'id': 'mode_c', 'chapter': 'mode_b', 'due_date': 'inactive', 'payment_status': 'Oliveira', 'half_life': 'BRL', 'city': 'cancelled', 'sensor_id': 482.95}, published={'tile': 'arctic', 'version': 'medium', 'bearing': 475, 'amplitude': 666.6... | Tool call uses Python syntax instead of JSON | {"insurance_id":"ops@domain.org","level":{"first_name":"level_1","id":"mode_c","chapter":"mode_b","due_date":"inactive","payment_status":"Oliveira","half_life":"BRL","city":"cancelled","sensor_id":482.95},"published":{"tile":"arctic","version":"medium","bearing":475,"amplitude":666.65,"subtotal":"option_c","end_date":"... |
TASK repair_structured_output
SPEC
FIELD email TYPE string VALUES reliable|unstable|intermittent REQUIRED yes
FIELD website TYPE string REQUIRED no
FIELD terminal_id.position TYPE string REQUIRED yes
FIELD terminal_id.url TYPE null REQUIRED yes
FIELD terminal_id.humidity_pct TYPE string VALUES success|error|warning|in... | {"email":"unstable","terminal_id":{"position":"example","url":null,"humidity_pct":"warning","status_code":840,"nickname":"mode_b"}} | missing_required | {
"type": "object",
"properties": {
"email": {
"type": "string",
"enum": [
"reliable",
"unstable",
"intermittent"
]
},
"website": {
"type": "string"
},
"terminal_id": {
"type": "object",
"properties": {
"position": {
"... | {"email": "unstable"} | Required field 'terminal_id' is missing | {"email":"unstable","terminal_id":{"position":"example","url":null,"humidity_pct":"warning","status_code":840,"nickname":"mode_b"}} |
TASK repair_structured_output
SPEC
FIELD address TYPE string REQUIRED no
FIELD salinity.phenotype TYPE string VALUES red|blue|green|black|white REQUIRED no
FIELD salinity.wavelength TYPE integer REQUIRED yes
FIELD salinity.ph_level.allele TYPE string VALUES synonymous|missense|nonsense|frameshift REQUIRED no
FIELD sal... | {"address":"Luis","salinity":{"phenotype":"white","wavelength":288,"ph_level":{"port_code":"berthed","terminal_id":"missense","maturity_date":964},"half_life":{"fleet_number":"homozygous","tags":"This is a test value.","procedure_code":"pending_review","torque_output":"example","url":"Paris"}},"vital_sign":"USD","humid... | tool_call_partial_args | {
"type": "object",
"properties": {
"address": {
"type": "string"
},
"salinity": {
"type": "object",
"properties": {
"phenotype": {
"type": "string",
"enum": [
"red",
"blue",
"green",
"black",
"whit... | I need to look up the information first.
Action: get_account
Arguments: {"address": "Luis", "vital_sign": "USD", "humidity_pct": 138} | Agent tool call missing required parameter 'salinity' | {"address":"Luis","salinity":{"phenotype":"white","wavelength":288,"ph_level":{"port_code":"berthed","terminal_id":"missense","maturity_date":964},"half_life":{"fleet_number":"homozygous","tags":"This is a test value.","procedure_code":"pending_review","torque_output":"example","url":"Paris"}},"vital_sign":"USD","humid... |
TASK repair_structured_output
SPEC
FIELD val_r96 TYPE string VALUES option_a|option_b|option_c|option_d|option_e REQUIRED yes
FIELD val_b66 TYPE string VALUES reliable|unstable|intermittent REQUIRED no
FIELD col_u62 TYPE string REQUIRED no
FIELD val_s01 TYPE null REQUIRED yes
BROKEN_OUTPUT
Let me analyze the request ... | {"val_r96":"option_c","val_b66":"unstable","col_u62":"approved","val_s01":null} | thought_process | {
"type": "object",
"properties": {
"val_r96": {
"type": "string",
"enum": [
"option_a",
"option_b",
"option_c",
"option_d",
"option_e"
]
},
"val_b66": {
"type": "string",
"enum": [
"reliable",
"unstable",
"int... | Let me analyze the request and generate the appropriate JSON.
The user wants a structured object with specific fields.
{"val_r96":"option_c","val_b66":"unstable","col_u62":"approved","val_s01":null} | Output contains chain-of-thought reasoning before JSON | {"val_r96":"option_c","val_b66":"unstable","col_u62":"approved","val_s01":null} |
TASK repair_structured_output
SPEC
FIELD barcode TYPE integer REQUIRED no
FIELD city TYPE number REQUIRED no
FIELD vessel_name TYPE boolean REQUIRED no
FIELD product_id TYPE integer REQUIRED yes
FIELD terminal_id TYPE integer REQUIRED no
FIELD bed_number TYPE string VALUES success|error|warning|info REQUIRED no
FIELD ... | {"city":378.31,"vessel_name":false,"product_id":496,"bed_number":"info"} | missing_brace | {
"type": "object",
"properties": {
"barcode": {
"type": "integer"
},
"city": {
"type": "number"
},
"vessel_name": {
"type": "boolean"
},
"product_id": {
"type": "integer"
},
"terminal_id": {
"type": "integer"
},
"bed_number": {
"type":... | "city":378.31,"vessel_name":false,"product_id":496,"bed_number":"info"} | Missing closing brace | {"city":378.31,"vessel_name":false,"product_id":496,"bed_number":"info"} |
TASK repair_structured_output
SPEC
FIELD dim_i60 TYPE string VALUES new|in_transit|delivered|returned REQUIRED no
FIELD param_i13 TYPE string VALUES small|medium|large|xl REQUIRED yes
FIELD prop_r36 TYPE string VALUES open|in_progress|resolved|closed REQUIRED yes
BROKEN_OUTPUT
{"param_i13":"large","prop_r36":"closed" | {"param_i13":"large","prop_r36":"closed"} | truncated_object | {
"type": "object",
"properties": {
"dim_i60": {
"type": "string",
"enum": [
"new",
"in_transit",
"delivered",
"returned"
]
},
"param_i13": {
"type": "string",
"enum": [
"small",
"medium",
"large",
"xl"
]... | {"param_i13":"large","prop_r36":"closed" | Unexpected end of JSON input — truncated object | {"param_i13":"large","prop_r36":"closed"} |
TASK repair_structured_output
SPEC
FIELD umi TYPE integer REQUIRED no
FIELD visible TYPE string VALUES active|inactive|pending REQUIRED no
FIELD freight_class TYPE null REQUIRED no
FIELD phone.total TYPE string VALUES small|medium|large|xl REQUIRED yes
FIELD phone.quantity TYPE string VALUES pending_review|confirmed|r... | {"umi":725,"freight_class":null,"chromosome":"resolved","last_name":true,"format":{"size":"Berlin","payment_status":"in_transit","shipping":"inactive","feedback":"user@domain.com"}} | invalid_enum | {
"type": "object",
"properties": {
"umi": {
"type": "integer"
},
"visible": {
"type": "string",
"enum": [
"active",
"inactive",
"pending"
]
},
"freight_class": {
"type": "null"
},
"phone": {
"type": "object",
"properties"... | {"umi": 725, "freight_class": null, "chromosome": "invalid_choice_765", "last_name": true, "format": {"size": "Berlin", "payment_status": "in_transit", "shipping": "inactive", "feedback": "user@domain.com"}} | Field 'chromosome' has invalid enum value 'invalid_choice_765', expected one of ['open', 'in_progress', 'resolved', 'closed'] | {"umi":725,"freight_class":null,"chromosome":"resolved","last_name":true,"format":{"size":"Berlin","payment_status":"in_transit","shipping":"inactive","feedback":"user@domain.com"}} |
TASK repair_structured_output
SPEC
FIELD val_u34 TYPE null REQUIRED no
FIELD col_l25 TYPE integer REQUIRED yes
FIELD key_x93 TYPE integer REQUIRED no
FIELD key_d06.col_l73 TYPE string VALUES operational|degraded|offline|maintenance REQUIRED no
FIELD key_d06.dim_h06 TYPE string VALUES berthed|anchored|underway|moored R... | {"val_u34":null,"col_l25":561,"key_x93":615,"key_d06":{"dim_h06":"berthed","attr_c04":126.62,"key_t72":"Diana","val_h87":"small","col_h94":1000}} | unquoted_keys | {
"type": "object",
"properties": {
"val_u34": {
"type": "null"
},
"col_l25": {
"type": "integer"
},
"key_x93": {
"type": "integer"
},
"key_d06": {
"type": "object",
"properties": {
"col_l73": {
"type": "string",
"enum": [
... | {val_u34:null,col_l25:561,key_x93:615,key_d06:{dim_h06:"berthed",attr_c04:126.62,key_t72:"Diana",val_h87:"small",col_h94:1000}} | Expecting property name enclosed in double quotes | {"val_u34":null,"col_l25":561,"key_x93":615,"key_d06":{"dim_h06":"berthed","attr_c04":126.62,"key_t72":"Diana","val_h87":"small","col_h94":1000}} |
TASK repair_structured_output
SPEC
FIELD key_e11 TYPE string REQUIRED yes
FIELD dim_f36 TYPE number REQUIRED yes
FIELD prop_k01 TYPE string REQUIRED yes
BROKEN_OUTPUT
I need to look up the information first.
Action: query_port_status
Result: {"dim_f36": 724.18, "prop_k01": "This is a test value."}
Processing the req... | {"key_e11":"test","dim_f36":724.18,"prop_k01":"This is a test value."} | agent_chain | {
"type": "object",
"properties": {
"key_e11": {
"type": "string"
},
"dim_f36": {
"type": "number"
},
"prop_k01": {
"type": "string"
}
},
"required": [
"dim_f36",
"key_e11",
"prop_k01"
]
} | I need to look up the information first.
Action: query_port_status
Result: {"dim_f36": 724.18, "prop_k01": "This is a test value."}
Processing the request now.
Action: update_record
Result: | Agent multi-step chain with truncated tool output | {"key_e11":"test","dim_f36":724.18,"prop_k01":"This is a test value."} |
TASK repair_structured_output
SPEC
FIELD consignee TYPE string VALUES synonymous|missense|nonsense|frameshift REQUIRED yes
FIELD turbidity TYPE string VALUES small|medium|large|xl REQUIRED yes
FIELD color TYPE string VALUES draft|published|archived REQUIRED yes
BROKEN_OUTPUT
{"consignee":"missense","turbidity":"large... | {"consignee":"missense","turbidity":"large","color":"draft"} | missing_bracket | {
"type": "object",
"properties": {
"consignee": {
"type": "string",
"enum": [
"synonymous",
"missense",
"nonsense",
"frameshift"
]
},
"turbidity": {
"type": "string",
"enum": [
"small",
"medium",
"large",
"xl"... | {"consignee":"missense","turbidity":"large","color":"draft"} | Missing closing bracket | {"consignee":"missense","turbidity":"large","color":"draft"} |
TASK repair_structured_output
SPEC
FIELD val_v00 TYPE string VALUES red|blue|green|black|white REQUIRED no
FIELD val_d55 TYPE string VALUES red|blue|green|black|white REQUIRED yes
FIELD dim_m09 TYPE string VALUES single|married|divorced REQUIRED no
FIELD col_z10 TYPE number REQUIRED yes
FIELD val_y55 TYPE string REQUI... | {"val_v00":"green","val_d55":"blue","dim_m09":"married","col_z10":735.91,"param_o59":767} | tool_call_bad_format | {
"type": "object",
"properties": {
"val_v00": {
"type": "string",
"enum": [
"red",
"blue",
"green",
"black",
"white"
]
},
"val_d55": {
"type": "string",
"enum": [
"red",
"blue",
"green",
"black",
... | <functioncall> check_availability
{val_v00: "green", val_d55: "blue", dim_m09: "married", col_z10: 735.91, param_o59: 767} | Tool call has malformed arguments — unquoted keys in function parameters | {"val_v00":"green","val_d55":"blue","dim_m09":"married","col_z10":735.91,"param_o59":767} |
TASK repair_structured_output
SPEC
FIELD dim_z87 TYPE integer REQUIRED yes
FIELD col_s56 TYPE boolean REQUIRED yes
FIELD prop_q52 TYPE string REQUIRED no
FIELD col_s59.key_h48.key_a74 TYPE string VALUES email|phone|sms|push REQUIRED no
FIELD col_s59.key_h48.val_r97 TYPE integer REQUIRED no
FIELD col_s59.key_h48.dim_e0... | {"dim_z87":34,"col_s56":true,"col_s59":{"key_h48":{"val_r97":650,"dim_e06":417,"attr_n02":"Silva","param_j95":"GRCh38","val_e15":"This is a test value.","field_c68":"A short description."},"field_d58":983,"val_l76":754,"col_v60":{"attr_w78":"PASS","field_l14":"London","key_y72":false}},"col_d06":false} | extra_text_before | {
"type": "object",
"properties": {
"dim_z87": {
"type": "integer"
},
"col_s56": {
"type": "boolean"
},
"prop_q52": {
"type": "string"
},
"col_s59": {
"type": "object",
"properties": {
"key_h48": {
"type": "object",
"properties": ... | I've generated the following JSON:
{"dim_z87":34,"col_s56":true,"col_s59":{"key_h48":{"val_r97":650,"dim_e06":417,"attr_n02":"Silva","param_j95":"GRCh38","val_e15":"This is a test value.","field_c68":"A short description."},"field_d58":983,"val_l76":754,"col_v60":{"attr_w78":"PASS","field_l14":"London","key_y72":false}... | Output contains non-JSON text before the object | {"dim_z87":34,"col_s56":true,"col_s59":{"key_h48":{"val_r97":650,"dim_e06":417,"attr_n02":"Silva","param_j95":"GRCh38","val_e15":"This is a test value.","field_c68":"A short description."},"field_d58":983,"val_l76":754,"col_v60":{"attr_w78":"PASS","field_l14":"London","key_y72":false}},"col_d06":false} |
TASK repair_structured_output
SPEC
FIELD param_o69 TYPE string REQUIRED no
FIELD dim_a01 TYPE number REQUIRED yes
FIELD attr_c09 TYPE string VALUES mode_a|mode_b|mode_c REQUIRED no
FIELD col_u52 TYPE string VALUES type_a|type_b REQUIRED no
FIELD param_s15.prop_y09 TYPE string VALUES berthed|anchored|underway|moored RE... | {"dim_a01":364.27,"dim_s85":"married","prop_c14":"demo"} | tool_call_bad_format | {
"type": "object",
"properties": {
"param_o69": {
"type": "string"
},
"dim_a01": {
"type": "number"
},
"attr_c09": {
"type": "string",
"enum": [
"mode_a",
"mode_b",
"mode_c"
]
},
"col_u52": {
"type": "string",
"enum": [
... | <functioncall> delete_item
{dim_a01: 364.27, dim_s85: "married", prop_c14: "demo"} | Tool call has malformed arguments — unquoted keys in function parameters | {"dim_a01":364.27,"dim_s85":"married","prop_c14":"demo"} |
TASK repair_structured_output
SPEC
FIELD company TYPE string VALUES homozygous|heterozygous|hemizygous REQUIRED yes
FIELD pressure_kpa TYPE string VALUES success|error|warning|info REQUIRED no
FIELD thumbnail TYPE string VALUES new|in_transit|delivered|returned REQUIRED yes
FIELD throttle_pos TYPE string_email REQUIRE... | {"company":"homozygous","pressure_kpa":"info","thumbnail":"in_transit","throttle_pos":"user@test.io"} | tool_call_text_mix | {
"type": "object",
"properties": {
"company": {
"type": "string",
"enum": [
"homozygous",
"heterozygous",
"hemizygous"
]
},
"pressure_kpa": {
"type": "string",
"enum": [
"success",
"error",
"warning",
"info"
]
... | I need to look up the information first.
<tool_call name="align_reads">
{"company":"homozygous","pressure_kpa":"info","thumbnail":"in_transit","throttle_pos":"user@test.io"}
</tool_call.
Done! | Agent response mixes reasoning text with tool call | {"company":"homozygous","pressure_kpa":"info","thumbnail":"in_transit","throttle_pos":"user@test.io"} |
TASK repair_structured_output
SPEC
FIELD build_status TYPE string_uri REQUIRED no
FIELD duration_ms TYPE integer REQUIRED no
FIELD trace_id TYPE string REQUIRED no
FIELD items[].language TYPE integer REQUIRED no
FIELD items[].chapter TYPE string VALUES mode_a|mode_b|mode_c|mode_d REQUIRED no
FIELD items[].turbidity TY... | {"duration_ms":913,"trace_id":"Berlin","items":[{"language":622,"chapter":"mode_b","turbidity":"pending"},{"turbidity":"active"},{"chapter":"mode_b","turbidity":"active"},{"language":7,"chapter":"mode_b","turbidity":"inactive"}]} | extra_text_after | {
"type": "object",
"properties": {
"build_status": {
"type": "string",
"format": "uri"
},
"duration_ms": {
"type": "integer"
},
"trace_id": {
"type": "string"
},
"items": {
"type": "array",
"items": {
"type": "object",
"properties": {
... | {"duration_ms":913,"trace_id":"Berlin","items":[{"language":622,"chapter":"mode_b","turbidity":"pending"},{"turbidity":"active"},{"chapter":"mode_b","turbidity":"active"},{"language":7,"chapter":"mode_b","turbidity":"inactive"}]}
Let me know if you need anything else! | Output contains non-JSON text after the object | {"duration_ms":913,"trace_id":"Berlin","items":[{"language":622,"chapter":"mode_b","turbidity":"pending"},{"turbidity":"active"},{"chapter":"mode_b","turbidity":"active"},{"language":7,"chapter":"mode_b","turbidity":"inactive"}]} |
TASK repair_structured_output
SPEC
FIELD param_d48 TYPE number REQUIRED no
FIELD key_a68 TYPE string VALUES open|in_progress|resolved|closed REQUIRED no
FIELD key_x42 TYPE number REQUIRED no
FIELD prop_r47.col_w07 TYPE number REQUIRED yes
FIELD prop_r47.attr_u17 TYPE string VALUES berthed|anchored|underway|moored REQU... | {"param_d48":307.35,"prop_r47":{"col_w07":551.18,"attr_u17":"underway","dim_z73":null,"param_o52":"inland"},"col_e85":"2024-06-30","prop_v10":"option_b","param_t82":"2025-09-28T02:54:00Z"} | tool_call_partial_args | {
"type": "object",
"properties": {
"param_d48": {
"type": "number"
},
"key_a68": {
"type": "string",
"enum": [
"open",
"in_progress",
"resolved",
"closed"
]
},
"key_x42": {
"type": "number"
},
"prop_r47": {
"type": "obj... | I need to look up the information first.
Action: send_email
Arguments: {"param_d48": 307.35, "prop_r47": {"col_w07": 551.18, "attr_u17": "underway", "dim_z73": null, "param_o52": "inland"}, "col_e85": "2024-06-30", "prop_v10": "option_b"} | Agent tool call missing required parameter 'param_t82' | {"param_d48":307.35,"prop_r47":{"col_w07":551.18,"attr_u17":"underway","dim_z73":null,"param_o52":"inland"},"col_e85":"2024-06-30","prop_v10":"option_b","param_t82":"2025-09-28T02:54:00Z"} |
TASK repair_structured_output
SPEC
FIELD label TYPE null REQUIRED no
FIELD throttle_pos TYPE string_email REQUIRED yes
FIELD first_name TYPE null REQUIRED yes
FIELD hazmat_code TYPE string VALUES type_a|type_b REQUIRED yes
FIELD loan_amount TYPE integer REQUIRED no
FIELD compound TYPE string VALUES cat_a|cat_b|cat_c|c... | {"throttle_pos":"admin@domain.org","first_name":null,"hazmat_code":"type_b","loan_amount":544} | single_quotes | {
"type": "object",
"properties": {
"label": {
"type": "null"
},
"throttle_pos": {
"type": "string",
"format": "email"
},
"first_name": {
"type": "null"
},
"hazmat_code": {
"type": "string",
"enum": [
"type_a",
"type_b"
]
},
... | {'throttle_pos':'admin@domain.org','first_name':null,'hazmat_code':'type_b','loan_amount':544} | Expecting property name enclosed in double quotes | {"throttle_pos":"admin@domain.org","first_name":null,"hazmat_code":"type_b","loan_amount":544} |
TASK repair_structured_output
SPEC
FIELD val_r96 TYPE number REQUIRED no
FIELD field_s25 TYPE string VALUES pending_review|confirmed|rejected|escalated REQUIRED yes
FIELD col_o04 TYPE integer REQUIRED no
BROKEN_OUTPUT
{"val_r96": 729.95, "field_s25": "invalid_value_711", "col_o04": 825} | {"val_r96":729.95,"field_s25":"rejected","col_o04":825} | invalid_enum | {
"type": "object",
"properties": {
"val_r96": {
"type": "number"
},
"field_s25": {
"type": "string",
"enum": [
"pending_review",
"confirmed",
"rejected",
"escalated"
]
},
"col_o04": {
"type": "integer"
}
},
"required": [
... | {"val_r96": 729.95, "field_s25": "invalid_value_711", "col_o04": 825} | Field 'field_s25' has invalid enum value 'invalid_value_711', expected one of ['pending_review', 'confirmed', 'rejected', 'escalated'] | {"val_r96":729.95,"field_s25":"rejected","col_o04":825} |
TASK repair_structured_output
SPEC
FIELD field_u51.field_y63 TYPE number REQUIRED yes
FIELD field_u51.field_r95 TYPE null REQUIRED no
FIELD field_u51.prop_c85[] TYPE integer REQUIRED yes
FIELD field_m40 TYPE string REQUIRED yes
FIELD dim_v54.field_u05 TYPE string VALUES active|inactive|pending REQUIRED yes
FIELD dim_v... | {"field_u51":{"field_y63":806.85,"prop_c85":[600,241,608]},"field_m40":"A short description.","dim_v54":{"field_u05":"inactive","col_l06":319,"key_n44":284.18},"col_f78":"in_progress","param_i06":508.67} | markdown_explanation | {
"type": "object",
"properties": {
"field_u51": {
"type": "object",
"properties": {
"field_y63": {
"type": "number"
},
"field_r95": {
"type": "null"
},
"prop_c85": {
"type": "array",
"items": {
"type": "inte... | Below is the JSON object:
```json
{"field_u51":{"field_y63":806.85,"prop_c85":[600,241,608]},"field_m40":"A short description.","dim_v54":{"field_u05":"inactive","col_l06":319,"key_n44":284.18},"col_f78":"in_progress","param_i06":508.67}
```
Data logged successfully. | Output contains markdown and explanatory text around JSON | {"field_u51":{"field_y63":806.85,"prop_c85":[600,241,608]},"field_m40":"A short description.","dim_v54":{"field_u05":"inactive","col_l06":319,"key_n44":284.18},"col_f78":"in_progress","param_i06":508.67} |
TASK repair_structured_output
SPEC
FIELD val_e36.key_k52 TYPE string REQUIRED no
FIELD val_e36.param_r64.key_o01 TYPE string REQUIRED yes
FIELD val_e36.param_r64.val_d82 TYPE string REQUIRED no
FIELD val_e36.param_r64.field_q04 TYPE number REQUIRED no
FIELD val_e36.param_r64.val_f20 TYPE string VALUES berthed|anchored... | {"val_e36":{"key_k52":"Hapag-Lloyd-Express","field_k03":"test@example.com"},"val_o38":"inactive","key_m29":"basic","field_b21":243} | number_with_unit | {
"type": "object",
"properties": {
"val_e36": {
"type": "object",
"properties": {
"key_k52": {
"type": "string"
},
"param_r64": {
"type": "object",
"properties": {
"key_o01": {
"type": "string"
},
... | {"val_e36": {"key_k52": "Hapag-Lloyd-Express", "field_k03": "test@example.com"}, "val_o38": "inactive", "key_m29": "basic", "field_b21": "243MB"} | Field 'field_b21' must be number, got string with unit | {"val_e36":{"key_k52":"Hapag-Lloyd-Express","field_k03":"test@example.com"},"val_o38":"inactive","key_m29":"basic","field_b21":243} |
TASK repair_structured_output
SPEC
FIELD param_x46 TYPE string VALUES low|medium|high|critical REQUIRED yes
FIELD val_u18 TYPE string VALUES open|in_progress|resolved|closed REQUIRED yes
FIELD dim_b27 TYPE string VALUES pending_review|confirmed|rejected|escalated REQUIRED no
FIELD param_x24 TYPE integer REQUIRED no
FI... | {"param_x46":"critical","val_u18":"in_progress","dim_b27":"pending_review","param_x24":493,"col_w03":134,"val_z63":"A short description.","dim_p81":"Hapag-Lloyd-Express","dim_l08":"sms"} | unquoted_keys | {
"type": "object",
"properties": {
"param_x46": {
"type": "string",
"enum": [
"low",
"medium",
"high",
"critical"
]
},
"val_u18": {
"type": "string",
"enum": [
"open",
"in_progress",
"resolved",
"closed"
... | {param_x46:"critical",val_u18:"in_progress",dim_b27:"pending_review",param_x24:493,col_w03:134,val_z63:"A short description.",dim_p81:"Hapag-Lloyd-Express",dim_l08:"sms"} | Expecting property name enclosed in double quotes | {"param_x46":"critical","val_u18":"in_progress","dim_b27":"pending_review","param_x24":493,"col_w03":134,"val_z63":"A short description.","dim_p81":"Hapag-Lloyd-Express","dim_l08":"sms"} |
TASK repair_structured_output
SPEC
FIELD val_h36 TYPE string REQUIRED yes
FIELD param_m43 TYPE string_uri REQUIRED yes
FIELD field_x10 TYPE number REQUIRED yes
FIELD prop_d50 TYPE string REQUIRED no
BROKEN_OUTPUT
{"val_h36":"Luis","param_m43":"https://api.org/v1","field_x10":876.6,} | {"val_h36":"Luis","param_m43":"https://api.org/v1","field_x10":876.6} | trailing_comma | {
"type": "object",
"properties": {
"val_h36": {
"type": "string"
},
"param_m43": {
"type": "string",
"format": "uri"
},
"field_x10": {
"type": "number"
},
"prop_d50": {
"type": "string"
}
},
"required": [
"param_m43",
"val_h36",
"field_x... | {"val_h36":"Luis","param_m43":"https://api.org/v1","field_x10":876.6,} | Unexpected trailing comma | {"val_h36":"Luis","param_m43":"https://api.org/v1","field_x10":876.6} |
TASK repair_structured_output
SPEC
FIELD filter_flag TYPE string REQUIRED no
FIELD weight TYPE string VALUES email|phone|sms|push REQUIRED yes
FIELD invoice_id TYPE string_date-time REQUIRED no
FIELD loan_amount TYPE string REQUIRED no
FIELD index TYPE string VALUES cat_a|cat_b|cat_c|cat_d REQUIRED no
FIELD medication... | {"weight":"sms","invoice_id":"2025-03-06T04:19:00Z","medication":null} | unquoted_keys | {
"type": "object",
"properties": {
"filter_flag": {
"type": "string"
},
"weight": {
"type": "string",
"enum": [
"email",
"phone",
"sms",
"push"
]
},
"invoice_id": {
"type": "string",
"format": "date-time"
},
"loan_amoun... | {weight:"sms",invoice_id:"2025-03-06T04:19:00Z",medication:null} | Expecting property name enclosed in double quotes | {"weight":"sms","invoice_id":"2025-03-06T04:19:00Z","medication":null} |
TASK repair_structured_output
SPEC
FIELD attr_a05 TYPE string VALUES mode_a|mode_b|mode_c|mode_d|mode_e REQUIRED yes
FIELD dim_u23 TYPE string VALUES operational|degraded|offline|maintenance REQUIRED no
FIELD val_r37 TYPE string REQUIRED yes
BROKEN_OUTPUT
{"attr_a05": "mode_e", "dim_u23": "invalid_choice_888", "val_r... | {"attr_a05":"mode_e","dim_u23":"offline","val_r37":"user@domain.com"} | invalid_enum | {
"type": "object",
"properties": {
"attr_a05": {
"type": "string",
"enum": [
"mode_a",
"mode_b",
"mode_c",
"mode_d",
"mode_e"
]
},
"dim_u23": {
"type": "string",
"enum": [
"operational",
"degraded",
"offline",... | {"attr_a05": "mode_e", "dim_u23": "invalid_choice_888", "val_r37": "user@domain.com"} | Field 'dim_u23' has invalid enum value 'invalid_choice_888', expected one of ['operational', 'degraded', 'offline', 'maintenance'] | {"attr_a05":"mode_e","dim_u23":"offline","val_r37":"user@domain.com"} |
TASK repair_structured_output
SPEC
FIELD val_x54 TYPE number REQUIRED yes
FIELD field_f09 TYPE string VALUES single|married|divorced REQUIRED no
FIELD dim_b17.dim_x48 TYPE boolean REQUIRED no
FIELD dim_b17.col_z45 TYPE string VALUES homozygous|heterozygous|hemizygous REQUIRED yes
FIELD dim_b17.prop_n84 TYPE string VAL... | {"val_x54":755.46,"field_f09":"divorced","dim_b17":{"dim_x48":true,"col_z45":"heterozygous","prop_n84":"divorced"}} | extra_field | {
"type": "object",
"properties": {
"val_x54": {
"type": "number"
},
"field_f09": {
"type": "string",
"enum": [
"single",
"married",
"divorced"
]
},
"dim_b17": {
"type": "object",
"properties": {
"dim_x48": {
"type": "... | {"val_x54": 755.46, "field_f09": "divorced", "dim_b17": {"dim_x48": true, "col_z45": "heterozygous", "prop_n84": "divorced"}, "extra_value_4624": 42} | Unknown field 'extra_value_4624' not defined in schema | {"val_x54":755.46,"field_f09":"divorced","dim_b17":{"dim_x48":true,"col_z45":"heterozygous","prop_n84":"divorced"}} |
TASK repair_structured_output
SPEC
FIELD col_s86 TYPE string REQUIRED no
FIELD prop_n75 TYPE integer REQUIRED yes
FIELD field_m56 TYPE string_uri REQUIRED no
BROKEN_OUTPUT
{"col_s86": "QC-07", "prop_n75": "\"852\"", "field_m56": "https://data.com/data"} | {"col_s86":"QC-07","prop_n75":852,"field_m56":"https://data.com/data"} | wrong_type | {
"type": "object",
"properties": {
"col_s86": {
"type": "string"
},
"prop_n75": {
"type": "integer"
},
"field_m56": {
"type": "string",
"format": "uri"
}
},
"required": [
"prop_n75"
]
} | {"col_s86": "QC-07", "prop_n75": "\"852\"", "field_m56": "https://data.com/data"} | Field 'prop_n75' must be integer, got string | {"col_s86":"QC-07","prop_n75":852,"field_m56":"https://data.com/data"} |
TASK repair_structured_output
SPEC
FIELD amount TYPE null REQUIRED yes
FIELD branch TYPE string VALUES low|medium|high|critical REQUIRED yes
FIELD dissolved_oxygen TYPE boolean REQUIRED no
FIELD annotation[] TYPE integer REQUIRED yes
BROKEN_OUTPUT
{amount:null,branch:"medium",dissolved_oxygen:false,annotation:[751,95... | {"amount":null,"branch":"medium","dissolved_oxygen":false,"annotation":[751,955,566,888]} | unquoted_keys | {
"type": "object",
"properties": {
"amount": {
"type": "null"
},
"branch": {
"type": "string",
"enum": [
"low",
"medium",
"high",
"critical"
]
},
"dissolved_oxygen": {
"type": "boolean"
},
"annotation": {
"type": "array... | {amount:null,branch:"medium",dissolved_oxygen:false,annotation:[751,955,566,888]} | Expecting property name enclosed in double quotes | {"amount":null,"branch":"medium","dissolved_oxygen":false,"annotation":[751,955,566,888]} |
TASK repair_structured_output
SPEC
FIELD id TYPE string VALUES small|medium|large|xl REQUIRED yes
FIELD updated_at TYPE integer REQUIRED no
FIELD nickname TYPE string VALUES red|blue|green|black|white REQUIRED no
FIELD allele.hazmat_code TYPE integer REQUIRED yes
FIELD allele.commit_hash TYPE string_uri REQUIRED no
FI... | {"id":"xl","updated_at":972,"nickname":"black","allele":{"hazmat_code":417,"commit_hash":"https://data.com/v1","maturity_date":false,"total":"Tokyo","username":691,"country":589,"loan_amount":"bar"},"count":{"torque_output":{"dissolved_oxygen":"info@domain.org","published":543,"lab_result":423,"maturity_date":"approved... | tool_call_python_syntax | {
"type": "object",
"properties": {
"id": {
"type": "string",
"enum": [
"small",
"medium",
"large",
"xl"
]
},
"updated_at": {
"type": "integer"
},
"nickname": {
"type": "string",
"enum": [
"red",
"blue",
... | annotate_mutation(id='xl', updated_at=972, nickname='black', allele={'hazmat_code': 417, 'commit_hash': 'https://data.com/v1', 'maturity_date': False, 'total': 'Tokyo', 'username': 691, 'country': 589, 'loan_amount': 'bar'}, count={'torque_output': {'dissolved_oxygen': 'info@domain.org', 'published': 543, 'lab_result':... | Tool call uses Python syntax instead of JSON | {"id":"xl","updated_at":972,"nickname":"black","allele":{"hazmat_code":417,"commit_hash":"https://data.com/v1","maturity_date":false,"total":"Tokyo","username":691,"country":589,"loan_amount":"bar"},"count":{"torque_output":{"dissolved_oxygen":"info@domain.org","published":543,"lab_result":423,"maturity_date":"approved... |
TASK repair_structured_output
SPEC
FIELD param_v06 TYPE integer REQUIRED yes
FIELD key_a47 TYPE integer REQUIRED yes
FIELD key_f60 TYPE string REQUIRED no
FIELD val_l85 TYPE string VALUES option_a|option_b|option_c|option_d REQUIRED yes
FIELD field_c19 TYPE string_date-time REQUIRED yes
FIELD key_k57 TYPE string REQUI... | {"param_v06":618,"key_a47":6,"key_f60":"baz","val_l85":"option_d","field_c19":"2025-06-08T07:56:00Z"} | invalid_enum | {
"type": "object",
"properties": {
"param_v06": {
"type": "integer"
},
"key_a47": {
"type": "integer"
},
"key_f60": {
"type": "string"
},
"val_l85": {
"type": "string",
"enum": [
"option_a",
"option_b",
"option_c",
"option_d"... | {"param_v06": 618, "key_a47": 6, "key_f60": "baz", "val_l85": "invalid_value_480", "field_c19": "2025-06-08T07:56:00Z"} | Field 'val_l85' has invalid enum value 'invalid_value_480', expected one of ['option_a', 'option_b', 'option_c', 'option_d'] | {"param_v06":618,"key_a47":6,"key_f60":"baz","val_l85":"option_d","field_c19":"2025-06-08T07:56:00Z"} |
TASK repair_structured_output
SPEC
FIELD barcode TYPE boolean REQUIRED no
FIELD temp_celsius TYPE string REQUIRED no
FIELD visible.current_draw TYPE string VALUES USD|EUR|GBP|BRL|JPY REQUIRED no
FIELD visible.temp_celsius TYPE string_date-time REQUIRED yes
FIELD visible.feedback TYPE number REQUIRED no
BROKEN_OUTPUT
... | {"barcode":false,"visible":{"current_draw":"JPY","temp_celsius":"2025-02-06T01:14:00Z","feedback":298.13}} | tool_call_bad_format | {
"type": "object",
"properties": {
"barcode": {
"type": "boolean"
},
"temp_celsius": {
"type": "string"
},
"visible": {
"type": "object",
"properties": {
"current_draw": {
"type": "string",
"enum": [
"USD",
"EUR",
... | <functioncall> generate_report
{barcode: false, visible: {current_draw: "JPY", temp_celsius: "2025-02-06T01:14:00Z", feedback: 298.13}} | Tool call has malformed arguments — unquoted keys in function parameters | {"barcode":false,"visible":{"current_draw":"JPY","temp_celsius":"2025-02-06T01:14:00Z","feedback":298.13}} |
TASK repair_structured_output
SPEC
FIELD val_u81 TYPE string VALUES reliable|unstable|intermittent REQUIRED no
FIELD dim_b23 TYPE string VALUES level_1|level_2|level_3 REQUIRED no
FIELD dim_n11 TYPE string VALUES single|married|divorced REQUIRED yes
FIELD attr_q14 TYPE string VALUES level_1|level_2|level_3|level_4|lev... | {"val_u81":"reliable","dim_b23":"level_2","dim_n11":"divorced","attr_q14":"level_5","param_v15":true,"key_o32":"option_d","dim_c40":776.19} | extra_field | {
"type": "object",
"properties": {
"val_u81": {
"type": "string",
"enum": [
"reliable",
"unstable",
"intermittent"
]
},
"dim_b23": {
"type": "string",
"enum": [
"level_1",
"level_2",
"level_3"
]
},
"dim_n11": {
... | {"val_u81": "reliable", "dim_b23": "level_2", "dim_n11": "divorced", "attr_q14": "level_5", "param_v15": true, "key_o32": "option_d", "dim_c40": 776.19, "extra_value_2091": "unexpected"} | Unknown field 'extra_value_2091' not defined in schema | {"val_u81":"reliable","dim_b23":"level_2","dim_n11":"divorced","attr_q14":"level_5","param_v15":true,"key_o32":"option_d","dim_c40":776.19} |
TASK repair_structured_output
SPEC
FIELD prop_h19 TYPE string VALUES open|in_progress|resolved|closed REQUIRED yes
FIELD key_o94 TYPE string VALUES red|blue|green|black|white REQUIRED yes
FIELD prop_t77 TYPE string VALUES reliable|unstable|intermittent REQUIRED yes
BROKEN_OUTPUT
delete_item(prop_h19='in_progress', ke... | {"prop_h19":"in_progress","key_o94":"green","prop_t77":"reliable"} | tool_call_python_syntax | {
"type": "object",
"properties": {
"prop_h19": {
"type": "string",
"enum": [
"open",
"in_progress",
"resolved",
"closed"
]
},
"key_o94": {
"type": "string",
"enum": [
"red",
"blue",
"green",
"black",
"... | delete_item(prop_h19='in_progress', key_o94='green', prop_t77='reliable') | Tool call uses Python syntax instead of JSON | {"prop_h19":"in_progress","key_o94":"green","prop_t77":"reliable"} |
TASK repair_structured_output
SPEC
FIELD dosage TYPE string_email REQUIRED yes
FIELD velocity TYPE string VALUES cat_a|cat_b|cat_c|cat_d|cat_e REQUIRED yes
FIELD compound[].timezone TYPE boolean REQUIRED yes
FIELD compound[].enabled TYPE integer REQUIRED no
FIELD compound[].height TYPE string REQUIRED yes
FIELD compou... | {"dosage":"test@test.io","velocity":"cat_d","compound":[{"timezone":false,"enabled":769,"height":"example","paragraph":"quux"},{"timezone":false,"enabled":467,"height":"chr1","paragraph":"test@example.com"},{"timezone":true,"height":"2023-12-25","paragraph":"approved"},{"timezone":true,"enabled":472,"height":"Diana","p... | invalid_enum | {
"type": "object",
"properties": {
"dosage": {
"type": "string",
"format": "email"
},
"velocity": {
"type": "string",
"enum": [
"cat_a",
"cat_b",
"cat_c",
"cat_d",
"cat_e"
]
},
"compound": {
"type": "array",
"item... | {"dosage": "test@test.io", "velocity": "invalid_option_345", "compound": [{"timezone": false, "enabled": 769, "height": "example", "paragraph": "quux"}, {"timezone": false, "enabled": 467, "height": "chr1", "paragraph": "test@example.com"}, {"timezone": true, "height": "2023-12-25", "paragraph": "approved"}, {"timezone... | Field 'velocity' has invalid enum value 'invalid_option_345', expected one of ['cat_a', 'cat_b', 'cat_c', 'cat_d', 'cat_e'] | {"dosage":"test@test.io","velocity":"cat_d","compound":[{"timezone":false,"enabled":769,"height":"example","paragraph":"quux"},{"timezone":false,"enabled":467,"height":"chr1","paragraph":"test@example.com"},{"timezone":true,"height":"2023-12-25","paragraph":"approved"},{"timezone":true,"enabled":472,"height":"Diana","p... |
TASK repair_structured_output
SPEC
FIELD language.description TYPE string_email REQUIRED yes
FIELD language.department TYPE boolean REQUIRED no
FIELD language.created_at TYPE string VALUES email|phone|sms|push REQUIRED no
FIELD language.terminal_id TYPE integer REQUIRED yes
FIELD language.brake_pressure TYPE string RE... | {"language":{"description":"test@domain.org","department":false,"created_at":"phone","terminal_id":293,"brake_pressure":"Bob"},"enabled":"Alice","website":false,"wavelength":290} | wrong_type | {
"type": "object",
"properties": {
"language": {
"type": "object",
"properties": {
"description": {
"type": "string",
"format": "email"
},
"department": {
"type": "boolean"
},
"created_at": {
"type": "string",
... | {"language": {"description": "test@domain.org", "department": false, "created_at": "phone", "terminal_id": 293, "brake_pressure": "Bob"}, "enabled": "Alice", "website": false, "wavelength": "\"290\""} | Field 'wavelength' must be integer, got string | {"language":{"description":"test@domain.org","department":false,"created_at":"phone","terminal_id":293,"brake_pressure":"Bob"},"enabled":"Alice","website":false,"wavelength":290} |
TASK repair_structured_output
SPEC
FIELD field_l72 TYPE string REQUIRED yes
FIELD attr_v11 TYPE boolean REQUIRED no
FIELD attr_n99 TYPE string_date-time REQUIRED no
FIELD field_d64 TYPE string_uri REQUIRED no
FIELD attr_u32 TYPE integer REQUIRED no
FIELD dim_y55 TYPE string VALUES homozygous|heterozygous|hemizygous RE... | {"field_l72":"quux","field_d64":"https://example.org/api","dim_y55":"homozygous"} | partial_structure | {
"type": "object",
"properties": {
"field_l72": {
"type": "string"
},
"attr_v11": {
"type": "boolean"
},
"attr_n99": {
"type": "string",
"format": "date-time"
},
"field_d64": {
"type": "string",
"format": "uri"
},
"attr_u32": {
"type": "... | Based on the data, dim_y55 is homozygous. {"field_l72":"quux","field_d64":"https://example.org/api","dim_y55":"homozygous"} | Output mixes natural language with JSON | {"field_l72":"quux","field_d64":"https://example.org/api","dim_y55":"homozygous"} |
TASK repair_structured_output
SPEC
FIELD score TYPE boolean REQUIRED no
FIELD country TYPE string REQUIRED yes
FIELD email TYPE integer REQUIRED no
FIELD balance TYPE string REQUIRED no
FIELD deploy_target TYPE string VALUES operational|degraded|offline|maintenance REQUIRED no
FIELD visible TYPE string VALUES homozygo... | {"score":false,"country":"https://api.example.com/v1","email":778,"balance":"MV-Evergreen-01","deploy_target":"operational","visible":"hemizygous","credit_score":352.49} | tool_call_wrong_param | {
"type": "object",
"properties": {
"score": {
"type": "boolean"
},
"country": {
"type": "string"
},
"email": {
"type": "integer"
},
"balance": {
"type": "string"
},
"deploy_target": {
"type": "string",
"enum": [
"operational",
... | Tool: check_cargo_manifest
Params: {"country": "https://api.example.com/v1", "email": 778, "balance": "MV-Evergreen-01", "deploy_target": "operational", "visible": "hemizygous", "credit_score": 352.49, "score2": false} | Agent used wrong parameter name 'score2' instead of 'score' | {"score":false,"country":"https://api.example.com/v1","email":778,"balance":"MV-Evergreen-01","deploy_target":"operational","visible":"hemizygous","credit_score":352.49} |
TASK repair_structured_output
SPEC
FIELD dosage TYPE string VALUES synonymous|missense|nonsense|frameshift REQUIRED no
FIELD strand TYPE boolean REQUIRED yes
FIELD humidity_pct.duration_ms.balance TYPE string REQUIRED no
FIELD humidity_pct.duration_ms.city TYPE string VALUES pending_review|confirmed|rejected|escalated... | {"dosage":"missense","strand":false,"humidity_pct":{"duration_ms":{"balance":"https://example.com","city":"pending_review","manifest_ref":"quux"},"options":555,"decay_rate":true,"age":{"amplitude":760.89,"loan_amount":570,"price":134.53,"enabled":true,"category":286,"index":false}}} | missing_brace | {
"type": "object",
"properties": {
"dosage": {
"type": "string",
"enum": [
"synonymous",
"missense",
"nonsense",
"frameshift"
]
},
"strand": {
"type": "boolean"
},
"humidity_pct": {
"type": "object",
"properties": {
"du... | {"dosage":"missense","strand":false,"humidity_pct":{"duration_ms":"balance":"https://example.com","city":"pending_review","manifest_ref":"quux"},"options":555,"decay_rate":true,"age":{"amplitude":760.89,"loan_amount":570,"price":134.53,"enabled":true,"category":286,"index":false}}} | Missing closing brace | {"dosage":"missense","strand":false,"humidity_pct":{"duration_ms":{"balance":"https://example.com","city":"pending_review","manifest_ref":"quux"},"options":555,"decay_rate":true,"age":{"amplitude":760.89,"loan_amount":570,"price":134.53,"enabled":true,"category":286,"index":false}}} |
TASK repair_structured_output
SPEC
FIELD title TYPE string VALUES draft|published|archived REQUIRED no
FIELD batch_code TYPE string VALUES active|inactive|pending REQUIRED yes
FIELD compound TYPE string VALUES berthed|anchored|underway|moored REQUIRED no
FIELD vessel_name TYPE boolean REQUIRED yes
FIELD enabled TYPE s... | {"title":"draft","batch_code":"inactive","compound":"berthed","vessel_name":false,"enabled":"inactive"} | wrong_type | {
"type": "object",
"properties": {
"title": {
"type": "string",
"enum": [
"draft",
"published",
"archived"
]
},
"batch_code": {
"type": "string",
"enum": [
"active",
"inactive",
"pending"
]
},
"compound": {
... | {"title": "draft", "batch_code": "inactive", "compound": "berthed", "vessel_name": "\"no\"", "enabled": "inactive"} | Field 'vessel_name' must be boolean, got string | {"title":"draft","batch_code":"inactive","compound":"berthed","vessel_name":false,"enabled":"inactive"} |
TASK repair_structured_output
SPEC
FIELD val_t41 TYPE string REQUIRED no
FIELD field_l61 TYPE string REQUIRED no
FIELD key_q10.prop_h28 TYPE integer REQUIRED yes
FIELD key_q10.param_l08 TYPE integer REQUIRED no
FIELD key_q10.param_x89 TYPE boolean REQUIRED no
FIELD key_q10.col_w10 TYPE string REQUIRED no
FIELD key_q10... | {"val_t41":"chrX","field_l61":"New York","key_q10":{"prop_h28":334,"param_l08":492,"param_x89":false,"col_w10":"Hapag-Lloyd-Express"},"attr_q31":{"param_q71":"success","attr_j80":240.84,"attr_c47":"https://example.com/data","dim_p36":false,"dim_a60":940},"key_z23":473.95,"val_c46":529,"dim_d61":"resolved"} | missing_required | {
"type": "object",
"properties": {
"val_t41": {
"type": "string"
},
"field_l61": {
"type": "string"
},
"key_q10": {
"type": "object",
"properties": {
"prop_h28": {
"type": "integer"
},
"param_l08": {
"type": "integer"
}... | {"val_t41": "chrX", "field_l61": "New York", "key_q10": {"prop_h28": 334, "param_l08": 492, "param_x89": false, "col_w10": "Hapag-Lloyd-Express"}, "attr_q31": {"param_q71": "success", "attr_j80": 240.84, "attr_c47": "https://example.com/data", "dim_p36": false, "dim_a60": 940}, "val_c46": 529, "dim_d61": "resolved"} | Required field 'key_z23' is missing | {"val_t41":"chrX","field_l61":"New York","key_q10":{"prop_h28":334,"param_l08":492,"param_x89":false,"col_w10":"Hapag-Lloyd-Express"},"attr_q31":{"param_q71":"success","attr_j80":240.84,"attr_c47":"https://example.com/data","dim_p36":false,"dim_a60":940},"key_z23":473.95,"val_c46":529,"dim_d61":"resolved"} |
TASK repair_structured_output
SPEC
FIELD val_g12 TYPE string_date-time REQUIRED no
FIELD prop_f08 TYPE string VALUES cat_a|cat_b REQUIRED yes
FIELD col_y67 TYPE integer REQUIRED no
FIELD field_p14.prop_s92 TYPE integer REQUIRED yes
FIELD field_p14.val_g24 TYPE integer REQUIRED no
FIELD field_p14.attr_q41 TYPE boolean ... | {"val_g12":"2022-04-07T17:05:00Z","prop_f08":"cat_a","col_y67":346,"field_p14":{"prop_s92":552,"val_g24":611,"attr_q41":true,"dim_i18":[309,797]}} | truncated_array | {
"type": "object",
"properties": {
"val_g12": {
"type": "string",
"format": "date-time"
},
"prop_f08": {
"type": "string",
"enum": [
"cat_a",
"cat_b"
]
},
"col_y67": {
"type": "integer"
},
"field_p14": {
"type": "object",
"... | {"val_g12":"2022-04-07T17:05:00Z","prop_f08":"cat_a","col_y67":346,"field_p14":{"prop_s92":552,"val_g24":611,"attr_q41":true,"dim_i18":[309,797]} | Unexpected end of JSON input — truncated object | {"val_g12":"2022-04-07T17:05:00Z","prop_f08":"cat_a","col_y67":346,"field_p14":{"prop_s92":552,"val_g24":611,"attr_q41":true,"dim_i18":[309,797]}} |
TASK repair_structured_output
SPEC
FIELD phone TYPE string_uri REQUIRED yes
FIELD longitude.first_name TYPE number REQUIRED no
FIELD longitude.phenotype TYPE null REQUIRED no
FIELD longitude.conductivity TYPE string REQUIRED no
FIELD longitude.state TYPE string REQUIRED yes
FIELD longitude.section[] TYPE integer REQUI... | {"phone":"https://data.org/data","longitude":{"first_name":317.21,"conductivity":"baz","state":"2024-06-30","strand":[985.35]},"discount":"chrX","bill_of_lading":"ops@domain.org","voltage":"A short description."} | tool_call_partial_args | {
"type": "object",
"properties": {
"phone": {
"type": "string",
"format": "uri"
},
"longitude": {
"type": "object",
"properties": {
"first_name": {
"type": "number"
},
"phenotype": {
"type": "null"
},
"conductivity": {
... | I need to look up the information first.
Action: create_order
Arguments: {"phone": "https://data.org/data", "longitude": {"first_name": 317.21, "conductivity": "baz", "state": "2024-06-30", "strand": [985.35]}, "discount": "chrX", "bill_of_lading": "ops@domain.org"} | Agent tool call missing required parameter 'voltage' | {"phone":"https://data.org/data","longitude":{"first_name":317.21,"conductivity":"baz","state":"2024-06-30","strand":[985.35]},"discount":"chrX","bill_of_lading":"ops@domain.org","voltage":"A short description."} |
TASK repair_structured_output
SPEC
FIELD prop_b96 TYPE integer REQUIRED no
FIELD param_m50 TYPE string REQUIRED yes
FIELD val_i26 TYPE string_uri REQUIRED no
FIELD attr_s47 TYPE integer REQUIRED yes
FIELD val_k02 TYPE string VALUES open|in_progress|resolved|closed REQUIRED yes
FIELD key_d11 TYPE string VALUES USD|EUR|... | {"prop_b96":861,"param_m50":"sample","val_i26":"https://www.org/api","attr_s47":1,"val_k02":"in_progress","key_d11":"USD"} | missing_brace | {
"type": "object",
"properties": {
"prop_b96": {
"type": "integer"
},
"param_m50": {
"type": "string"
},
"val_i26": {
"type": "string",
"format": "uri"
},
"attr_s47": {
"type": "integer"
},
"val_k02": {
"type": "string",
"enum": [
... | {"prop_b96":861,"param_m50":"sample","val_i26":"https://www.org/api","attr_s47":1,"val_k02":"in_progress","key_d11":"USD" | Missing closing brace | {"prop_b96":861,"param_m50":"sample","val_i26":"https://www.org/api","attr_s47":1,"val_k02":"in_progress","key_d11":"USD"} |
TASK repair_structured_output
SPEC
FIELD website TYPE string REQUIRED no
FIELD freight_class TYPE string REQUIRED yes
FIELD shipping TYPE null REQUIRED yes
FIELD color TYPE integer REQUIRED no
FIELD barcode.loan_amount.quantity TYPE boolean REQUIRED no
FIELD barcode.loan_amount.user_id TYPE boolean REQUIRED yes
FIELD ... | {"freight_class":"Luis","shipping":null,"step":{"insurance_id":null,"sensor_id":"2026-07-06T07:22:00Z","date":641.73,"department":616.11,"format":"black","weight":"single"}} | unquoted_keys | {
"type": "object",
"properties": {
"website": {
"type": "string"
},
"freight_class": {
"type": "string"
},
"shipping": {
"type": "null"
},
"color": {
"type": "integer"
},
"barcode": {
"type": "object",
"properties": {
"loan_amount": {
... | {freight_class:"Luis",shipping:null,step:{insurance_id:null,sensor_id:"2026-07-06T07:22:00Z",date:641.73,department:616.11,format:"black",weight:"single"}} | Expecting property name enclosed in double quotes | {"freight_class":"Luis","shipping":null,"step":{"insurance_id":null,"sensor_id":"2026-07-06T07:22:00Z","date":641.73,"department":616.11,"format":"black","weight":"single"}} |
TASK repair_structured_output
SPEC
FIELD field_r10 TYPE integer REQUIRED no
FIELD prop_n30 TYPE null REQUIRED yes
FIELD param_w99 TYPE integer REQUIRED no
FIELD col_v84 TYPE string REQUIRED yes
FIELD col_t97 TYPE string VALUES free|basic|pro|enterprise REQUIRED yes
BROKEN_OUTPUT
```json
{"field_r10":753,"prop_n30":nu... | {"field_r10":753,"prop_n30":null,"param_w99":522,"col_v84":"user@domain.com","col_t97":"enterprise"} | markdown_fences | {
"type": "object",
"properties": {
"field_r10": {
"type": "integer"
},
"prop_n30": {
"type": "null"
},
"param_w99": {
"type": "integer"
},
"col_v84": {
"type": "string"
},
"col_t97": {
"type": "string",
"enum": [
"free",
"basic... | ```json
{"field_r10":753,"prop_n30":null,"param_w99":522,"col_v84":"user@domain.com","col_t97":"enterprise"}
``` | Output contains markdown code fences | {"field_r10":753,"prop_n30":null,"param_w99":522,"col_v84":"user@domain.com","col_t97":"enterprise"} |
TASK repair_structured_output
SPEC
FIELD updated_at TYPE string VALUES coastal|oceanic|inland|arctic REQUIRED yes
FIELD verified TYPE string VALUES small|medium|large|xl REQUIRED no
FIELD nickname[].category TYPE string REQUIRED yes
FIELD nickname[].active TYPE string VALUES operational|degraded|offline|maintenance RE... | {"updated_at":"inland","verified":"large","nickname":[{"category":"foo","run_id":431},{"category":"pending","active":"offline","run_id":685},{"category":"Smith","active":"offline","run_id":343},{"category":"REV","run_id":630}]} | extra_text_after | {
"type": "object",
"properties": {
"updated_at": {
"type": "string",
"enum": [
"coastal",
"oceanic",
"inland",
"arctic"
]
},
"verified": {
"type": "string",
"enum": [
"small",
"medium",
"large",
"xl"
]
... | {"updated_at":"inland","verified":"large","nickname":[{"category":"foo","run_id":431},{"category":"pending","active":"offline","run_id":685},{"category":"Smith","active":"offline","run_id":343},{"category":"REV","run_id":630}]}
I've ensured all required fields are present. | Output contains non-JSON text after the object | {"updated_at":"inland","verified":"large","nickname":[{"category":"foo","run_id":431},{"category":"pending","active":"offline","run_id":685},{"category":"Smith","active":"offline","run_id":343},{"category":"REV","run_id":630}]} |
TASK repair_structured_output
SPEC
FIELD param_w55 TYPE string VALUES active|inactive|pending REQUIRED yes
FIELD key_t99 TYPE string VALUES new|in_transit|delivered|returned REQUIRED no
FIELD prop_u45 TYPE string VALUES open|in_progress|resolved|closed REQUIRED yes
FIELD col_c73 TYPE string REQUIRED no
FIELD param_u91... | {"param_w55":"pending","key_t99":"delivered","prop_u45":"open","param_u91":"PASS","dim_c64":true,"attr_r36":"Silva"} | extra_field | {
"type": "object",
"properties": {
"param_w55": {
"type": "string",
"enum": [
"active",
"inactive",
"pending"
]
},
"key_t99": {
"type": "string",
"enum": [
"new",
"in_transit",
"delivered",
"returned"
]
},
... | {"param_w55": "pending", "key_t99": "delivered", "prop_u45": "open", "param_u91": "PASS", "dim_c64": true, "attr_r36": "Silva", "extra_field_1392": true} | Unknown field 'extra_field_1392' not defined in schema | {"param_w55":"pending","key_t99":"delivered","prop_u45":"open","param_u91":"PASS","dim_c64":true,"attr_r36":"Silva"} |
TASK repair_structured_output
SPEC
FIELD city TYPE number REQUIRED no
FIELD branch TYPE string VALUES cat_a|cat_b|cat_c|cat_d|cat_e REQUIRED no
FIELD altitude TYPE integer REQUIRED yes
BROKEN_OUTPUT
{"city": 996.18, "branch": "cat_a", "altitude": "\"52\""} | {"city":996.18,"branch":"cat_a","altitude":52} | wrong_type | {
"type": "object",
"properties": {
"city": {
"type": "number"
},
"branch": {
"type": "string",
"enum": [
"cat_a",
"cat_b",
"cat_c",
"cat_d",
"cat_e"
]
},
"altitude": {
"type": "integer"
}
},
"required": [
"altitud... | {"city": 996.18, "branch": "cat_a", "altitude": "\"52\""} | Field 'altitude' must be integer, got string | {"city":996.18,"branch":"cat_a","altitude":52} |
TASK repair_structured_output
SPEC
FIELD prop_d94 TYPE number REQUIRED no
FIELD key_c87 TYPE integer REQUIRED no
FIELD col_r24 TYPE string_email REQUIRED yes
FIELD param_t36 TYPE string REQUIRED yes
FIELD key_q20.field_t90 TYPE string VALUES cat_a|cat_b|cat_c|cat_d REQUIRED yes
FIELD key_q20.dim_v98 TYPE string REQUIR... | {"col_r24":"test@domain.org","param_t36":"approved","val_b54":null,"prop_m90":{"val_x44":"Santos","attr_x47":931,"param_s98":"option_c","dim_t10":false,"field_n77":[{"field_t13":"2023-05-20T05:35:00Z","col_f96":"level_2","prop_s85":"John","attr_c97":["Charlie"]}]}} | null_required | {
"type": "object",
"properties": {
"prop_d94": {
"type": "number"
},
"key_c87": {
"type": "integer"
},
"col_r24": {
"type": "string",
"format": "email"
},
"param_t36": {
"type": "string"
},
"key_q20": {
"type": "object",
"properties": {
... | {"col_r24": "test@domain.org", "param_t36": null, "val_b54": null, "prop_m90": {"val_x44": "Santos", "attr_x47": 931, "param_s98": "option_c", "dim_t10": false, "field_n77": [{"field_t13": "2023-05-20T05:35:00Z", "col_f96": "level_2", "prop_s85": "John", "attr_c97": ["Charlie"]}]}} | Required field 'param_t36' is null | {"col_r24":"test@domain.org","param_t36":"approved","val_b54":null,"prop_m90":{"val_x44":"Santos","attr_x47":931,"param_s98":"option_c","dim_t10":false,"field_n77":[{"field_t13":"2023-05-20T05:35:00Z","col_f96":"level_2","prop_s85":"John","attr_c97":["Charlie"]}]}} |
TASK repair_structured_output
SPEC
FIELD timezone TYPE boolean REQUIRED no
FIELD subject TYPE integer REQUIRED no
FIELD procedure_code TYPE string REQUIRED yes
FIELD published[] TYPE integer REQUIRED no
BROKEN_OUTPUT
{"timezone": "false", "subject": 408, "procedure_code": "example"} | {"timezone":true,"subject":408,"procedure_code":"example"} | boolean_as_string | {
"type": "object",
"properties": {
"timezone": {
"type": "boolean"
},
"subject": {
"type": "integer"
},
"procedure_code": {
"type": "string"
},
"published": {
"type": "array",
"items": {
"type": "integer"
}
}
},
"required": [
"proc... | {"timezone": "false", "subject": 408, "procedure_code": "example"} | Field 'timezone' must be boolean, got string | {"timezone":true,"subject":408,"procedure_code":"example"} |
TASK repair_structured_output
SPEC
FIELD attr_l92 TYPE string VALUES reliable|unstable|intermittent REQUIRED yes
FIELD col_v96 TYPE string VALUES draft|published|archived REQUIRED no
FIELD val_l41 TYPE string VALUES email|phone|sms|push REQUIRED no
FIELD field_i06[] TYPE integer REQUIRED no
FIELD dim_a15[].field_j09 T... | {"attr_l92":"intermittent","col_v96":"published","dim_a15":[{"field_j09":"2024-06-18T04:32:00Z","param_c92":"delivered","attr_l17":"basic","col_o37":"https://example.com","val_n52":"approved"}]} | tool_call_wrong_param | {
"type": "object",
"properties": {
"attr_l92": {
"type": "string",
"enum": [
"reliable",
"unstable",
"intermittent"
]
},
"col_v96": {
"type": "string",
"enum": [
"draft",
"published",
"archived"
]
},
"val_l41": ... | Tool: send_email
Params: {"col_v96": "published", "dim_a15": [{"field_j09": "2024-06-18T04:32:00Z", "param_c92": "delivered", "attr_l17": "basic", "col_o37": "https://example.com", "val_n52": "approved"}], "attr_l92_name": "intermittent"} | Agent used wrong parameter name 'attr_l92_name' instead of 'attr_l92' | {"attr_l92":"intermittent","col_v96":"published","dim_a15":[{"field_j09":"2024-06-18T04:32:00Z","param_c92":"delivered","attr_l17":"basic","col_o37":"https://example.com","val_n52":"approved"}]} |
TASK repair_structured_output
SPEC
FIELD length TYPE string VALUES red|blue|green|black|white REQUIRED no
FIELD wavelength TYPE string VALUES cat_a|cat_b|cat_c REQUIRED yes
FIELD shipper_ref TYPE string REQUIRED no
FIELD date TYPE integer REQUIRED no
FIELD sensor_id TYPE boolean REQUIRED no
FIELD department TYPE integ... | {"length":"green","wavelength":"cat_b","shipper_ref":"Johnson","department":495,"shift_code":null,"phone":"option_e"} | trailing_comma | {
"type": "object",
"properties": {
"length": {
"type": "string",
"enum": [
"red",
"blue",
"green",
"black",
"white"
]
},
"wavelength": {
"type": "string",
"enum": [
"cat_a",
"cat_b",
"cat_c"
]
},
... | {"length":"green","wavelength":"cat_b","shipper_ref":"Johnson","department":495,"shift_code":null,"phone":"option_e",} | Unexpected trailing comma | {"length":"green","wavelength":"cat_b","shipper_ref":"Johnson","department":495,"shift_code":null,"phone":"option_e"} |
TASK repair_structured_output
SPEC
FIELD aligned_pct TYPE string VALUES admin|editor|viewer REQUIRED yes
FIELD height TYPE string VALUES coastal|oceanic|inland|arctic REQUIRED no
FIELD terminal_id TYPE string VALUES active|inactive|pending REQUIRED no
FIELD latitude TYPE string REQUIRED no
FIELD state TYPE integer REQ... | {"aligned_pct":"viewer","height":"coastal","terminal_id":"inactive","latitude":"John","state":354,"brake_pressure":"chrX"} | agent_chain | {
"type": "object",
"properties": {
"aligned_pct": {
"type": "string",
"enum": [
"admin",
"editor",
"viewer"
]
},
"height": {
"type": "string",
"enum": [
"coastal",
"oceanic",
"inland",
"arctic"
]
},
"ter... | Let me check the system.
Action: verify_hazmat_compliance
Result: {"aligned_pct": "viewer", "height": "coastal", "terminal_id": "inactive", "state": 354, "brake_pressure": "chrX"}
I'll query our database.
Action: align_reads
Result: | Agent multi-step chain with truncated tool output | {"aligned_pct":"viewer","height":"coastal","terminal_id":"inactive","latitude":"John","state":354,"brake_pressure":"chrX"} |
TASK repair_structured_output
SPEC
FIELD features TYPE string VALUES single|married|divorced REQUIRED yes
FIELD hazmat_code TYPE boolean REQUIRED yes
FIELD status_code TYPE string_uri REQUIRED yes
FIELD maturity_date.velocity TYPE string REQUIRED yes
FIELD maturity_date.published TYPE string_date-time REQUIRED no
FIEL... | {"features":"single","hazmat_code":true,"status_code":"https://api.io/v1","maturity_date":{"velocity":"user@domain.com","published":"2022-07-03T04:19:00Z","latitude":{"fleet_number":"2021-09-07T18:39:00Z","amplitude":"GRCh38","torque_output":46},"bed_number":"https://data.com/v1"}} | extra_field | {
"type": "object",
"properties": {
"features": {
"type": "string",
"enum": [
"single",
"married",
"divorced"
]
},
"hazmat_code": {
"type": "boolean"
},
"status_code": {
"type": "string",
"format": "uri"
},
"maturity_date": {
... | {"features": "single", "hazmat_code": true, "status_code": "https://api.io/v1", "maturity_date": {"velocity": "user@domain.com", "published": "2022-07-03T04:19:00Z", "latitude": {"fleet_number": "2021-09-07T18:39:00Z", "amplitude": "GRCh38", "torque_output": 46}, "bed_number": "https://data.com/v1"}, "extra_field_1551"... | Unknown field 'extra_field_1551' not defined in schema | {"features":"single","hazmat_code":true,"status_code":"https://api.io/v1","maturity_date":{"velocity":"user@domain.com","published":"2022-07-03T04:19:00Z","latitude":{"fleet_number":"2021-09-07T18:39:00Z","amplitude":"GRCh38","torque_output":46},"bed_number":"https://data.com/v1"}} |
TASK repair_structured_output
SPEC
FIELD prop_z56.key_x96 TYPE integer REQUIRED yes
FIELD prop_z56.prop_e48 TYPE number REQUIRED no
FIELD prop_z56.field_n29.key_m56 TYPE string REQUIRED no
FIELD prop_z56.field_n29.param_y23 TYPE string REQUIRED no
FIELD prop_z56.field_n29.col_w65 TYPE number REQUIRED no
FIELD prop_z56... | {"prop_z56":{"key_x96":198,"prop_e48":71.56,"field_n29":{"key_m56":"John","param_y23":"Maria","attr_n13":"2026-07-26T14:00:00Z","dim_a18":"Johnson","val_t30":"Diana","prop_n47":368,"param_c86":300}},"prop_s89":452,"field_u28":"Paris","dim_m23":{"attr_a96":null,"col_g92":{"field_r51":"level_2","val_y19":"option_a","dim_... | tool_call_wrong_param | {
"type": "object",
"properties": {
"prop_z56": {
"type": "object",
"properties": {
"key_x96": {
"type": "integer"
},
"prop_e48": {
"type": "number"
},
"field_n29": {
"type": "object",
"properties": {
"key_m5... | Tool: check_cargo_manifest
Params: {"prop_z56": {"key_x96": 198, "prop_e48": 71.56, "field_n29": {"key_m56": "John", "param_y23": "Maria", "attr_n13": "2026-07-26T14:00:00Z", "dim_a18": "Johnson", "val_t30": "Diana", "prop_n47": 368, "param_c86": 300}}, "prop_s89": 452, "dim_m23": {"attr_a96": null, "col_g92": {"field_... | Agent used wrong parameter name 'field_u28_name' instead of 'field_u28' | {"prop_z56":{"key_x96":198,"prop_e48":71.56,"field_n29":{"key_m56":"John","param_y23":"Maria","attr_n13":"2026-07-26T14:00:00Z","dim_a18":"Johnson","val_t30":"Diana","prop_n47":368,"param_c86":300}},"prop_s89":452,"field_u28":"Paris","dim_m23":{"attr_a96":null,"col_g92":{"field_r51":"level_2","val_y19":"option_a","dim_... |
TASK repair_structured_output
SPEC
FIELD dim_z96.dim_o62 TYPE string VALUES mode_a|mode_b|mode_c REQUIRED no
FIELD dim_z96.prop_z17 TYPE string VALUES synonymous|missense|nonsense|frameshift REQUIRED no
FIELD dim_z96.val_v77 TYPE string VALUES new|in_transit|delivered|returned REQUIRED no
FIELD dim_z96.prop_f60 TYPE b... | {"dim_z96":{"dim_o62":"mode_a","prop_z17":"synonymous","val_v77":"returned","prop_f60":true,"key_e04":null},"val_c27":{"param_k27":"info","dim_n78":"PASS","val_j13":false,"field_n37":{"key_d00":"test@example.com","prop_x70":"Tokyo","col_f30":null}},"prop_f56":"2025-08-23T06:40:00Z","attr_j36":"2024-06-30","param_u05":9... | agent_chain | {
"type": "object",
"properties": {
"dim_z96": {
"type": "object",
"properties": {
"dim_o62": {
"type": "string",
"enum": [
"mode_a",
"mode_b",
"mode_c"
]
},
"prop_z17": {
"type": "string",
... | Let me check the system.
Action: verify_hazmat_compliance
Result: {"dim_z96": {"dim_o62": "mode_a", "prop_z17": "synonymous", "val_v77": "returned", "prop_f60": true, "key_e04": null}, "val_c27": {"param_k27": "info", "dim_n78": "PASS", "val_j13": false, "field_n37": {"key_d00": "test@example.com", "prop_x70": "Tokyo",... | Agent multi-step chain with truncated tool output | {"dim_z96":{"dim_o62":"mode_a","prop_z17":"synonymous","val_v77":"returned","prop_f60":true,"key_e04":null},"val_c27":{"param_k27":"info","dim_n78":"PASS","val_j13":false,"field_n37":{"key_d00":"test@example.com","prop_x70":"Tokyo","col_f30":null}},"prop_f56":"2025-08-23T06:40:00Z","attr_j36":"2024-06-30","param_u05":9... |
TASK repair_structured_output
SPEC
FIELD zip_code.throttle_pos TYPE string_email REQUIRED yes
FIELD zip_code.title TYPE number REQUIRED yes
FIELD zip_code.verified TYPE number REQUIRED yes
FIELD zip_code.product_id TYPE string VALUES email|phone|sms|push REQUIRED no
FIELD zip_code.order_id TYPE string VALUES admin|edi... | {"zip_code":{"throttle_pos":"info@example.com","title":782.55,"verified":136.54,"product_id":"push","order_id":"viewer","strand":808.92,"paragraph":"intermittent","humidity_pct":{"company":"2026-11-28T09:34:00Z","tile":"hello","compound":true,"annotation":"Hapag-Lloyd-Express","height":"high","run_id":"completed","full... | trailing_comma | {
"type": "object",
"properties": {
"zip_code": {
"type": "object",
"properties": {
"throttle_pos": {
"type": "string",
"format": "email"
},
"title": {
"type": "number"
},
"verified": {
"type": "number"
},
... | {"zip_code":{"throttle_pos":"info@example.com","title":782.55,"verified":136.54,"product_id":"push","order_id":"viewer","strand":808.92,"paragraph":"intermittent","humidity_pct":{"company":"2026-11-28T09:34:00Z","tile":"hello","compound":true,"annotation":"Hapag-Lloyd-Express","height":"high","run_id":"completed","full... | Unexpected trailing comma | {"zip_code":{"throttle_pos":"info@example.com","title":782.55,"verified":136.54,"product_id":"push","order_id":"viewer","strand":808.92,"paragraph":"intermittent","humidity_pct":{"company":"2026-11-28T09:34:00Z","tile":"hello","compound":true,"annotation":"Hapag-Lloyd-Express","height":"high","run_id":"completed","full... |
TASK repair_structured_output
SPEC
FIELD date TYPE integer REQUIRED no
FIELD quality_score TYPE string VALUES option_a|option_b|option_c REQUIRED no
FIELD bearing TYPE integer REQUIRED no
FIELD status_code TYPE string REQUIRED yes
FIELD fleet_number.strand TYPE boolean REQUIRED no
FIELD fleet_number.procedure_code TYP... | {"date":715,"bearing":318,"status_code":"baz","fleet_number":{"features":{"current_draw":"divorced","order_id":false,"interest_rate":728.58,"length":"https://www.com/v1"}},"tile":186.68} | extra_text_before | {
"type": "object",
"properties": {
"date": {
"type": "integer"
},
"quality_score": {
"type": "string",
"enum": [
"option_a",
"option_b",
"option_c"
]
},
"bearing": {
"type": "integer"
},
"status_code": {
"type": "string"
},... | Here is the JSON you requested:
{"date":715,"bearing":318,"status_code":"baz","fleet_number":{"features":{"current_draw":"divorced","order_id":false,"interest_rate":728.58,"length":"https://www.com/v1"}},"tile":186.68} | Output contains non-JSON text before the object | {"date":715,"bearing":318,"status_code":"baz","fleet_number":{"features":{"current_draw":"divorced","order_id":false,"interest_rate":728.58,"length":"https://www.com/v1"}},"tile":186.68} |
TASK repair_structured_output
SPEC
FIELD key_h75 TYPE string VALUES pending_review|confirmed|rejected|escalated REQUIRED no
FIELD prop_q03 TYPE string VALUES cat_a|cat_b|cat_c|cat_d|cat_e|cat_f REQUIRED yes
FIELD col_r91 TYPE string VALUES type_a|type_b|type_c|type_d|type_e|type_f REQUIRED no
FIELD field_q57 TYPE numb... | {"key_h75":"confirmed","prop_q03":"cat_d","col_r91":"type_f","field_q57":421.28,"dim_n95":786,"param_b17":"degraded"} | markdown_explanation | {
"type": "object",
"properties": {
"key_h75": {
"type": "string",
"enum": [
"pending_review",
"confirmed",
"rejected",
"escalated"
]
},
"prop_q03": {
"type": "string",
"enum": [
"cat_a",
"cat_b",
"cat_c",
"cat... | Pipeline result:
```json
{"key_h75":"confirmed","prop_q03":"cat_d","col_r91":"type_f","field_q57":421.28,"dim_n95":786,"param_b17":"degraded"}
```
Analysis finished. | Output contains markdown and explanatory text around JSON | {"key_h75":"confirmed","prop_q03":"cat_d","col_r91":"type_f","field_q57":421.28,"dim_n95":786,"param_b17":"degraded"} |
TASK repair_structured_output
SPEC
FIELD attr_x04 TYPE integer REQUIRED yes
FIELD dim_j12 TYPE null REQUIRED no
FIELD col_e81 TYPE number REQUIRED no
FIELD param_a37 TYPE string VALUES homozygous|heterozygous|hemizygous REQUIRED yes
FIELD prop_v41 TYPE integer REQUIRED yes
BROKEN_OUTPUT
<functioncall> transfer_call
{... | {"attr_x04":298,"dim_j12":null,"col_e81":983.77,"param_a37":"heterozygous","prop_v41":890} | tool_call_bad_format | {
"type": "object",
"properties": {
"attr_x04": {
"type": "integer"
},
"dim_j12": {
"type": "null"
},
"col_e81": {
"type": "number"
},
"param_a37": {
"type": "string",
"enum": [
"homozygous",
"heterozygous",
"hemizygous"
]
}... | <functioncall> transfer_call
{attr_x04: 298, dim_j12: null, col_e81: 983.77, param_a37: "heterozygous", prop_v41: 890} | Tool call has malformed arguments — unquoted keys in function parameters | {"attr_x04":298,"dim_j12":null,"col_e81":983.77,"param_a37":"heterozygous","prop_v41":890} |
TASK repair_structured_output
SPEC
FIELD param_t53.field_r67 TYPE string REQUIRED yes
FIELD param_t53.attr_h42 TYPE string VALUES success|error|warning|info REQUIRED no
FIELD param_t53.dim_w62 TYPE string_email REQUIRED no
FIELD param_t53.col_z75[] TYPE null REQUIRED yes
FIELD param_f65 TYPE string REQUIRED yes
FIELD ... | {"param_t53":{"field_r67":"Charlie","col_z75":[null,null,null]},"param_f65":"chr1","attr_o88":333,"prop_h68":142,"key_f82":null,"field_x63":"Smith"} | partial_structure | {
"type": "object",
"properties": {
"param_t53": {
"type": "object",
"properties": {
"field_r67": {
"type": "string"
},
"attr_h42": {
"type": "string",
"enum": [
"success",
"error",
"warning",
"info... | I found that attr_o88 should be 333. {"param_t53":{"field_r67":"Charlie","col_z75":[null,null,null]},"param_f65":"chr1","attr_o88":333,"prop_h68":142,"key_f82":null,"field_x63":"Smith"} | Output mixes natural language with JSON | {"param_t53":{"field_r67":"Charlie","col_z75":[null,null,null]},"param_f65":"chr1","attr_o88":333,"prop_h68":142,"key_f82":null,"field_x63":"Smith"} |
TASK repair_structured_output
SPEC
FIELD procedure_code TYPE number REQUIRED yes
FIELD decay_rate TYPE string VALUES cat_a|cat_b|cat_c|cat_d|cat_e REQUIRED yes
FIELD shipping.branch TYPE string_uri REQUIRED no
FIELD shipping.id TYPE string REQUIRED no
FIELD shipping.decay_rate TYPE string_email REQUIRED yes
FIELD ship... | {"procedure_code":946.38,"decay_rate":"cat_a","shipping":{"branch":"https://example.io/api","id":"Sao Paulo","decay_rate":"ops@domain.org","url":true,"amplitude":"New York","barcode":660,"country":{"paragraph":"cat_d","vital_sign":679,"organism":"admin@domain.org","items":"large"}},"section":"https://api.org/data"} | agent_chain | {
"type": "object",
"properties": {
"procedure_code": {
"type": "number"
},
"decay_rate": {
"type": "string",
"enum": [
"cat_a",
"cat_b",
"cat_c",
"cat_d",
"cat_e"
]
},
"shipping": {
"type": "object",
"properties": {
... | I need to look up the information first.
Action: send_email
Result: {"procedure_code": 946.38, "shipping": {"branch": "https://example.io/api", "id": "Sao Paulo", "decay_rate": "ops@domain.org", "url": true, "amplitude": "New York", "barcode": 660, "country": {"paragraph": "cat_d", "vital_sign": 679, "organism": "admin... | Agent multi-step chain with truncated tool output | {"procedure_code":946.38,"decay_rate":"cat_a","shipping":{"branch":"https://example.io/api","id":"Sao Paulo","decay_rate":"ops@domain.org","url":true,"amplitude":"New York","barcode":660,"country":{"paragraph":"cat_d","vital_sign":679,"organism":"admin@domain.org","items":"large"}},"section":"https://api.org/data"} |
TASK repair_structured_output
SPEC
FIELD prop_l26 TYPE string VALUES operational|degraded|offline|maintenance REQUIRED no
FIELD dim_x34 TYPE integer REQUIRED yes
FIELD col_l31 TYPE integer REQUIRED no
BROKEN_OUTPUT
{"prop_l26":"operational","dim_x34":554 | {"prop_l26":"operational","dim_x34":554} | truncated_array | {
"type": "object",
"properties": {
"prop_l26": {
"type": "string",
"enum": [
"operational",
"degraded",
"offline",
"maintenance"
]
},
"dim_x34": {
"type": "integer"
},
"col_l31": {
"type": "integer"
}
},
"required": [
"di... | {"prop_l26":"operational","dim_x34":554 | Unexpected end of JSON input — truncated object | {"prop_l26":"operational","dim_x34":554} |
TASK repair_structured_output
SPEC
FIELD key_a56 TYPE string VALUES email|phone|sms|push REQUIRED no
FIELD prop_k09 TYPE string VALUES single|married|divorced REQUIRED no
FIELD prop_z24 TYPE null REQUIRED yes
FIELD val_u34 TYPE string_date-time REQUIRED yes
FIELD attr_p71 TYPE boolean REQUIRED no
FIELD val_u17 TYPE nu... | {"prop_k09":"single","prop_z24":null,"val_u34":"2026-09-06T00:19:00Z","attr_p71":false,"val_u17":318.73} | boolean_as_string | {
"type": "object",
"properties": {
"key_a56": {
"type": "string",
"enum": [
"email",
"phone",
"sms",
"push"
]
},
"prop_k09": {
"type": "string",
"enum": [
"single",
"married",
"divorced"
]
},
"prop_z24":... | {"prop_k09": "single", "prop_z24": null, "val_u34": "2026-09-06T00:19:00Z", "attr_p71": "yes", "val_u17": 318.73} | Field 'attr_p71' must be boolean, got string | {"prop_k09":"single","prop_z24":null,"val_u34":"2026-09-06T00:19:00Z","attr_p71":false,"val_u17":318.73} |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.