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 position TYPE string VALUES cat_a|cat_b REQUIRED yes
FIELD thumbnail TYPE integer REQUIRED yes
FIELD index TYPE string_date-time REQUIRED yes
BROKEN_OUTPUT
{"position":"cat_b","thumbnail":916,"index":"2021-12-09T11:10:00Z"} | {"position":"cat_b","thumbnail":916,"index":"2021-12-09T11:10:00Z"} | missing_bracket | {
"type": "object",
"properties": {
"position": {
"type": "string",
"enum": [
"cat_a",
"cat_b"
]
},
"thumbnail": {
"type": "integer"
},
"index": {
"type": "string",
"format": "date-time"
}
},
"required": [
"position",
"index",
... | {"position":"cat_b","thumbnail":916,"index":"2021-12-09T11:10:00Z"} | Missing closing bracket | {"position":"cat_b","thumbnail":916,"index":"2021-12-09T11:10:00Z"} |
TASK repair_structured_output
SPEC
FIELD weight TYPE boolean REQUIRED yes
FIELD subtotal TYPE string REQUIRED yes
FIELD user_id TYPE string_email REQUIRED yes
BROKEN_OUTPUT
```json
{"weight":false,"subtotal":"inactive","user_id":"test@domain.org"}
``` | {"weight":false,"subtotal":"inactive","user_id":"test@domain.org"} | markdown_fences | {
"type": "object",
"properties": {
"weight": {
"type": "boolean"
},
"subtotal": {
"type": "string"
},
"user_id": {
"type": "string",
"format": "email"
}
},
"required": [
"user_id",
"subtotal",
"weight"
]
} | ```json
{"weight":false,"subtotal":"inactive","user_id":"test@domain.org"}
``` | Output contains markdown code fences | {"weight":false,"subtotal":"inactive","user_id":"test@domain.org"} |
TASK repair_structured_output
SPEC
FIELD quantity TYPE number REQUIRED yes
FIELD vital_sign TYPE number REQUIRED no
FIELD barcode TYPE boolean REQUIRED no
FIELD interest_rate TYPE string_email REQUIRED yes
FIELD label TYPE string REQUIRED no
BROKEN_OUTPUT
{'quantity':510.79,'barcode':true,'interest_rate':'test@test.i... | {"quantity":510.79,"barcode":true,"interest_rate":"test@test.io"} | single_quotes | {
"type": "object",
"properties": {
"quantity": {
"type": "number"
},
"vital_sign": {
"type": "number"
},
"barcode": {
"type": "boolean"
},
"interest_rate": {
"type": "string",
"format": "email"
},
"label": {
"type": "string"
}
},
"requ... | {'quantity':510.79,'barcode':true,'interest_rate':'test@test.io'} | Expecting property name enclosed in double quotes | {"quantity":510.79,"barcode":true,"interest_rate":"test@test.io"} |
TASK repair_structured_output
SPEC
FIELD key_t55 TYPE null REQUIRED no
FIELD param_c64 TYPE string REQUIRED yes
FIELD dim_i74 TYPE number REQUIRED no
FIELD key_n03 TYPE string REQUIRED no
FIELD col_m30 TYPE integer REQUIRED no
BROKEN_OUTPUT
Processing the request now.
<tool_call name="calculate_price">
{"key_t55":nul... | {"key_t55":null,"param_c64":"FWD","key_n03":"Luis"} | tool_call_text_mix | {
"type": "object",
"properties": {
"key_t55": {
"type": "null"
},
"param_c64": {
"type": "string"
},
"dim_i74": {
"type": "number"
},
"key_n03": {
"type": "string"
},
"col_m30": {
"type": "integer"
}
},
"required": [
"param_c64"
]
} | Processing the request now.
<tool_call name="calculate_price">
{"key_t55":null,"param_c64":"FWD","key_n03":"Luis"}
</tool_call.
The result is ready. | Agent response mixes reasoning text with tool call | {"key_t55":null,"param_c64":"FWD","key_n03":"Luis"} |
TASK repair_structured_output
SPEC
FIELD key_f77 TYPE string VALUES cat_a|cat_b|cat_c REQUIRED no
FIELD col_e13 TYPE string VALUES coastal|oceanic|inland|arctic REQUIRED no
FIELD val_s87 TYPE string VALUES single|married|divorced REQUIRED no
FIELD prop_u85 TYPE string VALUES option_a|option_b|option_c REQUIRED yes
FIE... | {"key_f77":"cat_b","val_s87":"divorced","prop_u85":"option_b","attr_x03":"cat_b","field_o19":"Paris"} | extra_text_after | {
"type": "object",
"properties": {
"key_f77": {
"type": "string",
"enum": [
"cat_a",
"cat_b",
"cat_c"
]
},
"col_e13": {
"type": "string",
"enum": [
"coastal",
"oceanic",
"inland",
"arctic"
]
},
"val_s87"... | {"key_f77":"cat_b","val_s87":"divorced","prop_u85":"option_b","attr_x03":"cat_b","field_o19":"Paris"}
Let me know if you need anything else! | Output contains non-JSON text after the object | {"key_f77":"cat_b","val_s87":"divorced","prop_u85":"option_b","attr_x03":"cat_b","field_o19":"Paris"} |
TASK repair_structured_output
SPEC
FIELD build_status TYPE boolean REQUIRED no
FIELD full_name.level TYPE number REQUIRED no
FIELD full_name.amount TYPE number REQUIRED yes
FIELD full_name.image_url TYPE boolean REQUIRED no
FIELD full_name.ph_level TYPE string VALUES mode_a|mode_b REQUIRED no
FIELD full_name.comments.... | {"full_name":{"level":355.78,"amount":193.85,"ph_level":"mode_a","comments":{"id":"quux","lane":629.74,"ward":"2024-01-15","payment_status":"red"}},"item_id":916,"bed_number":"level_1"} | missing_bracket | {
"type": "object",
"properties": {
"build_status": {
"type": "boolean"
},
"full_name": {
"type": "object",
"properties": {
"level": {
"type": "number"
},
"amount": {
"type": "number"
},
"image_url": {
"type": "boole... | {"full_name":{"level":355.78,"amount":193.85,"ph_level":"mode_a","comments":{"id":"quux","lane":629.74,"ward":"2024-01-15","payment_status":"red"}},"item_id":916,"bed_number":"level_1"} | Missing closing bracket | {"full_name":{"level":355.78,"amount":193.85,"ph_level":"mode_a","comments":{"id":"quux","lane":629.74,"ward":"2024-01-15","payment_status":"red"}},"item_id":916,"bed_number":"level_1"} |
TASK repair_structured_output
SPEC
FIELD color TYPE integer REQUIRED no
FIELD id TYPE string VALUES option_a|option_b|option_c|option_d|option_e REQUIRED no
FIELD manifest_ref TYPE boolean REQUIRED no
FIELD quantity[] TYPE integer REQUIRED yes
FIELD procedure_code[].discount TYPE null REQUIRED no
FIELD procedure_code[... | {"color":907,"id":"option_e","manifest_ref":true,"quantity":[566],"procedure_code":[{"discount":null,"first_name":"level_2","subject":411,"tile":"level_4","title":null,"shift_code":467,"fleet_number":991,"last_name":null},{"discount":null,"subject":21,"tile":"level_1","title":null,"shift_code":118,"fleet_number":510,"l... | tool_call_partial_args | {
"type": "object",
"properties": {
"color": {
"type": "integer"
},
"id": {
"type": "string",
"enum": [
"option_a",
"option_b",
"option_c",
"option_d",
"option_e"
]
},
"manifest_ref": {
"type": "boolean"
},
"quantity":... | I need to look up the information first.
Action: verify_hazmat_compliance
Arguments: {"color": 907, "id": "option_e", "manifest_ref": true, "quantity": [566]} | Agent tool call missing required parameter 'procedure_code' | {"color":907,"id":"option_e","manifest_ref":true,"quantity":[566],"procedure_code":[{"discount":null,"first_name":"level_2","subject":411,"tile":"level_4","title":null,"shift_code":467,"fleet_number":991,"last_name":null},{"discount":null,"subject":21,"tile":"level_1","title":null,"shift_code":118,"fleet_number":510,"l... |
TASK repair_structured_output
SPEC
FIELD dim_u36 TYPE string REQUIRED yes
FIELD param_y55 TYPE number REQUIRED yes
FIELD val_l24 TYPE number REQUIRED yes
FIELD attr_o91 TYPE string REQUIRED no
FIELD key_x00 TYPE string REQUIRED no
BROKEN_OUTPUT
{"dim_u36": "Sao Paulo", "param_y55": "\"217.21\"", "val_l24": 396.49, "k... | {"dim_u36":"Sao Paulo","param_y55":217.21,"val_l24":396.49,"key_x00":"cancelled"} | wrong_type | {
"type": "object",
"properties": {
"dim_u36": {
"type": "string"
},
"param_y55": {
"type": "number"
},
"val_l24": {
"type": "number"
},
"attr_o91": {
"type": "string"
},
"key_x00": {
"type": "string"
}
},
"required": [
"param_y55",
"... | {"dim_u36": "Sao Paulo", "param_y55": "\"217.21\"", "val_l24": 396.49, "key_x00": "cancelled"} | Field 'param_y55' must be number, got string | {"dim_u36":"Sao Paulo","param_y55":217.21,"val_l24":396.49,"key_x00":"cancelled"} |
TASK repair_structured_output
SPEC
FIELD param_y70 TYPE string VALUES option_a|option_b|option_c|option_d REQUIRED no
FIELD dim_z37 TYPE string REQUIRED yes
FIELD attr_t79 TYPE string REQUIRED no
FIELD param_m21 TYPE string_email REQUIRED no
FIELD attr_u67 TYPE number REQUIRED yes
BROKEN_OUTPUT
{param_y70:"option_a",... | {"param_y70":"option_a","dim_z37":"Diana","attr_t79":"sample","attr_u67":987.26} | unquoted_keys | {
"type": "object",
"properties": {
"param_y70": {
"type": "string",
"enum": [
"option_a",
"option_b",
"option_c",
"option_d"
]
},
"dim_z37": {
"type": "string"
},
"attr_t79": {
"type": "string"
},
"param_m21": {
"type":... | {param_y70:"option_a",dim_z37:"Diana",attr_t79:"sample",attr_u67:987.26} | Expecting property name enclosed in double quotes | {"param_y70":"option_a","dim_z37":"Diana","attr_t79":"sample","attr_u67":987.26} |
TASK repair_structured_output
SPEC
FIELD param_a06.val_p08 TYPE integer REQUIRED no
FIELD param_a06.key_z22 TYPE string VALUES pending_review|confirmed|rejected|escalated REQUIRED no
FIELD param_a06.prop_a00 TYPE string REQUIRED yes
FIELD param_a06.field_k23.prop_w81 TYPE string REQUIRED no
FIELD param_a06.field_k23.f... | {"param_a06":{"key_z22":"confirmed","prop_a00":"PASS","field_k23":{"field_n78":498.36,"prop_i51":true,"col_s62":["moored","underway"]},"val_e26":988.74},"val_o09":{"dim_h09":"missense","dim_d60":"red","attr_n53":"cat_b"},"field_g70":"active","attr_z95":438.29} | extra_text_after | {
"type": "object",
"properties": {
"param_a06": {
"type": "object",
"properties": {
"val_p08": {
"type": "integer"
},
"key_z22": {
"type": "string",
"enum": [
"pending_review",
"confirmed",
"rejected",
... | {"param_a06":{"key_z22":"confirmed","prop_a00":"PASS","field_k23":{"field_n78":498.36,"prop_i51":true,"col_s62":["moored","underway"]},"val_e26":988.74},"val_o09":{"dim_h09":"missense","dim_d60":"red","attr_n53":"cat_b"},"field_g70":"active","attr_z95":438.29}
Feel free to ask if you have questions. | Output contains non-JSON text after the object | {"param_a06":{"key_z22":"confirmed","prop_a00":"PASS","field_k23":{"field_n78":498.36,"prop_i51":true,"col_s62":["moored","underway"]},"val_e26":988.74},"val_o09":{"dim_h09":"missense","dim_d60":"red","attr_n53":"cat_b"},"field_g70":"active","attr_z95":438.29} |
TASK repair_structured_output
SPEC
FIELD duration_ms TYPE string REQUIRED no
FIELD tax TYPE string REQUIRED no
FIELD email.due_date TYPE string VALUES small|medium|large|xl REQUIRED no
FIELD email.timezone.organism TYPE boolean REQUIRED no
FIELD email.timezone.height TYPE string REQUIRED no
FIELD email.timezone.half_l... | {"email":{"due_date":"small","timezone":{"organism":false,"half_life":"info@domain.org","insurance_id":638.34,"pressure_kpa":false,"medication":true},"step":"PASS","gene_id":"example","phenotype":264}} | extra_field | {
"type": "object",
"properties": {
"duration_ms": {
"type": "string"
},
"tax": {
"type": "string"
},
"email": {
"type": "object",
"properties": {
"due_date": {
"type": "string",
"enum": [
"small",
"medium",
... | {"email": {"due_date": "small", "timezone": {"organism": false, "half_life": "info@domain.org", "insurance_id": 638.34, "pressure_kpa": false, "medication": true}, "step": "PASS", "gene_id": "example", "phenotype": 264}, "extra_data_124": 42} | Unknown field 'extra_data_124' not defined in schema | {"email":{"due_date":"small","timezone":{"organism":false,"half_life":"info@domain.org","insurance_id":638.34,"pressure_kpa":false,"medication":true},"step":"PASS","gene_id":"example","phenotype":264}} |
TASK repair_structured_output
SPEC
FIELD param_i22 TYPE null REQUIRED yes
FIELD param_t87 TYPE integer REQUIRED yes
FIELD dim_q74[] TYPE number REQUIRED yes
BROKEN_OUTPUT
{'param_i22':null,'param_t87':77,'dim_q74':[946.15]} | {"param_i22":null,"param_t87":77,"dim_q74":[946.15]} | single_quotes | {
"type": "object",
"properties": {
"param_i22": {
"type": "null"
},
"param_t87": {
"type": "integer"
},
"dim_q74": {
"type": "array",
"items": {
"type": "number"
}
}
},
"required": [
"dim_q74",
"param_i22",
"param_t87"
]
} | {'param_i22':null,'param_t87':77,'dim_q74':[946.15]} | Expecting property name enclosed in double quotes | {"param_i22":null,"param_t87":77,"dim_q74":[946.15]} |
TASK repair_structured_output
SPEC
FIELD dim_k51 TYPE null REQUIRED no
FIELD prop_c06 TYPE string REQUIRED no
FIELD col_u89 TYPE integer REQUIRED yes
FIELD col_m96[] TYPE string REQUIRED no
FIELD key_e91[] TYPE integer REQUIRED no
BROKEN_OUTPUT
{"prop_c06":"Berlin","col_u89":761,"col_m96":["PASS","QC-07","RTG-04","ap... | {"prop_c06":"Berlin","col_u89":761,"col_m96":["PASS","QC-07","RTG-04","approved"],"key_e91":[375,667]} | missing_bracket | {
"type": "object",
"properties": {
"dim_k51": {
"type": "null"
},
"prop_c06": {
"type": "string"
},
"col_u89": {
"type": "integer"
},
"col_m96": {
"type": "array",
"items": {
"type": "string"
}
},
"key_e91": {
"type": "array",
... | {"prop_c06":"Berlin","col_u89":761,"col_m96":["PASS","QC-07","RTG-04","approved","key_e91":[375,667]} | Missing closing bracket | {"prop_c06":"Berlin","col_u89":761,"col_m96":["PASS","QC-07","RTG-04","approved"],"key_e91":[375,667]} |
TASK repair_structured_output
SPEC
FIELD current_draw TYPE string VALUES type_a|type_b|type_c|type_d|type_e|type_f REQUIRED no
FIELD aligned_pct TYPE boolean REQUIRED no
FIELD ph_level TYPE boolean REQUIRED yes
FIELD gene_id TYPE string VALUES cat_a|cat_b|cat_c|cat_d REQUIRED no
FIELD label.discount TYPE string_date-t... | {"current_draw":"type_c","ph_level":false,"label":{"discount":"2021-06-03T11:24:00Z","altitude":"chr1","terminal_id":"Bob"}} | trailing_comma | {
"type": "object",
"properties": {
"current_draw": {
"type": "string",
"enum": [
"type_a",
"type_b",
"type_c",
"type_d",
"type_e",
"type_f"
]
},
"aligned_pct": {
"type": "boolean"
},
"ph_level": {
"type": "boolean"
... | {"current_draw":"type_c","ph_level":false,"label":{"discount":"2021-06-03T11:24:00Z","altitude":"chr1","terminal_id":"Bob",}} | Unexpected trailing comma | {"current_draw":"type_c","ph_level":false,"label":{"discount":"2021-06-03T11:24:00Z","altitude":"chr1","terminal_id":"Bob"}} |
TASK repair_structured_output
SPEC
FIELD half_life TYPE string VALUES option_a|option_b|option_c|option_d REQUIRED yes
FIELD aligned_pct TYPE string VALUES level_1|level_2|level_3 REQUIRED no
FIELD coverage TYPE string VALUES option_a|option_b|option_c|option_d|option_e|option_f REQUIRED yes
FIELD lane TYPE integer RE... | {"half_life":"option_d","aligned_pct":"level_1","coverage":"option_d","lane":829,"interest_rate":481.91} | extra_field | {
"type": "object",
"properties": {
"half_life": {
"type": "string",
"enum": [
"option_a",
"option_b",
"option_c",
"option_d"
]
},
"aligned_pct": {
"type": "string",
"enum": [
"level_1",
"level_2",
"level_3"
]
... | {"half_life": "option_d", "aligned_pct": "level_1", "coverage": "option_d", "lane": 829, "interest_rate": 481.91, "extra_data_2310": 42} | Unknown field 'extra_data_2310' not defined in schema | {"half_life":"option_d","aligned_pct":"level_1","coverage":"option_d","lane":829,"interest_rate":481.91} |
TASK repair_structured_output
SPEC
FIELD reagent TYPE string REQUIRED no
FIELD deploy_target TYPE integer REQUIRED yes
FIELD vessel_name[] TYPE number REQUIRED yes
FIELD type[].account_id TYPE string REQUIRED no
FIELD type[].port_code TYPE number REQUIRED no
FIELD type[].size TYPE number REQUIRED no
FIELD type[].balan... | {"reagent":"London","deploy_target":40,"vessel_name":[642.93,390.67],"type":[{"account_id":"Bob","port_code":11.56,"size":586.02,"balance":true,"ward":"2024-04-21T05:41:00Z"},{"size":930.69,"balance":false,"ward":"2023-06-09T10:58:00Z"},{"account_id":"qux","size":815.97,"ward":"2024-06-23T22:26:00Z"}]} | markdown_explanation | {
"type": "object",
"properties": {
"reagent": {
"type": "string"
},
"deploy_target": {
"type": "integer"
},
"vessel_name": {
"type": "array",
"items": {
"type": "number"
}
},
"type": {
"type": "array",
"items": {
"type": "object"... | Sensor output follows:
```json
{"reagent":"London","deploy_target":40,"vessel_name":[642.93,390.67],"type":[{"account_id":"Bob","port_code":11.56,"size":586.02,"balance":true,"ward":"2024-04-21T05:41:00Z"},{"size":930.69,"balance":false,"ward":"2023-06-09T10:58:00Z"},{"account_id":"qux","size":815.97,"ward":"2024-06-23... | Output contains markdown and explanatory text around JSON | {"reagent":"London","deploy_target":40,"vessel_name":[642.93,390.67],"type":[{"account_id":"Bob","port_code":11.56,"size":586.02,"balance":true,"ward":"2024-04-21T05:41:00Z"},{"size":930.69,"balance":false,"ward":"2023-06-09T10:58:00Z"},{"account_id":"qux","size":815.97,"ward":"2024-06-23T22:26:00Z"}]} |
TASK repair_structured_output
SPEC
FIELD torque_output TYPE string REQUIRED yes
FIELD first_name TYPE string REQUIRED no
FIELD build_status TYPE integer REQUIRED no
FIELD port_code TYPE string REQUIRED no
FIELD dosage TYPE string REQUIRED no
FIELD branch TYPE string VALUES option_a|option_b|option_c|option_d REQUIRED ... | {"torque_output":"foo","first_name":"hello","build_status":544,"port_code":"Hapag-Lloyd-Express","dosage":"MV-Evergreen-01","branch":"option_b","run_id":"USD","department":true} | extra_field | {
"type": "object",
"properties": {
"torque_output": {
"type": "string"
},
"first_name": {
"type": "string"
},
"build_status": {
"type": "integer"
},
"port_code": {
"type": "string"
},
"dosage": {
"type": "string"
},
"branch": {
"type":... | {"torque_output": "foo", "first_name": "hello", "build_status": 544, "port_code": "Hapag-Lloyd-Express", "dosage": "MV-Evergreen-01", "branch": "option_b", "run_id": "USD", "department": true, "extra_info_1448": true} | Unknown field 'extra_info_1448' not defined in schema | {"torque_output":"foo","first_name":"hello","build_status":544,"port_code":"Hapag-Lloyd-Express","dosage":"MV-Evergreen-01","branch":"option_b","run_id":"USD","department":true} |
TASK repair_structured_output
SPEC
FIELD prop_e37 TYPE string_uri REQUIRED yes
FIELD dim_y55 TYPE integer REQUIRED no
FIELD field_c46 TYPE integer REQUIRED yes
FIELD col_p70 TYPE number REQUIRED yes
FIELD col_y34 TYPE integer REQUIRED no
FIELD key_o00.param_c69 TYPE string VALUES type_a|type_b|type_c|type_d REQUIRED y... | {"prop_e37":"https://api.com/data","field_c46":870,"col_p70":8.27,"col_y34":325,"key_c32":"2024-01-15","val_h53":"sample"} | missing_brace | {
"type": "object",
"properties": {
"prop_e37": {
"type": "string",
"format": "uri"
},
"dim_y55": {
"type": "integer"
},
"field_c46": {
"type": "integer"
},
"col_p70": {
"type": "number"
},
"col_y34": {
"type": "integer"
},
"key_o00": {... | {"prop_e37":"https://api.com/data","field_c46":870,"col_p70":8.27,"col_y34":325,"key_c32":"2024-01-15","val_h53":"sample" | Missing closing brace | {"prop_e37":"https://api.com/data","field_c46":870,"col_p70":8.27,"col_y34":325,"key_c32":"2024-01-15","val_h53":"sample"} |
TASK repair_structured_output
SPEC
FIELD val_l79 TYPE string REQUIRED yes
FIELD dim_v25 TYPE string REQUIRED no
FIELD val_j41 TYPE string VALUES new|in_transit|delivered|returned REQUIRED no
FIELD attr_t92 TYPE string VALUES reliable|unstable|intermittent REQUIRED yes
FIELD col_m04.prop_u07 TYPE string REQUIRED no
FIE... | {"val_l79":"2024-01-15","attr_t92":"intermittent","col_m04":{"col_q48":null,"attr_s33":"single","val_p29":509,"param_r26":402.2}} | single_quotes | {
"type": "object",
"properties": {
"val_l79": {
"type": "string"
},
"dim_v25": {
"type": "string"
},
"val_j41": {
"type": "string",
"enum": [
"new",
"in_transit",
"delivered",
"returned"
]
},
"attr_t92": {
"type": "stri... | {'val_l79':'2024-01-15','attr_t92':'intermittent','col_m04':{'col_q48':null,'attr_s33':'single','val_p29':509,'param_r26':402.2}} | Expecting property name enclosed in double quotes | {"val_l79":"2024-01-15","attr_t92":"intermittent","col_m04":{"col_q48":null,"attr_s33":"single","val_p29":509,"param_r26":402.2}} |
TASK repair_structured_output
SPEC
FIELD param_c53 TYPE string VALUES homozygous|heterozygous|hemizygous REQUIRED yes
FIELD val_t92 TYPE string VALUES cat_a|cat_b|cat_c|cat_d|cat_e|cat_f REQUIRED yes
FIELD dim_d92 TYPE string REQUIRED no
FIELD field_r87 TYPE string VALUES small|medium|large|xl REQUIRED yes
FIELD param... | {"param_c53":"homozygous","val_t92":"cat_d","field_r87":"large","attr_f01":[{"val_i75":"cat_e","field_b93":null,"prop_x43":223,"dim_p73":null},{"dim_k54":false,"val_i75":"cat_e","field_b93":null,"prop_x43":563,"dim_p73":null},{"dim_k54":true,"val_i75":"cat_d","field_b93":null,"prop_x43":149}]} | truncated_array | {
"type": "object",
"properties": {
"param_c53": {
"type": "string",
"enum": [
"homozygous",
"heterozygous",
"hemizygous"
]
},
"val_t92": {
"type": "string",
"enum": [
"cat_a",
"cat_b",
"cat_c",
"cat_d",
"cat_e... | {"param_c53":"homozygous","val_t92":"cat_d","field_r87":"large","attr_f01":[{"val_i75":"cat_e","field_b93":null,"prop_x43":223,"dim_p73":null},{"dim_k54":false,"val_i75":"cat_e","field_b93":null,"prop_x43":563,"dim_p73":null},{"dim_k54":true,"val_i75":"cat_d","field_b93":null,"prop_x43":149} | Unexpected end of JSON input — truncated array | {"param_c53":"homozygous","val_t92":"cat_d","field_r87":"large","attr_f01":[{"val_i75":"cat_e","field_b93":null,"prop_x43":223,"dim_p73":null},{"dim_k54":false,"val_i75":"cat_e","field_b93":null,"prop_x43":563,"dim_p73":null},{"dim_k54":true,"val_i75":"cat_d","field_b93":null,"prop_x43":149}]} |
TASK repair_structured_output
SPEC
FIELD val_r60 TYPE string REQUIRED yes
FIELD col_x21 TYPE string_uri REQUIRED no
FIELD key_y99 TYPE string_email REQUIRED no
FIELD key_k90.val_l92 TYPE integer REQUIRED yes
FIELD key_k90.field_x15 TYPE string REQUIRED yes
FIELD key_k90.val_v34.attr_a36 TYPE string VALUES synonymous|m... | {"val_r60":"Hapag-Lloyd-Express","col_x21":"https://data.org/v1","key_y99":"info@domain.org"} | tool_call_bad_format | {
"type": "object",
"properties": {
"val_r60": {
"type": "string"
},
"col_x21": {
"type": "string",
"format": "uri"
},
"key_y99": {
"type": "string",
"format": "email"
},
"key_k90": {
"type": "object",
"properties": {
"val_l92": {
... | <functioncall> calculate_docking_fee
{val_r60: "Hapag-Lloyd-Express", col_x21: "https://data.org/v1", key_y99: "info@domain.org"} | Tool call has malformed arguments — unquoted keys in function parameters | {"val_r60":"Hapag-Lloyd-Express","col_x21":"https://data.org/v1","key_y99":"info@domain.org"} |
TASK repair_structured_output
SPEC
FIELD fleet_number TYPE string REQUIRED yes
FIELD width TYPE string REQUIRED yes
FIELD shift_code[] TYPE null REQUIRED yes
BROKEN_OUTPUT
```json
{"fleet_number":"approved","width":"Charlie","shift_code":[null,null]}
``` | {"fleet_number":"approved","width":"Charlie","shift_code":[null,null]} | markdown_fences | {
"type": "object",
"properties": {
"fleet_number": {
"type": "string"
},
"width": {
"type": "string"
},
"shift_code": {
"type": "array",
"items": {
"type": "null"
}
}
},
"required": [
"width",
"fleet_number",
"shift_code"
]
} | ```json
{"fleet_number":"approved","width":"Charlie","shift_code":[null,null]}
``` | Output contains markdown code fences | {"fleet_number":"approved","width":"Charlie","shift_code":[null,null]} |
TASK repair_structured_output
SPEC
FIELD wavelength TYPE number REQUIRED no
FIELD phone TYPE string VALUES success|error|warning|info REQUIRED no
FIELD dosage TYPE integer REQUIRED no
FIELD message TYPE integer REQUIRED yes
BROKEN_OUTPUT
{"wavelength":523.35,"dosage":899,"message":484} | {"wavelength":523.35,"dosage":899,"message":484} | missing_bracket | {
"type": "object",
"properties": {
"wavelength": {
"type": "number"
},
"phone": {
"type": "string",
"enum": [
"success",
"error",
"warning",
"info"
]
},
"dosage": {
"type": "integer"
},
"message": {
"type": "integer"
... | {"wavelength":523.35,"dosage":899,"message":484} | Missing closing bracket | {"wavelength":523.35,"dosage":899,"message":484} |
TASK repair_structured_output
SPEC
FIELD key_s22 TYPE integer REQUIRED no
FIELD prop_u87 TYPE integer REQUIRED yes
FIELD param_j26[].key_d24 TYPE string VALUES success|error|warning|info REQUIRED no
FIELD param_j26[].col_l73 TYPE string VALUES pending_review|confirmed|rejected|escalated REQUIRED yes
FIELD param_j26[].... | {"key_s22":775,"prop_u87":101,"param_j26":[{"col_l73":"pending_review","prop_q45":150,"field_y41":[679]},{"col_l73":"rejected","prop_q45":435,"field_y41":[17]},{"col_l73":"confirmed","prop_q45":261,"field_y41":[258,674,941,958]},{"key_d24":"warning","col_l73":"confirmed","prop_q45":385,"field_y41":[27]}]} | tool_call_python_syntax | {
"type": "object",
"properties": {
"key_s22": {
"type": "integer"
},
"prop_u87": {
"type": "integer"
},
"param_j26": {
"type": "array",
"items": {
"type": "object",
"properties": {
"key_d24": {
"type": "string",
"enum": [... | fetch_lab_result(key_s22=775, prop_u87=101, param_j26=[{'col_l73': 'pending_review', 'prop_q45': 150, 'field_y41': [679]}, {'col_l73': 'rejected', 'prop_q45': 435, 'field_y41': [17]}, {'col_l73': 'confirmed', 'prop_q45': 261, 'field_y41': [258, 674, 941, 958]}, {'key_d24': 'warning', 'col_l73': 'confirmed', 'prop_q45':... | Tool call uses Python syntax instead of JSON | {"key_s22":775,"prop_u87":101,"param_j26":[{"col_l73":"pending_review","prop_q45":150,"field_y41":[679]},{"col_l73":"rejected","prop_q45":435,"field_y41":[17]},{"col_l73":"confirmed","prop_q45":261,"field_y41":[258,674,941,958]},{"key_d24":"warning","col_l73":"confirmed","prop_q45":385,"field_y41":[27]}]} |
TASK repair_structured_output
SPEC
FIELD chapter TYPE string VALUES reliable|unstable|intermittent REQUIRED yes
FIELD length TYPE boolean REQUIRED no
FIELD phenotype TYPE number REQUIRED no
FIELD diagnosis_code TYPE number REQUIRED no
FIELD compound TYPE string VALUES option_a|option_b|option_c|option_d REQUIRED no
B... | {"chapter":"intermittent","length":false,"phenotype":615.08,"diagnosis_code":642.77} | agent_chain | {
"type": "object",
"properties": {
"chapter": {
"type": "string",
"enum": [
"reliable",
"unstable",
"intermittent"
]
},
"length": {
"type": "boolean"
},
"phenotype": {
"type": "number"
},
"diagnosis_code": {
"type": "number"
... | Let me check the system.
Action: queue_sequencing_run
Result: {"chapter": "intermittent", "phenotype": 615.08, "diagnosis_code": 642.77}
Processing the request now.
Action: verify_hazmat_compliance
Result: | Agent multi-step chain with truncated tool output | {"chapter":"intermittent","length":false,"phenotype":615.08,"diagnosis_code":642.77} |
TASK repair_structured_output
SPEC
FIELD key_m03 TYPE string VALUES USD|EUR|GBP|BRL|JPY REQUIRED no
FIELD val_e37 TYPE string VALUES cat_a|cat_b|cat_c|cat_d|cat_e|cat_f REQUIRED no
FIELD key_a32 TYPE string_email REQUIRED yes
FIELD val_o63 TYPE number REQUIRED no
FIELD col_i69 TYPE integer REQUIRED no
FIELD dim_e31 TY... | {"val_e37":"cat_e","key_a32":"test@test.io","col_i69":644,"key_v39":"mode_f"} | markdown_fences | {
"type": "object",
"properties": {
"key_m03": {
"type": "string",
"enum": [
"USD",
"EUR",
"GBP",
"BRL",
"JPY"
]
},
"val_e37": {
"type": "string",
"enum": [
"cat_a",
"cat_b",
"cat_c",
"cat_d",
"... | ```json
{"val_e37":"cat_e","key_a32":"test@test.io","col_i69":644,"key_v39":"mode_f"}
``` | Output contains markdown code fences | {"val_e37":"cat_e","key_a32":"test@test.io","col_i69":644,"key_v39":"mode_f"} |
TASK repair_structured_output
SPEC
FIELD insurance_id.company TYPE string REQUIRED yes
FIELD insurance_id.salinity TYPE number REQUIRED yes
FIELD insurance_id.annotation TYPE string REQUIRED yes
FIELD insurance_id.label TYPE integer REQUIRED no
FIELD insurance_id.status_code TYPE string VALUES synonymous|missense|nons... | {"insurance_id":{"company":"approved","salinity":716.14,"annotation":"Diana","status_code":"nonsense"},"frequency_hz":{"status_code":"inland","footnote":"2023-09-09T02:25:00Z","format":689,"score":"enterprise","options":"JPY","description":633.46,"address":987.94},"index":"This is a test value.","amplitude":"archived",... | tool_call_text_mix | {
"type": "object",
"properties": {
"insurance_id": {
"type": "object",
"properties": {
"company": {
"type": "string"
},
"salinity": {
"type": "number"
},
"annotation": {
"type": "string"
},
"label": {
"t... | I'll query our database.
<tool_call name="get_inventory">
{"insurance_id":{"company":"approved","salinity":716.14,"annotation":"Diana","status_code":"nonsense"},"frequency_hz":{"status_code":"inland","footnote":"2023-09-09T02:25:00Z","format":689,"score":"enterprise","options":"JPY","description":633.46,"address":987.9... | Agent response mixes reasoning text with tool call | {"insurance_id":{"company":"approved","salinity":716.14,"annotation":"Diana","status_code":"nonsense"},"frequency_hz":{"status_code":"inland","footnote":"2023-09-09T02:25:00Z","format":689,"score":"enterprise","options":"JPY","description":633.46,"address":987.94},"index":"This is a test value.","amplitude":"archived",... |
TASK repair_structured_output
SPEC
FIELD key_u75 TYPE number REQUIRED no
FIELD prop_u42 TYPE integer REQUIRED no
FIELD field_i75 TYPE string REQUIRED yes
FIELD val_f68[].col_f07 TYPE string_uri REQUIRED no
FIELD val_f68[].key_o91 TYPE boolean REQUIRED no
FIELD val_f68[].val_i05 TYPE string REQUIRED no
FIELD val_f68[].... | {"key_u75":456.34,"prop_u42":131,"field_i75":"completed"} | truncated_object | {
"type": "object",
"properties": {
"key_u75": {
"type": "number"
},
"prop_u42": {
"type": "integer"
},
"field_i75": {
"type": "string"
},
"val_f68": {
"type": "array",
"items": {
"type": "object",
"properties": {
"col_f07": {
... | {"key_u75":456.34,"prop_u42":131,"field_i75":"completed" | Unexpected end of JSON input — truncated object | {"key_u75":456.34,"prop_u42":131,"field_i75":"completed"} |
TASK repair_structured_output
SPEC
FIELD city TYPE null REQUIRED no
FIELD website.active TYPE string REQUIRED yes
FIELD website.interest_rate TYPE string VALUES admin|editor|viewer REQUIRED yes
FIELD website.status_code[] TYPE boolean REQUIRED no
FIELD website.conductivity[] TYPE string VALUES single|married|divorced ... | {"city":null,"website":{"active":"hello","interest_rate":"viewer","status_code":[false,true,false],"conductivity":["divorced","divorced"]},"frequency_hz":"admin@example.com","chromosome":936,"deploy_target":"in_transit","date":{"shipper_ref":"New York","score":"QC-07","catalyst":"unstable","published":702},"phone":"New... | tool_call_partial_args | {
"type": "object",
"properties": {
"city": {
"type": "null"
},
"website": {
"type": "object",
"properties": {
"active": {
"type": "string"
},
"interest_rate": {
"type": "string",
"enum": [
"admin",
"editor",... | Let me check the system.
Action: apply_discount
Arguments: {"city": null, "frequency_hz": "admin@example.com", "chromosome": 936, "deploy_target": "in_transit", "date": {"shipper_ref": "New York", "score": "QC-07", "catalyst": "unstable", "published": 702}, "phone": "New York", "address": "admin@domain.org"} | Agent tool call missing required parameter 'website' | {"city":null,"website":{"active":"hello","interest_rate":"viewer","status_code":[false,true,false],"conductivity":["divorced","divorced"]},"frequency_hz":"admin@example.com","chromosome":936,"deploy_target":"in_transit","date":{"shipper_ref":"New York","score":"QC-07","catalyst":"unstable","published":702},"phone":"New... |
TASK repair_structured_output
SPEC
FIELD verified TYPE number REQUIRED yes
FIELD current_draw TYPE string_uri REQUIRED no
FIELD discount TYPE string_email REQUIRED no
FIELD visible[] TYPE string REQUIRED no
FIELD weight[].end_date TYPE number REQUIRED no
FIELD weight[].updated_at TYPE null REQUIRED yes
FIELD weight[].... | {"verified":718.24,"discount":"info@domain.org","visible":["https://api.example.com/v1","qux","completed"],"weight":[{"updated_at":null,"comments":"success","compound":594.41,"interest_rate":"bar"}]} | tool_call_python_syntax | {
"type": "object",
"properties": {
"verified": {
"type": "number"
},
"current_draw": {
"type": "string",
"format": "uri"
},
"discount": {
"type": "string",
"format": "email"
},
"visible": {
"type": "array",
"items": {
"type": "string"
... | search(verified=718.24, discount='info@domain.org', visible=['https://api.example.com/v1', 'qux', 'completed'], weight=[{'updated_at': None, 'comments': 'success', 'compound': 594.41, 'interest_rate': 'bar'}]) | Tool call uses Python syntax instead of JSON | {"verified":718.24,"discount":"info@domain.org","visible":["https://api.example.com/v1","qux","completed"],"weight":[{"updated_at":null,"comments":"success","compound":594.41,"interest_rate":"bar"}]} |
TASK repair_structured_output
SPEC
FIELD created_at TYPE number REQUIRED no
FIELD phenotype TYPE number REQUIRED no
FIELD freight_class TYPE string REQUIRED no
FIELD visible TYPE boolean REQUIRED no
FIELD filter_flag TYPE integer REQUIRED no
FIELD bed_number.feedback TYPE string REQUIRED yes
FIELD bed_number.descripti... | {"created_at":122.9,"phenotype":671.07,"freight_class":"2024-06-30","visible":false,"bed_number":{"feedback":"REV","description":"https://data.com/data","department":{"diagnosis_code":"small","organism":61}},"height":{"chapter":"ops@example.com","reagent":679.35,"berth_slot":{"crew_id":664.29,"chromosome":"test@domain.... | unquoted_keys | {
"type": "object",
"properties": {
"created_at": {
"type": "number"
},
"phenotype": {
"type": "number"
},
"freight_class": {
"type": "string"
},
"visible": {
"type": "boolean"
},
"filter_flag": {
"type": "integer"
},
"bed_number": {
"t... | {created_at:122.9,phenotype:671.07,freight_class:"2024-06-30",visible:false,bed_number:{feedback:"REV",description:"https://data.com/data",department:{diagnosis_code:"small",organism:61}},height:{chapter:"ops@example.com",reagent:679.35,berth_slot:{crew_id:664.29,chromosome:"test@domain.org"}}} | Expecting property name enclosed in double quotes | {"created_at":122.9,"phenotype":671.07,"freight_class":"2024-06-30","visible":false,"bed_number":{"feedback":"REV","description":"https://data.com/data","department":{"diagnosis_code":"small","organism":61}},"height":{"chapter":"ops@example.com","reagent":679.35,"berth_slot":{"crew_id":664.29,"chromosome":"test@domain.... |
TASK repair_structured_output
SPEC
FIELD prop_w71 TYPE number REQUIRED no
FIELD key_d43 TYPE string VALUES success|error|warning|info REQUIRED yes
FIELD dim_g46 TYPE string VALUES operational|degraded|offline|maintenance REQUIRED yes
FIELD dim_s64 TYPE string VALUES reliable|unstable|intermittent REQUIRED yes
FIELD fi... | {"prop_w71":204.68,"key_d43":"error","dim_g46":"degraded","dim_s64":"unstable","prop_s18":857.87,"key_a97":"blue"} | tool_call_bad_format | {
"type": "object",
"properties": {
"prop_w71": {
"type": "number"
},
"key_d43": {
"type": "string",
"enum": [
"success",
"error",
"warning",
"info"
]
},
"dim_g46": {
"type": "string",
"enum": [
"operational",
"d... | <functioncall> check_cargo_manifest
{prop_w71: 204.68, key_d43: "error", dim_g46: "degraded", dim_s64: "unstable", prop_s18: 857.87, key_a97: "blue"} | Tool call has malformed arguments — unquoted keys in function parameters | {"prop_w71":204.68,"key_d43":"error","dim_g46":"degraded","dim_s64":"unstable","prop_s18":857.87,"key_a97":"blue"} |
TASK repair_structured_output
SPEC
FIELD procedure_code TYPE string REQUIRED yes
FIELD annotation TYPE number REQUIRED yes
FIELD repository.order_id TYPE string_email REQUIRED no
FIELD repository.tax TYPE boolean REQUIRED yes
FIELD repository.amplitude.paragraph TYPE number REQUIRED yes
FIELD repository.amplitude.comm... | {"procedure_code":"Diana","annotation":838.21,"ward":{"decay_rate":"info","maturity_date":null,"vessel_name":"2024-07-19T13:09:00Z"}} | markdown_explanation | {
"type": "object",
"properties": {
"procedure_code": {
"type": "string"
},
"annotation": {
"type": "number"
},
"repository": {
"type": "object",
"properties": {
"order_id": {
"type": "string",
"format": "email"
},
"tax": {
... | Sure, here's the result:
```json
{"procedure_code":"Diana","annotation":838.21,"ward":{"decay_rate":"info","maturity_date":null,"vessel_name":"2024-07-19T13:09:00Z"}}
```
Feel free to ask if you have questions. | Output contains markdown and explanatory text around JSON | {"procedure_code":"Diana","annotation":838.21,"ward":{"decay_rate":"info","maturity_date":null,"vessel_name":"2024-07-19T13:09:00Z"}} |
TASK repair_structured_output
SPEC
FIELD procedure_code.compound TYPE integer REQUIRED no
FIELD procedure_code.due_date TYPE null REQUIRED no
FIELD procedure_code.tags TYPE integer REQUIRED yes
FIELD procedure_code.crew_id[] TYPE integer REQUIRED yes
FIELD procedure_code.fleet_number[] TYPE string REQUIRED no
FIELD va... | {"procedure_code":{"compound":684,"due_date":null,"tags":421,"crew_id":[233,618,630]},"values":"2024-10-27T01:16:00Z","reagent":"cat_b","fleet_number":147} | missing_bracket | {
"type": "object",
"properties": {
"procedure_code": {
"type": "object",
"properties": {
"compound": {
"type": "integer"
},
"due_date": {
"type": "null"
},
"tags": {
"type": "integer"
},
"crew_id": {
"ty... | {"procedure_code":{"compound":684,"due_date":null,"tags":421,"crew_id":[233,618,630},"values":"2024-10-27T01:16:00Z","reagent":"cat_b","fleet_number":147} | Missing closing bracket | {"procedure_code":{"compound":684,"due_date":null,"tags":421,"crew_id":[233,618,630]},"values":"2024-10-27T01:16:00Z","reagent":"cat_b","fleet_number":147} |
TASK repair_structured_output
SPEC
FIELD collateral TYPE integer REQUIRED yes
FIELD size.language TYPE string REQUIRED no
FIELD size.sensor_id TYPE number REQUIRED no
FIELD size.lane TYPE number REQUIRED yes
FIELD size.shipping TYPE string VALUES pending_review|confirmed|rejected|escalated REQUIRED no
FIELD pressure_k... | {"collateral":49,"size":{"language":"qux","sensor_id":435.27,"lane":248.76,"shipping":"escalated"},"pressure_kpa":"escalated"} | number_with_unit | {
"type": "object",
"properties": {
"collateral": {
"type": "integer"
},
"size": {
"type": "object",
"properties": {
"language": {
"type": "string"
},
"sensor_id": {
"type": "number"
},
"lane": {
"type": "number"
... | {"collateral": "49%", "size": {"language": "qux", "sensor_id": 435.27, "lane": 248.76, "shipping": "escalated"}, "pressure_kpa": "escalated"} | Field 'collateral' must be number, got string with unit | {"collateral":49,"size":{"language":"qux","sensor_id":435.27,"lane":248.76,"shipping":"escalated"},"pressure_kpa":"escalated"} |
TASK repair_structured_output
SPEC
FIELD col_z10 TYPE boolean REQUIRED no
FIELD val_o43 TYPE number REQUIRED no
FIELD field_w44.param_v73 TYPE string REQUIRED yes
FIELD field_w44.param_z71 TYPE string_date-time REQUIRED no
FIELD field_w44.param_q33 TYPE string REQUIRED no
FIELD field_w44.dim_g92 TYPE string REQUIRED n... | {"col_z10":false,"field_w44":{"param_v73":"hello","param_q33":"Tokyo","dim_g92":"REV","attr_i54":"info@example.com","param_s44":311,"val_m09":{"attr_x16":"bar","param_s54":"https://example.com","param_w48":null,"dim_h30":"quux","val_f71":"anchored","dim_r86":"type_e","prop_u85":true},"param_k80":"https://www.com/api"}} | tool_call_partial_args | {
"type": "object",
"properties": {
"col_z10": {
"type": "boolean"
},
"val_o43": {
"type": "number"
},
"field_w44": {
"type": "object",
"properties": {
"param_v73": {
"type": "string"
},
"param_z71": {
"type": "string",
... | I need to look up the information first.
Action: book_appointment
Arguments: {"col_z10": false} | Agent tool call missing required parameter 'field_w44' | {"col_z10":false,"field_w44":{"param_v73":"hello","param_q33":"Tokyo","dim_g92":"REV","attr_i54":"info@example.com","param_s44":311,"val_m09":{"attr_x16":"bar","param_s54":"https://example.com","param_w48":null,"dim_h30":"quux","val_f71":"anchored","dim_r86":"type_e","prop_u85":true},"param_k80":"https://www.com/api"}} |
TASK repair_structured_output
SPEC
FIELD color TYPE integer REQUIRED yes
FIELD log_level TYPE string REQUIRED yes
FIELD order_id.sensor_id TYPE integer REQUIRED no
FIELD order_id.strand TYPE integer REQUIRED no
FIELD order_id.lane.berth_slot TYPE string VALUES mode_a|mode_b|mode_c|mode_d REQUIRED no
FIELD order_id.lan... | {"color":244,"log_level":"Oliveira","order_id":{"strand":903,"lane":{"category":801.02,"phenotype":"high","vessel_name":367,"half_life":120.33},"bill_of_lading":984.61},"consignee":"2023-03-24T22:20:00Z"} | trailing_comma | {
"type": "object",
"properties": {
"color": {
"type": "integer"
},
"log_level": {
"type": "string"
},
"order_id": {
"type": "object",
"properties": {
"sensor_id": {
"type": "integer"
},
"strand": {
"type": "integer"
},
... | {"color":244,"log_level":"Oliveira","order_id":{"strand":903,"lane":{"category":801.02,"phenotype":"high","vessel_name":367,"half_life":120.33,},"bill_of_lading":984.61},"consignee":"2023-03-24T22:20:00Z"} | Unexpected trailing comma | {"color":244,"log_level":"Oliveira","order_id":{"strand":903,"lane":{"category":801.02,"phenotype":"high","vessel_name":367,"half_life":120.33},"bill_of_lading":984.61},"consignee":"2023-03-24T22:20:00Z"} |
TASK repair_structured_output
SPEC
FIELD tags.strand TYPE string VALUES USD|EUR|GBP|BRL|JPY REQUIRED yes
FIELD tags.rating TYPE string VALUES success|error|warning|info REQUIRED no
FIELD tags.discount.width TYPE string VALUES mode_a|mode_b|mode_c|mode_d|mode_e REQUIRED no
FIELD tags.discount.url TYPE string VALUES opt... | {"tags":{"strand":"JPY","rating":"warning","discount":{"width":"mode_c","loan_amount":"Smith","ph_level":954.8,"decay_rate":"2024-01-15"}},"count":"https://api.com/v1","description":393} | markdown_explanation | {
"type": "object",
"properties": {
"tags": {
"type": "object",
"properties": {
"strand": {
"type": "string",
"enum": [
"USD",
"EUR",
"GBP",
"BRL",
"JPY"
]
},
"rating": {
"type... | The instrument reported:
```json
{"tags":{"strand":"JPY","rating":"warning","discount":{"width":"mode_c","loan_amount":"Smith","ph_level":954.8,"decay_rate":"2024-01-15"}},"count":"https://api.com/v1","description":393}
```
Data logged successfully. | Output contains markdown and explanatory text around JSON | {"tags":{"strand":"JPY","rating":"warning","discount":{"width":"mode_c","loan_amount":"Smith","ph_level":954.8,"decay_rate":"2024-01-15"}},"count":"https://api.com/v1","description":393} |
TASK repair_structured_output
SPEC
FIELD subtotal TYPE string VALUES admin|editor|viewer REQUIRED yes
FIELD status TYPE string VALUES coastal|oceanic|inland|arctic REQUIRED yes
FIELD lane TYPE string_date-time REQUIRED yes
BROKEN_OUTPUT
{subtotal:"viewer",status:"oceanic",lane:"2022-03-16T08:16:00Z"} | {"subtotal":"viewer","status":"oceanic","lane":"2022-03-16T08:16:00Z"} | unquoted_keys | {
"type": "object",
"properties": {
"subtotal": {
"type": "string",
"enum": [
"admin",
"editor",
"viewer"
]
},
"status": {
"type": "string",
"enum": [
"coastal",
"oceanic",
"inland",
"arctic"
]
},
"lane":... | {subtotal:"viewer",status:"oceanic",lane:"2022-03-16T08:16:00Z"} | Expecting property name enclosed in double quotes | {"subtotal":"viewer","status":"oceanic","lane":"2022-03-16T08:16:00Z"} |
TASK repair_structured_output
SPEC
FIELD col_b01 TYPE string_uri REQUIRED no
FIELD val_u43 TYPE string REQUIRED no
FIELD key_y51 TYPE string VALUES type_a|type_b REQUIRED no
FIELD field_i61 TYPE string VALUES email|phone|sms|push REQUIRED no
FIELD val_e81.dim_p37 TYPE boolean REQUIRED no
FIELD val_e81.dim_d66 TYPE num... | {"col_b01":"https://www.com/api","val_u43":"Paris","key_y51":"type_a","field_i61":"phone","prop_r02":455,"key_c80":{"dim_o47":245,"param_d20":"test@test.io","param_g39":[{"key_z45":"berthed","dim_k15":"confirmed","field_p86":877,"col_o50":true},{"dim_k15":"confirmed","field_p86":408,"col_p71":"operational","field_c19":... | truncated_array | {
"type": "object",
"properties": {
"col_b01": {
"type": "string",
"format": "uri"
},
"val_u43": {
"type": "string"
},
"key_y51": {
"type": "string",
"enum": [
"type_a",
"type_b"
]
},
"field_i61": {
"type": "string",
"enum":... | {"col_b01":"https://www.com/api","val_u43":"Paris","key_y51":"type_a","field_i61":"phone","prop_r02":455,"key_c80":{"dim_o47":245,"param_d20":"test@test.io","param_g39":[{"key_z45":"berthed","dim_k15":"confirmed","field_p86":877,"col_o50":true},{"dim_k15":"confirmed","field_p86":408,"col_p71":"operational","field_c19":... | Unexpected end of JSON input — truncated object | {"col_b01":"https://www.com/api","val_u43":"Paris","key_y51":"type_a","field_i61":"phone","prop_r02":455,"key_c80":{"dim_o47":245,"param_d20":"test@test.io","param_g39":[{"key_z45":"berthed","dim_k15":"confirmed","field_p86":877,"col_o50":true},{"dim_k15":"confirmed","field_p86":408,"col_p71":"operational","field_c19":... |
TASK repair_structured_output
SPEC
FIELD phenotype TYPE integer REQUIRED no
FIELD url TYPE string VALUES small|medium|large|xl REQUIRED yes
FIELD version[].currency TYPE string VALUES berthed|anchored|underway|moored REQUIRED no
FIELD version[].diagnosis_code TYPE string REQUIRED no
FIELD version[].compound TYPE integ... | {"url":"small","version":[{"currency":"anchored","diagnosis_code":"John","compound":991,"url":"option_c","yield_pct":668,"tax":null},{"currency":"anchored","compound":778,"url":"option_a","yield_pct":102,"username":"type_a","tax":null},{"currency":"berthed","diagnosis_code":"Smith","compound":811,"url":"option_a","yiel... | tool_call_bad_format | {
"type": "object",
"properties": {
"phenotype": {
"type": "integer"
},
"url": {
"type": "string",
"enum": [
"small",
"medium",
"large",
"xl"
]
},
"version": {
"type": "array",
"items": {
"type": "object",
"prope... | <functioncall> query_port_status
{url: "small", version: [{currency: "anchored", diagnosis_code: "John", compound: 991, url: "option_c", yield_pct: 668, tax: null}, {currency: "anchored", compound: 778, url: "option_a", yield_pct: 102, username: "type_a", tax: null}, {currency: "berthed", diagnosis_code: "Smith", compo... | Tool call has malformed arguments — unquoted keys in function parameters | {"url":"small","version":[{"currency":"anchored","diagnosis_code":"John","compound":991,"url":"option_c","yield_pct":668,"tax":null},{"currency":"anchored","compound":778,"url":"option_a","yield_pct":102,"username":"type_a","tax":null},{"currency":"berthed","diagnosis_code":"Smith","compound":811,"url":"option_a","yiel... |
TASK repair_structured_output
SPEC
FIELD val_n44 TYPE string REQUIRED yes
FIELD param_v07 TYPE string VALUES option_a|option_b|option_c REQUIRED no
FIELD val_b75 TYPE string_uri REQUIRED yes
BROKEN_OUTPUT
{"param_v07": "option_b", "val_b75": "https://data.org/v1"} | {"val_n44":"test","param_v07":"option_b","val_b75":"https://data.org/v1"} | missing_required | {
"type": "object",
"properties": {
"val_n44": {
"type": "string"
},
"param_v07": {
"type": "string",
"enum": [
"option_a",
"option_b",
"option_c"
]
},
"val_b75": {
"type": "string",
"format": "uri"
}
},
"required": [
"val_n... | {"param_v07": "option_b", "val_b75": "https://data.org/v1"} | Required field 'val_n44' is missing | {"val_n44":"test","param_v07":"option_b","val_b75":"https://data.org/v1"} |
TASK repair_structured_output
SPEC
FIELD aligned_pct TYPE string VALUES open|in_progress|resolved|closed REQUIRED yes
FIELD crew_id TYPE string_email REQUIRED no
FIELD zip_code TYPE string_uri REQUIRED no
FIELD phenotype.batch_code.position TYPE boolean REQUIRED yes
FIELD phenotype.batch_code.full_name TYPE string REQ... | {"aligned_pct":"in_progress","crew_id":"user@domain.org","phenotype":{"batch_code":{"position":false,"full_name":"demo","maturity_date":"qux"},"invoice_id":"2024-12-12T03:08:00Z","tags":null,"position":{"bearing":"inactive","ph_level":"closed","message":"pending","phenotype":"test@example.com"}},"compound":null} | missing_bracket | {
"type": "object",
"properties": {
"aligned_pct": {
"type": "string",
"enum": [
"open",
"in_progress",
"resolved",
"closed"
]
},
"crew_id": {
"type": "string",
"format": "email"
},
"zip_code": {
"type": "string",
"format"... | {"aligned_pct":"in_progress","crew_id":"user@domain.org","phenotype":{"batch_code":{"position":false,"full_name":"demo","maturity_date":"qux"},"invoice_id":"2024-12-12T03:08:00Z","tags":null,"position":{"bearing":"inactive","ph_level":"closed","message":"pending","phenotype":"test@example.com"}},"compound":null} | Missing closing bracket | {"aligned_pct":"in_progress","crew_id":"user@domain.org","phenotype":{"batch_code":{"position":false,"full_name":"demo","maturity_date":"qux"},"invoice_id":"2024-12-12T03:08:00Z","tags":null,"position":{"bearing":"inactive","ph_level":"closed","message":"pending","phenotype":"test@example.com"}},"compound":null} |
TASK repair_structured_output
SPEC
FIELD dim_p23.field_m44 TYPE integer REQUIRED no
FIELD dim_p23.param_c56 TYPE boolean REQUIRED yes
FIELD dim_p23.val_x38 TYPE boolean REQUIRED yes
FIELD dim_p23.field_f46 TYPE boolean REQUIRED no
FIELD key_l99 TYPE string VALUES email|phone|sms|push REQUIRED yes
FIELD field_e86.attr_... | {"dim_p23":{"field_m44":80,"param_c56":true,"val_x38":false,"field_f46":false},"key_l99":"email","prop_z38":{"col_a04":540,"dim_e68":"Diana","field_d40":"cat_b","dim_w92":"mode_b","field_s79":"Maria","dim_r31":{"prop_q26":"moored","param_p76":"https://api.example.com/v1","prop_r96":true,"attr_k42":"test@domain.org"},"v... | thought_process | {
"type": "object",
"properties": {
"dim_p23": {
"type": "object",
"properties": {
"field_m44": {
"type": "integer"
},
"param_c56": {
"type": "boolean"
},
"val_x38": {
"type": "boolean"
},
"field_f46": {
... | Analyzing the schema to generate valid JSON...
Checking required fields and types...
{"dim_p23":{"field_m44":80,"param_c56":true,"val_x38":false,"field_f46":false},"key_l99":"email","prop_z38":{"col_a04":540,"dim_e68":"Diana","field_d40":"cat_b","dim_w92":"mode_b","field_s79":"Maria","dim_r31":{"prop_q26":"moored","pa... | Output contains chain-of-thought reasoning before JSON | {"dim_p23":{"field_m44":80,"param_c56":true,"val_x38":false,"field_f46":false},"key_l99":"email","prop_z38":{"col_a04":540,"dim_e68":"Diana","field_d40":"cat_b","dim_w92":"mode_b","field_s79":"Maria","dim_r31":{"prop_q26":"moored","param_p76":"https://api.example.com/v1","prop_r96":true,"attr_k42":"test@domain.org"},"v... |
TASK repair_structured_output
SPEC
FIELD version TYPE string VALUES cat_a|cat_b|cat_c|cat_d REQUIRED no
FIELD total TYPE string VALUES draft|published|archived REQUIRED no
FIELD ward TYPE string VALUES mode_a|mode_b|mode_c|mode_d|mode_e|mode_f REQUIRED yes
FIELD turbidity TYPE number REQUIRED no
FIELD priority TYPE st... | {"version":"cat_a","total":"published","ward":"mode_d","turbidity":717.46,"priority":"option_d","age":"draft","frequency_hz":"user@domain.org"} | agent_chain | {
"type": "object",
"properties": {
"version": {
"type": "string",
"enum": [
"cat_a",
"cat_b",
"cat_c",
"cat_d"
]
},
"total": {
"type": "string",
"enum": [
"draft",
"published",
"archived"
]
},
"ward": {
... | I need to look up the information first.
Action: lookup_customer
Result: {"total": "published", "ward": "mode_d", "turbidity": 717.46, "priority": "option_d", "age": "draft", "frequency_hz": "user@domain.org"}
I'll query our database.
Action: get_inventory
Result: | Agent multi-step chain with truncated tool output | {"version":"cat_a","total":"published","ward":"mode_d","turbidity":717.46,"priority":"option_d","age":"draft","frequency_hz":"user@domain.org"} |
TASK repair_structured_output
SPEC
FIELD attr_p95 TYPE string VALUES level_1|level_2|level_3|level_4 REQUIRED yes
FIELD param_a29 TYPE string VALUES cat_a|cat_b|cat_c|cat_d|cat_e|cat_f REQUIRED yes
FIELD prop_v24 TYPE string REQUIRED yes
BROKEN_OUTPUT
The parsed result is:
```json
{"attr_p95":"level_3","param_a29":"c... | {"attr_p95":"level_3","param_a29":"cat_b","prop_v24":"inactive"} | markdown_explanation | {
"type": "object",
"properties": {
"attr_p95": {
"type": "string",
"enum": [
"level_1",
"level_2",
"level_3",
"level_4"
]
},
"param_a29": {
"type": "string",
"enum": [
"cat_a",
"cat_b",
"cat_c",
"cat_d",
... | The parsed result is:
```json
{"attr_p95":"level_3","param_a29":"cat_b","prop_v24":"inactive"}
```
Data logged successfully. | Output contains markdown and explanatory text around JSON | {"attr_p95":"level_3","param_a29":"cat_b","prop_v24":"inactive"} |
TASK repair_structured_output
SPEC
FIELD attr_e73.key_f27 TYPE number REQUIRED no
FIELD attr_e73.param_h66 TYPE integer REQUIRED yes
FIELD attr_e73.key_r79.key_r33 TYPE number REQUIRED no
FIELD attr_e73.key_r79.col_k22 TYPE string REQUIRED no
FIELD attr_e73.key_r79.dim_d08 TYPE string VALUES red|blue|green|black|white... | {"attr_e73":{"key_f27":631.2,"param_h66":16,"key_r79":{"col_k22":"Charlie","dim_d08":"white","prop_s30":["error"]},"attr_h78":"basic","prop_r75":97.01,"attr_k77":545},"param_j09":true,"param_l31":473.0,"dim_a26":{"prop_j31":"Diana","param_l96":true,"dim_b58":"chr1"},"col_v41":"small","param_x20":"mode_a"} | single_quotes | {
"type": "object",
"properties": {
"attr_e73": {
"type": "object",
"properties": {
"key_f27": {
"type": "number"
},
"param_h66": {
"type": "integer"
},
"key_r79": {
"type": "object",
"properties": {
"key_r33... | {'attr_e73':{'key_f27':631.2,'param_h66':16,'key_r79':{'col_k22':'Charlie','dim_d08':'white','prop_s30':['error']},'attr_h78':'basic','prop_r75':97.01,'attr_k77':545},'param_j09':true,'param_l31':473.0,'dim_a26':{'prop_j31':'Diana','param_l96':true,'dim_b58':'chr1'},'col_v41':'small','param_x20':'mode_a'} | Expecting property name enclosed in double quotes | {"attr_e73":{"key_f27":631.2,"param_h66":16,"key_r79":{"col_k22":"Charlie","dim_d08":"white","prop_s30":["error"]},"attr_h78":"basic","prop_r75":97.01,"attr_k77":545},"param_j09":true,"param_l31":473.0,"dim_a26":{"prop_j31":"Diana","param_l96":true,"dim_b58":"chr1"},"col_v41":"small","param_x20":"mode_a"} |
TASK repair_structured_output
SPEC
FIELD loan_amount TYPE string REQUIRED yes
FIELD balance TYPE string VALUES pending_review|confirmed|rejected|escalated REQUIRED no
FIELD footnote TYPE string REQUIRED yes
FIELD address TYPE string REQUIRED yes
FIELD frequency_hz[].comments TYPE string VALUES new|in_transit|delivered... | {"loan_amount":"RTG-04","balance":"pending_review","footnote":"This is a test value.","address":"New York","quality_score":[{"hazmat_code":null,"shipper_ref":"demo","language":183.45,"values":"test@test.io","umi":"foo","port_code":59,"ward":"quux","user_id":508},{"hazmat_code":null,"shipper_ref":"Hapag-Lloyd-Express","... | missing_required | {
"type": "object",
"properties": {
"loan_amount": {
"type": "string"
},
"balance": {
"type": "string",
"enum": [
"pending_review",
"confirmed",
"rejected",
"escalated"
]
},
"footnote": {
"type": "string"
},
"address": {
... | {"balance": "pending_review", "footnote": "This is a test value.", "address": "New York", "quality_score": [{"hazmat_code": null, "shipper_ref": "demo", "language": 183.45, "values": "test@test.io", "umi": "foo", "port_code": 59, "ward": "quux", "user_id": 508}, {"hazmat_code": null, "shipper_ref": "Hapag-Lloyd-Express... | Required field 'loan_amount' is missing | {"loan_amount":"RTG-04","balance":"pending_review","footnote":"This is a test value.","address":"New York","quality_score":[{"hazmat_code":null,"shipper_ref":"demo","language":183.45,"values":"test@test.io","umi":"foo","port_code":59,"ward":"quux","user_id":508},{"hazmat_code":null,"shipper_ref":"Hapag-Lloyd-Express","... |
TASK repair_structured_output
SPEC
FIELD dim_n19 TYPE string VALUES type_a|type_b|type_c|type_d REQUIRED no
FIELD col_w31 TYPE string REQUIRED yes
FIELD prop_c74 TYPE boolean REQUIRED no
FIELD col_f18 TYPE number REQUIRED yes
FIELD val_w19 TYPE integer REQUIRED yes
FIELD val_p25 TYPE string VALUES cat_a|cat_b|cat_c|ca... | {"dim_n19":"type_a","col_w31":"cancelled","prop_c74":false,"col_f18":305.09,"val_w19":592,"val_p25":"cat_c","prop_s09":"RTG-04","key_x04":"type_b"} | extra_text_after | {
"type": "object",
"properties": {
"dim_n19": {
"type": "string",
"enum": [
"type_a",
"type_b",
"type_c",
"type_d"
]
},
"col_w31": {
"type": "string"
},
"prop_c74": {
"type": "boolean"
},
"col_f18": {
"type": "number"
... | {"dim_n19":"type_a","col_w31":"cancelled","prop_c74":false,"col_f18":305.09,"val_w19":592,"val_p25":"cat_c","prop_s09":"RTG-04","key_x04":"type_b"}
Let me know if you need anything else! | Output contains non-JSON text after the object | {"dim_n19":"type_a","col_w31":"cancelled","prop_c74":false,"col_f18":305.09,"val_w19":592,"val_p25":"cat_c","prop_s09":"RTG-04","key_x04":"type_b"} |
TASK repair_structured_output
SPEC
FIELD prop_p68 TYPE string VALUES level_1|level_2|level_3|level_4|level_5 REQUIRED yes
FIELD field_q31 TYPE string VALUES synonymous|missense|nonsense|frameshift REQUIRED no
FIELD key_q02 TYPE string REQUIRED yes
BROKEN_OUTPUT
{"prop_p68":"level_1","field_q31":"nonsense","key_q02":"... | {"prop_p68":"level_1","field_q31":"nonsense","key_q02":"approved"} | missing_brace | {
"type": "object",
"properties": {
"prop_p68": {
"type": "string",
"enum": [
"level_1",
"level_2",
"level_3",
"level_4",
"level_5"
]
},
"field_q31": {
"type": "string",
"enum": [
"synonymous",
"missense",
"non... | {"prop_p68":"level_1","field_q31":"nonsense","key_q02":"approved" | Missing closing brace | {"prop_p68":"level_1","field_q31":"nonsense","key_q02":"approved"} |
TASK repair_structured_output
SPEC
FIELD prop_t88 TYPE string REQUIRED no
FIELD attr_h70 TYPE null REQUIRED yes
FIELD key_s44 TYPE null REQUIRED no
BROKEN_OUTPUT
Below is the JSON object:
{"prop_t88":"hello","attr_h70":null,"key_s44":null} | {"prop_t88":"hello","attr_h70":null,"key_s44":null} | extra_text_before | {
"type": "object",
"properties": {
"prop_t88": {
"type": "string"
},
"attr_h70": {
"type": "null"
},
"key_s44": {
"type": "null"
}
},
"required": [
"attr_h70"
]
} | Below is the JSON object:
{"prop_t88":"hello","attr_h70":null,"key_s44":null} | Output contains non-JSON text before the object | {"prop_t88":"hello","attr_h70":null,"key_s44":null} |
TASK repair_structured_output
SPEC
FIELD dim_e76 TYPE string VALUES mode_a|mode_b|mode_c|mode_d|mode_e REQUIRED yes
FIELD key_x63 TYPE string VALUES email|phone|sms|push REQUIRED yes
FIELD attr_e37 TYPE integer REQUIRED yes
BROKEN_OUTPUT
I need to look up the information first.
Action: run_diagnostics
Result: {"key_x... | {"dim_e76":"mode_b","key_x63":"email","attr_e37":245} | agent_chain | {
"type": "object",
"properties": {
"dim_e76": {
"type": "string",
"enum": [
"mode_a",
"mode_b",
"mode_c",
"mode_d",
"mode_e"
]
},
"key_x63": {
"type": "string",
"enum": [
"email",
"phone",
"sms",
"push... | I need to look up the information first.
Action: run_diagnostics
Result: {"key_x63": "email", "attr_e37": 245}
Processing the request now.
Action: create_order
Result: | Agent multi-step chain with truncated tool output | {"dim_e76":"mode_b","key_x63":"email","attr_e37":245} |
TASK repair_structured_output
SPEC
FIELD prop_j00 TYPE string REQUIRED yes
FIELD dim_q28 TYPE string VALUES level_1|level_2|level_3|level_4 REQUIRED no
FIELD param_i48 TYPE number REQUIRED no
FIELD field_r77 TYPE string_email REQUIRED no
BROKEN_OUTPUT
{"dim_q28": "level_1", "param_i48": 287.77} | {"prop_j00":"New York","dim_q28":"level_1","param_i48":287.77} | missing_required | {
"type": "object",
"properties": {
"prop_j00": {
"type": "string"
},
"dim_q28": {
"type": "string",
"enum": [
"level_1",
"level_2",
"level_3",
"level_4"
]
},
"param_i48": {
"type": "number"
},
"field_r77": {
"type": "st... | {"dim_q28": "level_1", "param_i48": 287.77} | Required field 'prop_j00' is missing | {"prop_j00":"New York","dim_q28":"level_1","param_i48":287.77} |
TASK repair_structured_output
SPEC
FIELD width TYPE number REQUIRED yes
FIELD phenotype TYPE boolean REQUIRED yes
FIELD due_date TYPE integer REQUIRED yes
BROKEN_OUTPUT
Let me check the system.
Action: fetch_lab_result
Arguments: {"width": 190.94, "due_date": 351} | {"width":190.94,"phenotype":false,"due_date":351} | tool_call_partial_args | {
"type": "object",
"properties": {
"width": {
"type": "number"
},
"phenotype": {
"type": "boolean"
},
"due_date": {
"type": "integer"
}
},
"required": [
"phenotype",
"width",
"due_date"
]
} | Let me check the system.
Action: fetch_lab_result
Arguments: {"width": 190.94, "due_date": 351} | Agent tool call missing required parameter 'phenotype' | {"width":190.94,"phenotype":false,"due_date":351} |
TASK repair_structured_output
SPEC
FIELD val_o48 TYPE number REQUIRED yes
FIELD attr_w47 TYPE null REQUIRED yes
FIELD val_y09 TYPE string REQUIRED no
FIELD col_j25.dim_b15 TYPE number REQUIRED no
FIELD col_j25.prop_n10.dim_t85 TYPE string REQUIRED yes
FIELD col_j25.prop_n10.prop_a13 TYPE integer REQUIRED yes
FIELD col... | {"val_o48":53.13,"attr_w47":null,"col_j25":{"dim_b15":836.66,"prop_n10":{"dim_t85":"https://example.com","prop_a13":667,"val_v52":false,"dim_b78":"2026-05-02T01:57:00Z"},"dim_k42":true,"col_w20":"info@test.io","prop_b35":"Smith","dim_n85":"green"}} | missing_required | {
"type": "object",
"properties": {
"val_o48": {
"type": "number"
},
"attr_w47": {
"type": "null"
},
"val_y09": {
"type": "string"
},
"col_j25": {
"type": "object",
"properties": {
"dim_b15": {
"type": "number"
},
"prop_n10"... | {"attr_w47": null, "col_j25": {"dim_b15": 836.66, "prop_n10": {"dim_t85": "https://example.com", "prop_a13": 667, "val_v52": false, "dim_b78": "2026-05-02T01:57:00Z"}, "dim_k42": true, "col_w20": "info@test.io", "prop_b35": "Smith", "dim_n85": "green"}} | Required field 'val_o48' is missing | {"val_o48":53.13,"attr_w47":null,"col_j25":{"dim_b15":836.66,"prop_n10":{"dim_t85":"https://example.com","prop_a13":667,"val_v52":false,"dim_b78":"2026-05-02T01:57:00Z"},"dim_k42":true,"col_w20":"info@test.io","prop_b35":"Smith","dim_n85":"green"}} |
TASK repair_structured_output
SPEC
FIELD val_x70.attr_r02 TYPE string REQUIRED yes
FIELD val_x70.dim_w32 TYPE boolean REQUIRED yes
FIELD val_x70.dim_v49 TYPE string VALUES mode_a|mode_b|mode_c|mode_d|mode_e REQUIRED yes
FIELD val_x70.param_w46 TYPE integer REQUIRED no
FIELD val_x70.field_d88 TYPE string VALUES type_a|... | {"val_x70":{"attr_r02":"GRCh38","dim_w32":true,"dim_v49":"mode_c","param_w46":356,"field_d88":"type_a","field_p87":{"dim_w61":"This is a test value.","dim_w37":"inactive","param_z84":true}},"field_n54":"level_2","col_s70":false} | tool_call_python_syntax | {
"type": "object",
"properties": {
"val_x70": {
"type": "object",
"properties": {
"attr_r02": {
"type": "string"
},
"dim_w32": {
"type": "boolean"
},
"dim_v49": {
"type": "string",
"enum": [
"mode_a",
... | calculate_docking_fee(val_x70={'attr_r02': 'GRCh38', 'dim_w32': True, 'dim_v49': 'mode_c', 'param_w46': 356, 'field_d88': 'type_a', 'field_p87': {'dim_w61': 'This is a test value.', 'dim_w37': 'inactive', 'param_z84': True}}, field_n54='level_2', col_s70=False) | Tool call uses Python syntax instead of JSON | {"val_x70":{"attr_r02":"GRCh38","dim_w32":true,"dim_v49":"mode_c","param_w46":356,"field_d88":"type_a","field_p87":{"dim_w61":"This is a test value.","dim_w37":"inactive","param_z84":true}},"field_n54":"level_2","col_s70":false} |
TASK repair_structured_output
SPEC
FIELD state TYPE integer REQUIRED no
FIELD invoice_id TYPE string REQUIRED yes
FIELD footnote TYPE string VALUES operational|degraded|offline|maintenance REQUIRED yes
BROKEN_OUTPUT
I'll query our database.
<tool_call name="lookup_customer">
{"invoice_id":"Hapag-Lloyd-Express","footn... | {"invoice_id":"Hapag-Lloyd-Express","footnote":"maintenance"} | tool_call_text_mix | {
"type": "object",
"properties": {
"state": {
"type": "integer"
},
"invoice_id": {
"type": "string"
},
"footnote": {
"type": "string",
"enum": [
"operational",
"degraded",
"offline",
"maintenance"
]
}
},
"required": [
"in... | I'll query our database.
<tool_call name="lookup_customer">
{"invoice_id":"Hapag-Lloyd-Express","footnote":"maintenance"}
</tool_call.
Operation completed. | Agent response mixes reasoning text with tool call | {"invoice_id":"Hapag-Lloyd-Express","footnote":"maintenance"} |
TASK repair_structured_output
SPEC
FIELD subject TYPE string REQUIRED yes
FIELD humidity_pct TYPE string REQUIRED yes
FIELD barcode TYPE number REQUIRED no
FIELD duration_ms TYPE string VALUES small|medium|large|xl REQUIRED no
FIELD vital_sign TYPE integer REQUIRED yes
BROKEN_OUTPUT
```json
{"subject":"Tokyo","humidi... | {"subject":"Tokyo","humidity_pct":"inactive","duration_ms":"small","vital_sign":114} | markdown_fences | {
"type": "object",
"properties": {
"subject": {
"type": "string"
},
"humidity_pct": {
"type": "string"
},
"barcode": {
"type": "number"
},
"duration_ms": {
"type": "string",
"enum": [
"small",
"medium",
"large",
"xl"
]
... | ```json
{"subject":"Tokyo","humidity_pct":"inactive","duration_ms":"small","vital_sign":114}
``` | Output contains markdown code fences | {"subject":"Tokyo","humidity_pct":"inactive","duration_ms":"small","vital_sign":114} |
TASK repair_structured_output
SPEC
FIELD date TYPE string VALUES berthed|anchored|underway|moored REQUIRED yes
FIELD velocity TYPE string REQUIRED yes
FIELD message.account_id TYPE string VALUES red|blue|green|black|white REQUIRED no
FIELD message.wavelength TYPE string VALUES red|blue|green|black|white REQUIRED no
FI... | {"date":"moored","velocity":"2024-01-15","message":{"account_id":"white","wavelength":"red","description":"2024-01-15","batch_code":false,"city":"Diana","user_id":"rejected","label":false}} | markdown_explanation | {
"type": "object",
"properties": {
"date": {
"type": "string",
"enum": [
"berthed",
"anchored",
"underway",
"moored"
]
},
"velocity": {
"type": "string"
},
"message": {
"type": "object",
"properties": {
"account_id": {
... | Here's the structured output:
```json
{"date":"moored","velocity":"2024-01-15","message":{"account_id":"white","wavelength":"red","description":"2024-01-15","batch_code":false,"city":"Diana","user_id":"rejected","label":false}}
```
Data logged successfully. | Output contains markdown and explanatory text around JSON | {"date":"moored","velocity":"2024-01-15","message":{"account_id":"white","wavelength":"red","description":"2024-01-15","batch_code":false,"city":"Diana","user_id":"rejected","label":false}} |
TASK repair_structured_output
SPEC
FIELD hazmat_code TYPE string_email REQUIRED no
FIELD conductivity TYPE boolean REQUIRED yes
FIELD coverage TYPE boolean REQUIRED no
FIELD allele TYPE string REQUIRED yes
FIELD currency[].age TYPE boolean REQUIRED no
FIELD currency[].chromosome TYPE string_uri REQUIRED no
FIELD curre... | {"conductivity":true,"coverage":false,"allele":"Hapag-Lloyd-Express","currency":[{"chromosome":"https://data.io/api","half_life":"confirmed"},{"chromosome":"https://data.org/data","shift_code":false,"half_life":"confirmed"},{"chromosome":"https://api.com/data","shift_code":false,"half_life":"rejected"}]} | extra_field | {
"type": "object",
"properties": {
"hazmat_code": {
"type": "string",
"format": "email"
},
"conductivity": {
"type": "boolean"
},
"coverage": {
"type": "boolean"
},
"allele": {
"type": "string"
},
"currency": {
"type": "array",
"items": ... | {"conductivity": true, "coverage": false, "allele": "Hapag-Lloyd-Express", "currency": [{"chromosome": "https://data.io/api", "half_life": "confirmed"}, {"chromosome": "https://data.org/data", "shift_code": false, "half_life": "confirmed"}, {"chromosome": "https://api.com/data", "shift_code": false, "half_life": "rejec... | Unknown field 'extra_data_7602' not defined in schema | {"conductivity":true,"coverage":false,"allele":"Hapag-Lloyd-Express","currency":[{"chromosome":"https://data.io/api","half_life":"confirmed"},{"chromosome":"https://data.org/data","shift_code":false,"half_life":"confirmed"},{"chromosome":"https://api.com/data","shift_code":false,"half_life":"rejected"}]} |
TASK repair_structured_output
SPEC
FIELD field_g85 TYPE string VALUES free|basic|pro|enterprise REQUIRED yes
FIELD key_z85 TYPE integer REQUIRED yes
FIELD prop_n26 TYPE boolean REQUIRED yes
BROKEN_OUTPUT
{"field_g85": "invalid_value_509", "key_z85": 330, "prop_n26": true} | {"field_g85":"free","key_z85":330,"prop_n26":true} | invalid_enum | {
"type": "object",
"properties": {
"field_g85": {
"type": "string",
"enum": [
"free",
"basic",
"pro",
"enterprise"
]
},
"key_z85": {
"type": "integer"
},
"prop_n26": {
"type": "boolean"
}
},
"required": [
"prop_n26",
... | {"field_g85": "invalid_value_509", "key_z85": 330, "prop_n26": true} | Field 'field_g85' has invalid enum value 'invalid_value_509', expected one of ['free', 'basic', 'pro', 'enterprise'] | {"field_g85":"free","key_z85":330,"prop_n26":true} |
TASK repair_structured_output
SPEC
FIELD key_l25 TYPE string VALUES red|blue|green|black|white REQUIRED no
FIELD field_c42 TYPE boolean REQUIRED no
FIELD key_a55 TYPE boolean REQUIRED yes
FIELD param_f87.col_p92 TYPE string VALUES draft|published|archived REQUIRED no
FIELD param_f87.field_a10 TYPE integer REQUIRED no
... | {"key_l25":"red","key_a55":true,"param_f87":{"field_a10":86,"val_z59":{"attr_y74":"Bob","col_q30":"frameshift","col_k53":null,"dim_h06":"2026-04-21T05:20:00Z"},"field_z61":632.74},"attr_w25":{"key_h78":"pending","param_p23":524.95,"field_m05":["Oliveira"],"field_k47":[69,453]}} | boolean_as_string | {
"type": "object",
"properties": {
"key_l25": {
"type": "string",
"enum": [
"red",
"blue",
"green",
"black",
"white"
]
},
"field_c42": {
"type": "boolean"
},
"key_a55": {
"type": "boolean"
},
"param_f87": {
"typ... | {"key_l25": "red", "key_a55": "yes", "param_f87": {"field_a10": 86, "val_z59": {"attr_y74": "Bob", "col_q30": "frameshift", "col_k53": null, "dim_h06": "2026-04-21T05:20:00Z"}, "field_z61": 632.74}, "attr_w25": {"key_h78": "pending", "param_p23": 524.95, "field_m05": ["Oliveira"], "field_k47": [69, 453]}} | Field 'key_a55' must be boolean, got string | {"key_l25":"red","key_a55":true,"param_f87":{"field_a10":86,"val_z59":{"attr_y74":"Bob","col_q30":"frameshift","col_k53":null,"dim_h06":"2026-04-21T05:20:00Z"},"field_z61":632.74},"attr_w25":{"key_h78":"pending","param_p23":524.95,"field_m05":["Oliveira"],"field_k47":[69,453]}} |
TASK repair_structured_output
SPEC
FIELD dosage TYPE string_email REQUIRED yes
FIELD account_id TYPE string_uri REQUIRED no
FIELD id TYPE boolean REQUIRED no
FIELD subtotal.id TYPE number REQUIRED no
FIELD subtotal.end_date TYPE string VALUES type_a|type_b|type_c|type_d REQUIRED yes
FIELD subtotal.vital_sign TYPE stri... | {"dosage":"user@domain.org","account_id":"https://api.io/v1","id":false,"subtotal":{"id":701.61,"end_date":"type_b","vital_sign":"https://www.io/v1"},"voltage":false,"discount":"option_b","weight":true} | single_quotes | {
"type": "object",
"properties": {
"dosage": {
"type": "string",
"format": "email"
},
"account_id": {
"type": "string",
"format": "uri"
},
"id": {
"type": "boolean"
},
"subtotal": {
"type": "object",
"properties": {
"id": {
"ty... | {'dosage':'user@domain.org','account_id':'https://api.io/v1','id':false,'subtotal':{'id':701.61,'end_date':'type_b','vital_sign':'https://www.io/v1'},'voltage':false,'discount':'option_b','weight':true} | Expecting property name enclosed in double quotes | {"dosage":"user@domain.org","account_id":"https://api.io/v1","id":false,"subtotal":{"id":701.61,"end_date":"type_b","vital_sign":"https://www.io/v1"},"voltage":false,"discount":"option_b","weight":true} |
TASK repair_structured_output
SPEC
FIELD repository TYPE string VALUES reliable|unstable|intermittent REQUIRED yes
FIELD published TYPE string VALUES small|medium|large|xl REQUIRED no
FIELD chapter TYPE string VALUES email|phone|sms|push REQUIRED no
FIELD version TYPE null REQUIRED no
FIELD aligned_pct TYPE string REQ... | {"repository":"intermittent","chapter":"phone","version":null,"aligned_pct":"Charlie","manifest_ref":176,"umi":"This is a test value."} | single_quotes | {
"type": "object",
"properties": {
"repository": {
"type": "string",
"enum": [
"reliable",
"unstable",
"intermittent"
]
},
"published": {
"type": "string",
"enum": [
"small",
"medium",
"large",
"xl"
]
},
... | {'repository':'intermittent','chapter':'phone','version':null,'aligned_pct':'Charlie','manifest_ref':176,'umi':'This is a test value.'} | Expecting property name enclosed in double quotes | {"repository":"intermittent","chapter":"phone","version":null,"aligned_pct":"Charlie","manifest_ref":176,"umi":"This is a test value."} |
TASK repair_structured_output
SPEC
FIELD param_p23 TYPE string VALUES red|blue|green|black|white REQUIRED no
FIELD field_i75 TYPE string VALUES operational|degraded|offline|maintenance REQUIRED no
FIELD key_t06 TYPE integer REQUIRED no
FIELD val_i96 TYPE boolean REQUIRED yes
FIELD field_r87 TYPE boolean REQUIRED yes
... | {"field_i75":"operational","key_t06":205,"val_i96":true,"field_r87":false} | markdown_fences | {
"type": "object",
"properties": {
"param_p23": {
"type": "string",
"enum": [
"red",
"blue",
"green",
"black",
"white"
]
},
"field_i75": {
"type": "string",
"enum": [
"operational",
"degraded",
"offline",
... | ```json
{"field_i75":"operational","key_t06":205,"val_i96":true,"field_r87":false}
``` | Output contains markdown code fences | {"field_i75":"operational","key_t06":205,"val_i96":true,"field_r87":false} |
TASK repair_structured_output
SPEC
FIELD param_d69 TYPE string VALUES level_1|level_2|level_3|level_4|level_5 REQUIRED no
FIELD val_e24 TYPE string VALUES option_a|option_b REQUIRED yes
FIELD attr_v04 TYPE integer REQUIRED yes
BROKEN_OUTPUT
{"param_d69": "level_5", "val_e24": "option_b", "attr_v04": "560cm"} | {"param_d69":"level_5","val_e24":"option_b","attr_v04":560} | number_with_unit | {
"type": "object",
"properties": {
"param_d69": {
"type": "string",
"enum": [
"level_1",
"level_2",
"level_3",
"level_4",
"level_5"
]
},
"val_e24": {
"type": "string",
"enum": [
"option_a",
"option_b"
]
},
... | {"param_d69": "level_5", "val_e24": "option_b", "attr_v04": "560cm"} | Field 'attr_v04' must be number, got string with unit | {"param_d69":"level_5","val_e24":"option_b","attr_v04":560} |
TASK repair_structured_output
SPEC
FIELD version TYPE string VALUES option_a|option_b|option_c|option_d|option_e|option_f REQUIRED yes
FIELD conductivity TYPE string VALUES operational|degraded|offline|maintenance REQUIRED yes
FIELD age TYPE integer REQUIRED no
FIELD amplitude.category.insurance_id TYPE integer REQUIR... | {"version":"option_f","conductivity":"degraded","age":244,"amplitude":{"filter_flag":false,"thumbnail":"cat_a","type":"closed"},"shipper_ref":"MV-Evergreen-01"} | tool_call_bad_format | {
"type": "object",
"properties": {
"version": {
"type": "string",
"enum": [
"option_a",
"option_b",
"option_c",
"option_d",
"option_e",
"option_f"
]
},
"conductivity": {
"type": "string",
"enum": [
"operational",
... | <functioncall> search
{version: "option_f", conductivity: "degraded", age: 244, amplitude: {filter_flag: false, thumbnail: "cat_a", type: "closed"}, shipper_ref: "MV-Evergreen-01"} | Tool call has malformed arguments — unquoted keys in function parameters | {"version":"option_f","conductivity":"degraded","age":244,"amplitude":{"filter_flag":false,"thumbnail":"cat_a","type":"closed"},"shipper_ref":"MV-Evergreen-01"} |
TASK repair_structured_output
SPEC
FIELD width TYPE string VALUES homozygous|heterozygous|hemizygous REQUIRED no
FIELD interest_rate TYPE string REQUIRED no
FIELD updated_at TYPE string VALUES berthed|anchored|underway|moored REQUIRED no
FIELD quality_score TYPE string REQUIRED no
FIELD catalyst.name TYPE string VALUE... | {"interest_rate":"Silva","updated_at":"underway","catalyst":{"name":"viewer","vessel_name":{"due_date":"nonsense","current_draw":null,"yield_pct":147.65},"department":{"role":985,"compound":"unstable","size":"GRCh38","transaction_id":true},"commit_hash":"maintenance","throttle_pos":{"collateral":null,"dosage":"Santos",... | markdown_fences | {
"type": "object",
"properties": {
"width": {
"type": "string",
"enum": [
"homozygous",
"heterozygous",
"hemizygous"
]
},
"interest_rate": {
"type": "string"
},
"updated_at": {
"type": "string",
"enum": [
"berthed",
"an... | ```json
{"interest_rate":"Silva","updated_at":"underway","catalyst":{"name":"viewer","vessel_name":{"due_date":"nonsense","current_draw":null,"yield_pct":147.65},"department":{"role":985,"compound":"unstable","size":"GRCh38","transaction_id":true},"commit_hash":"maintenance","throttle_pos":{"collateral":null,"dosage":"... | Output contains markdown code fences | {"interest_rate":"Silva","updated_at":"underway","catalyst":{"name":"viewer","vessel_name":{"due_date":"nonsense","current_draw":null,"yield_pct":147.65},"department":{"role":985,"compound":"unstable","size":"GRCh38","transaction_id":true},"commit_hash":"maintenance","throttle_pos":{"collateral":null,"dosage":"Santos",... |
TASK repair_structured_output
SPEC
FIELD address.aligned_pct TYPE number REQUIRED yes
FIELD address.throttle_pos TYPE number REQUIRED no
FIELD address.language.section TYPE string VALUES cat_a|cat_b|cat_c REQUIRED no
FIELD address.language.total TYPE integer REQUIRED yes
FIELD address.language.comments TYPE integer RE... | {"address":{"aligned_pct":626.91,"throttle_pos":534.61,"language":{"section":"cat_a","total":469,"comments":417,"subject":169,"language":"Diana"},"subtotal":{"created_at":"London","index":true,"name":true,"crew_id":581.59}},"strand":21.95,"gene_id":"https://example.org/data","company":"type_b","due_date":"divorced","ur... | unquoted_keys | {
"type": "object",
"properties": {
"address": {
"type": "object",
"properties": {
"aligned_pct": {
"type": "number"
},
"throttle_pos": {
"type": "number"
},
"language": {
"type": "object",
"properties": {
"s... | {address:{aligned_pct:626.91,throttle_pos:534.61,language:{section:"cat_a",total:469,comments:417,subject:169,language:"Diana"},subtotal:{created_at:"London",index:true,name:true,crew_id:581.59}},strand:21.95,gene_id:"https://example.org/data",company:"type_b",due_date:"divorced",url:907} | Expecting property name enclosed in double quotes | {"address":{"aligned_pct":626.91,"throttle_pos":534.61,"language":{"section":"cat_a","total":469,"comments":417,"subject":169,"language":"Diana"},"subtotal":{"created_at":"London","index":true,"name":true,"crew_id":581.59}},"strand":21.95,"gene_id":"https://example.org/data","company":"type_b","due_date":"divorced","ur... |
TASK repair_structured_output
SPEC
FIELD torque_output TYPE string REQUIRED no
FIELD salinity TYPE string VALUES single|married|divorced REQUIRED no
FIELD last_name.status_code TYPE string_date-time REQUIRED no
FIELD last_name.span_id TYPE boolean REQUIRED no
FIELD last_name.section TYPE number REQUIRED no
FIELD last_... | {"torque_output":"Santos","last_name":{"status_code":"2022-04-09T21:43:00Z","span_id":false,"date":"ops@example.com"}} | thought_process | {
"type": "object",
"properties": {
"torque_output": {
"type": "string"
},
"salinity": {
"type": "string",
"enum": [
"single",
"married",
"divorced"
]
},
"last_name": {
"type": "object",
"properties": {
"status_code": {
... | Let me analyze the request and generate the appropriate JSON.
The user wants a structured object with specific fields.
{"torque_output":"Santos","last_name":{"status_code":"2022-04-09T21:43:00Z","span_id":false,"date":"ops@example.com"}} | Output contains chain-of-thought reasoning before JSON | {"torque_output":"Santos","last_name":{"status_code":"2022-04-09T21:43:00Z","span_id":false,"date":"ops@example.com"}} |
TASK repair_structured_output
SPEC
FIELD branch TYPE string REQUIRED no
FIELD index.catalyst TYPE number REQUIRED no
FIELD index.zip_code TYPE number REQUIRED yes
FIELD index.values.deploy_target TYPE string VALUES low|medium|high|critical REQUIRED yes
FIELD index.values.paragraph TYPE string REQUIRED no
FIELD index.v... | {"branch":"FWD","index":{"catalyst":292.74,"zip_code":413.25,"values":{"deploy_target":"high","paragraph":"PASS","compound":571,"format":"enterprise","thumbnail":27.97,"full_name":666,"chromosome":"PASS"},"torque_output":{"credit_score":"RTG-04","deploy_target":false,"payment_status":"This is a test value.","due_date":... | trailing_comma | {
"type": "object",
"properties": {
"branch": {
"type": "string"
},
"index": {
"type": "object",
"properties": {
"catalyst": {
"type": "number"
},
"zip_code": {
"type": "number"
},
"values": {
"type": "object",
... | {"branch":"FWD","index":{"catalyst":292.74,"zip_code":413.25,"values":{"deploy_target":"high","paragraph":"PASS","compound":571,"format":"enterprise","thumbnail":27.97,"full_name":666,"chromosome":"PASS",},"torque_output":{"credit_score":"RTG-04","deploy_target":false,"payment_status":"This is a test value.","due_date"... | Unexpected trailing comma | {"branch":"FWD","index":{"catalyst":292.74,"zip_code":413.25,"values":{"deploy_target":"high","paragraph":"PASS","compound":571,"format":"enterprise","thumbnail":27.97,"full_name":666,"chromosome":"PASS"},"torque_output":{"credit_score":"RTG-04","deploy_target":false,"payment_status":"This is a test value.","due_date":... |
TASK repair_structured_output
SPEC
FIELD shipper_ref.turbidity TYPE null REQUIRED no
FIELD shipper_ref.ward TYPE null REQUIRED no
FIELD shipper_ref.decay_rate TYPE string VALUES reliable|unstable|intermittent REQUIRED yes
FIELD shipper_ref.enabled TYPE integer REQUIRED yes
FIELD shipper_ref.department TYPE null REQUIR... | {"shipper_ref":{"turbidity":null,"ward":null,"decay_rate":"unstable","enabled":175},"priority":"anchored","crew_id":807.67,"medication":374.0,"fleet_number":true,"date":"USD"} | extra_text_after | {
"type": "object",
"properties": {
"shipper_ref": {
"type": "object",
"properties": {
"turbidity": {
"type": "null"
},
"ward": {
"type": "null"
},
"decay_rate": {
"type": "string",
"enum": [
"reliable",
... | {"shipper_ref":{"turbidity":null,"ward":null,"decay_rate":"unstable","enabled":175},"priority":"anchored","crew_id":807.67,"medication":374.0,"fleet_number":true,"date":"USD"}
Data logged successfully. | Output contains non-JSON text after the object | {"shipper_ref":{"turbidity":null,"ward":null,"decay_rate":"unstable","enabled":175},"priority":"anchored","crew_id":807.67,"medication":374.0,"fleet_number":true,"date":"USD"} |
TASK repair_structured_output
SPEC
FIELD height TYPE string VALUES USD|EUR|GBP|BRL|JPY REQUIRED yes
FIELD tile TYPE string REQUIRED yes
FIELD end_date TYPE string REQUIRED no
FIELD visible TYPE number REQUIRED yes
BROKEN_OUTPUT
<functioncall> validate_sample
{height: "GBP", tile: "quux", end_date: "hello", visible: 5... | {"height":"GBP","tile":"quux","end_date":"hello","visible":505.73} | tool_call_bad_format | {
"type": "object",
"properties": {
"height": {
"type": "string",
"enum": [
"USD",
"EUR",
"GBP",
"BRL",
"JPY"
]
},
"tile": {
"type": "string"
},
"end_date": {
"type": "string"
},
"visible": {
"type": "number"
... | <functioncall> validate_sample
{height: "GBP", tile: "quux", end_date: "hello", visible: 505.73} | Tool call has malformed arguments — unquoted keys in function parameters | {"height":"GBP","tile":"quux","end_date":"hello","visible":505.73} |
TASK repair_structured_output
SPEC
FIELD values TYPE string VALUES operational|degraded|offline|maintenance REQUIRED yes
FIELD product_id TYPE string VALUES success|error|warning|info REQUIRED no
FIELD title TYPE boolean REQUIRED no
FIELD loan_amount.filter_flag TYPE string VALUES draft|published|archived REQUIRED no
... | {"values":"maintenance","title":true,"loan_amount":{"pressure_kpa":"info","organism":"https://www.org/data","user_id":false,"subtotal":"frameshift"}} | null_required | {
"type": "object",
"properties": {
"values": {
"type": "string",
"enum": [
"operational",
"degraded",
"offline",
"maintenance"
]
},
"product_id": {
"type": "string",
"enum": [
"success",
"error",
"warning",
"i... | {"values": null, "title": true, "loan_amount": {"pressure_kpa": "info", "organism": "https://www.org/data", "user_id": false, "subtotal": "frameshift"}} | Required field 'values' is null | {"values":"maintenance","title":true,"loan_amount":{"pressure_kpa":"info","organism":"https://www.org/data","user_id":false,"subtotal":"frameshift"}} |
TASK repair_structured_output
SPEC
FIELD score TYPE string VALUES synonymous|missense|nonsense|frameshift REQUIRED no
FIELD visible TYPE integer REQUIRED yes
FIELD count TYPE boolean REQUIRED no
BROKEN_OUTPUT
I need to look up the information first.
Action: get_weather
Result: {"count": false}
Processing the request... | {"visible":84,"count":false} | agent_chain | {
"type": "object",
"properties": {
"score": {
"type": "string",
"enum": [
"synonymous",
"missense",
"nonsense",
"frameshift"
]
},
"visible": {
"type": "integer"
},
"count": {
"type": "boolean"
}
},
"required": [
"visible"... | I need to look up the information first.
Action: get_weather
Result: {"count": false}
Processing the request now.
Action: process_payment
Result: | Agent multi-step chain with truncated tool output | {"visible":84,"count":false} |
TASK repair_structured_output
SPEC
FIELD val_z79 TYPE string VALUES option_a|option_b|option_c|option_d|option_e|option_f REQUIRED yes
FIELD dim_m12 TYPE string VALUES mode_a|mode_b|mode_c|mode_d|mode_e|mode_f REQUIRED no
FIELD prop_f71 TYPE string VALUES new|in_transit|delivered|returned REQUIRED no
FIELD param_a55 T... | {"val_z79":"option_f","prop_f71":"returned","prop_h47":"level_2","field_c16":834.52} | truncated_object | {
"type": "object",
"properties": {
"val_z79": {
"type": "string",
"enum": [
"option_a",
"option_b",
"option_c",
"option_d",
"option_e",
"option_f"
]
},
"dim_m12": {
"type": "string",
"enum": [
"mode_a",
"mode_... | {"val_z79":"option_f","prop_f71":"returned","prop_h47":"level_2","field_c16":834.52 | Unexpected end of JSON input — truncated object | {"val_z79":"option_f","prop_f71":"returned","prop_h47":"level_2","field_c16":834.52} |
TASK repair_structured_output
SPEC
FIELD email TYPE string REQUIRED no
FIELD subtotal TYPE string VALUES open|in_progress|resolved|closed REQUIRED yes
FIELD city TYPE boolean REQUIRED no
FIELD berth_slot TYPE string VALUES success|error|warning|info REQUIRED no
FIELD shipping TYPE string REQUIRED no
BROKEN_OUTPUT
Res... | {"email":"Smith","subtotal":"resolved","city":false,"shipping":"Berlin"} | partial_structure | {
"type": "object",
"properties": {
"email": {
"type": "string"
},
"subtotal": {
"type": "string",
"enum": [
"open",
"in_progress",
"resolved",
"closed"
]
},
"city": {
"type": "boolean"
},
"berth_slot": {
"type": "string... | Result: subtotal=resolved, {"email":"Smith","subtotal":"resolved","city":false,"shipping":"Berlin"} | Output mixes natural language with JSON | {"email":"Smith","subtotal":"resolved","city":false,"shipping":"Berlin"} |
TASK repair_structured_output
SPEC
FIELD total TYPE string VALUES operational|degraded|offline|maintenance REQUIRED no
FIELD items TYPE string_date-time REQUIRED no
FIELD format TYPE string VALUES free|basic|pro|enterprise REQUIRED yes
FIELD amount TYPE null REQUIRED yes
FIELD decay_rate.altitude TYPE string REQUIRED ... | {"total":"operational","format":"basic","amount":null,"torque_output":246,"end_date":"qux"} | wrong_type | {
"type": "object",
"properties": {
"total": {
"type": "string",
"enum": [
"operational",
"degraded",
"offline",
"maintenance"
]
},
"items": {
"type": "string",
"format": "date-time"
},
"format": {
"type": "string",
"enum"... | {"total": "operational", "format": "basic", "amount": null, "torque_output": "\"246\"", "end_date": "qux"} | Field 'torque_output' must be integer, got string | {"total":"operational","format":"basic","amount":null,"torque_output":246,"end_date":"qux"} |
TASK repair_structured_output
SPEC
FIELD amount TYPE integer REQUIRED no
FIELD gene_id TYPE null REQUIRED no
FIELD last_name TYPE boolean REQUIRED no
FIELD brake_pressure TYPE string VALUES free|basic|pro|enterprise REQUIRED yes
BROKEN_OUTPUT
lookup_customer(amount=803, gene_id=None, last_name=False, brake_pressure='... | {"amount":803,"gene_id":null,"last_name":false,"brake_pressure":"enterprise"} | tool_call_python_syntax | {
"type": "object",
"properties": {
"amount": {
"type": "integer"
},
"gene_id": {
"type": "null"
},
"last_name": {
"type": "boolean"
},
"brake_pressure": {
"type": "string",
"enum": [
"free",
"basic",
"pro",
"enterprise"
... | lookup_customer(amount=803, gene_id=None, last_name=False, brake_pressure='enterprise') | Tool call uses Python syntax instead of JSON | {"amount":803,"gene_id":null,"last_name":false,"brake_pressure":"enterprise"} |
TASK repair_structured_output
SPEC
FIELD prop_r55 TYPE string VALUES homozygous|heterozygous|hemizygous REQUIRED yes
FIELD param_o59 TYPE string VALUES low|medium|high|critical REQUIRED no
FIELD dim_n39 TYPE string REQUIRED yes
FIELD col_f90 TYPE string VALUES active|inactive|pending REQUIRED no
FIELD param_a54 TYPE s... | {"prop_r55":"heterozygous","dim_n39":"REV","col_f90":"pending","param_a54":"https://data.com/api"} | partial_structure | {
"type": "object",
"properties": {
"prop_r55": {
"type": "string",
"enum": [
"homozygous",
"heterozygous",
"hemizygous"
]
},
"param_o59": {
"type": "string",
"enum": [
"low",
"medium",
"high",
"critical"
]
}... | Based on the data, prop_r55 is heterozygous. {"prop_r55":"heterozygous","dim_n39":"REV","col_f90":"pending","param_a54":"https://data.com/api"} | Output mixes natural language with JSON | {"prop_r55":"heterozygous","dim_n39":"REV","col_f90":"pending","param_a54":"https://data.com/api"} |
TASK repair_structured_output
SPEC
FIELD param_l25 TYPE string VALUES cat_a|cat_b|cat_c|cat_d|cat_e|cat_f REQUIRED yes
FIELD key_a24 TYPE null REQUIRED yes
FIELD key_h06.key_n45.attr_q74 TYPE string REQUIRED yes
FIELD key_h06.key_n45.param_d22 TYPE string VALUES cat_a|cat_b|cat_c|cat_d|cat_e|cat_f REQUIRED yes
FIELD k... | {"param_l25":"cat_f","key_a24":null,"key_w76":{"param_c21":406,"dim_k03":"MV-Evergreen-01","param_n24":"RTG-04","key_o23":626,"key_t86":1000,"field_h55":true,"val_r89":984.81},"param_l91":"intermittent","col_c05":"REV","field_w78":"user@test.io"} | thought_process | {
"type": "object",
"properties": {
"param_l25": {
"type": "string",
"enum": [
"cat_a",
"cat_b",
"cat_c",
"cat_d",
"cat_e",
"cat_f"
]
},
"key_a24": {
"type": "null"
},
"key_h06": {
"type": "object",
"properties":... | Processing the request now.
I'll validate against the schema.
{"param_l25":"cat_f","key_a24":null,"key_w76":{"param_c21":406,"dim_k03":"MV-Evergreen-01","param_n24":"RTG-04","key_o23":626,"key_t86":1000,"field_h55":true,"val_r89":984.81},"param_l91":"intermittent","col_c05":"REV","field_w78":"user@test.io"} | Output contains chain-of-thought reasoning before JSON | {"param_l25":"cat_f","key_a24":null,"key_w76":{"param_c21":406,"dim_k03":"MV-Evergreen-01","param_n24":"RTG-04","key_o23":626,"key_t86":1000,"field_h55":true,"val_r89":984.81},"param_l91":"intermittent","col_c05":"REV","field_w78":"user@test.io"} |
TASK repair_structured_output
SPEC
FIELD title TYPE boolean REQUIRED no
FIELD size TYPE string REQUIRED no
FIELD chromosome TYPE integer REQUIRED no
FIELD step TYPE string VALUES new|in_transit|delivered|returned REQUIRED yes
FIELD frequency_hz TYPE boolean REQUIRED no
BROKEN_OUTPUT
Analyzing the schema to generate v... | {"title":true,"step":"new","frequency_hz":true} | thought_process | {
"type": "object",
"properties": {
"title": {
"type": "boolean"
},
"size": {
"type": "string"
},
"chromosome": {
"type": "integer"
},
"step": {
"type": "string",
"enum": [
"new",
"in_transit",
"delivered",
"returned"
]
... | Analyzing the schema to generate valid JSON...
Checking required fields and types...
{"title":true,"step":"new","frequency_hz":true} | Output contains chain-of-thought reasoning before JSON | {"title":true,"step":"new","frequency_hz":true} |
TASK repair_structured_output
SPEC
FIELD footnote TYPE string REQUIRED yes
FIELD ward TYPE boolean REQUIRED no
FIELD start_date TYPE string REQUIRED no
FIELD items TYPE number REQUIRED no
FIELD weight TYPE integer REQUIRED no
BROKEN_OUTPUT
Let me check the system.
Action: fetch_lab_result
Arguments: {"ward": false, "... | {"footnote":"sample","ward":false,"start_date":"world","items":651.1,"weight":72} | tool_call_partial_args | {
"type": "object",
"properties": {
"footnote": {
"type": "string"
},
"ward": {
"type": "boolean"
},
"start_date": {
"type": "string"
},
"items": {
"type": "number"
},
"weight": {
"type": "integer"
}
},
"required": [
"footnote"
]
} | Let me check the system.
Action: fetch_lab_result
Arguments: {"ward": false, "start_date": "world", "items": 651.1, "weight": 72} | Agent tool call missing required parameter 'footnote' | {"footnote":"sample","ward":false,"start_date":"world","items":651.1,"weight":72} |
TASK repair_structured_output
SPEC
FIELD ph_level.discount TYPE number REQUIRED no
FIELD ph_level.deploy_target TYPE null REQUIRED yes
FIELD ph_level.vital_sign.pressure_kpa TYPE number REQUIRED yes
FIELD ph_level.vital_sign.full_name TYPE string REQUIRED no
FIELD ph_level.vital_sign.visible TYPE null REQUIRED yes
FIE... | {"ph_level":{"discount":836.73,"deploy_target":null},"subtotal":false,"state":"test","loan_amount":"2023-12-17T08:25:00Z"} | extra_field | {
"type": "object",
"properties": {
"ph_level": {
"type": "object",
"properties": {
"discount": {
"type": "number"
},
"deploy_target": {
"type": "null"
},
"vital_sign": {
"type": "object",
"properties": {
"pr... | {"ph_level": {"discount": 836.73, "deploy_target": null}, "subtotal": false, "state": "test", "loan_amount": "2023-12-17T08:25:00Z", "extra_info_5533": "unexpected"} | Unknown field 'extra_info_5533' not defined in schema | {"ph_level":{"discount":836.73,"deploy_target":null},"subtotal":false,"state":"test","loan_amount":"2023-12-17T08:25:00Z"} |
TASK repair_structured_output
SPEC
FIELD vessel_name TYPE string VALUES mode_a|mode_b|mode_c|mode_d|mode_e|mode_f REQUIRED yes
FIELD salinity TYPE string_uri REQUIRED yes
FIELD batch_code TYPE number REQUIRED no
FIELD freight_class TYPE string VALUES type_a|type_b|type_c|type_d|type_e REQUIRED no
FIELD umi TYPE string... | {"vessel_name":"mode_a","salinity":"https://data.io/api","batch_code":189.73,"freight_class":"type_d","umi":"This is a test value.","chromosome":null,"width":427} | extra_text_before | {
"type": "object",
"properties": {
"vessel_name": {
"type": "string",
"enum": [
"mode_a",
"mode_b",
"mode_c",
"mode_d",
"mode_e",
"mode_f"
]
},
"salinity": {
"type": "string",
"format": "uri"
},
"batch_code": {
... | Based on your request, here is the data:
{"vessel_name":"mode_a","salinity":"https://data.io/api","batch_code":189.73,"freight_class":"type_d","umi":"This is a test value.","chromosome":null,"width":427} | Output contains non-JSON text before the object | {"vessel_name":"mode_a","salinity":"https://data.io/api","batch_code":189.73,"freight_class":"type_d","umi":"This is a test value.","chromosome":null,"width":427} |
TASK repair_structured_output
SPEC
FIELD dim_r50 TYPE string VALUES small|medium|large|xl REQUIRED no
FIELD key_u14 TYPE number REQUIRED yes
FIELD field_d83 TYPE string VALUES option_a|option_b|option_c|option_d REQUIRED no
BROKEN_OUTPUT
{"dim_r50": "xl", "field_d83": "option_c"} | {"dim_r50":"xl","key_u14":295.13,"field_d83":"option_c"} | missing_required | {
"type": "object",
"properties": {
"dim_r50": {
"type": "string",
"enum": [
"small",
"medium",
"large",
"xl"
]
},
"key_u14": {
"type": "number"
},
"field_d83": {
"type": "string",
"enum": [
"option_a",
"option_b... | {"dim_r50": "xl", "field_d83": "option_c"} | Required field 'key_u14' is missing | {"dim_r50":"xl","key_u14":295.13,"field_d83":"option_c"} |
TASK repair_structured_output
SPEC
FIELD prop_u93 TYPE number REQUIRED yes
FIELD field_f10 TYPE integer REQUIRED no
FIELD field_x42 TYPE string REQUIRED no
FIELD val_z64 TYPE boolean REQUIRED no
BROKEN_OUTPUT
{"prop_u93": 168.27, "field_f10": "\"207\"", "field_x42": "test@example.com", "val_z64": true} | {"prop_u93":168.27,"field_f10":207,"field_x42":"test@example.com","val_z64":true} | wrong_type | {
"type": "object",
"properties": {
"prop_u93": {
"type": "number"
},
"field_f10": {
"type": "integer"
},
"field_x42": {
"type": "string"
},
"val_z64": {
"type": "boolean"
}
},
"required": [
"prop_u93"
]
} | {"prop_u93": 168.27, "field_f10": "\"207\"", "field_x42": "test@example.com", "val_z64": true} | Field 'field_f10' must be integer, got string | {"prop_u93":168.27,"field_f10":207,"field_x42":"test@example.com","val_z64":true} |
TASK repair_structured_output
SPEC
FIELD val_k51 TYPE string REQUIRED no
FIELD field_u55 TYPE string REQUIRED yes
FIELD prop_j97.val_h90 TYPE string VALUES small|medium|large|xl REQUIRED no
FIELD prop_j97.dim_q44 TYPE string VALUES reliable|unstable|intermittent REQUIRED yes
FIELD prop_j97.field_f99 TYPE string VALUES... | {"val_k51":"test@example.com","field_u55":"qux","prop_j97":{"val_h90":"large","dim_q44":"reliable","field_f99":"active","dim_h40":164.01,"prop_a48":null,"dim_j96":698.99,"prop_t08":"active"}} | unquoted_keys | {
"type": "object",
"properties": {
"val_k51": {
"type": "string"
},
"field_u55": {
"type": "string"
},
"prop_j97": {
"type": "object",
"properties": {
"val_h90": {
"type": "string",
"enum": [
"small",
"medium",
... | {val_k51:"test@example.com",field_u55:"qux",prop_j97:{val_h90:"large",dim_q44:"reliable",field_f99:"active",dim_h40:164.01,prop_a48:null,dim_j96:698.99,prop_t08:"active"}} | Expecting property name enclosed in double quotes | {"val_k51":"test@example.com","field_u55":"qux","prop_j97":{"val_h90":"large","dim_q44":"reliable","field_f99":"active","dim_h40":164.01,"prop_a48":null,"dim_j96":698.99,"prop_t08":"active"}} |
TASK repair_structured_output
SPEC
FIELD features TYPE string REQUIRED no
FIELD frequency_hz TYPE string REQUIRED no
FIELD image_url TYPE integer REQUIRED no
FIELD id TYPE number REQUIRED no
FIELD temp_celsius TYPE string REQUIRED no
FIELD start_date TYPE integer REQUIRED yes
BROKEN_OUTPUT
I need to look up the infor... | {"frequency_hz":"test","image_url":922,"temp_celsius":"quux","start_date":855} | agent_chain | {
"type": "object",
"properties": {
"features": {
"type": "string"
},
"frequency_hz": {
"type": "string"
},
"image_url": {
"type": "integer"
},
"id": {
"type": "number"
},
"temp_celsius": {
"type": "string"
},
"start_date": {
"type": "i... | I need to look up the information first.
Action: calibrate_instrument
Result: {"frequency_hz": "test", "image_url": 922, "temp_celsius": "quux"}
Processing the request now.
Action: update_record
Result: | Agent multi-step chain with truncated tool output | {"frequency_hz":"test","image_url":922,"temp_celsius":"quux","start_date":855} |
TASK repair_structured_output
SPEC
FIELD freight_class.current_draw TYPE number REQUIRED no
FIELD freight_class.ward TYPE integer REQUIRED yes
FIELD freight_class.interest_rate TYPE string REQUIRED yes
FIELD freight_class.hazmat_code TYPE number REQUIRED no
FIELD rating TYPE string_date-time REQUIRED no
FIELD state TY... | {"rating":"2021-08-19T20:06:00Z","state":562,"insurance_id":{"compound":"missense","company":false,"values":{"run_id":932.85,"aligned_pct":"coastal"},"quantity":"https://example.com/api","medication":"large"}} | number_with_unit | {
"type": "object",
"properties": {
"freight_class": {
"type": "object",
"properties": {
"current_draw": {
"type": "number"
},
"ward": {
"type": "integer"
},
"interest_rate": {
"type": "string"
},
"hazmat_code": {
... | {"rating": "2021-08-19T20:06:00Z", "state": "562cm", "insurance_id": {"compound": "missense", "company": false, "values": {"run_id": 932.85, "aligned_pct": "coastal"}, "quantity": "https://example.com/api", "medication": "large"}} | Field 'state' must be number, got string with unit | {"rating":"2021-08-19T20:06:00Z","state":562,"insurance_id":{"compound":"missense","company":false,"values":{"run_id":932.85,"aligned_pct":"coastal"},"quantity":"https://example.com/api","medication":"large"}} |
TASK repair_structured_output
SPEC
FIELD prop_k02 TYPE integer REQUIRED no
FIELD dim_r03.param_r95 TYPE string REQUIRED yes
FIELD dim_r03.field_j35 TYPE string_email REQUIRED no
FIELD dim_r03.prop_z14 TYPE string VALUES cat_a|cat_b|cat_c|cat_d|cat_e REQUIRED yes
FIELD field_n26 TYPE integer REQUIRED no
FIELD prop_w38 ... | {"prop_k02":2,"dim_r03":{"param_r95":"FWD","field_j35":"ops@test.io","prop_z14":"cat_b"},"prop_w38":null,"attr_n33":null} | truncated_object | {
"type": "object",
"properties": {
"prop_k02": {
"type": "integer"
},
"dim_r03": {
"type": "object",
"properties": {
"param_r95": {
"type": "string"
},
"field_j35": {
"type": "string",
"format": "email"
},
"prop_z14... | {"prop_k02":2,"dim_r03":{"param_r95":"FWD","field_j35":"ops@test.io","prop_z14":"cat_b"},"prop_w38":null,"attr_n33":null | Unexpected end of JSON input — truncated object | {"prop_k02":2,"dim_r03":{"param_r95":"FWD","field_j35":"ops@test.io","prop_z14":"cat_b"},"prop_w38":null,"attr_n33":null} |
TASK repair_structured_output
SPEC
FIELD rating TYPE string VALUES admin|editor|viewer REQUIRED yes
FIELD batch_code TYPE string VALUES free|basic|pro|enterprise REQUIRED yes
FIELD annotation TYPE integer REQUIRED no
FIELD bearing TYPE boolean REQUIRED no
BROKEN_OUTPUT
{"rating":"viewer","batch_code":"enterprise","an... | {"rating":"viewer","batch_code":"enterprise","annotation":754,"bearing":false} | missing_brace | {
"type": "object",
"properties": {
"rating": {
"type": "string",
"enum": [
"admin",
"editor",
"viewer"
]
},
"batch_code": {
"type": "string",
"enum": [
"free",
"basic",
"pro",
"enterprise"
]
},
"annotati... | {"rating":"viewer","batch_code":"enterprise","annotation":754,"bearing":false | Missing closing brace | {"rating":"viewer","batch_code":"enterprise","annotation":754,"bearing":false} |
TASK repair_structured_output
SPEC
FIELD ph_level TYPE string VALUES draft|published|archived REQUIRED no
FIELD shipper_ref TYPE string VALUES level_1|level_2 REQUIRED yes
FIELD title TYPE boolean REQUIRED no
FIELD run_id TYPE string REQUIRED no
FIELD subject[] TYPE string_date-time REQUIRED yes
FIELD ward[].weight TY... | {"ph_level":"published","shipper_ref":"level_2","run_id":"sample","subject":["2023-06-09T06:13:00Z"]} | missing_brace | {
"type": "object",
"properties": {
"ph_level": {
"type": "string",
"enum": [
"draft",
"published",
"archived"
]
},
"shipper_ref": {
"type": "string",
"enum": [
"level_1",
"level_2"
]
},
"title": {
"type": "boolean... | "ph_level":"published","shipper_ref":"level_2","run_id":"sample","subject":["2023-06-09T06:13:00Z"]} | Missing closing brace | {"ph_level":"published","shipper_ref":"level_2","run_id":"sample","subject":["2023-06-09T06:13:00Z"]} |
TASK repair_structured_output
SPEC
FIELD organism TYPE string VALUES reliable|unstable|intermittent REQUIRED no
FIELD interest_rate TYPE string REQUIRED yes
FIELD chapter TYPE null REQUIRED yes
FIELD shipper_ref TYPE integer REQUIRED yes
BROKEN_OUTPUT
create_order(organism='intermittent', interest_rate='Silva', chapt... | {"organism":"intermittent","interest_rate":"Silva","chapter":null,"shipper_ref":460} | tool_call_python_syntax | {
"type": "object",
"properties": {
"organism": {
"type": "string",
"enum": [
"reliable",
"unstable",
"intermittent"
]
},
"interest_rate": {
"type": "string"
},
"chapter": {
"type": "null"
},
"shipper_ref": {
"type": "integer"
... | create_order(organism='intermittent', interest_rate='Silva', chapter=None, shipper_ref=460) | Tool call uses Python syntax instead of JSON | {"organism":"intermittent","interest_rate":"Silva","chapter":null,"shipper_ref":460} |
TASK repair_structured_output
SPEC
FIELD maturity_date TYPE string VALUES new|in_transit|delivered|returned REQUIRED yes
FIELD subtotal TYPE string VALUES reliable|unstable|intermittent REQUIRED yes
FIELD procedure_code TYPE number REQUIRED yes
BROKEN_OUTPUT
Sure, here's the result:
{"maturity_date":"returned","subto... | {"maturity_date":"returned","subtotal":"intermittent","procedure_code":421.7} | extra_text_before | {
"type": "object",
"properties": {
"maturity_date": {
"type": "string",
"enum": [
"new",
"in_transit",
"delivered",
"returned"
]
},
"subtotal": {
"type": "string",
"enum": [
"reliable",
"unstable",
"intermittent"
... | Sure, here's the result:
{"maturity_date":"returned","subtotal":"intermittent","procedure_code":421.7} | Output contains non-JSON text before the object | {"maturity_date":"returned","subtotal":"intermittent","procedure_code":421.7} |
TASK repair_structured_output
SPEC
FIELD weight TYPE string VALUES level_1|level_2|level_3|level_4|level_5|level_6 REQUIRED no
FIELD total TYPE string VALUES mode_a|mode_b|mode_c|mode_d|mode_e REQUIRED no
FIELD rating TYPE string VALUES level_1|level_2 REQUIRED yes
FIELD age TYPE integer REQUIRED yes
BROKEN_OUTPUT
ge... | {"weight":"level_5","rating":"level_2","age":597} | tool_call_python_syntax | {
"type": "object",
"properties": {
"weight": {
"type": "string",
"enum": [
"level_1",
"level_2",
"level_3",
"level_4",
"level_5",
"level_6"
]
},
"total": {
"type": "string",
"enum": [
"mode_a",
"mode_b",
... | get_inventory(weight='level_5', rating='level_2', age=597) | Tool call uses Python syntax instead of JSON | {"weight":"level_5","rating":"level_2","age":597} |
TASK repair_structured_output
SPEC
FIELD val_x77 TYPE string_email REQUIRED no
FIELD attr_d56 TYPE string REQUIRED yes
FIELD param_l11 TYPE string REQUIRED no
FIELD param_q18 TYPE number REQUIRED yes
BROKEN_OUTPUT
{"attr_d56": null, "param_q18": 875.32} | {"attr_d56":"New York","param_q18":875.32} | null_required | {
"type": "object",
"properties": {
"val_x77": {
"type": "string",
"format": "email"
},
"attr_d56": {
"type": "string"
},
"param_l11": {
"type": "string"
},
"param_q18": {
"type": "number"
}
},
"required": [
"attr_d56",
"param_q18"
]
} | {"attr_d56": null, "param_q18": 875.32} | Required field 'attr_d56' is null | {"attr_d56":"New York","param_q18":875.32} |
TASK repair_structured_output
SPEC
FIELD features TYPE string REQUIRED yes
FIELD run_id TYPE string VALUES new|in_transit|delivered|returned REQUIRED yes
FIELD tax.visible TYPE string REQUIRED no
FIELD tax.aligned_pct TYPE string REQUIRED no
FIELD tax.barcode TYPE string VALUES active|inactive|pending REQUIRED yes
FIE... | {"features":"Bob","run_id":"returned","tax":{"visible":"Jane","aligned_pct":"Paris","barcode":"active","payment_status":{"tags":206,"username":485.21,"fleet_number":true,"lane":[846,672],"isotope":["basic"]}}} | markdown_explanation | {
"type": "object",
"properties": {
"features": {
"type": "string"
},
"run_id": {
"type": "string",
"enum": [
"new",
"in_transit",
"delivered",
"returned"
]
},
"tax": {
"type": "object",
"properties": {
"visible": {
... | Let me provide the data in JSON format:
```json
{"features":"Bob","run_id":"returned","tax":{"visible":"Jane","aligned_pct":"Paris","barcode":"active","payment_status":{"tags":206,"username":485.21,"fleet_number":true,"lane":[846,672],"isotope":["basic"]}}}
```
I've ensured all required fields are present. | Output contains markdown and explanatory text around JSON | {"features":"Bob","run_id":"returned","tax":{"visible":"Jane","aligned_pct":"Paris","barcode":"active","payment_status":{"tags":206,"username":485.21,"fleet_number":true,"lane":[846,672],"isotope":["basic"]}}} |
TASK repair_structured_output
SPEC
FIELD attr_x83 TYPE string VALUES red|blue|green|black|white REQUIRED no
FIELD dim_z56 TYPE string REQUIRED yes
FIELD field_u63 TYPE boolean REQUIRED no
FIELD field_z90 TYPE integer REQUIRED yes
FIELD col_l11 TYPE string VALUES red|blue|green|black|white REQUIRED yes
FIELD prop_e05.f... | {"attr_x83":"green","dim_z56":"Tokyo","field_u63":true,"field_z90":666,"col_l11":"black","prop_e05":{"field_t69":"world","field_n35":"FWD","val_i32":327.42},"dim_x70":false} | missing_required | {
"type": "object",
"properties": {
"attr_x83": {
"type": "string",
"enum": [
"red",
"blue",
"green",
"black",
"white"
]
},
"dim_z56": {
"type": "string"
},
"field_u63": {
"type": "boolean"
},
"field_z90": {
"typ... | {"attr_x83": "green", "field_u63": true, "field_z90": 666, "col_l11": "black", "prop_e05": {"field_t69": "world", "field_n35": "FWD", "val_i32": 327.42}, "dim_x70": false} | Required field 'dim_z56' is missing | {"attr_x83":"green","dim_z56":"Tokyo","field_u63":true,"field_z90":666,"col_l11":"black","prop_e05":{"field_t69":"world","field_n35":"FWD","val_i32":327.42},"dim_x70":false} |
TASK repair_structured_output
SPEC
FIELD dim_w12.field_a68 TYPE string VALUES type_a|type_b|type_c|type_d|type_e REQUIRED no
FIELD dim_w12.val_z60 TYPE string VALUES mode_a|mode_b|mode_c REQUIRED yes
FIELD dim_w12.val_s61 TYPE string VALUES cat_a|cat_b|cat_c|cat_d REQUIRED no
FIELD dim_w12.prop_g69 TYPE string VALUES ... | {"dim_w12":{"field_a68":"type_b","val_z60":"mode_c","prop_g69":"open"},"val_t66":"mode_a","key_p20":"Johnson"} | trailing_comma | {
"type": "object",
"properties": {
"dim_w12": {
"type": "object",
"properties": {
"field_a68": {
"type": "string",
"enum": [
"type_a",
"type_b",
"type_c",
"type_d",
"type_e"
]
},
"val_z... | {"dim_w12":{"field_a68":"type_b","val_z60":"mode_c","prop_g69":"open",},"val_t66":"mode_a","key_p20":"Johnson"} | Unexpected trailing comma | {"dim_w12":{"field_a68":"type_b","val_z60":"mode_c","prop_g69":"open"},"val_t66":"mode_a","key_p20":"Johnson"} |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.