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 subtotal TYPE string VALUES mode_a|mode_b|mode_c|mode_d REQUIRED no FIELD quality_score TYPE string VALUES option_a|option_b REQUIRED yes FIELD barcode TYPE integer REQUIRED no FIELD due_date TYPE number REQUIRED yes FIELD updated_at TYPE string VALUES option_a|option_b|option_...
{"quality_score":"option_a","barcode":725,"due_date":644.29,"updated_at":"option_d","status_code":"level_1"}
agent_chain
{ "type": "object", "properties": { "subtotal": { "type": "string", "enum": [ "mode_a", "mode_b", "mode_c", "mode_d" ] }, "quality_score": { "type": "string", "enum": [ "option_a", "option_b" ] }, "barcode": { ...
Let me check the system. Action: generate_report Result: {"quality_score": "option_a", "due_date": 644.29, "updated_at": "option_d", "status_code": "level_1"} Processing the request now. Action: assign_berth Result:
Agent multi-step chain with truncated tool output
{"quality_score":"option_a","barcode":725,"due_date":644.29,"updated_at":"option_d","status_code":"level_1"}
TASK repair_structured_output SPEC FIELD key_q19 TYPE string_uri REQUIRED no FIELD dim_a15 TYPE string REQUIRED no FIELD field_x19 TYPE null REQUIRED no FIELD col_p97 TYPE number REQUIRED no FIELD attr_a92 TYPE string REQUIRED yes FIELD key_c92 TYPE integer REQUIRED no FIELD field_d82 TYPE null REQUIRED no FIELD key_e...
{"dim_a15":"Bob","col_p97":148.39,"attr_a92":"test","key_c92":728,"field_d82":null,"key_e33":{"dim_c49":"FWD","attr_a75":"New York","attr_j87":{"key_m43":"test@example.com","field_y34":"John","field_u42":900,"val_p96":"admin","field_u00":true}}}
markdown_explanation
{ "type": "object", "properties": { "key_q19": { "type": "string", "format": "uri" }, "dim_a15": { "type": "string" }, "field_x19": { "type": "null" }, "col_p97": { "type": "number" }, "attr_a92": { "type": "string" }, "key_c92": { ...
The instrument reported: ```json {"dim_a15":"Bob","col_p97":148.39,"attr_a92":"test","key_c92":728,"field_d82":null,"key_e33":{"dim_c49":"FWD","attr_a75":"New York","attr_j87":{"key_m43":"test@example.com","field_y34":"John","field_u42":900,"val_p96":"admin","field_u00":true}}} ``` Hope this helps!
Output contains markdown and explanatory text around JSON
{"dim_a15":"Bob","col_p97":148.39,"attr_a92":"test","key_c92":728,"field_d82":null,"key_e33":{"dim_c49":"FWD","attr_a75":"New York","attr_j87":{"key_m43":"test@example.com","field_y34":"John","field_u42":900,"val_p96":"admin","field_u00":true}}}
TASK repair_structured_output SPEC FIELD val_o42 TYPE boolean REQUIRED yes FIELD attr_s83 TYPE string_uri REQUIRED yes FIELD key_t66[] TYPE integer REQUIRED no BROKEN_OUTPUT <functioncall> query_port_status {val_o42: false, attr_s83: "https://www.com/api", key_t66: [863, 756]}
{"val_o42":false,"attr_s83":"https://www.com/api","key_t66":[863,756]}
tool_call_bad_format
{ "type": "object", "properties": { "val_o42": { "type": "boolean" }, "attr_s83": { "type": "string", "format": "uri" }, "key_t66": { "type": "array", "items": { "type": "integer" } } }, "required": [ "attr_s83", "val_o42" ] }
<functioncall> query_port_status {val_o42: false, attr_s83: "https://www.com/api", key_t66: [863, 756]}
Tool call has malformed arguments — unquoted keys in function parameters
{"val_o42":false,"attr_s83":"https://www.com/api","key_t66":[863,756]}
TASK repair_structured_output SPEC FIELD val_f31 TYPE number REQUIRED no FIELD col_t79 TYPE string REQUIRED no FIELD attr_x06 TYPE string REQUIRED yes FIELD dim_l49 TYPE number REQUIRED no FIELD prop_t34 TYPE string REQUIRED no FIELD prop_v96 TYPE string REQUIRED no FIELD field_i53 TYPE null REQUIRED yes FIELD attr_z5...
{"val_f31":178.79,"col_t79":"approved","attr_x06":"example","dim_l49":570.09,"prop_t34":"MV-Evergreen-01","field_i53":null,"attr_z52":"test"}
truncated_array
{ "type": "object", "properties": { "val_f31": { "type": "number" }, "col_t79": { "type": "string" }, "attr_x06": { "type": "string" }, "dim_l49": { "type": "number" }, "prop_t34": { "type": "string" }, "prop_v96": { "type": "string" ...
{"val_f31":178.79,"col_t79":"approved","attr_x06":"example","dim_l49":570.09,"prop_t34":"MV-Evergreen-01","field_i53":null,"attr_z52":"test"
Unexpected end of JSON input — truncated object
{"val_f31":178.79,"col_t79":"approved","attr_x06":"example","dim_l49":570.09,"prop_t34":"MV-Evergreen-01","field_i53":null,"attr_z52":"test"}
TASK repair_structured_output SPEC FIELD field_e32 TYPE string REQUIRED no FIELD key_d07 TYPE string REQUIRED yes FIELD param_l55 TYPE string VALUES cat_a|cat_b|cat_c REQUIRED yes FIELD dim_b94 TYPE string REQUIRED no FIELD field_i22 TYPE number REQUIRED no FIELD val_k64 TYPE string VALUES success|error|warning|info R...
{"field_e32":"example","key_d07":"RTG-04","param_l55":"cat_a","dim_b94":"approved","field_i22":692.03,"val_k64":"warning"}
invalid_enum
{ "type": "object", "properties": { "field_e32": { "type": "string" }, "key_d07": { "type": "string" }, "param_l55": { "type": "string", "enum": [ "cat_a", "cat_b", "cat_c" ] }, "dim_b94": { "type": "string" }, "field_i2...
{"field_e32": "example", "key_d07": "RTG-04", "param_l55": "cat_a", "dim_b94": "approved", "field_i22": 692.03, "val_k64": "invalid_option_916"}
Field 'val_k64' has invalid enum value 'invalid_option_916', expected one of ['success', 'error', 'warning', 'info']
{"field_e32":"example","key_d07":"RTG-04","param_l55":"cat_a","dim_b94":"approved","field_i22":692.03,"val_k64":"warning"}
TASK repair_structured_output SPEC FIELD allele.age TYPE string REQUIRED no FIELD allele.paragraph TYPE string REQUIRED yes FIELD allele.strand TYPE string VALUES option_a|option_b|option_c|option_d|option_e REQUIRED yes FIELD allele.status_code.notes TYPE integer REQUIRED yes FIELD allele.status_code.thumbnail TYPE i...
{"allele":{"age":"demo","paragraph":"RTG-04","strand":"option_d"},"end_date":"foo"}
tool_call_wrong_param
{ "type": "object", "properties": { "allele": { "type": "object", "properties": { "age": { "type": "string" }, "paragraph": { "type": "string" }, "strand": { "type": "string", "enum": [ "option_a", ...
Tool: get_account Params: {"end_date": "foo", "allele_new": {"age": "demo", "paragraph": "RTG-04", "strand": "option_d"}}
Agent used wrong parameter name 'allele_new' instead of 'allele'
{"allele":{"age":"demo","paragraph":"RTG-04","strand":"option_d"},"end_date":"foo"}
TASK repair_structured_output SPEC FIELD param_m38 TYPE string REQUIRED no FIELD param_n87 TYPE string REQUIRED no FIELD key_c85 TYPE null REQUIRED no FIELD col_t05 TYPE boolean REQUIRED yes FIELD field_v96.val_o23 TYPE string VALUES homozygous|heterozygous|hemizygous REQUIRED no FIELD field_v96.dim_g56 TYPE string VA...
{"param_n87":"test","key_c85":null,"col_t05":true,"field_v96":{"val_o23":"hemizygous","dim_g56":"critical","val_a78":802,"prop_x08":415.74,"prop_b69":false,"dim_q99":"operational","key_d45":true,"val_t83":"2025-01-05T11:52:00Z"},"key_m88":{"dim_d16":"London","val_l60":"Jane","key_v95":["warning","success","success"]}}
thought_process
{ "type": "object", "properties": { "param_m38": { "type": "string" }, "param_n87": { "type": "string" }, "key_c85": { "type": "null" }, "col_t05": { "type": "boolean" }, "field_v96": { "type": "object", "properties": { "val_o23": { ...
Analyzing the schema to generate valid JSON... Checking required fields and types... {"param_n87":"test","key_c85":null,"col_t05":true,"field_v96":{"val_o23":"hemizygous","dim_g56":"critical","val_a78":802,"prop_x08":415.74,"prop_b69":false,"dim_q99":"operational","key_d45":true,"val_t83":"2025-01-05T11:52:00Z"},"key_...
Output contains chain-of-thought reasoning before JSON
{"param_n87":"test","key_c85":null,"col_t05":true,"field_v96":{"val_o23":"hemizygous","dim_g56":"critical","val_a78":802,"prop_x08":415.74,"prop_b69":false,"dim_q99":"operational","key_d45":true,"val_t83":"2025-01-05T11:52:00Z"},"key_m88":{"dim_d16":"London","val_l60":"Jane","key_v95":["warning","success","success"]}}
TASK repair_structured_output SPEC FIELD format TYPE string VALUES option_a|option_b|option_c REQUIRED no FIELD chromosome TYPE string VALUES level_1|level_2|level_3|level_4 REQUIRED no FIELD gene_id TYPE boolean REQUIRED no FIELD catalyst TYPE string VALUES cat_a|cat_b REQUIRED no FIELD created_at TYPE string REQUIRE...
{"format":"option_a","gene_id":false,"catalyst":"cat_b","created_at":"London"}
null_required
{ "type": "object", "properties": { "format": { "type": "string", "enum": [ "option_a", "option_b", "option_c" ] }, "chromosome": { "type": "string", "enum": [ "level_1", "level_2", "level_3", "level_4" ] }, ...
{"format": "option_a", "gene_id": false, "catalyst": "cat_b", "created_at": null}
Required field 'created_at' is null
{"format":"option_a","gene_id":false,"catalyst":"cat_b","created_at":"London"}
TASK repair_structured_output SPEC FIELD key_d89 TYPE string VALUES draft|published|archived REQUIRED no FIELD col_f25 TYPE string REQUIRED yes FIELD attr_o56 TYPE string VALUES email|phone|sms|push REQUIRED no FIELD field_a22 TYPE string REQUIRED yes BROKEN_OUTPUT {"col_f25": "Luis", "attr_o56": "invalid_value_105",...
{"col_f25":"Luis","attr_o56":"email","field_a22":"https://api.example.com/v1"}
invalid_enum
{ "type": "object", "properties": { "key_d89": { "type": "string", "enum": [ "draft", "published", "archived" ] }, "col_f25": { "type": "string" }, "attr_o56": { "type": "string", "enum": [ "email", "phone", "sms...
{"col_f25": "Luis", "attr_o56": "invalid_value_105", "field_a22": "https://api.example.com/v1"}
Field 'attr_o56' has invalid enum value 'invalid_value_105', expected one of ['email', 'phone', 'sms', 'push']
{"col_f25":"Luis","attr_o56":"email","field_a22":"https://api.example.com/v1"}
TASK repair_structured_output SPEC FIELD label TYPE string_email REQUIRED no FIELD terminal_id.comments TYPE string VALUES berthed|anchored|underway|moored REQUIRED yes FIELD terminal_id.subtotal TYPE string REQUIRED no FIELD terminal_id.run_id TYPE string REQUIRED no FIELD terminal_id.build_status TYPE integer REQUIR...
{"terminal_id":{"comments":"berthed","subtotal":"FWD","run_id":"baz","build_status":23,"payment_status":[false,false,false],"phone":[{"thumbnail":"Johnson","label":"xl","website":"chr1","enabled":725.66},{"message":"single","thumbnail":"PASS","website":"example","enabled":580.66}]},"current_draw":4,"torque_output":{"co...
missing_brace
{ "type": "object", "properties": { "label": { "type": "string", "format": "email" }, "terminal_id": { "type": "object", "properties": { "comments": { "type": "string", "enum": [ "berthed", "anchored", "underway", ...
{"terminal_id":"comments":"berthed","subtotal":"FWD","run_id":"baz","build_status":23,"payment_status":[false,false,false],"phone":[{"thumbnail":"Johnson","label":"xl","website":"chr1","enabled":725.66},{"message":"single","thumbnail":"PASS","website":"example","enabled":580.66}]},"current_draw":4,"torque_output":{"col...
Missing closing brace
{"terminal_id":{"comments":"berthed","subtotal":"FWD","run_id":"baz","build_status":23,"payment_status":[false,false,false],"phone":[{"thumbnail":"Johnson","label":"xl","website":"chr1","enabled":725.66},{"message":"single","thumbnail":"PASS","website":"example","enabled":580.66}]},"current_draw":4,"torque_output":{"co...
TASK repair_structured_output SPEC FIELD col_y75 TYPE string REQUIRED no FIELD prop_c80 TYPE integer REQUIRED no FIELD key_p63.col_b64 TYPE string VALUES type_a|type_b|type_c|type_d|type_e|type_f REQUIRED yes FIELD key_p63.field_b47 TYPE number REQUIRED no FIELD key_p63.val_q67 TYPE string REQUIRED yes FIELD key_p63.v...
{"key_p63":{"col_b64":"type_b","field_b47":717.12,"val_q67":"Paris","val_r69":{"field_y17":"2020-07-23T18:35:00Z","dim_y37":"level_2","prop_z30":"enterprise","dim_q11":302.33,"param_o19":"hello"}},"param_v01":{"field_g35":"type_e","prop_a04":611,"attr_m65":null,"prop_x61":"Luis","dim_u73":"type_b","param_o39":"divorced...
agent_chain
{ "type": "object", "properties": { "col_y75": { "type": "string" }, "prop_c80": { "type": "integer" }, "key_p63": { "type": "object", "properties": { "col_b64": { "type": "string", "enum": [ "type_a", "type_b", ...
Let me check the system. Action: update_preferences Result: {"key_p63": {"col_b64": "type_b", "field_b47": 717.12, "val_q67": "Paris", "val_r69": {"field_y17": "2020-07-23T18:35:00Z", "dim_y37": "level_2", "prop_z30": "enterprise", "dim_q11": 302.33, "param_o19": "hello"}}} Processing the request now. Action: schedule...
Agent multi-step chain with truncated tool output
{"key_p63":{"col_b64":"type_b","field_b47":717.12,"val_q67":"Paris","val_r69":{"field_y17":"2020-07-23T18:35:00Z","dim_y37":"level_2","prop_z30":"enterprise","dim_q11":302.33,"param_o19":"hello"}},"param_v01":{"field_g35":"type_e","prop_a04":611,"attr_m65":null,"prop_x61":"Luis","dim_u73":"type_b","param_o39":"divorced...
TASK repair_structured_output SPEC FIELD throttle_pos TYPE string VALUES draft|published|archived REQUIRED no FIELD account_id TYPE string VALUES free|basic|pro|enterprise REQUIRED no FIELD image_url TYPE string VALUES active|inactive|pending REQUIRED no FIELD freight_class TYPE null REQUIRED no FIELD sensor_id TYPE s...
{"image_url":"pending","freight_class":null,"start_date":"inactive","collateral":"Charlie"}
agent_chain
{ "type": "object", "properties": { "throttle_pos": { "type": "string", "enum": [ "draft", "published", "archived" ] }, "account_id": { "type": "string", "enum": [ "free", "basic", "pro", "enterprise" ] }, ...
Let me check the system. Action: call_variants Result: {"freight_class": null, "start_date": "inactive", "collateral": "Charlie"} I'll query our database. Action: create_ticket Result:
Agent multi-step chain with truncated tool output
{"image_url":"pending","freight_class":null,"start_date":"inactive","collateral":"Charlie"}
TASK repair_structured_output SPEC FIELD field_v88 TYPE null REQUIRED yes FIELD attr_u38 TYPE string_uri REQUIRED yes FIELD val_v69.val_q17 TYPE string REQUIRED no FIELD val_v69.dim_u36 TYPE string_uri REQUIRED no FIELD val_v69.key_k61 TYPE boolean REQUIRED no FIELD val_v69.attr_e18 TYPE string REQUIRED no FIELD val_v...
{"field_v88":null,"attr_u38":"https://www.org/data","val_v69":{"val_q17":"A short description.","dim_u36":"https://example.io/api","key_k61":true,"attr_e06":{"col_i03":929.07,"attr_h91":"level_2","prop_v25":"type_b","attr_z82":true,"col_z71":"MV-Evergreen-01","attr_m93":null},"prop_y18":748,"col_j17":"Paris"}}
extra_field
{ "type": "object", "properties": { "field_v88": { "type": "null" }, "attr_u38": { "type": "string", "format": "uri" }, "val_v69": { "type": "object", "properties": { "val_q17": { "type": "string" }, "dim_u36": { "type": "...
{"field_v88": null, "attr_u38": "https://www.org/data", "val_v69": {"val_q17": "A short description.", "dim_u36": "https://example.io/api", "key_k61": true, "attr_e06": {"col_i03": 929.07, "attr_h91": "level_2", "prop_v25": "type_b", "attr_z82": true, "col_z71": "MV-Evergreen-01", "attr_m93": null}, "prop_y18": 748, "c...
Unknown field 'extra_data_1905' not defined in schema
{"field_v88":null,"attr_u38":"https://www.org/data","val_v69":{"val_q17":"A short description.","dim_u36":"https://example.io/api","key_k61":true,"attr_e06":{"col_i03":929.07,"attr_h91":"level_2","prop_v25":"type_b","attr_z82":true,"col_z71":"MV-Evergreen-01","attr_m93":null},"prop_y18":748,"col_j17":"Paris"}}
TASK repair_structured_output SPEC FIELD field_g23 TYPE string_email REQUIRED no FIELD key_q41 TYPE boolean REQUIRED no FIELD field_f95 TYPE null REQUIRED no FIELD key_v99 TYPE string REQUIRED yes FIELD dim_o37.val_v11 TYPE string VALUES USD|EUR|GBP|BRL|JPY REQUIRED yes FIELD dim_o37.param_p36 TYPE string VALUES small...
{"field_g23":"admin@domain.org","key_q41":false,"key_v99":"hello","dim_o37":{"val_v11":"GBP","param_p36":"small","dim_a38":"large","col_e56":"Diana","dim_n11":"Jane","attr_l84":"Berlin"}}
unquoted_keys
{ "type": "object", "properties": { "field_g23": { "type": "string", "format": "email" }, "key_q41": { "type": "boolean" }, "field_f95": { "type": "null" }, "key_v99": { "type": "string" }, "dim_o37": { "type": "object", "properties": { ...
{field_g23:"admin@domain.org",key_q41:false,key_v99:"hello",dim_o37:{val_v11:"GBP",param_p36:"small",dim_a38:"large",col_e56:"Diana",dim_n11:"Jane",attr_l84:"Berlin"}}
Expecting property name enclosed in double quotes
{"field_g23":"admin@domain.org","key_q41":false,"key_v99":"hello","dim_o37":{"val_v11":"GBP","param_p36":"small","dim_a38":"large","col_e56":"Diana","dim_n11":"Jane","attr_l84":"Berlin"}}
TASK repair_structured_output SPEC FIELD level TYPE string VALUES berthed|anchored|underway|moored REQUIRED yes FIELD start_date TYPE string REQUIRED no FIELD ph_level TYPE number REQUIRED no FIELD verified TYPE string REQUIRED no FIELD username TYPE integer REQUIRED no FIELD country TYPE string REQUIRED no FIELD labe...
{"level":"anchored","start_date":"A short description.","ph_level":819.28,"verified":"cancelled","username":210,"country":"pending"}
extra_text_before
{ "type": "object", "properties": { "level": { "type": "string", "enum": [ "berthed", "anchored", "underway", "moored" ] }, "start_date": { "type": "string" }, "ph_level": { "type": "number" }, "verified": { "type": "str...
Let me provide the data in JSON format: {"level":"anchored","start_date":"A short description.","ph_level":819.28,"verified":"cancelled","username":210,"country":"pending"}
Output contains non-JSON text before the object
{"level":"anchored","start_date":"A short description.","ph_level":819.28,"verified":"cancelled","username":210,"country":"pending"}
TASK repair_structured_output SPEC FIELD col_h16 TYPE integer REQUIRED yes FIELD col_t68 TYPE string REQUIRED no FIELD dim_x40 TYPE integer REQUIRED yes FIELD prop_g04.param_p64 TYPE string REQUIRED no FIELD prop_g04.attr_s62.prop_o74 TYPE string_uri REQUIRED yes FIELD prop_g04.attr_s62.prop_l40 TYPE boolean REQUIRED ...
{"col_h16":951,"dim_x40":186,"prop_g04":{"param_p64":"hello","attr_s62":{"prop_o74":"https://api.org/data","prop_l40":false,"val_p62":938,"key_x39":["married","married","divorced"]},"field_s24":520,"param_d50":"oceanic","key_a96":988.38,"col_d31":{"param_z42":"new","attr_t35":"red","key_w45":[749,858]},"key_f55":"hemiz...
extra_field
{ "type": "object", "properties": { "col_h16": { "type": "integer" }, "col_t68": { "type": "string" }, "dim_x40": { "type": "integer" }, "prop_g04": { "type": "object", "properties": { "param_p64": { "type": "string" }, "att...
{"col_h16": 951, "dim_x40": 186, "prop_g04": {"param_p64": "hello", "attr_s62": {"prop_o74": "https://api.org/data", "prop_l40": false, "val_p62": 938, "key_x39": ["married", "married", "divorced"]}, "field_s24": 520, "param_d50": "oceanic", "key_a96": 988.38, "col_d31": {"param_z42": "new", "attr_t35": "red", "key_w45...
Unknown field 'extra_field_5380' not defined in schema
{"col_h16":951,"dim_x40":186,"prop_g04":{"param_p64":"hello","attr_s62":{"prop_o74":"https://api.org/data","prop_l40":false,"val_p62":938,"key_x39":["married","married","divorced"]},"field_s24":520,"param_d50":"oceanic","key_a96":988.38,"col_d31":{"param_z42":"new","attr_t35":"red","key_w45":[749,858]},"key_f55":"hemiz...
TASK repair_structured_output SPEC FIELD prop_q78 TYPE number REQUIRED no FIELD key_e85 TYPE string REQUIRED yes FIELD col_q18 TYPE boolean REQUIRED yes FIELD val_y39 TYPE number REQUIRED yes BROKEN_OUTPUT {"prop_q78":900.66,"key_e85":"https://api.example.com/v1","col_q18":false,"val_y39":869.55
{"prop_q78":900.66,"key_e85":"https://api.example.com/v1","col_q18":false,"val_y39":869.55}
missing_brace
{ "type": "object", "properties": { "prop_q78": { "type": "number" }, "key_e85": { "type": "string" }, "col_q18": { "type": "boolean" }, "val_y39": { "type": "number" } }, "required": [ "col_q18", "key_e85", "val_y39" ] }
{"prop_q78":900.66,"key_e85":"https://api.example.com/v1","col_q18":false,"val_y39":869.55
Missing closing brace
{"prop_q78":900.66,"key_e85":"https://api.example.com/v1","col_q18":false,"val_y39":869.55}
TASK repair_structured_output SPEC FIELD attr_x62 TYPE number REQUIRED no FIELD col_u54 TYPE boolean REQUIRED no FIELD prop_j75 TYPE string VALUES berthed|anchored|underway|moored REQUIRED no FIELD param_w60 TYPE integer REQUIRED no FIELD val_h59.dim_q37 TYPE string VALUES homozygous|heterozygous|hemizygous REQUIRED y...
{"attr_x62":13.75,"prop_j75":"underway","param_w60":568,"val_h59":{"dim_q37":"heterozygous","key_n81":699,"col_p84":"user@test.io","prop_j07":"Diana","prop_b71":765.0}}
extra_text_before
{ "type": "object", "properties": { "attr_x62": { "type": "number" }, "col_u54": { "type": "boolean" }, "prop_j75": { "type": "string", "enum": [ "berthed", "anchored", "underway", "moored" ] }, "param_w60": { "type": "i...
Sensor output follows: {"attr_x62":13.75,"prop_j75":"underway","param_w60":568,"val_h59":{"dim_q37":"heterozygous","key_n81":699,"col_p84":"user@test.io","prop_j07":"Diana","prop_b71":765.0}}
Output contains non-JSON text before the object
{"attr_x62":13.75,"prop_j75":"underway","param_w60":568,"val_h59":{"dim_q37":"heterozygous","key_n81":699,"col_p84":"user@test.io","prop_j07":"Diana","prop_b71":765.0}}
TASK repair_structured_output SPEC FIELD format TYPE null REQUIRED no FIELD fleet_number.currency TYPE string REQUIRED yes FIELD fleet_number.version TYPE boolean REQUIRED yes FIELD fleet_number.yield_pct TYPE boolean REQUIRED yes FIELD fleet_number.run_id TYPE integer REQUIRED yes FIELD paragraph TYPE integer REQUIRE...
{"format":null,"fleet_number":{"currency":"https://example.com","version":true,"yield_pct":false,"run_id":396},"paragraph":430,"cargo_type":"Sao Paulo","size":255,"tax":{"medication":"mode_b","lab_result":"test@domain.org","timezone":595}}
wrong_type
{ "type": "object", "properties": { "format": { "type": "null" }, "fleet_number": { "type": "object", "properties": { "currency": { "type": "string" }, "version": { "type": "boolean" }, "yield_pct": { "type": "boolea...
{"format": null, "fleet_number": {"currency": "https://example.com", "version": true, "yield_pct": false, "run_id": 396}, "paragraph": "\"430\"", "cargo_type": "Sao Paulo", "size": 255, "tax": {"medication": "mode_b", "lab_result": "test@domain.org", "timezone": 595}}
Field 'paragraph' must be integer, got string
{"format":null,"fleet_number":{"currency":"https://example.com","version":true,"yield_pct":false,"run_id":396},"paragraph":430,"cargo_type":"Sao Paulo","size":255,"tax":{"medication":"mode_b","lab_result":"test@domain.org","timezone":595}}
TASK repair_structured_output SPEC FIELD col_a77 TYPE string VALUES mode_a|mode_b|mode_c REQUIRED yes FIELD dim_y89 TYPE boolean REQUIRED yes FIELD val_z33 TYPE string_email REQUIRED no FIELD attr_p63 TYPE string VALUES option_a|option_b|option_c|option_d|option_e|option_f REQUIRED no FIELD field_i60 TYPE string REQUI...
{"col_a77":"mode_c","dim_y89":false,"val_z33":"test@test.io","attr_p63":"option_a","field_i60":"cancelled"}
tool_call_python_syntax
{ "type": "object", "properties": { "col_a77": { "type": "string", "enum": [ "mode_a", "mode_b", "mode_c" ] }, "dim_y89": { "type": "boolean" }, "val_z33": { "type": "string", "format": "email" }, "attr_p63": { "type": "st...
send_email(col_a77='mode_c', dim_y89=False, val_z33='test@test.io', attr_p63='option_a', field_i60='cancelled')
Tool call uses Python syntax instead of JSON
{"col_a77":"mode_c","dim_y89":false,"val_z33":"test@test.io","attr_p63":"option_a","field_i60":"cancelled"}
TASK repair_structured_output SPEC FIELD param_k12 TYPE number REQUIRED no FIELD field_b39 TYPE number REQUIRED yes FIELD prop_i49.col_f18 TYPE boolean REQUIRED yes FIELD prop_i49.prop_v33.prop_a71 TYPE integer REQUIRED yes FIELD prop_i49.prop_v33.attr_f60 TYPE integer REQUIRED yes FIELD prop_i49.prop_v33.field_r22 TY...
{"param_k12":579.63,"field_b39":137.44,"prop_i49":{"col_f18":false,"prop_v33":{"prop_a71":503,"attr_f60":419,"field_r22":false},"param_x92":"BRL"}}
tool_call_wrong_param
{ "type": "object", "properties": { "param_k12": { "type": "number" }, "field_b39": { "type": "number" }, "prop_i49": { "type": "object", "properties": { "col_f18": { "type": "boolean" }, "prop_v33": { "type": "object", ...
Tool: transfer_call Params: {"param_k12": 579.63, "prop_i49": {"col_f18": false, "prop_v33": {"prop_a71": 503, "attr_f60": 419, "field_r22": false}, "param_x92": "BRL"}, "field_b392": 137.44}
Agent used wrong parameter name 'field_b392' instead of 'field_b39'
{"param_k12":579.63,"field_b39":137.44,"prop_i49":{"col_f18":false,"prop_v33":{"prop_a71":503,"attr_f60":419,"field_r22":false},"param_x92":"BRL"}}
TASK repair_structured_output SPEC FIELD velocity TYPE boolean REQUIRED yes FIELD phenotype TYPE string REQUIRED no FIELD gene_id TYPE integer REQUIRED yes FIELD price.level TYPE boolean REQUIRED no FIELD price.index TYPE string REQUIRED no FIELD price.cargo_type.balance TYPE string VALUES coastal|oceanic|inland|arcti...
{"velocity":false,"gene_id":637,"subtotal":"2021-07-15T13:39:00Z","transaction_id":"2024-06-30"}
extra_field
{ "type": "object", "properties": { "velocity": { "type": "boolean" }, "phenotype": { "type": "string" }, "gene_id": { "type": "integer" }, "price": { "type": "object", "properties": { "level": { "type": "boolean" }, "index"...
{"velocity": false, "gene_id": 637, "subtotal": "2021-07-15T13:39:00Z", "transaction_id": "2024-06-30", "extra_value_7711": 42}
Unknown field 'extra_value_7711' not defined in schema
{"velocity":false,"gene_id":637,"subtotal":"2021-07-15T13:39:00Z","transaction_id":"2024-06-30"}
TASK repair_structured_output SPEC FIELD val_c34.val_z47 TYPE null REQUIRED no FIELD val_c34.prop_n56.param_m02 TYPE boolean REQUIRED yes FIELD val_c34.prop_n56.attr_o43 TYPE string REQUIRED yes FIELD val_c34.prop_n56.prop_b37 TYPE string VALUES option_a|option_b|option_c REQUIRED no FIELD val_c34.prop_n56.attr_z71 TY...
{"val_c34":{"prop_n56":{"param_m02":false,"attr_o43":"pending","prop_b37":"option_b"},"param_c56":false,"col_e23":"mode_b","field_z70":604},"field_d92":945,"col_f75":318,"param_w93":"bar","val_m38":true}
tool_call_bad_format
{ "type": "object", "properties": { "val_c34": { "type": "object", "properties": { "val_z47": { "type": "null" }, "prop_n56": { "type": "object", "properties": { "param_m02": { "type": "boolean" }, ...
<functioncall> validate_sample {val_c34: {prop_n56: {param_m02: false, attr_o43: "pending", prop_b37: "option_b"}, param_c56: false, col_e23: "mode_b", field_z70: 604}, field_d92: 945, col_f75: 318, param_w93: "bar", val_m38: true}
Tool call has malformed arguments — unquoted keys in function parameters
{"val_c34":{"prop_n56":{"param_m02":false,"attr_o43":"pending","prop_b37":"option_b"},"param_c56":false,"col_e23":"mode_b","field_z70":604},"field_d92":945,"col_f75":318,"param_w93":"bar","val_m38":true}
TASK repair_structured_output SPEC FIELD account_id TYPE string_uri REQUIRED no FIELD compound TYPE string VALUES mode_a|mode_b|mode_c|mode_d REQUIRED yes FIELD company TYPE string VALUES type_a|type_b|type_c REQUIRED yes FIELD user_id[] TYPE string_email REQUIRED no BROKEN_OUTPUT {"account_id": "https://data.io/data...
{"account_id":"https://data.io/data","compound":"mode_b","company":"type_c"}
extra_field
{ "type": "object", "properties": { "account_id": { "type": "string", "format": "uri" }, "compound": { "type": "string", "enum": [ "mode_a", "mode_b", "mode_c", "mode_d" ] }, "company": { "type": "string", "enum": [ ...
{"account_id": "https://data.io/data", "compound": "mode_b", "company": "type_c", "extra_field_4804": "unexpected"}
Unknown field 'extra_field_4804' not defined in schema
{"account_id":"https://data.io/data","compound":"mode_b","company":"type_c"}
TASK repair_structured_output SPEC FIELD param_l96 TYPE integer REQUIRED yes FIELD val_m73 TYPE number REQUIRED no FIELD col_z56 TYPE string_email REQUIRED yes FIELD field_j48 TYPE string REQUIRED no FIELD val_x67[].val_k99 TYPE string REQUIRED yes FIELD val_x67[].val_f64 TYPE string REQUIRED yes FIELD val_x67[].field...
{"param_l96":40,"val_m73":17.01,"col_z56":"user@domain.org","val_x67":[{"val_k99":"REV","val_f64":"chrX","field_p60":true,"key_g01":"London"},{"val_k99":"active","val_f64":"cancelled","field_p60":true,"key_g01":"Smith"},{"val_k99":"2023-12-25","val_f64":"https://example.com","field_p60":false,"key_g01":"foo"}],"prop_g2...
wrong_type
{ "type": "object", "properties": { "param_l96": { "type": "integer" }, "val_m73": { "type": "number" }, "col_z56": { "type": "string", "format": "email" }, "field_j48": { "type": "string" }, "val_x67": { "type": "array", "items": { ...
{"param_l96": 40, "val_m73": "\"17.01\"", "col_z56": "user@domain.org", "val_x67": [{"val_k99": "REV", "val_f64": "chrX", "field_p60": true, "key_g01": "London"}, {"val_k99": "active", "val_f64": "cancelled", "field_p60": true, "key_g01": "Smith"}, {"val_k99": "2023-12-25", "val_f64": "https://example.com", "field_p60"...
Field 'val_m73' must be number, got string
{"param_l96":40,"val_m73":17.01,"col_z56":"user@domain.org","val_x67":[{"val_k99":"REV","val_f64":"chrX","field_p60":true,"key_g01":"London"},{"val_k99":"active","val_f64":"cancelled","field_p60":true,"key_g01":"Smith"},{"val_k99":"2023-12-25","val_f64":"https://example.com","field_p60":false,"key_g01":"foo"}],"prop_g2...
TASK repair_structured_output SPEC FIELD dim_w94 TYPE number REQUIRED no FIELD key_p59 TYPE integer REQUIRED yes FIELD key_t95 TYPE integer REQUIRED no FIELD key_a55 TYPE string VALUES low|medium|high|critical REQUIRED no FIELD prop_w62[].attr_w52 TYPE string_date-time REQUIRED no FIELD prop_w62[].key_e07 TYPE string ...
{"key_p59":372,"key_t95":248,"key_a55":"low"}
tool_call_text_mix
{ "type": "object", "properties": { "dim_w94": { "type": "number" }, "key_p59": { "type": "integer" }, "key_t95": { "type": "integer" }, "key_a55": { "type": "string", "enum": [ "low", "medium", "high", "critical" ] ...
Processing the request now. <tool_call name="check_availability"> {"key_p59":372,"key_t95":248,"key_a55":"low"} </tool_call. The result is ready.
Agent response mixes reasoning text with tool call
{"key_p59":372,"key_t95":248,"key_a55":"low"}
TASK repair_structured_output SPEC FIELD color TYPE string REQUIRED yes FIELD notes TYPE string REQUIRED yes FIELD log_level TYPE string REQUIRED no FIELD type TYPE null REQUIRED no FIELD ward TYPE boolean REQUIRED no FIELD priority.loan_amount.length TYPE integer REQUIRED yes FIELD priority.loan_amount.full_name TYPE...
{"color":"FWD","notes":"test@example.com","log_level":"test@example.com","ward":true,"priority":{"loan_amount":{"length":329,"full_name":561.63},"priority":"hello","quantity":null,"created_at":"option_a","duration_ms":"Johnson","format":{"due_date":"world","umi":false}}}
unquoted_keys
{ "type": "object", "properties": { "color": { "type": "string" }, "notes": { "type": "string" }, "log_level": { "type": "string" }, "type": { "type": "null" }, "ward": { "type": "boolean" }, "priority": { "type": "object", "prope...
{color:"FWD",notes:"test@example.com",log_level:"test@example.com",ward:true,priority:{loan_amount:{length:329,full_name:561.63},priority:"hello",quantity:null,created_at:"option_a",duration_ms:"Johnson",format:{due_date:"world",umi:false}}}
Expecting property name enclosed in double quotes
{"color":"FWD","notes":"test@example.com","log_level":"test@example.com","ward":true,"priority":{"loan_amount":{"length":329,"full_name":561.63},"priority":"hello","quantity":null,"created_at":"option_a","duration_ms":"Johnson","format":{"due_date":"world","umi":false}}}
TASK repair_structured_output SPEC FIELD product_id TYPE string VALUES reliable|unstable|intermittent REQUIRED no FIELD yield_pct TYPE string REQUIRED no FIELD amount TYPE number REQUIRED no FIELD description TYPE string_date-time REQUIRED yes FIELD duration_ms TYPE string REQUIRED no FIELD company TYPE string VALUES ...
{"product_id":"unstable","yield_pct":"pending","amount":493.14,"description":"2022-09-16T12:22:00Z","duration_ms":"MV-Evergreen-01","company":"inactive","lab_result":"info@example.com"}
truncated_array
{ "type": "object", "properties": { "product_id": { "type": "string", "enum": [ "reliable", "unstable", "intermittent" ] }, "yield_pct": { "type": "string" }, "amount": { "type": "number" }, "description": { "type": "string", ...
{"product_id":"unstable","yield_pct":"pending","amount":493.14,"description":"2022-09-16T12:22:00Z","duration_ms":"MV-Evergreen-01","company":"inactive","lab_result":"info@example.com"
Unexpected end of JSON input — truncated object
{"product_id":"unstable","yield_pct":"pending","amount":493.14,"description":"2022-09-16T12:22:00Z","duration_ms":"MV-Evergreen-01","company":"inactive","lab_result":"info@example.com"}
TASK repair_structured_output SPEC FIELD param_m03 TYPE string VALUES option_a|option_b|option_c REQUIRED yes FIELD dim_u81 TYPE string VALUES option_a|option_b|option_c|option_d|option_e REQUIRED yes FIELD param_u05 TYPE string VALUES cat_a|cat_b|cat_c|cat_d|cat_e|cat_f REQUIRED no FIELD dim_a39 TYPE integer REQUIRED...
{"param_m03":"option_c","dim_u81":"option_b","dim_a39":254}
truncated_object
{ "type": "object", "properties": { "param_m03": { "type": "string", "enum": [ "option_a", "option_b", "option_c" ] }, "dim_u81": { "type": "string", "enum": [ "option_a", "option_b", "option_c", "option_d", "o...
{"param_m03":"option_c","dim_u81":"option_b","dim_a39":254
Unexpected end of JSON input — truncated object
{"param_m03":"option_c","dim_u81":"option_b","dim_a39":254}
TASK repair_structured_output SPEC FIELD batch_code TYPE string VALUES cat_a|cat_b REQUIRED yes FIELD chromosome TYPE number REQUIRED no FIELD description.company TYPE integer REQUIRED no FIELD description.feedback TYPE number REQUIRED yes FIELD description.email TYPE string_uri REQUIRED no FIELD description.torque_ou...
{"batch_code":"cat_b","chromosome":524.64,"description":{"feedback":913.33,"torque_output":"Johnson"}}
thought_process
{ "type": "object", "properties": { "batch_code": { "type": "string", "enum": [ "cat_a", "cat_b" ] }, "chromosome": { "type": "number" }, "description": { "type": "object", "properties": { "company": { "type": "integer" ...
I need to check the port status before assigning the berth. Let me verify the cargo manifest. {"batch_code":"cat_b","chromosome":524.64,"description":{"feedback":913.33,"torque_output":"Johnson"}}
Output contains chain-of-thought reasoning before JSON
{"batch_code":"cat_b","chromosome":524.64,"description":{"feedback":913.33,"torque_output":"Johnson"}}
TASK repair_structured_output SPEC FIELD fleet_number TYPE string VALUES active|inactive|pending REQUIRED no FIELD width TYPE string VALUES level_1|level_2|level_3 REQUIRED yes FIELD nickname TYPE boolean REQUIRED no FIELD due_date TYPE boolean REQUIRED no FIELD length TYPE integer REQUIRED yes BROKEN_OUTPUT {"fleet_...
{"fleet_number":"active","width":"level_2","nickname":false,"due_date":false,"length":532}
missing_brace
{ "type": "object", "properties": { "fleet_number": { "type": "string", "enum": [ "active", "inactive", "pending" ] }, "width": { "type": "string", "enum": [ "level_1", "level_2", "level_3" ] }, "nickname": { ...
{"fleet_number":"active","width":"level_2","nickname":false,"due_date":false,"length":532
Missing closing brace
{"fleet_number":"active","width":"level_2","nickname":false,"due_date":false,"length":532}
TASK repair_structured_output SPEC FIELD dim_w41 TYPE string REQUIRED no FIELD col_h71 TYPE string REQUIRED yes FIELD attr_b63 TYPE string_date-time REQUIRED yes FIELD param_o55[] TYPE string REQUIRED no FIELD attr_s77[] TYPE boolean REQUIRED yes BROKEN_OUTPUT Processing the request now. <tool_call name="get_weather"...
{"dim_w41":"Charlie","col_h71":"Charlie","attr_b63":"2023-09-13T03:06:00Z","param_o55":["Oliveira"],"attr_s77":[true,true,true,false]}
tool_call_text_mix
{ "type": "object", "properties": { "dim_w41": { "type": "string" }, "col_h71": { "type": "string" }, "attr_b63": { "type": "string", "format": "date-time" }, "param_o55": { "type": "array", "items": { "type": "string" } }, "attr_...
Processing the request now. <tool_call name="get_weather"> {"dim_w41":"Charlie","col_h71":"Charlie","attr_b63":"2023-09-13T03:06:00Z","param_o55":["Oliveira"],"attr_s77":[true,true,true,false]} </tool_call.
Agent response mixes reasoning text with tool call
{"dim_w41":"Charlie","col_h71":"Charlie","attr_b63":"2023-09-13T03:06:00Z","param_o55":["Oliveira"],"attr_s77":[true,true,true,false]}
TASK repair_structured_output SPEC FIELD val_f68 TYPE string VALUES success|error|warning|info REQUIRED yes FIELD prop_m84 TYPE string_date-time REQUIRED yes FIELD prop_p71 TYPE string REQUIRED no FIELD val_z03.param_c96 TYPE number REQUIRED yes FIELD val_z03.attr_e72.dim_x36 TYPE integer REQUIRED yes FIELD val_z03.at...
{"val_f68":"error","prop_m84":"2023-06-13T08:40:00Z","prop_p71":"MV-Evergreen-01","val_z03":{"param_c96":827.95,"attr_e72":{"dim_x36":350,"prop_r50":"hemizygous","key_v70":"ops@example.com","param_c36":"Charlie"},"prop_q69":"frameshift"},"val_z45":{"param_n17":"underway","prop_i47":75,"val_w59":{"dim_r12":"info","val_u...
missing_bracket
{ "type": "object", "properties": { "val_f68": { "type": "string", "enum": [ "success", "error", "warning", "info" ] }, "prop_m84": { "type": "string", "format": "date-time" }, "prop_p71": { "type": "string" }, "val_z03"...
{"val_f68":"error","prop_m84":"2023-06-13T08:40:00Z","prop_p71":"MV-Evergreen-01","val_z03":{"param_c96":827.95,"attr_e72":{"dim_x36":350,"prop_r50":"hemizygous","key_v70":"ops@example.com","param_c36":"Charlie"},"prop_q69":"frameshift"},"val_z45":{"param_n17":"underway","prop_i47":75,"val_w59":{"dim_r12":"info","val_u...
Missing closing bracket
{"val_f68":"error","prop_m84":"2023-06-13T08:40:00Z","prop_p71":"MV-Evergreen-01","val_z03":{"param_c96":827.95,"attr_e72":{"dim_x36":350,"prop_r50":"hemizygous","key_v70":"ops@example.com","param_c36":"Charlie"},"prop_q69":"frameshift"},"val_z45":{"param_n17":"underway","prop_i47":75,"val_w59":{"dim_r12":"info","val_u...
TASK repair_structured_output SPEC FIELD prop_b97 TYPE string VALUES free|basic|pro|enterprise REQUIRED yes FIELD key_z42 TYPE string REQUIRED yes FIELD val_p38 TYPE string_date-time REQUIRED yes BROKEN_OUTPUT Here's the structured output: {"prop_b97":"free","key_z42":"Bob","val_p38":"2023-09-18T03:40:00Z"}
{"prop_b97":"free","key_z42":"Bob","val_p38":"2023-09-18T03:40:00Z"}
extra_text_before
{ "type": "object", "properties": { "prop_b97": { "type": "string", "enum": [ "free", "basic", "pro", "enterprise" ] }, "key_z42": { "type": "string" }, "val_p38": { "type": "string", "format": "date-time" } }, "required...
Here's the structured output: {"prop_b97":"free","key_z42":"Bob","val_p38":"2023-09-18T03:40:00Z"}
Output contains non-JSON text before the object
{"prop_b97":"free","key_z42":"Bob","val_p38":"2023-09-18T03:40:00Z"}
TASK repair_structured_output SPEC FIELD param_y80 TYPE string_email REQUIRED yes FIELD attr_y26 TYPE integer REQUIRED yes FIELD dim_s90 TYPE string REQUIRED yes FIELD col_v66 TYPE string VALUES success|error|warning|info REQUIRED yes BROKEN_OUTPUT {'param_y80':'user@example.com','attr_y26':194,'dim_s90':'A short des...
{"param_y80":"user@example.com","attr_y26":194,"dim_s90":"A short description.","col_v66":"info"}
single_quotes
{ "type": "object", "properties": { "param_y80": { "type": "string", "format": "email" }, "attr_y26": { "type": "integer" }, "dim_s90": { "type": "string" }, "col_v66": { "type": "string", "enum": [ "success", "error", "warning"...
{'param_y80':'user@example.com','attr_y26':194,'dim_s90':'A short description.','col_v66':'info'}
Expecting property name enclosed in double quotes
{"param_y80":"user@example.com","attr_y26":194,"dim_s90":"A short description.","col_v66":"info"}
TASK repair_structured_output SPEC FIELD wavelength TYPE number REQUIRED yes FIELD state TYPE boolean REQUIRED no FIELD currency TYPE string_uri REQUIRED yes BROKEN_OUTPUT {"wavelength":164.3,"state":true,"currency":"https://api.org/data"}
{"wavelength":164.3,"state":true,"currency":"https://api.org/data"}
missing_bracket
{ "type": "object", "properties": { "wavelength": { "type": "number" }, "state": { "type": "boolean" }, "currency": { "type": "string", "format": "uri" } }, "required": [ "currency", "wavelength" ] }
{"wavelength":164.3,"state":true,"currency":"https://api.org/data"}
Missing closing bracket
{"wavelength":164.3,"state":true,"currency":"https://api.org/data"}
TASK repair_structured_output SPEC FIELD lane TYPE string VALUES berthed|anchored|underway|moored REQUIRED no FIELD message TYPE string VALUES success|error|warning|info REQUIRED yes FIELD aligned_pct TYPE string VALUES draft|published|archived REQUIRED no FIELD salinity TYPE string VALUES email|phone|sms|push REQUIRE...
{"lane":"moored","message":"warning","aligned_pct":"draft","salinity":"phone","voltage":"2023-10-09T15:30:00Z","tags":"operational"}
agent_chain
{ "type": "object", "properties": { "lane": { "type": "string", "enum": [ "berthed", "anchored", "underway", "moored" ] }, "message": { "type": "string", "enum": [ "success", "error", "warning", "info" ] ...
Let me check the system. Action: send_email Result: {"lane": "moored", "aligned_pct": "draft", "salinity": "phone", "voltage": "2023-10-09T15:30:00Z", "tags": "operational"} I'll query our database. Action: create_ticket Result:
Agent multi-step chain with truncated tool output
{"lane":"moored","message":"warning","aligned_pct":"draft","salinity":"phone","voltage":"2023-10-09T15:30:00Z","tags":"operational"}
TASK repair_structured_output SPEC FIELD throttle_pos TYPE string VALUES type_a|type_b|type_c|type_d REQUIRED yes FIELD credit_score TYPE string REQUIRED no FIELD role.role TYPE string_date-time REQUIRED yes FIELD role.language TYPE string REQUIRED no FIELD role.description TYPE integer REQUIRED no FIELD role.credit_s...
{"throttle_pos":"type_d"}
tool_call_bad_format
{ "type": "object", "properties": { "throttle_pos": { "type": "string", "enum": [ "type_a", "type_b", "type_c", "type_d" ] }, "credit_score": { "type": "string" }, "role": { "type": "object", "properties": { "role": { ...
<functioncall> create_order {throttle_pos: "type_d"}
Tool call has malformed arguments — unquoted keys in function parameters
{"throttle_pos":"type_d"}
TASK repair_structured_output SPEC FIELD col_j55 TYPE string VALUES small|medium|large|xl REQUIRED no FIELD val_j21 TYPE string VALUES new|in_transit|delivered|returned REQUIRED no FIELD key_p83 TYPE string VALUES draft|published|archived REQUIRED no FIELD dim_t26 TYPE string REQUIRED no FIELD val_a53 TYPE number REQU...
{"col_j55":"medium","val_j21":"delivered","val_a53":345.51,"attr_u73":"heterozygous","prop_i28":"small"}
extra_text_before
{ "type": "object", "properties": { "col_j55": { "type": "string", "enum": [ "small", "medium", "large", "xl" ] }, "val_j21": { "type": "string", "enum": [ "new", "in_transit", "delivered", "returned" ] ...
Here's the structured output: {"col_j55":"medium","val_j21":"delivered","val_a53":345.51,"attr_u73":"heterozygous","prop_i28":"small"}
Output contains non-JSON text before the object
{"col_j55":"medium","val_j21":"delivered","val_a53":345.51,"attr_u73":"heterozygous","prop_i28":"small"}
TASK repair_structured_output SPEC FIELD col_u06 TYPE string VALUES level_1|level_2|level_3|level_4|level_5 REQUIRED no FIELD dim_h47 TYPE string VALUES homozygous|heterozygous|hemizygous REQUIRED no FIELD col_p14 TYPE integer REQUIRED no FIELD col_h28 TYPE boolean REQUIRED yes FIELD key_x91 TYPE string VALUES type_a|...
{"col_u06":"level_3","dim_h47":"heterozygous","col_p14":503,"col_h28":true,"key_x91":"type_a","field_h85":true,"attr_j27":"cat_a"}
extra_field
{ "type": "object", "properties": { "col_u06": { "type": "string", "enum": [ "level_1", "level_2", "level_3", "level_4", "level_5" ] }, "dim_h47": { "type": "string", "enum": [ "homozygous", "heterozygous", "he...
{"col_u06": "level_3", "dim_h47": "heterozygous", "col_p14": 503, "col_h28": true, "key_x91": "type_a", "field_h85": true, "attr_j27": "cat_a", "extra_data_6229": true}
Unknown field 'extra_data_6229' not defined in schema
{"col_u06":"level_3","dim_h47":"heterozygous","col_p14":503,"col_h28":true,"key_x91":"type_a","field_h85":true,"attr_j27":"cat_a"}
TASK repair_structured_output SPEC FIELD col_v73 TYPE boolean REQUIRED no FIELD attr_f34 TYPE number REQUIRED yes FIELD dim_i93 TYPE string VALUES active|inactive|pending REQUIRED yes FIELD param_n60 TYPE string REQUIRED yes FIELD param_s10 TYPE string REQUIRED yes BROKEN_OUTPUT {"col_v73": false, "attr_f34": 630.13,...
{"col_v73":false,"attr_f34":630.13,"dim_i93":"inactive","param_n60":"Diana","param_s10":"approved"}
null_required
{ "type": "object", "properties": { "col_v73": { "type": "boolean" }, "attr_f34": { "type": "number" }, "dim_i93": { "type": "string", "enum": [ "active", "inactive", "pending" ] }, "param_n60": { "type": "string" }, "pa...
{"col_v73": false, "attr_f34": 630.13, "dim_i93": "inactive", "param_n60": "Diana", "param_s10": null}
Required field 'param_s10' is null
{"col_v73":false,"attr_f34":630.13,"dim_i93":"inactive","param_n60":"Diana","param_s10":"approved"}
TASK repair_structured_output SPEC FIELD first_name TYPE integer REQUIRED no FIELD tile TYPE string REQUIRED yes FIELD score TYPE string_email REQUIRED no FIELD temp_celsius TYPE integer REQUIRED no FIELD notes TYPE string VALUES single|married|divorced REQUIRED yes FIELD status_code TYPE string VALUES red|blue|green|...
{"first_name":340,"tile":"Paris","score":"user@test.io","temp_celsius":556,"notes":"married","status_code":"black","section":"ops@test.io"}
tool_call_python_syntax
{ "type": "object", "properties": { "first_name": { "type": "integer" }, "tile": { "type": "string" }, "score": { "type": "string", "format": "email" }, "temp_celsius": { "type": "integer" }, "notes": { "type": "string", "enum": [ ...
validate_sample(first_name=340, tile='Paris', score='user@test.io', temp_celsius=556, notes='married', status_code='black', section='ops@test.io')
Tool call uses Python syntax instead of JSON
{"first_name":340,"tile":"Paris","score":"user@test.io","temp_celsius":556,"notes":"married","status_code":"black","section":"ops@test.io"}
TASK repair_structured_output SPEC FIELD index TYPE string VALUES pending_review|confirmed|rejected|escalated REQUIRED yes FIELD shipper_ref.sensor_id TYPE boolean REQUIRED no FIELD shipper_ref.id TYPE integer REQUIRED no FIELD shipper_ref.image_url TYPE string VALUES USD|EUR|GBP|BRL|JPY REQUIRED yes FIELD shipper_ref...
{"index":"pending_review","shipper_ref":{"sensor_id":false,"id":534,"image_url":"JPY","language":"hello","state":"PASS","gene_id":732,"trace_id":{"frequency_hz":229,"order_id":null,"title":"John","chromosome":"small","patient_id":347,"username":"chr1"}},"state":"baz","loan_amount":"John"}
markdown_fences
{ "type": "object", "properties": { "index": { "type": "string", "enum": [ "pending_review", "confirmed", "rejected", "escalated" ] }, "shipper_ref": { "type": "object", "properties": { "sensor_id": { "type": "boolean" ...
```json {"index":"pending_review","shipper_ref":{"sensor_id":false,"id":534,"image_url":"JPY","language":"hello","state":"PASS","gene_id":732,"trace_id":{"frequency_hz":229,"order_id":null,"title":"John","chromosome":"small","patient_id":347,"username":"chr1"}},"state":"baz","loan_amount":"John"} ```
Output contains markdown code fences
{"index":"pending_review","shipper_ref":{"sensor_id":false,"id":534,"image_url":"JPY","language":"hello","state":"PASS","gene_id":732,"trace_id":{"frequency_hz":229,"order_id":null,"title":"John","chromosome":"small","patient_id":347,"username":"chr1"}},"state":"baz","loan_amount":"John"}
TASK repair_structured_output SPEC FIELD comments TYPE string VALUES low|medium|high|critical REQUIRED no FIELD shipper_ref TYPE boolean REQUIRED yes FIELD isotope TYPE string VALUES low|medium|high|critical REQUIRED no FIELD score TYPE boolean REQUIRED no BROKEN_OUTPUT Analyzing the schema to generate valid JSON... ...
{"shipper_ref":false,"isotope":"high","score":true}
thought_process
{ "type": "object", "properties": { "comments": { "type": "string", "enum": [ "low", "medium", "high", "critical" ] }, "shipper_ref": { "type": "boolean" }, "isotope": { "type": "string", "enum": [ "low", "medium...
Analyzing the schema to generate valid JSON... Checking required fields and types... {"shipper_ref":false,"isotope":"high","score":true}
Output contains chain-of-thought reasoning before JSON
{"shipper_ref":false,"isotope":"high","score":true}
TASK repair_structured_output SPEC FIELD price TYPE boolean REQUIRED yes FIELD umi TYPE null REQUIRED yes FIELD turbidity TYPE boolean REQUIRED yes FIELD section[] TYPE string VALUES USD|EUR|GBP|BRL|JPY REQUIRED no BROKEN_OUTPUT {"price":true,"umi":null,"turbidity":false,"section":["EUR","EUR"],}
{"price":true,"umi":null,"turbidity":false,"section":["EUR","EUR"]}
trailing_comma
{ "type": "object", "properties": { "price": { "type": "boolean" }, "umi": { "type": "null" }, "turbidity": { "type": "boolean" }, "section": { "type": "array", "items": { "type": "string", "enum": [ "USD", "EUR", ...
{"price":true,"umi":null,"turbidity":false,"section":["EUR","EUR"],}
Unexpected trailing comma
{"price":true,"umi":null,"turbidity":false,"section":["EUR","EUR"]}
TASK repair_structured_output SPEC FIELD val_b03 TYPE integer REQUIRED yes FIELD dim_v17 TYPE number REQUIRED no FIELD dim_l88.col_z20 TYPE string VALUES option_a|option_b|option_c|option_d|option_e REQUIRED yes FIELD dim_l88.prop_b69 TYPE string VALUES option_a|option_b REQUIRED yes FIELD dim_l88.key_c65 TYPE null RE...
{"val_b03":187,"dim_v17":583.75}
tool_call_python_syntax
{ "type": "object", "properties": { "val_b03": { "type": "integer" }, "dim_v17": { "type": "number" }, "dim_l88": { "type": "object", "properties": { "col_z20": { "type": "string", "enum": [ "option_a", "option_b", ...
align_reads(val_b03=187, dim_v17=583.75)
Tool call uses Python syntax instead of JSON
{"val_b03":187,"dim_v17":583.75}
TASK repair_structured_output SPEC FIELD image_url TYPE boolean REQUIRED yes FIELD department TYPE string_uri REQUIRED yes FIELD length TYPE string VALUES open|in_progress|resolved|closed REQUIRED yes FIELD tax TYPE string VALUES operational|degraded|offline|maintenance REQUIRED no FIELD section TYPE boolean REQUIRED ...
{"image_url":true,"department":"https://example.com/v1","length":"in_progress","section":true,"berth_slot":false}
tool_call_python_syntax
{ "type": "object", "properties": { "image_url": { "type": "boolean" }, "department": { "type": "string", "format": "uri" }, "length": { "type": "string", "enum": [ "open", "in_progress", "resolved", "closed" ] }, "tax":...
lookup_customer(image_url=True, department='https://example.com/v1', length='in_progress', section=True, berth_slot=False)
Tool call uses Python syntax instead of JSON
{"image_url":true,"department":"https://example.com/v1","length":"in_progress","section":true,"berth_slot":false}
TASK repair_structured_output SPEC FIELD priority TYPE string VALUES coastal|oceanic|inland|arctic REQUIRED yes FIELD level TYPE string_date-time REQUIRED yes FIELD voltage TYPE integer REQUIRED yes BROKEN_OUTPUT {"level": "2022-05-19T11:01:00Z", "voltage": 840}
{"priority":"inland","level":"2022-05-19T11:01:00Z","voltage":840}
missing_required
{ "type": "object", "properties": { "priority": { "type": "string", "enum": [ "coastal", "oceanic", "inland", "arctic" ] }, "level": { "type": "string", "format": "date-time" }, "voltage": { "type": "integer" } }, "requi...
{"level": "2022-05-19T11:01:00Z", "voltage": 840}
Required field 'priority' is missing
{"priority":"inland","level":"2022-05-19T11:01:00Z","voltage":840}
TASK repair_structured_output SPEC FIELD umi TYPE string VALUES free|basic|pro|enterprise REQUIRED yes FIELD phone TYPE string VALUES operational|degraded|offline|maintenance REQUIRED yes FIELD current_draw TYPE number REQUIRED yes FIELD end_date TYPE boolean REQUIRED no FIELD amplitude TYPE string_uri REQUIRED no BR...
{"umi":"pro","phone":"degraded","current_draw":608.42,"end_date":false,"amplitude":"https://example.org/data"}
invalid_enum
{ "type": "object", "properties": { "umi": { "type": "string", "enum": [ "free", "basic", "pro", "enterprise" ] }, "phone": { "type": "string", "enum": [ "operational", "degraded", "offline", "maintenance" ...
{"umi": "pro", "phone": "invalid_choice_454", "current_draw": 608.42, "end_date": false, "amplitude": "https://example.org/data"}
Field 'phone' has invalid enum value 'invalid_choice_454', expected one of ['operational', 'degraded', 'offline', 'maintenance']
{"umi":"pro","phone":"degraded","current_draw":608.42,"end_date":false,"amplitude":"https://example.org/data"}
TASK repair_structured_output SPEC FIELD index TYPE string_date-time REQUIRED no FIELD first_name TYPE string REQUIRED no FIELD build_status TYPE string REQUIRED yes FIELD isotope[].website TYPE string VALUES pending_review|confirmed|rejected|escalated REQUIRED no FIELD isotope[].position TYPE string REQUIRED yes FIEL...
{"index":"2024-03-07T23:48:00Z","build_status":"FWD","isotope":[{"website":"confirmed","position":"Smith","count":"2023-12-25","company":330,"lane":"Maria","repository":"mode_d","lab_result":"2024-11-18T05:35:00Z"},{"website":"pending_review","position":"test","count":"example","company":345,"lane":"quux","lab_result":...
missing_brace
{ "type": "object", "properties": { "index": { "type": "string", "format": "date-time" }, "first_name": { "type": "string" }, "build_status": { "type": "string" }, "isotope": { "type": "array", "items": { "type": "object", "properties":...
{"index":"2024-03-07T23:48:00Z","build_status":"FWD","isotope":[{"website":"confirmed","position":"Smith","count":"2023-12-25","company":330,"lane":"Maria","repository":"mode_d","lab_result":"2024-11-18T05:35:00Z"},{"website":"pending_review","position":"test","count":"example","company":345,"lane":"quux","lab_result":...
Missing closing brace
{"index":"2024-03-07T23:48:00Z","build_status":"FWD","isotope":[{"website":"confirmed","position":"Smith","count":"2023-12-25","company":330,"lane":"Maria","repository":"mode_d","lab_result":"2024-11-18T05:35:00Z"},{"website":"pending_review","position":"test","count":"example","company":345,"lane":"quux","lab_result":...
TASK repair_structured_output SPEC FIELD chapter TYPE integer REQUIRED yes FIELD end_date TYPE string REQUIRED yes FIELD id TYPE string VALUES small|medium|large|xl REQUIRED yes BROKEN_OUTPUT {"chapter": 106, "id": "medium"}
{"chapter":106,"end_date":"Berlin","id":"medium"}
missing_required
{ "type": "object", "properties": { "chapter": { "type": "integer" }, "end_date": { "type": "string" }, "id": { "type": "string", "enum": [ "small", "medium", "large", "xl" ] } }, "required": [ "end_date", "id", "c...
{"chapter": 106, "id": "medium"}
Required field 'end_date' is missing
{"chapter":106,"end_date":"Berlin","id":"medium"}
TASK repair_structured_output SPEC FIELD field_r84 TYPE string REQUIRED no FIELD attr_n72.param_k48 TYPE integer REQUIRED no FIELD attr_n72.field_j42 TYPE string VALUES reliable|unstable|intermittent REQUIRED no FIELD attr_n72.prop_n47 TYPE string REQUIRED no FIELD attr_n72.attr_y14 TYPE number REQUIRED no FIELD attr_...
{"field_r84":"hello","attr_n72":{"param_k48":857,"prop_n47":"user@domain.com","attr_y14":340.39,"field_c08":"maintenance","dim_w90":"RTG-04"},"prop_g99":{"dim_f64":null,"prop_v20":null,"key_q69":690,"dim_f45":604.98},"field_v76":"2021-06-17T12:30:00Z"}
agent_chain
{ "type": "object", "properties": { "field_r84": { "type": "string" }, "attr_n72": { "type": "object", "properties": { "param_k48": { "type": "integer" }, "field_j42": { "type": "string", "enum": [ "reliable", ...
I need to look up the information first. Action: check_availability Result: {"field_r84": "hello", "attr_n72": {"param_k48": 857, "prop_n47": "user@domain.com", "attr_y14": 340.39, "field_c08": "maintenance", "dim_w90": "RTG-04"}, "field_v76": "2021-06-17T12:30:00Z"} I'll query our database. Action: get_account Result...
Agent multi-step chain with truncated tool output
{"field_r84":"hello","attr_n72":{"param_k48":857,"prop_n47":"user@domain.com","attr_y14":340.39,"field_c08":"maintenance","dim_w90":"RTG-04"},"prop_g99":{"dim_f64":null,"prop_v20":null,"key_q69":690,"dim_f45":604.98},"field_v76":"2021-06-17T12:30:00Z"}
TASK repair_structured_output SPEC FIELD prop_e76 TYPE integer REQUIRED yes FIELD dim_v65 TYPE integer REQUIRED yes FIELD col_z45 TYPE string REQUIRED no FIELD dim_u66 TYPE integer REQUIRED yes FIELD val_s47 TYPE string REQUIRED no FIELD param_l53.col_k39 TYPE string VALUES type_a|type_b|type_c|type_d|type_e|type_f RE...
{"prop_e76":470,"dim_v65":215,"col_z45":"chrX","dim_u66":897,"val_s47":"Sao Paulo","param_l53":{"col_k39":"type_d","val_k03":"cat_c","dim_z54":"example","field_l38":322}}
markdown_fences
{ "type": "object", "properties": { "prop_e76": { "type": "integer" }, "dim_v65": { "type": "integer" }, "col_z45": { "type": "string" }, "dim_u66": { "type": "integer" }, "val_s47": { "type": "string" }, "param_l53": { "type": "object"...
```json {"prop_e76":470,"dim_v65":215,"col_z45":"chrX","dim_u66":897,"val_s47":"Sao Paulo","param_l53":{"col_k39":"type_d","val_k03":"cat_c","dim_z54":"example","field_l38":322}} ```
Output contains markdown code fences
{"prop_e76":470,"dim_v65":215,"col_z45":"chrX","dim_u66":897,"val_s47":"Sao Paulo","param_l53":{"col_k39":"type_d","val_k03":"cat_c","dim_z54":"example","field_l38":322}}
TASK repair_structured_output SPEC FIELD key_q38 TYPE string VALUES new|in_transit|delivered|returned REQUIRED no FIELD dim_u96 TYPE integer REQUIRED yes FIELD prop_g46.val_c01 TYPE integer REQUIRED no FIELD prop_g46.field_f76 TYPE integer REQUIRED no FIELD prop_g46.field_p81 TYPE integer REQUIRED yes FIELD prop_g46.k...
{"key_q38":"in_transit","dim_u96":905,"prop_e73":"oceanic"}
truncated_object
{ "type": "object", "properties": { "key_q38": { "type": "string", "enum": [ "new", "in_transit", "delivered", "returned" ] }, "dim_u96": { "type": "integer" }, "prop_g46": { "type": "object", "properties": { "val_c01": ...
{"key_q38":"in_transit","dim_u96":905,"prop_e73":"oceanic"
Unexpected end of JSON input — truncated object
{"key_q38":"in_transit","dim_u96":905,"prop_e73":"oceanic"}
TASK repair_structured_output SPEC FIELD val_v13 TYPE number REQUIRED no FIELD prop_p68 TYPE string REQUIRED yes FIELD dim_a58 TYPE string REQUIRED no FIELD field_p91[] TYPE string VALUES mode_a|mode_b|mode_c REQUIRED yes FIELD field_u65[].val_w04 TYPE boolean REQUIRED yes FIELD field_u65[].val_t27 TYPE string VALUES ...
{"prop_p68":"active","dim_a58":"John","field_p91":["mode_a","mode_b"],"field_u65":[{"val_w04":false,"val_t27":"delivered","prop_x16":null,"dim_x85":"admin@example.com","val_i40":"cat_a"}]}
markdown_fences
{ "type": "object", "properties": { "val_v13": { "type": "number" }, "prop_p68": { "type": "string" }, "dim_a58": { "type": "string" }, "field_p91": { "type": "array", "items": { "type": "string", "enum": [ "mode_a", "mode...
```json {"prop_p68":"active","dim_a58":"John","field_p91":["mode_a","mode_b"],"field_u65":[{"val_w04":false,"val_t27":"delivered","prop_x16":null,"dim_x85":"admin@example.com","val_i40":"cat_a"}]} ```
Output contains markdown code fences
{"prop_p68":"active","dim_a58":"John","field_p91":["mode_a","mode_b"],"field_u65":[{"val_w04":false,"val_t27":"delivered","prop_x16":null,"dim_x85":"admin@example.com","val_i40":"cat_a"}]}
TASK repair_structured_output SPEC FIELD prop_c85 TYPE string VALUES draft|published|archived REQUIRED no FIELD field_a42 TYPE boolean REQUIRED yes FIELD prop_c82 TYPE string VALUES draft|published|archived REQUIRED yes FIELD field_y68 TYPE string VALUES success|error|warning|info REQUIRED no FIELD attr_z04[] TYPE int...
{"prop_c85":"published","field_a42":false,"prop_c82":"draft","field_y68":"error","attr_z04":[654,697,336]}
truncated_array
{ "type": "object", "properties": { "prop_c85": { "type": "string", "enum": [ "draft", "published", "archived" ] }, "field_a42": { "type": "boolean" }, "prop_c82": { "type": "string", "enum": [ "draft", "published", ...
{"prop_c85":"published","field_a42":false,"prop_c82":"draft","field_y68":"error","attr_z04":[654,697,336
Unexpected end of JSON input — truncated array
{"prop_c85":"published","field_a42":false,"prop_c82":"draft","field_y68":"error","attr_z04":[654,697,336]}
TASK repair_structured_output SPEC FIELD strand TYPE string REQUIRED yes FIELD enabled TYPE string_email REQUIRED yes FIELD run_id.organism TYPE string VALUES mode_a|mode_b|mode_c|mode_d|mode_e REQUIRED no FIELD run_id.berth_slot TYPE string VALUES low|medium|high|critical REQUIRED yes FIELD run_id.values.date TYPE st...
{"strand":"Berlin","enabled":"test@test.io","run_id":{"berth_slot":"medium","values":{"date":"2025-03-15T14:49:00Z","ward":"2023-08-21T15:59:00Z","pressure_kpa":"2023-05-12T18:55:00Z","due_date":291,"message":"hello","index":152}}}
agent_chain
{ "type": "object", "properties": { "strand": { "type": "string" }, "enabled": { "type": "string", "format": "email" }, "run_id": { "type": "object", "properties": { "organism": { "type": "string", "enum": [ "mode_a", ...
Let me check the system. Action: check_availability Result: {"strand": "Berlin", "enabled": "test@test.io"} I'll query our database. Action: schedule_meeting Result:
Agent multi-step chain with truncated tool output
{"strand":"Berlin","enabled":"test@test.io","run_id":{"berth_slot":"medium","values":{"date":"2025-03-15T14:49:00Z","ward":"2023-08-21T15:59:00Z","pressure_kpa":"2023-05-12T18:55:00Z","due_date":291,"message":"hello","index":152}}}
TASK repair_structured_output SPEC FIELD key_l94 TYPE string VALUES cat_a|cat_b|cat_c|cat_d REQUIRED yes FIELD val_s67 TYPE string REQUIRED yes FIELD val_x16 TYPE string VALUES homozygous|heterozygous|hemizygous REQUIRED no FIELD col_e39 TYPE number REQUIRED yes FIELD key_z67 TYPE integer REQUIRED no BROKEN_OUTPUT {"...
{"key_l94":"cat_a","val_s67":"chr1","val_x16":"homozygous","col_e39":490.87,"key_z67":407}
invalid_enum
{ "type": "object", "properties": { "key_l94": { "type": "string", "enum": [ "cat_a", "cat_b", "cat_c", "cat_d" ] }, "val_s67": { "type": "string" }, "val_x16": { "type": "string", "enum": [ "homozygous", "hetero...
{"key_l94": "invalid_option_965", "val_s67": "chr1", "val_x16": "homozygous", "col_e39": 490.87, "key_z67": 407}
Field 'key_l94' has invalid enum value 'invalid_option_965', expected one of ['cat_a', 'cat_b', 'cat_c', 'cat_d']
{"key_l94":"cat_a","val_s67":"chr1","val_x16":"homozygous","col_e39":490.87,"key_z67":407}
TASK repair_structured_output SPEC FIELD prop_i17 TYPE string VALUES active|inactive|pending REQUIRED yes FIELD field_b54 TYPE string VALUES cat_a|cat_b REQUIRED yes FIELD key_k83 TYPE string_date-time REQUIRED no FIELD val_l59 TYPE number REQUIRED no FIELD key_l62 TYPE integer REQUIRED yes FIELD param_n83 TYPE intege...
{"prop_i17":"active","field_b54":"cat_b","key_k83":"2024-09-17T17:22:00Z","val_l59":24.54,"key_l62":91,"param_n83":381,"prop_l76":null}
synonym_enum
{ "type": "object", "properties": { "prop_i17": { "type": "string", "enum": [ "active", "inactive", "pending" ] }, "field_b54": { "type": "string", "enum": [ "cat_a", "cat_b" ] }, "key_k83": { "type": "string", ...
{"prop_i17": "on", "field_b54": "cat_b", "key_k83": "2024-09-17T17:22:00Z", "val_l59": 24.54, "key_l62": 91, "param_n83": 381, "prop_l76": null}
Field 'prop_i17' has synonym 'on' instead of valid enum value
{"prop_i17":"active","field_b54":"cat_b","key_k83":"2024-09-17T17:22:00Z","val_l59":24.54,"key_l62":91,"param_n83":381,"prop_l76":null}
TASK repair_structured_output SPEC FIELD attr_b26 TYPE string REQUIRED no FIELD val_b09 TYPE null REQUIRED yes FIELD prop_v33 TYPE boolean REQUIRED no FIELD col_h79 TYPE number REQUIRED no BROKEN_OUTPUT run_diagnostics(attr_b26='demo', val_b09=None, col_h79=99.43)
{"attr_b26":"demo","val_b09":null,"col_h79":99.43}
tool_call_python_syntax
{ "type": "object", "properties": { "attr_b26": { "type": "string" }, "val_b09": { "type": "null" }, "prop_v33": { "type": "boolean" }, "col_h79": { "type": "number" } }, "required": [ "val_b09" ] }
run_diagnostics(attr_b26='demo', val_b09=None, col_h79=99.43)
Tool call uses Python syntax instead of JSON
{"attr_b26":"demo","val_b09":null,"col_h79":99.43}
TASK repair_structured_output SPEC FIELD total TYPE string REQUIRED no FIELD created_at TYPE string_date-time REQUIRED yes FIELD description TYPE integer REQUIRED no FIELD patient_id TYPE integer REQUIRED no FIELD color TYPE string REQUIRED no FIELD feedback TYPE boolean REQUIRED yes FIELD allele TYPE string_date-time...
{"total":"completed","created_at":"2026-05-09T19:36:00Z","description":398,"patient_id":680,"color":"example","feedback":false,"allele":"2026-10-07T18:39:00Z"}
truncated_array
{ "type": "object", "properties": { "total": { "type": "string" }, "created_at": { "type": "string", "format": "date-time" }, "description": { "type": "integer" }, "patient_id": { "type": "integer" }, "color": { "type": "string" }, "fee...
{"total":"completed","created_at":"2026-05-09T19:36:00Z","description":398,"patient_id":680,"color":"example","feedback":false,"allele":"2026-10-07T18:39:00Z"
Unexpected end of JSON input — truncated object
{"total":"completed","created_at":"2026-05-09T19:36:00Z","description":398,"patient_id":680,"color":"example","feedback":false,"allele":"2026-10-07T18:39:00Z"}
TASK repair_structured_output SPEC FIELD attr_l99 TYPE number REQUIRED yes FIELD col_d14 TYPE string VALUES open|in_progress|resolved|closed REQUIRED no FIELD prop_k83 TYPE number REQUIRED no FIELD field_j07 TYPE string REQUIRED yes FIELD dim_x51.param_f66 TYPE number REQUIRED yes FIELD dim_x51.col_l60 TYPE string REQ...
{"attr_l99":315.77,"prop_k83":302.72,"field_j07":"cancelled","prop_b61":"test@example.com"}
markdown_fences
{ "type": "object", "properties": { "attr_l99": { "type": "number" }, "col_d14": { "type": "string", "enum": [ "open", "in_progress", "resolved", "closed" ] }, "prop_k83": { "type": "number" }, "field_j07": { "type": "st...
```json {"attr_l99":315.77,"prop_k83":302.72,"field_j07":"cancelled","prop_b61":"test@example.com"} ```
Output contains markdown code fences
{"attr_l99":315.77,"prop_k83":302.72,"field_j07":"cancelled","prop_b61":"test@example.com"}
TASK repair_structured_output SPEC FIELD dim_b21 TYPE number REQUIRED no FIELD dim_a47 TYPE integer REQUIRED yes FIELD field_d25 TYPE string REQUIRED yes FIELD attr_r33 TYPE string REQUIRED no FIELD dim_c78.field_v55 TYPE string VALUES small|medium|large|xl REQUIRED yes FIELD dim_c78.param_y69 TYPE string VALUES opera...
{"dim_b21":931.39,"dim_a47":378,"field_d25":"cancelled","attr_r33":"foo","key_m81":"info@domain.org"}
single_quotes
{ "type": "object", "properties": { "dim_b21": { "type": "number" }, "dim_a47": { "type": "integer" }, "field_d25": { "type": "string" }, "attr_r33": { "type": "string" }, "dim_c78": { "type": "object", "properties": { "field_v55": { ...
{'dim_b21':931.39,'dim_a47':378,'field_d25':'cancelled','attr_r33':'foo','key_m81':'info@domain.org'}
Expecting property name enclosed in double quotes
{"dim_b21":931.39,"dim_a47":378,"field_d25":"cancelled","attr_r33":"foo","key_m81":"info@domain.org"}
TASK repair_structured_output SPEC FIELD compound.frequency_hz TYPE string VALUES mode_a|mode_b|mode_c REQUIRED yes FIELD compound.width TYPE string VALUES low|medium|high|critical REQUIRED no FIELD compound.bed_number TYPE string REQUIRED no FIELD compound.section TYPE number REQUIRED no FIELD strand TYPE string REQU...
{"compound":{"frequency_hz":"mode_c","width":"low"},"strand":"foo","trace_id":"cat_b"}
thought_process
{ "type": "object", "properties": { "compound": { "type": "object", "properties": { "frequency_hz": { "type": "string", "enum": [ "mode_a", "mode_b", "mode_c" ] }, "width": { "type": "string", ...
Breaking down the requirements: - Must include all required fields - Types must match the schema - Values should be realistic {"compound":{"frequency_hz":"mode_c","width":"low"},"strand":"foo","trace_id":"cat_b"}
Output contains chain-of-thought reasoning before JSON
{"compound":{"frequency_hz":"mode_c","width":"low"},"strand":"foo","trace_id":"cat_b"}
TASK repair_structured_output SPEC FIELD chapter TYPE integer REQUIRED no FIELD coverage TYPE string REQUIRED no FIELD half_life TYPE string REQUIRED no FIELD isotope TYPE string REQUIRED no FIELD lane TYPE null REQUIRED yes FIELD tile TYPE boolean REQUIRED yes FIELD country TYPE number REQUIRED yes FIELD amount TYPE ...
{"chapter":608,"half_life":"Sao Paulo","lane":null,"tile":true,"country":970.93,"amount":240.23}
tool_call_text_mix
{ "type": "object", "properties": { "chapter": { "type": "integer" }, "coverage": { "type": "string" }, "half_life": { "type": "string" }, "isotope": { "type": "string" }, "lane": { "type": "null" }, "tile": { "type": "boolean" }, ...
Processing the request now. <tool_call name="call_variants"> {"chapter":608,"half_life":"Sao Paulo","lane":null,"tile":true,"country":970.93,"amount":240.23} </tool_call. Done!
Agent response mixes reasoning text with tool call
{"chapter":608,"half_life":"Sao Paulo","lane":null,"tile":true,"country":970.93,"amount":240.23}
TASK repair_structured_output SPEC FIELD key_k26 TYPE string REQUIRED yes FIELD attr_b29 TYPE integer REQUIRED yes FIELD val_y87 TYPE boolean REQUIRED no FIELD val_p81 TYPE integer REQUIRED no BROKEN_OUTPUT {'key_k26':'user@domain.com','attr_b29':227,'val_y87':false,'val_p81':344}
{"key_k26":"user@domain.com","attr_b29":227,"val_y87":false,"val_p81":344}
single_quotes
{ "type": "object", "properties": { "key_k26": { "type": "string" }, "attr_b29": { "type": "integer" }, "val_y87": { "type": "boolean" }, "val_p81": { "type": "integer" } }, "required": [ "attr_b29", "key_k26" ] }
{'key_k26':'user@domain.com','attr_b29':227,'val_y87':false,'val_p81':344}
Expecting property name enclosed in double quotes
{"key_k26":"user@domain.com","attr_b29":227,"val_y87":false,"val_p81":344}
TASK repair_structured_output SPEC FIELD salinity TYPE string_date-time REQUIRED no FIELD shift_code.item_id TYPE string REQUIRED yes FIELD shift_code.start_date TYPE string REQUIRED yes FIELD shift_code.paragraph.shipper_ref TYPE string REQUIRED no FIELD shift_code.paragraph.phone TYPE string REQUIRED no FIELD shift_...
{"salinity":"2025-01-14T01:50:00Z","trace_id":539,"id":true,"fleet_number":{"product_id":null,"category":{"coverage":false,"item_id":195,"organism":null},"feedback":false,"website":"basic","run_id":648,"balance":{"address":"phone","options":"USD","decay_rate":"email","crew_id":"foo","throttle_pos":"red","zip_code":43},...
missing_bracket
{ "type": "object", "properties": { "salinity": { "type": "string", "format": "date-time" }, "shift_code": { "type": "object", "properties": { "item_id": { "type": "string" }, "start_date": { "type": "string" }, "paragra...
{"salinity":"2025-01-14T01:50:00Z","trace_id":539,"id":true,"fleet_number":{"product_id":null,"category":{"coverage":false,"item_id":195,"organism":null},"feedback":false,"website":"basic","run_id":648,"balance":{"address":"phone","options":"USD","decay_rate":"email","crew_id":"foo","throttle_pos":"red","zip_code":43},...
Missing closing bracket
{"salinity":"2025-01-14T01:50:00Z","trace_id":539,"id":true,"fleet_number":{"product_id":null,"category":{"coverage":false,"item_id":195,"organism":null},"feedback":false,"website":"basic","run_id":648,"balance":{"address":"phone","options":"USD","decay_rate":"email","crew_id":"foo","throttle_pos":"red","zip_code":43},...
TASK repair_structured_output SPEC FIELD col_l02 TYPE string REQUIRED no FIELD key_t15 TYPE boolean REQUIRED yes FIELD col_w58 TYPE string VALUES open|in_progress|resolved|closed REQUIRED no FIELD param_o91 TYPE string REQUIRED no FIELD key_x78 TYPE boolean REQUIRED no FIELD attr_s05 TYPE integer REQUIRED no BROKEN_O...
{"key_t15":false,"col_w58":"closed","key_x78":true,"attr_s05":173}
null_required
{ "type": "object", "properties": { "col_l02": { "type": "string" }, "key_t15": { "type": "boolean" }, "col_w58": { "type": "string", "enum": [ "open", "in_progress", "resolved", "closed" ] }, "param_o91": { "type": "str...
{"key_t15": null, "col_w58": "closed", "key_x78": true, "attr_s05": 173}
Required field 'key_t15' is null
{"key_t15":false,"col_w58":"closed","key_x78":true,"attr_s05":173}
TASK repair_structured_output SPEC FIELD field_d74.dim_f91 TYPE string VALUES open|in_progress|resolved|closed REQUIRED yes FIELD field_d74.prop_v67 TYPE boolean REQUIRED no FIELD field_d74.key_t16 TYPE string REQUIRED yes FIELD field_d74.val_i91[] TYPE string REQUIRED yes FIELD field_e09 TYPE string REQUIRED no FIELD...
{"field_d74":{"dim_f91":"in_progress","key_t16":"QC-07","val_i91":["active","Santos","active"]},"field_e09":"Diana","val_w46":"EUR","col_m59":"GRCh38"}
extra_text_after
{ "type": "object", "properties": { "field_d74": { "type": "object", "properties": { "dim_f91": { "type": "string", "enum": [ "open", "in_progress", "resolved", "closed" ] }, "prop_v67": { ...
{"field_d74":{"dim_f91":"in_progress","key_t16":"QC-07","val_i91":["active","Santos","active"]},"field_e09":"Diana","val_w46":"EUR","col_m59":"GRCh38"} Let me know if you need anything else!
Output contains non-JSON text after the object
{"field_d74":{"dim_f91":"in_progress","key_t16":"QC-07","val_i91":["active","Santos","active"]},"field_e09":"Diana","val_w46":"EUR","col_m59":"GRCh38"}
TASK repair_structured_output SPEC FIELD enabled TYPE string VALUES synonymous|missense|nonsense|frameshift REQUIRED yes FIELD language.span_id TYPE string VALUES mode_a|mode_b|mode_c|mode_d|mode_e REQUIRED yes FIELD language.build_status TYPE string VALUES email|phone|sms|push REQUIRED no FIELD language.section TYPE ...
{"enabled":"synonymous","language":{"span_id":"mode_e","section":"mode_b","balance":462.0},"strand":"Smith","pressure_kpa":"Santos","salinity":"test@example.com"}
null_required
{ "type": "object", "properties": { "enabled": { "type": "string", "enum": [ "synonymous", "missense", "nonsense", "frameshift" ] }, "language": { "type": "object", "properties": { "span_id": { "type": "string", "e...
{"enabled": null, "language": {"span_id": "mode_e", "section": "mode_b", "balance": 462.0}, "strand": "Smith", "pressure_kpa": "Santos", "salinity": "test@example.com"}
Required field 'enabled' is null
{"enabled":"synonymous","language":{"span_id":"mode_e","section":"mode_b","balance":462.0},"strand":"Smith","pressure_kpa":"Santos","salinity":"test@example.com"}
TASK repair_structured_output SPEC FIELD color.gene_id TYPE string VALUES homozygous|heterozygous|hemizygous REQUIRED yes FIELD color.ward TYPE boolean REQUIRED yes FIELD color.options TYPE number REQUIRED no FIELD color.longitude TYPE string REQUIRED yes FIELD bed_number TYPE null REQUIRED yes FIELD medication TYPE s...
{"color":{"gene_id":"heterozygous","ward":true,"longitude":"Tokyo"},"bed_number":null,"batch_code":false,"values":{"bed_number":"https://api.org/v1","balance":"Johnson","values":{"duration_ms":"https://api.org/data","name":"cat_e","tile":"mode_d","shift_code":"Alice"},"footnote":{"medication":204,"bill_of_lading":"type...
number_with_unit
{ "type": "object", "properties": { "color": { "type": "object", "properties": { "gene_id": { "type": "string", "enum": [ "homozygous", "heterozygous", "hemizygous" ] }, "ward": { "type": "boolean" ...
{"color": {"gene_id": "heterozygous", "ward": true, "longitude": "Tokyo"}, "bed_number": null, "batch_code": false, "values": {"bed_number": "https://api.org/v1", "balance": "Johnson", "values": {"duration_ms": "https://api.org/data", "name": "cat_e", "tile": "mode_d", "shift_code": "Alice"}, "footnote": {"medication":...
Field 'department' must be number, got string with unit
{"color":{"gene_id":"heterozygous","ward":true,"longitude":"Tokyo"},"bed_number":null,"batch_code":false,"values":{"bed_number":"https://api.org/v1","balance":"Johnson","values":{"duration_ms":"https://api.org/data","name":"cat_e","tile":"mode_d","shift_code":"Alice"},"footnote":{"medication":204,"bill_of_lading":"type...
TASK repair_structured_output SPEC FIELD batch_code TYPE string VALUES type_a|type_b REQUIRED yes FIELD updated_at TYPE boolean REQUIRED no FIELD size.weight TYPE integer REQUIRED yes FIELD size.category TYPE string REQUIRED no FIELD size.filter_flag TYPE string_uri REQUIRED yes FIELD size.umi.score TYPE string VALUES...
{"batch_code":"type_b","size":{"weight":13,"category":"Maria","filter_flag":"https://api.com/v1","umi":{"score":"published","gene_id":"QC-07","category":311,"currency":"Hapag-Lloyd-Express","temp_celsius":"Johnson","feedback":"mode_b","diagnosis_code":null}},"item_id":{"type":"divorced","options":434}}
tool_call_bad_format
{ "type": "object", "properties": { "batch_code": { "type": "string", "enum": [ "type_a", "type_b" ] }, "updated_at": { "type": "boolean" }, "size": { "type": "object", "properties": { "weight": { "type": "integer" }, ...
<functioncall> call_variants {batch_code: "type_b", size: {weight: 13, category: "Maria", filter_flag: "https://api.com/v1", umi: {score: "published", gene_id: "QC-07", category: 311, currency: "Hapag-Lloyd-Express", temp_celsius: "Johnson", feedback: "mode_b", diagnosis_code: null}}, item_id: {type: "divorced", option...
Tool call has malformed arguments — unquoted keys in function parameters
{"batch_code":"type_b","size":{"weight":13,"category":"Maria","filter_flag":"https://api.com/v1","umi":{"score":"published","gene_id":"QC-07","category":311,"currency":"Hapag-Lloyd-Express","temp_celsius":"Johnson","feedback":"mode_b","diagnosis_code":null}},"item_id":{"type":"divorced","options":434}}
TASK repair_structured_output SPEC FIELD dim_w87 TYPE null REQUIRED yes FIELD dim_n77 TYPE string REQUIRED yes FIELD key_c38 TYPE string REQUIRED yes BROKEN_OUTPUT Let me check the system. Action: get_inventory Arguments: {"dim_n77": "https://example.com", "key_c38": "2023-12-25"}
{"dim_w87":null,"dim_n77":"https://example.com","key_c38":"2023-12-25"}
tool_call_partial_args
{ "type": "object", "properties": { "dim_w87": { "type": "null" }, "dim_n77": { "type": "string" }, "key_c38": { "type": "string" } }, "required": [ "dim_w87", "key_c38", "dim_n77" ] }
Let me check the system. Action: get_inventory Arguments: {"dim_n77": "https://example.com", "key_c38": "2023-12-25"}
Agent tool call missing required parameter 'dim_w87'
{"dim_w87":null,"dim_n77":"https://example.com","key_c38":"2023-12-25"}
TASK repair_structured_output SPEC FIELD length TYPE string_date-time REQUIRED yes FIELD transaction_id TYPE string VALUES level_1|level_2|level_3|level_4|level_5 REQUIRED yes FIELD priority TYPE boolean REQUIRED yes FIELD batch_code TYPE string REQUIRED no FIELD berth_slot TYPE boolean REQUIRED no BROKEN_OUTPUT {"le...
{"length":"2025-02-12T15:51:00Z","transaction_id":"level_3","priority":false,"batch_code":"test@example.com","berth_slot":false}
truncated_array
{ "type": "object", "properties": { "length": { "type": "string", "format": "date-time" }, "transaction_id": { "type": "string", "enum": [ "level_1", "level_2", "level_3", "level_4", "level_5" ] }, "priority": { "type": ...
{"length":"2025-02-12T15:51:00Z","transaction_id":"level_3","priority":false,"batch_code":"test@example.com","berth_slot":false
Unexpected end of JSON input — truncated object
{"length":"2025-02-12T15:51:00Z","transaction_id":"level_3","priority":false,"batch_code":"test@example.com","berth_slot":false}
TASK repair_structured_output SPEC FIELD discount TYPE boolean REQUIRED yes FIELD subject TYPE string_date-time REQUIRED yes FIELD maturity_date TYPE string VALUES red|blue|green|black|white REQUIRED yes FIELD options.isotope.span_id TYPE integer REQUIRED yes FIELD options.isotope.consignee TYPE string_email REQUIRED ...
{"discount":false,"subject":"2023-01-23T09:42:00Z","maturity_date":"green","options":{"build_status":"info@example.com","age":{"subtotal":"frameshift","type":"critical"},"shipper_ref":"2024-08-22T08:38:00Z","decay_rate":773,"vital_sign":775.81,"status_code":true},"format":"open"}
tool_call_partial_args
{ "type": "object", "properties": { "discount": { "type": "boolean" }, "subject": { "type": "string", "format": "date-time" }, "maturity_date": { "type": "string", "enum": [ "red", "blue", "green", "black", "white" ] ...
I need to look up the information first. Action: call_variants Arguments: {"discount": false, "subject": "2023-01-23T09:42:00Z", "maturity_date": "green", "options": {"build_status": "info@example.com", "age": {"subtotal": "frameshift", "type": "critical"}, "shipper_ref": "2024-08-22T08:38:00Z", "decay_rate": 773, "vit...
Agent tool call missing required parameter 'format'
{"discount":false,"subject":"2023-01-23T09:42:00Z","maturity_date":"green","options":{"build_status":"info@example.com","age":{"subtotal":"frameshift","type":"critical"},"shipper_ref":"2024-08-22T08:38:00Z","decay_rate":773,"vital_sign":775.81,"status_code":true},"format":"open"}
TASK repair_structured_output SPEC FIELD dim_a48 TYPE string REQUIRED no FIELD param_d30 TYPE string REQUIRED yes FIELD param_q64 TYPE string REQUIRED no FIELD prop_e31 TYPE string REQUIRED yes FIELD val_l65 TYPE string REQUIRED yes BROKEN_OUTPUT Let me check the system. Action: assign_berth Arguments: {"param_q64": ...
{"param_d30":"chrX","param_q64":"demo","prop_e31":"Jane","val_l65":"FWD"}
tool_call_partial_args
{ "type": "object", "properties": { "dim_a48": { "type": "string" }, "param_d30": { "type": "string" }, "param_q64": { "type": "string" }, "prop_e31": { "type": "string" }, "val_l65": { "type": "string" } }, "required": [ "param_d30", ...
Let me check the system. Action: assign_berth Arguments: {"param_q64": "demo", "prop_e31": "Jane", "val_l65": "FWD"}
Agent tool call missing required parameter 'param_d30'
{"param_d30":"chrX","param_q64":"demo","prop_e31":"Jane","val_l65":"FWD"}
TASK repair_structured_output SPEC FIELD attr_g11 TYPE string VALUES red|blue|green|black|white REQUIRED no FIELD key_i11 TYPE string VALUES success|error|warning|info REQUIRED no FIELD param_s02 TYPE string VALUES coastal|oceanic|inland|arctic REQUIRED yes FIELD field_m07 TYPE integer REQUIRED yes FIELD param_h69 TYP...
{"key_i11":"warning","param_s02":"inland","field_m07":323,"param_h69":"RTG-04","val_f67":"2021-07-17T04:46:00Z"}
partial_structure
{ "type": "object", "properties": { "attr_g11": { "type": "string", "enum": [ "red", "blue", "green", "black", "white" ] }, "key_i11": { "type": "string", "enum": [ "success", "error", "warning", "info"...
I found that val_f67 should be 2021-07-17T04:46:00Z. {"key_i11":"warning","param_s02":"inland","field_m07":323,"param_h69":"RTG-04","val_f67":"2021-07-17T04:46:00Z"}
Output mixes natural language with JSON
{"key_i11":"warning","param_s02":"inland","field_m07":323,"param_h69":"RTG-04","val_f67":"2021-07-17T04:46:00Z"}
TASK repair_structured_output SPEC FIELD val_b23 TYPE boolean REQUIRED yes FIELD attr_g58 TYPE null REQUIRED no FIELD key_s35 TYPE string REQUIRED yes FIELD field_w35 TYPE string VALUES type_a|type_b|type_c REQUIRED yes FIELD attr_q80 TYPE string_date-time REQUIRED no FIELD key_a75 TYPE number REQUIRED no FIELD field_...
{"val_b23":true,"attr_g58":null,"key_s35":"Paris","field_w35":"type_c","attr_q80":"2024-03-13T09:34:00Z","key_a75":960.28,"field_p81":"cat_c"}
tool_call_partial_args
{ "type": "object", "properties": { "val_b23": { "type": "boolean" }, "attr_g58": { "type": "null" }, "key_s35": { "type": "string" }, "field_w35": { "type": "string", "enum": [ "type_a", "type_b", "type_c" ] }, "attr_q8...
Let me check the system. Action: check_cargo_manifest Arguments: {"attr_g58": null, "key_s35": "Paris", "field_w35": "type_c", "attr_q80": "2024-03-13T09:34:00Z", "key_a75": 960.28, "field_p81": "cat_c"}
Agent tool call missing required parameter 'val_b23'
{"val_b23":true,"attr_g58":null,"key_s35":"Paris","field_w35":"type_c","attr_q80":"2024-03-13T09:34:00Z","key_a75":960.28,"field_p81":"cat_c"}
TASK repair_structured_output SPEC FIELD key_u46 TYPE string REQUIRED no FIELD field_s12.col_e51 TYPE string REQUIRED no FIELD field_s12.dim_j31 TYPE null REQUIRED yes FIELD field_s12.col_y03 TYPE number REQUIRED no FIELD field_s12.attr_l03 TYPE boolean REQUIRED yes FIELD param_a40 TYPE boolean REQUIRED yes FIELD dim_...
{"param_a40":true,"dim_f54":"admin@test.io","key_x39":"cat_a","col_b16":505}
missing_brace
{ "type": "object", "properties": { "key_u46": { "type": "string" }, "field_s12": { "type": "object", "properties": { "col_e51": { "type": "string" }, "dim_j31": { "type": "null" }, "col_y03": { "type": "number" ...
"param_a40":true,"dim_f54":"admin@test.io","key_x39":"cat_a","col_b16":505}
Missing closing brace
{"param_a40":true,"dim_f54":"admin@test.io","key_x39":"cat_a","col_b16":505}
TASK repair_structured_output SPEC FIELD attr_v40 TYPE string VALUES type_a|type_b REQUIRED yes FIELD attr_g93 TYPE integer REQUIRED no FIELD col_v27 TYPE integer REQUIRED no FIELD col_d76 TYPE string REQUIRED yes BROKEN_OUTPUT Let me provide the data in JSON format: {"attr_v40":"type_a","attr_g93":961,"col_v27":891,...
{"attr_v40":"type_a","attr_g93":961,"col_v27":891,"col_d76":"chrX"}
extra_text_before
{ "type": "object", "properties": { "attr_v40": { "type": "string", "enum": [ "type_a", "type_b" ] }, "attr_g93": { "type": "integer" }, "col_v27": { "type": "integer" }, "col_d76": { "type": "string" } }, "required": [ "att...
Let me provide the data in JSON format: {"attr_v40":"type_a","attr_g93":961,"col_v27":891,"col_d76":"chrX"}
Output contains non-JSON text before the object
{"attr_v40":"type_a","attr_g93":961,"col_v27":891,"col_d76":"chrX"}
TASK repair_structured_output SPEC FIELD notes TYPE number REQUIRED yes FIELD annotation TYPE string VALUES type_a|type_b|type_c|type_d|type_e REQUIRED yes FIELD build_status TYPE string REQUIRED no FIELD terminal_id TYPE null REQUIRED no FIELD transaction_id.index TYPE boolean REQUIRED no FIELD transaction_id.company...
{"notes":982.4,"annotation":"type_e","build_status":"Oliveira","transaction_id":{"index":false,"company":530,"position":"GRCh38","deploy_target":{"name":"Silva","lane":701,"salinity":false,"visible":true,"product_id":"enterprise","level":18.64},"amplitude":"cat_b","features":"Jane","created_at":"quux","salinity":false}...
trailing_comma
{ "type": "object", "properties": { "notes": { "type": "number" }, "annotation": { "type": "string", "enum": [ "type_a", "type_b", "type_c", "type_d", "type_e" ] }, "build_status": { "type": "string" }, "terminal_id": ...
{"notes":982.4,"annotation":"type_e","build_status":"Oliveira","transaction_id":{"index":false,"company":530,"position":"GRCh38","deploy_target":{"name":"Silva","lane":701,"salinity":false,"visible":true,"product_id":"enterprise","level":18.64},"amplitude":"cat_b","features":"Jane","created_at":"quux","salinity":false}...
Unexpected trailing comma
{"notes":982.4,"annotation":"type_e","build_status":"Oliveira","transaction_id":{"index":false,"company":530,"position":"GRCh38","deploy_target":{"name":"Silva","lane":701,"salinity":false,"visible":true,"product_id":"enterprise","level":18.64},"amplitude":"cat_b","features":"Jane","created_at":"quux","salinity":false}...
TASK repair_structured_output SPEC FIELD manifest_ref TYPE boolean REQUIRED no FIELD items TYPE string VALUES option_a|option_b|option_c REQUIRED no FIELD currency TYPE string VALUES reliable|unstable|intermittent REQUIRED yes FIELD interest_rate TYPE number REQUIRED yes FIELD log_level[] TYPE integer REQUIRED no BRO...
{"items":"option_a","currency":"reliable","interest_rate":13.86}
number_with_unit
{ "type": "object", "properties": { "manifest_ref": { "type": "boolean" }, "items": { "type": "string", "enum": [ "option_a", "option_b", "option_c" ] }, "currency": { "type": "string", "enum": [ "reliable", "unstable", ...
{"items": "option_a", "currency": "reliable", "interest_rate": "13.86sec"}
Field 'interest_rate' must be number, got string with unit
{"items":"option_a","currency":"reliable","interest_rate":13.86}
TASK repair_structured_output SPEC FIELD param_o50 TYPE boolean REQUIRED yes FIELD attr_z41 TYPE boolean REQUIRED yes FIELD prop_a07 TYPE string REQUIRED no FIELD col_p58[] TYPE integer REQUIRED no BROKEN_OUTPUT {"param_o50": "\"no\"", "attr_z41": false, "prop_a07": "A short description.", "col_p58": [183, 514, 440, ...
{"param_o50":false,"attr_z41":false,"prop_a07":"A short description.","col_p58":[183,514,440,979]}
wrong_type
{ "type": "object", "properties": { "param_o50": { "type": "boolean" }, "attr_z41": { "type": "boolean" }, "prop_a07": { "type": "string" }, "col_p58": { "type": "array", "items": { "type": "integer" } } }, "required": [ "attr_z41",...
{"param_o50": "\"no\"", "attr_z41": false, "prop_a07": "A short description.", "col_p58": [183, 514, 440, 979]}
Field 'param_o50' must be boolean, got string
{"param_o50":false,"attr_z41":false,"prop_a07":"A short description.","col_p58":[183,514,440,979]}
TASK repair_structured_output SPEC FIELD created_at.brake_pressure TYPE string VALUES email|phone|sms|push REQUIRED yes FIELD created_at.website TYPE string VALUES small|medium|large|xl REQUIRED no FIELD created_at.height TYPE string VALUES open|in_progress|resolved|closed REQUIRED yes FIELD created_at.run_id TYPE num...
{"created_at":{"brake_pressure":"push","website":"large","height":"in_progress","run_id":52.48},"city":212.84,"role":273,"span_id":"error","total":"mode_b","section":"completed"}
synonym_enum
{ "type": "object", "properties": { "created_at": { "type": "object", "properties": { "brake_pressure": { "type": "string", "enum": [ "email", "phone", "sms", "push" ] }, "website": { "typ...
{"created_at": {"brake_pressure": "push", "website": "large", "height": "in_progress", "run_id": 52.48}, "city": 212.84, "role": 273, "span_id": "failed", "total": "mode_b", "section": "completed"}
Field 'span_id' has synonym 'failed' instead of valid enum value
{"created_at":{"brake_pressure":"push","website":"large","height":"in_progress","run_id":52.48},"city":212.84,"role":273,"span_id":"error","total":"mode_b","section":"completed"}
TASK repair_structured_output SPEC FIELD prop_m51 TYPE null REQUIRED yes FIELD dim_l69 TYPE string VALUES option_a|option_b|option_c|option_d|option_e|option_f REQUIRED no FIELD attr_n92 TYPE integer REQUIRED no FIELD field_y32.val_f56 TYPE boolean REQUIRED no FIELD field_y32.col_a09 TYPE string VALUES option_a|option...
{"prop_m51":null,"dim_l69":"option_b","field_y32":{"val_f56":true,"col_a09":"option_b","field_k78":"mode_a","prop_n90":591,"prop_a34":"option_e","param_h65":"medium","prop_e98":null,"key_n84":"cat_e"}}
single_quotes
{ "type": "object", "properties": { "prop_m51": { "type": "null" }, "dim_l69": { "type": "string", "enum": [ "option_a", "option_b", "option_c", "option_d", "option_e", "option_f" ] }, "attr_n92": { "type": "integer" ...
{'prop_m51':null,'dim_l69':'option_b','field_y32':{'val_f56':true,'col_a09':'option_b','field_k78':'mode_a','prop_n90':591,'prop_a34':'option_e','param_h65':'medium','prop_e98':null,'key_n84':'cat_e'}}
Expecting property name enclosed in double quotes
{"prop_m51":null,"dim_l69":"option_b","field_y32":{"val_f56":true,"col_a09":"option_b","field_k78":"mode_a","prop_n90":591,"prop_a34":"option_e","param_h65":"medium","prop_e98":null,"key_n84":"cat_e"}}
TASK repair_structured_output SPEC FIELD field_j48 TYPE string_date-time REQUIRED yes FIELD val_y56.prop_s11 TYPE string REQUIRED yes FIELD val_y56.col_v45 TYPE string REQUIRED yes FIELD val_y56.dim_u67 TYPE string VALUES admin|editor|viewer REQUIRED no FIELD val_y56.dim_y65 TYPE integer REQUIRED yes FIELD val_y56.dim...
{"field_j48":"2023-10-06T19:52:00Z","val_y56":{"prop_s11":"qux","col_v45":"cancelled","dim_y65":238,"dim_x66":"critical"},"dim_z71":275.7,"key_v41":64}
missing_required
{ "type": "object", "properties": { "field_j48": { "type": "string", "format": "date-time" }, "val_y56": { "type": "object", "properties": { "prop_s11": { "type": "string" }, "col_v45": { "type": "string" }, "dim_u67": {...
{"field_j48": "2023-10-06T19:52:00Z", "val_y56": {"prop_s11": "qux", "col_v45": "cancelled", "dim_y65": 238, "dim_x66": "critical"}, "dim_z71": 275.7}
Required field 'key_v41' is missing
{"field_j48":"2023-10-06T19:52:00Z","val_y56":{"prop_s11":"qux","col_v45":"cancelled","dim_y65":238,"dim_x66":"critical"},"dim_z71":275.7,"key_v41":64}
TASK repair_structured_output SPEC FIELD field_h21 TYPE string VALUES mode_a|mode_b REQUIRED no FIELD val_h03 TYPE integer REQUIRED no FIELD param_r39.key_k87 TYPE null REQUIRED no FIELD param_r39.key_l24 TYPE number REQUIRED yes FIELD param_r39.key_e96 TYPE string VALUES free|basic|pro|enterprise REQUIRED yes FIELD p...
{"val_h03":728,"param_r39":{"key_l24":537.24,"key_e96":"pro","param_k14":70,"prop_n97":[327.08,682.54]}}
unquoted_keys
{ "type": "object", "properties": { "field_h21": { "type": "string", "enum": [ "mode_a", "mode_b" ] }, "val_h03": { "type": "integer" }, "param_r39": { "type": "object", "properties": { "key_k87": { "type": "null" }, ...
{val_h03:728,param_r39:{key_l24:537.24,key_e96:"pro",param_k14:70,prop_n97:[327.08,682.54]}}
Expecting property name enclosed in double quotes
{"val_h03":728,"param_r39":{"key_l24":537.24,"key_e96":"pro","param_k14":70,"prop_n97":[327.08,682.54]}}
TASK repair_structured_output SPEC FIELD width TYPE string VALUES synonymous|missense|nonsense|frameshift REQUIRED no FIELD turbidity TYPE string VALUES berthed|anchored|underway|moored REQUIRED no FIELD end_date TYPE string VALUES USD|EUR|GBP|BRL|JPY REQUIRED yes FIELD index TYPE boolean REQUIRED no FIELD pressure_kp...
{"turbidity":"moored","end_date":"EUR","index":true,"pressure_kpa":93,"subject":671}
tool_call_wrong_param
{ "type": "object", "properties": { "width": { "type": "string", "enum": [ "synonymous", "missense", "nonsense", "frameshift" ] }, "turbidity": { "type": "string", "enum": [ "berthed", "anchored", "underway", "...
Tool: update_record Params: {"turbidity": "moored", "end_date": "EUR", "index": true, "pressure_kpa": 93, "subject2": 671}
Agent used wrong parameter name 'subject2' instead of 'subject'
{"turbidity":"moored","end_date":"EUR","index":true,"pressure_kpa":93,"subject":671}
TASK repair_structured_output SPEC FIELD fleet_number.hazmat_code TYPE boolean REQUIRED yes FIELD fleet_number.deploy_target TYPE string VALUES operational|degraded|offline|maintenance REQUIRED yes FIELD fleet_number.age TYPE integer REQUIRED no FIELD annotation.voltage TYPE string VALUES level_1|level_2|level_3|level...
{"fleet_number":{"hazmat_code":true,"deploy_target":"degraded"},"annotation":{"company":{"strand":101,"count":true,"subtotal":906,"label":"cat_b","format":"2024-01-14T05:30:00Z","zip_code":634,"tile":613.07},"commit_hash":"Tokyo","format":{"isotope":"bar","yield_pct":186},"nickname":485},"start_date":"cat_b","descripti...
markdown_fences
{ "type": "object", "properties": { "fleet_number": { "type": "object", "properties": { "hazmat_code": { "type": "boolean" }, "deploy_target": { "type": "string", "enum": [ "operational", "degraded", "offline",...
```json {"fleet_number":{"hazmat_code":true,"deploy_target":"degraded"},"annotation":{"company":{"strand":101,"count":true,"subtotal":906,"label":"cat_b","format":"2024-01-14T05:30:00Z","zip_code":634,"tile":613.07},"commit_hash":"Tokyo","format":{"isotope":"bar","yield_pct":186},"nickname":485},"start_date":"cat_b","d...
Output contains markdown code fences
{"fleet_number":{"hazmat_code":true,"deploy_target":"degraded"},"annotation":{"company":{"strand":101,"count":true,"subtotal":906,"label":"cat_b","format":"2024-01-14T05:30:00Z","zip_code":634,"tile":613.07},"commit_hash":"Tokyo","format":{"isotope":"bar","yield_pct":186},"nickname":485},"start_date":"cat_b","descripti...
TASK repair_structured_output SPEC FIELD maturity_date TYPE string VALUES low|medium|high|critical REQUIRED yes FIELD currency TYPE string VALUES level_1|level_2|level_3 REQUIRED no FIELD procedure_code TYPE string REQUIRED yes FIELD freight_class.duration_ms TYPE string VALUES single|married|divorced REQUIRED no FIEL...
{"maturity_date":"high","currency":"level_3","procedure_code":"RTG-04","freight_class":{"vessel_name":475,"maturity_date":"Silva","state":981}}
extra_field
{ "type": "object", "properties": { "maturity_date": { "type": "string", "enum": [ "low", "medium", "high", "critical" ] }, "currency": { "type": "string", "enum": [ "level_1", "level_2", "level_3" ] }, "...
{"maturity_date": "high", "currency": "level_3", "procedure_code": "RTG-04", "freight_class": {"vessel_name": 475, "maturity_date": "Silva", "state": 981}, "extra_value_8196": "unexpected"}
Unknown field 'extra_value_8196' not defined in schema
{"maturity_date":"high","currency":"level_3","procedure_code":"RTG-04","freight_class":{"vessel_name":475,"maturity_date":"Silva","state":981}}
TASK repair_structured_output SPEC FIELD dim_r57 TYPE string REQUIRED no FIELD param_b93 TYPE null REQUIRED no FIELD prop_r53 TYPE null REQUIRED no FIELD field_a09 TYPE integer REQUIRED no FIELD field_b63 TYPE string REQUIRED no FIELD attr_k86 TYPE integer REQUIRED yes FIELD dim_o54 TYPE null REQUIRED no FIELD col_l86...
{"dim_r57":"inactive","prop_r53":null,"field_a09":507,"field_b63":"RTG-04","attr_k86":70,"col_l86":"https://example.io/api"}
missing_required
{ "type": "object", "properties": { "dim_r57": { "type": "string" }, "param_b93": { "type": "null" }, "prop_r53": { "type": "null" }, "field_a09": { "type": "integer" }, "field_b63": { "type": "string" }, "attr_k86": { "type": "integer"...
{"dim_r57": "inactive", "prop_r53": null, "field_a09": 507, "field_b63": "RTG-04", "col_l86": "https://example.io/api"}
Required field 'attr_k86' is missing
{"dim_r57":"inactive","prop_r53":null,"field_a09":507,"field_b63":"RTG-04","attr_k86":70,"col_l86":"https://example.io/api"}
TASK repair_structured_output SPEC FIELD col_k60 TYPE integer REQUIRED no FIELD field_z33 TYPE boolean REQUIRED no FIELD dim_x52 TYPE string_date-time REQUIRED no FIELD attr_s64 TYPE string REQUIRED yes FIELD val_u21.val_g02 TYPE string VALUES small|medium|large|xl REQUIRED yes FIELD val_u21.dim_b81 TYPE string REQUIR...
{"col_k60":639,"field_z33":false,"dim_x52":"2022-05-13T13:25:00Z","attr_s64":"Paris","val_u21":{"val_g02":"medium","dim_b81":"pending","param_a93":"inland","key_u24":408.53},"field_s22":"homozygous","attr_k14":"A short description."}
tool_call_text_mix
{ "type": "object", "properties": { "col_k60": { "type": "integer" }, "field_z33": { "type": "boolean" }, "dim_x52": { "type": "string", "format": "date-time" }, "attr_s64": { "type": "string" }, "val_u21": { "type": "object", "properties...
I need to look up the information first. <tool_call name="calculate_docking_fee"> {"col_k60":639,"field_z33":false,"dim_x52":"2022-05-13T13:25:00Z","attr_s64":"Paris","val_u21":{"val_g02":"medium","dim_b81":"pending","param_a93":"inland","key_u24":408.53},"field_s22":"homozygous","attr_k14":"A short description."} </to...
Agent response mixes reasoning text with tool call
{"col_k60":639,"field_z33":false,"dim_x52":"2022-05-13T13:25:00Z","attr_s64":"Paris","val_u21":{"val_g02":"medium","dim_b81":"pending","param_a93":"inland","key_u24":408.53},"field_s22":"homozygous","attr_k14":"A short description."}
TASK repair_structured_output SPEC FIELD col_f97.val_t61 TYPE string_uri REQUIRED yes FIELD col_f97.field_m86 TYPE boolean REQUIRED yes FIELD col_f97.attr_q86 TYPE string VALUES single|married|divorced REQUIRED yes FIELD attr_m69 TYPE string_uri REQUIRED no FIELD attr_g25.key_n13 TYPE null REQUIRED yes FIELD attr_g25....
{"col_f97":{"val_t61":"https://data.com/data","field_m86":true,"attr_q86":"single"},"attr_g25":{"key_n13":null,"val_i08":true,"prop_r01":{"param_m31":559,"key_f00":"level_2","attr_h91":290}},"dim_x27":"test@example.com","prop_u46":"option_a","dim_f33":390,"val_u46":"https://api.example.com/v1"}
thought_process
{ "type": "object", "properties": { "col_f97": { "type": "object", "properties": { "val_t61": { "type": "string", "format": "uri" }, "field_m86": { "type": "boolean" }, "attr_q86": { "type": "string", "enum": [...
Let me analyze the request and generate the appropriate JSON. The user wants a structured object with specific fields. {"col_f97":{"val_t61":"https://data.com/data","field_m86":true,"attr_q86":"single"},"attr_g25":{"key_n13":null,"val_i08":true,"prop_r01":{"param_m31":559,"key_f00":"level_2","attr_h91":290}},"dim_x27"...
Output contains chain-of-thought reasoning before JSON
{"col_f97":{"val_t61":"https://data.com/data","field_m86":true,"attr_q86":"single"},"attr_g25":{"key_n13":null,"val_i08":true,"prop_r01":{"param_m31":559,"key_f00":"level_2","attr_h91":290}},"dim_x27":"test@example.com","prop_u46":"option_a","dim_f33":390,"val_u46":"https://api.example.com/v1"}
TASK repair_structured_output SPEC FIELD param_f40 TYPE string VALUES open|in_progress|resolved|closed REQUIRED yes FIELD dim_x90 TYPE string VALUES single|married|divorced REQUIRED yes FIELD val_u48.col_p67 TYPE string VALUES homozygous|heterozygous|hemizygous REQUIRED no FIELD val_u48.dim_n19 TYPE integer REQUIRED n...
{"param_f40":"open","dim_x90":"divorced","val_u48":{"dim_n19":465,"key_e49":405.32,"col_x01":{"key_h47":"test","attr_o72":342,"key_u92":"active","val_q98":true,"dim_f72":"https://example.org/data"},"dim_b92":"PASS"}}
markdown_fences
{ "type": "object", "properties": { "param_f40": { "type": "string", "enum": [ "open", "in_progress", "resolved", "closed" ] }, "dim_x90": { "type": "string", "enum": [ "single", "married", "divorced" ] }, ...
```json {"param_f40":"open","dim_x90":"divorced","val_u48":{"dim_n19":465,"key_e49":405.32,"col_x01":{"key_h47":"test","attr_o72":342,"key_u92":"active","val_q98":true,"dim_f72":"https://example.org/data"},"dim_b92":"PASS"}} ```
Output contains markdown code fences
{"param_f40":"open","dim_x90":"divorced","val_u48":{"dim_n19":465,"key_e49":405.32,"col_x01":{"key_h47":"test","attr_o72":342,"key_u92":"active","val_q98":true,"dim_f72":"https://example.org/data"},"dim_b92":"PASS"}}
TASK repair_structured_output SPEC FIELD param_i21 TYPE integer REQUIRED no FIELD key_m34 TYPE boolean REQUIRED yes FIELD key_f63 TYPE string VALUES option_a|option_b|option_c|option_d|option_e REQUIRED yes BROKEN_OUTPUT {"key_m34":true,"key_f63":"option_c"
{"key_m34":true,"key_f63":"option_c"}
truncated_object
{ "type": "object", "properties": { "param_i21": { "type": "integer" }, "key_m34": { "type": "boolean" }, "key_f63": { "type": "string", "enum": [ "option_a", "option_b", "option_c", "option_d", "option_e" ] } }, "requ...
{"key_m34":true,"key_f63":"option_c"
Unexpected end of JSON input — truncated object
{"key_m34":true,"key_f63":"option_c"}
TASK repair_structured_output SPEC FIELD param_d75 TYPE string_email REQUIRED no FIELD val_s44 TYPE boolean REQUIRED yes FIELD key_p42 TYPE string VALUES operational|degraded|offline|maintenance REQUIRED no BROKEN_OUTPUT {"param_d75": "ops@example.com", "val_s44": null}
{"param_d75":"ops@example.com","val_s44":true}
null_required
{ "type": "object", "properties": { "param_d75": { "type": "string", "format": "email" }, "val_s44": { "type": "boolean" }, "key_p42": { "type": "string", "enum": [ "operational", "degraded", "offline", "maintenance" ] } }...
{"param_d75": "ops@example.com", "val_s44": null}
Required field 'val_s44' is null
{"param_d75":"ops@example.com","val_s44":true}
TASK repair_structured_output SPEC FIELD section TYPE boolean REQUIRED no FIELD altitude TYPE number REQUIRED no FIELD shipping TYPE string_date-time REQUIRED yes FIELD tags TYPE string VALUES reliable|unstable|intermittent REQUIRED no FIELD transaction_id TYPE number REQUIRED no BROKEN_OUTPUT {"section": true, "alti...
{"section":true,"altitude":316.15,"shipping":"2020-05-12T20:04:00Z","transaction_id":278.03}
date_format_error
{ "type": "object", "properties": { "section": { "type": "boolean" }, "altitude": { "type": "number" }, "shipping": { "type": "string", "format": "date-time" }, "tags": { "type": "string", "enum": [ "reliable", "unstable", "inte...
{"section": true, "altitude": 316.15, "shipping": "2020-05-12T20:04:00", "transaction_id": 278.03}
Field 'shipping' has invalid date format
{"section":true,"altitude":316.15,"shipping":"2020-05-12T20:04:00Z","transaction_id":278.03}
TASK repair_structured_output SPEC FIELD attr_i53 TYPE string_uri REQUIRED no FIELD param_a81 TYPE string_date-time REQUIRED no FIELD attr_i64 TYPE boolean REQUIRED no FIELD prop_x78 TYPE string_date-time REQUIRED yes FIELD col_f43 TYPE string VALUES admin|editor|viewer REQUIRED no FIELD field_u14 TYPE string VALUES p...
{"attr_i53":"https://data.com/api","param_a81":"2022-10-01T03:06:00Z","prop_x78":"2022-01-05T23:12:00Z","col_f43":"admin","field_u14":"rejected"}
extra_text_after
{ "type": "object", "properties": { "attr_i53": { "type": "string", "format": "uri" }, "param_a81": { "type": "string", "format": "date-time" }, "attr_i64": { "type": "boolean" }, "prop_x78": { "type": "string", "format": "date-time" }, "...
{"attr_i53":"https://data.com/api","param_a81":"2022-10-01T03:06:00Z","prop_x78":"2022-01-05T23:12:00Z","col_f43":"admin","field_u14":"rejected"} This should match the schema you provided.
Output contains non-JSON text after the object
{"attr_i53":"https://data.com/api","param_a81":"2022-10-01T03:06:00Z","prop_x78":"2022-01-05T23:12:00Z","col_f43":"admin","field_u14":"rejected"}
TASK repair_structured_output SPEC FIELD col_z83 TYPE string VALUES admin|editor|viewer REQUIRED yes FIELD attr_d20 TYPE integer REQUIRED yes FIELD col_c49[] TYPE number REQUIRED no FIELD val_e50[].col_c59 TYPE number REQUIRED no FIELD val_e50[].key_f85 TYPE string REQUIRED yes FIELD val_e50[].val_o57 TYPE number REQU...
{"col_z83":"editor","attr_d20":738,"col_c49":[369.03],"val_e50":[{"key_f85":"qux","val_o57":4.54,"col_g79":"inland"},{"key_f85":"world","val_o57":975.23,"col_g79":"inland"},{"key_f85":"pending","col_g79":"oceanic"}]}
number_with_unit
{ "type": "object", "properties": { "col_z83": { "type": "string", "enum": [ "admin", "editor", "viewer" ] }, "attr_d20": { "type": "integer" }, "col_c49": { "type": "array", "items": { "type": "number" } }, "val_e...
{"col_z83": "editor", "attr_d20": "738sec", "col_c49": [369.03], "val_e50": [{"key_f85": "qux", "val_o57": 4.54, "col_g79": "inland"}, {"key_f85": "world", "val_o57": 975.23, "col_g79": "inland"}, {"key_f85": "pending", "col_g79": "oceanic"}]}
Field 'attr_d20' must be number, got string with unit
{"col_z83":"editor","attr_d20":738,"col_c49":[369.03],"val_e50":[{"key_f85":"qux","val_o57":4.54,"col_g79":"inland"},{"key_f85":"world","val_o57":975.23,"col_g79":"inland"},{"key_f85":"pending","col_g79":"oceanic"}]}
TASK repair_structured_output SPEC FIELD pressure_kpa TYPE string VALUES operational|degraded|offline|maintenance REQUIRED no FIELD label TYPE string VALUES type_a|type_b|type_c|type_d|type_e REQUIRED no FIELD due_date TYPE string VALUES low|medium|high|critical REQUIRED no FIELD humidity_pct TYPE string REQUIRED no F...
{"pressure_kpa":"offline","due_date":"low","humidity_pct":"chr1","nickname":277.49,"bill_of_lading":"user@domain.com"}
missing_brace
{ "type": "object", "properties": { "pressure_kpa": { "type": "string", "enum": [ "operational", "degraded", "offline", "maintenance" ] }, "label": { "type": "string", "enum": [ "type_a", "type_b", "type_c", "t...
"pressure_kpa":"offline","due_date":"low","humidity_pct":"chr1","nickname":277.49,"bill_of_lading":"user@domain.com"}
Missing closing brace
{"pressure_kpa":"offline","due_date":"low","humidity_pct":"chr1","nickname":277.49,"bill_of_lading":"user@domain.com"}