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 trace_id TYPE string VALUES draft|published|archived REQUIRED yes FIELD ward TYPE string REQUIRED no FIELD company.lab_result TYPE string VALUES free|basic|pro|enterprise REQUIRED yes FIELD company.terminal_id TYPE string VALUES small|medium|large|xl REQUIRED no FIELD company.c...
{"trace_id":"draft","company":{"lab_result":"free","terminal_id":"small","commit_hash":null,"longitude":"hello"}}
tool_call_text_mix
{ "type": "object", "properties": { "trace_id": { "type": "string", "enum": [ "draft", "published", "archived" ] }, "ward": { "type": "string" }, "company": { "type": "object", "properties": { "lab_result": { "type": "...
I'll query our database. <tool_call name="check_cargo_manifest"> {"trace_id":"draft","company":{"lab_result":"free","terminal_id":"small","commit_hash":null,"longitude":"hello"}} </tool_call. Done!
Agent response mixes reasoning text with tool call
{"trace_id":"draft","company":{"lab_result":"free","terminal_id":"small","commit_hash":null,"longitude":"hello"}}
TASK repair_structured_output SPEC FIELD key_c57 TYPE string_email REQUIRED no FIELD col_m13 TYPE number REQUIRED no FIELD field_h10 TYPE integer REQUIRED no FIELD val_v52 TYPE string REQUIRED yes FIELD field_m07 TYPE string REQUIRED no BROKEN_OUTPUT The output is as follows: ```json {"key_c57":"user@domain.org","fie...
{"key_c57":"user@domain.org","field_h10":936,"val_v52":"Sao Paulo","field_m07":"baz"}
markdown_explanation
{ "type": "object", "properties": { "key_c57": { "type": "string", "format": "email" }, "col_m13": { "type": "number" }, "field_h10": { "type": "integer" }, "val_v52": { "type": "string" }, "field_m07": { "type": "string" } }, "required...
The output is as follows: ```json {"key_c57":"user@domain.org","field_h10":936,"val_v52":"Sao Paulo","field_m07":"baz"} ``` Let me know if you need anything else!
Output contains markdown and explanatory text around JSON
{"key_c57":"user@domain.org","field_h10":936,"val_v52":"Sao Paulo","field_m07":"baz"}
TASK repair_structured_output SPEC FIELD val_g43 TYPE string REQUIRED yes FIELD key_z60 TYPE null REQUIRED yes FIELD dim_v83 TYPE string VALUES single|married|divorced REQUIRED yes BROKEN_OUTPUT The val_g43 is demo and {"val_g43":"demo","key_z60":null,"dim_v83":"single"}
{"val_g43":"demo","key_z60":null,"dim_v83":"single"}
partial_structure
{ "type": "object", "properties": { "val_g43": { "type": "string" }, "key_z60": { "type": "null" }, "dim_v83": { "type": "string", "enum": [ "single", "married", "divorced" ] } }, "required": [ "key_z60", "val_g43", "dim_v...
The val_g43 is demo and {"val_g43":"demo","key_z60":null,"dim_v83":"single"}
Output mixes natural language with JSON
{"val_g43":"demo","key_z60":null,"dim_v83":"single"}
TASK repair_structured_output SPEC FIELD dim_v55 TYPE string REQUIRED yes FIELD val_v12 TYPE number REQUIRED no FIELD key_o20 TYPE integer REQUIRED no FIELD attr_d56 TYPE string VALUES level_1|level_2|level_3 REQUIRED no FIELD attr_c58.field_l38 TYPE null REQUIRED no FIELD attr_c58.prop_h61 TYPE string VALUES option_a...
{"dim_v55":"This is a test value.","val_v12":244.42,"attr_c58":{"field_l38":null,"prop_h61":"option_b","attr_j69":true,"val_r85":"viewer","field_f03":[{"dim_v86":"mode_a","field_f07":"phone","col_m09":"Bob"},{"field_i47":"level_2","field_f07":"email","col_m09":"sample"},{"field_i47":"level_2","field_f07":"phone","attr_...
trailing_comma
{ "type": "object", "properties": { "dim_v55": { "type": "string" }, "val_v12": { "type": "number" }, "key_o20": { "type": "integer" }, "attr_d56": { "type": "string", "enum": [ "level_1", "level_2", "level_3" ] }, "attr...
{"dim_v55":"This is a test value.","val_v12":244.42,"attr_c58":{"field_l38":null,"prop_h61":"option_b","attr_j69":true,"val_r85":"viewer","field_f03":[{"dim_v86":"mode_a","field_f07":"phone","col_m09":"Bob",},{"field_i47":"level_2","field_f07":"email","col_m09":"sample"},{"field_i47":"level_2","field_f07":"phone","attr...
Unexpected trailing comma
{"dim_v55":"This is a test value.","val_v12":244.42,"attr_c58":{"field_l38":null,"prop_h61":"option_b","attr_j69":true,"val_r85":"viewer","field_f03":[{"dim_v86":"mode_a","field_f07":"phone","col_m09":"Bob"},{"field_i47":"level_2","field_f07":"email","col_m09":"sample"},{"field_i47":"level_2","field_f07":"phone","attr_...
TASK repair_structured_output SPEC FIELD first_name TYPE string VALUES synonymous|missense|nonsense|frameshift REQUIRED yes FIELD role TYPE string VALUES success|error|warning|info REQUIRED no FIELD invoice_id TYPE integer REQUIRED no FIELD published TYPE string REQUIRED no BROKEN_OUTPUT {'first_name':'missense','inv...
{"first_name":"missense","invoice_id":505,"published":"bar"}
single_quotes
{ "type": "object", "properties": { "first_name": { "type": "string", "enum": [ "synonymous", "missense", "nonsense", "frameshift" ] }, "role": { "type": "string", "enum": [ "success", "error", "warning", "info...
{'first_name':'missense','invoice_id':505,'published':'bar'}
Expecting property name enclosed in double quotes
{"first_name":"missense","invoice_id":505,"published":"bar"}
TASK repair_structured_output SPEC FIELD conductivity TYPE integer REQUIRED no FIELD altitude TYPE integer REQUIRED yes FIELD berth_slot.diagnosis_code TYPE string VALUES USD|EUR|GBP|BRL|JPY REQUIRED no FIELD berth_slot.lab_result TYPE string VALUES draft|published|archived REQUIRED yes FIELD berth_slot.currency TYPE ...
{"conductivity":645,"altitude":810,"berth_slot":{"lab_result":"archived","currency":"info","balance":"degraded"},"procedure_code":"FWD"}
tool_call_wrong_param
{ "type": "object", "properties": { "conductivity": { "type": "integer" }, "altitude": { "type": "integer" }, "berth_slot": { "type": "object", "properties": { "diagnosis_code": { "type": "string", "enum": [ "USD", "EUR"...
Tool: run_diagnostics Params: {"conductivity": 645, "altitude": 810, "procedure_code": "FWD", "berth_slot_new": {"lab_result": "archived", "currency": "info", "balance": "degraded"}}
Agent used wrong parameter name 'berth_slot_new' instead of 'berth_slot'
{"conductivity":645,"altitude":810,"berth_slot":{"lab_result":"archived","currency":"info","balance":"degraded"},"procedure_code":"FWD"}
TASK repair_structured_output SPEC FIELD dim_d88 TYPE string VALUES small|medium|large|xl REQUIRED no FIELD dim_o26 TYPE integer REQUIRED no FIELD field_s61 TYPE boolean REQUIRED no FIELD dim_i01 TYPE integer REQUIRED no FIELD attr_n24[] TYPE integer REQUIRED yes FIELD attr_a31[] TYPE integer REQUIRED yes BROKEN_OUTP...
{"dim_d88":"xl","dim_i01":69,"attr_n24":[850],"attr_a31":[795,56,93]}
single_quotes
{ "type": "object", "properties": { "dim_d88": { "type": "string", "enum": [ "small", "medium", "large", "xl" ] }, "dim_o26": { "type": "integer" }, "field_s61": { "type": "boolean" }, "dim_i01": { "type": "integer" ...
{'dim_d88':'xl','dim_i01':69,'attr_n24':[850],'attr_a31':[795,56,93]}
Expecting property name enclosed in double quotes
{"dim_d88":"xl","dim_i01":69,"attr_n24":[850],"attr_a31":[795,56,93]}
TASK repair_structured_output SPEC FIELD latitude TYPE string REQUIRED yes FIELD bearing TYPE string_email REQUIRED yes FIELD log_level.log_level TYPE string_email REQUIRED no FIELD log_level.full_name TYPE string_uri REQUIRED no FIELD log_level.berth_slot TYPE integer REQUIRED no FIELD log_level.age TYPE number REQUI...
{"latitude":"REV","bearing":"test@domain.org","log_level":{"full_name":"https://www.io/v1","berth_slot":839,"age":326.59,"payment_status":"example","bed_number":"RTG-04","fleet_number":"escalated","branch":"heterozygous"},"notes":626,"message":true,"title":750}
missing_brace
{ "type": "object", "properties": { "latitude": { "type": "string" }, "bearing": { "type": "string", "format": "email" }, "log_level": { "type": "object", "properties": { "log_level": { "type": "string", "format": "email" }, ...
{"latitude":"REV","bearing":"test@domain.org","log_level":{"full_name":"https://www.io/v1","berth_slot":839,"age":326.59,"payment_status":"example","bed_number":"RTG-04","fleet_number":"escalated","branch":"heterozygous"},"notes":626,"message":true,"title":750
Missing closing brace
{"latitude":"REV","bearing":"test@domain.org","log_level":{"full_name":"https://www.io/v1","berth_slot":839,"age":326.59,"payment_status":"example","bed_number":"RTG-04","fleet_number":"escalated","branch":"heterozygous"},"notes":626,"message":true,"title":750}
TASK repair_structured_output SPEC FIELD fleet_number TYPE string VALUES homozygous|heterozygous|hemizygous REQUIRED yes FIELD index TYPE string REQUIRED yes FIELD company TYPE integer REQUIRED yes BROKEN_OUTPUT {"fleet_number": "hemizygous", "index": "Smith", "company": "\"563\""}
{"fleet_number":"hemizygous","index":"Smith","company":563}
wrong_type
{ "type": "object", "properties": { "fleet_number": { "type": "string", "enum": [ "homozygous", "heterozygous", "hemizygous" ] }, "index": { "type": "string" }, "company": { "type": "integer" } }, "required": [ "index", "fleet...
{"fleet_number": "hemizygous", "index": "Smith", "company": "\"563\""}
Field 'company' must be integer, got string
{"fleet_number":"hemizygous","index":"Smith","company":563}
TASK repair_structured_output SPEC FIELD transaction_id TYPE integer REQUIRED no FIELD terminal_id TYPE string VALUES reliable|unstable|intermittent REQUIRED no FIELD width TYPE integer REQUIRED no FIELD title TYPE boolean REQUIRED no FIELD last_name TYPE number REQUIRED yes FIELD rating TYPE integer REQUIRED no FIELD...
{"transaction_id":975,"terminal_id":"reliable","width":531,"title":false,"last_name":378.79,"rating":178,"interest_rate":{"build_status":"test@domain.org","end_date":"type_f","position":599.85,"zip_code":"cat_e","procedure_code":{"account_id":"option_b","chapter":"married","due_date":"option_b","commit_hash":null},"str...
missing_bracket
{ "type": "object", "properties": { "transaction_id": { "type": "integer" }, "terminal_id": { "type": "string", "enum": [ "reliable", "unstable", "intermittent" ] }, "width": { "type": "integer" }, "title": { "type": "boolean" ...
{"transaction_id":975,"terminal_id":"reliable","width":531,"title":false,"last_name":378.79,"rating":178,"interest_rate":{"build_status":"test@domain.org","end_date":"type_f","position":599.85,"zip_code":"cat_e","procedure_code":{"account_id":"option_b","chapter":"married","due_date":"option_b","commit_hash":null},"str...
Missing closing bracket
{"transaction_id":975,"terminal_id":"reliable","width":531,"title":false,"last_name":378.79,"rating":178,"interest_rate":{"build_status":"test@domain.org","end_date":"type_f","position":599.85,"zip_code":"cat_e","procedure_code":{"account_id":"option_b","chapter":"married","due_date":"option_b","commit_hash":null},"str...
TASK repair_structured_output SPEC FIELD col_c54 TYPE string VALUES active|inactive|pending REQUIRED yes FIELD val_u76 TYPE string VALUES admin|editor|viewer REQUIRED no FIELD prop_d60 TYPE string REQUIRED yes FIELD param_y75 TYPE string VALUES low|medium|high|critical REQUIRED yes BROKEN_OUTPUT {"col_c54":"active","...
{"col_c54":"active","prop_d60":"Silva","param_y75":"medium"}
extra_text_after
{ "type": "object", "properties": { "col_c54": { "type": "string", "enum": [ "active", "inactive", "pending" ] }, "val_u76": { "type": "string", "enum": [ "admin", "editor", "viewer" ] }, "prop_d60": { "typ...
{"col_c54":"active","prop_d60":"Silva","param_y75":"medium"} Analysis finished.
Output contains non-JSON text after the object
{"col_c54":"active","prop_d60":"Silva","param_y75":"medium"}
TASK repair_structured_output SPEC FIELD prop_j72 TYPE string VALUES type_a|type_b|type_c REQUIRED yes FIELD col_t01 TYPE string REQUIRED no FIELD col_x71 TYPE string REQUIRED yes FIELD param_h90 TYPE number REQUIRED yes FIELD param_r00 TYPE string_date-time REQUIRED no BROKEN_OUTPUT {"prop_j72": "invalid_option_720"...
{"prop_j72":"type_b","col_t01":"GRCh38","col_x71":"London","param_h90":327.03,"param_r00":"2021-02-12T14:31:00Z"}
invalid_enum
{ "type": "object", "properties": { "prop_j72": { "type": "string", "enum": [ "type_a", "type_b", "type_c" ] }, "col_t01": { "type": "string" }, "col_x71": { "type": "string" }, "param_h90": { "type": "number" }, "param_...
{"prop_j72": "invalid_option_720", "col_t01": "GRCh38", "col_x71": "London", "param_h90": 327.03, "param_r00": "2021-02-12T14:31:00Z"}
Field 'prop_j72' has invalid enum value 'invalid_option_720', expected one of ['type_a', 'type_b', 'type_c']
{"prop_j72":"type_b","col_t01":"GRCh38","col_x71":"London","param_h90":327.03,"param_r00":"2021-02-12T14:31:00Z"}
TASK repair_structured_output SPEC FIELD val_d00 TYPE string VALUES operational|degraded|offline|maintenance REQUIRED yes FIELD dim_r29 TYPE string VALUES free|basic|pro|enterprise REQUIRED yes FIELD attr_v68 TYPE string VALUES admin|editor|viewer REQUIRED yes BROKEN_OUTPUT Here's the structured output: {"val_d00":"d...
{"val_d00":"degraded","dim_r29":"pro","attr_v68":"viewer"}
extra_text_before
{ "type": "object", "properties": { "val_d00": { "type": "string", "enum": [ "operational", "degraded", "offline", "maintenance" ] }, "dim_r29": { "type": "string", "enum": [ "free", "basic", "pro", "enterprise...
Here's the structured output: {"val_d00":"degraded","dim_r29":"pro","attr_v68":"viewer"}
Output contains non-JSON text before the object
{"val_d00":"degraded","dim_r29":"pro","attr_v68":"viewer"}
TASK repair_structured_output SPEC FIELD col_u48 TYPE string VALUES small|medium|large|xl REQUIRED no FIELD field_v12 TYPE string_date-time REQUIRED yes FIELD prop_d33 TYPE string VALUES type_a|type_b REQUIRED no FIELD attr_o19 TYPE string VALUES operational|degraded|offline|maintenance REQUIRED yes FIELD key_s17 TYPE...
{"col_u48":"small","field_v12":"2024-01-19T08:04:00Z","prop_d33":"type_a","attr_o19":"degraded","key_s17":994.9}
markdown_fences
{ "type": "object", "properties": { "col_u48": { "type": "string", "enum": [ "small", "medium", "large", "xl" ] }, "field_v12": { "type": "string", "format": "date-time" }, "prop_d33": { "type": "string", "enum": [ ...
```json {"col_u48":"small","field_v12":"2024-01-19T08:04:00Z","prop_d33":"type_a","attr_o19":"degraded","key_s17":994.9} ```
Output contains markdown code fences
{"col_u48":"small","field_v12":"2024-01-19T08:04:00Z","prop_d33":"type_a","attr_o19":"degraded","key_s17":994.9}
TASK repair_structured_output SPEC FIELD val_z71 TYPE boolean REQUIRED no FIELD attr_u64 TYPE string VALUES red|blue|green|black|white REQUIRED no FIELD field_o26 TYPE string REQUIRED no FIELD field_k42 TYPE integer REQUIRED yes BROKEN_OUTPUT ```json {"field_o26":"2023-12-25","field_k42":100} ```
{"field_o26":"2023-12-25","field_k42":100}
markdown_fences
{ "type": "object", "properties": { "val_z71": { "type": "boolean" }, "attr_u64": { "type": "string", "enum": [ "red", "blue", "green", "black", "white" ] }, "field_o26": { "type": "string" }, "field_k42": { "typ...
```json {"field_o26":"2023-12-25","field_k42":100} ```
Output contains markdown code fences
{"field_o26":"2023-12-25","field_k42":100}
TASK repair_structured_output SPEC FIELD allele TYPE integer REQUIRED no FIELD timezone TYPE string VALUES mode_a|mode_b|mode_c|mode_d REQUIRED yes FIELD invoice_id TYPE string REQUIRED no FIELD decay_rate TYPE string REQUIRED no BROKEN_OUTPUT {"allele": 214, "timezone": "mode_a", "invoice_id": "Berlin", "extra_info_...
{"allele":214,"timezone":"mode_a","invoice_id":"Berlin"}
extra_field
{ "type": "object", "properties": { "allele": { "type": "integer" }, "timezone": { "type": "string", "enum": [ "mode_a", "mode_b", "mode_c", "mode_d" ] }, "invoice_id": { "type": "string" }, "decay_rate": { "type": "stri...
{"allele": 214, "timezone": "mode_a", "invoice_id": "Berlin", "extra_info_1991": "unexpected"}
Unknown field 'extra_info_1991' not defined in schema
{"allele":214,"timezone":"mode_a","invoice_id":"Berlin"}
TASK repair_structured_output SPEC FIELD key_k86 TYPE string REQUIRED no FIELD attr_q23 TYPE string VALUES mode_a|mode_b|mode_c|mode_d REQUIRED no FIELD col_a42 TYPE number REQUIRED no FIELD attr_r09 TYPE integer REQUIRED yes FIELD key_m75 TYPE integer REQUIRED no FIELD field_r22 TYPE number REQUIRED no FIELD prop_h13...
{"col_a42":620.97,"attr_r09":475,"key_m75":564,"prop_h13":"Silva","key_b61":{"dim_c59":14.16,"key_g69":[{"dim_v98":360,"val_y45":822,"col_q87":"user@domain.org","param_x12":["https://example.com/data","https://example.io/data","https://example.com/v1","https://api.com/api"],"dim_u72":[641.94,556.52,810.31]}]}}
wrong_type
{ "type": "object", "properties": { "key_k86": { "type": "string" }, "attr_q23": { "type": "string", "enum": [ "mode_a", "mode_b", "mode_c", "mode_d" ] }, "col_a42": { "type": "number" }, "attr_r09": { "type": "integer" ...
{"col_a42": 620.97, "attr_r09": 475, "key_m75": "\"564\"", "prop_h13": "Silva", "key_b61": {"dim_c59": 14.16, "key_g69": [{"dim_v98": 360, "val_y45": 822, "col_q87": "user@domain.org", "param_x12": ["https://example.com/data", "https://example.io/data", "https://example.com/v1", "https://api.com/api"], "dim_u72": [641....
Field 'key_m75' must be integer, got string
{"col_a42":620.97,"attr_r09":475,"key_m75":564,"prop_h13":"Silva","key_b61":{"dim_c59":14.16,"key_g69":[{"dim_v98":360,"val_y45":822,"col_q87":"user@domain.org","param_x12":["https://example.com/data","https://example.io/data","https://example.com/v1","https://api.com/api"],"dim_u72":[641.94,556.52,810.31]}]}}
TASK repair_structured_output SPEC FIELD param_i86 TYPE string VALUES mode_a|mode_b|mode_c|mode_d REQUIRED no FIELD param_p52 TYPE string VALUES option_a|option_b|option_c|option_d|option_e|option_f REQUIRED yes FIELD col_j39 TYPE string VALUES active|inactive|pending REQUIRED no FIELD param_c05 TYPE integer REQUIRED ...
{"param_i86":"mode_c","param_p52":"option_d","col_j39":"inactive"}
missing_brace
{ "type": "object", "properties": { "param_i86": { "type": "string", "enum": [ "mode_a", "mode_b", "mode_c", "mode_d" ] }, "param_p52": { "type": "string", "enum": [ "option_a", "option_b", "option_c", "option_...
"param_i86":"mode_c","param_p52":"option_d","col_j39":"inactive"}
Missing closing brace
{"param_i86":"mode_c","param_p52":"option_d","col_j39":"inactive"}
TASK repair_structured_output SPEC FIELD ph_level TYPE string VALUES small|medium|large|xl REQUIRED yes FIELD medication TYPE string VALUES free|basic|pro|enterprise REQUIRED yes FIELD throttle_pos TYPE string_uri REQUIRED yes FIELD collateral TYPE string REQUIRED no BROKEN_OUTPUT call_variants(ph_level='small', medi...
{"ph_level":"small","medication":"basic","throttle_pos":"https://www.org/v1","collateral":"approved"}
tool_call_python_syntax
{ "type": "object", "properties": { "ph_level": { "type": "string", "enum": [ "small", "medium", "large", "xl" ] }, "medication": { "type": "string", "enum": [ "free", "basic", "pro", "enterprise" ] }...
call_variants(ph_level='small', medication='basic', throttle_pos='https://www.org/v1', collateral='approved')
Tool call uses Python syntax instead of JSON
{"ph_level":"small","medication":"basic","throttle_pos":"https://www.org/v1","collateral":"approved"}
TASK repair_structured_output SPEC FIELD label TYPE string_uri REQUIRED yes FIELD type TYPE integer REQUIRED no FIELD batch_code TYPE number REQUIRED no FIELD conductivity TYPE string_email REQUIRED yes BROKEN_OUTPUT <functioncall> get_inventory {label: "https://www.com/data", conductivity: "ops@example.com"}
{"label":"https://www.com/data","conductivity":"ops@example.com"}
tool_call_bad_format
{ "type": "object", "properties": { "label": { "type": "string", "format": "uri" }, "type": { "type": "integer" }, "batch_code": { "type": "number" }, "conductivity": { "type": "string", "format": "email" } }, "required": [ "label", "co...
<functioncall> get_inventory {label: "https://www.com/data", conductivity: "ops@example.com"}
Tool call has malformed arguments — unquoted keys in function parameters
{"label":"https://www.com/data","conductivity":"ops@example.com"}
TASK repair_structured_output SPEC FIELD col_k79 TYPE integer REQUIRED yes FIELD field_i29 TYPE integer REQUIRED no FIELD dim_p46 TYPE integer REQUIRED no FIELD dim_s36 TYPE string VALUES draft|published|archived REQUIRED yes FIELD val_n82 TYPE string VALUES single|married|divorced REQUIRED yes FIELD col_j99 TYPE bool...
{"col_k79":4,"field_i29":283,"dim_p46":977,"dim_s36":"draft","val_n82":"married","param_l81":118,"dim_f73":"hello"}
single_quotes
{ "type": "object", "properties": { "col_k79": { "type": "integer" }, "field_i29": { "type": "integer" }, "dim_p46": { "type": "integer" }, "dim_s36": { "type": "string", "enum": [ "draft", "published", "archived" ] }, "...
{'col_k79':4,'field_i29':283,'dim_p46':977,'dim_s36':'draft','val_n82':'married','param_l81':118,'dim_f73':'hello'}
Expecting property name enclosed in double quotes
{"col_k79":4,"field_i29":283,"dim_p46":977,"dim_s36":"draft","val_n82":"married","param_l81":118,"dim_f73":"hello"}
TASK repair_structured_output SPEC FIELD port_code.company TYPE string VALUES berthed|anchored|underway|moored REQUIRED yes FIELD port_code.nickname.quality_score TYPE integer REQUIRED no FIELD port_code.nickname.priority TYPE number REQUIRED yes FIELD port_code.nickname.quantity TYPE string REQUIRED no FIELD port_cod...
{"port_code":{"company":"berthed","nickname":{"quality_score":573,"priority":766.83,"wavelength":"quux","tags":false,"tax":517.4,"index":"Jane","conductivity":true},"barcode":null,"height":"cancelled","amplitude":"pending"},"type":358,"current_draw":"user@example.com"}
single_quotes
{ "type": "object", "properties": { "port_code": { "type": "object", "properties": { "company": { "type": "string", "enum": [ "berthed", "anchored", "underway", "moored" ] }, "nickname": { ...
{'port_code':{'company':'berthed','nickname':{'quality_score':573,'priority':766.83,'wavelength':'quux','tags':false,'tax':517.4,'index':'Jane','conductivity':true},'barcode':null,'height':'cancelled','amplitude':'pending'},'type':358,'current_draw':'user@example.com'}
Expecting property name enclosed in double quotes
{"port_code":{"company":"berthed","nickname":{"quality_score":573,"priority":766.83,"wavelength":"quux","tags":false,"tax":517.4,"index":"Jane","conductivity":true},"barcode":null,"height":"cancelled","amplitude":"pending"},"type":358,"current_draw":"user@example.com"}
TASK repair_structured_output SPEC FIELD allele TYPE integer REQUIRED yes FIELD full_name TYPE string VALUES level_1|level_2|level_3|level_4 REQUIRED yes FIELD due_date TYPE string VALUES mode_a|mode_b|mode_c|mode_d|mode_e|mode_f REQUIRED yes BROKEN_OUTPUT ```json {"allele":259,"full_name":"level_1","due_date":"mode_...
{"allele":259,"full_name":"level_1","due_date":"mode_d"}
markdown_fences
{ "type": "object", "properties": { "allele": { "type": "integer" }, "full_name": { "type": "string", "enum": [ "level_1", "level_2", "level_3", "level_4" ] }, "due_date": { "type": "string", "enum": [ "mode_a", ...
```json {"allele":259,"full_name":"level_1","due_date":"mode_d"} ```
Output contains markdown code fences
{"allele":259,"full_name":"level_1","due_date":"mode_d"}
TASK repair_structured_output SPEC FIELD date TYPE number REQUIRED yes FIELD size TYPE number REQUIRED yes FIELD lane TYPE string VALUES low|medium|high|critical REQUIRED no FIELD freight_class TYPE string REQUIRED no FIELD wavelength TYPE string VALUES berthed|anchored|underway|moored REQUIRED yes FIELD procedure_cod...
{"date":375.1,"size":22.01,"lane":"high","freight_class":"https://example.com","wavelength":"underway","procedure_code":true,"published":{"deploy_target":"admin@test.io","visible":true,"company":"2020-06-22T11:28:00Z","isotope":"John","dissolved_oxygen":"EUR"}}
tool_call_partial_args
{ "type": "object", "properties": { "date": { "type": "number" }, "size": { "type": "number" }, "lane": { "type": "string", "enum": [ "low", "medium", "high", "critical" ] }, "freight_class": { "type": "string" }, ...
I need to look up the information first. Action: track_vessel Arguments: {"date": 375.1, "lane": "high", "freight_class": "https://example.com", "wavelength": "underway", "procedure_code": true, "published": {"deploy_target": "admin@test.io", "visible": true, "company": "2020-06-22T11:28:00Z", "isotope": "John", "disso...
Agent tool call missing required parameter 'size'
{"date":375.1,"size":22.01,"lane":"high","freight_class":"https://example.com","wavelength":"underway","procedure_code":true,"published":{"deploy_target":"admin@test.io","visible":true,"company":"2020-06-22T11:28:00Z","isotope":"John","dissolved_oxygen":"EUR"}}
TASK repair_structured_output SPEC FIELD key_d11 TYPE string VALUES USD|EUR|GBP|BRL|JPY REQUIRED yes FIELD attr_p42 TYPE boolean REQUIRED yes FIELD dim_u45 TYPE integer REQUIRED no FIELD param_c43 TYPE string REQUIRED no FIELD prop_k35 TYPE string REQUIRED yes FIELD prop_l83 TYPE string REQUIRED no BROKEN_OUTPUT {"ke...
{"key_d11":"JPY","attr_p42":true,"dim_u45":182,"prop_k35":"QC-07","prop_l83":"approved"}
missing_bracket
{ "type": "object", "properties": { "key_d11": { "type": "string", "enum": [ "USD", "EUR", "GBP", "BRL", "JPY" ] }, "attr_p42": { "type": "boolean" }, "dim_u45": { "type": "integer" }, "param_c43": { "type": "str...
{"key_d11":"JPY","attr_p42":true,"dim_u45":182,"prop_k35":"QC-07","prop_l83":"approved"}
Missing closing bracket
{"key_d11":"JPY","attr_p42":true,"dim_u45":182,"prop_k35":"QC-07","prop_l83":"approved"}
TASK repair_structured_output SPEC FIELD param_p69 TYPE boolean REQUIRED yes FIELD attr_k85 TYPE string REQUIRED no FIELD field_n68 TYPE string REQUIRED no FIELD param_u90 TYPE string REQUIRED yes FIELD param_v04 TYPE string REQUIRED yes FIELD param_m14 TYPE string VALUES coastal|oceanic|inland|arctic REQUIRED no FIEL...
{"param_p69":true,"field_n68":"Paris","param_u90":"example","param_v04":"demo","param_m14":"inland"}
markdown_explanation
{ "type": "object", "properties": { "param_p69": { "type": "boolean" }, "attr_k85": { "type": "string" }, "field_n68": { "type": "string" }, "param_u90": { "type": "string" }, "param_v04": { "type": "string" }, "param_m14": { "type": "s...
Here is the response in the requested format: ```json {"param_p69":true,"field_n68":"Paris","param_u90":"example","param_v04":"demo","param_m14":"inland"} ``` Feel free to ask if you have questions.
Output contains markdown and explanatory text around JSON
{"param_p69":true,"field_n68":"Paris","param_u90":"example","param_v04":"demo","param_m14":"inland"}
TASK repair_structured_output SPEC FIELD prop_s43 TYPE boolean REQUIRED yes FIELD attr_h23 TYPE string REQUIRED yes FIELD param_c67.param_l60 TYPE string REQUIRED yes FIELD param_c67.key_j13 TYPE string_uri REQUIRED no FIELD param_c67.field_e14 TYPE string_uri REQUIRED yes FIELD param_c67.attr_r42 TYPE null REQUIRED n...
{"prop_s43":true,"attr_h23":"Jane","param_c67":{"param_l60":"Maria","key_j13":"https://example.io/v1","field_e14":"https://www.org/api","attr_r42":null,"param_v48":"https://data.org/api"},"key_b46":"success","val_f27":559}
extra_field
{ "type": "object", "properties": { "prop_s43": { "type": "boolean" }, "attr_h23": { "type": "string" }, "param_c67": { "type": "object", "properties": { "param_l60": { "type": "string" }, "key_j13": { "type": "string", ...
{"prop_s43": true, "attr_h23": "Jane", "param_c67": {"param_l60": "Maria", "key_j13": "https://example.io/v1", "field_e14": "https://www.org/api", "attr_r42": null, "param_v48": "https://data.org/api"}, "key_b46": "success", "val_f27": 559, "extra_value_7841": 42}
Unknown field 'extra_value_7841' not defined in schema
{"prop_s43":true,"attr_h23":"Jane","param_c67":{"param_l60":"Maria","key_j13":"https://example.io/v1","field_e14":"https://www.org/api","attr_r42":null,"param_v48":"https://data.org/api"},"key_b46":"success","val_f27":559}
TASK repair_structured_output SPEC FIELD key_j20 TYPE string VALUES free|basic|pro|enterprise REQUIRED yes FIELD key_p03 TYPE null REQUIRED no FIELD param_w55 TYPE integer REQUIRED no FIELD param_p13 TYPE string VALUES option_a|option_b|option_c REQUIRED no FIELD dim_e96[] TYPE string REQUIRED yes FIELD dim_i21[] TYPE...
{"key_j20":"basic","key_p03":null,"param_w55":848,"param_p13":"option_a","dim_e96":["Maria"]}
unquoted_keys
{ "type": "object", "properties": { "key_j20": { "type": "string", "enum": [ "free", "basic", "pro", "enterprise" ] }, "key_p03": { "type": "null" }, "param_w55": { "type": "integer" }, "param_p13": { "type": "string", ...
{key_j20:"basic",key_p03:null,param_w55:848,param_p13:"option_a",dim_e96:["Maria"]}
Expecting property name enclosed in double quotes
{"key_j20":"basic","key_p03":null,"param_w55":848,"param_p13":"option_a","dim_e96":["Maria"]}
TASK repair_structured_output SPEC FIELD key_m99 TYPE boolean REQUIRED yes FIELD prop_a79 TYPE string VALUES email|phone|sms|push REQUIRED no FIELD param_t42 TYPE string VALUES level_1|level_2|level_3|level_4|level_5|level_6 REQUIRED no FIELD param_y45 TYPE string VALUES mode_a|mode_b|mode_c|mode_d REQUIRED no FIELD d...
{"key_m99":true,"prop_a79":"sms","param_y45":"mode_a","dim_b01":"https://example.io/api","col_j74":631.73}
truncated_array
{ "type": "object", "properties": { "key_m99": { "type": "boolean" }, "prop_a79": { "type": "string", "enum": [ "email", "phone", "sms", "push" ] }, "param_t42": { "type": "string", "enum": [ "level_1", "level_2"...
{"key_m99":true,"prop_a79":"sms","param_y45":"mode_a","dim_b01":"https://example.io/api","col_j74":631.73
Unexpected end of JSON input — truncated object
{"key_m99":true,"prop_a79":"sms","param_y45":"mode_a","dim_b01":"https://example.io/api","col_j74":631.73}
TASK repair_structured_output SPEC FIELD val_u05 TYPE string VALUES option_a|option_b REQUIRED yes FIELD field_l17 TYPE string_date-time REQUIRED yes FIELD prop_i13 TYPE string VALUES mode_a|mode_b|mode_c|mode_d|mode_e|mode_f REQUIRED no BROKEN_OUTPUT {"field_l17": "2025-12-02T19:12:00Z", "prop_i13": "mode_f"}
{"val_u05":"option_a","field_l17":"2025-12-02T19:12:00Z","prop_i13":"mode_f"}
missing_required
{ "type": "object", "properties": { "val_u05": { "type": "string", "enum": [ "option_a", "option_b" ] }, "field_l17": { "type": "string", "format": "date-time" }, "prop_i13": { "type": "string", "enum": [ "mode_a", "mode_b...
{"field_l17": "2025-12-02T19:12:00Z", "prop_i13": "mode_f"}
Required field 'val_u05' is missing
{"val_u05":"option_a","field_l17":"2025-12-02T19:12:00Z","prop_i13":"mode_f"}
TASK repair_structured_output SPEC FIELD published TYPE string_email REQUIRED yes FIELD product_id TYPE string REQUIRED no FIELD salinity TYPE string VALUES new|in_transit|delivered|returned REQUIRED no BROKEN_OUTPUT calculate_price(published='ops@test.io', product_id='bar', salinity='delivered')
{"published":"ops@test.io","product_id":"bar","salinity":"delivered"}
tool_call_python_syntax
{ "type": "object", "properties": { "published": { "type": "string", "format": "email" }, "product_id": { "type": "string" }, "salinity": { "type": "string", "enum": [ "new", "in_transit", "delivered", "returned" ] } }, ...
calculate_price(published='ops@test.io', product_id='bar', salinity='delivered')
Tool call uses Python syntax instead of JSON
{"published":"ops@test.io","product_id":"bar","salinity":"delivered"}
TASK repair_structured_output SPEC FIELD field_w62 TYPE string REQUIRED no FIELD prop_y28.attr_g87 TYPE string_uri REQUIRED no FIELD prop_y28.col_r86.field_p43 TYPE integer REQUIRED no FIELD prop_y28.col_r86.prop_f08 TYPE null REQUIRED no FIELD prop_y28.col_r86.key_l68 TYPE boolean REQUIRED yes FIELD prop_y28.dim_y02 ...
{"prop_y28":{"col_r86":{"field_p43":141,"key_l68":false},"dim_y02":"Silva"},"col_o55":true,"attr_g45":"info@test.io","dim_s54":{"dim_f87":"level_1","field_b81":"2024-01-15","val_m35":false,"dim_s38":311},"prop_q98":"qux"}
trailing_comma
{ "type": "object", "properties": { "field_w62": { "type": "string" }, "prop_y28": { "type": "object", "properties": { "attr_g87": { "type": "string", "format": "uri" }, "col_r86": { "type": "object", "properties": { ...
{"prop_y28":{"col_r86":{"field_p43":141,"key_l68":false,},"dim_y02":"Silva"},"col_o55":true,"attr_g45":"info@test.io","dim_s54":{"dim_f87":"level_1","field_b81":"2024-01-15","val_m35":false,"dim_s38":311},"prop_q98":"qux"}
Unexpected trailing comma
{"prop_y28":{"col_r86":{"field_p43":141,"key_l68":false},"dim_y02":"Silva"},"col_o55":true,"attr_g45":"info@test.io","dim_s54":{"dim_f87":"level_1","field_b81":"2024-01-15","val_m35":false,"dim_s38":311},"prop_q98":"qux"}
TASK repair_structured_output SPEC FIELD description TYPE string VALUES cat_a|cat_b|cat_c|cat_d|cat_e|cat_f REQUIRED yes FIELD torque_output TYPE string VALUES type_a|type_b|type_c REQUIRED no FIELD address TYPE number REQUIRED no FIELD account_id TYPE string REQUIRED yes BROKEN_OUTPUT {"description":"cat_c","torque_...
{"description":"cat_c","torque_output":"type_b","address":957.02,"account_id":"quux"}
missing_brace
{ "type": "object", "properties": { "description": { "type": "string", "enum": [ "cat_a", "cat_b", "cat_c", "cat_d", "cat_e", "cat_f" ] }, "torque_output": { "type": "string", "enum": [ "type_a", "type_b", ...
{"description":"cat_c","torque_output":"type_b","address":957.02,"account_id":"quux"
Missing closing brace
{"description":"cat_c","torque_output":"type_b","address":957.02,"account_id":"quux"}
TASK repair_structured_output SPEC FIELD level TYPE string REQUIRED no FIELD color TYPE string REQUIRED no FIELD title TYPE string VALUES level_1|level_2|level_3 REQUIRED no FIELD phenotype TYPE string REQUIRED no FIELD dosage TYPE string VALUES mode_a|mode_b|mode_c|mode_d|mode_e REQUIRED no FIELD state TYPE null REQU...
{"color":"chr1","title":"level_2","phenotype":"hello","state":null}
extra_field
{ "type": "object", "properties": { "level": { "type": "string" }, "color": { "type": "string" }, "title": { "type": "string", "enum": [ "level_1", "level_2", "level_3" ] }, "phenotype": { "type": "string" }, "dosage": {...
{"color": "chr1", "title": "level_2", "phenotype": "hello", "state": null, "extra_value_2873": "unexpected"}
Unknown field 'extra_value_2873' not defined in schema
{"color":"chr1","title":"level_2","phenotype":"hello","state":null}
TASK repair_structured_output SPEC FIELD department TYPE integer REQUIRED no FIELD humidity_pct TYPE string_uri REQUIRED yes FIELD verified TYPE string REQUIRED no FIELD build_status.level TYPE string VALUES synonymous|missense|nonsense|frameshift REQUIRED no FIELD build_status.insurance_id TYPE string VALUES email|ph...
{"humidity_pct":"https://data.io/api","verified":"test","build_status":{"insurance_id":"sms","image_url":"small","build_status":"qux","organism":"Berlin","procedure_code":"archived","id":"FWD"},"medication":816.79,"priority":true,"brake_pressure":{"shift_code":"info","color":182,"end_date":"published"}}
boolean_as_string
{ "type": "object", "properties": { "department": { "type": "integer" }, "humidity_pct": { "type": "string", "format": "uri" }, "verified": { "type": "string" }, "build_status": { "type": "object", "properties": { "level": { "type": "...
{"humidity_pct": "https://data.io/api", "verified": "test", "build_status": {"insurance_id": "sms", "image_url": "small", "build_status": "qux", "organism": "Berlin", "procedure_code": "archived", "id": "FWD"}, "medication": 816.79, "priority": "False", "brake_pressure": {"shift_code": "info", "color": 182, "end_date":...
Field 'priority' must be boolean, got string
{"humidity_pct":"https://data.io/api","verified":"test","build_status":{"insurance_id":"sms","image_url":"small","build_status":"qux","organism":"Berlin","procedure_code":"archived","id":"FWD"},"medication":816.79,"priority":true,"brake_pressure":{"shift_code":"info","color":182,"end_date":"published"}}
TASK repair_structured_output SPEC FIELD deploy_target TYPE string VALUES berthed|anchored|underway|moored REQUIRED no FIELD payment_status TYPE string VALUES small|medium|large|xl REQUIRED yes FIELD catalyst TYPE string REQUIRED yes FIELD country TYPE string REQUIRED yes BROKEN_OUTPUT Analyzing the sensor data to ge...
{"payment_status":"large","catalyst":"A short description.","country":"active"}
thought_process
{ "type": "object", "properties": { "deploy_target": { "type": "string", "enum": [ "berthed", "anchored", "underway", "moored" ] }, "payment_status": { "type": "string", "enum": [ "small", "medium", "large", "x...
Analyzing the sensor data to generate the output. I'll apply the required format first. {"payment_status":"large","catalyst":"A short description.","country":"active"}
Output contains chain-of-thought reasoning before JSON
{"payment_status":"large","catalyst":"A short description.","country":"active"}
TASK repair_structured_output SPEC FIELD val_y74 TYPE string VALUES free|basic|pro|enterprise REQUIRED yes FIELD prop_e49 TYPE boolean REQUIRED no FIELD param_w19.col_j60 TYPE string VALUES admin|editor|viewer REQUIRED yes FIELD param_w19.col_m33.prop_i37 TYPE boolean REQUIRED yes FIELD param_w19.col_m33.col_n74 TYPE ...
{"val_y74":"enterprise","prop_e49":false}
boolean_as_string
{ "type": "object", "properties": { "val_y74": { "type": "string", "enum": [ "free", "basic", "pro", "enterprise" ] }, "prop_e49": { "type": "boolean" }, "param_w19": { "type": "object", "properties": { "col_j60": { ...
{"val_y74": "enterprise", "prop_e49": "True"}
Field 'prop_e49' must be boolean, got string
{"val_y74":"enterprise","prop_e49":false}
TASK repair_structured_output SPEC FIELD col_r49.val_z40.prop_a95 TYPE string VALUES red|blue|green|black|white REQUIRED no FIELD col_r49.val_z40.param_y01 TYPE string VALUES mode_a|mode_b|mode_c|mode_d|mode_e|mode_f REQUIRED no FIELD col_r49.val_z40.param_x27 TYPE string REQUIRED yes FIELD col_r49.val_z40.attr_z70 TY...
{"col_r49":{"val_z40":{"prop_a95":"green","param_y01":"mode_a","param_x27":"qux","attr_z70":"Hapag-Lloyd-Express","field_p06":586.55,"field_t28":"inactive","val_z27":"This is a test value."},"param_a43":384.83},"param_g67":"info","col_e65":"active","col_y23":978,"attr_z08":"cat_a","attr_l91":null}
tool_call_partial_args
{ "type": "object", "properties": { "col_r49": { "type": "object", "properties": { "val_z40": { "type": "object", "properties": { "prop_a95": { "type": "string", "enum": [ "red", "blue", ...
I need to look up the information first. Action: apply_discount Arguments: {"col_r49": {"val_z40": {"prop_a95": "green", "param_y01": "mode_a", "param_x27": "qux", "attr_z70": "Hapag-Lloyd-Express", "field_p06": 586.55, "field_t28": "inactive", "val_z27": "This is a test value."}, "param_a43": 384.83}, "param_g67": "in...
Agent tool call missing required parameter 'col_e65'
{"col_r49":{"val_z40":{"prop_a95":"green","param_y01":"mode_a","param_x27":"qux","attr_z70":"Hapag-Lloyd-Express","field_p06":586.55,"field_t28":"inactive","val_z27":"This is a test value."},"param_a43":384.83},"param_g67":"info","col_e65":"active","col_y23":978,"attr_z08":"cat_a","attr_l91":null}
TASK repair_structured_output SPEC FIELD status TYPE integer REQUIRED yes FIELD catalyst TYPE string REQUIRED yes FIELD allele.duration_ms TYPE string VALUES type_a|type_b REQUIRED yes FIELD allele.brake_pressure TYPE string_uri REQUIRED yes FIELD allele.annotation TYPE string_uri REQUIRED yes FIELD allele.port_code T...
{"status":638,"catalyst":"user@domain.com","allele":{"duration_ms":"type_b","brake_pressure":"https://data.com/v1","annotation":"https://www.com/api","port_code":"admin@example.com","compound":626.99},"bill_of_lading":{"index":"reliable","company":731,"diagnosis_code":false,"currency":"option_b"}}
missing_bracket
{ "type": "object", "properties": { "status": { "type": "integer" }, "catalyst": { "type": "string" }, "allele": { "type": "object", "properties": { "duration_ms": { "type": "string", "enum": [ "type_a", "type_b" ...
{"status":638,"catalyst":"user@domain.com","allele":{"duration_ms":"type_b","brake_pressure":"https://data.com/v1","annotation":"https://www.com/api","port_code":"admin@example.com","compound":626.99},"bill_of_lading":{"index":"reliable","company":731,"diagnosis_code":false,"currency":"option_b"}}
Missing closing bracket
{"status":638,"catalyst":"user@domain.com","allele":{"duration_ms":"type_b","brake_pressure":"https://data.com/v1","annotation":"https://www.com/api","port_code":"admin@example.com","compound":626.99},"bill_of_lading":{"index":"reliable","company":731,"diagnosis_code":false,"currency":"option_b"}}
TASK repair_structured_output SPEC FIELD index TYPE string REQUIRED yes FIELD temp_celsius TYPE string VALUES USD|EUR|GBP|BRL|JPY REQUIRED yes FIELD build_status TYPE string VALUES USD|EUR|GBP|BRL|JPY REQUIRED yes FIELD lab_result TYPE number REQUIRED no FIELD department TYPE string REQUIRED no FIELD shift_code TYPE s...
{"index":"foo","temp_celsius":"BRL","build_status":"JPY","lab_result":421.14,"department":"Johnson","shift_code":"success"}
extra_text_before
{ "type": "object", "properties": { "index": { "type": "string" }, "temp_celsius": { "type": "string", "enum": [ "USD", "EUR", "GBP", "BRL", "JPY" ] }, "build_status": { "type": "string", "enum": [ "USD", ...
Sure, here's the result: {"index":"foo","temp_celsius":"BRL","build_status":"JPY","lab_result":421.14,"department":"Johnson","shift_code":"success"}
Output contains non-JSON text before the object
{"index":"foo","temp_celsius":"BRL","build_status":"JPY","lab_result":421.14,"department":"Johnson","shift_code":"success"}
TASK repair_structured_output SPEC FIELD val_y43 TYPE string REQUIRED yes FIELD key_t91 TYPE integer REQUIRED no FIELD key_p13.dim_l49 TYPE string VALUES type_a|type_b REQUIRED no FIELD key_p13.key_g98 TYPE string VALUES level_1|level_2|level_3|level_4|level_5 REQUIRED no FIELD key_p13.field_f32 TYPE string VALUES opt...
{"val_y43":"completed","key_p13":{"dim_l49":"type_b","field_f32":"option_b","param_v79":true,"param_m39":"RTG-04","key_u84":358,"param_i91":null},"col_m44":"type_c","key_b04":386}
missing_bracket
{ "type": "object", "properties": { "val_y43": { "type": "string" }, "key_t91": { "type": "integer" }, "key_p13": { "type": "object", "properties": { "dim_l49": { "type": "string", "enum": [ "type_a", "type_b" ...
{"val_y43":"completed","key_p13":{"dim_l49":"type_b","field_f32":"option_b","param_v79":true,"param_m39":"RTG-04","key_u84":358,"param_i91":null},"col_m44":"type_c","key_b04":386}
Missing closing bracket
{"val_y43":"completed","key_p13":{"dim_l49":"type_b","field_f32":"option_b","param_v79":true,"param_m39":"RTG-04","key_u84":358,"param_i91":null},"col_m44":"type_c","key_b04":386}
TASK repair_structured_output SPEC FIELD length TYPE boolean REQUIRED no FIELD order_id TYPE integer REQUIRED no FIELD chromosome TYPE boolean REQUIRED no FIELD username TYPE boolean REQUIRED no FIELD level TYPE integer REQUIRED yes BROKEN_OUTPUT I need to look up the information first. Action: update_record Argument...
{"chromosome":false,"username":false,"level":461}
tool_call_partial_args
{ "type": "object", "properties": { "length": { "type": "boolean" }, "order_id": { "type": "integer" }, "chromosome": { "type": "boolean" }, "username": { "type": "boolean" }, "level": { "type": "integer" } }, "required": [ "level" ] }
I need to look up the information first. Action: update_record Arguments: {"chromosome": false, "username": false}
Agent tool call missing required parameter 'level'
{"chromosome":false,"username":false,"level":461}
TASK repair_structured_output SPEC FIELD voltage TYPE string VALUES homozygous|heterozygous|hemizygous REQUIRED no FIELD amount TYPE string VALUES free|basic|pro|enterprise REQUIRED yes FIELD nickname[] TYPE string REQUIRED no FIELD filter_flag[].payment_status TYPE string REQUIRED no FIELD filter_flag[].dosage TYPE s...
{"voltage":"hemizygous","amount":"pro","nickname":["FWD"],"filter_flag":[{"dosage":"London","date":"viewer","size":917},{"payment_status":"Silva","dosage":"Bob","country":"test@domain.org","date":"admin","size":30}]}
markdown_fences
{ "type": "object", "properties": { "voltage": { "type": "string", "enum": [ "homozygous", "heterozygous", "hemizygous" ] }, "amount": { "type": "string", "enum": [ "free", "basic", "pro", "enterprise" ] }, ...
```json {"voltage":"hemizygous","amount":"pro","nickname":["FWD"],"filter_flag":[{"dosage":"London","date":"viewer","size":917},{"payment_status":"Silva","dosage":"Bob","country":"test@domain.org","date":"admin","size":30}]} ```
Output contains markdown code fences
{"voltage":"hemizygous","amount":"pro","nickname":["FWD"],"filter_flag":[{"dosage":"London","date":"viewer","size":917},{"payment_status":"Silva","dosage":"Bob","country":"test@domain.org","date":"admin","size":30}]}
TASK repair_structured_output SPEC FIELD updated_at TYPE string_email REQUIRED no FIELD version TYPE string_date-time REQUIRED yes FIELD latitude TYPE string VALUES level_1|level_2|level_3|level_4|level_5|level_6 REQUIRED yes FIELD invoice_id TYPE string VALUES red|blue|green|black|white REQUIRED no FIELD published TY...
{"version":"2020-01-06T20:58:00Z","latitude":"level_4","invoice_id":"black","published":"mode_d","username":180.9,"span_id":false}
truncated_array
{ "type": "object", "properties": { "updated_at": { "type": "string", "format": "email" }, "version": { "type": "string", "format": "date-time" }, "latitude": { "type": "string", "enum": [ "level_1", "level_2", "level_3", "level...
{"version":"2020-01-06T20:58:00Z","latitude":"level_4","invoice_id":"black","published":"mode_d","username":180.9,"span_id":false
Unexpected end of JSON input — truncated object
{"version":"2020-01-06T20:58:00Z","latitude":"level_4","invoice_id":"black","published":"mode_d","username":180.9,"span_id":false}
TASK repair_structured_output SPEC FIELD nickname TYPE null REQUIRED yes FIELD updated_at TYPE null REQUIRED yes FIELD longitude TYPE boolean REQUIRED no BROKEN_OUTPUT I need to look up the information first. Action: send_email Result: {"nickname": null, "updated_at": null} Processing the request now. Action: calcul...
{"nickname":null,"updated_at":null,"longitude":false}
agent_chain
{ "type": "object", "properties": { "nickname": { "type": "null" }, "updated_at": { "type": "null" }, "longitude": { "type": "boolean" } }, "required": [ "nickname", "updated_at" ] }
I need to look up the information first. Action: send_email Result: {"nickname": null, "updated_at": null} Processing the request now. Action: calculate_price Result:
Agent multi-step chain with truncated tool output
{"nickname":null,"updated_at":null,"longitude":false}
TASK repair_structured_output SPEC FIELD length TYPE boolean REQUIRED no FIELD coverage TYPE string VALUES mode_a|mode_b REQUIRED no FIELD subtotal TYPE boolean REQUIRED no FIELD label TYPE number REQUIRED yes BROKEN_OUTPUT {"length":true,"coverage":"mode_a","subtotal":true,"label":532.97
{"length":true,"coverage":"mode_a","subtotal":true,"label":532.97}
truncated_array
{ "type": "object", "properties": { "length": { "type": "boolean" }, "coverage": { "type": "string", "enum": [ "mode_a", "mode_b" ] }, "subtotal": { "type": "boolean" }, "label": { "type": "number" } }, "required": [ "label"...
{"length":true,"coverage":"mode_a","subtotal":true,"label":532.97
Unexpected end of JSON input — truncated object
{"length":true,"coverage":"mode_a","subtotal":true,"label":532.97}
TASK repair_structured_output SPEC FIELD prop_t16 TYPE string VALUES free|basic|pro|enterprise REQUIRED yes FIELD val_s58 TYPE null REQUIRED no FIELD val_d86 TYPE string REQUIRED yes FIELD field_y94 TYPE boolean REQUIRED no BROKEN_OUTPUT {"prop_t16": "invalid_choice_693", "val_d86": "Bob", "field_y94": true}
{"prop_t16":"pro","val_d86":"Bob","field_y94":true}
invalid_enum
{ "type": "object", "properties": { "prop_t16": { "type": "string", "enum": [ "free", "basic", "pro", "enterprise" ] }, "val_s58": { "type": "null" }, "val_d86": { "type": "string" }, "field_y94": { "type": "boolean" ...
{"prop_t16": "invalid_choice_693", "val_d86": "Bob", "field_y94": true}
Field 'prop_t16' has invalid enum value 'invalid_choice_693', expected one of ['free', 'basic', 'pro', 'enterprise']
{"prop_t16":"pro","val_d86":"Bob","field_y94":true}
TASK repair_structured_output SPEC FIELD terminal_id TYPE string VALUES pending_review|confirmed|rejected|escalated REQUIRED no FIELD current_draw TYPE string VALUES level_1|level_2|level_3|level_4 REQUIRED no FIELD interest_rate TYPE string VALUES cat_a|cat_b|cat_c|cat_d REQUIRED no FIELD longitude TYPE string_uri RE...
{"terminal_id":"rejected","current_draw":"level_3","interest_rate":"cat_d","longitude":"https://data.org/api","description":false,"run_id":"operational","payment_status":true}
missing_required
{ "type": "object", "properties": { "terminal_id": { "type": "string", "enum": [ "pending_review", "confirmed", "rejected", "escalated" ] }, "current_draw": { "type": "string", "enum": [ "level_1", "level_2", "level_3"...
{"terminal_id": "rejected", "current_draw": "level_3", "interest_rate": "cat_d", "description": false, "run_id": "operational", "payment_status": true}
Required field 'longitude' is missing
{"terminal_id":"rejected","current_draw":"level_3","interest_rate":"cat_d","longitude":"https://data.org/api","description":false,"run_id":"operational","payment_status":true}
TASK repair_structured_output SPEC FIELD verified TYPE integer REQUIRED yes FIELD transaction_id TYPE boolean REQUIRED yes FIELD bed_number TYPE number REQUIRED no FIELD pressure_kpa TYPE boolean REQUIRED yes FIELD version[].weight TYPE string_uri REQUIRED no FIELD version[].lane TYPE number REQUIRED no FIELD version[...
{"verified":402,"transaction_id":false,"pressure_kpa":false,"version":[{"weight":"https://api.io/data","lane":521.2,"due_date":"user@domain.com","name":"low","ward":"sample","amplitude":108,"account_id":false,"patient_id":"2020-07-14T18:09:00Z"},{"due_date":"QC-07","name":"medium","ward":"cancelled","amplitude":478,"ac...
extra_text_before
{ "type": "object", "properties": { "verified": { "type": "integer" }, "transaction_id": { "type": "boolean" }, "bed_number": { "type": "number" }, "pressure_kpa": { "type": "boolean" }, "version": { "type": "array", "items": { "type": ...
Here is the JSON you requested: {"verified":402,"transaction_id":false,"pressure_kpa":false,"version":[{"weight":"https://api.io/data","lane":521.2,"due_date":"user@domain.com","name":"low","ward":"sample","amplitude":108,"account_id":false,"patient_id":"2020-07-14T18:09:00Z"},{"due_date":"QC-07","name":"medium","ward"...
Output contains non-JSON text before the object
{"verified":402,"transaction_id":false,"pressure_kpa":false,"version":[{"weight":"https://api.io/data","lane":521.2,"due_date":"user@domain.com","name":"low","ward":"sample","amplitude":108,"account_id":false,"patient_id":"2020-07-14T18:09:00Z"},{"due_date":"QC-07","name":"medium","ward":"cancelled","amplitude":478,"ac...
TASK repair_structured_output SPEC FIELD col_a42 TYPE string_date-time REQUIRED no FIELD field_q65 TYPE number REQUIRED no FIELD key_c35 TYPE integer REQUIRED no FIELD param_m29 TYPE string REQUIRED no FIELD param_c46 TYPE string VALUES low|medium|high|critical REQUIRED yes FIELD key_f91 TYPE number REQUIRED no FIELD ...
{"col_a42":"2024-08-23T23:15:00Z","field_q65":830.41,"key_c35":85,"param_m29":"user@domain.com","param_c46":"critical","key_f91":706.02,"field_o00":"https://data.com/v1"}
invalid_enum
{ "type": "object", "properties": { "col_a42": { "type": "string", "format": "date-time" }, "field_q65": { "type": "number" }, "key_c35": { "type": "integer" }, "param_m29": { "type": "string" }, "param_c46": { "type": "string", "enum": [...
{"col_a42": "2024-08-23T23:15:00Z", "field_q65": 830.41, "key_c35": 85, "param_m29": "user@domain.com", "param_c46": "invalid_choice_78", "key_f91": 706.02, "field_o00": "https://data.com/v1"}
Field 'param_c46' has invalid enum value 'invalid_choice_78', expected one of ['low', 'medium', 'high', 'critical']
{"col_a42":"2024-08-23T23:15:00Z","field_q65":830.41,"key_c35":85,"param_m29":"user@domain.com","param_c46":"critical","key_f91":706.02,"field_o00":"https://data.com/v1"}
TASK repair_structured_output SPEC FIELD key_d21 TYPE string REQUIRED yes FIELD key_w35 TYPE boolean REQUIRED no FIELD field_t46 TYPE string REQUIRED no FIELD val_n45 TYPE string REQUIRED no FIELD val_w68 TYPE string VALUES level_1|level_2|level_3|level_4 REQUIRED no FIELD field_w10 TYPE string_uri REQUIRED no FIELD k...
{"key_d21":"REV","key_w35":true,"val_n45":"completed","val_w68":"level_3","key_e90":"https://api.org/data","field_n54":{"prop_c43":{"val_z00":"QC-07","prop_y34":620,"prop_v77":932.35,"prop_z07":"completed","val_e48":"https://data.io/v1","prop_s27":311},"field_k70":858,"prop_f46":"cancelled","val_v15":"user@test.io","pr...
missing_brace
{ "type": "object", "properties": { "key_d21": { "type": "string" }, "key_w35": { "type": "boolean" }, "field_t46": { "type": "string" }, "val_n45": { "type": "string" }, "val_w68": { "type": "string", "enum": [ "level_1", "leve...
{"key_d21":"REV","key_w35":true,"val_n45":"completed","val_w68":"level_3","key_e90":"https://api.org/data","field_n54":{"prop_c43":{"val_z00":"QC-07","prop_y34":620,"prop_v77":932.35,"prop_z07":"completed","val_e48":"https://data.io/v1","prop_s27":311},"field_k70":858,"prop_f46":"cancelled","val_v15":"user@test.io","pr...
Missing closing brace
{"key_d21":"REV","key_w35":true,"val_n45":"completed","val_w68":"level_3","key_e90":"https://api.org/data","field_n54":{"prop_c43":{"val_z00":"QC-07","prop_y34":620,"prop_v77":932.35,"prop_z07":"completed","val_e48":"https://data.io/v1","prop_s27":311},"field_k70":858,"prop_f46":"cancelled","val_v15":"user@test.io","pr...
TASK repair_structured_output SPEC FIELD key_q78 TYPE string VALUES berthed|anchored|underway|moored REQUIRED yes FIELD param_z39 TYPE string REQUIRED no FIELD col_d55 TYPE integer REQUIRED no FIELD attr_o94 TYPE string VALUES mode_a|mode_b|mode_c|mode_d REQUIRED no FIELD prop_g42 TYPE null REQUIRED no FIELD key_h52 T...
{"key_q78":"anchored","param_z39":"world","col_d55":616,"prop_g42":null,"key_h52":null,"col_f53":"A short description."}
missing_brace
{ "type": "object", "properties": { "key_q78": { "type": "string", "enum": [ "berthed", "anchored", "underway", "moored" ] }, "param_z39": { "type": "string" }, "col_d55": { "type": "integer" }, "attr_o94": { "type": "st...
{"key_q78":"anchored","param_z39":"world","col_d55":616,"prop_g42":null,"key_h52":null,"col_f53":"A short description."
Missing closing brace
{"key_q78":"anchored","param_z39":"world","col_d55":616,"prop_g42":null,"key_h52":null,"col_f53":"A short description."}
TASK repair_structured_output SPEC FIELD dim_p53.key_z85 TYPE string VALUES coastal|oceanic|inland|arctic REQUIRED no FIELD dim_p53.dim_z68 TYPE integer REQUIRED no FIELD dim_p53.val_k51 TYPE string_uri REQUIRED yes FIELD dim_p53.val_l26 TYPE integer REQUIRED no FIELD dim_p53.key_z83 TYPE string_uri REQUIRED yes FIELD...
{"dim_p53":{"dim_z68":912,"val_k51":"https://api.io/v1","key_z83":"https://example.org/api","attr_g63":"critical"},"prop_h04":452,"col_k72":true,"attr_q86":"chr1","val_h25":true,"col_f25":{"field_i23":"pending_review","col_j40":"foo","attr_j11":{"key_q33":"ops@domain.org","attr_x85":"unstable","prop_c04":"2023-12-25","...
markdown_fences
{ "type": "object", "properties": { "dim_p53": { "type": "object", "properties": { "key_z85": { "type": "string", "enum": [ "coastal", "oceanic", "inland", "arctic" ] }, "dim_z68": { "type...
```json {"dim_p53":{"dim_z68":912,"val_k51":"https://api.io/v1","key_z83":"https://example.org/api","attr_g63":"critical"},"prop_h04":452,"col_k72":true,"attr_q86":"chr1","val_h25":true,"col_f25":{"field_i23":"pending_review","col_j40":"foo","attr_j11":{"key_q33":"ops@domain.org","attr_x85":"unstable","prop_c04":"2023-...
Output contains markdown code fences
{"dim_p53":{"dim_z68":912,"val_k51":"https://api.io/v1","key_z83":"https://example.org/api","attr_g63":"critical"},"prop_h04":452,"col_k72":true,"attr_q86":"chr1","val_h25":true,"col_f25":{"field_i23":"pending_review","col_j40":"foo","attr_j11":{"key_q33":"ops@domain.org","attr_x85":"unstable","prop_c04":"2023-12-25","...
TASK repair_structured_output SPEC FIELD field_l34 TYPE integer REQUIRED yes FIELD val_u10 TYPE integer REQUIRED no FIELD key_m08 TYPE string REQUIRED no FIELD key_z14 TYPE string REQUIRED no BROKEN_OUTPUT {"field_l34": "545MB", "key_m08": "bar", "key_z14": "Johnson"}
{"field_l34":545,"key_m08":"bar","key_z14":"Johnson"}
number_with_unit
{ "type": "object", "properties": { "field_l34": { "type": "integer" }, "val_u10": { "type": "integer" }, "key_m08": { "type": "string" }, "key_z14": { "type": "string" } }, "required": [ "field_l34" ] }
{"field_l34": "545MB", "key_m08": "bar", "key_z14": "Johnson"}
Field 'field_l34' must be number, got string with unit
{"field_l34":545,"key_m08":"bar","key_z14":"Johnson"}
TASK repair_structured_output SPEC FIELD length TYPE number REQUIRED yes FIELD fleet_number.current_draw TYPE null REQUIRED no FIELD fleet_number.thumbnail TYPE null REQUIRED no FIELD fleet_number.weight TYPE integer REQUIRED yes FIELD fleet_number.allele.tax TYPE string_email REQUIRED yes FIELD fleet_number.allele.sp...
{"length":980.21,"fleet_number":{"current_draw":null,"thumbnail":null,"weight":385,"allele":{"tax":"ops@domain.org","date":329,"order_id":"2024-06-30"}},"chapter":{"organism":178.19,"city":"user@domain.com","discount":"married","medication":true,"pressure_kpa":"Sao Paulo"}}
tool_call_bad_format
{ "type": "object", "properties": { "length": { "type": "number" }, "fleet_number": { "type": "object", "properties": { "current_draw": { "type": "null" }, "thumbnail": { "type": "null" }, "weight": { "type": "intege...
<functioncall> check_cargo_manifest {length: 980.21, fleet_number: {current_draw: null, thumbnail: null, weight: 385, allele: {tax: "ops@domain.org", date: 329, order_id: "2024-06-30"}}, chapter: {organism: 178.19, city: "user@domain.com", discount: "married", medication: true, pressure_kpa: "Sao Paulo"}}
Tool call has malformed arguments — unquoted keys in function parameters
{"length":980.21,"fleet_number":{"current_draw":null,"thumbnail":null,"weight":385,"allele":{"tax":"ops@domain.org","date":329,"order_id":"2024-06-30"}},"chapter":{"organism":178.19,"city":"user@domain.com","discount":"married","medication":true,"pressure_kpa":"Sao Paulo"}}
TASK repair_structured_output SPEC FIELD val_o18 TYPE string VALUES option_a|option_b|option_c|option_d|option_e|option_f REQUIRED no FIELD prop_x22 TYPE null REQUIRED yes FIELD col_n29 TYPE number REQUIRED no BROKEN_OUTPUT I need to look up the information first. Action: align_reads Result: {"val_o18": "option_c", "...
{"val_o18":"option_c","prop_x22":null,"col_n29":206.67}
agent_chain
{ "type": "object", "properties": { "val_o18": { "type": "string", "enum": [ "option_a", "option_b", "option_c", "option_d", "option_e", "option_f" ] }, "prop_x22": { "type": "null" }, "col_n29": { "type": "number" ...
I need to look up the information first. Action: align_reads Result: {"val_o18": "option_c", "col_n29": 206.67} I'll query our database. Action: process_payment Result:
Agent multi-step chain with truncated tool output
{"val_o18":"option_c","prop_x22":null,"col_n29":206.67}
TASK repair_structured_output SPEC FIELD prop_b05 TYPE string VALUES draft|published|archived REQUIRED yes FIELD val_b33 TYPE string_date-time REQUIRED no FIELD param_c07 TYPE string VALUES pending_review|confirmed|rejected|escalated REQUIRED yes FIELD col_i03 TYPE number REQUIRED no BROKEN_OUTPUT "prop_b05":"publish...
{"prop_b05":"published","val_b33":"2021-10-21T20:51:00Z","param_c07":"pending_review"}
missing_brace
{ "type": "object", "properties": { "prop_b05": { "type": "string", "enum": [ "draft", "published", "archived" ] }, "val_b33": { "type": "string", "format": "date-time" }, "param_c07": { "type": "string", "enum": [ "pendin...
"prop_b05":"published","val_b33":"2021-10-21T20:51:00Z","param_c07":"pending_review"}
Missing closing brace
{"prop_b05":"published","val_b33":"2021-10-21T20:51:00Z","param_c07":"pending_review"}
TASK repair_structured_output SPEC FIELD key_v16 TYPE number REQUIRED yes FIELD field_n67 TYPE string VALUES draft|published|archived REQUIRED no FIELD param_n58 TYPE number REQUIRED no BROKEN_OUTPUT I need to check the port status before assigning the berth. Let me verify the cargo manifest. {"key_v16":547.89,"fiel...
{"key_v16":547.89,"field_n67":"archived","param_n58":873.23}
thought_process
{ "type": "object", "properties": { "key_v16": { "type": "number" }, "field_n67": { "type": "string", "enum": [ "draft", "published", "archived" ] }, "param_n58": { "type": "number" } }, "required": [ "key_v16" ] }
I need to check the port status before assigning the berth. Let me verify the cargo manifest. {"key_v16":547.89,"field_n67":"archived","param_n58":873.23}
Output contains chain-of-thought reasoning before JSON
{"key_v16":547.89,"field_n67":"archived","param_n58":873.23}
TASK repair_structured_output SPEC FIELD field_q55 TYPE string VALUES reliable|unstable|intermittent REQUIRED yes FIELD dim_o02.dim_k43 TYPE string VALUES operational|degraded|offline|maintenance REQUIRED yes FIELD dim_o02.attr_l84 TYPE integer REQUIRED no FIELD dim_o02.col_u09 TYPE string_date-time REQUIRED yes FIELD...
{"field_q55":"reliable","dim_o02":{"dim_k43":"degraded","col_u09":"2023-04-15T09:18:00Z","attr_r56":true,"field_y21":357.74},"prop_m94":null,"prop_z71":432,"param_f90":"degraded"}
truncated_array
{ "type": "object", "properties": { "field_q55": { "type": "string", "enum": [ "reliable", "unstable", "intermittent" ] }, "dim_o02": { "type": "object", "properties": { "dim_k43": { "type": "string", "enum": [ ...
{"field_q55":"reliable","dim_o02":{"dim_k43":"degraded","col_u09":"2023-04-15T09:18:00Z","attr_r56":true,"field_y21":357.74},"prop_m94":null,"prop_z71":432,"param_f90":"degraded"
Unexpected end of JSON input — truncated object
{"field_q55":"reliable","dim_o02":{"dim_k43":"degraded","col_u09":"2023-04-15T09:18:00Z","attr_r56":true,"field_y21":357.74},"prop_m94":null,"prop_z71":432,"param_f90":"degraded"}
TASK repair_structured_output SPEC FIELD current_draw TYPE string VALUES low|medium|high|critical REQUIRED yes FIELD barcode TYPE string VALUES berthed|anchored|underway|moored REQUIRED no FIELD address TYPE string REQUIRED yes FIELD trace_id TYPE string REQUIRED no FIELD amount TYPE string VALUES admin|editor|viewer ...
{"current_draw":"critical","address":"MV-Evergreen-01","amount":"viewer","longitude":"PASS"}
partial_structure
{ "type": "object", "properties": { "current_draw": { "type": "string", "enum": [ "low", "medium", "high", "critical" ] }, "barcode": { "type": "string", "enum": [ "berthed", "anchored", "underway", "moored" ...
Based on the data, address is MV-Evergreen-01. {"current_draw":"critical","address":"MV-Evergreen-01","amount":"viewer","longitude":"PASS"}
Output mixes natural language with JSON
{"current_draw":"critical","address":"MV-Evergreen-01","amount":"viewer","longitude":"PASS"}
TASK repair_structured_output SPEC FIELD features TYPE string REQUIRED no FIELD account_id TYPE boolean REQUIRED yes FIELD phone.priority.voltage TYPE boolean REQUIRED no FIELD phone.priority.options TYPE integer REQUIRED no FIELD phone.priority.credit_score TYPE string VALUES success|error|warning|info REQUIRED yes F...
{"account_id":false,"phone":{"priority":{"options":269,"credit_score":"info","quantity":"EUR"},"isotope":{"chromosome":true,"turbidity":"nonsense","updated_at":784.07,"filter_flag":true,"altitude":"phone","half_life":"xl"},"step":"admin"}}
partial_structure
{ "type": "object", "properties": { "features": { "type": "string" }, "account_id": { "type": "boolean" }, "phone": { "type": "object", "properties": { "priority": { "type": "object", "properties": { "voltage": { "type...
Based on the data, account_id is False. {"account_id":false,"phone":{"priority":{"options":269,"credit_score":"info","quantity":"EUR"},"isotope":{"chromosome":true,"turbidity":"nonsense","updated_at":784.07,"filter_flag":true,"altitude":"phone","half_life":"xl"},"step":"admin"}}
Output mixes natural language with JSON
{"account_id":false,"phone":{"priority":{"options":269,"credit_score":"info","quantity":"EUR"},"isotope":{"chromosome":true,"turbidity":"nonsense","updated_at":784.07,"filter_flag":true,"altitude":"phone","half_life":"xl"},"step":"admin"}}
TASK repair_structured_output SPEC FIELD collateral TYPE string REQUIRED no FIELD repository TYPE string VALUES cat_a|cat_b|cat_c|cat_d|cat_e|cat_f REQUIRED yes FIELD wavelength.commit_hash TYPE string VALUES level_1|level_2 REQUIRED yes FIELD wavelength.description TYPE string_date-time REQUIRED yes FIELD wavelength....
{"collateral":"REV","repository":"cat_e","wavelength":{"commit_hash":"level_2","description":"2025-06-13T17:09:00Z","title":"https://api.io/v1","voltage":"mode_d","salinity":true,"level":"level_2"}}
truncated_array
{ "type": "object", "properties": { "collateral": { "type": "string" }, "repository": { "type": "string", "enum": [ "cat_a", "cat_b", "cat_c", "cat_d", "cat_e", "cat_f" ] }, "wavelength": { "type": "object", "pro...
{"collateral":"REV","repository":"cat_e","wavelength":{"commit_hash":"level_2","description":"2025-06-13T17:09:00Z","title":"https://api.io/v1","voltage":"mode_d","salinity":true,"level":"level_2"}
Unexpected end of JSON input — truncated object
{"collateral":"REV","repository":"cat_e","wavelength":{"commit_hash":"level_2","description":"2025-06-13T17:09:00Z","title":"https://api.io/v1","voltage":"mode_d","salinity":true,"level":"level_2"}}
TASK repair_structured_output SPEC FIELD dim_r92 TYPE string_email REQUIRED no FIELD param_a08 TYPE integer REQUIRED yes FIELD prop_u02 TYPE string VALUES type_a|type_b|type_c REQUIRED yes BROKEN_OUTPUT <functioncall> apply_discount {param_a08: 989, prop_u02: "type_b"}
{"param_a08":989,"prop_u02":"type_b"}
tool_call_bad_format
{ "type": "object", "properties": { "dim_r92": { "type": "string", "format": "email" }, "param_a08": { "type": "integer" }, "prop_u02": { "type": "string", "enum": [ "type_a", "type_b", "type_c" ] } }, "required": [ "param_a...
<functioncall> apply_discount {param_a08: 989, prop_u02: "type_b"}
Tool call has malformed arguments — unquoted keys in function parameters
{"param_a08":989,"prop_u02":"type_b"}
TASK repair_structured_output SPEC FIELD country TYPE integer REQUIRED no FIELD decay_rate TYPE string REQUIRED yes FIELD type.quality_score TYPE number REQUIRED no FIELD type.shipper_ref.shift_code TYPE string VALUES berthed|anchored|underway|moored REQUIRED yes FIELD type.shipper_ref.latitude TYPE integer REQUIRED y...
{"country":807,"decay_rate":"GRCh38","type":{"shipper_ref":{"shift_code":"anchored","latitude":566,"category":156.7,"annotation":465,"conductivity":291},"turbidity":"inactive","amount":354.62}}
extra_text_after
{ "type": "object", "properties": { "country": { "type": "integer" }, "decay_rate": { "type": "string" }, "type": { "type": "object", "properties": { "quality_score": { "type": "number" }, "shipper_ref": { "type": "object", ...
{"country":807,"decay_rate":"GRCh38","type":{"shipper_ref":{"shift_code":"anchored","latitude":566,"category":156.7,"annotation":465,"conductivity":291},"turbidity":"inactive","amount":354.62}} Data logged successfully.
Output contains non-JSON text after the object
{"country":807,"decay_rate":"GRCh38","type":{"shipper_ref":{"shift_code":"anchored","latitude":566,"category":156.7,"annotation":465,"conductivity":291},"turbidity":"inactive","amount":354.62}}
TASK repair_structured_output SPEC FIELD section TYPE integer REQUIRED yes FIELD reagent TYPE string_date-time REQUIRED no FIELD country TYPE string REQUIRED no FIELD terminal_id.message.strand TYPE string VALUES mode_a|mode_b|mode_c|mode_d|mode_e|mode_f REQUIRED yes FIELD terminal_id.message.phone TYPE string REQUIRE...
{"section":412,"reagent":"2025-01-16T16:16:00Z","email":null,"score":"mode_e","log_level":"cat_a"}
truncated_object
{ "type": "object", "properties": { "section": { "type": "integer" }, "reagent": { "type": "string", "format": "date-time" }, "country": { "type": "string" }, "terminal_id": { "type": "object", "properties": { "message": { "type": "ob...
{"section":412,"reagent":"2025-01-16T16:16:00Z","email":null,"score":"mode_e","log_level":"cat_a"
Unexpected end of JSON input — truncated object
{"section":412,"reagent":"2025-01-16T16:16:00Z","email":null,"score":"mode_e","log_level":"cat_a"}
TASK repair_structured_output SPEC FIELD val_r31.key_l44 TYPE string REQUIRED no FIELD val_r31.key_h20 TYPE boolean REQUIRED yes FIELD val_r31.attr_w37 TYPE string VALUES berthed|anchored|underway|moored REQUIRED no FIELD field_j92 TYPE string VALUES USD|EUR|GBP|BRL|JPY REQUIRED no FIELD param_a72 TYPE string VALUES e...
{"val_r31":{"key_l44":"https://api.example.com/v1","key_h20":false,"attr_w37":"moored"},"param_a72":"push","key_n99":"world","key_e89":996,"field_m80":"editor","dim_z92":false}
unquoted_keys
{ "type": "object", "properties": { "val_r31": { "type": "object", "properties": { "key_l44": { "type": "string" }, "key_h20": { "type": "boolean" }, "attr_w37": { "type": "string", "enum": [ "berthed", ...
{val_r31:{key_l44:"https://api.example.com/v1",key_h20:false,attr_w37:"moored"},param_a72:"push",key_n99:"world",key_e89:996,field_m80:"editor",dim_z92:false}
Expecting property name enclosed in double quotes
{"val_r31":{"key_l44":"https://api.example.com/v1","key_h20":false,"attr_w37":"moored"},"param_a72":"push","key_n99":"world","key_e89":996,"field_m80":"editor","dim_z92":false}
TASK repair_structured_output SPEC FIELD dim_x62 TYPE string VALUES type_a|type_b|type_c REQUIRED no FIELD param_z53 TYPE integer REQUIRED yes FIELD prop_v55 TYPE string REQUIRED no FIELD key_q11 TYPE string VALUES mode_a|mode_b|mode_c|mode_d REQUIRED no FIELD key_y95[] TYPE string REQUIRED no FIELD prop_f24[].prop_o3...
{"param_z53":812,"key_q11":"mode_a","prop_f24":[{"prop_o34":"Bob","key_q73":"type_c","key_b91":"returned","val_v46":"https://example.io/api"},{"prop_o34":"cancelled","key_u37":"draft","key_q73":"type_c","key_b91":"delivered","prop_d21":null,"val_v46":"https://data.io/v1"}]}
tool_call_python_syntax
{ "type": "object", "properties": { "dim_x62": { "type": "string", "enum": [ "type_a", "type_b", "type_c" ] }, "param_z53": { "type": "integer" }, "prop_v55": { "type": "string" }, "key_q11": { "type": "string", "enum": [ ...
get_weather(param_z53=812, key_q11='mode_a', prop_f24=[{'prop_o34': 'Bob', 'key_q73': 'type_c', 'key_b91': 'returned', 'val_v46': 'https://example.io/api'}, {'prop_o34': 'cancelled', 'key_u37': 'draft', 'key_q73': 'type_c', 'key_b91': 'delivered', 'prop_d21': None, 'val_v46': 'https://data.io/v1'}])
Tool call uses Python syntax instead of JSON
{"param_z53":812,"key_q11":"mode_a","prop_f24":[{"prop_o34":"Bob","key_q73":"type_c","key_b91":"returned","val_v46":"https://example.io/api"},{"prop_o34":"cancelled","key_u37":"draft","key_q73":"type_c","key_b91":"delivered","prop_d21":null,"val_v46":"https://data.io/v1"}]}
TASK repair_structured_output SPEC FIELD comments TYPE string VALUES type_a|type_b REQUIRED yes FIELD status TYPE string_date-time REQUIRED yes FIELD torque_output TYPE string VALUES type_a|type_b REQUIRED no FIELD address TYPE string VALUES type_a|type_b|type_c|type_d|type_e|type_f REQUIRED no FIELD procedure_code TY...
{"comments":"type_b","status":"2025-06-01T01:33:00Z","torque_output":"type_a","address":"type_c","options":"example","berth_slot":532}
extra_field
{ "type": "object", "properties": { "comments": { "type": "string", "enum": [ "type_a", "type_b" ] }, "status": { "type": "string", "format": "date-time" }, "torque_output": { "type": "string", "enum": [ "type_a", "type_b"...
{"comments": "type_b", "status": "2025-06-01T01:33:00Z", "torque_output": "type_a", "address": "type_c", "options": "example", "berth_slot": 532, "extra_field_5640": 42}
Unknown field 'extra_field_5640' not defined in schema
{"comments":"type_b","status":"2025-06-01T01:33:00Z","torque_output":"type_a","address":"type_c","options":"example","berth_slot":532}
TASK repair_structured_output SPEC FIELD bearing TYPE integer REQUIRED yes FIELD end_date TYPE boolean REQUIRED yes FIELD humidity_pct.amplitude TYPE string VALUES operational|degraded|offline|maintenance REQUIRED yes FIELD humidity_pct.isotope TYPE string VALUES synonymous|missense|nonsense|frameshift REQUIRED no FIE...
{"bearing":499,"end_date":false,"humidity_pct":{"amplitude":"maintenance","isotope":"missense","credit_score":"approved","turbidity":391.32,"organism":false}}
tool_call_wrong_param
{ "type": "object", "properties": { "bearing": { "type": "integer" }, "end_date": { "type": "boolean" }, "humidity_pct": { "type": "object", "properties": { "amplitude": { "type": "string", "enum": [ "operational", "degr...
Tool: transfer_call Params: {"end_date": false, "humidity_pct": {"amplitude": "maintenance", "isotope": "missense", "credit_score": "approved", "turbidity": 391.32, "organism": false}, "bearing2": 499}
Agent used wrong parameter name 'bearing2' instead of 'bearing'
{"bearing":499,"end_date":false,"humidity_pct":{"amplitude":"maintenance","isotope":"missense","credit_score":"approved","turbidity":391.32,"organism":false}}
TASK repair_structured_output SPEC FIELD organism TYPE string VALUES reliable|unstable|intermittent REQUIRED no FIELD level TYPE number REQUIRED no FIELD created_at TYPE string VALUES low|medium|high|critical REQUIRED yes BROKEN_OUTPUT {"organism":"intermittent","level":353.21,"created_at":"medium"
{"organism":"intermittent","level":353.21,"created_at":"medium"}
truncated_object
{ "type": "object", "properties": { "organism": { "type": "string", "enum": [ "reliable", "unstable", "intermittent" ] }, "level": { "type": "number" }, "created_at": { "type": "string", "enum": [ "low", "medium", ...
{"organism":"intermittent","level":353.21,"created_at":"medium"
Unexpected end of JSON input — truncated object
{"organism":"intermittent","level":353.21,"created_at":"medium"}
TASK repair_structured_output SPEC FIELD zip_code TYPE integer REQUIRED yes FIELD product_id TYPE number REQUIRED no FIELD subtotal TYPE string VALUES email|phone|sms|push REQUIRED no FIELD branch.consignee TYPE string VALUES pending_review|confirmed|rejected|escalated REQUIRED no FIELD branch.notes TYPE number REQUIR...
{"zip_code":142,"product_id":512.19,"branch":{"consignee":"pending_review","notes":975.41,"product_id":"Berlin","bill_of_lading":506,"payment_status":"oceanic"},"date":771.57}
null_required
{ "type": "object", "properties": { "zip_code": { "type": "integer" }, "product_id": { "type": "number" }, "subtotal": { "type": "string", "enum": [ "email", "phone", "sms", "push" ] }, "branch": { "type": "object", ...
{"zip_code": 142, "product_id": 512.19, "branch": null, "date": 771.57}
Required field 'branch' is null
{"zip_code":142,"product_id":512.19,"branch":{"consignee":"pending_review","notes":975.41,"product_id":"Berlin","bill_of_lading":506,"payment_status":"oceanic"},"date":771.57}
TASK repair_structured_output SPEC FIELD param_x64 TYPE string REQUIRED no FIELD field_x86 TYPE integer REQUIRED yes FIELD col_x88 TYPE null REQUIRED no FIELD col_r64 TYPE string_email REQUIRED no FIELD col_m76 TYPE integer REQUIRED no FIELD param_m32.param_j08 TYPE number REQUIRED no FIELD param_m32.param_m27 TYPE nu...
{"param_x64":"QC-07","field_x86":766,"col_x88":null,"col_r64":"user@test.io","prop_o69":"admin"}
number_with_unit
{ "type": "object", "properties": { "param_x64": { "type": "string" }, "field_x86": { "type": "integer" }, "col_x88": { "type": "null" }, "col_r64": { "type": "string", "format": "email" }, "col_m76": { "type": "integer" }, "param_m32":...
{"param_x64": "QC-07", "field_x86": "766cm", "col_x88": null, "col_r64": "user@test.io", "prop_o69": "admin"}
Field 'field_x86' must be number, got string with unit
{"param_x64":"QC-07","field_x86":766,"col_x88":null,"col_r64":"user@test.io","prop_o69":"admin"}
TASK repair_structured_output SPEC FIELD filter_flag TYPE number REQUIRED yes FIELD phenotype TYPE string REQUIRED no FIELD city TYPE number REQUIRED yes FIELD velocity TYPE boolean REQUIRED yes BROKEN_OUTPUT calibrate_instrument(filter_flag=811.15, phenotype='approved', city=152.79, velocity=True)
{"filter_flag":811.15,"phenotype":"approved","city":152.79,"velocity":true}
tool_call_python_syntax
{ "type": "object", "properties": { "filter_flag": { "type": "number" }, "phenotype": { "type": "string" }, "city": { "type": "number" }, "velocity": { "type": "boolean" } }, "required": [ "filter_flag", "city", "velocity" ] }
calibrate_instrument(filter_flag=811.15, phenotype='approved', city=152.79, velocity=True)
Tool call uses Python syntax instead of JSON
{"filter_flag":811.15,"phenotype":"approved","city":152.79,"velocity":true}
TASK repair_structured_output SPEC FIELD language TYPE string VALUES email|phone|sms|push REQUIRED no FIELD consignee TYPE string VALUES success|error|warning|info REQUIRED yes FIELD catalyst TYPE string_uri REQUIRED yes FIELD humidity_pct TYPE integer REQUIRED yes BROKEN_OUTPUT Let me check the system. Action: queue...
{"language":"email","consignee":"warning","catalyst":"https://www.org/v1","humidity_pct":574}
agent_chain
{ "type": "object", "properties": { "language": { "type": "string", "enum": [ "email", "phone", "sms", "push" ] }, "consignee": { "type": "string", "enum": [ "success", "error", "warning", "info" ] },...
Let me check the system. Action: queue_sequencing_run Result: {"language": "email", "catalyst": "https://www.org/v1", "humidity_pct": 574} I'll query our database. Action: book_appointment Result:
Agent multi-step chain with truncated tool output
{"language":"email","consignee":"warning","catalyst":"https://www.org/v1","humidity_pct":574}
TASK repair_structured_output SPEC FIELD key_i30 TYPE string REQUIRED no FIELD val_m90 TYPE string VALUES coastal|oceanic|inland|arctic REQUIRED no FIELD col_h35 TYPE string VALUES homozygous|heterozygous|hemizygous REQUIRED no FIELD param_d38 TYPE integer REQUIRED yes FIELD dim_k77[].val_z94 TYPE string REQUIRED yes ...
{"key_i30":"example","param_d38":534,"dim_k77":[{"val_z94":"Santos","key_v97":"editor"},{"val_z94":"Diana","key_v97":"editor","param_r39":["2024-01-15","Oliveira","world"]}]}
number_with_unit
{ "type": "object", "properties": { "key_i30": { "type": "string" }, "val_m90": { "type": "string", "enum": [ "coastal", "oceanic", "inland", "arctic" ] }, "col_h35": { "type": "string", "enum": [ "homozygous", "...
{"key_i30": "example", "param_d38": "534sec", "dim_k77": [{"val_z94": "Santos", "key_v97": "editor"}, {"val_z94": "Diana", "key_v97": "editor", "param_r39": ["2024-01-15", "Oliveira", "world"]}]}
Field 'param_d38' must be number, got string with unit
{"key_i30":"example","param_d38":534,"dim_k77":[{"val_z94":"Santos","key_v97":"editor"},{"val_z94":"Diana","key_v97":"editor","param_r39":["2024-01-15","Oliveira","world"]}]}
TASK repair_structured_output SPEC FIELD field_y77 TYPE integer REQUIRED no FIELD attr_i88 TYPE boolean REQUIRED no FIELD col_d44 TYPE string REQUIRED yes BROKEN_OUTPUT {"field_y77":420,"attr_i88":true,"col_d44":"test"
{"field_y77":420,"attr_i88":true,"col_d44":"test"}
truncated_object
{ "type": "object", "properties": { "field_y77": { "type": "integer" }, "attr_i88": { "type": "boolean" }, "col_d44": { "type": "string" } }, "required": [ "col_d44" ] }
{"field_y77":420,"attr_i88":true,"col_d44":"test"
Unexpected end of JSON input — truncated object
{"field_y77":420,"attr_i88":true,"col_d44":"test"}
TASK repair_structured_output SPEC FIELD interest_rate TYPE string REQUIRED no FIELD run_id TYPE string VALUES level_1|level_2|level_3|level_4 REQUIRED no FIELD first_name TYPE integer REQUIRED yes BROKEN_OUTPUT <functioncall> run_diagnostics {interest_rate: "Bob", run_id: "level_1", first_name: 805}
{"interest_rate":"Bob","run_id":"level_1","first_name":805}
tool_call_bad_format
{ "type": "object", "properties": { "interest_rate": { "type": "string" }, "run_id": { "type": "string", "enum": [ "level_1", "level_2", "level_3", "level_4" ] }, "first_name": { "type": "integer" } }, "required": [ "first...
<functioncall> run_diagnostics {interest_rate: "Bob", run_id: "level_1", first_name: 805}
Tool call has malformed arguments — unquoted keys in function parameters
{"interest_rate":"Bob","run_id":"level_1","first_name":805}
TASK repair_structured_output SPEC FIELD name TYPE string REQUIRED yes FIELD format TYPE integer REQUIRED no FIELD gene_id TYPE integer REQUIRED no FIELD company TYPE string REQUIRED no BROKEN_OUTPUT {name:"Oliveira",format:888,gene_id:253,company:"Johnson"}
{"name":"Oliveira","format":888,"gene_id":253,"company":"Johnson"}
unquoted_keys
{ "type": "object", "properties": { "name": { "type": "string" }, "format": { "type": "integer" }, "gene_id": { "type": "integer" }, "company": { "type": "string" } }, "required": [ "name" ] }
{name:"Oliveira",format:888,gene_id:253,company:"Johnson"}
Expecting property name enclosed in double quotes
{"name":"Oliveira","format":888,"gene_id":253,"company":"Johnson"}
TASK repair_structured_output SPEC FIELD comments TYPE string_email REQUIRED no FIELD dosage TYPE boolean REQUIRED no FIELD organism TYPE number REQUIRED no FIELD credit_score TYPE null REQUIRED yes BROKEN_OUTPUT Let me check the system. <tool_call name="queue_sequencing_run"> {"organism":259.25,"credit_score":null} ...
{"organism":259.25,"credit_score":null}
tool_call_text_mix
{ "type": "object", "properties": { "comments": { "type": "string", "format": "email" }, "dosage": { "type": "boolean" }, "organism": { "type": "number" }, "credit_score": { "type": "null" } }, "required": [ "credit_score" ] }
Let me check the system. <tool_call name="queue_sequencing_run"> {"organism":259.25,"credit_score":null} </tool_call.
Agent response mixes reasoning text with tool call
{"organism":259.25,"credit_score":null}
TASK repair_structured_output SPEC FIELD port_code TYPE number REQUIRED yes FIELD zip_code TYPE string_date-time REQUIRED yes FIELD catalyst TYPE null REQUIRED yes FIELD torque_output.published TYPE string REQUIRED yes FIELD torque_output.item_id TYPE string VALUES success|error|warning|info REQUIRED yes FIELD torque_...
{"port_code":886.72,"zip_code":"2020-03-05T14:48:00Z","catalyst":null,"chapter":"active"}
markdown_fences
{ "type": "object", "properties": { "port_code": { "type": "number" }, "zip_code": { "type": "string", "format": "date-time" }, "catalyst": { "type": "null" }, "torque_output": { "type": "object", "properties": { "published": { "type"...
```json {"port_code":886.72,"zip_code":"2020-03-05T14:48:00Z","catalyst":null,"chapter":"active"} ```
Output contains markdown code fences
{"port_code":886.72,"zip_code":"2020-03-05T14:48:00Z","catalyst":null,"chapter":"active"}
TASK repair_structured_output SPEC FIELD attr_t11 TYPE string VALUES open|in_progress|resolved|closed REQUIRED yes FIELD val_j56 TYPE string REQUIRED no FIELD prop_c39 TYPE string VALUES low|medium|high|critical REQUIRED no FIELD param_e45 TYPE null REQUIRED no FIELD param_n06 TYPE string VALUES type_a|type_b|type_c|t...
{"attr_t11":"open","prop_c39":"low","param_e45":null,"param_n06":"type_d","prop_d52":"test@example.com"}
partial_structure
{ "type": "object", "properties": { "attr_t11": { "type": "string", "enum": [ "open", "in_progress", "resolved", "closed" ] }, "val_j56": { "type": "string" }, "prop_c39": { "type": "string", "enum": [ "low", "me...
Based on the data, param_e45 is None. {"attr_t11":"open","prop_c39":"low","param_e45":null,"param_n06":"type_d","prop_d52":"test@example.com"}
Output mixes natural language with JSON
{"attr_t11":"open","prop_c39":"low","param_e45":null,"param_n06":"type_d","prop_d52":"test@example.com"}
TASK repair_structured_output SPEC FIELD insurance_id TYPE string_email REQUIRED no FIELD quality_score TYPE string REQUIRED yes FIELD transaction_id TYPE string_date-time REQUIRED no BROKEN_OUTPUT {"insurance_id":"test@test.io","quality_score":"Alice","transaction_id":"2022-08-20T22:00:00Z"} Analysis finished.
{"insurance_id":"test@test.io","quality_score":"Alice","transaction_id":"2022-08-20T22:00:00Z"}
extra_text_after
{ "type": "object", "properties": { "insurance_id": { "type": "string", "format": "email" }, "quality_score": { "type": "string" }, "transaction_id": { "type": "string", "format": "date-time" } }, "required": [ "quality_score" ] }
{"insurance_id":"test@test.io","quality_score":"Alice","transaction_id":"2022-08-20T22:00:00Z"} Analysis finished.
Output contains non-JSON text after the object
{"insurance_id":"test@test.io","quality_score":"Alice","transaction_id":"2022-08-20T22:00:00Z"}
TASK repair_structured_output SPEC FIELD transaction_id TYPE string REQUIRED yes FIELD velocity TYPE boolean REQUIRED no FIELD width[].half_life TYPE string VALUES operational|degraded|offline|maintenance REQUIRED no FIELD width[].chromosome TYPE integer REQUIRED yes FIELD width[].throttle_pos TYPE string REQUIRED yes...
{"transaction_id":"chrX","velocity":false,"width":[{"half_life":"operational","chromosome":722,"throttle_pos":"bar","level":"ops@example.com"}]}
tool_call_python_syntax
{ "type": "object", "properties": { "transaction_id": { "type": "string" }, "velocity": { "type": "boolean" }, "width": { "type": "array", "items": { "type": "object", "properties": { "half_life": { "type": "string", "enum...
delete_item(transaction_id='chrX', velocity=False, width=[{'half_life': 'operational', 'chromosome': 722, 'throttle_pos': 'bar', 'level': 'ops@example.com'}])
Tool call uses Python syntax instead of JSON
{"transaction_id":"chrX","velocity":false,"width":[{"half_life":"operational","chromosome":722,"throttle_pos":"bar","level":"ops@example.com"}]}
TASK repair_structured_output SPEC FIELD field_j13 TYPE null REQUIRED no FIELD key_k30 TYPE integer REQUIRED no FIELD key_t58 TYPE boolean REQUIRED yes FIELD param_u63 TYPE string REQUIRED no BROKEN_OUTPUT check_availability(key_k30=392, key_t58=True)
{"key_k30":392,"key_t58":true}
tool_call_python_syntax
{ "type": "object", "properties": { "field_j13": { "type": "null" }, "key_k30": { "type": "integer" }, "key_t58": { "type": "boolean" }, "param_u63": { "type": "string" } }, "required": [ "key_t58" ] }
check_availability(key_k30=392, key_t58=True)
Tool call uses Python syntax instead of JSON
{"key_k30":392,"key_t58":true}
TASK repair_structured_output SPEC FIELD key_t21 TYPE string REQUIRED yes FIELD dim_a90 TYPE integer REQUIRED yes FIELD dim_k71 TYPE string_date-time REQUIRED yes FIELD key_k45.dim_j51 TYPE string REQUIRED no FIELD key_k45.key_g62.param_y99 TYPE string VALUES option_a|option_b|option_c REQUIRED yes FIELD key_k45.key_g...
{"key_t21":"chr1","dim_a90":437,"dim_k71":"2023-02-09T08:10:00Z","val_z01":{"key_x53":"London","field_r49":"https://example.com/api","dim_v12":"cancelled"}}
missing_required
{ "type": "object", "properties": { "key_t21": { "type": "string" }, "dim_a90": { "type": "integer" }, "dim_k71": { "type": "string", "format": "date-time" }, "key_k45": { "type": "object", "properties": { "dim_j51": { "type": "string...
{"dim_a90": 437, "dim_k71": "2023-02-09T08:10:00Z", "val_z01": {"key_x53": "London", "field_r49": "https://example.com/api", "dim_v12": "cancelled"}}
Required field 'key_t21' is missing
{"key_t21":"chr1","dim_a90":437,"dim_k71":"2023-02-09T08:10:00Z","val_z01":{"key_x53":"London","field_r49":"https://example.com/api","dim_v12":"cancelled"}}
TASK repair_structured_output SPEC FIELD prop_p66 TYPE string VALUES type_a|type_b|type_c|type_d|type_e REQUIRED yes FIELD key_s53 TYPE number REQUIRED yes FIELD param_n80 TYPE null REQUIRED no FIELD key_q90 TYPE string REQUIRED no FIELD param_h43 TYPE number REQUIRED no BROKEN_OUTPUT {"prop_p66":"type_d","key_s53":9...
{"prop_p66":"type_d","key_s53":938.56,"param_h43":447.94}
trailing_comma
{ "type": "object", "properties": { "prop_p66": { "type": "string", "enum": [ "type_a", "type_b", "type_c", "type_d", "type_e" ] }, "key_s53": { "type": "number" }, "param_n80": { "type": "null" }, "key_q90": { "...
{"prop_p66":"type_d","key_s53":938.56,"param_h43":447.94,}
Unexpected trailing comma
{"prop_p66":"type_d","key_s53":938.56,"param_h43":447.94}
TASK repair_structured_output SPEC FIELD prop_d00 TYPE null REQUIRED no FIELD prop_x98 TYPE string VALUES email|phone|sms|push REQUIRED no FIELD key_i70 TYPE null REQUIRED no FIELD prop_n28 TYPE integer REQUIRED yes FIELD dim_c74 TYPE integer REQUIRED no FIELD dim_h36 TYPE integer REQUIRED no FIELD prop_j37.dim_c14 TY...
{"prop_d00":null,"prop_x98":"sms","key_i70":null,"prop_n28":788,"dim_c74":955,"dim_h36":774,"prop_j37":{"dim_c14":170.8,"param_v10":14.0,"dim_x00":{"param_w68":"user@domain.com","field_y23":["example","pending","sample"],"prop_c00":["https://example.com/api","https://data.io/api","https://example.io/data"]}}}
truncated_object
{ "type": "object", "properties": { "prop_d00": { "type": "null" }, "prop_x98": { "type": "string", "enum": [ "email", "phone", "sms", "push" ] }, "key_i70": { "type": "null" }, "prop_n28": { "type": "integer" }, ...
{"prop_d00":null,"prop_x98":"sms","key_i70":null,"prop_n28":788,"dim_c74":955,"dim_h36":774,"prop_j37":{"dim_c14":170.8,"param_v10":14.0,"dim_x00":{"param_w68":"user@domain.com","field_y23":["example","pending","sample"],"prop_c00":["https://example.com/api","https://data.io/api","https://example.io/data"]}}
Unexpected end of JSON input — truncated object
{"prop_d00":null,"prop_x98":"sms","key_i70":null,"prop_n28":788,"dim_c74":955,"dim_h36":774,"prop_j37":{"dim_c14":170.8,"param_v10":14.0,"dim_x00":{"param_w68":"user@domain.com","field_y23":["example","pending","sample"],"prop_c00":["https://example.com/api","https://data.io/api","https://example.io/data"]}}}
TASK repair_structured_output SPEC FIELD count TYPE string VALUES low|medium|high|critical REQUIRED yes FIELD first_name TYPE string REQUIRED yes FIELD sensor_id TYPE number REQUIRED yes FIELD throttle_pos TYPE string REQUIRED yes BROKEN_OUTPUT {"count":"critical","first_name":"Oliveira","sensor_id":670.21,"throttle_...
{"count":"critical","first_name":"Oliveira","sensor_id":670.21,"throttle_pos":"MV-Evergreen-01"}
truncated_object
{ "type": "object", "properties": { "count": { "type": "string", "enum": [ "low", "medium", "high", "critical" ] }, "first_name": { "type": "string" }, "sensor_id": { "type": "number" }, "throttle_pos": { "type": "string...
{"count":"critical","first_name":"Oliveira","sensor_id":670.21,"throttle_pos":"MV-Evergreen-01"
Unexpected end of JSON input — truncated object
{"count":"critical","first_name":"Oliveira","sensor_id":670.21,"throttle_pos":"MV-Evergreen-01"}
TASK repair_structured_output SPEC FIELD deploy_target TYPE string REQUIRED no FIELD build_status TYPE string VALUES cat_a|cat_b|cat_c|cat_d|cat_e REQUIRED no FIELD items TYPE integer REQUIRED yes BROKEN_OUTPUT {"deploy_target": "Luis", "build_status": "cat_b", "items": "538sec"}
{"deploy_target":"Luis","build_status":"cat_b","items":538}
number_with_unit
{ "type": "object", "properties": { "deploy_target": { "type": "string" }, "build_status": { "type": "string", "enum": [ "cat_a", "cat_b", "cat_c", "cat_d", "cat_e" ] }, "items": { "type": "integer" } }, "required": [ ...
{"deploy_target": "Luis", "build_status": "cat_b", "items": "538sec"}
Field 'items' must be number, got string with unit
{"deploy_target":"Luis","build_status":"cat_b","items":538}
TASK repair_structured_output SPEC FIELD col_j88 TYPE string REQUIRED yes FIELD param_d02 TYPE string REQUIRED no FIELD attr_f45 TYPE string VALUES pending_review|confirmed|rejected|escalated REQUIRED no FIELD prop_x56 TYPE string VALUES berthed|anchored|underway|moored REQUIRED yes FIELD dim_v46 TYPE boolean REQUIRED...
{"col_j88":"Johnson","param_d02":"quux","prop_x56":"berthed","dim_v46":false,"prop_k58":null,"key_u12":"ops@example.com"}
extra_text_after
{ "type": "object", "properties": { "col_j88": { "type": "string" }, "param_d02": { "type": "string" }, "attr_f45": { "type": "string", "enum": [ "pending_review", "confirmed", "rejected", "escalated" ] }, "prop_x56": { ...
{"col_j88":"Johnson","param_d02":"quux","prop_x56":"berthed","dim_v46":false,"prop_k58":null,"key_u12":"ops@example.com"} Let me know if you need anything else!
Output contains non-JSON text after the object
{"col_j88":"Johnson","param_d02":"quux","prop_x56":"berthed","dim_v46":false,"prop_k58":null,"key_u12":"ops@example.com"}
TASK repair_structured_output SPEC FIELD temp_celsius TYPE string VALUES small|medium|large|xl REQUIRED yes FIELD visible TYPE string_date-time REQUIRED no FIELD brake_pressure TYPE string REQUIRED no FIELD consignee TYPE null REQUIRED no FIELD sensor_id TYPE boolean REQUIRED no FIELD image_url TYPE integer REQUIRED y...
{"temp_celsius":"large","visible":"2022-01-28T03:22:00Z","consignee":null,"sensor_id":false,"image_url":581}
tool_call_text_mix
{ "type": "object", "properties": { "temp_celsius": { "type": "string", "enum": [ "small", "medium", "large", "xl" ] }, "visible": { "type": "string", "format": "date-time" }, "brake_pressure": { "type": "string" }, "con...
I need to look up the information first. <tool_call name="apply_discount"> {"temp_celsius":"large","visible":"2022-01-28T03:22:00Z","consignee":null,"sensor_id":false,"image_url":581} </tool_call.
Agent response mixes reasoning text with tool call
{"temp_celsius":"large","visible":"2022-01-28T03:22:00Z","consignee":null,"sensor_id":false,"image_url":581}
TASK repair_structured_output SPEC FIELD col_a29 TYPE string REQUIRED yes FIELD dim_q02 TYPE string VALUES low|medium|high|critical REQUIRED yes FIELD attr_k48 TYPE string REQUIRED yes FIELD val_o90[].prop_o06 TYPE string_date-time REQUIRED yes FIELD val_o90[].param_r14 TYPE integer REQUIRED no FIELD val_o90[].field_s...
{"col_a29":"Tokyo","dim_q02":"low","attr_k48":"MV-Evergreen-01","val_o90":[{"prop_o06":"2025-02-17T11:04:00Z","param_r14":177,"field_s08":"bar","dim_h26":"published"},{"prop_o06":"2025-11-10T11:39:00Z","param_r14":840,"field_s08":"2024-06-30","dim_h26":"draft"},{"prop_o06":"2021-10-25T20:37:00Z","param_r14":970,"field_...
markdown_explanation
{ "type": "object", "properties": { "col_a29": { "type": "string" }, "dim_q02": { "type": "string", "enum": [ "low", "medium", "high", "critical" ] }, "attr_k48": { "type": "string" }, "val_o90": { "type": "array", ...
The parsed result is: ```json {"col_a29":"Tokyo","dim_q02":"low","attr_k48":"MV-Evergreen-01","val_o90":[{"prop_o06":"2025-02-17T11:04:00Z","param_r14":177,"field_s08":"bar","dim_h26":"published"},{"prop_o06":"2025-11-10T11:39:00Z","param_r14":840,"field_s08":"2024-06-30","dim_h26":"draft"},{"prop_o06":"2021-10-25T20:3...
Output contains markdown and explanatory text around JSON
{"col_a29":"Tokyo","dim_q02":"low","attr_k48":"MV-Evergreen-01","val_o90":[{"prop_o06":"2025-02-17T11:04:00Z","param_r14":177,"field_s08":"bar","dim_h26":"published"},{"prop_o06":"2025-11-10T11:39:00Z","param_r14":840,"field_s08":"2024-06-30","dim_h26":"draft"},{"prop_o06":"2021-10-25T20:37:00Z","param_r14":970,"field_...
TASK repair_structured_output SPEC FIELD start_date TYPE string VALUES mode_a|mode_b|mode_c REQUIRED no FIELD tax TYPE string VALUES option_a|option_b REQUIRED yes FIELD address TYPE integer REQUIRED yes FIELD branch TYPE string_date-time REQUIRED no FIELD maturity_date TYPE string VALUES new|in_transit|delivered|retu...
{"start_date":"mode_c","tax":"option_b","address":593,"branch":"2025-04-18T03:58:00Z","maturity_date":"returned","barcode":414}
wrong_type
{ "type": "object", "properties": { "start_date": { "type": "string", "enum": [ "mode_a", "mode_b", "mode_c" ] }, "tax": { "type": "string", "enum": [ "option_a", "option_b" ] }, "address": { "type": "integer" ...
{"start_date": "mode_c", "tax": "option_b", "address": "\"593\"", "branch": "2025-04-18T03:58:00Z", "maturity_date": "returned", "barcode": 414}
Field 'address' must be integer, got string
{"start_date":"mode_c","tax":"option_b","address":593,"branch":"2025-04-18T03:58:00Z","maturity_date":"returned","barcode":414}
TASK repair_structured_output SPEC FIELD chromosome TYPE string REQUIRED yes FIELD price TYPE integer REQUIRED yes FIELD voltage.quality_score TYPE boolean REQUIRED yes FIELD voltage.status_code TYPE string VALUES email|phone|sms|push REQUIRED no FIELD voltage.invoice_id TYPE string REQUIRED no FIELD voltage.freight_c...
{"chromosome":"GRCh38","price":683,"voltage":{"quality_score":false,"status_code":"push","invoice_id":"New York","freight_class":"married","zip_code":"world","start_date":"foo","timezone":"John"}}
tool_call_partial_args
{ "type": "object", "properties": { "chromosome": { "type": "string" }, "price": { "type": "integer" }, "voltage": { "type": "object", "properties": { "quality_score": { "type": "boolean" }, "status_code": { "type": "string", ...
I need to look up the information first. Action: get_inventory Arguments: {"chromosome": "GRCh38", "price": 683}
Agent tool call missing required parameter 'voltage'
{"chromosome":"GRCh38","price":683,"voltage":{"quality_score":false,"status_code":"push","invoice_id":"New York","freight_class":"married","zip_code":"world","start_date":"foo","timezone":"John"}}
TASK repair_structured_output SPEC FIELD tags TYPE string REQUIRED yes FIELD aligned_pct TYPE integer REQUIRED no FIELD isotope TYPE string VALUES draft|published|archived REQUIRED no FIELD paragraph.index TYPE string VALUES single|married|divorced REQUIRED no FIELD paragraph.berth_slot TYPE string VALUES draft|publis...
{"tags":"FWD","isotope":"draft","paragraph":{"index":"divorced","berth_slot":"published","chromosome":"published","state":"London","dosage":false}}
tool_call_bad_format
{ "type": "object", "properties": { "tags": { "type": "string" }, "aligned_pct": { "type": "integer" }, "isotope": { "type": "string", "enum": [ "draft", "published", "archived" ] }, "paragraph": { "type": "object", "prope...
<functioncall> update_preferences {tags: "FWD", isotope: "draft", paragraph: {index: "divorced", berth_slot: "published", chromosome: "published", state: "London", dosage: false}}
Tool call has malformed arguments — unquoted keys in function parameters
{"tags":"FWD","isotope":"draft","paragraph":{"index":"divorced","berth_slot":"published","chromosome":"published","state":"London","dosage":false}}
TASK repair_structured_output SPEC FIELD param_f52 TYPE boolean REQUIRED no FIELD attr_y56 TYPE string REQUIRED yes FIELD prop_j86 TYPE integer REQUIRED no FIELD field_g44 TYPE string VALUES mode_a|mode_b REQUIRED no FIELD attr_s10 TYPE string VALUES level_1|level_2|level_3|level_4|level_5 REQUIRED no FIELD key_d22.at...
{"param_f52":false,"attr_y56":"completed","prop_j86":927,"field_g44":"mode_a","attr_s10":"level_3","param_b74":"chr1","attr_j17":"info"}
partial_structure
{ "type": "object", "properties": { "param_f52": { "type": "boolean" }, "attr_y56": { "type": "string" }, "prop_j86": { "type": "integer" }, "field_g44": { "type": "string", "enum": [ "mode_a", "mode_b" ] }, "attr_s10": { ...
Based on the data, attr_s10 is level_3. {"param_f52":false,"attr_y56":"completed","prop_j86":927,"field_g44":"mode_a","attr_s10":"level_3","param_b74":"chr1","attr_j17":"info"}
Output mixes natural language with JSON
{"param_f52":false,"attr_y56":"completed","prop_j86":927,"field_g44":"mode_a","attr_s10":"level_3","param_b74":"chr1","attr_j17":"info"}
TASK repair_structured_output SPEC FIELD prop_f81 TYPE string VALUES admin|editor|viewer REQUIRED no FIELD key_t70 TYPE string VALUES open|in_progress|resolved|closed REQUIRED yes FIELD prop_m47 TYPE string VALUES USD|EUR|GBP|BRL|JPY REQUIRED yes FIELD attr_t86 TYPE string REQUIRED yes FIELD prop_m33 TYPE string REQUI...
{"key_t70":"open","prop_m47":"USD","attr_t86":"2024-06-30","prop_m33":"GRCh38"}
tool_call_python_syntax
{ "type": "object", "properties": { "prop_f81": { "type": "string", "enum": [ "admin", "editor", "viewer" ] }, "key_t70": { "type": "string", "enum": [ "open", "in_progress", "resolved", "closed" ] }, "pr...
annotate_mutation(key_t70='open', prop_m47='USD', attr_t86='2024-06-30', prop_m33='GRCh38')
Tool call uses Python syntax instead of JSON
{"key_t70":"open","prop_m47":"USD","attr_t86":"2024-06-30","prop_m33":"GRCh38"}
TASK repair_structured_output SPEC FIELD col_s31 TYPE string_date-time REQUIRED yes FIELD param_l03 TYPE string VALUES USD|EUR|GBP|BRL|JPY REQUIRED no FIELD val_j31 TYPE integer REQUIRED no FIELD prop_q24.param_k70 TYPE string VALUES active|inactive|pending REQUIRED no FIELD prop_q24.key_t38 TYPE string VALUES level_1...
{"col_s31":"2025-04-22T23:41:00Z","param_l03":"USD","val_j31":683,"prop_q24":{"param_k70":"inactive","attr_c71":"phone","dim_h24":"level_2","prop_v69":501.91,"dim_x15":"2023-06-26T18:43:00Z","attr_k93":null}}
tool_call_bad_format
{ "type": "object", "properties": { "col_s31": { "type": "string", "format": "date-time" }, "param_l03": { "type": "string", "enum": [ "USD", "EUR", "GBP", "BRL", "JPY" ] }, "val_j31": { "type": "integer" }, "pro...
<functioncall> check_cargo_manifest {col_s31: "2025-04-22T23:41:00Z", param_l03: "USD", val_j31: 683, prop_q24: {param_k70: "inactive", attr_c71: "phone", dim_h24: "level_2", prop_v69: 501.91, dim_x15: "2023-06-26T18:43:00Z", attr_k93: null}}
Tool call has malformed arguments — unquoted keys in function parameters
{"col_s31":"2025-04-22T23:41:00Z","param_l03":"USD","val_j31":683,"prop_q24":{"param_k70":"inactive","attr_c71":"phone","dim_h24":"level_2","prop_v69":501.91,"dim_x15":"2023-06-26T18:43:00Z","attr_k93":null}}
TASK repair_structured_output SPEC FIELD updated_at TYPE boolean REQUIRED no FIELD altitude TYPE string VALUES option_a|option_b|option_c|option_d|option_e|option_f REQUIRED no FIELD crew_id TYPE boolean REQUIRED yes FIELD feedback.published TYPE string REQUIRED yes FIELD feedback.user_id TYPE string_email REQUIRED no...
{"updated_at":true,"crew_id":true,"feedback":{"published":"qux","pressure_kpa":577,"shift_code":{"invoice_id":"mode_b","tile":"2022-03-04T13:35:00Z","username":"https://www.com/data","patient_id":"cat_a","credit_score":"PASS","weight":"cat_b"},"index":"cat_a","brake_pressure":"test"},"width":"Tokyo"}
tool_call_wrong_param
{ "type": "object", "properties": { "updated_at": { "type": "boolean" }, "altitude": { "type": "string", "enum": [ "option_a", "option_b", "option_c", "option_d", "option_e", "option_f" ] }, "crew_id": { "type": "boole...
Tool: search Params: {"updated_at": true, "crew_id": true, "width": "Tokyo", "feedback_new": {"published": "qux", "pressure_kpa": 577, "shift_code": {"invoice_id": "mode_b", "tile": "2022-03-04T13:35:00Z", "username": "https://www.com/data", "patient_id": "cat_a", "credit_score": "PASS", "weight": "cat_b"}, "index": "c...
Agent used wrong parameter name 'feedback_new' instead of 'feedback'
{"updated_at":true,"crew_id":true,"feedback":{"published":"qux","pressure_kpa":577,"shift_code":{"invoice_id":"mode_b","tile":"2022-03-04T13:35:00Z","username":"https://www.com/data","patient_id":"cat_a","credit_score":"PASS","weight":"cat_b"},"index":"cat_a","brake_pressure":"test"},"width":"Tokyo"}
TASK repair_structured_output SPEC FIELD val_w74 TYPE string REQUIRED no FIELD attr_m15 TYPE string REQUIRED yes FIELD val_o93 TYPE integer REQUIRED no FIELD col_o47 TYPE boolean REQUIRED no BROKEN_OUTPUT Tool: get_account Params: {"val_w74": "Berlin", "attr_m15": "chrX", "val_o93_new": 113}
{"val_w74":"Berlin","attr_m15":"chrX","val_o93":113}
tool_call_wrong_param
{ "type": "object", "properties": { "val_w74": { "type": "string" }, "attr_m15": { "type": "string" }, "val_o93": { "type": "integer" }, "col_o47": { "type": "boolean" } }, "required": [ "attr_m15" ] }
Tool: get_account Params: {"val_w74": "Berlin", "attr_m15": "chrX", "val_o93_new": 113}
Agent used wrong parameter name 'val_o93_new' instead of 'val_o93'
{"val_w74":"Berlin","attr_m15":"chrX","val_o93":113}