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 state TYPE null REQUIRED no FIELD loan_amount TYPE string VALUES single|married|divorced REQUIRED yes FIELD conductivity TYPE string VALUES reliable|unstable|intermittent REQUIRED no FIELD due_date TYPE boolean REQUIRED yes BROKEN_OUTPUT <functioncall> filter_variants {state: ...
{"state":null,"loan_amount":"divorced","conductivity":"intermittent","due_date":true}
tool_call_bad_format
{ "type": "object", "properties": { "state": { "type": "null" }, "loan_amount": { "type": "string", "enum": [ "single", "married", "divorced" ] }, "conductivity": { "type": "string", "enum": [ "reliable", "unstable", ...
<functioncall> filter_variants {state: null, loan_amount: "divorced", conductivity: "intermittent", due_date: true}
Tool call has malformed arguments — unquoted keys in function parameters
{"state":null,"loan_amount":"divorced","conductivity":"intermittent","due_date":true}
TASK repair_structured_output SPEC FIELD key_i43 TYPE number REQUIRED no FIELD param_f90 TYPE string REQUIRED yes FIELD dim_n16 TYPE integer REQUIRED yes BROKEN_OUTPUT {"key_i43": 942.66, "dim_n16": 55}
{"key_i43":942.66,"param_f90":"2024-01-15","dim_n16":55}
missing_required
{ "type": "object", "properties": { "key_i43": { "type": "number" }, "param_f90": { "type": "string" }, "dim_n16": { "type": "integer" } }, "required": [ "dim_n16", "param_f90" ] }
{"key_i43": 942.66, "dim_n16": 55}
Required field 'param_f90' is missing
{"key_i43":942.66,"param_f90":"2024-01-15","dim_n16":55}
TASK repair_structured_output SPEC FIELD procedure_code TYPE number REQUIRED yes FIELD credit_score TYPE string_email REQUIRED yes FIELD enabled TYPE string VALUES homozygous|heterozygous|hemizygous REQUIRED yes BROKEN_OUTPUT Let me check the system. Action: get_weather Result: {"procedure_code": 918.32, "enabled": "...
{"procedure_code":918.32,"credit_score":"ops@test.io","enabled":"hemizygous"}
agent_chain
{ "type": "object", "properties": { "procedure_code": { "type": "number" }, "credit_score": { "type": "string", "format": "email" }, "enabled": { "type": "string", "enum": [ "homozygous", "heterozygous", "hemizygous" ] } }, "req...
Let me check the system. Action: get_weather Result: {"procedure_code": 918.32, "enabled": "hemizygous"} Processing the request now. Action: read_sensor_array Result:
Agent multi-step chain with truncated tool output
{"procedure_code":918.32,"credit_score":"ops@test.io","enabled":"hemizygous"}
TASK repair_structured_output SPEC FIELD options TYPE string REQUIRED no FIELD image_url TYPE string VALUES cat_a|cat_b|cat_c|cat_d|cat_e|cat_f REQUIRED yes FIELD width TYPE string_uri REQUIRED yes BROKEN_OUTPUT I need to look up the information first. Action: read_sensor_array Arguments: {"width": "https://data.io/a...
{"image_url":"cat_d","width":"https://data.io/api"}
tool_call_partial_args
{ "type": "object", "properties": { "options": { "type": "string" }, "image_url": { "type": "string", "enum": [ "cat_a", "cat_b", "cat_c", "cat_d", "cat_e", "cat_f" ] }, "width": { "type": "string", "format": "ur...
I need to look up the information first. Action: read_sensor_array Arguments: {"width": "https://data.io/api"}
Agent tool call missing required parameter 'image_url'
{"image_url":"cat_d","width":"https://data.io/api"}
TASK repair_structured_output SPEC FIELD param_y56 TYPE number REQUIRED yes FIELD col_s37 TYPE boolean REQUIRED yes FIELD attr_y61 TYPE boolean REQUIRED yes BROKEN_OUTPUT I need to look up the information first. Action: lookup_customer Result: {"param_y56": 25.53, "col_s37": false} I'll query our database. Action: v...
{"param_y56":25.53,"col_s37":false,"attr_y61":false}
agent_chain
{ "type": "object", "properties": { "param_y56": { "type": "number" }, "col_s37": { "type": "boolean" }, "attr_y61": { "type": "boolean" } }, "required": [ "param_y56", "col_s37", "attr_y61" ] }
I need to look up the information first. Action: lookup_customer Result: {"param_y56": 25.53, "col_s37": false} I'll query our database. Action: verify_hazmat_compliance Result:
Agent multi-step chain with truncated tool output
{"param_y56":25.53,"col_s37":false,"attr_y61":false}
TASK repair_structured_output SPEC FIELD prop_e26 TYPE string REQUIRED no FIELD dim_w63 TYPE integer REQUIRED yes FIELD dim_n65 TYPE string VALUES synonymous|missense|nonsense|frameshift REQUIRED yes FIELD val_p70 TYPE string REQUIRED yes FIELD attr_i98 TYPE null REQUIRED no FIELD attr_a36 TYPE string REQUIRED yes BR...
{"prop_e26":"approved","dim_w63":316,"dim_n65":"synonymous","val_p70":"2024-01-15","attr_a36":"Paris"}
tool_call_python_syntax
{ "type": "object", "properties": { "prop_e26": { "type": "string" }, "dim_w63": { "type": "integer" }, "dim_n65": { "type": "string", "enum": [ "synonymous", "missense", "nonsense", "frameshift" ] }, "val_p70": { "type"...
fetch_lab_result(prop_e26='approved', dim_w63=316, dim_n65='synonymous', val_p70='2024-01-15', attr_a36='Paris')
Tool call uses Python syntax instead of JSON
{"prop_e26":"approved","dim_w63":316,"dim_n65":"synonymous","val_p70":"2024-01-15","attr_a36":"Paris"}
TASK repair_structured_output SPEC FIELD wavelength TYPE string VALUES berthed|anchored|underway|moored REQUIRED no FIELD freight_class TYPE string VALUES cat_a|cat_b REQUIRED no FIELD price TYPE string VALUES type_a|type_b|type_c|type_d REQUIRED no FIELD repository TYPE string_uri REQUIRED no FIELD span_id TYPE integ...
{"wavelength":"underway","freight_class":"cat_a","span_id":799,"procedure_code":"level_4","version":"https://example.com"}
null_required
{ "type": "object", "properties": { "wavelength": { "type": "string", "enum": [ "berthed", "anchored", "underway", "moored" ] }, "freight_class": { "type": "string", "enum": [ "cat_a", "cat_b" ] }, "price": { ...
{"wavelength": "underway", "freight_class": "cat_a", "span_id": 799, "procedure_code": null, "version": "https://example.com"}
Required field 'procedure_code' is null
{"wavelength":"underway","freight_class":"cat_a","span_id":799,"procedure_code":"level_4","version":"https://example.com"}
TASK repair_structured_output SPEC FIELD language TYPE string REQUIRED no FIELD age TYPE string VALUES mode_a|mode_b|mode_c|mode_d|mode_e|mode_f REQUIRED yes FIELD rating TYPE string_uri REQUIRED yes FIELD terminal_id TYPE string REQUIRED no FIELD shipper_ref TYPE string REQUIRED no FIELD updated_at TYPE string_uri RE...
{"age":"mode_e","rating":"https://api.com/v1","terminal_id":"baz","shipper_ref":"2024-06-30","date":"active"}
trailing_comma
{ "type": "object", "properties": { "language": { "type": "string" }, "age": { "type": "string", "enum": [ "mode_a", "mode_b", "mode_c", "mode_d", "mode_e", "mode_f" ] }, "rating": { "type": "string", "format": "...
{"age":"mode_e","rating":"https://api.com/v1","terminal_id":"baz","shipper_ref":"2024-06-30","date":"active",}
Unexpected trailing comma
{"age":"mode_e","rating":"https://api.com/v1","terminal_id":"baz","shipper_ref":"2024-06-30","date":"active"}
TASK repair_structured_output SPEC FIELD repository TYPE string VALUES operational|degraded|offline|maintenance REQUIRED no FIELD company TYPE number REQUIRED yes FIELD credit_score TYPE string_email REQUIRED yes BROKEN_OUTPUT {"repository":"offline","company":785.99,"credit_score":"test@example.com"
{"repository":"offline","company":785.99,"credit_score":"test@example.com"}
truncated_array
{ "type": "object", "properties": { "repository": { "type": "string", "enum": [ "operational", "degraded", "offline", "maintenance" ] }, "company": { "type": "number" }, "credit_score": { "type": "string", "format": "email" ...
{"repository":"offline","company":785.99,"credit_score":"test@example.com"
Unexpected end of JSON input — truncated object
{"repository":"offline","company":785.99,"credit_score":"test@example.com"}
TASK repair_structured_output SPEC FIELD field_b65 TYPE string VALUES USD|EUR|GBP|BRL|JPY REQUIRED yes FIELD dim_e22 TYPE integer REQUIRED yes FIELD param_r68 TYPE number REQUIRED yes BROKEN_OUTPUT {"field_b65": "BRL", "dim_e22": 686, "param_r68": "\"698.46\""}
{"field_b65":"BRL","dim_e22":686,"param_r68":698.46}
wrong_type
{ "type": "object", "properties": { "field_b65": { "type": "string", "enum": [ "USD", "EUR", "GBP", "BRL", "JPY" ] }, "dim_e22": { "type": "integer" }, "param_r68": { "type": "number" } }, "required": [ "param_r68"...
{"field_b65": "BRL", "dim_e22": 686, "param_r68": "\"698.46\""}
Field 'param_r68' must be number, got string
{"field_b65":"BRL","dim_e22":686,"param_r68":698.46}
TASK repair_structured_output SPEC FIELD key_r84 TYPE string VALUES single|married|divorced REQUIRED yes FIELD col_m92 TYPE string VALUES coastal|oceanic|inland|arctic REQUIRED no FIELD field_a49 TYPE string_uri REQUIRED no FIELD field_n43 TYPE number REQUIRED yes FIELD val_e52 TYPE string REQUIRED yes FIELD attr_f13 ...
{"key_r84":"divorced","col_m92":"inland","field_a49":"https://example.org/v1","field_n43":643.95,"val_e52":"GRCh38","attr_f13":"option_a","dim_g80":"sample"}
number_with_unit
{ "type": "object", "properties": { "key_r84": { "type": "string", "enum": [ "single", "married", "divorced" ] }, "col_m92": { "type": "string", "enum": [ "coastal", "oceanic", "inland", "arctic" ] }, "fi...
{"key_r84": "divorced", "col_m92": "inland", "field_a49": "https://example.org/v1", "field_n43": "643.95ms", "val_e52": "GRCh38", "attr_f13": "option_a", "dim_g80": "sample"}
Field 'field_n43' must be number, got string with unit
{"key_r84":"divorced","col_m92":"inland","field_a49":"https://example.org/v1","field_n43":643.95,"val_e52":"GRCh38","attr_f13":"option_a","dim_g80":"sample"}
TASK repair_structured_output SPEC FIELD attr_o89 TYPE string VALUES berthed|anchored|underway|moored REQUIRED no FIELD col_k74 TYPE boolean REQUIRED no FIELD prop_i04 TYPE null REQUIRED no FIELD val_e88 TYPE string REQUIRED yes FIELD col_t25 TYPE string REQUIRED yes BROKEN_OUTPUT {col_k74:true,prop_i04:null,val_e88:...
{"col_k74":true,"prop_i04":null,"val_e88":"Jane","col_t25":"Silva"}
unquoted_keys
{ "type": "object", "properties": { "attr_o89": { "type": "string", "enum": [ "berthed", "anchored", "underway", "moored" ] }, "col_k74": { "type": "boolean" }, "prop_i04": { "type": "null" }, "val_e88": { "type": "strin...
{col_k74:true,prop_i04:null,val_e88:"Jane",col_t25:"Silva"}
Expecting property name enclosed in double quotes
{"col_k74":true,"prop_i04":null,"val_e88":"Jane","col_t25":"Silva"}
TASK repair_structured_output SPEC FIELD field_f37 TYPE null REQUIRED yes FIELD attr_p39 TYPE string VALUES cat_a|cat_b|cat_c REQUIRED yes FIELD prop_q02 TYPE string VALUES red|blue|green|black|white REQUIRED no FIELD col_z42 TYPE integer REQUIRED no FIELD dim_l13 TYPE string_date-time REQUIRED no FIELD val_h09 TYPE s...
{"field_f37":null,"attr_p39":"cat_c","prop_q02":"blue","col_z42":463,"dim_l13":"2021-05-21T11:36:00Z","val_h09":"type_c"}
missing_brace
{ "type": "object", "properties": { "field_f37": { "type": "null" }, "attr_p39": { "type": "string", "enum": [ "cat_a", "cat_b", "cat_c" ] }, "prop_q02": { "type": "string", "enum": [ "red", "blue", "green", ...
"field_f37":null,"attr_p39":"cat_c","prop_q02":"blue","col_z42":463,"dim_l13":"2021-05-21T11:36:00Z","val_h09":"type_c"}
Missing closing brace
{"field_f37":null,"attr_p39":"cat_c","prop_q02":"blue","col_z42":463,"dim_l13":"2021-05-21T11:36:00Z","val_h09":"type_c"}
TASK repair_structured_output SPEC FIELD key_j44 TYPE string REQUIRED yes FIELD val_d04 TYPE null REQUIRED no FIELD key_i34.prop_w35 TYPE integer REQUIRED yes FIELD key_i34.prop_g61 TYPE string VALUES admin|editor|viewer REQUIRED yes FIELD key_i34.field_j43[] TYPE string REQUIRED yes FIELD prop_k60 TYPE number REQUIRE...
{"key_j44":"This is a test value.","val_d04":null,"key_i34":{"prop_w35":212,"prop_g61":"editor","field_j43":["Luis","Maria","RTG-04"]},"prop_k60":427.92,"dim_d42":"example","param_s06":538,"val_m75":27}
tool_call_partial_args
{ "type": "object", "properties": { "key_j44": { "type": "string" }, "val_d04": { "type": "null" }, "key_i34": { "type": "object", "properties": { "prop_w35": { "type": "integer" }, "prop_g61": { "type": "string", "enu...
I need to look up the information first. Action: call_variants Arguments: {"key_j44": "This is a test value.", "val_d04": null, "key_i34": {"prop_w35": 212, "prop_g61": "editor", "field_j43": ["Luis", "Maria", "RTG-04"]}, "prop_k60": 427.92, "dim_d42": "example", "val_m75": 27}
Agent tool call missing required parameter 'param_s06'
{"key_j44":"This is a test value.","val_d04":null,"key_i34":{"prop_w35":212,"prop_g61":"editor","field_j43":["Luis","Maria","RTG-04"]},"prop_k60":427.92,"dim_d42":"example","param_s06":538,"val_m75":27}
TASK repair_structured_output SPEC FIELD fleet_number.subject TYPE integer REQUIRED yes FIELD fleet_number.updated_at TYPE number REQUIRED no FIELD fleet_number.version TYPE number REQUIRED no FIELD fleet_number.type TYPE number REQUIRED yes FIELD fleet_number.verified TYPE boolean REQUIRED yes FIELD fleet_number.comm...
{"fleet_number":{"subject":749,"updated_at":696.37,"type":918.82,"verified":false,"commit_hash":"married"},"message":"Berlin","city":{"duration_ms":"inactive","shipping":null,"phone":"heterozygous","transaction_id":"JPY","priority":"2024-01-15","batch_code":"blue","diagnosis_code":null},"amount":"2020-02-03T22:54:00Z"}
tool_call_python_syntax
{ "type": "object", "properties": { "fleet_number": { "type": "object", "properties": { "subject": { "type": "integer" }, "updated_at": { "type": "number" }, "version": { "type": "number" }, "type": { "ty...
get_inventory(fleet_number={'subject': 749, 'updated_at': 696.37, 'type': 918.82, 'verified': False, 'commit_hash': 'married'}, message='Berlin', city={'duration_ms': 'inactive', 'shipping': None, 'phone': 'heterozygous', 'transaction_id': 'JPY', 'priority': '2024-01-15', 'batch_code': 'blue', 'diagnosis_code': None}, ...
Tool call uses Python syntax instead of JSON
{"fleet_number":{"subject":749,"updated_at":696.37,"type":918.82,"verified":false,"commit_hash":"married"},"message":"Berlin","city":{"duration_ms":"inactive","shipping":null,"phone":"heterozygous","transaction_id":"JPY","priority":"2024-01-15","batch_code":"blue","diagnosis_code":null},"amount":"2020-02-03T22:54:00Z"}
TASK repair_structured_output SPEC FIELD credit_score TYPE null REQUIRED yes FIELD transaction_id.strand TYPE string VALUES level_1|level_2|level_3|level_4 REQUIRED no FIELD transaction_id.enabled TYPE string VALUES cat_a|cat_b REQUIRED yes FIELD transaction_id.duration_ms TYPE string VALUES berthed|anchored|underway|...
{"credit_score":null,"transaction_id":{"strand":"level_2","enabled":"cat_a","duration_ms":"underway","rating":403.39,"dissolved_oxygen":69.05,"end_date":978,"discount":"inactive"},"age":"ops@domain.org","procedure_code":true}
missing_bracket
{ "type": "object", "properties": { "credit_score": { "type": "null" }, "transaction_id": { "type": "object", "properties": { "strand": { "type": "string", "enum": [ "level_1", "level_2", "level_3", "level_4" ...
{"credit_score":null,"transaction_id":{"strand":"level_2","enabled":"cat_a","duration_ms":"underway","rating":403.39,"dissolved_oxygen":69.05,"end_date":978,"discount":"inactive"},"age":"ops@domain.org","procedure_code":true}
Missing closing bracket
{"credit_score":null,"transaction_id":{"strand":"level_2","enabled":"cat_a","duration_ms":"underway","rating":403.39,"dissolved_oxygen":69.05,"end_date":978,"discount":"inactive"},"age":"ops@domain.org","procedure_code":true}
TASK repair_structured_output SPEC FIELD dim_f55 TYPE string VALUES homozygous|heterozygous|hemizygous REQUIRED no FIELD dim_c31 TYPE string VALUES low|medium|high|critical REQUIRED no FIELD key_z33 TYPE string REQUIRED yes FIELD field_m07 TYPE integer REQUIRED no FIELD field_i77 TYPE string VALUES berthed|anchored|un...
{"dim_f55":"heterozygous","dim_c31":"critical","key_z33":"QC-07","field_m07":555,"field_i77":"underway","field_l22":707,"prop_l25":41}
tool_call_bad_format
{ "type": "object", "properties": { "dim_f55": { "type": "string", "enum": [ "homozygous", "heterozygous", "hemizygous" ] }, "dim_c31": { "type": "string", "enum": [ "low", "medium", "high", "critical" ] }, ...
<functioncall> lookup_customer {dim_f55: "heterozygous", dim_c31: "critical", key_z33: "QC-07", field_m07: 555, field_i77: "underway", field_l22: 707, prop_l25: 41}
Tool call has malformed arguments — unquoted keys in function parameters
{"dim_f55":"heterozygous","dim_c31":"critical","key_z33":"QC-07","field_m07":555,"field_i77":"underway","field_l22":707,"prop_l25":41}
TASK repair_structured_output SPEC FIELD nickname TYPE string VALUES success|error|warning|info REQUIRED no FIELD credit_score TYPE string VALUES level_1|level_2|level_3|level_4 REQUIRED no FIELD updated_at TYPE string VALUES operational|degraded|offline|maintenance REQUIRED no FIELD velocity TYPE string_uri REQUIRED ...
{"credit_score":"level_4","quantity":"Paris","amount":"pending","username":843.66}
tool_call_bad_format
{ "type": "object", "properties": { "nickname": { "type": "string", "enum": [ "success", "error", "warning", "info" ] }, "credit_score": { "type": "string", "enum": [ "level_1", "level_2", "level_3", "level_4" ...
<functioncall> get_weather {credit_score: "level_4", quantity: "Paris", amount: "pending", username: 843.66}
Tool call has malformed arguments — unquoted keys in function parameters
{"credit_score":"level_4","quantity":"Paris","amount":"pending","username":843.66}
TASK repair_structured_output SPEC FIELD annotation TYPE string VALUES small|medium|large|xl REQUIRED yes FIELD enabled TYPE integer REQUIRED yes FIELD items.country TYPE null REQUIRED yes FIELD items.updated_at TYPE null REQUIRED yes FIELD items.turbidity.bearing TYPE boolean REQUIRED no FIELD items.turbidity.allele ...
{"annotation":"medium","enabled":764,"items":{"country":null,"updated_at":null,"turbidity":{"bearing":false,"allele":true,"frequency_hz":682.11}}}
partial_structure
{ "type": "object", "properties": { "annotation": { "type": "string", "enum": [ "small", "medium", "large", "xl" ] }, "enabled": { "type": "integer" }, "items": { "type": "object", "properties": { "country": { ...
I found that enabled should be 764. {"annotation":"medium","enabled":764,"items":{"country":null,"updated_at":null,"turbidity":{"bearing":false,"allele":true,"frequency_hz":682.11}}}
Output mixes natural language with JSON
{"annotation":"medium","enabled":764,"items":{"country":null,"updated_at":null,"turbidity":{"bearing":false,"allele":true,"frequency_hz":682.11}}}
TASK repair_structured_output SPEC FIELD user_id TYPE string REQUIRED no FIELD index TYPE string VALUES red|blue|green|black|white REQUIRED yes FIELD hazmat_code TYPE number REQUIRED yes FIELD company TYPE string REQUIRED no FIELD title TYPE string VALUES level_1|level_2|level_3|level_4|level_5 REQUIRED no BROKEN_OUT...
{"user_id":"2024-01-15","index":"white","hazmat_code":275.8,"title":"level_2"}
agent_chain
{ "type": "object", "properties": { "user_id": { "type": "string" }, "index": { "type": "string", "enum": [ "red", "blue", "green", "black", "white" ] }, "hazmat_code": { "type": "number" }, "company": { "type": ...
Let me check the system. Action: update_record Result: {"index": "white", "hazmat_code": 275.8, "title": "level_2"} I'll query our database. Action: call_variants Result:
Agent multi-step chain with truncated tool output
{"user_id":"2024-01-15","index":"white","hazmat_code":275.8,"title":"level_2"}
TASK repair_structured_output SPEC FIELD param_m61 TYPE null REQUIRED yes FIELD val_e79 TYPE string VALUES success|error|warning|info REQUIRED no FIELD col_a22.val_d05 TYPE string VALUES draft|published|archived REQUIRED yes FIELD col_a22.attr_m78 TYPE string VALUES email|phone|sms|push REQUIRED yes FIELD col_a22.prop...
{"param_m61":null,"val_e79":"info","col_a22":{"val_d05":"archived","attr_m78":"email","prop_i54":"in_progress"},"field_c19":{"attr_f26":"Luis","field_q94":327,"val_w56":true,"attr_g57":{"field_n20":409,"param_l81":"FWD","field_t70":"pending"},"attr_t10":"FWD","param_d57":"admin@domain.org"}}
tool_call_partial_args
{ "type": "object", "properties": { "param_m61": { "type": "null" }, "val_e79": { "type": "string", "enum": [ "success", "error", "warning", "info" ] }, "col_a22": { "type": "object", "properties": { "val_d05": { ...
I need to look up the information first. Action: search Arguments: {"param_m61": null, "val_e79": "info", "col_a22": {"val_d05": "archived", "attr_m78": "email", "prop_i54": "in_progress"}}
Agent tool call missing required parameter 'field_c19'
{"param_m61":null,"val_e79":"info","col_a22":{"val_d05":"archived","attr_m78":"email","prop_i54":"in_progress"},"field_c19":{"attr_f26":"Luis","field_q94":327,"val_w56":true,"attr_g57":{"field_n20":409,"param_l81":"FWD","field_t70":"pending"},"attr_t10":"FWD","param_d57":"admin@domain.org"}}
TASK repair_structured_output SPEC FIELD sensor_id TYPE string REQUIRED yes FIELD run_id TYPE number REQUIRED yes FIELD deploy_target TYPE boolean REQUIRED no FIELD temp_celsius TYPE number REQUIRED no FIELD frequency_hz TYPE string REQUIRED no FIELD bearing TYPE string REQUIRED no BROKEN_OUTPUT {"sensor_id": null, "...
{"sensor_id":"sample","run_id":926.5,"deploy_target":false,"temp_celsius":967.01,"frequency_hz":"chrX","bearing":"approved"}
null_required
{ "type": "object", "properties": { "sensor_id": { "type": "string" }, "run_id": { "type": "number" }, "deploy_target": { "type": "boolean" }, "temp_celsius": { "type": "number" }, "frequency_hz": { "type": "string" }, "bearing": { "typ...
{"sensor_id": null, "run_id": 926.5, "deploy_target": false, "temp_celsius": 967.01, "frequency_hz": "chrX", "bearing": "approved"}
Required field 'sensor_id' is null
{"sensor_id":"sample","run_id":926.5,"deploy_target":false,"temp_celsius":967.01,"frequency_hz":"chrX","bearing":"approved"}
TASK repair_structured_output SPEC FIELD phenotype TYPE integer REQUIRED no FIELD organism TYPE number REQUIRED yes FIELD feedback TYPE string_date-time REQUIRED no FIELD run_id.last_name TYPE null REQUIRED no FIELD run_id.maturity_date TYPE boolean REQUIRED yes FIELD run_id.yield_pct TYPE number REQUIRED yes FIELD ru...
{"phenotype":506,"organism":463.96,"feedback":"2021-12-04T13:32:00Z","run_id":{"last_name":null,"maturity_date":false,"yield_pct":372.95,"message":{"thumbnail":723,"brake_pressure":911.78,"count":"Luis","current_draw":null,"isotope":"degraded","status_code":"closed"}},"date":null,"cargo_type":"Diana","bill_of_lading":8...
extra_text_after
{ "type": "object", "properties": { "phenotype": { "type": "integer" }, "organism": { "type": "number" }, "feedback": { "type": "string", "format": "date-time" }, "run_id": { "type": "object", "properties": { "last_name": { "type": "n...
{"phenotype":506,"organism":463.96,"feedback":"2021-12-04T13:32:00Z","run_id":{"last_name":null,"maturity_date":false,"yield_pct":372.95,"message":{"thumbnail":723,"brake_pressure":911.78,"count":"Luis","current_draw":null,"isotope":"degraded","status_code":"closed"}},"date":null,"cargo_type":"Diana","bill_of_lading":8...
Output contains non-JSON text after the object
{"phenotype":506,"organism":463.96,"feedback":"2021-12-04T13:32:00Z","run_id":{"last_name":null,"maturity_date":false,"yield_pct":372.95,"message":{"thumbnail":723,"brake_pressure":911.78,"count":"Luis","current_draw":null,"isotope":"degraded","status_code":"closed"}},"date":null,"cargo_type":"Diana","bill_of_lading":8...
TASK repair_structured_output SPEC FIELD message TYPE string REQUIRED no FIELD verified TYPE boolean REQUIRED yes FIELD cargo_type TYPE string VALUES cat_a|cat_b|cat_c|cat_d|cat_e REQUIRED yes FIELD user_id.velocity TYPE integer REQUIRED no FIELD user_id.city TYPE boolean REQUIRED yes FIELD user_id.comments TYPE strin...
{"message":"Alice","verified":false,"cargo_type":"cat_b","user_id":{"city":false},"latitude":{"category":true,"vessel_name":608,"name":{"span_id":"editor","chromosome":"mode_d","allele":741.86,"paragraph":"cat_a"},"items":"https://api.com/data","options":792,"chromosome":true,"zip_code":"qux"}}
tool_call_bad_format
{ "type": "object", "properties": { "message": { "type": "string" }, "verified": { "type": "boolean" }, "cargo_type": { "type": "string", "enum": [ "cat_a", "cat_b", "cat_c", "cat_d", "cat_e" ] }, "user_id": { "t...
<functioncall> search {message: "Alice", verified: false, cargo_type: "cat_b", user_id: {city: false}, latitude: {category: true, vessel_name: 608, name: {span_id: "editor", chromosome: "mode_d", allele: 741.86, paragraph: "cat_a"}, items: "https://api.com/data", options: 792, chromosome: true, zip_code: "qux"}}
Tool call has malformed arguments — unquoted keys in function parameters
{"message":"Alice","verified":false,"cargo_type":"cat_b","user_id":{"city":false},"latitude":{"category":true,"vessel_name":608,"name":{"span_id":"editor","chromosome":"mode_d","allele":741.86,"paragraph":"cat_a"},"items":"https://api.com/data","options":792,"chromosome":true,"zip_code":"qux"}}
TASK repair_structured_output SPEC FIELD val_r92 TYPE integer REQUIRED yes FIELD key_e66 TYPE number REQUIRED no FIELD prop_e80 TYPE string REQUIRED yes BROKEN_OUTPUT {val_r92:764,prop_e80:"Johnson"}
{"val_r92":764,"prop_e80":"Johnson"}
unquoted_keys
{ "type": "object", "properties": { "val_r92": { "type": "integer" }, "key_e66": { "type": "number" }, "prop_e80": { "type": "string" } }, "required": [ "val_r92", "prop_e80" ] }
{val_r92:764,prop_e80:"Johnson"}
Expecting property name enclosed in double quotes
{"val_r92":764,"prop_e80":"Johnson"}
TASK repair_structured_output SPEC FIELD val_k84 TYPE integer REQUIRED yes FIELD attr_p49 TYPE string REQUIRED no FIELD val_p30 TYPE integer REQUIRED no BROKEN_OUTPUT {"val_k84": "191sec", "val_p30": 449}
{"val_k84":191,"val_p30":449}
number_with_unit
{ "type": "object", "properties": { "val_k84": { "type": "integer" }, "attr_p49": { "type": "string" }, "val_p30": { "type": "integer" } }, "required": [ "val_k84" ] }
{"val_k84": "191sec", "val_p30": 449}
Field 'val_k84' must be number, got string with unit
{"val_k84":191,"val_p30":449}
TASK repair_structured_output SPEC FIELD ward TYPE string REQUIRED no FIELD vessel_name TYPE string VALUES option_a|option_b|option_c REQUIRED no FIELD updated_at.created_at TYPE string VALUES cat_a|cat_b|cat_c|cat_d REQUIRED yes FIELD updated_at.url TYPE string VALUES admin|editor|viewer REQUIRED no FIELD updated_at....
{"ward":"cancelled","vessel_name":"option_a","updated_at":{"created_at":"cat_b","url":"viewer","company":{"price":"ops@test.io","lab_result":143,"height":633},"position":null,"address":403,"item_id":827,"yield_pct":"Tokyo","invoice_id":"EUR"}}
invalid_enum
{ "type": "object", "properties": { "ward": { "type": "string" }, "vessel_name": { "type": "string", "enum": [ "option_a", "option_b", "option_c" ] }, "updated_at": { "type": "object", "properties": { "created_at": { "...
{"ward": "cancelled", "vessel_name": "invalid_value_326", "updated_at": {"created_at": "cat_b", "url": "viewer", "company": {"price": "ops@test.io", "lab_result": 143, "height": 633}, "position": null, "address": 403, "item_id": 827, "yield_pct": "Tokyo", "invoice_id": "EUR"}}
Field 'vessel_name' has invalid enum value 'invalid_value_326', expected one of ['option_a', 'option_b', 'option_c']
{"ward":"cancelled","vessel_name":"option_a","updated_at":{"created_at":"cat_b","url":"viewer","company":{"price":"ops@test.io","lab_result":143,"height":633},"position":null,"address":403,"item_id":827,"yield_pct":"Tokyo","invoice_id":"EUR"}}
TASK repair_structured_output SPEC FIELD subject TYPE string VALUES level_1|level_2 REQUIRED yes FIELD diagnosis_code TYPE string VALUES level_1|level_2|level_3|level_4 REQUIRED no FIELD lane TYPE null REQUIRED yes FIELD product_id TYPE string REQUIRED no BROKEN_OUTPUT {"subject":"level_1","lane":null,"product_id":"G...
{"subject":"level_1","lane":null,"product_id":"GRCh38"}
truncated_object
{ "type": "object", "properties": { "subject": { "type": "string", "enum": [ "level_1", "level_2" ] }, "diagnosis_code": { "type": "string", "enum": [ "level_1", "level_2", "level_3", "level_4" ] }, "lane": { ...
{"subject":"level_1","lane":null,"product_id":"GRCh38"
Unexpected end of JSON input — truncated object
{"subject":"level_1","lane":null,"product_id":"GRCh38"}
TASK repair_structured_output SPEC FIELD altitude TYPE string VALUES synonymous|missense|nonsense|frameshift REQUIRED no FIELD tax TYPE string VALUES open|in_progress|resolved|closed REQUIRED yes FIELD ward TYPE number REQUIRED yes FIELD tags TYPE string_uri REQUIRED yes BROKEN_OUTPUT call_variants(altitude='nonsense...
{"altitude":"nonsense","tax":"closed","ward":288.75,"tags":"https://www.com/v1"}
tool_call_python_syntax
{ "type": "object", "properties": { "altitude": { "type": "string", "enum": [ "synonymous", "missense", "nonsense", "frameshift" ] }, "tax": { "type": "string", "enum": [ "open", "in_progress", "resolved", "clo...
call_variants(altitude='nonsense', tax='closed', ward=288.75, tags='https://www.com/v1')
Tool call uses Python syntax instead of JSON
{"altitude":"nonsense","tax":"closed","ward":288.75,"tags":"https://www.com/v1"}
TASK repair_structured_output SPEC FIELD throttle_pos TYPE number REQUIRED yes FIELD altitude TYPE number REQUIRED yes FIELD count TYPE boolean REQUIRED no FIELD lab_result.payment_status TYPE string VALUES homozygous|heterozygous|hemizygous REQUIRED no FIELD lab_result.description TYPE string REQUIRED yes FIELD lab_r...
{"throttle_pos":256.27,"altitude":637.71,"count":false,"lab_result":{"description":"https://example.com","frequency_hz":null,"latitude":{"allele":"Silva","order_id":"mode_b","name":"mode_b"},"currency":{"age":"test@example.com","ward":"coastal","organism":69,"last_name":"quux","bed_number":true}}}
truncated_object
{ "type": "object", "properties": { "throttle_pos": { "type": "number" }, "altitude": { "type": "number" }, "count": { "type": "boolean" }, "lab_result": { "type": "object", "properties": { "payment_status": { "type": "string", "e...
{"throttle_pos":256.27,"altitude":637.71,"count":false,"lab_result":{"description":"https://example.com","frequency_hz":null,"latitude":{"allele":"Silva","order_id":"mode_b","name":"mode_b"},"currency":{"age":"test@example.com","ward":"coastal","organism":69,"last_name":"quux","bed_number":true}}
Unexpected end of JSON input — truncated object
{"throttle_pos":256.27,"altitude":637.71,"count":false,"lab_result":{"description":"https://example.com","frequency_hz":null,"latitude":{"allele":"Silva","order_id":"mode_b","name":"mode_b"},"currency":{"age":"test@example.com","ward":"coastal","organism":69,"last_name":"quux","bed_number":true}}}
TASK repair_structured_output SPEC FIELD dim_e64 TYPE integer REQUIRED yes FIELD key_g37 TYPE string_email REQUIRED no FIELD prop_b11 TYPE integer REQUIRED no FIELD field_i53 TYPE string VALUES level_1|level_2|level_3|level_4|level_5|level_6 REQUIRED no BROKEN_OUTPUT {"dim_e64": "\"185\"", "prop_b11": 685, "field_i53...
{"dim_e64":185,"prop_b11":685,"field_i53":"level_5"}
wrong_type
{ "type": "object", "properties": { "dim_e64": { "type": "integer" }, "key_g37": { "type": "string", "format": "email" }, "prop_b11": { "type": "integer" }, "field_i53": { "type": "string", "enum": [ "level_1", "level_2", "level...
{"dim_e64": "\"185\"", "prop_b11": 685, "field_i53": "level_5"}
Field 'dim_e64' must be integer, got string
{"dim_e64":185,"prop_b11":685,"field_i53":"level_5"}
TASK repair_structured_output SPEC FIELD col_o40 TYPE string_uri REQUIRED no FIELD dim_j31 TYPE string REQUIRED no FIELD param_e50 TYPE string VALUES type_a|type_b|type_c|type_d REQUIRED yes FIELD val_z63 TYPE integer REQUIRED no FIELD param_d34 TYPE integer REQUIRED yes FIELD dim_m36 TYPE integer REQUIRED no FIELD ke...
{"col_o40":"https://www.org/v1","param_e50":"type_a","param_d34":116,"key_d43":765.39,"attr_t44":"rejected"}
number_with_unit
{ "type": "object", "properties": { "col_o40": { "type": "string", "format": "uri" }, "dim_j31": { "type": "string" }, "param_e50": { "type": "string", "enum": [ "type_a", "type_b", "type_c", "type_d" ] }, "val_z63": { ...
{"col_o40": "https://www.org/v1", "param_e50": "type_a", "param_d34": 116, "key_d43": "765.39MB", "attr_t44": "rejected"}
Field 'key_d43' must be number, got string with unit
{"col_o40":"https://www.org/v1","param_e50":"type_a","param_d34":116,"key_d43":765.39,"attr_t44":"rejected"}
TASK repair_structured_output SPEC FIELD timezone.tags TYPE boolean REQUIRED no FIELD timezone.shipping TYPE integer REQUIRED yes FIELD timezone.salinity TYPE integer REQUIRED no FIELD chapter TYPE boolean REQUIRED yes FIELD trace_id TYPE number REQUIRED yes FIELD phenotype TYPE string VALUES red|blue|green|black|whit...
{"timezone":{"tags":true,"shipping":906,"salinity":744},"chapter":true,"trace_id":255.7,"conductivity":null}
missing_bracket
{ "type": "object", "properties": { "timezone": { "type": "object", "properties": { "tags": { "type": "boolean" }, "shipping": { "type": "integer" }, "salinity": { "type": "integer" } }, "required": [ "...
{"timezone":{"tags":true,"shipping":906,"salinity":744},"chapter":true,"trace_id":255.7,"conductivity":null}
Missing closing bracket
{"timezone":{"tags":true,"shipping":906,"salinity":744},"chapter":true,"trace_id":255.7,"conductivity":null}
TASK repair_structured_output SPEC FIELD param_e46 TYPE string VALUES mode_a|mode_b|mode_c|mode_d|mode_e REQUIRED yes FIELD key_f21.val_e48 TYPE boolean REQUIRED no FIELD key_f21.dim_k95 TYPE integer REQUIRED no FIELD key_f21.field_h03 TYPE number REQUIRED yes FIELD key_f21.val_u70 TYPE null REQUIRED no FIELD key_f21....
{"param_e46":"mode_c","prop_f04":"PASS"}
tool_call_bad_format
{ "type": "object", "properties": { "param_e46": { "type": "string", "enum": [ "mode_a", "mode_b", "mode_c", "mode_d", "mode_e" ] }, "key_f21": { "type": "object", "properties": { "val_e48": { "type": "boolean" ...
<functioncall> create_order {param_e46: "mode_c", prop_f04: "PASS"}
Tool call has malformed arguments — unquoted keys in function parameters
{"param_e46":"mode_c","prop_f04":"PASS"}
TASK repair_structured_output SPEC FIELD payment_status TYPE integer REQUIRED no FIELD lab_result TYPE boolean REQUIRED no FIELD temp_celsius TYPE string VALUES type_a|type_b|type_c REQUIRED yes FIELD username TYPE null REQUIRED yes FIELD conductivity TYPE string REQUIRED yes BROKEN_OUTPUT "payment_status":265,"temp_...
{"payment_status":265,"temp_celsius":"type_a","username":null,"conductivity":"foo"}
missing_brace
{ "type": "object", "properties": { "payment_status": { "type": "integer" }, "lab_result": { "type": "boolean" }, "temp_celsius": { "type": "string", "enum": [ "type_a", "type_b", "type_c" ] }, "username": { "type": "null" }...
"payment_status":265,"temp_celsius":"type_a","username":null,"conductivity":"foo"}
Missing closing brace
{"payment_status":265,"temp_celsius":"type_a","username":null,"conductivity":"foo"}
TASK repair_structured_output SPEC FIELD branch TYPE string REQUIRED yes FIELD tile TYPE string REQUIRED no FIELD trace_id TYPE string VALUES pending_review|confirmed|rejected|escalated REQUIRED no FIELD subtotal TYPE number REQUIRED yes FIELD ph_level TYPE string VALUES success|error|warning|info REQUIRED no FIELD up...
{"branch":"Santos","tile":"chrX","subtotal":326.97,"ph_level":"warning","updated_at":{"chromosome":"active","first_name":930.49,"verified":744,"count":[{"currency":"moored","username":false,"pressure_kpa":"divorced","updated_at":631,"medication":"new"},{"username":true,"pressure_kpa":"single","updated_at":50}]},"dissol...
partial_structure
{ "type": "object", "properties": { "branch": { "type": "string" }, "tile": { "type": "string" }, "trace_id": { "type": "string", "enum": [ "pending_review", "confirmed", "rejected", "escalated" ] }, "subtotal": { "type"...
Result: ph_level=warning, {"branch":"Santos","tile":"chrX","subtotal":326.97,"ph_level":"warning","updated_at":{"chromosome":"active","first_name":930.49,"verified":744,"count":[{"currency":"moored","username":false,"pressure_kpa":"divorced","updated_at":631,"medication":"new"},{"username":true,"pressure_kpa":"single",...
Output mixes natural language with JSON
{"branch":"Santos","tile":"chrX","subtotal":326.97,"ph_level":"warning","updated_at":{"chromosome":"active","first_name":930.49,"verified":744,"count":[{"currency":"moored","username":false,"pressure_kpa":"divorced","updated_at":631,"medication":"new"},{"username":true,"pressure_kpa":"single","updated_at":50}]},"dissol...
TASK repair_structured_output SPEC FIELD order_id TYPE string_date-time REQUIRED yes FIELD hazmat_code TYPE string REQUIRED no FIELD amount TYPE string REQUIRED no FIELD url TYPE integer REQUIRED no FIELD section TYPE null REQUIRED yes BROKEN_OUTPUT {"order_id": "2025-10-18T01:35:00Z", "hazmat_code": "Maria", "sectio...
{"order_id":"2025-10-18T01:35:00Z","hazmat_code":"Maria","section":null}
extra_field
{ "type": "object", "properties": { "order_id": { "type": "string", "format": "date-time" }, "hazmat_code": { "type": "string" }, "amount": { "type": "string" }, "url": { "type": "integer" }, "section": { "type": "null" } }, "required":...
{"order_id": "2025-10-18T01:35:00Z", "hazmat_code": "Maria", "section": null, "extra_value_1786": "unexpected"}
Unknown field 'extra_value_1786' not defined in schema
{"order_id":"2025-10-18T01:35:00Z","hazmat_code":"Maria","section":null}
TASK repair_structured_output SPEC FIELD val_r35 TYPE integer REQUIRED yes FIELD col_j41 TYPE string_email REQUIRED no FIELD val_l25.field_x84 TYPE string_uri REQUIRED no FIELD val_l25.col_o43 TYPE integer REQUIRED yes FIELD val_l25.col_u43.col_h40 TYPE string VALUES berthed|anchored|underway|moored REQUIRED yes FIELD...
{"val_r35":771,"col_j41":"ops@example.com","val_l25":{"col_o43":198,"col_u43":{"col_h40":"anchored","key_z33":"mode_b","prop_h15":["option_f"]}}}
truncated_array
{ "type": "object", "properties": { "val_r35": { "type": "integer" }, "col_j41": { "type": "string", "format": "email" }, "val_l25": { "type": "object", "properties": { "field_x84": { "type": "string", "format": "uri" }, "...
{"val_r35":771,"col_j41":"ops@example.com","val_l25":{"col_o43":198,"col_u43":{"col_h40":"anchored","key_z33":"mode_b","prop_h15":["option_f"]}}
Unexpected end of JSON input — truncated object
{"val_r35":771,"col_j41":"ops@example.com","val_l25":{"col_o43":198,"col_u43":{"col_h40":"anchored","key_z33":"mode_b","prop_h15":["option_f"]}}}
TASK repair_structured_output SPEC FIELD sensor_id TYPE string VALUES cat_a|cat_b REQUIRED yes FIELD phone TYPE string VALUES reliable|unstable|intermittent REQUIRED no FIELD coverage TYPE string VALUES option_a|option_b|option_c|option_d|option_e REQUIRED yes FIELD velocity TYPE number REQUIRED no FIELD comments TYPE...
{"sensor_id":"cat_a","phone":"unstable","coverage":"option_b","velocity":338.97,"comments":573.06,"shift_code":50.77,"dissolved_oxygen":"option_a","temp_celsius":{"compound":true,"item_id":true,"active":{"reagent":481}}}
unquoted_keys
{ "type": "object", "properties": { "sensor_id": { "type": "string", "enum": [ "cat_a", "cat_b" ] }, "phone": { "type": "string", "enum": [ "reliable", "unstable", "intermittent" ] }, "coverage": { "type": "string"...
{sensor_id:"cat_a",phone:"unstable",coverage:"option_b",velocity:338.97,comments:573.06,shift_code:50.77,dissolved_oxygen:"option_a",temp_celsius:{compound:true,item_id:true,active:{reagent:481}}}
Expecting property name enclosed in double quotes
{"sensor_id":"cat_a","phone":"unstable","coverage":"option_b","velocity":338.97,"comments":573.06,"shift_code":50.77,"dissolved_oxygen":"option_a","temp_celsius":{"compound":true,"item_id":true,"active":{"reagent":481}}}
TASK repair_structured_output SPEC FIELD isotope TYPE string VALUES new|in_transit|delivered|returned REQUIRED no FIELD duration_ms TYPE integer REQUIRED yes FIELD role TYPE string REQUIRED no FIELD altitude TYPE string VALUES open|in_progress|resolved|closed REQUIRED yes FIELD quantity TYPE string REQUIRED no BROKEN...
{"isotope":"delivered","duration_ms":134,"altitude":"in_progress","quantity":"chr1"}
markdown_fences
{ "type": "object", "properties": { "isotope": { "type": "string", "enum": [ "new", "in_transit", "delivered", "returned" ] }, "duration_ms": { "type": "integer" }, "role": { "type": "string" }, "altitude": { "type": "st...
```json {"isotope":"delivered","duration_ms":134,"altitude":"in_progress","quantity":"chr1"} ```
Output contains markdown code fences
{"isotope":"delivered","duration_ms":134,"altitude":"in_progress","quantity":"chr1"}
TASK repair_structured_output SPEC FIELD attr_b79 TYPE string VALUES USD|EUR|GBP|BRL|JPY REQUIRED yes FIELD attr_k90 TYPE string VALUES type_a|type_b|type_c REQUIRED yes FIELD prop_g91 TYPE string VALUES level_1|level_2|level_3|level_4 REQUIRED yes BROKEN_OUTPUT Here is the JSON you requested: ```json {"attr_b79":"BR...
{"attr_b79":"BRL","attr_k90":"type_a","prop_g91":"level_1"}
markdown_explanation
{ "type": "object", "properties": { "attr_b79": { "type": "string", "enum": [ "USD", "EUR", "GBP", "BRL", "JPY" ] }, "attr_k90": { "type": "string", "enum": [ "type_a", "type_b", "type_c" ] }, "pr...
Here is the JSON you requested: ```json {"attr_b79":"BRL","attr_k90":"type_a","prop_g91":"level_1"} ``` Let me know if you need anything else!
Output contains markdown and explanatory text around JSON
{"attr_b79":"BRL","attr_k90":"type_a","prop_g91":"level_1"}
TASK repair_structured_output SPEC FIELD commit_hash TYPE integer REQUIRED no FIELD repository TYPE null REQUIRED yes FIELD full_name[] TYPE string REQUIRED yes BROKEN_OUTPUT fetch_lab_result(commit_hash=27, repository=None, full_name=['This is a test value.'])
{"commit_hash":27,"repository":null,"full_name":["This is a test value."]}
tool_call_python_syntax
{ "type": "object", "properties": { "commit_hash": { "type": "integer" }, "repository": { "type": "null" }, "full_name": { "type": "array", "items": { "type": "string" } } }, "required": [ "full_name", "repository" ] }
fetch_lab_result(commit_hash=27, repository=None, full_name=['This is a test value.'])
Tool call uses Python syntax instead of JSON
{"commit_hash":27,"repository":null,"full_name":["This is a test value."]}
TASK repair_structured_output SPEC FIELD active TYPE integer REQUIRED yes FIELD repository TYPE string VALUES small|medium|large|xl REQUIRED no FIELD voltage TYPE string REQUIRED no FIELD duration_ms TYPE integer REQUIRED yes FIELD message TYPE string REQUIRED yes FIELD index TYPE string REQUIRED yes FIELD aligned_pct...
{"active":560,"repository":"xl","duration_ms":180,"message":"2023-12-25","index":"2024-01-15","aligned_pct":"Luis"}
extra_field
{ "type": "object", "properties": { "active": { "type": "integer" }, "repository": { "type": "string", "enum": [ "small", "medium", "large", "xl" ] }, "voltage": { "type": "string" }, "duration_ms": { "type": "integer" ...
{"active": 560, "repository": "xl", "duration_ms": 180, "message": "2023-12-25", "index": "2024-01-15", "aligned_pct": "Luis", "extra_info_9433": "unexpected"}
Unknown field 'extra_info_9433' not defined in schema
{"active":560,"repository":"xl","duration_ms":180,"message":"2023-12-25","index":"2024-01-15","aligned_pct":"Luis"}
TASK repair_structured_output SPEC FIELD vital_sign TYPE string VALUES new|in_transit|delivered|returned REQUIRED no FIELD throttle_pos TYPE string VALUES open|in_progress|resolved|closed REQUIRED no FIELD reagent TYPE string VALUES pending_review|confirmed|rejected|escalated REQUIRED yes BROKEN_OUTPUT {"vital_sign":...
{"vital_sign":"in_transit","throttle_pos":"in_progress","reagent":"pending_review"}
extra_field
{ "type": "object", "properties": { "vital_sign": { "type": "string", "enum": [ "new", "in_transit", "delivered", "returned" ] }, "throttle_pos": { "type": "string", "enum": [ "open", "in_progress", "resolved", ...
{"vital_sign": "in_transit", "throttle_pos": "in_progress", "reagent": "pending_review", "extra_field_8145": "unexpected"}
Unknown field 'extra_field_8145' not defined in schema
{"vital_sign":"in_transit","throttle_pos":"in_progress","reagent":"pending_review"}
TASK repair_structured_output SPEC FIELD field_n72.field_b26 TYPE string VALUES type_a|type_b|type_c|type_d|type_e REQUIRED no FIELD field_n72.val_r77 TYPE string VALUES mode_a|mode_b REQUIRED no FIELD field_n72.key_u02 TYPE integer REQUIRED yes FIELD field_n72.attr_f96 TYPE string REQUIRED no FIELD field_n72.dim_i81 ...
{"field_n72":{"field_b26":"type_b","val_r77":"mode_a","key_u02":63,"attr_f96":"hello","dim_i81":"intermittent","val_l60":"mode_a","col_s58":219},"col_d10":"arctic","attr_n18":297,"dim_w51":678}
unquoted_keys
{ "type": "object", "properties": { "field_n72": { "type": "object", "properties": { "field_b26": { "type": "string", "enum": [ "type_a", "type_b", "type_c", "type_d", "type_e" ] }, "val...
{field_n72:{field_b26:"type_b",val_r77:"mode_a",key_u02:63,attr_f96:"hello",dim_i81:"intermittent",val_l60:"mode_a",col_s58:219},col_d10:"arctic",attr_n18:297,dim_w51:678}
Expecting property name enclosed in double quotes
{"field_n72":{"field_b26":"type_b","val_r77":"mode_a","key_u02":63,"attr_f96":"hello","dim_i81":"intermittent","val_l60":"mode_a","col_s58":219},"col_d10":"arctic","attr_n18":297,"dim_w51":678}
TASK repair_structured_output SPEC FIELD param_v16 TYPE integer REQUIRED yes FIELD val_s66 TYPE number REQUIRED yes FIELD key_n78 TYPE boolean REQUIRED no FIELD key_s71 TYPE boolean REQUIRED yes FIELD dim_n61 TYPE integer REQUIRED no BROKEN_OUTPUT {"param_v16": "\"692\"", "val_s66": 40.38, "key_n78": true, "key_s71":...
{"param_v16":692,"val_s66":40.38,"key_n78":true,"key_s71":false,"dim_n61":840}
wrong_type
{ "type": "object", "properties": { "param_v16": { "type": "integer" }, "val_s66": { "type": "number" }, "key_n78": { "type": "boolean" }, "key_s71": { "type": "boolean" }, "dim_n61": { "type": "integer" } }, "required": [ "val_s66", ...
{"param_v16": "\"692\"", "val_s66": 40.38, "key_n78": true, "key_s71": false, "dim_n61": 840}
Field 'param_v16' must be integer, got string
{"param_v16":692,"val_s66":40.38,"key_n78":true,"key_s71":false,"dim_n61":840}
TASK repair_structured_output SPEC FIELD attr_q57 TYPE string VALUES small|medium|large|xl REQUIRED yes FIELD dim_a78 TYPE string REQUIRED no FIELD field_j60 TYPE boolean REQUIRED no FIELD attr_a53 TYPE string REQUIRED yes FIELD col_d26 TYPE string REQUIRED no FIELD val_m61 TYPE string VALUES berthed|anchored|underway...
{"attr_q57":"small","dim_a78":"REV","attr_a53":"MV-Evergreen-01","val_m61":"berthed","val_w84":"Alice"}
markdown_fences
{ "type": "object", "properties": { "attr_q57": { "type": "string", "enum": [ "small", "medium", "large", "xl" ] }, "dim_a78": { "type": "string" }, "field_j60": { "type": "boolean" }, "attr_a53": { "type": "string" ...
```json {"attr_q57":"small","dim_a78":"REV","attr_a53":"MV-Evergreen-01","val_m61":"berthed","val_w84":"Alice"} ```
Output contains markdown code fences
{"attr_q57":"small","dim_a78":"REV","attr_a53":"MV-Evergreen-01","val_m61":"berthed","val_w84":"Alice"}
TASK repair_structured_output SPEC FIELD val_p03 TYPE string VALUES coastal|oceanic|inland|arctic REQUIRED yes FIELD param_g16 TYPE string_date-time REQUIRED no FIELD col_m40 TYPE string VALUES red|blue|green|black|white REQUIRED yes FIELD key_e29.val_t26 TYPE string_email REQUIRED yes FIELD key_e29.val_c61.param_s32 ...
{"val_p03":"oceanic","param_g16":"2022-01-18T10:00:00Z","col_m40":"black","key_e29":{"val_t26":"user@example.com","val_c61":{"param_s32":false,"param_i51":false,"val_r70":null,"key_m65":"Maria","key_s95":"Paris","dim_x81":"large"},"dim_l54":"2025-11-04T18:10:00Z","dim_q38":{"param_h23":508.85,"col_o19":"green","val_q16...
number_with_unit
{ "type": "object", "properties": { "val_p03": { "type": "string", "enum": [ "coastal", "oceanic", "inland", "arctic" ] }, "param_g16": { "type": "string", "format": "date-time" }, "col_m40": { "type": "string", "enum": [ ...
{"val_p03": "oceanic", "param_g16": "2022-01-18T10:00:00Z", "col_m40": "black", "key_e29": {"val_t26": "user@example.com", "val_c61": {"param_s32": false, "param_i51": false, "val_r70": null, "key_m65": "Maria", "key_s95": "Paris", "dim_x81": "large"}, "dim_l54": "2025-11-04T18:10:00Z", "dim_q38": {"param_h23": 508.85,...
Field 'prop_c11' must be number, got string with unit
{"val_p03":"oceanic","param_g16":"2022-01-18T10:00:00Z","col_m40":"black","key_e29":{"val_t26":"user@example.com","val_c61":{"param_s32":false,"param_i51":false,"val_r70":null,"key_m65":"Maria","key_s95":"Paris","dim_x81":"large"},"dim_l54":"2025-11-04T18:10:00Z","dim_q38":{"param_h23":508.85,"col_o19":"green","val_q16...
TASK repair_structured_output SPEC FIELD prop_r03 TYPE string VALUES low|medium|high|critical REQUIRED yes FIELD prop_u83 TYPE string VALUES draft|published|archived REQUIRED yes FIELD field_y50 TYPE integer REQUIRED no FIELD attr_j19 TYPE integer REQUIRED no FIELD key_j60 TYPE boolean REQUIRED yes BROKEN_OUTPUT {"pr...
{"prop_r03":"medium","prop_u83":"published","field_y50":686,"attr_j19":782,"key_j60":true}
trailing_comma
{ "type": "object", "properties": { "prop_r03": { "type": "string", "enum": [ "low", "medium", "high", "critical" ] }, "prop_u83": { "type": "string", "enum": [ "draft", "published", "archived" ] }, "fiel...
{"prop_r03":"medium","prop_u83":"published","field_y50":686,"attr_j19":782,"key_j60":true,}
Unexpected trailing comma
{"prop_r03":"medium","prop_u83":"published","field_y50":686,"attr_j19":782,"key_j60":true}
TASK repair_structured_output SPEC FIELD batch_code TYPE string VALUES level_1|level_2|level_3 REQUIRED no FIELD credit_score TYPE string REQUIRED yes FIELD due_date TYPE number REQUIRED yes FIELD first_name TYPE number REQUIRED no FIELD strand.start_date.filter_flag TYPE string VALUES pending_review|confirmed|rejecte...
{"batch_code":"level_2","credit_score":"test@example.com","due_date":144.54,"first_name":835.04,"strand":{"start_date":{"filter_flag":"rejected","frequency_hz":null,"dissolved_oxygen":803.07},"shift_code":270,"notes":{"end_date":"JPY","interest_rate":"QC-07","vessel_name":"bar","title":"Hapag-Lloyd-Express"},"decay_rat...
tool_call_bad_format
{ "type": "object", "properties": { "batch_code": { "type": "string", "enum": [ "level_1", "level_2", "level_3" ] }, "credit_score": { "type": "string" }, "due_date": { "type": "number" }, "first_name": { "type": "number" },...
<functioncall> queue_sequencing_run {batch_code: "level_2", credit_score: "test@example.com", due_date: 144.54, first_name: 835.04, strand: {start_date: {filter_flag: "rejected", frequency_hz: null, dissolved_oxygen: 803.07}, shift_code: 270, notes: {end_date: "JPY", interest_rate: "QC-07", vessel_name: "bar", title: "...
Tool call has malformed arguments — unquoted keys in function parameters
{"batch_code":"level_2","credit_score":"test@example.com","due_date":144.54,"first_name":835.04,"strand":{"start_date":{"filter_flag":"rejected","frequency_hz":null,"dissolved_oxygen":803.07},"shift_code":270,"notes":{"end_date":"JPY","interest_rate":"QC-07","vessel_name":"bar","title":"Hapag-Lloyd-Express"},"decay_rat...
TASK repair_structured_output SPEC FIELD field_k35 TYPE null REQUIRED no FIELD field_l33 TYPE string REQUIRED yes FIELD attr_z56 TYPE null REQUIRED yes FIELD field_a13 TYPE integer REQUIRED yes FIELD attr_q98 TYPE number REQUIRED yes BROKEN_OUTPUT {field_l33:"inactive",attr_z56:null,field_a13:414,attr_q98:709.74}
{"field_l33":"inactive","attr_z56":null,"field_a13":414,"attr_q98":709.74}
unquoted_keys
{ "type": "object", "properties": { "field_k35": { "type": "null" }, "field_l33": { "type": "string" }, "attr_z56": { "type": "null" }, "field_a13": { "type": "integer" }, "attr_q98": { "type": "number" } }, "required": [ "field_a13", ...
{field_l33:"inactive",attr_z56:null,field_a13:414,attr_q98:709.74}
Expecting property name enclosed in double quotes
{"field_l33":"inactive","attr_z56":null,"field_a13":414,"attr_q98":709.74}
TASK repair_structured_output SPEC FIELD visible TYPE integer REQUIRED no FIELD longitude TYPE integer REQUIRED no FIELD shipper_ref TYPE string REQUIRED yes FIELD invoice_id TYPE string_email REQUIRED no FIELD balance TYPE number REQUIRED no BROKEN_OUTPUT I need to look up the information first. Action: search Argum...
{"visible":719,"shipper_ref":"PASS","invoice_id":"ops@test.io","balance":227.89}
tool_call_partial_args
{ "type": "object", "properties": { "visible": { "type": "integer" }, "longitude": { "type": "integer" }, "shipper_ref": { "type": "string" }, "invoice_id": { "type": "string", "format": "email" }, "balance": { "type": "number" } }, "re...
I need to look up the information first. Action: search Arguments: {"visible": 719, "invoice_id": "ops@test.io", "balance": 227.89}
Agent tool call missing required parameter 'shipper_ref'
{"visible":719,"shipper_ref":"PASS","invoice_id":"ops@test.io","balance":227.89}
TASK repair_structured_output SPEC FIELD website.website TYPE string_date-time REQUIRED no FIELD website.subject TYPE string VALUES type_a|type_b|type_c|type_d|type_e REQUIRED yes FIELD website.isotope TYPE string VALUES level_1|level_2|level_3|level_4 REQUIRED no FIELD website.level TYPE boolean REQUIRED no FIELD web...
{"website":{"website":"2024-04-10T12:12:00Z","subject":"type_e","level":true,"balance":{"zip_code":"option_a","notes":"cat_e","sensor_id":"level_2","berth_slot":"medium","voltage":"mode_d","label":518.5},"yield_pct":891},"build_status":"Tokyo","feedback":false,"annotation":77,"temp_celsius":null,"message":87,"organism"...
tool_call_bad_format
{ "type": "object", "properties": { "website": { "type": "object", "properties": { "website": { "type": "string", "format": "date-time" }, "subject": { "type": "string", "enum": [ "type_a", "type_b", ...
<functioncall> check_availability {website: {website: "2024-04-10T12:12:00Z", subject: "type_e", level: true, balance: {zip_code: "option_a", notes: "cat_e", sensor_id: "level_2", berth_slot: "medium", voltage: "mode_d", label: 518.5}, yield_pct: 891}, build_status: "Tokyo", feedback: false, annotation: 77, temp_celsiu...
Tool call has malformed arguments — unquoted keys in function parameters
{"website":{"website":"2024-04-10T12:12:00Z","subject":"type_e","level":true,"balance":{"zip_code":"option_a","notes":"cat_e","sensor_id":"level_2","berth_slot":"medium","voltage":"mode_d","label":518.5},"yield_pct":891},"build_status":"Tokyo","feedback":false,"annotation":77,"temp_celsius":null,"message":87,"organism"...
TASK repair_structured_output SPEC FIELD dim_d51.field_n62 TYPE number REQUIRED no FIELD dim_d51.prop_j54 TYPE string VALUES single|married|divorced REQUIRED yes FIELD dim_d51.col_c38 TYPE number REQUIRED no FIELD dim_d51.key_h11 TYPE number REQUIRED no FIELD dim_u52 TYPE number REQUIRED no FIELD field_a56 TYPE intege...
{"dim_d51":{"field_n62":442.84,"prop_j54":"married"},"dim_u52":166.98,"field_a56":531,"key_x29":840.14}
extra_field
{ "type": "object", "properties": { "dim_d51": { "type": "object", "properties": { "field_n62": { "type": "number" }, "prop_j54": { "type": "string", "enum": [ "single", "married", "divorced" ] ...
{"dim_d51": {"field_n62": 442.84, "prop_j54": "married"}, "dim_u52": 166.98, "field_a56": 531, "key_x29": 840.14, "extra_data_2574": true}
Unknown field 'extra_data_2574' not defined in schema
{"dim_d51":{"field_n62":442.84,"prop_j54":"married"},"dim_u52":166.98,"field_a56":531,"key_x29":840.14}
TASK repair_structured_output SPEC FIELD message TYPE null REQUIRED no FIELD vessel_name TYPE string VALUES admin|editor|viewer REQUIRED no FIELD patient_id TYPE integer REQUIRED yes FIELD umi TYPE string_date-time REQUIRED yes FIELD weight[] TYPE null REQUIRED no BROKEN_OUTPUT {"message":null,"vessel_name":"editor",...
{"message":null,"vessel_name":"editor","patient_id":181,"umi":"2020-04-03T17:39:00Z","weight":[null,null,null,null]}
trailing_comma
{ "type": "object", "properties": { "message": { "type": "null" }, "vessel_name": { "type": "string", "enum": [ "admin", "editor", "viewer" ] }, "patient_id": { "type": "integer" }, "umi": { "type": "string", "format": "da...
{"message":null,"vessel_name":"editor","patient_id":181,"umi":"2020-04-03T17:39:00Z","weight":[null,null,null,null],}
Unexpected trailing comma
{"message":null,"vessel_name":"editor","patient_id":181,"umi":"2020-04-03T17:39:00Z","weight":[null,null,null,null]}
TASK repair_structured_output SPEC FIELD param_o62 TYPE number REQUIRED no FIELD prop_l93 TYPE string REQUIRED no FIELD col_e62 TYPE integer REQUIRED yes FIELD dim_g86 TYPE string REQUIRED yes FIELD dim_l01 TYPE integer REQUIRED yes FIELD col_d74 TYPE string REQUIRED yes FIELD col_b88 TYPE boolean REQUIRED no FIELD co...
{"prop_l93":"test@example.com","col_e62":154,"dim_g86":"2024-06-30","dim_l01":438,"col_d74":"approved","col_b88":true,"col_a71":416}
missing_bracket
{ "type": "object", "properties": { "param_o62": { "type": "number" }, "prop_l93": { "type": "string" }, "col_e62": { "type": "integer" }, "dim_g86": { "type": "string" }, "dim_l01": { "type": "integer" }, "col_d74": { "type": "string" ...
{"prop_l93":"test@example.com","col_e62":154,"dim_g86":"2024-06-30","dim_l01":438,"col_d74":"approved","col_b88":true,"col_a71":416}
Missing closing bracket
{"prop_l93":"test@example.com","col_e62":154,"dim_g86":"2024-06-30","dim_l01":438,"col_d74":"approved","col_b88":true,"col_a71":416}
TASK repair_structured_output SPEC FIELD trace_id TYPE string REQUIRED no FIELD maturity_date TYPE integer REQUIRED yes FIELD format.length TYPE integer REQUIRED no FIELD format.end_date TYPE string REQUIRED no FIELD format.umi TYPE number REQUIRED yes FIELD format.tags TYPE string VALUES free|basic|pro|enterprise REQ...
{"trace_id":"approved","maturity_date":255,"format":{"length":433,"end_date":"bar","umi":373.9,"log_level":143.61,"visible":{"total":"info@domain.org","date":245,"strand":724.74,"subject":"PASS","status_code":"pending","yield_pct":"coastal","build_status":"unstable","branch":972},"website":null}}
extra_text_before
{ "type": "object", "properties": { "trace_id": { "type": "string" }, "maturity_date": { "type": "integer" }, "format": { "type": "object", "properties": { "length": { "type": "integer" }, "end_date": { "type": "string" ...
Here is the JSON you requested: {"trace_id":"approved","maturity_date":255,"format":{"length":433,"end_date":"bar","umi":373.9,"log_level":143.61,"visible":{"total":"info@domain.org","date":245,"strand":724.74,"subject":"PASS","status_code":"pending","yield_pct":"coastal","build_status":"unstable","branch":972},"websit...
Output contains non-JSON text before the object
{"trace_id":"approved","maturity_date":255,"format":{"length":433,"end_date":"bar","umi":373.9,"log_level":143.61,"visible":{"total":"info@domain.org","date":245,"strand":724.74,"subject":"PASS","status_code":"pending","yield_pct":"coastal","build_status":"unstable","branch":972},"website":null}}
TASK repair_structured_output SPEC FIELD phenotype TYPE string VALUES berthed|anchored|underway|moored REQUIRED no FIELD footnote TYPE string REQUIRED no FIELD longitude TYPE string VALUES success|error|warning|info REQUIRED yes FIELD throttle_pos TYPE string VALUES email|phone|sms|push REQUIRED yes FIELD run_id TYPE ...
{"phenotype":"anchored","longitude":"error","throttle_pos":"push","run_id":"https://example.io/api","priority":"example"}
missing_required
{ "type": "object", "properties": { "phenotype": { "type": "string", "enum": [ "berthed", "anchored", "underway", "moored" ] }, "footnote": { "type": "string" }, "longitude": { "type": "string", "enum": [ "success", ...
{"phenotype": "anchored", "longitude": "error", "run_id": "https://example.io/api", "priority": "example"}
Required field 'throttle_pos' is missing
{"phenotype":"anchored","longitude":"error","throttle_pos":"push","run_id":"https://example.io/api","priority":"example"}
TASK repair_structured_output SPEC FIELD param_s52 TYPE string VALUES option_a|option_b|option_c|option_d|option_e REQUIRED no FIELD field_a85 TYPE string VALUES level_1|level_2|level_3|level_4|level_5|level_6 REQUIRED no FIELD val_o41 TYPE string REQUIRED yes FIELD dim_a74 TYPE integer REQUIRED no FIELD field_k65 TYP...
{"param_s52":"option_c","val_o41":"New York","field_k65":"option_d","prop_d52":{"val_z27":"cat_a","attr_d56":528,"dim_f80":[{"attr_m68":"info@domain.org","field_r60":"mode_b","param_x04":457.42,"col_z02":"level_1","field_l59":[true,true]}]},"prop_w77":"push"}
tool_call_bad_format
{ "type": "object", "properties": { "param_s52": { "type": "string", "enum": [ "option_a", "option_b", "option_c", "option_d", "option_e" ] }, "field_a85": { "type": "string", "enum": [ "level_1", "level_2", "l...
<functioncall> create_order {param_s52: "option_c", val_o41: "New York", field_k65: "option_d", prop_d52: {val_z27: "cat_a", attr_d56: 528, dim_f80: [{attr_m68: "info@domain.org", field_r60: "mode_b", param_x04: 457.42, col_z02: "level_1", field_l59: [true, true]}]}, prop_w77: "push"}
Tool call has malformed arguments — unquoted keys in function parameters
{"param_s52":"option_c","val_o41":"New York","field_k65":"option_d","prop_d52":{"val_z27":"cat_a","attr_d56":528,"dim_f80":[{"attr_m68":"info@domain.org","field_r60":"mode_b","param_x04":457.42,"col_z02":"level_1","field_l59":[true,true]}]},"prop_w77":"push"}
TASK repair_structured_output SPEC FIELD collateral TYPE string VALUES synonymous|missense|nonsense|frameshift REQUIRED yes FIELD repository TYPE string VALUES active|inactive|pending REQUIRED yes FIELD barcode TYPE boolean REQUIRED no FIELD half_life TYPE boolean REQUIRED no BROKEN_OUTPUT {"collateral":"missense","r...
{"collateral":"missense","repository":"active","barcode":false,"half_life":true}
truncated_object
{ "type": "object", "properties": { "collateral": { "type": "string", "enum": [ "synonymous", "missense", "nonsense", "frameshift" ] }, "repository": { "type": "string", "enum": [ "active", "inactive", "pending" ...
{"collateral":"missense","repository":"active","barcode":false,"half_life":true
Unexpected end of JSON input — truncated object
{"collateral":"missense","repository":"active","barcode":false,"half_life":true}
TASK repair_structured_output SPEC FIELD ph_level TYPE string VALUES cat_a|cat_b|cat_c|cat_d|cat_e REQUIRED yes FIELD address TYPE number REQUIRED no FIELD chromosome TYPE integer REQUIRED no FIELD longitude TYPE string REQUIRED no FIELD price TYPE string REQUIRED yes FIELD format.priority TYPE string REQUIRED yes FIE...
{"ph_level":"cat_c","chromosome":619,"price":"hello","format":{"priority":"quux","color":"ops@example.com","fleet_number":"Berlin","shipping":"New York"}}
partial_structure
{ "type": "object", "properties": { "ph_level": { "type": "string", "enum": [ "cat_a", "cat_b", "cat_c", "cat_d", "cat_e" ] }, "address": { "type": "number" }, "chromosome": { "type": "integer" }, "longitude": { ...
The price is hello and {"ph_level":"cat_c","chromosome":619,"price":"hello","format":{"priority":"quux","color":"ops@example.com","fleet_number":"Berlin","shipping":"New York"}}
Output mixes natural language with JSON
{"ph_level":"cat_c","chromosome":619,"price":"hello","format":{"priority":"quux","color":"ops@example.com","fleet_number":"Berlin","shipping":"New York"}}
TASK repair_structured_output SPEC FIELD medication TYPE null REQUIRED no FIELD turbidity TYPE integer REQUIRED no FIELD website TYPE string VALUES berthed|anchored|underway|moored REQUIRED yes BROKEN_OUTPUT "turbidity":962,"website":"berthed"}
{"turbidity":962,"website":"berthed"}
missing_brace
{ "type": "object", "properties": { "medication": { "type": "null" }, "turbidity": { "type": "integer" }, "website": { "type": "string", "enum": [ "berthed", "anchored", "underway", "moored" ] } }, "required": [ "website" ...
"turbidity":962,"website":"berthed"}
Missing closing brace
{"turbidity":962,"website":"berthed"}
TASK repair_structured_output SPEC FIELD description TYPE string_uri REQUIRED yes FIELD length TYPE integer REQUIRED no FIELD isotope TYPE integer REQUIRED no FIELD repository.status TYPE boolean REQUIRED no FIELD repository.branch.filter_flag TYPE string VALUES operational|degraded|offline|maintenance REQUIRED no FIE...
{"description":"https://data.io/v1","rating":"Smith"}
tool_call_python_syntax
{ "type": "object", "properties": { "description": { "type": "string", "format": "uri" }, "length": { "type": "integer" }, "isotope": { "type": "integer" }, "repository": { "type": "object", "properties": { "status": { "type": "boolea...
create_ticket(description='https://data.io/v1', rating='Smith')
Tool call uses Python syntax instead of JSON
{"description":"https://data.io/v1","rating":"Smith"}
TASK repair_structured_output SPEC FIELD verified TYPE string VALUES homozygous|heterozygous|hemizygous REQUIRED yes FIELD age TYPE string VALUES red|blue|green|black|white REQUIRED yes FIELD filter_flag TYPE boolean REQUIRED yes BROKEN_OUTPUT Breaking down the requirements: - Must include all required fields - Types...
{"verified":"heterozygous","age":"blue","filter_flag":true}
thought_process
{ "type": "object", "properties": { "verified": { "type": "string", "enum": [ "homozygous", "heterozygous", "hemizygous" ] }, "age": { "type": "string", "enum": [ "red", "blue", "green", "black", "white" ...
Breaking down the requirements: - Must include all required fields - Types must match the schema - Values should be realistic {"verified":"heterozygous","age":"blue","filter_flag":true}
Output contains chain-of-thought reasoning before JSON
{"verified":"heterozygous","age":"blue","filter_flag":true}
TASK repair_structured_output SPEC FIELD invoice_id TYPE boolean REQUIRED yes FIELD payment_status.chromosome TYPE string VALUES small|medium|large|xl REQUIRED yes FIELD payment_status.city TYPE string VALUES single|married|divorced REQUIRED yes FIELD payment_status.username TYPE integer REQUIRED no FIELD payment_stat...
{"invoice_id":false,"payment_status":{"chromosome":"small","city":"divorced","username":882,"bill_of_lading":false,"published":345},"state":false,"role":"https://api.io/v1","url":"https://api.com/v1","allele":null,"torque_output":"USD"}
tool_call_wrong_param
{ "type": "object", "properties": { "invoice_id": { "type": "boolean" }, "payment_status": { "type": "object", "properties": { "chromosome": { "type": "string", "enum": [ "small", "medium", "large", "xl" ...
Tool: queue_sequencing_run Params: {"invoice_id": false, "payment_status": {"chromosome": "small", "city": "divorced", "username": 882, "bill_of_lading": false, "published": 345}, "role": "https://api.io/v1", "url": "https://api.com/v1", "allele": null, "torque_output": "USD", "state_name": false}
Agent used wrong parameter name 'state_name' instead of 'state'
{"invoice_id":false,"payment_status":{"chromosome":"small","city":"divorced","username":882,"bill_of_lading":false,"published":345},"state":false,"role":"https://api.io/v1","url":"https://api.com/v1","allele":null,"torque_output":"USD"}
TASK repair_structured_output SPEC FIELD weight TYPE string VALUES email|phone|sms|push REQUIRED no FIELD height TYPE integer REQUIRED no FIELD quality_score TYPE boolean REQUIRED no FIELD amplitude TYPE string REQUIRED no FIELD crew_id TYPE string REQUIRED no FIELD category TYPE string_uri REQUIRED yes BROKEN_OUTPUT...
{"quality_score":true,"amplitude":"Bob","crew_id":"This is a test value.","category":"https://api.io/data"}
unquoted_keys
{ "type": "object", "properties": { "weight": { "type": "string", "enum": [ "email", "phone", "sms", "push" ] }, "height": { "type": "integer" }, "quality_score": { "type": "boolean" }, "amplitude": { "type": "string" ...
{quality_score:true,amplitude:"Bob",crew_id:"This is a test value.",category:"https://api.io/data"}
Expecting property name enclosed in double quotes
{"quality_score":true,"amplitude":"Bob","crew_id":"This is a test value.","category":"https://api.io/data"}
TASK repair_structured_output SPEC FIELD company TYPE string VALUES free|basic|pro|enterprise REQUIRED no FIELD diagnosis_code TYPE string VALUES option_a|option_b|option_c REQUIRED no FIELD total TYPE string REQUIRED no FIELD tags TYPE integer REQUIRED yes FIELD throttle_pos TYPE boolean REQUIRED no FIELD temp_celsiu...
{"company":"pro","diagnosis_code":"option_c","total":"John","tags":953,"throttle_pos":false,"temp_celsius":"Sao Paulo"}
missing_required
{ "type": "object", "properties": { "company": { "type": "string", "enum": [ "free", "basic", "pro", "enterprise" ] }, "diagnosis_code": { "type": "string", "enum": [ "option_a", "option_b", "option_c" ] }, ...
{"company": "pro", "diagnosis_code": "option_c", "total": "John", "throttle_pos": false, "temp_celsius": "Sao Paulo"}
Required field 'tags' is missing
{"company":"pro","diagnosis_code":"option_c","total":"John","tags":953,"throttle_pos":false,"temp_celsius":"Sao Paulo"}
TASK repair_structured_output SPEC FIELD currency.procedure_code TYPE string_uri REQUIRED no FIELD currency.annotation TYPE boolean REQUIRED yes FIELD currency.compound TYPE string REQUIRED no FIELD currency.altitude TYPE string_uri REQUIRED no FIELD currency.bill_of_lading TYPE string REQUIRED no FIELD currency.value...
{"currency":{"annotation":true,"compound":"Diana","crew_id":941.15},"thumbnail":"cat_c","shift_code":"quux","annotation":"test@example.com","decay_rate":"admin@domain.org"}
agent_chain
{ "type": "object", "properties": { "currency": { "type": "object", "properties": { "procedure_code": { "type": "string", "format": "uri" }, "annotation": { "type": "boolean" }, "compound": { "type": "string" }, ...
I need to look up the information first. Action: generate_report Result: {"thumbnail": "cat_c", "shift_code": "quux", "annotation": "test@example.com", "decay_rate": "admin@domain.org"} Processing the request now. Action: query_port_status Result:
Agent multi-step chain with truncated tool output
{"currency":{"annotation":true,"compound":"Diana","crew_id":941.15},"thumbnail":"cat_c","shift_code":"quux","annotation":"test@example.com","decay_rate":"admin@domain.org"}
TASK repair_structured_output SPEC FIELD prop_p01 TYPE integer REQUIRED yes FIELD attr_r19 TYPE string_email REQUIRED no FIELD field_d35.field_l65 TYPE string_email REQUIRED no FIELD field_d35.col_g51 TYPE number REQUIRED no FIELD field_d35.attr_i34 TYPE string REQUIRED no FIELD field_d35.val_z97 TYPE string REQUIRED ...
{"prop_p01":106,"field_d35":{"col_g51":304.37,"attr_i34":"user@domain.com","val_z97":"GRCh38","prop_k86":{"key_b94":false,"val_v59":"GRCh38","dim_c05":true,"field_l20":599.51,"attr_j55":280.02,"val_v52":230}},"dim_m31":"London","dim_n40":{"param_y17":"resolved","key_v42":null,"attr_n24":489,"key_f08":"2025-05-24T20:44:...
tool_call_text_mix
{ "type": "object", "properties": { "prop_p01": { "type": "integer" }, "attr_r19": { "type": "string", "format": "email" }, "field_d35": { "type": "object", "properties": { "field_l65": { "type": "string", "format": "email" }, ...
I'll query our database. <tool_call name="annotate_mutation"> {"prop_p01":106,"field_d35":{"col_g51":304.37,"attr_i34":"user@domain.com","val_z97":"GRCh38","prop_k86":{"key_b94":false,"val_v59":"GRCh38","dim_c05":true,"field_l20":599.51,"attr_j55":280.02,"val_v52":230}},"dim_m31":"London","dim_n40":{"param_y17":"resolv...
Agent response mixes reasoning text with tool call
{"prop_p01":106,"field_d35":{"col_g51":304.37,"attr_i34":"user@domain.com","val_z97":"GRCh38","prop_k86":{"key_b94":false,"val_v59":"GRCh38","dim_c05":true,"field_l20":599.51,"attr_j55":280.02,"val_v52":230}},"dim_m31":"London","dim_n40":{"param_y17":"resolved","key_v42":null,"attr_n24":489,"key_f08":"2025-05-24T20:44:...
TASK repair_structured_output SPEC FIELD brake_pressure TYPE boolean REQUIRED yes FIELD filter_flag TYPE string VALUES cat_a|cat_b|cat_c|cat_d|cat_e REQUIRED no FIELD manifest_ref TYPE string REQUIRED yes BROKEN_OUTPUT {"brake_pressure":false,"filter_flag":"cat_e","manifest_ref":"2023-12-25"}
{"brake_pressure":false,"filter_flag":"cat_e","manifest_ref":"2023-12-25"}
missing_bracket
{ "type": "object", "properties": { "brake_pressure": { "type": "boolean" }, "filter_flag": { "type": "string", "enum": [ "cat_a", "cat_b", "cat_c", "cat_d", "cat_e" ] }, "manifest_ref": { "type": "string" } }, "requir...
{"brake_pressure":false,"filter_flag":"cat_e","manifest_ref":"2023-12-25"}
Missing closing bracket
{"brake_pressure":false,"filter_flag":"cat_e","manifest_ref":"2023-12-25"}
TASK repair_structured_output SPEC FIELD prop_g99 TYPE string VALUES option_a|option_b REQUIRED yes FIELD field_c50 TYPE string REQUIRED no FIELD prop_e40 TYPE string VALUES draft|published|archived REQUIRED no FIELD key_o73 TYPE string VALUES level_1|level_2|level_3|level_4 REQUIRED no BROKEN_OUTPUT {"prop_g99": "op...
{"prop_g99":"option_b","field_c50":"2023-12-25","prop_e40":"archived","key_o73":"level_4"}
extra_field
{ "type": "object", "properties": { "prop_g99": { "type": "string", "enum": [ "option_a", "option_b" ] }, "field_c50": { "type": "string" }, "prop_e40": { "type": "string", "enum": [ "draft", "published", "archived" ...
{"prop_g99": "option_b", "field_c50": "2023-12-25", "prop_e40": "archived", "key_o73": "level_4", "extra_field_9591": "unexpected"}
Unknown field 'extra_field_9591' not defined in schema
{"prop_g99":"option_b","field_c50":"2023-12-25","prop_e40":"archived","key_o73":"level_4"}
TASK repair_structured_output SPEC FIELD val_k39 TYPE string REQUIRED yes FIELD col_d64 TYPE string_uri REQUIRED no FIELD col_w34 TYPE integer REQUIRED yes FIELD val_p23 TYPE number REQUIRED no FIELD param_w13.val_s00 TYPE string REQUIRED yes FIELD param_w13.field_h17 TYPE null REQUIRED no FIELD param_w13.val_t28.dim_...
{"val_k39":"sample","col_d64":"https://www.org/data","col_w34":38,"val_p23":615.68,"param_w13":{"val_s00":"Santos","val_t28":{"attr_z22":57.57,"prop_e87":"option_c","prop_v14":"PASS","prop_d98":400.71},"field_z24":"https://data.io/v1","col_t48":"level_1","dim_s80":543,"prop_e35":456.62},"param_i55":182.79}
extra_text_after
{ "type": "object", "properties": { "val_k39": { "type": "string" }, "col_d64": { "type": "string", "format": "uri" }, "col_w34": { "type": "integer" }, "val_p23": { "type": "number" }, "param_w13": { "type": "object", "properties": { ...
{"val_k39":"sample","col_d64":"https://www.org/data","col_w34":38,"val_p23":615.68,"param_w13":{"val_s00":"Santos","val_t28":{"attr_z22":57.57,"prop_e87":"option_c","prop_v14":"PASS","prop_d98":400.71},"field_z24":"https://data.io/v1","col_t48":"level_1","dim_s80":543,"prop_e35":456.62},"param_i55":182.79} I've ensured...
Output contains non-JSON text after the object
{"val_k39":"sample","col_d64":"https://www.org/data","col_w34":38,"val_p23":615.68,"param_w13":{"val_s00":"Santos","val_t28":{"attr_z22":57.57,"prop_e87":"option_c","prop_v14":"PASS","prop_d98":400.71},"field_z24":"https://data.io/v1","col_t48":"level_1","dim_s80":543,"prop_e35":456.62},"param_i55":182.79}
TASK repair_structured_output SPEC FIELD transaction_id TYPE string VALUES low|medium|high|critical REQUIRED no FIELD throttle_pos TYPE string VALUES free|basic|pro|enterprise REQUIRED yes FIELD color TYPE integer REQUIRED yes FIELD timezone TYPE string VALUES draft|published|archived REQUIRED no FIELD patient_id TYPE...
{"transaction_id":"high","throttle_pos":"pro","color":96,"patient_id":"user@domain.com"}
markdown_fences
{ "type": "object", "properties": { "transaction_id": { "type": "string", "enum": [ "low", "medium", "high", "critical" ] }, "throttle_pos": { "type": "string", "enum": [ "free", "basic", "pro", "enterprise" ...
```json {"transaction_id":"high","throttle_pos":"pro","color":96,"patient_id":"user@domain.com"} ```
Output contains markdown code fences
{"transaction_id":"high","throttle_pos":"pro","color":96,"patient_id":"user@domain.com"}
TASK repair_structured_output SPEC FIELD attr_m26 TYPE string_date-time REQUIRED yes FIELD prop_k64 TYPE integer REQUIRED no FIELD key_b57[] TYPE integer REQUIRED no BROKEN_OUTPUT ```json {"attr_m26":"2023-06-20T00:57:00Z","prop_k64":984} ```
{"attr_m26":"2023-06-20T00:57:00Z","prop_k64":984}
markdown_fences
{ "type": "object", "properties": { "attr_m26": { "type": "string", "format": "date-time" }, "prop_k64": { "type": "integer" }, "key_b57": { "type": "array", "items": { "type": "integer" } } }, "required": [ "attr_m26" ] }
```json {"attr_m26":"2023-06-20T00:57:00Z","prop_k64":984} ```
Output contains markdown code fences
{"attr_m26":"2023-06-20T00:57:00Z","prop_k64":984}
TASK repair_structured_output SPEC FIELD active TYPE boolean REQUIRED yes FIELD status TYPE string VALUES open|in_progress|resolved|closed REQUIRED yes FIELD full_name.longitude TYPE boolean REQUIRED no FIELD full_name.organism TYPE string REQUIRED no FIELD full_name.score TYPE string REQUIRED no FIELD full_name.item_...
{"active":false,"status":"resolved","full_name":{"longitude":true,"organism":"qux","score":"bar","item_id":"BRL","items":{"organism":"pro","temp_celsius":"2024-06-30","deploy_target":"intermittent","options":"Maria","color":"RTG-04"}}}
missing_brace
{ "type": "object", "properties": { "active": { "type": "boolean" }, "status": { "type": "string", "enum": [ "open", "in_progress", "resolved", "closed" ] }, "full_name": { "type": "object", "properties": { "longitude": ...
{"active":false,"status":"resolved","full_name":{"longitude":true,"organism":"qux","score":"bar","item_id":"BRL","items":{"organism":"pro","temp_celsius":"2024-06-30","deploy_target":"intermittent","options":"Maria","color":"RTG-04"}}
Missing closing brace
{"active":false,"status":"resolved","full_name":{"longitude":true,"organism":"qux","score":"bar","item_id":"BRL","items":{"organism":"pro","temp_celsius":"2024-06-30","deploy_target":"intermittent","options":"Maria","color":"RTG-04"}}}
TASK repair_structured_output SPEC FIELD collateral TYPE number REQUIRED yes FIELD section TYPE number REQUIRED no FIELD start_date TYPE boolean REQUIRED no FIELD fleet_number TYPE number REQUIRED no FIELD index TYPE string VALUES homozygous|heterozygous|hemizygous REQUIRED no FIELD lane TYPE integer REQUIRED no FIELD...
{"collateral":837.19,"fleet_number":675.67,"lane":505,"maturity_date":"viewer"}
truncated_object
{ "type": "object", "properties": { "collateral": { "type": "number" }, "section": { "type": "number" }, "start_date": { "type": "boolean" }, "fleet_number": { "type": "number" }, "index": { "type": "string", "enum": [ "homozygous", ...
{"collateral":837.19,"fleet_number":675.67,"lane":505,"maturity_date":"viewer"
Unexpected end of JSON input — truncated object
{"collateral":837.19,"fleet_number":675.67,"lane":505,"maturity_date":"viewer"}
TASK repair_structured_output SPEC FIELD role TYPE integer REQUIRED no FIELD quantity TYPE boolean REQUIRED yes FIELD category.product_id TYPE string VALUES success|error|warning|info REQUIRED no FIELD category.longitude TYPE integer REQUIRED yes FIELD category.email TYPE integer REQUIRED no FIELD category.level TYPE ...
{"role":625,"quantity":true,"category":{"product_id":"error","longitude":691,"email":773,"level":"2021-09-20T04:19:00Z","features":{"city":"QC-07","size":null,"umi":109.74}},"shipper_ref":"chrX"}
unquoted_keys
{ "type": "object", "properties": { "role": { "type": "integer" }, "quantity": { "type": "boolean" }, "category": { "type": "object", "properties": { "product_id": { "type": "string", "enum": [ "success", "error", ...
{role:625,quantity:true,category:{product_id:"error",longitude:691,email:773,level:"2021-09-20T04:19:00Z",features:{city:"QC-07",size:null,umi:109.74}},shipper_ref:"chrX"}
Expecting property name enclosed in double quotes
{"role":625,"quantity":true,"category":{"product_id":"error","longitude":691,"email":773,"level":"2021-09-20T04:19:00Z","features":{"city":"QC-07","size":null,"umi":109.74}},"shipper_ref":"chrX"}
TASK repair_structured_output SPEC FIELD quantity TYPE string_email REQUIRED no FIELD start_date TYPE string REQUIRED yes FIELD country TYPE number REQUIRED yes BROKEN_OUTPUT The output is as follows: {"quantity":"info@test.io","start_date":"Paris","country":992.43}
{"quantity":"info@test.io","start_date":"Paris","country":992.43}
extra_text_before
{ "type": "object", "properties": { "quantity": { "type": "string", "format": "email" }, "start_date": { "type": "string" }, "country": { "type": "number" } }, "required": [ "start_date", "country" ] }
The output is as follows: {"quantity":"info@test.io","start_date":"Paris","country":992.43}
Output contains non-JSON text before the object
{"quantity":"info@test.io","start_date":"Paris","country":992.43}
TASK repair_structured_output SPEC FIELD key_u99 TYPE integer REQUIRED no FIELD prop_d90 TYPE integer REQUIRED no FIELD key_w82 TYPE string REQUIRED no FIELD val_m86.field_a71 TYPE string REQUIRED no FIELD val_m86.key_h32 TYPE string_email REQUIRED no FIELD val_m86.prop_v67 TYPE integer REQUIRED no FIELD val_m86.key_u...
{"prop_d90":213,"attr_u98":{"dim_j32":"2023-12-25","param_g14":"QC-07","col_c47":{"col_q56":52,"field_v96":["example","Silva","GRCh38"]}},"param_u96":"https://api.io/v1"}
tool_call_text_mix
{ "type": "object", "properties": { "key_u99": { "type": "integer" }, "prop_d90": { "type": "integer" }, "key_w82": { "type": "string" }, "val_m86": { "type": "object", "properties": { "field_a71": { "type": "string" }, "key...
I'll query our database. <tool_call name="query_port_status"> {"prop_d90":213,"attr_u98":{"dim_j32":"2023-12-25","param_g14":"QC-07","col_c47":{"col_q56":52,"field_v96":["example","Silva","GRCh38"]}},"param_u96":"https://api.io/v1"} </tool_call. Operation completed.
Agent response mixes reasoning text with tool call
{"prop_d90":213,"attr_u98":{"dim_j32":"2023-12-25","param_g14":"QC-07","col_c47":{"col_q56":52,"field_v96":["example","Silva","GRCh38"]}},"param_u96":"https://api.io/v1"}
TASK repair_structured_output SPEC FIELD param_s53 TYPE number REQUIRED yes FIELD param_e60 TYPE string VALUES small|medium|large|xl REQUIRED no FIELD param_v33.field_m60 TYPE string_uri REQUIRED no FIELD param_v33.field_g32 TYPE string VALUES berthed|anchored|underway|moored REQUIRED yes FIELD param_v33.key_j29 TYPE ...
{"param_s53":437.68,"param_v33":{"field_m60":"https://www.io/data","field_g32":"moored","key_j29":"GBP","prop_k97":"underway","field_j23":"world","prop_t65":"intermittent","prop_x54":336},"val_y03":true,"attr_o89":"admin@test.io","param_e44":{"dim_t99":true,"key_b91":"2023-03-28T01:58:00Z","key_u31":"Silva"},"dim_v42":...
tool_call_bad_format
{ "type": "object", "properties": { "param_s53": { "type": "number" }, "param_e60": { "type": "string", "enum": [ "small", "medium", "large", "xl" ] }, "param_v33": { "type": "object", "properties": { "field_m60": { ...
<functioncall> queue_sequencing_run {param_s53: 437.68, param_v33: {field_m60: "https://www.io/data", field_g32: "moored", key_j29: "GBP", prop_k97: "underway", field_j23: "world", prop_t65: "intermittent", prop_x54: 336}, val_y03: true, attr_o89: "admin@test.io", param_e44: {dim_t99: true, key_b91: "2023-03-28T01:58:0...
Tool call has malformed arguments — unquoted keys in function parameters
{"param_s53":437.68,"param_v33":{"field_m60":"https://www.io/data","field_g32":"moored","key_j29":"GBP","prop_k97":"underway","field_j23":"world","prop_t65":"intermittent","prop_x54":336},"val_y03":true,"attr_o89":"admin@test.io","param_e44":{"dim_t99":true,"key_b91":"2023-03-28T01:58:00Z","key_u31":"Silva"},"dim_v42":...
TASK repair_structured_output SPEC FIELD field_c04 TYPE string VALUES cat_a|cat_b|cat_c REQUIRED no FIELD param_p96 TYPE string VALUES mode_a|mode_b|mode_c|mode_d|mode_e REQUIRED no FIELD attr_o83 TYPE string REQUIRED no FIELD key_x45.key_v75 TYPE string REQUIRED yes FIELD key_x45.dim_l61 TYPE integer REQUIRED yes FIE...
{"field_c04":"cat_a","key_x45":{"key_v75":"active","dim_l61":779,"dim_s35":"QC-07","dim_s43":697},"col_k61":253.55,"attr_a81":"medium"}
markdown_explanation
{ "type": "object", "properties": { "field_c04": { "type": "string", "enum": [ "cat_a", "cat_b", "cat_c" ] }, "param_p96": { "type": "string", "enum": [ "mode_a", "mode_b", "mode_c", "mode_d", "mode_e" ] ...
Here is the response in the requested format: ```json {"field_c04":"cat_a","key_x45":{"key_v75":"active","dim_l61":779,"dim_s35":"QC-07","dim_s43":697},"col_k61":253.55,"attr_a81":"medium"} ``` Hope this helps!
Output contains markdown and explanatory text around JSON
{"field_c04":"cat_a","key_x45":{"key_v75":"active","dim_l61":779,"dim_s35":"QC-07","dim_s43":697},"col_k61":253.55,"attr_a81":"medium"}
TASK repair_structured_output SPEC FIELD field_p16 TYPE string VALUES open|in_progress|resolved|closed REQUIRED no FIELD prop_i02 TYPE string VALUES free|basic|pro|enterprise REQUIRED no FIELD attr_f54 TYPE null REQUIRED no FIELD val_v48 TYPE boolean REQUIRED no FIELD key_s15 TYPE number REQUIRED no FIELD attr_z54 TYP...
{"prop_i02":"enterprise","attr_f54":null,"val_v48":true,"attr_z54":864}
tool_call_partial_args
{ "type": "object", "properties": { "field_p16": { "type": "string", "enum": [ "open", "in_progress", "resolved", "closed" ] }, "prop_i02": { "type": "string", "enum": [ "free", "basic", "pro", "enterprise" ...
Let me check the system. Action: queue_sequencing_run Arguments: {"prop_i02": "enterprise", "attr_f54": null, "val_v48": true}
Agent tool call missing required parameter 'attr_z54'
{"prop_i02":"enterprise","attr_f54":null,"val_v48":true,"attr_z54":864}
TASK repair_structured_output SPEC FIELD val_q83 TYPE boolean REQUIRED yes FIELD key_m22 TYPE string VALUES low|medium|high|critical REQUIRED yes FIELD attr_h63 TYPE integer REQUIRED no BROKEN_OUTPUT {val_q83:true,key_m22:"critical"}
{"val_q83":true,"key_m22":"critical"}
unquoted_keys
{ "type": "object", "properties": { "val_q83": { "type": "boolean" }, "key_m22": { "type": "string", "enum": [ "low", "medium", "high", "critical" ] }, "attr_h63": { "type": "integer" } }, "required": [ "val_q83", "key...
{val_q83:true,key_m22:"critical"}
Expecting property name enclosed in double quotes
{"val_q83":true,"key_m22":"critical"}
TASK repair_structured_output SPEC FIELD items TYPE boolean REQUIRED yes FIELD log_level TYPE boolean REQUIRED no FIELD balance TYPE string REQUIRED no FIELD discount TYPE string VALUES coastal|oceanic|inland|arctic REQUIRED no BROKEN_OUTPUT <functioncall> validate_address {items: false, log_level: false, balance: "P...
{"items":false,"log_level":false,"balance":"Paris"}
tool_call_bad_format
{ "type": "object", "properties": { "items": { "type": "boolean" }, "log_level": { "type": "boolean" }, "balance": { "type": "string" }, "discount": { "type": "string", "enum": [ "coastal", "oceanic", "inland", "arctic" ...
<functioncall> validate_address {items: false, log_level: false, balance: "Paris"}
Tool call has malformed arguments — unquoted keys in function parameters
{"items":false,"log_level":false,"balance":"Paris"}
TASK repair_structured_output SPEC FIELD zip_code TYPE string REQUIRED yes FIELD thumbnail TYPE integer REQUIRED yes FIELD transaction_id TYPE string VALUES pending_review|confirmed|rejected|escalated REQUIRED no FIELD id TYPE string REQUIRED no BROKEN_OUTPUT I need to look up the information first. Action: get_inven...
{"zip_code":"London","thumbnail":766,"transaction_id":"escalated","id":"PASS"}
tool_call_partial_args
{ "type": "object", "properties": { "zip_code": { "type": "string" }, "thumbnail": { "type": "integer" }, "transaction_id": { "type": "string", "enum": [ "pending_review", "confirmed", "rejected", "escalated" ] }, "id": { ...
I need to look up the information first. Action: get_inventory Arguments: {"zip_code": "London", "transaction_id": "escalated", "id": "PASS"}
Agent tool call missing required parameter 'thumbnail'
{"zip_code":"London","thumbnail":766,"transaction_id":"escalated","id":"PASS"}
TASK repair_structured_output SPEC FIELD enabled TYPE string VALUES synonymous|missense|nonsense|frameshift REQUIRED no FIELD procedure_code TYPE string VALUES pending_review|confirmed|rejected|escalated REQUIRED no FIELD vital_sign TYPE integer REQUIRED no FIELD verified TYPE integer REQUIRED yes BROKEN_OUTPUT {"ena...
{"enabled":"frameshift","procedure_code":"escalated","vital_sign":797,"verified":790}
missing_brace
{ "type": "object", "properties": { "enabled": { "type": "string", "enum": [ "synonymous", "missense", "nonsense", "frameshift" ] }, "procedure_code": { "type": "string", "enum": [ "pending_review", "confirmed", "rejec...
{"enabled":"frameshift","procedure_code":"escalated","vital_sign":797,"verified":790
Missing closing brace
{"enabled":"frameshift","procedure_code":"escalated","vital_sign":797,"verified":790}
TASK repair_structured_output SPEC FIELD dim_d51 TYPE string REQUIRED yes FIELD prop_v31 TYPE string REQUIRED no FIELD key_p17 TYPE string REQUIRED yes FIELD val_u73 TYPE integer REQUIRED no FIELD val_d76 TYPE number REQUIRED no FIELD prop_w52 TYPE string VALUES level_1|level_2|level_3|level_4 REQUIRED no BROKEN_OUTP...
{"dim_d51":"PASS","key_p17":"Jane","val_d76":841.75,"prop_w52":"level_3"}
single_quotes
{ "type": "object", "properties": { "dim_d51": { "type": "string" }, "prop_v31": { "type": "string" }, "key_p17": { "type": "string" }, "val_u73": { "type": "integer" }, "val_d76": { "type": "number" }, "prop_w52": { "type": "string", ...
{'dim_d51':'PASS','key_p17':'Jane','val_d76':841.75,'prop_w52':'level_3'}
Expecting property name enclosed in double quotes
{"dim_d51":"PASS","key_p17":"Jane","val_d76":841.75,"prop_w52":"level_3"}
TASK repair_structured_output SPEC FIELD key_e88 TYPE string VALUES success|error|warning|info REQUIRED yes FIELD key_m44 TYPE string VALUES single|married|divorced REQUIRED no FIELD key_n52 TYPE string VALUES USD|EUR|GBP|BRL|JPY REQUIRED no FIELD param_s98 TYPE number REQUIRED no FIELD param_v34 TYPE boolean REQUIRED...
{"key_e88":"info","key_m44":"single","key_n52":"BRL","param_v34":true,"prop_j11":773}
wrong_type
{ "type": "object", "properties": { "key_e88": { "type": "string", "enum": [ "success", "error", "warning", "info" ] }, "key_m44": { "type": "string", "enum": [ "single", "married", "divorced" ] }, "key_n...
{"key_e88": "info", "key_m44": "single", "key_n52": "BRL", "param_v34": true, "prop_j11": "\"773\""}
Field 'prop_j11' must be integer, got string
{"key_e88":"info","key_m44":"single","key_n52":"BRL","param_v34":true,"prop_j11":773}
TASK repair_structured_output SPEC FIELD val_f10 TYPE boolean REQUIRED yes FIELD attr_n89 TYPE string_uri REQUIRED no FIELD field_h21 TYPE string VALUES reliable|unstable|intermittent REQUIRED yes FIELD param_h31 TYPE string REQUIRED yes FIELD col_p81 TYPE string REQUIRED no FIELD dim_y54.val_h61 TYPE string VALUES sy...
{"val_f10":false,"attr_n89":"https://www.com/v1","field_h21":"reliable","param_h31":"Charlie","col_p81":"This is a test value.","val_j18":260}
missing_required
{ "type": "object", "properties": { "val_f10": { "type": "boolean" }, "attr_n89": { "type": "string", "format": "uri" }, "field_h21": { "type": "string", "enum": [ "reliable", "unstable", "intermittent" ] }, "param_h31": { ...
{"val_f10": false, "attr_n89": "https://www.com/v1", "param_h31": "Charlie", "col_p81": "This is a test value.", "val_j18": 260}
Required field 'field_h21' is missing
{"val_f10":false,"attr_n89":"https://www.com/v1","field_h21":"reliable","param_h31":"Charlie","col_p81":"This is a test value.","val_j18":260}
TASK repair_structured_output SPEC FIELD val_y60 TYPE boolean REQUIRED yes FIELD prop_y53 TYPE string REQUIRED no FIELD prop_j18 TYPE string_date-time REQUIRED yes FIELD dim_m09 TYPE string REQUIRED yes BROKEN_OUTPUT I need to look up the information first. Action: fetch_lab_result Arguments: {"val_y60": false, "prop...
{"val_y60":false,"prop_y53":"2024-06-30","prop_j18":"2024-01-19T06:58:00Z","dim_m09":"demo"}
tool_call_partial_args
{ "type": "object", "properties": { "val_y60": { "type": "boolean" }, "prop_y53": { "type": "string" }, "prop_j18": { "type": "string", "format": "date-time" }, "dim_m09": { "type": "string" } }, "required": [ "dim_m09", "prop_j18", "val_...
I need to look up the information first. Action: fetch_lab_result Arguments: {"val_y60": false, "prop_y53": "2024-06-30", "prop_j18": "2024-01-19T06:58:00Z"}
Agent tool call missing required parameter 'dim_m09'
{"val_y60":false,"prop_y53":"2024-06-30","prop_j18":"2024-01-19T06:58:00Z","dim_m09":"demo"}
TASK repair_structured_output SPEC FIELD col_m10 TYPE boolean REQUIRED no FIELD dim_s33 TYPE string REQUIRED no FIELD field_a66 TYPE integer REQUIRED no FIELD col_l31 TYPE string VALUES small|medium|large|xl REQUIRED no FIELD prop_r24 TYPE string VALUES success|error|warning|info REQUIRED yes FIELD col_d16 TYPE string...
{"col_m10":true,"dim_s33":"active","col_l31":"xl","prop_r24":"error","col_d16":"Maria","field_k95":670}
missing_bracket
{ "type": "object", "properties": { "col_m10": { "type": "boolean" }, "dim_s33": { "type": "string" }, "field_a66": { "type": "integer" }, "col_l31": { "type": "string", "enum": [ "small", "medium", "large", "xl" ] }...
{"col_m10":true,"dim_s33":"active","col_l31":"xl","prop_r24":"error","col_d16":"Maria","field_k95":670}
Missing closing bracket
{"col_m10":true,"dim_s33":"active","col_l31":"xl","prop_r24":"error","col_d16":"Maria","field_k95":670}
TASK repair_structured_output SPEC FIELD span_id TYPE integer REQUIRED no FIELD transaction_id TYPE null REQUIRED no FIELD weight TYPE string_date-time REQUIRED yes FIELD vessel_name TYPE string VALUES small|medium|large|xl REQUIRED yes FIELD description TYPE boolean REQUIRED yes FIELD altitude TYPE string VALUES acti...
{"span_id":636,"transaction_id":null,"weight":"2023-09-01T14:45:00Z","vessel_name":"large","description":true,"altitude":"active","language":404}
unquoted_keys
{ "type": "object", "properties": { "span_id": { "type": "integer" }, "transaction_id": { "type": "null" }, "weight": { "type": "string", "format": "date-time" }, "vessel_name": { "type": "string", "enum": [ "small", "medium", "...
{span_id:636,transaction_id:null,weight:"2023-09-01T14:45:00Z",vessel_name:"large",description:true,altitude:"active",language:404}
Expecting property name enclosed in double quotes
{"span_id":636,"transaction_id":null,"weight":"2023-09-01T14:45:00Z","vessel_name":"large","description":true,"altitude":"active","language":404}
TASK repair_structured_output SPEC FIELD manifest_ref TYPE integer REQUIRED yes FIELD consignee TYPE string VALUES mode_a|mode_b|mode_c|mode_d REQUIRED yes FIELD quality_score TYPE string VALUES type_a|type_b|type_c|type_d REQUIRED yes BROKEN_OUTPUT {"manifest_ref": "156ms", "consignee": "mode_d", "quality_score": "t...
{"manifest_ref":156,"consignee":"mode_d","quality_score":"type_b"}
number_with_unit
{ "type": "object", "properties": { "manifest_ref": { "type": "integer" }, "consignee": { "type": "string", "enum": [ "mode_a", "mode_b", "mode_c", "mode_d" ] }, "quality_score": { "type": "string", "enum": [ "type_a", ...
{"manifest_ref": "156ms", "consignee": "mode_d", "quality_score": "type_b"}
Field 'manifest_ref' must be number, got string with unit
{"manifest_ref":156,"consignee":"mode_d","quality_score":"type_b"}
TASK repair_structured_output SPEC FIELD field_q68 TYPE string_email REQUIRED yes FIELD col_d72 TYPE integer REQUIRED no FIELD key_a50 TYPE string REQUIRED yes FIELD key_j97 TYPE string REQUIRED yes FIELD val_i36 TYPE string REQUIRED no FIELD dim_b62 TYPE null REQUIRED no FIELD field_n02 TYPE integer REQUIRED yes FIEL...
{"field_q68":"user@test.io","key_a50":"Johnson","key_j97":"pending","val_i36":"New York","dim_b62":null,"field_n02":456,"field_i60":226}
truncated_object
{ "type": "object", "properties": { "field_q68": { "type": "string", "format": "email" }, "col_d72": { "type": "integer" }, "key_a50": { "type": "string" }, "key_j97": { "type": "string" }, "val_i36": { "type": "string" }, "dim_b62": { ...
{"field_q68":"user@test.io","key_a50":"Johnson","key_j97":"pending","val_i36":"New York","dim_b62":null,"field_n02":456,"field_i60":226
Unexpected end of JSON input — truncated object
{"field_q68":"user@test.io","key_a50":"Johnson","key_j97":"pending","val_i36":"New York","dim_b62":null,"field_n02":456,"field_i60":226}
TASK repair_structured_output SPEC FIELD key_e74 TYPE string VALUES reliable|unstable|intermittent REQUIRED yes FIELD dim_j61 TYPE string VALUES low|medium|high|critical REQUIRED no FIELD dim_q37 TYPE boolean REQUIRED no FIELD key_l16 TYPE string VALUES open|in_progress|resolved|closed REQUIRED no BROKEN_OUTPUT {"key...
{"key_e74":"unstable","dim_j61":"critical","dim_q37":true}
invalid_enum
{ "type": "object", "properties": { "key_e74": { "type": "string", "enum": [ "reliable", "unstable", "intermittent" ] }, "dim_j61": { "type": "string", "enum": [ "low", "medium", "high", "critical" ] }, "...
{"key_e74": "unstable", "dim_j61": "invalid_value_885", "dim_q37": true}
Field 'dim_j61' has invalid enum value 'invalid_value_885', expected one of ['low', 'medium', 'high', 'critical']
{"key_e74":"unstable","dim_j61":"critical","dim_q37":true}
TASK repair_structured_output SPEC FIELD val_y00 TYPE integer REQUIRED yes FIELD prop_k88 TYPE integer REQUIRED no FIELD key_x09.field_r23 TYPE string_date-time REQUIRED no FIELD key_x09.attr_z92.val_p80 TYPE string VALUES coastal|oceanic|inland|arctic REQUIRED no FIELD key_x09.attr_z92.key_z64 TYPE string VALUES homo...
{"val_y00":935,"prop_k88":206,"key_x09":{"attr_z92":{"val_p80":"arctic","key_z64":"heterozygous","attr_f23":"Tokyo","val_p40":false,"attr_b36":"free","dim_c27":423},"val_l84":null},"dim_y20":"This is a test value.","prop_p75":"Johnson"}
null_required
{ "type": "object", "properties": { "val_y00": { "type": "integer" }, "prop_k88": { "type": "integer" }, "key_x09": { "type": "object", "properties": { "field_r23": { "type": "string", "format": "date-time" }, "attr_z92": { ...
{"val_y00": null, "prop_k88": 206, "key_x09": {"attr_z92": {"val_p80": "arctic", "key_z64": "heterozygous", "attr_f23": "Tokyo", "val_p40": false, "attr_b36": "free", "dim_c27": 423}, "val_l84": null}, "dim_y20": "This is a test value.", "prop_p75": "Johnson"}
Required field 'val_y00' is null
{"val_y00":935,"prop_k88":206,"key_x09":{"attr_z92":{"val_p80":"arctic","key_z64":"heterozygous","attr_f23":"Tokyo","val_p40":false,"attr_b36":"free","dim_c27":423},"val_l84":null},"dim_y20":"This is a test value.","prop_p75":"Johnson"}
TASK repair_structured_output SPEC FIELD priority TYPE integer REQUIRED no FIELD created_at.item_id TYPE string_date-time REQUIRED yes FIELD created_at.balance TYPE string VALUES coastal|oceanic|inland|arctic REQUIRED no FIELD created_at.format TYPE string REQUIRED no FIELD created_at.lab_result TYPE integer REQUIRED ...
{"priority":325,"created_at":{"item_id":"2024-11-21T14:08:00Z","balance":"inland","format":"2024-01-15","lab_result":418,"weight":548.16},"barcode":"https://data.io/data","url":false}
tool_call_python_syntax
{ "type": "object", "properties": { "priority": { "type": "integer" }, "created_at": { "type": "object", "properties": { "item_id": { "type": "string", "format": "date-time" }, "balance": { "type": "string", "enum": [ ...
validate_address(priority=325, created_at={'item_id': '2024-11-21T14:08:00Z', 'balance': 'inland', 'format': '2024-01-15', 'lab_result': 418, 'weight': 548.16}, barcode='https://data.io/data', url=False)
Tool call uses Python syntax instead of JSON
{"priority":325,"created_at":{"item_id":"2024-11-21T14:08:00Z","balance":"inland","format":"2024-01-15","lab_result":418,"weight":548.16},"barcode":"https://data.io/data","url":false}
TASK repair_structured_output SPEC FIELD dim_d25 TYPE integer REQUIRED no FIELD prop_a54 TYPE integer REQUIRED yes FIELD val_n85 TYPE string REQUIRED no FIELD prop_y04 TYPE number REQUIRED no FIELD prop_h98[] TYPE string REQUIRED yes FIELD prop_e41[] TYPE string REQUIRED yes BROKEN_OUTPUT Let me construct this step b...
{"dim_d25":121,"prop_a54":23,"val_n85":"https://example.com","prop_y04":663.12,"prop_h98":["qux","John"],"prop_e41":["demo","https://example.com"]}
thought_process
{ "type": "object", "properties": { "dim_d25": { "type": "integer" }, "prop_a54": { "type": "integer" }, "val_n85": { "type": "string" }, "prop_y04": { "type": "number" }, "prop_h98": { "type": "array", "items": { "type": "string" ...
Let me construct this step by step. First, I'll identify the required fields, then fill in the values. {"dim_d25":121,"prop_a54":23,"val_n85":"https://example.com","prop_y04":663.12,"prop_h98":["qux","John"],"prop_e41":["demo","https://example.com"]}
Output contains chain-of-thought reasoning before JSON
{"dim_d25":121,"prop_a54":23,"val_n85":"https://example.com","prop_y04":663.12,"prop_h98":["qux","John"],"prop_e41":["demo","https://example.com"]}
TASK repair_structured_output SPEC FIELD zip_code TYPE integer REQUIRED no FIELD nickname TYPE integer REQUIRED no FIELD options TYPE string REQUIRED no FIELD consignee TYPE number REQUIRED no FIELD gene_id TYPE string REQUIRED yes BROKEN_OUTPUT {"zip_code":54,"options":"Berlin","consignee":837.46,"gene_id":"pending"
{"zip_code":54,"options":"Berlin","consignee":837.46,"gene_id":"pending"}
truncated_array
{ "type": "object", "properties": { "zip_code": { "type": "integer" }, "nickname": { "type": "integer" }, "options": { "type": "string" }, "consignee": { "type": "number" }, "gene_id": { "type": "string" } }, "required": [ "gene_id" ] }
{"zip_code":54,"options":"Berlin","consignee":837.46,"gene_id":"pending"
Unexpected end of JSON input — truncated object
{"zip_code":54,"options":"Berlin","consignee":837.46,"gene_id":"pending"}
TASK repair_structured_output SPEC FIELD catalyst TYPE string REQUIRED no FIELD username TYPE string REQUIRED no FIELD priority TYPE string VALUES low|medium|high|critical REQUIRED no FIELD ph_level[].organism TYPE boolean REQUIRED no FIELD ph_level[].feedback TYPE number REQUIRED yes FIELD ph_level[].berth_slot TYPE ...
{"catalyst":"Hapag-Lloyd-Express","username":"baz","priority":"low","ph_level":[{"organism":true,"feedback":158.91,"berth_slot":904.88,"half_life":"level_1"},{"feedback":968.52,"berth_slot":311.11,"half_life":"level_5"},{"organism":true,"feedback":173.21,"berth_slot":145.46,"half_life":"level_3"}]}
markdown_fences
{ "type": "object", "properties": { "catalyst": { "type": "string" }, "username": { "type": "string" }, "priority": { "type": "string", "enum": [ "low", "medium", "high", "critical" ] }, "ph_level": { "type": "array", ...
```json {"catalyst":"Hapag-Lloyd-Express","username":"baz","priority":"low","ph_level":[{"organism":true,"feedback":158.91,"berth_slot":904.88,"half_life":"level_1"},{"feedback":968.52,"berth_slot":311.11,"half_life":"level_5"},{"organism":true,"feedback":173.21,"berth_slot":145.46,"half_life":"level_3"}]} ```
Output contains markdown code fences
{"catalyst":"Hapag-Lloyd-Express","username":"baz","priority":"low","ph_level":[{"organism":true,"feedback":158.91,"berth_slot":904.88,"half_life":"level_1"},{"feedback":968.52,"berth_slot":311.11,"half_life":"level_5"},{"organism":true,"feedback":173.21,"berth_slot":145.46,"half_life":"level_3"}]}