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 barcode TYPE string VALUES mode_a|mode_b REQUIRED no
FIELD ph_level TYPE string REQUIRED yes
FIELD voltage TYPE boolean REQUIRED yes
BROKEN_OUTPUT
Sensor output follows:
```json
{"barcode":"mode_a","ph_level":"https://api.example.com/v1","voltage":true}
```
This should match t... | {"barcode":"mode_a","ph_level":"https://api.example.com/v1","voltage":true} | markdown_explanation | {
"type": "object",
"properties": {
"barcode": {
"type": "string",
"enum": [
"mode_a",
"mode_b"
]
},
"ph_level": {
"type": "string"
},
"voltage": {
"type": "boolean"
}
},
"required": [
"ph_level",
"voltage"
]
} | Sensor output follows:
```json
{"barcode":"mode_a","ph_level":"https://api.example.com/v1","voltage":true}
```
This should match the schema you provided. | Output contains markdown and explanatory text around JSON | {"barcode":"mode_a","ph_level":"https://api.example.com/v1","voltage":true} |
TASK repair_structured_output
SPEC
FIELD col_f59 TYPE string_email REQUIRED yes
FIELD key_s01 TYPE integer REQUIRED no
FIELD attr_c35.key_n44 TYPE string VALUES level_1|level_2|level_3|level_4|level_5|level_6 REQUIRED no
FIELD attr_c35.field_g14 TYPE string_email REQUIRED no
FIELD attr_c35.attr_f11 TYPE number REQUIRE... | {"col_f59":"info@test.io","key_s01":691,"attr_c35":{"key_n44":"level_4","field_g14":"admin@example.com","val_z57":{"val_z99":"2024-05-16T20:38:00Z","prop_s28":105,"field_d06":"option_e","key_y28":"bar","key_j43":"info@domain.org","field_k23":"info"},"attr_a55":{"prop_t77":"FWD","key_s15":["type_a","type_d","type_c"],"f... | tool_call_python_syntax | {
"type": "object",
"properties": {
"col_f59": {
"type": "string",
"format": "email"
},
"key_s01": {
"type": "integer"
},
"attr_c35": {
"type": "object",
"properties": {
"key_n44": {
"type": "string",
"enum": [
"level_1",
... | calibrate_instrument(col_f59='info@test.io', key_s01=691, attr_c35={'key_n44': 'level_4', 'field_g14': 'admin@example.com', 'val_z57': {'val_z99': '2024-05-16T20:38:00Z', 'prop_s28': 105, 'field_d06': 'option_e', 'key_y28': 'bar', 'key_j43': 'info@domain.org', 'field_k23': 'info'}, 'attr_a55': {'prop_t77': 'FWD', 'key_... | Tool call uses Python syntax instead of JSON | {"col_f59":"info@test.io","key_s01":691,"attr_c35":{"key_n44":"level_4","field_g14":"admin@example.com","val_z57":{"val_z99":"2024-05-16T20:38:00Z","prop_s28":105,"field_d06":"option_e","key_y28":"bar","key_j43":"info@domain.org","field_k23":"info"},"attr_a55":{"prop_t77":"FWD","key_s15":["type_a","type_d","type_c"],"f... |
TASK repair_structured_output
SPEC
FIELD conductivity.crew_id TYPE boolean REQUIRED no
FIELD conductivity.transaction_id TYPE integer REQUIRED yes
FIELD conductivity.shift_code.fleet_number TYPE string REQUIRED yes
FIELD conductivity.shift_code.voltage TYPE string REQUIRED yes
FIELD conductivity.shift_code.deploy_targ... | {"rating":"published","latitude":"2024-01-15","comments":"coastal","format":"missense","throttle_pos":{"account_id":571.75,"items":"2021-03-26T07:44:00Z","half_life":"ops@test.io"},"product_id":"https://example.io/api"} | truncated_array | {
"type": "object",
"properties": {
"conductivity": {
"type": "object",
"properties": {
"crew_id": {
"type": "boolean"
},
"transaction_id": {
"type": "integer"
},
"shift_code": {
"type": "object",
"properties": {
... | {"rating":"published","latitude":"2024-01-15","comments":"coastal","format":"missense","throttle_pos":{"account_id":571.75,"items":"2021-03-26T07:44:00Z","half_life":"ops@test.io"},"product_id":"https://example.io/api" | Unexpected end of JSON input — truncated object | {"rating":"published","latitude":"2024-01-15","comments":"coastal","format":"missense","throttle_pos":{"account_id":571.75,"items":"2021-03-26T07:44:00Z","half_life":"ops@test.io"},"product_id":"https://example.io/api"} |
TASK repair_structured_output
SPEC
FIELD val_l39 TYPE string_uri REQUIRED yes
FIELD dim_l08 TYPE string VALUES homozygous|heterozygous|hemizygous REQUIRED yes
FIELD attr_s03 TYPE integer REQUIRED no
FIELD key_m98 TYPE string REQUIRED no
FIELD field_e84 TYPE number REQUIRED yes
FIELD val_a27 TYPE integer REQUIRED no
FI... | {"val_l39":"https://data.com/v1","dim_l08":"homozygous","attr_s03":233,"key_m98":"RTG-04","field_e84":692.88,"prop_n26":{"prop_v82":680.95,"field_v00":null,"field_n78":["resolved","resolved","closed"]},"val_t41":{"prop_y22":490,"prop_f72":null,"prop_j42":"GBP","val_c60":"baz","prop_r81":"2024-06-30"}} | thought_process | {
"type": "object",
"properties": {
"val_l39": {
"type": "string",
"format": "uri"
},
"dim_l08": {
"type": "string",
"enum": [
"homozygous",
"heterozygous",
"hemizygous"
]
},
"attr_s03": {
"type": "integer"
},
"key_m98": {
... | Processing the request now.
I'll validate against the schema.
{"val_l39":"https://data.com/v1","dim_l08":"homozygous","attr_s03":233,"key_m98":"RTG-04","field_e84":692.88,"prop_n26":{"prop_v82":680.95,"field_v00":null,"field_n78":["resolved","resolved","closed"]},"val_t41":{"prop_y22":490,"prop_f72":null,"prop_j42":"G... | Output contains chain-of-thought reasoning before JSON | {"val_l39":"https://data.com/v1","dim_l08":"homozygous","attr_s03":233,"key_m98":"RTG-04","field_e84":692.88,"prop_n26":{"prop_v82":680.95,"field_v00":null,"field_n78":["resolved","resolved","closed"]},"val_t41":{"prop_y22":490,"prop_f72":null,"prop_j42":"GBP","val_c60":"baz","prop_r81":"2024-06-30"}} |
TASK repair_structured_output
SPEC
FIELD status_code TYPE string REQUIRED no
FIELD berth_slot TYPE integer REQUIRED yes
FIELD payment_status.version TYPE null REQUIRED no
FIELD payment_status.department.currency TYPE string VALUES success|error|warning|info REQUIRED no
FIELD payment_status.department.dissolved_oxygen ... | {"berth_slot":924,"payment_status":{"version":null,"department":{"currency":"success","dissolved_oxygen":879.3,"longitude":"2021-05-22T04:48:00Z","yield_pct":"pending","hazmat_code":"completed"},"country":"returned","zip_code":155,"brake_pressure":56},"frequency_hz":"https://example.com/v1"} | extra_field | {
"type": "object",
"properties": {
"status_code": {
"type": "string"
},
"berth_slot": {
"type": "integer"
},
"payment_status": {
"type": "object",
"properties": {
"version": {
"type": "null"
},
"department": {
"type": "object",... | {"berth_slot": 924, "payment_status": {"version": null, "department": {"currency": "success", "dissolved_oxygen": 879.3, "longitude": "2021-05-22T04:48:00Z", "yield_pct": "pending", "hazmat_code": "completed"}, "country": "returned", "zip_code": 155, "brake_pressure": 56}, "frequency_hz": "https://example.com/v1", "ext... | Unknown field 'extra_info_5409' not defined in schema | {"berth_slot":924,"payment_status":{"version":null,"department":{"currency":"success","dissolved_oxygen":879.3,"longitude":"2021-05-22T04:48:00Z","yield_pct":"pending","hazmat_code":"completed"},"country":"returned","zip_code":155,"brake_pressure":56},"frequency_hz":"https://example.com/v1"} |
TASK repair_structured_output
SPEC
FIELD catalyst TYPE string VALUES type_a|type_b|type_c|type_d REQUIRED no
FIELD timezone TYPE boolean REQUIRED yes
FIELD crew_id TYPE number REQUIRED no
FIELD width TYPE string VALUES mode_a|mode_b REQUIRED no
FIELD state TYPE number REQUIRED no
BROKEN_OUTPUT
{'catalyst':'type_b','t... | {"catalyst":"type_b","timezone":false,"width":"mode_a","state":676.41} | single_quotes | {
"type": "object",
"properties": {
"catalyst": {
"type": "string",
"enum": [
"type_a",
"type_b",
"type_c",
"type_d"
]
},
"timezone": {
"type": "boolean"
},
"crew_id": {
"type": "number"
},
"width": {
"type": "string",
... | {'catalyst':'type_b','timezone':false,'width':'mode_a','state':676.41} | Expecting property name enclosed in double quotes | {"catalyst":"type_b","timezone":false,"width":"mode_a","state":676.41} |
TASK repair_structured_output
SPEC
FIELD message TYPE string VALUES type_a|type_b|type_c|type_d REQUIRED yes
FIELD size TYPE string REQUIRED yes
FIELD filter_flag TYPE boolean REQUIRED yes
FIELD catalyst TYPE string VALUES level_1|level_2 REQUIRED no
BROKEN_OUTPUT
I need to look up the information first.
Action: get_... | {"message":"type_d","size":"QC-07","filter_flag":true,"catalyst":"level_2"} | tool_call_partial_args | {
"type": "object",
"properties": {
"message": {
"type": "string",
"enum": [
"type_a",
"type_b",
"type_c",
"type_d"
]
},
"size": {
"type": "string"
},
"filter_flag": {
"type": "boolean"
},
"catalyst": {
"type": "string",... | I need to look up the information first.
Action: get_weather
Arguments: {"message": "type_d", "filter_flag": true, "catalyst": "level_2"} | Agent tool call missing required parameter 'size' | {"message":"type_d","size":"QC-07","filter_flag":true,"catalyst":"level_2"} |
TASK repair_structured_output
SPEC
FIELD lab_result TYPE string VALUES new|in_transit|delivered|returned REQUIRED no
FIELD half_life TYPE string VALUES admin|editor|viewer REQUIRED no
FIELD position TYPE string VALUES synonymous|missense|nonsense|frameshift REQUIRED no
FIELD updated_at TYPE boolean REQUIRED no
FIELD t... | {"lab_result":"returned","half_life":"viewer","position":"synonymous","updated_at":true,"tags":null} | missing_bracket | {
"type": "object",
"properties": {
"lab_result": {
"type": "string",
"enum": [
"new",
"in_transit",
"delivered",
"returned"
]
},
"half_life": {
"type": "string",
"enum": [
"admin",
"editor",
"viewer"
]
},
... | {"lab_result":"returned","half_life":"viewer","position":"synonymous","updated_at":true,"tags":null} | Missing closing bracket | {"lab_result":"returned","half_life":"viewer","position":"synonymous","updated_at":true,"tags":null} |
TASK repair_structured_output
SPEC
FIELD first_name TYPE string VALUES single|married|divorced REQUIRED no
FIELD city TYPE boolean REQUIRED yes
FIELD department TYPE number REQUIRED yes
FIELD aligned_pct TYPE number REQUIRED yes
FIELD order_id[] TYPE boolean REQUIRED no
BROKEN_OUTPUT
process_payment(city=True, depart... | {"city":true,"department":120.09,"aligned_pct":351.12,"order_id":[false,true,false]} | tool_call_python_syntax | {
"type": "object",
"properties": {
"first_name": {
"type": "string",
"enum": [
"single",
"married",
"divorced"
]
},
"city": {
"type": "boolean"
},
"department": {
"type": "number"
},
"aligned_pct": {
"type": "number"
},
... | process_payment(city=True, department=120.09, aligned_pct=351.12, order_id=[False, True, False]) | Tool call uses Python syntax instead of JSON | {"city":true,"department":120.09,"aligned_pct":351.12,"order_id":[false,true,false]} |
TASK repair_structured_output
SPEC
FIELD param_q08 TYPE string REQUIRED yes
FIELD dim_e58 TYPE number REQUIRED no
FIELD val_f30 TYPE string VALUES synonymous|missense|nonsense|frameshift REQUIRED yes
BROKEN_OUTPUT
transfer_call(param_q08='A short description.', dim_e58=952.7, val_f30='frameshift') | {"param_q08":"A short description.","dim_e58":952.7,"val_f30":"frameshift"} | tool_call_python_syntax | {
"type": "object",
"properties": {
"param_q08": {
"type": "string"
},
"dim_e58": {
"type": "number"
},
"val_f30": {
"type": "string",
"enum": [
"synonymous",
"missense",
"nonsense",
"frameshift"
]
}
},
"required": [
"para... | transfer_call(param_q08='A short description.', dim_e58=952.7, val_f30='frameshift') | Tool call uses Python syntax instead of JSON | {"param_q08":"A short description.","dim_e58":952.7,"val_f30":"frameshift"} |
TASK repair_structured_output
SPEC
FIELD prop_j16 TYPE string VALUES single|married|divorced REQUIRED no
FIELD col_h82 TYPE string VALUES berthed|anchored|underway|moored REQUIRED no
FIELD col_o75 TYPE string VALUES active|inactive|pending REQUIRED yes
FIELD dim_e77 TYPE integer REQUIRED yes
FIELD dim_d98 TYPE string_... | {"prop_j16":"single","col_h82":"anchored","col_o75":"inactive","dim_e77":708,"dim_d98":"2023-11-20T16:31:00Z"} | markdown_fences | {
"type": "object",
"properties": {
"prop_j16": {
"type": "string",
"enum": [
"single",
"married",
"divorced"
]
},
"col_h82": {
"type": "string",
"enum": [
"berthed",
"anchored",
"underway",
"moored"
]
},
... | ```json
{"prop_j16":"single","col_h82":"anchored","col_o75":"inactive","dim_e77":708,"dim_d98":"2023-11-20T16:31:00Z"}
``` | Output contains markdown code fences | {"prop_j16":"single","col_h82":"anchored","col_o75":"inactive","dim_e77":708,"dim_d98":"2023-11-20T16:31:00Z"} |
TASK repair_structured_output
SPEC
FIELD key_n43 TYPE string REQUIRED yes
FIELD attr_o54.val_m31 TYPE string_email REQUIRED no
FIELD attr_o54.col_x46 TYPE string REQUIRED yes
FIELD attr_o54.field_m64 TYPE string REQUIRED no
FIELD attr_o54.prop_f37 TYPE boolean REQUIRED yes
FIELD attr_o54.key_k83[].key_s28 TYPE string ... | {"key_n43":"qux","attr_o54":{"col_x46":"Paris","field_m64":"Maria","prop_f37":false},"param_c56":"2020-08-18T06:06:00Z","key_e77":"Smith","attr_m69":{"key_g53":"level_3","dim_k92":true,"dim_c97":"option_b"},"param_r05":"Paris"} | extra_text_after | {
"type": "object",
"properties": {
"key_n43": {
"type": "string"
},
"attr_o54": {
"type": "object",
"properties": {
"val_m31": {
"type": "string",
"format": "email"
},
"col_x46": {
"type": "string"
},
"field_m64": {... | {"key_n43":"qux","attr_o54":{"col_x46":"Paris","field_m64":"Maria","prop_f37":false},"param_c56":"2020-08-18T06:06:00Z","key_e77":"Smith","attr_m69":{"key_g53":"level_3","dim_k92":true,"dim_c97":"option_b"},"param_r05":"Paris"}
Let me know if you need anything else! | Output contains non-JSON text after the object | {"key_n43":"qux","attr_o54":{"col_x46":"Paris","field_m64":"Maria","prop_f37":false},"param_c56":"2020-08-18T06:06:00Z","key_e77":"Smith","attr_m69":{"key_g53":"level_3","dim_k92":true,"dim_c97":"option_b"},"param_r05":"Paris"} |
TASK repair_structured_output
SPEC
FIELD deploy_target TYPE string VALUES mode_a|mode_b REQUIRED yes
FIELD department TYPE string VALUES mode_a|mode_b|mode_c|mode_d|mode_e REQUIRED yes
FIELD frequency_hz TYPE boolean REQUIRED yes
BROKEN_OUTPUT
{"deploy_target": "mode_b", "department": "mode_b", "frequency_hz": true, ... | {"deploy_target":"mode_b","department":"mode_b","frequency_hz":true} | extra_field | {
"type": "object",
"properties": {
"deploy_target": {
"type": "string",
"enum": [
"mode_a",
"mode_b"
]
},
"department": {
"type": "string",
"enum": [
"mode_a",
"mode_b",
"mode_c",
"mode_d",
"mode_e"
]
},
... | {"deploy_target": "mode_b", "department": "mode_b", "frequency_hz": true, "extra_value_527": "unexpected"} | Unknown field 'extra_value_527' not defined in schema | {"deploy_target":"mode_b","department":"mode_b","frequency_hz":true} |
TASK repair_structured_output
SPEC
FIELD transaction_id TYPE string VALUES cat_a|cat_b|cat_c REQUIRED yes
FIELD procedure_code TYPE boolean REQUIRED no
FIELD rating TYPE number REQUIRED no
FIELD step TYPE null REQUIRED no
FIELD fleet_number TYPE string REQUIRED no
FIELD website TYPE string VALUES active|inactive|pendi... | {"transaction_id":"cat_a","procedure_code":false,"rating":353.73,"step":null,"website":"pending","item_id":"high","title":"A short description."} | wrong_type | {
"type": "object",
"properties": {
"transaction_id": {
"type": "string",
"enum": [
"cat_a",
"cat_b",
"cat_c"
]
},
"procedure_code": {
"type": "boolean"
},
"rating": {
"type": "number"
},
"step": {
"type": "null"
},
"fle... | {"transaction_id": "cat_a", "procedure_code": false, "rating": "\"353.73\"", "step": null, "website": "pending", "item_id": "high", "title": "A short description."} | Field 'rating' must be number, got string | {"transaction_id":"cat_a","procedure_code":false,"rating":353.73,"step":null,"website":"pending","item_id":"high","title":"A short description."} |
TASK repair_structured_output
SPEC
FIELD items TYPE string VALUES free|basic|pro|enterprise REQUIRED no
FIELD visible.manifest_ref TYPE string REQUIRED no
FIELD visible.longitude TYPE null REQUIRED yes
FIELD visible.barcode TYPE string VALUES berthed|anchored|underway|moored REQUIRED no
FIELD due_date TYPE string VALU... | {"due_date":"degraded","id":946.98} | partial_structure | {
"type": "object",
"properties": {
"items": {
"type": "string",
"enum": [
"free",
"basic",
"pro",
"enterprise"
]
},
"visible": {
"type": "object",
"properties": {
"manifest_ref": {
"type": "string"
},
"longi... | The id is 946.98 and {"due_date":"degraded","id":946.98} | Output mixes natural language with JSON | {"due_date":"degraded","id":946.98} |
TASK repair_structured_output
SPEC
FIELD prop_x23 TYPE string REQUIRED no
FIELD field_c46 TYPE string VALUES open|in_progress|resolved|closed REQUIRED yes
FIELD val_n75 TYPE string REQUIRED yes
FIELD field_h80.field_s93 TYPE string VALUES cat_a|cat_b|cat_c|cat_d REQUIRED no
FIELD field_h80.val_b96 TYPE integer REQUIRE... | {"prop_x23":"Tokyo","field_c46":"open","val_n75":"Diana","field_h80":{"field_s93":"cat_c","val_b96":134,"field_b87":"MV-Evergreen-01"},"key_x41":false} | missing_brace | {
"type": "object",
"properties": {
"prop_x23": {
"type": "string"
},
"field_c46": {
"type": "string",
"enum": [
"open",
"in_progress",
"resolved",
"closed"
]
},
"val_n75": {
"type": "string"
},
"field_h80": {
"type": "o... | {"prop_x23":"Tokyo","field_c46":"open","val_n75":"Diana","field_h80":{"field_s93":"cat_c","val_b96":134,"field_b87":"MV-Evergreen-01","key_x41":false} | Missing closing brace | {"prop_x23":"Tokyo","field_c46":"open","val_n75":"Diana","field_h80":{"field_s93":"cat_c","val_b96":134,"field_b87":"MV-Evergreen-01"},"key_x41":false} |
TASK repair_structured_output
SPEC
FIELD param_n60 TYPE string_uri REQUIRED yes
FIELD key_f38 TYPE string REQUIRED yes
FIELD param_i98 TYPE string VALUES option_a|option_b|option_c REQUIRED yes
FIELD dim_c42 TYPE string REQUIRED yes
BROKEN_OUTPUT
{"param_n60":"https://example.org/api","key_f38":"2023-12-25","param_i9... | {"param_n60":"https://example.org/api","key_f38":"2023-12-25","param_i98":"option_b","dim_c42":"hello"} | truncated_object | {
"type": "object",
"properties": {
"param_n60": {
"type": "string",
"format": "uri"
},
"key_f38": {
"type": "string"
},
"param_i98": {
"type": "string",
"enum": [
"option_a",
"option_b",
"option_c"
]
},
"dim_c42": {
"type... | {"param_n60":"https://example.org/api","key_f38":"2023-12-25","param_i98":"option_b","dim_c42":"hello" | Unexpected end of JSON input — truncated object | {"param_n60":"https://example.org/api","key_f38":"2023-12-25","param_i98":"option_b","dim_c42":"hello"} |
TASK repair_structured_output
SPEC
FIELD isotope TYPE integer REQUIRED yes
FIELD span_id TYPE number REQUIRED yes
FIELD turbidity TYPE string VALUES email|phone|sms|push REQUIRED yes
FIELD company TYPE null REQUIRED no
FIELD user_id TYPE string VALUES low|medium|high|critical REQUIRED no
FIELD dissolved_oxygen TYPE nu... | {"isotope":504,"span_id":753.22,"turbidity":"sms","dissolved_oxygen":null} | missing_bracket | {
"type": "object",
"properties": {
"isotope": {
"type": "integer"
},
"span_id": {
"type": "number"
},
"turbidity": {
"type": "string",
"enum": [
"email",
"phone",
"sms",
"push"
]
},
"company": {
"type": "null"
},
... | {"isotope":504,"span_id":753.22,"turbidity":"sms","dissolved_oxygen":null} | Missing closing bracket | {"isotope":504,"span_id":753.22,"turbidity":"sms","dissolved_oxygen":null} |
TASK repair_structured_output
SPEC
FIELD deploy_target TYPE string VALUES coastal|oceanic|inland|arctic REQUIRED no
FIELD start_date TYPE string VALUES homozygous|heterozygous|hemizygous REQUIRED no
FIELD procedure_code TYPE integer REQUIRED yes
FIELD coverage TYPE null REQUIRED no
FIELD last_name TYPE number REQUIRED... | {"deploy_target":"coastal","procedure_code":356,"last_name":803.25} | unquoted_keys | {
"type": "object",
"properties": {
"deploy_target": {
"type": "string",
"enum": [
"coastal",
"oceanic",
"inland",
"arctic"
]
},
"start_date": {
"type": "string",
"enum": [
"homozygous",
"heterozygous",
"hemizygous"
... | {deploy_target:"coastal",procedure_code:356,last_name:803.25} | Expecting property name enclosed in double quotes | {"deploy_target":"coastal","procedure_code":356,"last_name":803.25} |
TASK repair_structured_output
SPEC
FIELD param_r86 TYPE string VALUES mode_a|mode_b|mode_c|mode_d|mode_e REQUIRED yes
FIELD col_d15 TYPE boolean REQUIRED no
FIELD field_c71 TYPE integer REQUIRED no
FIELD dim_e97 TYPE string REQUIRED yes
FIELD field_c26[].attr_x19 TYPE string VALUES level_1|level_2|level_3 REQUIRED yes... | {"param_r86":"mode_a","col_d15":false,"field_c71":872,"dim_e97":"hello","field_c26":[{"attr_x19":"level_1","val_w71":"cat_c","field_w23":"https://www.org/api","attr_p10":112,"dim_z32":"low","key_o59":"type_a"},{"attr_x19":"level_1","val_w71":"cat_c","field_w23":"https://www.org/v1","dim_z32":"critical","key_o59":"type_... | markdown_fences | {
"type": "object",
"properties": {
"param_r86": {
"type": "string",
"enum": [
"mode_a",
"mode_b",
"mode_c",
"mode_d",
"mode_e"
]
},
"col_d15": {
"type": "boolean"
},
"field_c71": {
"type": "integer"
},
"dim_e97": {
... | ```json
{"param_r86":"mode_a","col_d15":false,"field_c71":872,"dim_e97":"hello","field_c26":[{"attr_x19":"level_1","val_w71":"cat_c","field_w23":"https://www.org/api","attr_p10":112,"dim_z32":"low","key_o59":"type_a"},{"attr_x19":"level_1","val_w71":"cat_c","field_w23":"https://www.org/v1","dim_z32":"critical","key_o59... | Output contains markdown code fences | {"param_r86":"mode_a","col_d15":false,"field_c71":872,"dim_e97":"hello","field_c26":[{"attr_x19":"level_1","val_w71":"cat_c","field_w23":"https://www.org/api","attr_p10":112,"dim_z32":"low","key_o59":"type_a"},{"attr_x19":"level_1","val_w71":"cat_c","field_w23":"https://www.org/v1","dim_z32":"critical","key_o59":"type_... |
TASK repair_structured_output
SPEC
FIELD end_date TYPE integer REQUIRED no
FIELD commit_hash TYPE integer REQUIRED yes
FIELD transaction_id.tax TYPE string VALUES homozygous|heterozygous|hemizygous REQUIRED no
FIELD transaction_id.medication TYPE string VALUES success|error|warning|info REQUIRED no
FIELD transaction_i... | {"end_date":67,"commit_hash":751,"transaction_id":{"description":197,"isotope":"hello","type":"closed"}} | markdown_fences | {
"type": "object",
"properties": {
"end_date": {
"type": "integer"
},
"commit_hash": {
"type": "integer"
},
"transaction_id": {
"type": "object",
"properties": {
"tax": {
"type": "string",
"enum": [
"homozygous",
"heter... | ```json
{"end_date":67,"commit_hash":751,"transaction_id":{"description":197,"isotope":"hello","type":"closed"}}
``` | Output contains markdown code fences | {"end_date":67,"commit_hash":751,"transaction_id":{"description":197,"isotope":"hello","type":"closed"}} |
TASK repair_structured_output
SPEC
FIELD key_o54 TYPE integer REQUIRED yes
FIELD attr_z37 TYPE number REQUIRED yes
FIELD prop_k34 TYPE null REQUIRED no
FIELD dim_e48 TYPE string REQUIRED yes
BROKEN_OUTPUT
{"key_o54":189,"attr_z37":957.11,"prop_k34":null,"dim_e48":"completed"} | {"key_o54":189,"attr_z37":957.11,"prop_k34":null,"dim_e48":"completed"} | missing_bracket | {
"type": "object",
"properties": {
"key_o54": {
"type": "integer"
},
"attr_z37": {
"type": "number"
},
"prop_k34": {
"type": "null"
},
"dim_e48": {
"type": "string"
}
},
"required": [
"attr_z37",
"dim_e48",
"key_o54"
]
} | {"key_o54":189,"attr_z37":957.11,"prop_k34":null,"dim_e48":"completed"} | Missing closing bracket | {"key_o54":189,"attr_z37":957.11,"prop_k34":null,"dim_e48":"completed"} |
TASK repair_structured_output
SPEC
FIELD position TYPE string VALUES red|blue|green|black|white REQUIRED yes
FIELD phenotype TYPE string VALUES free|basic|pro|enterprise REQUIRED yes
FIELD level TYPE number REQUIRED no
FIELD lane TYPE number REQUIRED no
BROKEN_OUTPUT
{"position":"blue","phenotype":"free","level":305.... | {"position":"blue","phenotype":"free","level":305.45,"lane":214.87} | missing_bracket | {
"type": "object",
"properties": {
"position": {
"type": "string",
"enum": [
"red",
"blue",
"green",
"black",
"white"
]
},
"phenotype": {
"type": "string",
"enum": [
"free",
"basic",
"pro",
"enterprise... | {"position":"blue","phenotype":"free","level":305.45,"lane":214.87} | Missing closing bracket | {"position":"blue","phenotype":"free","level":305.45,"lane":214.87} |
TASK repair_structured_output
SPEC
FIELD prop_v87 TYPE string REQUIRED yes
FIELD prop_r45 TYPE integer REQUIRED yes
FIELD prop_l00 TYPE null REQUIRED yes
FIELD attr_d56 TYPE string VALUES pending_review|confirmed|rejected|escalated REQUIRED no
BROKEN_OUTPUT
Let me check the system.
Action: calculate_price
Result: {"p... | {"prop_v87":"qux","prop_r45":712,"prop_l00":null} | agent_chain | {
"type": "object",
"properties": {
"prop_v87": {
"type": "string"
},
"prop_r45": {
"type": "integer"
},
"prop_l00": {
"type": "null"
},
"attr_d56": {
"type": "string",
"enum": [
"pending_review",
"confirmed",
"rejected",
"esc... | Let me check the system.
Action: calculate_price
Result: {"prop_v87": "qux", "prop_l00": null}
I'll query our database.
Action: update_preferences
Result: | Agent multi-step chain with truncated tool output | {"prop_v87":"qux","prop_r45":712,"prop_l00":null} |
TASK repair_structured_output
SPEC
FIELD altitude TYPE string VALUES option_a|option_b|option_c REQUIRED no
FIELD barcode TYPE boolean REQUIRED no
FIELD options TYPE string REQUIRED no
FIELD lane TYPE integer REQUIRED yes
FIELD fleet_number TYPE integer REQUIRED yes
FIELD bed_number TYPE string VALUES open|in_progress... | {"altitude":"option_b","barcode":false,"options":"Maria","lane":73,"fleet_number":947,"bed_number":"resolved"} | agent_chain | {
"type": "object",
"properties": {
"altitude": {
"type": "string",
"enum": [
"option_a",
"option_b",
"option_c"
]
},
"barcode": {
"type": "boolean"
},
"options": {
"type": "string"
},
"lane": {
"type": "integer"
},
"fle... | Let me check the system.
Action: read_sensor_array
Result: {"altitude": "option_b", "barcode": false, "options": "Maria", "fleet_number": 947, "bed_number": "resolved"}
I'll query our database.
Action: check_cargo_manifest
Result: | Agent multi-step chain with truncated tool output | {"altitude":"option_b","barcode":false,"options":"Maria","lane":73,"fleet_number":947,"bed_number":"resolved"} |
TASK repair_structured_output
SPEC
FIELD val_t07 TYPE string REQUIRED yes
FIELD key_z35 TYPE string VALUES small|medium|large|xl REQUIRED no
FIELD param_g83 TYPE string VALUES reliable|unstable|intermittent REQUIRED yes
FIELD val_l62.dim_m05 TYPE string VALUES operational|degraded|offline|maintenance REQUIRED yes
FIEL... | {"val_t07":"Diana","param_g83":"reliable","val_l62":{"dim_m05":"maintenance","col_o65":"ops@domain.org","col_c24":"completed","prop_h44":"resolved"}} | missing_bracket | {
"type": "object",
"properties": {
"val_t07": {
"type": "string"
},
"key_z35": {
"type": "string",
"enum": [
"small",
"medium",
"large",
"xl"
]
},
"param_g83": {
"type": "string",
"enum": [
"reliable",
"unstable... | {"val_t07":"Diana","param_g83":"reliable","val_l62":{"dim_m05":"maintenance","col_o65":"ops@domain.org","col_c24":"completed","prop_h44":"resolved"}} | Missing closing bracket | {"val_t07":"Diana","param_g83":"reliable","val_l62":{"dim_m05":"maintenance","col_o65":"ops@domain.org","col_c24":"completed","prop_h44":"resolved"}} |
TASK repair_structured_output
SPEC
FIELD format TYPE string_email REQUIRED yes
FIELD manifest_ref TYPE boolean REQUIRED yes
FIELD frequency_hz TYPE string REQUIRED yes
BROKEN_OUTPUT
I found that manifest_ref should be True. {"format":"user@example.com","manifest_ref":true,"frequency_hz":"qux"} | {"format":"user@example.com","manifest_ref":true,"frequency_hz":"qux"} | partial_structure | {
"type": "object",
"properties": {
"format": {
"type": "string",
"format": "email"
},
"manifest_ref": {
"type": "boolean"
},
"frequency_hz": {
"type": "string"
}
},
"required": [
"format",
"manifest_ref",
"frequency_hz"
]
} | I found that manifest_ref should be True. {"format":"user@example.com","manifest_ref":true,"frequency_hz":"qux"} | Output mixes natural language with JSON | {"format":"user@example.com","manifest_ref":true,"frequency_hz":"qux"} |
TASK repair_structured_output
SPEC
FIELD decay_rate TYPE string VALUES low|medium|high|critical REQUIRED yes
FIELD tags TYPE string VALUES active|inactive|pending REQUIRED no
FIELD brake_pressure TYPE string VALUES coastal|oceanic|inland|arctic REQUIRED no
FIELD position TYPE number REQUIRED no
FIELD rating TYPE numbe... | {"decay_rate":"medium","tags":"pending","brake_pressure":"arctic","position":745.62,"rating":528.28,"span_id":"Berlin","port_code":"viewer","zip_code":"2022-09-17T15:25:00Z"} | markdown_explanation | {
"type": "object",
"properties": {
"decay_rate": {
"type": "string",
"enum": [
"low",
"medium",
"high",
"critical"
]
},
"tags": {
"type": "string",
"enum": [
"active",
"inactive",
"pending"
]
},
"brake_p... | Sensor output follows:
```json
{"decay_rate":"medium","tags":"pending","brake_pressure":"arctic","position":745.62,"rating":528.28,"span_id":"Berlin","port_code":"viewer","zip_code":"2022-09-17T15:25:00Z"}
```
Let me know if you need anything else! | Output contains markdown and explanatory text around JSON | {"decay_rate":"medium","tags":"pending","brake_pressure":"arctic","position":745.62,"rating":528.28,"span_id":"Berlin","port_code":"viewer","zip_code":"2022-09-17T15:25:00Z"} |
TASK repair_structured_output
SPEC
FIELD tax TYPE integer REQUIRED yes
FIELD age TYPE string VALUES small|medium|large|xl REQUIRED no
FIELD verified TYPE string REQUIRED yes
FIELD price TYPE number REQUIRED yes
FIELD image_url TYPE string REQUIRED no
FIELD format TYPE string VALUES small|medium|large|xl REQUIRED yes
F... | {"tax":106,"verified":"pending","price":161.78,"image_url":"sample","format":"xl"} | missing_brace | {
"type": "object",
"properties": {
"tax": {
"type": "integer"
},
"age": {
"type": "string",
"enum": [
"small",
"medium",
"large",
"xl"
]
},
"verified": {
"type": "string"
},
"price": {
"type": "number"
},
"image... | {"tax":106,"verified":"pending","price":161.78,"image_url":"sample","format":"xl" | Missing closing brace | {"tax":106,"verified":"pending","price":161.78,"image_url":"sample","format":"xl"} |
TASK repair_structured_output
SPEC
FIELD patient_id TYPE string REQUIRED no
FIELD type TYPE integer REQUIRED yes
FIELD amplitude TYPE integer REQUIRED no
FIELD tax TYPE string_uri REQUIRED no
FIELD torque_output TYPE integer REQUIRED no
FIELD length TYPE boolean REQUIRED no
FIELD website TYPE string REQUIRED yes
BROK... | {"type":928,"amplitude":774,"tax":"https://example.com/api","torque_output":996,"website":"quux"} | tool_call_wrong_param | {
"type": "object",
"properties": {
"patient_id": {
"type": "string"
},
"type": {
"type": "integer"
},
"amplitude": {
"type": "integer"
},
"tax": {
"type": "string",
"format": "uri"
},
"torque_output": {
"type": "integer"
},
"length": {... | Tool: apply_discount
Params: {"amplitude": 774, "tax": "https://example.com/api", "torque_output": 996, "website": "quux", "type_id": 928} | Agent used wrong parameter name 'type_id' instead of 'type' | {"type":928,"amplitude":774,"tax":"https://example.com/api","torque_output":996,"website":"quux"} |
TASK repair_structured_output
SPEC
FIELD collateral TYPE string VALUES cat_a|cat_b|cat_c|cat_d|cat_e REQUIRED yes
FIELD deploy_target TYPE string VALUES cat_a|cat_b|cat_c|cat_d REQUIRED no
FIELD price TYPE string VALUES mode_a|mode_b|mode_c REQUIRED yes
FIELD role TYPE boolean REQUIRED no
FIELD thumbnail TYPE string R... | {"collateral":"cat_b","price":"mode_c","role":true,"thumbnail":"pending"} | tool_call_text_mix | {
"type": "object",
"properties": {
"collateral": {
"type": "string",
"enum": [
"cat_a",
"cat_b",
"cat_c",
"cat_d",
"cat_e"
]
},
"deploy_target": {
"type": "string",
"enum": [
"cat_a",
"cat_b",
"cat_c",
... | Let me check the system.
<tool_call name="call_variants">
{"collateral":"cat_b","price":"mode_c","role":true,"thumbnail":"pending"}
</tool_call.
Operation completed. | Agent response mixes reasoning text with tool call | {"collateral":"cat_b","price":"mode_c","role":true,"thumbnail":"pending"} |
TASK repair_structured_output
SPEC
FIELD dim_v61 TYPE integer REQUIRED yes
FIELD val_l61 TYPE string VALUES new|in_transit|delivered|returned REQUIRED yes
FIELD key_r18 TYPE string VALUES low|medium|high|critical REQUIRED no
FIELD param_u10 TYPE number REQUIRED no
FIELD col_w99 TYPE string_date-time REQUIRED no
BROKE... | {"dim_v61":66,"val_l61":"new","param_u10":793.43,"col_w99":"2020-08-06T07:09:00Z"} | tool_call_text_mix | {
"type": "object",
"properties": {
"dim_v61": {
"type": "integer"
},
"val_l61": {
"type": "string",
"enum": [
"new",
"in_transit",
"delivered",
"returned"
]
},
"key_r18": {
"type": "string",
"enum": [
"low",
"me... | I'll query our database.
<tool_call name="transfer_call">
{"dim_v61":66,"val_l61":"new","param_u10":793.43,"col_w99":"2020-08-06T07:09:00Z"}
</tool_call. | Agent response mixes reasoning text with tool call | {"dim_v61":66,"val_l61":"new","param_u10":793.43,"col_w99":"2020-08-06T07:09:00Z"} |
TASK repair_structured_output
SPEC
FIELD count.subject TYPE number REQUIRED yes
FIELD count.version TYPE string REQUIRED no
FIELD count.priority TYPE boolean REQUIRED no
FIELD count.image_url[] TYPE string VALUES type_a|type_b|type_c|type_d|type_e|type_f REQUIRED yes
FIELD repository TYPE string REQUIRED no
FIELD invo... | {"count":{"subject":603.03,"version":"Charlie","priority":true,"image_url":["type_c"]},"repository":"QC-07","invoice_id":769.28} | tool_call_bad_format | {
"type": "object",
"properties": {
"count": {
"type": "object",
"properties": {
"subject": {
"type": "number"
},
"version": {
"type": "string"
},
"priority": {
"type": "boolean"
},
"image_url": {
"type":... | <functioncall> process_payment
{count: {subject: 603.03, version: "Charlie", priority: true, image_url: ["type_c"]}, repository: "QC-07", invoice_id: 769.28} | Tool call has malformed arguments — unquoted keys in function parameters | {"count":{"subject":603.03,"version":"Charlie","priority":true,"image_url":["type_c"]},"repository":"QC-07","invoice_id":769.28} |
TASK repair_structured_output
SPEC
FIELD email TYPE string VALUES option_a|option_b|option_c|option_d REQUIRED yes
FIELD paragraph.pressure_kpa TYPE string VALUES cat_a|cat_b|cat_c|cat_d|cat_e REQUIRED yes
FIELD paragraph.vital_sign TYPE boolean REQUIRED no
FIELD paragraph.comments.compound TYPE string REQUIRED yes
FI... | {"email":"option_d","paragraph":{"pressure_kpa":"cat_b","vital_sign":false,"comments":{"compound":"world","ph_level":197,"build_status":652.14,"filter_flag":true,"salinity":"email","values":"https://example.com/api","lab_result":"QC-07","temp_celsius":null},"tax":{"active":"test","size":"Smith","batch_code":824,"organi... | tool_call_text_mix | {
"type": "object",
"properties": {
"email": {
"type": "string",
"enum": [
"option_a",
"option_b",
"option_c",
"option_d"
]
},
"paragraph": {
"type": "object",
"properties": {
"pressure_kpa": {
"type": "string",
"e... | I'll query our database.
<tool_call name="check_cargo_manifest">
{"email":"option_d","paragraph":{"pressure_kpa":"cat_b","vital_sign":false,"comments":{"compound":"world","ph_level":197,"build_status":652.14,"filter_flag":true,"salinity":"email","values":"https://example.com/api","lab_result":"QC-07","temp_celsius":nul... | Agent response mixes reasoning text with tool call | {"email":"option_d","paragraph":{"pressure_kpa":"cat_b","vital_sign":false,"comments":{"compound":"world","ph_level":197,"build_status":652.14,"filter_flag":true,"salinity":"email","values":"https://example.com/api","lab_result":"QC-07","temp_celsius":null},"tax":{"active":"test","size":"Smith","batch_code":824,"organi... |
TASK repair_structured_output
SPEC
FIELD last_name TYPE integer REQUIRED no
FIELD visible TYPE integer REQUIRED yes
FIELD organism TYPE string VALUES email|phone|sms|push REQUIRED yes
FIELD velocity TYPE string REQUIRED no
FIELD address TYPE string_uri REQUIRED yes
FIELD index TYPE integer REQUIRED yes
FIELD score TYP... | {"visible":58,"organism":"sms","address":"https://api.com/data","index":682} | tool_call_bad_format | {
"type": "object",
"properties": {
"last_name": {
"type": "integer"
},
"visible": {
"type": "integer"
},
"organism": {
"type": "string",
"enum": [
"email",
"phone",
"sms",
"push"
]
},
"velocity": {
"type": "string"
... | <functioncall> assign_berth
{visible: 58, organism: "sms", address: "https://api.com/data", index: 682} | Tool call has malformed arguments — unquoted keys in function parameters | {"visible":58,"organism":"sms","address":"https://api.com/data","index":682} |
TASK repair_structured_output
SPEC
FIELD section TYPE string REQUIRED yes
FIELD allele TYPE string REQUIRED no
FIELD consignee TYPE string VALUES cat_a|cat_b REQUIRED no
FIELD format.priority TYPE string_date-time REQUIRED no
FIELD format.language TYPE string_date-time REQUIRED no
FIELD format.conductivity TYPE intege... | {"section":"quux"} | extra_field | {
"type": "object",
"properties": {
"section": {
"type": "string"
},
"allele": {
"type": "string"
},
"consignee": {
"type": "string",
"enum": [
"cat_a",
"cat_b"
]
},
"format": {
"type": "object",
"properties": {
"priority"... | {"section": "quux", "extra_data_5063": true} | Unknown field 'extra_data_5063' not defined in schema | {"section":"quux"} |
TASK repair_structured_output
SPEC
FIELD crew_id TYPE null REQUIRED yes
FIELD freight_class TYPE boolean REQUIRED yes
FIELD department.latitude.first_name TYPE integer REQUIRED no
FIELD department.latitude.tile TYPE string REQUIRED no
FIELD department.latitude.port_code TYPE string VALUES cat_a|cat_b|cat_c|cat_d|cat_e... | {"crew_id":null,"freight_class":false} | missing_brace | {
"type": "object",
"properties": {
"crew_id": {
"type": "null"
},
"freight_class": {
"type": "boolean"
},
"department": {
"type": "object",
"properties": {
"latitude": {
"type": "object",
"properties": {
"first_name": {
... | "crew_id":null,"freight_class":false} | Missing closing brace | {"crew_id":null,"freight_class":false} |
TASK repair_structured_output
SPEC
FIELD build_status.dosage TYPE string VALUES cat_a|cat_b|cat_c|cat_d REQUIRED no
FIELD build_status.score TYPE boolean REQUIRED no
FIELD build_status.velocity TYPE string VALUES mode_a|mode_b|mode_c REQUIRED yes
FIELD build_status.price TYPE string REQUIRED yes
FIELD build_status.col... | {"build_status":{"score":true,"velocity":"mode_a","price":"GRCh38","color":330,"decay_rate":774},"catalyst":"mode_b","terminal_id":"demo","shipper_ref":"Maria","type":{"step":true,"updated_at":"cancelled"}} | thought_process | {
"type": "object",
"properties": {
"build_status": {
"type": "object",
"properties": {
"dosage": {
"type": "string",
"enum": [
"cat_a",
"cat_b",
"cat_c",
"cat_d"
]
},
"score": {
"type": "... | I need to create a JSON object that matches the given schema.
Let me make sure all required fields are included.
{"build_status":{"score":true,"velocity":"mode_a","price":"GRCh38","color":330,"decay_rate":774},"catalyst":"mode_b","terminal_id":"demo","shipper_ref":"Maria","type":{"step":true,"updated_at":"cancelled"}} | Output contains chain-of-thought reasoning before JSON | {"build_status":{"score":true,"velocity":"mode_a","price":"GRCh38","color":330,"decay_rate":774},"catalyst":"mode_b","terminal_id":"demo","shipper_ref":"Maria","type":{"step":true,"updated_at":"cancelled"}} |
TASK repair_structured_output
SPEC
FIELD lab_result TYPE integer REQUIRED no
FIELD created_at TYPE string REQUIRED no
FIELD url.weight TYPE string VALUES mode_a|mode_b|mode_c REQUIRED no
FIELD url.deploy_target TYPE integer REQUIRED yes
FIELD url.step TYPE null REQUIRED no
FIELD url.height TYPE integer REQUIRED yes
FI... | {"lab_result":246,"created_at":"Santos","url":{"weight":"mode_b","deploy_target":289,"step":null,"height":700,"balance":299},"section":{"ph_level":618,"options":403,"position":490.55,"reagent":148,"color":16.2,"temp_celsius":"Alice"}} | extra_text_after | {
"type": "object",
"properties": {
"lab_result": {
"type": "integer"
},
"created_at": {
"type": "string"
},
"url": {
"type": "object",
"properties": {
"weight": {
"type": "string",
"enum": [
"mode_a",
"mode_b",
... | {"lab_result":246,"created_at":"Santos","url":{"weight":"mode_b","deploy_target":289,"step":null,"height":700,"balance":299},"section":{"ph_level":618,"options":403,"position":490.55,"reagent":148,"color":16.2,"temp_celsius":"Alice"}}
Analysis finished. | Output contains non-JSON text after the object | {"lab_result":246,"created_at":"Santos","url":{"weight":"mode_b","deploy_target":289,"step":null,"height":700,"balance":299},"section":{"ph_level":618,"options":403,"position":490.55,"reagent":148,"color":16.2,"temp_celsius":"Alice"}} |
TASK repair_structured_output
SPEC
FIELD due_date TYPE string REQUIRED yes
FIELD nickname TYPE boolean REQUIRED yes
FIELD account_id TYPE integer REQUIRED yes
BROKEN_OUTPUT
{"nickname": false, "account_id": 889} | {"due_date":"2024-06-30","nickname":false,"account_id":889} | missing_required | {
"type": "object",
"properties": {
"due_date": {
"type": "string"
},
"nickname": {
"type": "boolean"
},
"account_id": {
"type": "integer"
}
},
"required": [
"due_date",
"nickname",
"account_id"
]
} | {"nickname": false, "account_id": 889} | Required field 'due_date' is missing | {"due_date":"2024-06-30","nickname":false,"account_id":889} |
TASK repair_structured_output
SPEC
FIELD temp_celsius TYPE string VALUES pending_review|confirmed|rejected|escalated REQUIRED no
FIELD created_at TYPE string VALUES USD|EUR|GBP|BRL|JPY REQUIRED no
FIELD current_draw.account_id TYPE string REQUIRED no
FIELD current_draw.count TYPE string VALUES open|in_progress|resolve... | {"temp_celsius":"escalated","current_draw":{"account_id":"sample","count":"resolved","current_draw":"https://api.com/api"}} | missing_required | {
"type": "object",
"properties": {
"temp_celsius": {
"type": "string",
"enum": [
"pending_review",
"confirmed",
"rejected",
"escalated"
]
},
"created_at": {
"type": "string",
"enum": [
"USD",
"EUR",
"GBP",
"BR... | {"temp_celsius": "escalated"} | Required field 'current_draw' is missing | {"temp_celsius":"escalated","current_draw":{"account_id":"sample","count":"resolved","current_draw":"https://api.com/api"}} |
TASK repair_structured_output
SPEC
FIELD brake_pressure.address TYPE string_uri REQUIRED yes
FIELD brake_pressure.isotope TYPE string VALUES coastal|oceanic|inland|arctic REQUIRED yes
FIELD brake_pressure.transaction_id.reagent TYPE string VALUES red|blue|green|black|white REQUIRED yes
FIELD brake_pressure.transaction... | {"image_url":null,"total":false,"currency":460,"ward":"warning","voltage":"unstable"} | tool_call_python_syntax | {
"type": "object",
"properties": {
"brake_pressure": {
"type": "object",
"properties": {
"address": {
"type": "string",
"format": "uri"
},
"isotope": {
"type": "string",
"enum": [
"coastal",
"oceanic",
... | get_inventory(image_url=None, total=False, currency=460, ward='warning', voltage='unstable') | Tool call uses Python syntax instead of JSON | {"image_url":null,"total":false,"currency":460,"ward":"warning","voltage":"unstable"} |
TASK repair_structured_output
SPEC
FIELD rating TYPE boolean REQUIRED yes
FIELD altitude TYPE boolean REQUIRED yes
FIELD current_draw TYPE string VALUES red|blue|green|black|white REQUIRED no
FIELD thumbnail TYPE null REQUIRED yes
FIELD credit_score.lane TYPE number REQUIRED no
FIELD credit_score.frequency_hz TYPE int... | {"rating":false,"altitude":true,"thumbnail":null,"credit_score":{"lane":890.27,"frequency_hz":575,"ph_level":"Jane","color":{"freight_class":149,"crew_id":"blue","description":false,"level":840.96,"span_id":"editor","vital_sign":"synonymous"}}} | tool_call_bad_format | {
"type": "object",
"properties": {
"rating": {
"type": "boolean"
},
"altitude": {
"type": "boolean"
},
"current_draw": {
"type": "string",
"enum": [
"red",
"blue",
"green",
"black",
"white"
]
},
"thumbnail": {
"... | <functioncall> run_diagnostics
{rating: false, altitude: true, thumbnail: null, credit_score: {lane: 890.27, frequency_hz: 575, ph_level: "Jane", color: {freight_class: 149, crew_id: "blue", description: false, level: 840.96, span_id: "editor", vital_sign: "synonymous"}}} | Tool call has malformed arguments — unquoted keys in function parameters | {"rating":false,"altitude":true,"thumbnail":null,"credit_score":{"lane":890.27,"frequency_hz":575,"ph_level":"Jane","color":{"freight_class":149,"crew_id":"blue","description":false,"level":840.96,"span_id":"editor","vital_sign":"synonymous"}}} |
TASK repair_structured_output
SPEC
FIELD col_m62 TYPE string REQUIRED yes
FIELD col_l70 TYPE string REQUIRED no
FIELD val_g88 TYPE string VALUES type_a|type_b|type_c|type_d|type_e REQUIRED no
FIELD prop_g92 TYPE integer REQUIRED yes
FIELD prop_v84 TYPE string VALUES type_a|type_b|type_c REQUIRED yes
BROKEN_OUTPUT
boo... | {"col_m62":"Hapag-Lloyd-Express","val_g88":"type_d","prop_g92":159,"prop_v84":"type_a"} | tool_call_python_syntax | {
"type": "object",
"properties": {
"col_m62": {
"type": "string"
},
"col_l70": {
"type": "string"
},
"val_g88": {
"type": "string",
"enum": [
"type_a",
"type_b",
"type_c",
"type_d",
"type_e"
]
},
"prop_g92": {
"... | book_appointment(col_m62='Hapag-Lloyd-Express', val_g88='type_d', prop_g92=159, prop_v84='type_a') | Tool call uses Python syntax instead of JSON | {"col_m62":"Hapag-Lloyd-Express","val_g88":"type_d","prop_g92":159,"prop_v84":"type_a"} |
TASK repair_structured_output
SPEC
FIELD key_z29 TYPE null REQUIRED no
FIELD col_o94 TYPE string REQUIRED yes
FIELD dim_d89.val_y23 TYPE string VALUES single|married|divorced REQUIRED no
FIELD dim_d89.attr_e35 TYPE string VALUES active|inactive|pending REQUIRED yes
FIELD dim_d89.key_f20 TYPE boolean REQUIRED yes
FIELD... | {"key_z29":null,"col_o94":"GRCh38","dim_d89":{"val_y23":"married","attr_e35":"pending","key_f20":true,"val_d24":"PASS","key_u62":"delivered","param_e02":"basic"}} | null_required | {
"type": "object",
"properties": {
"key_z29": {
"type": "null"
},
"col_o94": {
"type": "string"
},
"dim_d89": {
"type": "object",
"properties": {
"val_y23": {
"type": "string",
"enum": [
"single",
"married",
... | {"key_z29": null, "col_o94": "GRCh38", "dim_d89": null} | Required field 'dim_d89' is null | {"key_z29":null,"col_o94":"GRCh38","dim_d89":{"val_y23":"married","attr_e35":"pending","key_f20":true,"val_d24":"PASS","key_u62":"delivered","param_e02":"basic"}} |
TASK repair_structured_output
SPEC
FIELD annotation TYPE string_email REQUIRED yes
FIELD lane TYPE integer REQUIRED no
FIELD thumbnail TYPE string REQUIRED no
FIELD user_id TYPE string REQUIRED no
FIELD section.format TYPE string VALUES new|in_transit|delivered|returned REQUIRED no
FIELD section.tags TYPE number REQUI... | {"annotation":"test@domain.org","lane":507,"thumbnail":"Luis","user_id":"pending","section":{"format":"new","tags":876.59,"gene_id":false,"umi":528,"hazmat_code":"user@example.com"}} | markdown_explanation | {
"type": "object",
"properties": {
"annotation": {
"type": "string",
"format": "email"
},
"lane": {
"type": "integer"
},
"thumbnail": {
"type": "string"
},
"user_id": {
"type": "string"
},
"section": {
"type": "object",
"properties": {
... | Sure, here's the result:
```json
{"annotation":"test@domain.org","lane":507,"thumbnail":"Luis","user_id":"pending","section":{"format":"new","tags":876.59,"gene_id":false,"umi":528,"hazmat_code":"user@example.com"}}
```
Hope this helps! | Output contains markdown and explanatory text around JSON | {"annotation":"test@domain.org","lane":507,"thumbnail":"Luis","user_id":"pending","section":{"format":"new","tags":876.59,"gene_id":false,"umi":528,"hazmat_code":"user@example.com"}} |
TASK repair_structured_output
SPEC
FIELD due_date.repository TYPE string VALUES red|blue|green|black|white REQUIRED no
FIELD due_date.berth_slot TYPE string VALUES mode_a|mode_b|mode_c|mode_d|mode_e REQUIRED no
FIELD due_date.nickname TYPE string VALUES option_a|option_b|option_c|option_d|option_e|option_f REQUIRED no... | {"due_date":{"nickname":"option_d","ward":"cat_d","frequency_hz":"open"},"address":{"label":861,"phone":"https://example.org/data","medication":"REV"},"options":{"port_code":128,"humidity_pct":"Luis","product_id":"2026-10-25T10:13:00Z","amplitude":true},"paragraph":"offline","aligned_pct":{"full_name":{"cargo_type":"cl... | missing_bracket | {
"type": "object",
"properties": {
"due_date": {
"type": "object",
"properties": {
"repository": {
"type": "string",
"enum": [
"red",
"blue",
"green",
"black",
"white"
]
},
"berth_slot"... | {"due_date":{"nickname":"option_d","ward":"cat_d","frequency_hz":"open"},"address":{"label":861,"phone":"https://example.org/data","medication":"REV"},"options":{"port_code":128,"humidity_pct":"Luis","product_id":"2026-10-25T10:13:00Z","amplitude":true},"paragraph":"offline","aligned_pct":{"full_name":{"cargo_type":"cl... | Missing closing bracket | {"due_date":{"nickname":"option_d","ward":"cat_d","frequency_hz":"open"},"address":{"label":861,"phone":"https://example.org/data","medication":"REV"},"options":{"port_code":128,"humidity_pct":"Luis","product_id":"2026-10-25T10:13:00Z","amplitude":true},"paragraph":"offline","aligned_pct":{"full_name":{"cargo_type":"cl... |
TASK repair_structured_output
SPEC
FIELD branch TYPE string VALUES free|basic|pro|enterprise REQUIRED no
FIELD items TYPE string VALUES success|error|warning|info REQUIRED no
FIELD priority TYPE integer REQUIRED yes
FIELD frequency_hz TYPE integer REQUIRED no
FIELD due_date TYPE string VALUES free|basic|pro|enterprise... | {"branch":"free","items":"success","priority":314,"frequency_hz":804,"due_date":"enterprise"} | number_with_unit | {
"type": "object",
"properties": {
"branch": {
"type": "string",
"enum": [
"free",
"basic",
"pro",
"enterprise"
]
},
"items": {
"type": "string",
"enum": [
"success",
"error",
"warning",
"info"
]
},
... | {"branch": "free", "items": "success", "priority": 314, "frequency_hz": "804%", "due_date": "enterprise"} | Field 'frequency_hz' must be number, got string with unit | {"branch":"free","items":"success","priority":314,"frequency_hz":804,"due_date":"enterprise"} |
TASK repair_structured_output
SPEC
FIELD name TYPE boolean REQUIRED no
FIELD throttle_pos TYPE boolean REQUIRED yes
FIELD address TYPE integer REQUIRED yes
FIELD website.insurance_id TYPE string REQUIRED yes
FIELD website.due_date TYPE string VALUES pending_review|confirmed|rejected|escalated REQUIRED yes
FIELD websit... | {"name":true,"throttle_pos":false,"address":104,"website":{"insurance_id":"MV-Evergreen-01","due_date":"confirmed","category":"enterprise","values":["chr1"]},"altitude":"heterozygous"} | truncated_array | {
"type": "object",
"properties": {
"name": {
"type": "boolean"
},
"throttle_pos": {
"type": "boolean"
},
"address": {
"type": "integer"
},
"website": {
"type": "object",
"properties": {
"insurance_id": {
"type": "string"
},
... | {"name":true,"throttle_pos":false,"address":104,"website":{"insurance_id":"MV-Evergreen-01","due_date":"confirmed","category":"enterprise","values":["chr1"]},"altitude":"heterozygous" | Unexpected end of JSON input — truncated object | {"name":true,"throttle_pos":false,"address":104,"website":{"insurance_id":"MV-Evergreen-01","due_date":"confirmed","category":"enterprise","values":["chr1"]},"altitude":"heterozygous"} |
TASK repair_structured_output
SPEC
FIELD longitude TYPE string VALUES level_1|level_2|level_3|level_4 REQUIRED no
FIELD collateral TYPE number REQUIRED no
FIELD role.item_id TYPE string REQUIRED no
FIELD role.tags TYPE string REQUIRED no
FIELD role.strand TYPE string REQUIRED no
FIELD role.chapter TYPE boolean REQUIRE... | {"collateral":182.44,"role":{"item_id":"chr1","tags":"Jane","chapter":false,"lane":false,"deploy_target":false,"current_draw":null},"tile":{"date":"oceanic","manifest_ref":true,"brake_pressure":680,"count":"mode_b","description":"mode_a"}} | missing_required | {
"type": "object",
"properties": {
"longitude": {
"type": "string",
"enum": [
"level_1",
"level_2",
"level_3",
"level_4"
]
},
"collateral": {
"type": "number"
},
"role": {
"type": "object",
"properties": {
"item_id": {
... | {"collateral": 182.44, "role": {"item_id": "chr1", "tags": "Jane", "chapter": false, "lane": false, "deploy_target": false, "current_draw": null}} | Required field 'tile' is missing | {"collateral":182.44,"role":{"item_id":"chr1","tags":"Jane","chapter":false,"lane":false,"deploy_target":false,"current_draw":null},"tile":{"date":"oceanic","manifest_ref":true,"brake_pressure":680,"count":"mode_b","description":"mode_a"}} |
TASK repair_structured_output
SPEC
FIELD compound TYPE string VALUES admin|editor|viewer REQUIRED no
FIELD aligned_pct TYPE integer REQUIRED yes
FIELD balance TYPE integer REQUIRED yes
FIELD cargo_type TYPE string REQUIRED yes
BROKEN_OUTPUT
{"compound": "invalid_value_837", "aligned_pct": 363, "balance": 860, "cargo_... | {"compound":"viewer","aligned_pct":363,"balance":860,"cargo_type":"2024-01-15"} | invalid_enum | {
"type": "object",
"properties": {
"compound": {
"type": "string",
"enum": [
"admin",
"editor",
"viewer"
]
},
"aligned_pct": {
"type": "integer"
},
"balance": {
"type": "integer"
},
"cargo_type": {
"type": "string"
}
},
... | {"compound": "invalid_value_837", "aligned_pct": 363, "balance": 860, "cargo_type": "2024-01-15"} | Field 'compound' has invalid enum value 'invalid_value_837', expected one of ['admin', 'editor', 'viewer'] | {"compound":"viewer","aligned_pct":363,"balance":860,"cargo_type":"2024-01-15"} |
TASK repair_structured_output
SPEC
FIELD discount TYPE string_email REQUIRED no
FIELD fleet_number TYPE null REQUIRED no
FIELD quantity TYPE string REQUIRED yes
BROKEN_OUTPUT
The quantity is user@domain.com and {"discount":"admin@test.io","fleet_number":null,"quantity":"user@domain.com"} | {"discount":"admin@test.io","fleet_number":null,"quantity":"user@domain.com"} | partial_structure | {
"type": "object",
"properties": {
"discount": {
"type": "string",
"format": "email"
},
"fleet_number": {
"type": "null"
},
"quantity": {
"type": "string"
}
},
"required": [
"quantity"
]
} | The quantity is user@domain.com and {"discount":"admin@test.io","fleet_number":null,"quantity":"user@domain.com"} | Output mixes natural language with JSON | {"discount":"admin@test.io","fleet_number":null,"quantity":"user@domain.com"} |
TASK repair_structured_output
SPEC
FIELD attr_e57 TYPE boolean REQUIRED no
FIELD field_f11 TYPE string VALUES single|married|divorced REQUIRED no
FIELD col_r66 TYPE boolean REQUIRED yes
FIELD field_f89 TYPE boolean REQUIRED yes
BROKEN_OUTPUT
check_cargo_manifest(attr_e57=True, col_r66=False, field_f89=True) | {"attr_e57":true,"col_r66":false,"field_f89":true} | tool_call_python_syntax | {
"type": "object",
"properties": {
"attr_e57": {
"type": "boolean"
},
"field_f11": {
"type": "string",
"enum": [
"single",
"married",
"divorced"
]
},
"col_r66": {
"type": "boolean"
},
"field_f89": {
"type": "boolean"
}
},... | check_cargo_manifest(attr_e57=True, col_r66=False, field_f89=True) | Tool call uses Python syntax instead of JSON | {"attr_e57":true,"col_r66":false,"field_f89":true} |
TASK repair_structured_output
SPEC
FIELD log_level TYPE null REQUIRED yes
FIELD end_date TYPE string REQUIRED no
FIELD quality_score[].yield_pct TYPE string VALUES operational|degraded|offline|maintenance REQUIRED yes
FIELD quality_score[].torque_output TYPE string VALUES email|phone|sms|push REQUIRED yes
FIELD qualit... | {"log_level":null,"end_date":"approved","quality_score":[{"yield_pct":"degraded","torque_output":"sms","company":39.06,"interest_rate":"heterozygous"},{"yield_pct":"operational","torque_output":"push","company":772.23,"interest_rate":"heterozygous"},{"yield_pct":"operational","torque_output":"email","company":803.41,"i... | null_required | {
"type": "object",
"properties": {
"log_level": {
"type": "null"
},
"end_date": {
"type": "string"
},
"quality_score": {
"type": "array",
"items": {
"type": "object",
"properties": {
"yield_pct": {
"type": "string",
"enum... | {"log_level": null, "end_date": "approved", "quality_score": [{"yield_pct": "degraded", "torque_output": "sms", "company": 39.06, "interest_rate": "heterozygous"}, {"yield_pct": "operational", "torque_output": "push", "company": 772.23, "interest_rate": "heterozygous"}, {"yield_pct": "operational", "torque_output": "em... | Required field 'log_level' is null | {"log_level":null,"end_date":"approved","quality_score":[{"yield_pct":"degraded","torque_output":"sms","company":39.06,"interest_rate":"heterozygous"},{"yield_pct":"operational","torque_output":"push","company":772.23,"interest_rate":"heterozygous"},{"yield_pct":"operational","torque_output":"email","company":803.41,"i... |
TASK repair_structured_output
SPEC
FIELD current_draw TYPE string REQUIRED yes
FIELD country TYPE string VALUES USD|EUR|GBP|BRL|JPY REQUIRED yes
FIELD thumbnail TYPE integer REQUIRED no
BROKEN_OUTPUT
{"current_draw":"chr1","country":"JPY","thumbnail":853 | {"current_draw":"chr1","country":"JPY","thumbnail":853} | truncated_array | {
"type": "object",
"properties": {
"current_draw": {
"type": "string"
},
"country": {
"type": "string",
"enum": [
"USD",
"EUR",
"GBP",
"BRL",
"JPY"
]
},
"thumbnail": {
"type": "integer"
}
},
"required": [
"current... | {"current_draw":"chr1","country":"JPY","thumbnail":853 | Unexpected end of JSON input — truncated object | {"current_draw":"chr1","country":"JPY","thumbnail":853} |
TASK repair_structured_output
SPEC
FIELD val_d28 TYPE null REQUIRED yes
FIELD col_k03 TYPE string REQUIRED yes
FIELD val_d01 TYPE string_date-time REQUIRED yes
FIELD key_z99 TYPE string VALUES active|inactive|pending REQUIRED yes
BROKEN_OUTPUT
<functioncall> validate_address
{val_d28: null, col_k03: "This is a test v... | {"val_d28":null,"col_k03":"This is a test value.","val_d01":"2021-03-02T18:31:00Z","key_z99":"inactive"} | tool_call_bad_format | {
"type": "object",
"properties": {
"val_d28": {
"type": "null"
},
"col_k03": {
"type": "string"
},
"val_d01": {
"type": "string",
"format": "date-time"
},
"key_z99": {
"type": "string",
"enum": [
"active",
"inactive",
"pending"... | <functioncall> validate_address
{val_d28: null, col_k03: "This is a test value.", val_d01: "2021-03-02T18:31:00Z", key_z99: "inactive"} | Tool call has malformed arguments — unquoted keys in function parameters | {"val_d28":null,"col_k03":"This is a test value.","val_d01":"2021-03-02T18:31:00Z","key_z99":"inactive"} |
TASK repair_structured_output
SPEC
FIELD vital_sign TYPE integer REQUIRED no
FIELD published TYPE string REQUIRED yes
FIELD consignee TYPE string REQUIRED no
FIELD terminal_id TYPE string REQUIRED yes
BROKEN_OUTPUT
{"vital_sign": "754px", "published": "Bob", "terminal_id": "Charlie"} | {"vital_sign":754,"published":"Bob","terminal_id":"Charlie"} | number_with_unit | {
"type": "object",
"properties": {
"vital_sign": {
"type": "integer"
},
"published": {
"type": "string"
},
"consignee": {
"type": "string"
},
"terminal_id": {
"type": "string"
}
},
"required": [
"published",
"terminal_id"
]
} | {"vital_sign": "754px", "published": "Bob", "terminal_id": "Charlie"} | Field 'vital_sign' must be number, got string with unit | {"vital_sign":754,"published":"Bob","terminal_id":"Charlie"} |
TASK repair_structured_output
SPEC
FIELD frequency_hz TYPE string VALUES cat_a|cat_b|cat_c REQUIRED no
FIELD allele TYPE string_date-time REQUIRED no
FIELD name TYPE string VALUES level_1|level_2|level_3|level_4 REQUIRED yes
BROKEN_OUTPUT
{"allele": "2025-04-14", "name": "level_3"} | {"allele":"2025-04-14T11:36:00Z","name":"level_3"} | date_format_error | {
"type": "object",
"properties": {
"frequency_hz": {
"type": "string",
"enum": [
"cat_a",
"cat_b",
"cat_c"
]
},
"allele": {
"type": "string",
"format": "date-time"
},
"name": {
"type": "string",
"enum": [
"level_1",
... | {"allele": "2025-04-14", "name": "level_3"} | Field 'allele' has invalid date format | {"allele":"2025-04-14T11:36:00Z","name":"level_3"} |
TASK repair_structured_output
SPEC
FIELD attr_t04 TYPE string VALUES option_a|option_b|option_c|option_d|option_e REQUIRED yes
FIELD col_x99.attr_d08 TYPE string_uri REQUIRED no
FIELD col_x99.prop_a83 TYPE boolean REQUIRED no
FIELD col_x99.attr_a91 TYPE number REQUIRED yes
FIELD col_x99.val_w31 TYPE string REQUIRED no... | {"attr_t04":"option_c","param_u37":238.82,"field_f61":{"dim_t64":26,"attr_w77":"pending","field_t78":"chrX","key_e53":{"key_z51":"approved","field_q89":null,"attr_u17":"2026-09-28T09:10:00Z","param_a87":"inland"},"param_g85":{"dim_k38":false,"val_p81":"hello","param_a16":"https://www.org/v1","attr_d98":"2025-10-01T16:3... | wrong_type | {
"type": "object",
"properties": {
"attr_t04": {
"type": "string",
"enum": [
"option_a",
"option_b",
"option_c",
"option_d",
"option_e"
]
},
"col_x99": {
"type": "object",
"properties": {
"attr_d08": {
"type": "stri... | {"attr_t04": "option_c", "param_u37": "\"238.82\"", "field_f61": {"dim_t64": 26, "attr_w77": "pending", "field_t78": "chrX", "key_e53": {"key_z51": "approved", "field_q89": null, "attr_u17": "2026-09-28T09:10:00Z", "param_a87": "inland"}, "param_g85": {"dim_k38": false, "val_p81": "hello", "param_a16": "https://www.org... | Field 'param_u37' must be number, got string | {"attr_t04":"option_c","param_u37":238.82,"field_f61":{"dim_t64":26,"attr_w77":"pending","field_t78":"chrX","key_e53":{"key_z51":"approved","field_q89":null,"attr_u17":"2026-09-28T09:10:00Z","param_a87":"inland"},"param_g85":{"dim_k38":false,"val_p81":"hello","param_a16":"https://www.org/v1","attr_d98":"2025-10-01T16:3... |
TASK repair_structured_output
SPEC
FIELD key_d33 TYPE integer REQUIRED yes
FIELD prop_c69 TYPE number REQUIRED yes
FIELD key_i32 TYPE string VALUES synonymous|missense|nonsense|frameshift REQUIRED no
FIELD prop_f46.dim_d88 TYPE string VALUES type_a|type_b|type_c|type_d REQUIRED no
FIELD prop_f46.val_e71 TYPE integer R... | {"key_d33":646,"prop_c69":573.77,"key_i32":"synonymous","prop_f46":{"dim_d88":"type_a","val_e71":833,"key_n45":"user@example.com","key_x39":"Diana","attr_q40":{"field_c18":"mode_e","dim_f13":"level_1","prop_x02":"moored","field_w05":"test@domain.org","col_u57":"https://api.com/data","attr_v38":262,"col_v16":false},"pro... | missing_bracket | {
"type": "object",
"properties": {
"key_d33": {
"type": "integer"
},
"prop_c69": {
"type": "number"
},
"key_i32": {
"type": "string",
"enum": [
"synonymous",
"missense",
"nonsense",
"frameshift"
]
},
"prop_f46": {
"type... | {"key_d33":646,"prop_c69":573.77,"key_i32":"synonymous","prop_f46":{"dim_d88":"type_a","val_e71":833,"key_n45":"user@example.com","key_x39":"Diana","attr_q40":{"field_c18":"mode_e","dim_f13":"level_1","prop_x02":"moored","field_w05":"test@domain.org","col_u57":"https://api.com/data","attr_v38":262,"col_v16":false},"pro... | Missing closing bracket | {"key_d33":646,"prop_c69":573.77,"key_i32":"synonymous","prop_f46":{"dim_d88":"type_a","val_e71":833,"key_n45":"user@example.com","key_x39":"Diana","attr_q40":{"field_c18":"mode_e","dim_f13":"level_1","prop_x02":"moored","field_w05":"test@domain.org","col_u57":"https://api.com/data","attr_v38":262,"col_v16":false},"pro... |
TASK repair_structured_output
SPEC
FIELD key_q29 TYPE string VALUES admin|editor|viewer REQUIRED no
FIELD key_i63 TYPE string REQUIRED yes
FIELD dim_g33 TYPE string VALUES USD|EUR|GBP|BRL|JPY REQUIRED no
FIELD field_b30 TYPE integer REQUIRED yes
FIELD val_o16.field_d28 TYPE string VALUES red|blue|green|black|white REQ... | {"key_q29":"viewer","key_i63":"qux","field_b30":308,"val_o16":{"param_s40":"synonymous","field_d12":"large","param_j65":592,"col_n37":973,"field_p04":"Diana"}} | partial_structure | {
"type": "object",
"properties": {
"key_q29": {
"type": "string",
"enum": [
"admin",
"editor",
"viewer"
]
},
"key_i63": {
"type": "string"
},
"dim_g33": {
"type": "string",
"enum": [
"USD",
"EUR",
"GBP",
... | Based on the data, key_i63 is qux. {"key_q29":"viewer","key_i63":"qux","field_b30":308,"val_o16":{"param_s40":"synonymous","field_d12":"large","param_j65":592,"col_n37":973,"field_p04":"Diana"}} | Output mixes natural language with JSON | {"key_q29":"viewer","key_i63":"qux","field_b30":308,"val_o16":{"param_s40":"synonymous","field_d12":"large","param_j65":592,"col_n37":973,"field_p04":"Diana"}} |
TASK repair_structured_output
SPEC
FIELD key_d41 TYPE number REQUIRED no
FIELD key_t40 TYPE boolean REQUIRED yes
FIELD field_j89 TYPE integer REQUIRED yes
BROKEN_OUTPUT
<functioncall> call_variants
{key_d41: 313.96, key_t40: false, field_j89: 763} | {"key_d41":313.96,"key_t40":false,"field_j89":763} | tool_call_bad_format | {
"type": "object",
"properties": {
"key_d41": {
"type": "number"
},
"key_t40": {
"type": "boolean"
},
"field_j89": {
"type": "integer"
}
},
"required": [
"key_t40",
"field_j89"
]
} | <functioncall> call_variants
{key_d41: 313.96, key_t40: false, field_j89: 763} | Tool call has malformed arguments — unquoted keys in function parameters | {"key_d41":313.96,"key_t40":false,"field_j89":763} |
TASK repair_structured_output
SPEC
FIELD notes.name TYPE boolean REQUIRED yes
FIELD notes.aligned_pct TYPE string REQUIRED yes
FIELD notes.allele TYPE null REQUIRED yes
FIELD notes.comments TYPE integer REQUIRED no
FIELD timezone TYPE boolean REQUIRED yes
FIELD humidity_pct TYPE number REQUIRED yes
BROKEN_OUTPUT
{"no... | {"notes":{"name":false,"aligned_pct":"Sao Paulo","allele":null},"timezone":true,"humidity_pct":867.93} | truncated_object | {
"type": "object",
"properties": {
"notes": {
"type": "object",
"properties": {
"name": {
"type": "boolean"
},
"aligned_pct": {
"type": "string"
},
"allele": {
"type": "null"
},
"comments": {
"type": "in... | {"notes":{"name":false,"aligned_pct":"Sao Paulo","allele":null},"timezone":true,"humidity_pct":867.93 | Unexpected end of JSON input — truncated object | {"notes":{"name":false,"aligned_pct":"Sao Paulo","allele":null},"timezone":true,"humidity_pct":867.93} |
TASK repair_structured_output
SPEC
FIELD manifest_ref TYPE null REQUIRED no
FIELD title TYPE boolean REQUIRED no
FIELD branch TYPE number REQUIRED yes
FIELD sensor_id TYPE string VALUES synonymous|missense|nonsense|frameshift REQUIRED no
FIELD section.throttle_pos TYPE string VALUES red|blue|green|black|white REQUIRED... | {"manifest_ref":null,"branch":339.62,"sensor_id":"missense","section":{"throttle_pos":"blue","diagnosis_code":231,"format":"GBP","fleet_number":[159]}} | markdown_fences | {
"type": "object",
"properties": {
"manifest_ref": {
"type": "null"
},
"title": {
"type": "boolean"
},
"branch": {
"type": "number"
},
"sensor_id": {
"type": "string",
"enum": [
"synonymous",
"missense",
"nonsense",
"frameshi... | ```json
{"manifest_ref":null,"branch":339.62,"sensor_id":"missense","section":{"throttle_pos":"blue","diagnosis_code":231,"format":"GBP","fleet_number":[159]}}
``` | Output contains markdown code fences | {"manifest_ref":null,"branch":339.62,"sensor_id":"missense","section":{"throttle_pos":"blue","diagnosis_code":231,"format":"GBP","fleet_number":[159]}} |
TASK repair_structured_output
SPEC
FIELD field_u46 TYPE number REQUIRED no
FIELD field_m53 TYPE string_email REQUIRED no
FIELD val_u93 TYPE integer REQUIRED no
FIELD field_t66 TYPE integer REQUIRED yes
FIELD col_g49.param_w21 TYPE string VALUES synonymous|missense|nonsense|frameshift REQUIRED no
FIELD col_g49.field_r1... | {"field_u46":597.44,"field_m53":"ops@example.com","val_u93":503,"field_t66":144,"param_n60":null,"key_x57":"PASS"} | missing_bracket | {
"type": "object",
"properties": {
"field_u46": {
"type": "number"
},
"field_m53": {
"type": "string",
"format": "email"
},
"val_u93": {
"type": "integer"
},
"field_t66": {
"type": "integer"
},
"col_g49": {
"type": "object",
"properties"... | {"field_u46":597.44,"field_m53":"ops@example.com","val_u93":503,"field_t66":144,"param_n60":null,"key_x57":"PASS"} | Missing closing bracket | {"field_u46":597.44,"field_m53":"ops@example.com","val_u93":503,"field_t66":144,"param_n60":null,"key_x57":"PASS"} |
TASK repair_structured_output
SPEC
FIELD val_m98 TYPE string REQUIRED yes
FIELD val_p38 TYPE string VALUES success|error|warning|info REQUIRED no
FIELD val_h95 TYPE boolean REQUIRED no
FIELD prop_p25 TYPE boolean REQUIRED no
BROKEN_OUTPUT
{"val_p38": "error", "val_h95": true, "prop_p25": true} | {"val_m98":"Alice","val_p38":"error","val_h95":true,"prop_p25":true} | missing_required | {
"type": "object",
"properties": {
"val_m98": {
"type": "string"
},
"val_p38": {
"type": "string",
"enum": [
"success",
"error",
"warning",
"info"
]
},
"val_h95": {
"type": "boolean"
},
"prop_p25": {
"type": "boolean"
... | {"val_p38": "error", "val_h95": true, "prop_p25": true} | Required field 'val_m98' is missing | {"val_m98":"Alice","val_p38":"error","val_h95":true,"prop_p25":true} |
TASK repair_structured_output
SPEC
FIELD key_k55.col_i91 TYPE string VALUES option_a|option_b|option_c REQUIRED no
FIELD key_k55.prop_k97 TYPE number REQUIRED no
FIELD key_k55.val_q95 TYPE string_email REQUIRED no
FIELD key_k55.col_i25 TYPE string REQUIRED yes
FIELD key_b51 TYPE string REQUIRED no
FIELD param_w76 TYPE... | {"key_k55":{"col_i91":"option_a","prop_k97":734.73,"col_i25":"foo"},"key_b51":"2023-12-25","param_w76":727,"param_j26":"Bob","col_e44":676,"prop_n77":false} | boolean_as_string | {
"type": "object",
"properties": {
"key_k55": {
"type": "object",
"properties": {
"col_i91": {
"type": "string",
"enum": [
"option_a",
"option_b",
"option_c"
]
},
"prop_k97": {
"type": "number"
... | {"key_k55": {"col_i91": "option_a", "prop_k97": 734.73, "col_i25": "foo"}, "key_b51": "2023-12-25", "param_w76": 727, "param_j26": "Bob", "col_e44": 676, "prop_n77": "false"} | Field 'prop_n77' must be boolean, got string | {"key_k55":{"col_i91":"option_a","prop_k97":734.73,"col_i25":"foo"},"key_b51":"2023-12-25","param_w76":727,"param_j26":"Bob","col_e44":676,"prop_n77":false} |
TASK repair_structured_output
SPEC
FIELD col_q49 TYPE string_email REQUIRED no
FIELD param_u26 TYPE boolean REQUIRED no
FIELD prop_w82 TYPE number REQUIRED no
FIELD dim_t41 TYPE number REQUIRED yes
FIELD val_l50 TYPE integer REQUIRED no
FIELD dim_h33 TYPE string VALUES type_a|type_b|type_c REQUIRED no
FIELD field_t87 ... | {"param_u26":true,"dim_t41":188.1,"val_l50":300,"dim_h33":"type_a","field_h82":{"attr_f18":"cat_b","col_m08":851}} | agent_chain | {
"type": "object",
"properties": {
"col_q49": {
"type": "string",
"format": "email"
},
"param_u26": {
"type": "boolean"
},
"prop_w82": {
"type": "number"
},
"dim_t41": {
"type": "number"
},
"val_l50": {
"type": "integer"
},
"dim_h33": ... | I need to look up the information first.
Action: calculate_price
Result: {"dim_t41": 188.1, "val_l50": 300, "dim_h33": "type_a", "field_h82": {"attr_f18": "cat_b", "col_m08": 851}}
Processing the request now.
Action: calibrate_instrument
Result: | Agent multi-step chain with truncated tool output | {"param_u26":true,"dim_t41":188.1,"val_l50":300,"dim_h33":"type_a","field_h82":{"attr_f18":"cat_b","col_m08":851}} |
TASK repair_structured_output
SPEC
FIELD dim_m57 TYPE string VALUES level_1|level_2|level_3 REQUIRED no
FIELD param_l91 TYPE string VALUES email|phone|sms|push REQUIRED no
FIELD col_m55 TYPE string VALUES option_a|option_b|option_c|option_d REQUIRED no
FIELD param_z72 TYPE string VALUES open|in_progress|resolved|close... | {"param_l91":"push","col_m55":"option_a","col_i21":"user@domain.com","prop_n01":"level_4","dim_c47":"type_c"} | tool_call_text_mix | {
"type": "object",
"properties": {
"dim_m57": {
"type": "string",
"enum": [
"level_1",
"level_2",
"level_3"
]
},
"param_l91": {
"type": "string",
"enum": [
"email",
"phone",
"sms",
"push"
]
},
"col_m55":... | Let me check the system.
<tool_call name="delete_item">
{"param_l91":"push","col_m55":"option_a","col_i21":"user@domain.com","prop_n01":"level_4","dim_c47":"type_c"}
</tool_call.
The result is ready. | Agent response mixes reasoning text with tool call | {"param_l91":"push","col_m55":"option_a","col_i21":"user@domain.com","prop_n01":"level_4","dim_c47":"type_c"} |
TASK repair_structured_output
SPEC
FIELD dim_q15 TYPE number REQUIRED no
FIELD dim_i91 TYPE string REQUIRED yes
FIELD col_p16 TYPE integer REQUIRED yes
FIELD key_n70 TYPE string VALUES low|medium|high|critical REQUIRED no
FIELD col_n78 TYPE string VALUES operational|degraded|offline|maintenance REQUIRED yes
FIELD key_... | {"dim_i91":"quux","col_p16":794,"key_n70":"high","col_n78":"maintenance","attr_a38":"cancelled","key_e85":"https://api.example.com/v1"} | markdown_fences | {
"type": "object",
"properties": {
"dim_q15": {
"type": "number"
},
"dim_i91": {
"type": "string"
},
"col_p16": {
"type": "integer"
},
"key_n70": {
"type": "string",
"enum": [
"low",
"medium",
"high",
"critical"
]
}... | ```json
{"dim_i91":"quux","col_p16":794,"key_n70":"high","col_n78":"maintenance","attr_a38":"cancelled","key_e85":"https://api.example.com/v1"}
``` | Output contains markdown code fences | {"dim_i91":"quux","col_p16":794,"key_n70":"high","col_n78":"maintenance","attr_a38":"cancelled","key_e85":"https://api.example.com/v1"} |
TASK repair_structured_output
SPEC
FIELD status TYPE string_date-time REQUIRED yes
FIELD updated_at TYPE string_uri REQUIRED no
FIELD features TYPE null REQUIRED no
FIELD score TYPE boolean REQUIRED yes
FIELD last_name TYPE string REQUIRED yes
BROKEN_OUTPUT
{"status":"2020-07-18T09:22:00Z","updated_at":"https://api.c... | {"status":"2020-07-18T09:22:00Z","updated_at":"https://api.com/data","features":null,"score":true,"last_name":"Santos"} | truncated_array | {
"type": "object",
"properties": {
"status": {
"type": "string",
"format": "date-time"
},
"updated_at": {
"type": "string",
"format": "uri"
},
"features": {
"type": "null"
},
"score": {
"type": "boolean"
},
"last_name": {
"type": "string... | {"status":"2020-07-18T09:22:00Z","updated_at":"https://api.com/data","features":null,"score":true,"last_name":"Santos" | Unexpected end of JSON input — truncated object | {"status":"2020-07-18T09:22:00Z","updated_at":"https://api.com/data","features":null,"score":true,"last_name":"Santos"} |
TASK repair_structured_output
SPEC
FIELD annotation TYPE integer REQUIRED yes
FIELD options TYPE string VALUES mode_a|mode_b|mode_c|mode_d|mode_e|mode_f REQUIRED no
FIELD state TYPE string VALUES berthed|anchored|underway|moored REQUIRED no
FIELD last_name TYPE string REQUIRED no
FIELD strand[].consignee TYPE number R... | {"annotation":373,"state":"berthed","last_name":"London","strand":[{"consignee":255.5,"last_name":"Bob"},{"bill_of_lading":"John","last_name":"MV-Evergreen-01"}],"length":[578,267]} | number_with_unit | {
"type": "object",
"properties": {
"annotation": {
"type": "integer"
},
"options": {
"type": "string",
"enum": [
"mode_a",
"mode_b",
"mode_c",
"mode_d",
"mode_e",
"mode_f"
]
},
"state": {
"type": "string",
"enum... | {"annotation": "373sec", "state": "berthed", "last_name": "London", "strand": [{"consignee": 255.5, "last_name": "Bob"}, {"bill_of_lading": "John", "last_name": "MV-Evergreen-01"}], "length": [578, 267]} | Field 'annotation' must be number, got string with unit | {"annotation":373,"state":"berthed","last_name":"London","strand":[{"consignee":255.5,"last_name":"Bob"},{"bill_of_lading":"John","last_name":"MV-Evergreen-01"}],"length":[578,267]} |
TASK repair_structured_output
SPEC
FIELD col_p29 TYPE boolean REQUIRED no
FIELD val_e79 TYPE number REQUIRED yes
FIELD param_s16 TYPE string VALUES homozygous|heterozygous|hemizygous REQUIRED no
FIELD prop_o98 TYPE string VALUES free|basic|pro|enterprise REQUIRED no
FIELD field_b47 TYPE string VALUES email|phone|sms|p... | {"col_p29":true,"val_e79":996.54,"param_s16":"heterozygous","field_b47":"phone","attr_g97":"Tokyo"} | tool_call_wrong_param | {
"type": "object",
"properties": {
"col_p29": {
"type": "boolean"
},
"val_e79": {
"type": "number"
},
"param_s16": {
"type": "string",
"enum": [
"homozygous",
"heterozygous",
"hemizygous"
]
},
"prop_o98": {
"type": "string",
... | Tool: transfer_call
Params: {"col_p29": true, "val_e79": 996.54, "param_s16": "heterozygous", "field_b47": "phone", "attr_g97_value": "Tokyo"} | Agent used wrong parameter name 'attr_g97_value' instead of 'attr_g97' | {"col_p29":true,"val_e79":996.54,"param_s16":"heterozygous","field_b47":"phone","attr_g97":"Tokyo"} |
TASK repair_structured_output
SPEC
FIELD param_w81 TYPE string VALUES coastal|oceanic|inland|arctic REQUIRED no
FIELD field_h43 TYPE string REQUIRED yes
FIELD field_o14 TYPE number REQUIRED yes
FIELD prop_b54[] TYPE string VALUES coastal|oceanic|inland|arctic REQUIRED yes
BROKEN_OUTPUT
{"field_h43":"Luis","field_o14"... | {"field_h43":"Luis","field_o14":594.95,"prop_b54":["inland","inland","arctic","arctic"]} | missing_bracket | {
"type": "object",
"properties": {
"param_w81": {
"type": "string",
"enum": [
"coastal",
"oceanic",
"inland",
"arctic"
]
},
"field_h43": {
"type": "string"
},
"field_o14": {
"type": "number"
},
"prop_b54": {
"type": "ar... | {"field_h43":"Luis","field_o14":594.95,"prop_b54":"inland","inland","arctic","arctic"]} | Missing closing bracket | {"field_h43":"Luis","field_o14":594.95,"prop_b54":["inland","inland","arctic","arctic"]} |
TASK repair_structured_output
SPEC
FIELD val_f50 TYPE string REQUIRED yes
FIELD val_n47 TYPE null REQUIRED yes
FIELD param_w74[].val_w18 TYPE string VALUES cat_a|cat_b REQUIRED no
FIELD param_w74[].param_d60 TYPE integer REQUIRED yes
FIELD param_w74[].dim_m21 TYPE integer REQUIRED no
FIELD param_w74[].field_s69 TYPE i... | {"val_f50":"pending","val_n47":null,"param_w74":[{"val_w18":"cat_b","param_d60":146,"dim_m21":454,"field_s69":295,"attr_n21":"offline","col_r47":"open","attr_x02":679.78,"field_m31":"viewer"}]} | extra_text_before | {
"type": "object",
"properties": {
"val_f50": {
"type": "string"
},
"val_n47": {
"type": "null"
},
"param_w74": {
"type": "array",
"items": {
"type": "object",
"properties": {
"val_w18": {
"type": "string",
"enum": [
... | Sensor output follows:
{"val_f50":"pending","val_n47":null,"param_w74":[{"val_w18":"cat_b","param_d60":146,"dim_m21":454,"field_s69":295,"attr_n21":"offline","col_r47":"open","attr_x02":679.78,"field_m31":"viewer"}]} | Output contains non-JSON text before the object | {"val_f50":"pending","val_n47":null,"param_w74":[{"val_w18":"cat_b","param_d60":146,"dim_m21":454,"field_s69":295,"attr_n21":"offline","col_r47":"open","attr_x02":679.78,"field_m31":"viewer"}]} |
TASK repair_structured_output
SPEC
FIELD val_a78.val_f71 TYPE integer REQUIRED yes
FIELD val_a78.prop_x42 TYPE number REQUIRED no
FIELD val_a78.val_p06[].val_b04 TYPE integer REQUIRED yes
FIELD val_a78.val_p06[].key_f41 TYPE string VALUES cat_a|cat_b|cat_c|cat_d|cat_e|cat_f REQUIRED no
FIELD val_a78.val_p06[].val_h45 ... | {"val_a78":{"val_f71":309,"val_p06":[{"val_b04":114,"key_f41":"cat_f","val_h45":false,"col_j66":761,"prop_t71":719,"field_c20":null},{"val_b04":140,"val_h45":false,"col_j66":739,"field_c20":null}]},"param_h66":137,"val_t29":"married"} | markdown_fences | {
"type": "object",
"properties": {
"val_a78": {
"type": "object",
"properties": {
"val_f71": {
"type": "integer"
},
"prop_x42": {
"type": "number"
},
"val_p06": {
"type": "array",
"items": {
"type": "object"... | ```json
{"val_a78":{"val_f71":309,"val_p06":[{"val_b04":114,"key_f41":"cat_f","val_h45":false,"col_j66":761,"prop_t71":719,"field_c20":null},{"val_b04":140,"val_h45":false,"col_j66":739,"field_c20":null}]},"param_h66":137,"val_t29":"married"}
``` | Output contains markdown code fences | {"val_a78":{"val_f71":309,"val_p06":[{"val_b04":114,"key_f41":"cat_f","val_h45":false,"col_j66":761,"prop_t71":719,"field_c20":null},{"val_b04":140,"val_h45":false,"col_j66":739,"field_c20":null}]},"param_h66":137,"val_t29":"married"} |
TASK repair_structured_output
SPEC
FIELD key_t00 TYPE boolean REQUIRED yes
FIELD key_q19 TYPE string REQUIRED no
FIELD prop_n51 TYPE integer REQUIRED no
FIELD val_m90[] TYPE number REQUIRED no
BROKEN_OUTPUT
{key_t00:false,key_q19:"qux",prop_n51:262,val_m90:[497.98]} | {"key_t00":false,"key_q19":"qux","prop_n51":262,"val_m90":[497.98]} | unquoted_keys | {
"type": "object",
"properties": {
"key_t00": {
"type": "boolean"
},
"key_q19": {
"type": "string"
},
"prop_n51": {
"type": "integer"
},
"val_m90": {
"type": "array",
"items": {
"type": "number"
}
}
},
"required": [
"key_t00"
]
} | {key_t00:false,key_q19:"qux",prop_n51:262,val_m90:[497.98]} | Expecting property name enclosed in double quotes | {"key_t00":false,"key_q19":"qux","prop_n51":262,"val_m90":[497.98]} |
TASK repair_structured_output
SPEC
FIELD nickname TYPE string REQUIRED yes
FIELD sensor_id TYPE boolean REQUIRED no
FIELD total TYPE string VALUES admin|editor|viewer REQUIRED yes
FIELD shift_code TYPE string REQUIRED yes
FIELD width TYPE integer REQUIRED no
FIELD username.score TYPE boolean REQUIRED yes
FIELD usernam... | {"nickname":"foo","sensor_id":true,"total":"admin","shift_code":"Maria","width":559,"username":{"score":false,"freight_class":359,"terminal_id":204.18,"insurance_id":599,"bill_of_lading":"cancelled","ward":{"name":"admin","full_name":"admin@example.com","diagnosis_code":920,"paragraph":"unstable"},"payment_status":fals... | truncated_object | {
"type": "object",
"properties": {
"nickname": {
"type": "string"
},
"sensor_id": {
"type": "boolean"
},
"total": {
"type": "string",
"enum": [
"admin",
"editor",
"viewer"
]
},
"shift_code": {
"type": "string"
},
"width... | {"nickname":"foo","sensor_id":true,"total":"admin","shift_code":"Maria","width":559,"username":{"score":false,"freight_class":359,"terminal_id":204.18,"insurance_id":599,"bill_of_lading":"cancelled","ward":{"name":"admin","full_name":"admin@example.com","diagnosis_code":920,"paragraph":"unstable"},"payment_status":fals... | Unexpected end of JSON input — truncated object | {"nickname":"foo","sensor_id":true,"total":"admin","shift_code":"Maria","width":559,"username":{"score":false,"freight_class":359,"terminal_id":204.18,"insurance_id":599,"bill_of_lading":"cancelled","ward":{"name":"admin","full_name":"admin@example.com","diagnosis_code":920,"paragraph":"unstable"},"payment_status":fals... |
TASK repair_structured_output
SPEC
FIELD dosage TYPE string REQUIRED no
FIELD tax TYPE string REQUIRED yes
FIELD level TYPE string REQUIRED no
FIELD frequency_hz TYPE string_date-time REQUIRED no
FIELD shift_code TYPE string VALUES red|blue|green|black|white REQUIRED yes
FIELD department.width TYPE integer REQUIRED ye... | {"tax":"world","level":"Silva","shift_code":"blue","department":{"width":525,"name":{"start_date":524,"lab_result":360,"priority":"inactive","footnote":"Berlin","fleet_number":759.59}},"due_date":"demo"} | unquoted_keys | {
"type": "object",
"properties": {
"dosage": {
"type": "string"
},
"tax": {
"type": "string"
},
"level": {
"type": "string"
},
"frequency_hz": {
"type": "string",
"format": "date-time"
},
"shift_code": {
"type": "string",
"enum": [
... | {tax:"world",level:"Silva",shift_code:"blue",department:{width:525,name:{start_date:524,lab_result:360,priority:"inactive",footnote:"Berlin",fleet_number:759.59}},due_date:"demo"} | Expecting property name enclosed in double quotes | {"tax":"world","level":"Silva","shift_code":"blue","department":{"width":525,"name":{"start_date":524,"lab_result":360,"priority":"inactive","footnote":"Berlin","fleet_number":759.59}},"due_date":"demo"} |
TASK repair_structured_output
SPEC
FIELD dim_o06 TYPE string REQUIRED yes
FIELD val_r13 TYPE string REQUIRED no
FIELD prop_k78 TYPE integer REQUIRED yes
FIELD attr_t92 TYPE string REQUIRED yes
FIELD val_x42 TYPE null REQUIRED yes
BROKEN_OUTPUT
Sure, here's the result:
```json
{"dim_o06":"pending","val_r13":"MV-Evergr... | {"dim_o06":"pending","val_r13":"MV-Evergreen-01","prop_k78":152,"attr_t92":"world","val_x42":null} | markdown_explanation | {
"type": "object",
"properties": {
"dim_o06": {
"type": "string"
},
"val_r13": {
"type": "string"
},
"prop_k78": {
"type": "integer"
},
"attr_t92": {
"type": "string"
},
"val_x42": {
"type": "null"
}
},
"required": [
"dim_o06",
"attr... | Sure, here's the result:
```json
{"dim_o06":"pending","val_r13":"MV-Evergreen-01","prop_k78":152,"attr_t92":"world","val_x42":null}
```
I've ensured all required fields are present. | Output contains markdown and explanatory text around JSON | {"dim_o06":"pending","val_r13":"MV-Evergreen-01","prop_k78":152,"attr_t92":"world","val_x42":null} |
TASK repair_structured_output
SPEC
FIELD dim_i54 TYPE string VALUES success|error|warning|info REQUIRED no
FIELD key_n03 TYPE string VALUES open|in_progress|resolved|closed REQUIRED no
FIELD param_u86 TYPE string VALUES new|in_transit|delivered|returned REQUIRED yes
FIELD col_l92 TYPE integer REQUIRED no
FIELD dim_t94... | {"dim_i54":"success","param_u86":"returned","dim_t94":"type_a","param_u29":"2021-02-22T18:50:00Z","col_j54":"Paris","attr_o71":"https://example.com"} | extra_text_before | {
"type": "object",
"properties": {
"dim_i54": {
"type": "string",
"enum": [
"success",
"error",
"warning",
"info"
]
},
"key_n03": {
"type": "string",
"enum": [
"open",
"in_progress",
"resolved",
"closed"
... | Here's the structured output:
{"dim_i54":"success","param_u86":"returned","dim_t94":"type_a","param_u29":"2021-02-22T18:50:00Z","col_j54":"Paris","attr_o71":"https://example.com"} | Output contains non-JSON text before the object | {"dim_i54":"success","param_u86":"returned","dim_t94":"type_a","param_u29":"2021-02-22T18:50:00Z","col_j54":"Paris","attr_o71":"https://example.com"} |
TASK repair_structured_output
SPEC
FIELD phenotype TYPE string VALUES single|married|divorced REQUIRED no
FIELD step TYPE integer REQUIRED yes
FIELD index TYPE boolean REQUIRED no
FIELD published TYPE string REQUIRED no
FIELD conductivity TYPE string REQUIRED no
FIELD size TYPE boolean REQUIRED no
FIELD deploy_target ... | {"phenotype":"divorced","step":489,"conductivity":"New York"} | tool_call_python_syntax | {
"type": "object",
"properties": {
"phenotype": {
"type": "string",
"enum": [
"single",
"married",
"divorced"
]
},
"step": {
"type": "integer"
},
"index": {
"type": "boolean"
},
"published": {
"type": "string"
},
"condu... | update_preferences(phenotype='divorced', step=489, conductivity='New York') | Tool call uses Python syntax instead of JSON | {"phenotype":"divorced","step":489,"conductivity":"New York"} |
TASK repair_structured_output
SPEC
FIELD dim_a47 TYPE string_email REQUIRED yes
FIELD field_w23 TYPE string REQUIRED yes
FIELD dim_y12[].param_y39 TYPE number REQUIRED yes
FIELD dim_y12[].dim_t51 TYPE string_uri REQUIRED yes
FIELD dim_y12[].col_u24 TYPE string VALUES reliable|unstable|intermittent REQUIRED no
FIELD di... | {"dim_a47":"ops@domain.org","field_w23":"London","dim_y12":[{"param_y39":136.14,"dim_t51":"https://example.org/api","key_e40":502.04,"key_l89":"cat_b"},{"param_y39":933.37,"dim_t51":"https://example.com/data","col_u24":"intermittent","key_e40":880.38,"key_l89":"cat_c"},{"param_y39":402.19,"dim_t51":"https://api.com/dat... | agent_chain | {
"type": "object",
"properties": {
"dim_a47": {
"type": "string",
"format": "email"
},
"field_w23": {
"type": "string"
},
"dim_y12": {
"type": "array",
"items": {
"type": "object",
"properties": {
"param_y39": {
"type": "number... | I need to look up the information first.
Action: read_sensor_array
Result: {"field_w23": "London", "dim_y12": [{"param_y39": 136.14, "dim_t51": "https://example.org/api", "key_e40": 502.04, "key_l89": "cat_b"}, {"param_y39": 933.37, "dim_t51": "https://example.com/data", "col_u24": "intermittent", "key_e40": 880.38, "k... | Agent multi-step chain with truncated tool output | {"dim_a47":"ops@domain.org","field_w23":"London","dim_y12":[{"param_y39":136.14,"dim_t51":"https://example.org/api","key_e40":502.04,"key_l89":"cat_b"},{"param_y39":933.37,"dim_t51":"https://example.com/data","col_u24":"intermittent","key_e40":880.38,"key_l89":"cat_c"},{"param_y39":402.19,"dim_t51":"https://api.com/dat... |
TASK repair_structured_output
SPEC
FIELD key_l76 TYPE integer REQUIRED no
FIELD prop_e95 TYPE string VALUES level_1|level_2 REQUIRED yes
FIELD param_m62 TYPE number REQUIRED yes
FIELD param_l67 TYPE string_date-time REQUIRED no
FIELD val_z86 TYPE integer REQUIRED yes
FIELD prop_p47 TYPE integer REQUIRED no
FIELD field... | {"key_l76":527,"prop_e95":"level_2","param_m62":390.32,"param_l67":"2021-08-09T13:03:00Z","val_z86":11,"prop_p47":302,"field_h03":"Diana"} | single_quotes | {
"type": "object",
"properties": {
"key_l76": {
"type": "integer"
},
"prop_e95": {
"type": "string",
"enum": [
"level_1",
"level_2"
]
},
"param_m62": {
"type": "number"
},
"param_l67": {
"type": "string",
"format": "date-time"
... | {'key_l76':527,'prop_e95':'level_2','param_m62':390.32,'param_l67':'2021-08-09T13:03:00Z','val_z86':11,'prop_p47':302,'field_h03':'Diana'} | Expecting property name enclosed in double quotes | {"key_l76":527,"prop_e95":"level_2","param_m62":390.32,"param_l67":"2021-08-09T13:03:00Z","val_z86":11,"prop_p47":302,"field_h03":"Diana"} |
TASK repair_structured_output
SPEC
FIELD verified TYPE number REQUIRED yes
FIELD quality_score TYPE integer REQUIRED yes
FIELD frequency_hz TYPE boolean REQUIRED yes
FIELD email TYPE string REQUIRED no
FIELD format TYPE string REQUIRED no
FIELD shift_code TYPE number REQUIRED yes
FIELD quantity TYPE string VALUES draf... | {"verified":228.82,"quality_score":295,"frequency_hz":false,"email":"London","shift_code":328.67,"quantity":"published"} | partial_structure | {
"type": "object",
"properties": {
"verified": {
"type": "number"
},
"quality_score": {
"type": "integer"
},
"frequency_hz": {
"type": "boolean"
},
"email": {
"type": "string"
},
"format": {
"type": "string"
},
"shift_code": {
"type": ... | Result: verified=228.82, {"verified":228.82,"quality_score":295,"frequency_hz":false,"email":"London","shift_code":328.67,"quantity":"published"} | Output mixes natural language with JSON | {"verified":228.82,"quality_score":295,"frequency_hz":false,"email":"London","shift_code":328.67,"quantity":"published"} |
TASK repair_structured_output
SPEC
FIELD values TYPE string VALUES red|blue|green|black|white REQUIRED no
FIELD zip_code TYPE string VALUES reliable|unstable|intermittent REQUIRED no
FIELD length TYPE string VALUES success|error|warning|info REQUIRED no
FIELD freight_class TYPE string REQUIRED no
FIELD medication TYPE... | {"zip_code":"reliable","length":"success","medication":"pending","order_id":29.25,"email":null} | trailing_comma | {
"type": "object",
"properties": {
"values": {
"type": "string",
"enum": [
"red",
"blue",
"green",
"black",
"white"
]
},
"zip_code": {
"type": "string",
"enum": [
"reliable",
"unstable",
"intermittent"
]... | {"zip_code":"reliable","length":"success","medication":"pending","order_id":29.25,"email":null,} | Unexpected trailing comma | {"zip_code":"reliable","length":"success","medication":"pending","order_id":29.25,"email":null} |
TASK repair_structured_output
SPEC
FIELD bearing.user_id TYPE string REQUIRED no
FIELD bearing.humidity_pct TYPE string REQUIRED no
FIELD bearing.notes TYPE string REQUIRED yes
FIELD bearing.email TYPE string REQUIRED no
FIELD bearing.shipper_ref TYPE integer REQUIRED no
FIELD isotope TYPE string REQUIRED no
FIELD lab... | {"bearing":{"user_id":"example","humidity_pct":"quux","notes":"FWD","shipper_ref":750},"isotope":"Smith","status_code":"qux","vital_sign":695.66,"user_id":"type_c"} | partial_structure | {
"type": "object",
"properties": {
"bearing": {
"type": "object",
"properties": {
"user_id": {
"type": "string"
},
"humidity_pct": {
"type": "string"
},
"notes": {
"type": "string"
},
"email": {
"type": ... | Based on the data, isotope is Smith. {"bearing":{"user_id":"example","humidity_pct":"quux","notes":"FWD","shipper_ref":750},"isotope":"Smith","status_code":"qux","vital_sign":695.66,"user_id":"type_c"} | Output mixes natural language with JSON | {"bearing":{"user_id":"example","humidity_pct":"quux","notes":"FWD","shipper_ref":750},"isotope":"Smith","status_code":"qux","vital_sign":695.66,"user_id":"type_c"} |
TASK repair_structured_output
SPEC
FIELD col_t10 TYPE integer REQUIRED yes
FIELD param_z89 TYPE string VALUES admin|editor|viewer REQUIRED no
FIELD param_w37.param_s51 TYPE string_email REQUIRED no
FIELD param_w37.param_a94 TYPE number REQUIRED yes
FIELD param_w37.key_x26 TYPE string REQUIRED no
FIELD param_w37.key_y8... | {"col_t10":450,"param_z89":"viewer","param_w37":{"param_s51":"ops@domain.org","param_a94":892.03,"key_x26":"2023-12-25","key_y82":475,"param_n55":{"prop_l48":"GRCh38","param_x07":"basic","prop_e76":"Berlin","param_s90":null,"prop_o77":false},"field_a08":417,"dim_u64":593.25},"val_o08":"oceanic","val_i44":"Smith"} | tool_call_wrong_param | {
"type": "object",
"properties": {
"col_t10": {
"type": "integer"
},
"param_z89": {
"type": "string",
"enum": [
"admin",
"editor",
"viewer"
]
},
"param_w37": {
"type": "object",
"properties": {
"param_s51": {
"type": ... | Tool: track_vessel
Params: {"col_t10": 450, "param_z89": "viewer", "val_o08": "oceanic", "val_i44": "Smith", "param_w37_value": {"param_s51": "ops@domain.org", "param_a94": 892.03, "key_x26": "2023-12-25", "key_y82": 475, "param_n55": {"prop_l48": "GRCh38", "param_x07": "basic", "prop_e76": "Berlin", "param_s90": null,... | Agent used wrong parameter name 'param_w37_value' instead of 'param_w37' | {"col_t10":450,"param_z89":"viewer","param_w37":{"param_s51":"ops@domain.org","param_a94":892.03,"key_x26":"2023-12-25","key_y82":475,"param_n55":{"prop_l48":"GRCh38","param_x07":"basic","prop_e76":"Berlin","param_s90":null,"prop_o77":false},"field_a08":417,"dim_u64":593.25},"val_o08":"oceanic","val_i44":"Smith"} |
TASK repair_structured_output
SPEC
FIELD attr_r73 TYPE integer REQUIRED yes
FIELD dim_e38 TYPE string VALUES berthed|anchored|underway|moored REQUIRED no
FIELD field_l71.col_v68 TYPE string VALUES red|blue|green|black|white REQUIRED no
FIELD field_l71.attr_p34.prop_g04 TYPE string VALUES synonymous|missense|nonsense|f... | {"attr_r73":985,"field_l71":{"attr_p34":{"prop_g04":"frameshift","val_e17":"Paris","key_n45":"heterozygous","field_j46":"completed","attr_i04":"underway","val_d63":"ops@test.io"},"attr_q90":"https://example.com/data","val_f68":false,"col_a68":371.65,"key_q99":"RTG-04"}} | missing_bracket | {
"type": "object",
"properties": {
"attr_r73": {
"type": "integer"
},
"dim_e38": {
"type": "string",
"enum": [
"berthed",
"anchored",
"underway",
"moored"
]
},
"field_l71": {
"type": "object",
"properties": {
"col_v68":... | {"attr_r73":985,"field_l71":{"attr_p34":{"prop_g04":"frameshift","val_e17":"Paris","key_n45":"heterozygous","field_j46":"completed","attr_i04":"underway","val_d63":"ops@test.io"},"attr_q90":"https://example.com/data","val_f68":false,"col_a68":371.65,"key_q99":"RTG-04"}} | Missing closing bracket | {"attr_r73":985,"field_l71":{"attr_p34":{"prop_g04":"frameshift","val_e17":"Paris","key_n45":"heterozygous","field_j46":"completed","attr_i04":"underway","val_d63":"ops@test.io"},"attr_q90":"https://example.com/data","val_f68":false,"col_a68":371.65,"key_q99":"RTG-04"}} |
TASK repair_structured_output
SPEC
FIELD consignee TYPE string VALUES admin|editor|viewer REQUIRED yes
FIELD product_id TYPE number REQUIRED no
FIELD dissolved_oxygen TYPE string_date-time REQUIRED no
FIELD barcode TYPE string REQUIRED yes
FIELD account_id TYPE string REQUIRED no
FIELD published TYPE string REQUIRED n... | {"consignee":"viewer","product_id":505.19,"barcode":"MV-Evergreen-01","published":"Jane"} | trailing_comma | {
"type": "object",
"properties": {
"consignee": {
"type": "string",
"enum": [
"admin",
"editor",
"viewer"
]
},
"product_id": {
"type": "number"
},
"dissolved_oxygen": {
"type": "string",
"format": "date-time"
},
"barcode": {
... | {"consignee":"viewer","product_id":505.19,"barcode":"MV-Evergreen-01","published":"Jane",} | Unexpected trailing comma | {"consignee":"viewer","product_id":505.19,"barcode":"MV-Evergreen-01","published":"Jane"} |
TASK repair_structured_output
SPEC
FIELD dim_c33 TYPE string_email REQUIRED no
FIELD attr_v58 TYPE string VALUES success|error|warning|info REQUIRED yes
FIELD param_w96.prop_a58 TYPE string VALUES draft|published|archived REQUIRED no
FIELD param_w96.param_r76.param_z61 TYPE null REQUIRED no
FIELD param_w96.param_r76.p... | {"dim_c33":"user@domain.org","attr_v58":"success","param_w96":{"attr_j04":{"field_z32":"basic","dim_t57":false,"prop_o75":442,"field_r94":734.54,"key_e07":950},"col_m10":"John"},"prop_i81":"2020-11-08T03:04:00Z","prop_a04":"success"} | thought_process | {
"type": "object",
"properties": {
"dim_c33": {
"type": "string",
"format": "email"
},
"attr_v58": {
"type": "string",
"enum": [
"success",
"error",
"warning",
"info"
]
},
"param_w96": {
"type": "object",
"properties": {
... | Analyzing the schema to generate valid JSON...
Checking required fields and types...
{"dim_c33":"user@domain.org","attr_v58":"success","param_w96":{"attr_j04":{"field_z32":"basic","dim_t57":false,"prop_o75":442,"field_r94":734.54,"key_e07":950},"col_m10":"John"},"prop_i81":"2020-11-08T03:04:00Z","prop_a04":"success"} | Output contains chain-of-thought reasoning before JSON | {"dim_c33":"user@domain.org","attr_v58":"success","param_w96":{"attr_j04":{"field_z32":"basic","dim_t57":false,"prop_o75":442,"field_r94":734.54,"key_e07":950},"col_m10":"John"},"prop_i81":"2020-11-08T03:04:00Z","prop_a04":"success"} |
TASK repair_structured_output
SPEC
FIELD col_v81.col_i42 TYPE string REQUIRED no
FIELD col_v81.prop_u59 TYPE integer REQUIRED no
FIELD col_v81.col_i84 TYPE string VALUES admin|editor|viewer REQUIRED yes
FIELD col_v81.field_w92 TYPE null REQUIRED no
FIELD col_v81.dim_a29.prop_m39 TYPE string REQUIRED no
FIELD col_v81.d... | {"col_v81":{"prop_u59":738,"col_i84":"admin","field_w92":null,"dim_a29":{"prop_m39":"QC-07","param_k96":"xl","key_y86":"Smith","col_v81":"pending","val_b34":651.41,"val_k45":"chr1"}},"param_i33":715,"key_u86":696,"attr_r35":"draft","field_l88":false,"field_o68":975} | truncated_array | {
"type": "object",
"properties": {
"col_v81": {
"type": "object",
"properties": {
"col_i42": {
"type": "string"
},
"prop_u59": {
"type": "integer"
},
"col_i84": {
"type": "string",
"enum": [
"admin",
... | {"col_v81":{"prop_u59":738,"col_i84":"admin","field_w92":null,"dim_a29":{"prop_m39":"QC-07","param_k96":"xl","key_y86":"Smith","col_v81":"pending","val_b34":651.41,"val_k45":"chr1"}},"param_i33":715,"key_u86":696,"attr_r35":"draft","field_l88":false,"field_o68":975 | Unexpected end of JSON input — truncated object | {"col_v81":{"prop_u59":738,"col_i84":"admin","field_w92":null,"dim_a29":{"prop_m39":"QC-07","param_k96":"xl","key_y86":"Smith","col_v81":"pending","val_b34":651.41,"val_k45":"chr1"}},"param_i33":715,"key_u86":696,"attr_r35":"draft","field_l88":false,"field_o68":975} |
TASK repair_structured_output
SPEC
FIELD payment_status TYPE string REQUIRED no
FIELD phone TYPE integer REQUIRED yes
FIELD isotope TYPE string REQUIRED yes
FIELD subtotal.amplitude TYPE string VALUES level_1|level_2|level_3|level_4 REQUIRED no
FIELD subtotal.zip_code TYPE string_date-time REQUIRED no
FIELD subtotal.s... | {"payment_status":"This is a test value.","phone":90,"isotope":"Diana","subtotal":{"amplitude":"level_2","zip_code":"2023-04-24T09:02:00Z","sensor_id":"https://example.org/data","terminal_id":716.7,"email":741,"width":"open","last_name":126.43},"pressure_kpa":{"velocity":"Sao Paulo","annotation":"option_a","country":"m... | tool_call_python_syntax | {
"type": "object",
"properties": {
"payment_status": {
"type": "string"
},
"phone": {
"type": "integer"
},
"isotope": {
"type": "string"
},
"subtotal": {
"type": "object",
"properties": {
"amplitude": {
"type": "string",
"enum": ... | calculate_price(payment_status='This is a test value.', phone=90, isotope='Diana', subtotal={'amplitude': 'level_2', 'zip_code': '2023-04-24T09:02:00Z', 'sensor_id': 'https://example.org/data', 'terminal_id': 716.7, 'email': 741, 'width': 'open', 'last_name': 126.43}, pressure_kpa={'velocity': 'Sao Paulo', 'annotation'... | Tool call uses Python syntax instead of JSON | {"payment_status":"This is a test value.","phone":90,"isotope":"Diana","subtotal":{"amplitude":"level_2","zip_code":"2023-04-24T09:02:00Z","sensor_id":"https://example.org/data","terminal_id":716.7,"email":741,"width":"open","last_name":126.43},"pressure_kpa":{"velocity":"Sao Paulo","annotation":"option_a","country":"m... |
TASK repair_structured_output
SPEC
FIELD vital_sign TYPE string VALUES single|married|divorced REQUIRED no
FIELD updated_at TYPE string VALUES berthed|anchored|underway|moored REQUIRED yes
FIELD isotope TYPE string VALUES red|blue|green|black|white REQUIRED yes
FIELD temp_celsius TYPE integer REQUIRED no
FIELD departm... | {"updated_at":"moored","isotope":"blue","department":"https://data.com/api","username":812} | extra_field | {
"type": "object",
"properties": {
"vital_sign": {
"type": "string",
"enum": [
"single",
"married",
"divorced"
]
},
"updated_at": {
"type": "string",
"enum": [
"berthed",
"anchored",
"underway",
"moored"
]
}... | {"updated_at": "moored", "isotope": "blue", "department": "https://data.com/api", "username": 812, "extra_data_7345": 42} | Unknown field 'extra_data_7345' not defined in schema | {"updated_at":"moored","isotope":"blue","department":"https://data.com/api","username":812} |
TASK repair_structured_output
SPEC
FIELD date TYPE string REQUIRED yes
FIELD span_id TYPE string REQUIRED yes
FIELD maturity_date[] TYPE number REQUIRED no
FIELD aligned_pct[].cargo_type TYPE string VALUES red|blue|green|black|white REQUIRED yes
FIELD aligned_pct[].shipper_ref TYPE number REQUIRED yes
FIELD aligned_pc... | {"date":"REV","span_id":"This is a test value.","maturity_date":[83.88,394.86,194.74,243.62],"aligned_pct":[{"cargo_type":"black","shipper_ref":242.39,"total":false}]} | extra_field | {
"type": "object",
"properties": {
"date": {
"type": "string"
},
"span_id": {
"type": "string"
},
"maturity_date": {
"type": "array",
"items": {
"type": "number"
}
},
"aligned_pct": {
"type": "array",
"items": {
"type": "object",... | {"date": "REV", "span_id": "This is a test value.", "maturity_date": [83.88, 394.86, 194.74, 243.62], "aligned_pct": [{"cargo_type": "black", "shipper_ref": 242.39, "total": false}], "extra_info_5559": 42} | Unknown field 'extra_info_5559' not defined in schema | {"date":"REV","span_id":"This is a test value.","maturity_date":[83.88,394.86,194.74,243.62],"aligned_pct":[{"cargo_type":"black","shipper_ref":242.39,"total":false}]} |
TASK repair_structured_output
SPEC
FIELD tax TYPE string VALUES reliable|unstable|intermittent REQUIRED yes
FIELD image_url TYPE boolean REQUIRED no
FIELD product_id TYPE integer REQUIRED no
BROKEN_OUTPUT
{"image_url": false} | {"tax":"intermittent","image_url":false} | missing_required | {
"type": "object",
"properties": {
"tax": {
"type": "string",
"enum": [
"reliable",
"unstable",
"intermittent"
]
},
"image_url": {
"type": "boolean"
},
"product_id": {
"type": "integer"
}
},
"required": [
"tax"
]
} | {"image_url": false} | Required field 'tax' is missing | {"tax":"intermittent","image_url":false} |
TASK repair_structured_output
SPEC
FIELD values TYPE boolean REQUIRED no
FIELD tile TYPE boolean REQUIRED yes
FIELD strand TYPE string_uri REQUIRED yes
FIELD footnote TYPE number REQUIRED yes
FIELD features[].commit_hash TYPE boolean REQUIRED no
FIELD features[].items TYPE string VALUES open|in_progress|resolved|close... | {"values":false,"tile":false,"strand":"https://www.org/api","footnote":411.22} | tool_call_wrong_param | {
"type": "object",
"properties": {
"values": {
"type": "boolean"
},
"tile": {
"type": "boolean"
},
"strand": {
"type": "string",
"format": "uri"
},
"footnote": {
"type": "number"
},
"features": {
"type": "array",
"items": {
"type... | Tool: assign_berth
Params: {"values": false, "strand": "https://www.org/api", "footnote": 411.22, "tile_name": false} | Agent used wrong parameter name 'tile_name' instead of 'tile' | {"values":false,"tile":false,"strand":"https://www.org/api","footnote":411.22} |
TASK repair_structured_output
SPEC
FIELD col_w41 TYPE string VALUES level_1|level_2|level_3|level_4|level_5 REQUIRED no
FIELD col_g88 TYPE string VALUES level_1|level_2|level_3|level_4 REQUIRED no
FIELD attr_q10 TYPE string REQUIRED no
FIELD key_x92 TYPE boolean REQUIRED no
FIELD key_d21 TYPE string VALUES type_a|type... | {"col_w41":"level_1","col_g88":"level_4","key_d21":"type_b","param_q94":"Johnson","col_f31":null,"param_n65":null} | truncated_object | {
"type": "object",
"properties": {
"col_w41": {
"type": "string",
"enum": [
"level_1",
"level_2",
"level_3",
"level_4",
"level_5"
]
},
"col_g88": {
"type": "string",
"enum": [
"level_1",
"level_2",
"level_3",
... | {"col_w41":"level_1","col_g88":"level_4","key_d21":"type_b","param_q94":"Johnson","col_f31":null,"param_n65":null | Unexpected end of JSON input — truncated object | {"col_w41":"level_1","col_g88":"level_4","key_d21":"type_b","param_q94":"Johnson","col_f31":null,"param_n65":null} |
TASK repair_structured_output
SPEC
FIELD crew_id TYPE null REQUIRED no
FIELD reagent TYPE string REQUIRED yes
FIELD decay_rate TYPE string VALUES berthed|anchored|underway|moored REQUIRED no
FIELD index TYPE string VALUES success|error|warning|info REQUIRED yes
BROKEN_OUTPUT
{"reagent":"active","decay_rate":"moored",... | {"reagent":"active","decay_rate":"moored","index":"error"} | truncated_array | {
"type": "object",
"properties": {
"crew_id": {
"type": "null"
},
"reagent": {
"type": "string"
},
"decay_rate": {
"type": "string",
"enum": [
"berthed",
"anchored",
"underway",
"moored"
]
},
"index": {
"type": "string"... | {"reagent":"active","decay_rate":"moored","index":"error" | Unexpected end of JSON input — truncated object | {"reagent":"active","decay_rate":"moored","index":"error"} |
TASK repair_structured_output
SPEC
FIELD dim_d10 TYPE string VALUES admin|editor|viewer REQUIRED yes
FIELD col_s67 TYPE string REQUIRED yes
FIELD col_t39.col_t28 TYPE number REQUIRED no
FIELD col_t39.key_c56 TYPE number REQUIRED yes
FIELD col_t39.attr_w83 TYPE string_date-time REQUIRED no
FIELD col_t39.dim_t47.col_p60... | {"dim_d10":"editor","col_s67":"world","col_t39":{"key_c56":55.97,"dim_t47":{"key_g45":488.63,"field_g58":680.63,"param_n54":"RTG-04","field_u61":"phone","val_m48":"mode_c","dim_m08":null}}} | trailing_comma | {
"type": "object",
"properties": {
"dim_d10": {
"type": "string",
"enum": [
"admin",
"editor",
"viewer"
]
},
"col_s67": {
"type": "string"
},
"col_t39": {
"type": "object",
"properties": {
"col_t28": {
"type": "number... | {"dim_d10":"editor","col_s67":"world","col_t39":{"key_c56":55.97,"dim_t47":{"key_g45":488.63,"field_g58":680.63,"param_n54":"RTG-04","field_u61":"phone","val_m48":"mode_c","dim_m08":null}},} | Unexpected trailing comma | {"dim_d10":"editor","col_s67":"world","col_t39":{"key_c56":55.97,"dim_t47":{"key_g45":488.63,"field_g58":680.63,"param_n54":"RTG-04","field_u61":"phone","val_m48":"mode_c","dim_m08":null}}} |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.