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 field_o85 TYPE string VALUES success|error|warning|info REQUIRED yes
FIELD param_n71 TYPE string_date-time REQUIRED yes
FIELD prop_p35.dim_i90.val_j43 TYPE string VALUES success|error|warning|info REQUIRED yes
FIELD prop_p35.dim_i90.attr_x58 TYPE string_email REQUIRED yes
FIELD... | {"field_o85":"error","param_n71":"2020-10-05T12:48:00Z","prop_p35":{"dim_i90":{"val_j43":"warning","attr_x58":"test@domain.org","param_e86":false,"key_i42":"PASS"},"key_a50":"2024-01-15","prop_x99":{"col_z01":"active","col_x07":"pending","param_q19":923,"prop_t37":false,"field_q66":false},"param_x77":null,"attr_j34":tr... | single_quotes | {
"type": "object",
"properties": {
"field_o85": {
"type": "string",
"enum": [
"success",
"error",
"warning",
"info"
]
},
"param_n71": {
"type": "string",
"format": "date-time"
},
"prop_p35": {
"type": "object",
"propertie... | {'field_o85':'error','param_n71':'2020-10-05T12:48:00Z','prop_p35':{'dim_i90':{'val_j43':'warning','attr_x58':'test@domain.org','param_e86':false,'key_i42':'PASS'},'key_a50':'2024-01-15','prop_x99':{'col_z01':'active','col_x07':'pending','param_q19':923,'prop_t37':false,'field_q66':false},'param_x77':null,'attr_j34':tr... | Expecting property name enclosed in double quotes | {"field_o85":"error","param_n71":"2020-10-05T12:48:00Z","prop_p35":{"dim_i90":{"val_j43":"warning","attr_x58":"test@domain.org","param_e86":false,"key_i42":"PASS"},"key_a50":"2024-01-15","prop_x99":{"col_z01":"active","col_x07":"pending","param_q19":923,"prop_t37":false,"field_q66":false},"param_x77":null,"attr_j34":tr... |
TASK repair_structured_output
SPEC
FIELD val_y18 TYPE string VALUES level_1|level_2 REQUIRED yes
FIELD attr_h32 TYPE null REQUIRED yes
FIELD field_r19 TYPE boolean REQUIRED yes
FIELD prop_t00 TYPE string VALUES type_a|type_b|type_c|type_d|type_e REQUIRED yes
FIELD dim_i33 TYPE boolean REQUIRED no
BROKEN_OUTPUT
{"val_... | {"val_y18":"level_2","attr_h32":null,"field_r19":true,"prop_t00":"type_c","dim_i33":true} | wrong_type | {
"type": "object",
"properties": {
"val_y18": {
"type": "string",
"enum": [
"level_1",
"level_2"
]
},
"attr_h32": {
"type": "null"
},
"field_r19": {
"type": "boolean"
},
"prop_t00": {
"type": "string",
"enum": [
"type_a",... | {"val_y18": "level_2", "attr_h32": null, "field_r19": "\"yes\"", "prop_t00": "type_c", "dim_i33": true} | Field 'field_r19' must be boolean, got string | {"val_y18":"level_2","attr_h32":null,"field_r19":true,"prop_t00":"type_c","dim_i33":true} |
TASK repair_structured_output
SPEC
FIELD port_code TYPE null REQUIRED no
FIELD nickname TYPE string VALUES admin|editor|viewer REQUIRED yes
FIELD description TYPE string VALUES open|in_progress|resolved|closed REQUIRED no
BROKEN_OUTPUT
Let me check the system.
Action: calculate_price
Result: {"port_code": null}
Proc... | {"port_code":null,"nickname":"editor"} | agent_chain | {
"type": "object",
"properties": {
"port_code": {
"type": "null"
},
"nickname": {
"type": "string",
"enum": [
"admin",
"editor",
"viewer"
]
},
"description": {
"type": "string",
"enum": [
"open",
"in_progress",
... | Let me check the system.
Action: calculate_price
Result: {"port_code": null}
Processing the request now.
Action: get_weather
Result: | Agent multi-step chain with truncated tool output | {"port_code":null,"nickname":"editor"} |
TASK repair_structured_output
SPEC
FIELD field_v82 TYPE string_email REQUIRED no
FIELD key_b89 TYPE string_email REQUIRED yes
FIELD col_e95 TYPE string_uri REQUIRED no
BROKEN_OUTPUT
delete_item(field_v82='admin@test.io', key_b89='info@example.com', col_e95='https://data.com/v1') | {"field_v82":"admin@test.io","key_b89":"info@example.com","col_e95":"https://data.com/v1"} | tool_call_python_syntax | {
"type": "object",
"properties": {
"field_v82": {
"type": "string",
"format": "email"
},
"key_b89": {
"type": "string",
"format": "email"
},
"col_e95": {
"type": "string",
"format": "uri"
}
},
"required": [
"key_b89"
]
} | delete_item(field_v82='admin@test.io', key_b89='info@example.com', col_e95='https://data.com/v1') | Tool call uses Python syntax instead of JSON | {"field_v82":"admin@test.io","key_b89":"info@example.com","col_e95":"https://data.com/v1"} |
TASK repair_structured_output
SPEC
FIELD age TYPE integer REQUIRED no
FIELD discount TYPE string VALUES low|medium|high|critical REQUIRED yes
FIELD lab_result TYPE string VALUES open|in_progress|resolved|closed REQUIRED no
FIELD feedback TYPE boolean REQUIRED no
FIELD total TYPE string VALUES admin|editor|viewer REQUI... | {"age":610,"discount":"high","lab_result":"in_progress","feedback":true,"total":"admin","subtotal":"black"} | number_with_unit | {
"type": "object",
"properties": {
"age": {
"type": "integer"
},
"discount": {
"type": "string",
"enum": [
"low",
"medium",
"high",
"critical"
]
},
"lab_result": {
"type": "string",
"enum": [
"open",
"in_progres... | {"age": "610px", "discount": "high", "lab_result": "in_progress", "feedback": true, "total": "admin", "subtotal": "black"} | Field 'age' must be number, got string with unit | {"age":610,"discount":"high","lab_result":"in_progress","feedback":true,"total":"admin","subtotal":"black"} |
TASK repair_structured_output
SPEC
FIELD param_d14 TYPE boolean REQUIRED yes
FIELD val_v31 TYPE string VALUES level_1|level_2|level_3|level_4 REQUIRED yes
FIELD attr_w82 TYPE string_date-time REQUIRED yes
BROKEN_OUTPUT
Let me check the system.
Action: verify_hazmat_compliance
Result: {"param_d14": true, "val_v31": "l... | {"param_d14":true,"val_v31":"level_2","attr_w82":"2024-09-03T05:03:00Z"} | agent_chain | {
"type": "object",
"properties": {
"param_d14": {
"type": "boolean"
},
"val_v31": {
"type": "string",
"enum": [
"level_1",
"level_2",
"level_3",
"level_4"
]
},
"attr_w82": {
"type": "string",
"format": "date-time"
}
},
... | Let me check the system.
Action: verify_hazmat_compliance
Result: {"param_d14": true, "val_v31": "level_2"}
Processing the request now.
Action: query_port_status
Result: | Agent multi-step chain with truncated tool output | {"param_d14":true,"val_v31":"level_2","attr_w82":"2024-09-03T05:03:00Z"} |
TASK repair_structured_output
SPEC
FIELD col_i60 TYPE string VALUES synonymous|missense|nonsense|frameshift REQUIRED no
FIELD attr_k66 TYPE integer REQUIRED no
FIELD val_i11 TYPE string VALUES type_a|type_b REQUIRED no
FIELD param_c98 TYPE integer REQUIRED no
FIELD attr_v06 TYPE integer REQUIRED yes
FIELD col_a52 TYPE... | {"col_i60":"synonymous","attr_k66":589,"val_i11":"type_a","attr_v06":417,"col_a52":"2024-01-15","param_l54":686} | unquoted_keys | {
"type": "object",
"properties": {
"col_i60": {
"type": "string",
"enum": [
"synonymous",
"missense",
"nonsense",
"frameshift"
]
},
"attr_k66": {
"type": "integer"
},
"val_i11": {
"type": "string",
"enum": [
"type_a",
... | {col_i60:"synonymous",attr_k66:589,val_i11:"type_a",attr_v06:417,col_a52:"2024-01-15",param_l54:686} | Expecting property name enclosed in double quotes | {"col_i60":"synonymous","attr_k66":589,"val_i11":"type_a","attr_v06":417,"col_a52":"2024-01-15","param_l54":686} |
TASK repair_structured_output
SPEC
FIELD param_m83 TYPE string REQUIRED yes
FIELD col_e71 TYPE string REQUIRED no
FIELD dim_d23 TYPE string VALUES admin|editor|viewer REQUIRED yes
FIELD col_m76 TYPE string REQUIRED no
FIELD col_z28 TYPE string REQUIRED no
BROKEN_OUTPUT
```json
{"param_m83":"FWD","dim_d23":"viewer"}
`... | {"param_m83":"FWD","dim_d23":"viewer"} | markdown_fences | {
"type": "object",
"properties": {
"param_m83": {
"type": "string"
},
"col_e71": {
"type": "string"
},
"dim_d23": {
"type": "string",
"enum": [
"admin",
"editor",
"viewer"
]
},
"col_m76": {
"type": "string"
},
"col_z28"... | ```json
{"param_m83":"FWD","dim_d23":"viewer"}
``` | Output contains markdown code fences | {"param_m83":"FWD","dim_d23":"viewer"} |
TASK repair_structured_output
SPEC
FIELD attr_d28 TYPE null REQUIRED yes
FIELD param_z05 TYPE null REQUIRED yes
FIELD prop_c96 TYPE string VALUES draft|published|archived REQUIRED no
FIELD field_t29 TYPE null REQUIRED no
FIELD val_m09[].val_f19 TYPE string VALUES reliable|unstable|intermittent REQUIRED no
FIELD val_m0... | {"attr_d28":null,"param_z05":null,"field_t29":null,"val_m09":[{"param_m98":"open","val_j79":285},{"val_n89":"Santos","val_j79":962},{"val_f19":"reliable","val_j79":454},{"val_f19":"intermittent","val_n89":"Luis","val_j79":457}]} | trailing_comma | {
"type": "object",
"properties": {
"attr_d28": {
"type": "null"
},
"param_z05": {
"type": "null"
},
"prop_c96": {
"type": "string",
"enum": [
"draft",
"published",
"archived"
]
},
"field_t29": {
"type": "null"
},
"val_m... | {"attr_d28":null,"param_z05":null,"field_t29":null,"val_m09":[{"param_m98":"open","val_j79":285},{"val_n89":"Santos","val_j79":962},{"val_f19":"reliable","val_j79":454},{"val_f19":"intermittent","val_n89":"Luis","val_j79":457}],} | Unexpected trailing comma | {"attr_d28":null,"param_z05":null,"field_t29":null,"val_m09":[{"param_m98":"open","val_j79":285},{"val_n89":"Santos","val_j79":962},{"val_f19":"reliable","val_j79":454},{"val_f19":"intermittent","val_n89":"Luis","val_j79":457}]} |
TASK repair_structured_output
SPEC
FIELD quality_score TYPE integer REQUIRED yes
FIELD status_code TYPE string VALUES cat_a|cat_b|cat_c|cat_d|cat_e REQUIRED yes
FIELD turbidity TYPE number REQUIRED yes
FIELD account_id TYPE string REQUIRED no
BROKEN_OUTPUT
{"quality_score": 451, "status_code": "invalid_value_573", "t... | {"quality_score":451,"status_code":"cat_b","turbidity":968.19,"account_id":"Luis"} | invalid_enum | {
"type": "object",
"properties": {
"quality_score": {
"type": "integer"
},
"status_code": {
"type": "string",
"enum": [
"cat_a",
"cat_b",
"cat_c",
"cat_d",
"cat_e"
]
},
"turbidity": {
"type": "number"
},
"account_id":... | {"quality_score": 451, "status_code": "invalid_value_573", "turbidity": 968.19, "account_id": "Luis"} | Field 'status_code' has invalid enum value 'invalid_value_573', expected one of ['cat_a', 'cat_b', 'cat_c', 'cat_d', 'cat_e'] | {"quality_score":451,"status_code":"cat_b","turbidity":968.19,"account_id":"Luis"} |
TASK repair_structured_output
SPEC
FIELD verified TYPE string REQUIRED no
FIELD hazmat_code.torque_output.gene_id TYPE string REQUIRED yes
FIELD hazmat_code.torque_output.features TYPE string REQUIRED yes
FIELD hazmat_code.torque_output.tile TYPE string_uri REQUIRED no
FIELD hazmat_code.torque_output.email TYPE string... | {"hazmat_code":{"torque_output":{"gene_id":"bar","features":"chrX","tile":"https://example.com/data","email":"mode_a","lab_result":"https://example.com/api","temp_celsius":502.27,"account_id":false},"product_id":"mode_a","lab_result":"Jane"},"balance":"Oliveira"} | extra_field | {
"type": "object",
"properties": {
"verified": {
"type": "string"
},
"hazmat_code": {
"type": "object",
"properties": {
"torque_output": {
"type": "object",
"properties": {
"gene_id": {
"type": "string"
},
"... | {"hazmat_code": {"torque_output": {"gene_id": "bar", "features": "chrX", "tile": "https://example.com/data", "email": "mode_a", "lab_result": "https://example.com/api", "temp_celsius": 502.27, "account_id": false}, "product_id": "mode_a", "lab_result": "Jane"}, "balance": "Oliveira", "extra_value_3099": true} | Unknown field 'extra_value_3099' not defined in schema | {"hazmat_code":{"torque_output":{"gene_id":"bar","features":"chrX","tile":"https://example.com/data","email":"mode_a","lab_result":"https://example.com/api","temp_celsius":502.27,"account_id":false},"product_id":"mode_a","lab_result":"Jane"},"balance":"Oliveira"} |
TASK repair_structured_output
SPEC
FIELD field_e41 TYPE string REQUIRED no
FIELD prop_k89 TYPE integer REQUIRED yes
FIELD field_r82 TYPE string VALUES berthed|anchored|underway|moored REQUIRED no
FIELD col_j16[].prop_m30 TYPE number REQUIRED no
FIELD col_j16[].prop_i22 TYPE string VALUES success|error|warning|info REQ... | {"field_e41":"FWD","prop_k89":75,"field_r82":"moored","col_j16":[{"prop_i22":"info","prop_v88":true,"prop_r54":"ops@test.io"},{"prop_m30":631.75,"prop_i22":"error","col_y14":"2023-12-25","prop_v88":false,"prop_r54":"admin@test.io"},{"prop_m30":741.22,"prop_i22":"warning","col_y14":"hello","prop_v88":true,"prop_r54":"ad... | single_quotes | {
"type": "object",
"properties": {
"field_e41": {
"type": "string"
},
"prop_k89": {
"type": "integer"
},
"field_r82": {
"type": "string",
"enum": [
"berthed",
"anchored",
"underway",
"moored"
]
},
"col_j16": {
"type": "... | {'field_e41':'FWD','prop_k89':75,'field_r82':'moored','col_j16':[{'prop_i22':'info','prop_v88':true,'prop_r54':'ops@test.io'},{'prop_m30':631.75,'prop_i22':'error','col_y14':'2023-12-25','prop_v88':false,'prop_r54':'admin@test.io'},{'prop_m30':741.22,'prop_i22':'warning','col_y14':'hello','prop_v88':true,'prop_r54':'ad... | Expecting property name enclosed in double quotes | {"field_e41":"FWD","prop_k89":75,"field_r82":"moored","col_j16":[{"prop_i22":"info","prop_v88":true,"prop_r54":"ops@test.io"},{"prop_m30":631.75,"prop_i22":"error","col_y14":"2023-12-25","prop_v88":false,"prop_r54":"admin@test.io"},{"prop_m30":741.22,"prop_i22":"warning","col_y14":"hello","prop_v88":true,"prop_r54":"ad... |
TASK repair_structured_output
SPEC
FIELD dim_o92 TYPE integer REQUIRED yes
FIELD param_u65 TYPE string REQUIRED yes
FIELD key_j06 TYPE string VALUES berthed|anchored|underway|moored REQUIRED yes
BROKEN_OUTPUT
The output is as follows:
```json
{"dim_o92":998,"param_u65":"John","key_j06":"berthed"}
```
Feel free to ask... | {"dim_o92":998,"param_u65":"John","key_j06":"berthed"} | markdown_explanation | {
"type": "object",
"properties": {
"dim_o92": {
"type": "integer"
},
"param_u65": {
"type": "string"
},
"key_j06": {
"type": "string",
"enum": [
"berthed",
"anchored",
"underway",
"moored"
]
}
},
"required": [
"key_j06",
... | The output is as follows:
```json
{"dim_o92":998,"param_u65":"John","key_j06":"berthed"}
```
Feel free to ask if you have questions. | Output contains markdown and explanatory text around JSON | {"dim_o92":998,"param_u65":"John","key_j06":"berthed"} |
TASK repair_structured_output
SPEC
FIELD collateral TYPE number REQUIRED yes
FIELD patient_id TYPE string REQUIRED no
FIELD gene_id[] TYPE string REQUIRED yes
BROKEN_OUTPUT
I need to look up the information first.
<tool_call name="lookup_customer">
{"collateral":373.29,"patient_id":"chrX","gene_id":["test@example.com... | {"collateral":373.29,"patient_id":"chrX","gene_id":["test@example.com"]} | tool_call_text_mix | {
"type": "object",
"properties": {
"collateral": {
"type": "number"
},
"patient_id": {
"type": "string"
},
"gene_id": {
"type": "array",
"items": {
"type": "string"
}
}
},
"required": [
"collateral",
"gene_id"
]
} | I need to look up the information first.
<tool_call name="lookup_customer">
{"collateral":373.29,"patient_id":"chrX","gene_id":["test@example.com"]}
</tool_call.
Done! | Agent response mixes reasoning text with tool call | {"collateral":373.29,"patient_id":"chrX","gene_id":["test@example.com"]} |
TASK repair_structured_output
SPEC
FIELD dim_k90 TYPE string VALUES success|error|warning|info REQUIRED no
FIELD val_s45 TYPE string VALUES free|basic|pro|enterprise REQUIRED yes
FIELD prop_t89 TYPE string VALUES free|basic|pro|enterprise REQUIRED yes
FIELD dim_c62 TYPE string REQUIRED no
FIELD key_h68 TYPE string REQ... | {"dim_k90":"success","val_s45":"basic","prop_t89":"basic","dim_c62":"2024-01-15","dim_r97":"A short description.","attr_g04":378} | markdown_explanation | {
"type": "object",
"properties": {
"dim_k90": {
"type": "string",
"enum": [
"success",
"error",
"warning",
"info"
]
},
"val_s45": {
"type": "string",
"enum": [
"free",
"basic",
"pro",
"enterprise"
]
... | Based on your request, here is the data:
```json
{"dim_k90":"success","val_s45":"basic","prop_t89":"basic","dim_c62":"2024-01-15","dim_r97":"A short description.","attr_g04":378}
```
Let me know if you need anything else! | Output contains markdown and explanatory text around JSON | {"dim_k90":"success","val_s45":"basic","prop_t89":"basic","dim_c62":"2024-01-15","dim_r97":"A short description.","attr_g04":378} |
TASK repair_structured_output
SPEC
FIELD field_h42 TYPE string VALUES cat_a|cat_b|cat_c REQUIRED yes
FIELD val_h85 TYPE string VALUES berthed|anchored|underway|moored REQUIRED no
FIELD col_j55 TYPE string VALUES option_a|option_b|option_c REQUIRED no
FIELD prop_i82 TYPE number REQUIRED yes
FIELD col_l74 TYPE string_ur... | {"field_h42":"cat_b","val_h85":"moored","col_j55":"option_c","prop_i82":519.51} | invalid_enum | {
"type": "object",
"properties": {
"field_h42": {
"type": "string",
"enum": [
"cat_a",
"cat_b",
"cat_c"
]
},
"val_h85": {
"type": "string",
"enum": [
"berthed",
"anchored",
"underway",
"moored"
]
},
"col... | {"field_h42": "cat_b", "val_h85": "invalid_option_66", "col_j55": "option_c", "prop_i82": 519.51} | Field 'val_h85' has invalid enum value 'invalid_option_66', expected one of ['berthed', 'anchored', 'underway', 'moored'] | {"field_h42":"cat_b","val_h85":"moored","col_j55":"option_c","prop_i82":519.51} |
TASK repair_structured_output
SPEC
FIELD language TYPE string VALUES type_a|type_b|type_c|type_d|type_e|type_f REQUIRED yes
FIELD item_id TYPE string VALUES small|medium|large|xl REQUIRED yes
FIELD filter_flag TYPE string VALUES type_a|type_b REQUIRED yes
FIELD format TYPE string REQUIRED no
BROKEN_OUTPUT
Sensor outp... | {"language":"type_d","item_id":"medium","filter_flag":"type_a"} | extra_text_before | {
"type": "object",
"properties": {
"language": {
"type": "string",
"enum": [
"type_a",
"type_b",
"type_c",
"type_d",
"type_e",
"type_f"
]
},
"item_id": {
"type": "string",
"enum": [
"small",
"medium",
... | Sensor output follows:
{"language":"type_d","item_id":"medium","filter_flag":"type_a"} | Output contains non-JSON text before the object | {"language":"type_d","item_id":"medium","filter_flag":"type_a"} |
TASK repair_structured_output
SPEC
FIELD dim_i77 TYPE string REQUIRED yes
FIELD prop_d49 TYPE integer REQUIRED yes
FIELD prop_n52.dim_b69 TYPE number REQUIRED yes
FIELD prop_n52.dim_d59 TYPE string REQUIRED no
FIELD prop_n52.prop_c89 TYPE string REQUIRED yes
FIELD val_c45.prop_t80 TYPE string_email REQUIRED yes
FIELD ... | {"dim_i77":"Berlin","prop_d49":403,"prop_n52":{"dim_b69":92.9,"dim_d59":"MV-Evergreen-01","prop_c89":"https://api.example.com/v1"},"val_c45":{"prop_t80":"ops@test.io","dim_q13":876,"param_z59":419.7,"key_n00":{"val_p44":714,"val_s56":"rejected","col_g35":"rejected","prop_c87":"Tokyo","key_n98":492,"field_e89":"missense... | truncated_object | {
"type": "object",
"properties": {
"dim_i77": {
"type": "string"
},
"prop_d49": {
"type": "integer"
},
"prop_n52": {
"type": "object",
"properties": {
"dim_b69": {
"type": "number"
},
"dim_d59": {
"type": "string"
},
... | {"dim_i77":"Berlin","prop_d49":403,"prop_n52":{"dim_b69":92.9,"dim_d59":"MV-Evergreen-01","prop_c89":"https://api.example.com/v1"},"val_c45":{"prop_t80":"ops@test.io","dim_q13":876,"param_z59":419.7,"key_n00":{"val_p44":714,"val_s56":"rejected","col_g35":"rejected","prop_c87":"Tokyo","key_n98":492,"field_e89":"missense... | Unexpected end of JSON input — truncated object | {"dim_i77":"Berlin","prop_d49":403,"prop_n52":{"dim_b69":92.9,"dim_d59":"MV-Evergreen-01","prop_c89":"https://api.example.com/v1"},"val_c45":{"prop_t80":"ops@test.io","dim_q13":876,"param_z59":419.7,"key_n00":{"val_p44":714,"val_s56":"rejected","col_g35":"rejected","prop_c87":"Tokyo","key_n98":492,"field_e89":"missense... |
TASK repair_structured_output
SPEC
FIELD col_t76 TYPE string REQUIRED yes
FIELD key_p95 TYPE null REQUIRED yes
FIELD col_n69 TYPE string VALUES new|in_transit|delivered|returned REQUIRED yes
FIELD col_b89 TYPE string REQUIRED no
FIELD val_d48 TYPE string REQUIRED yes
BROKEN_OUTPUT
Let me analyze the request and gener... | {"col_t76":"cancelled","key_p95":null,"col_n69":"returned","val_d48":"https://api.example.com/v1"} | thought_process | {
"type": "object",
"properties": {
"col_t76": {
"type": "string"
},
"key_p95": {
"type": "null"
},
"col_n69": {
"type": "string",
"enum": [
"new",
"in_transit",
"delivered",
"returned"
]
},
"col_b89": {
"type": "string"... | Let me analyze the request and generate the appropriate JSON.
The user wants a structured object with specific fields.
{"col_t76":"cancelled","key_p95":null,"col_n69":"returned","val_d48":"https://api.example.com/v1"} | Output contains chain-of-thought reasoning before JSON | {"col_t76":"cancelled","key_p95":null,"col_n69":"returned","val_d48":"https://api.example.com/v1"} |
TASK repair_structured_output
SPEC
FIELD chapter TYPE integer REQUIRED yes
FIELD phenotype TYPE string REQUIRED no
FIELD level[].enabled TYPE string_email REQUIRED no
FIELD level[].commit_hash TYPE integer REQUIRED yes
FIELD level[].wavelength TYPE boolean REQUIRED no
FIELD level[].latitude TYPE boolean REQUIRED no
FI... | {"chapter":853,"level":[{"enabled":"test@domain.org","commit_hash":182,"wavelength":false,"latitude":true,"chapter":160.56,"credit_score":"PASS"},{"enabled":"admin@domain.org","commit_hash":549,"wavelength":false,"chapter":610.44,"credit_score":"https://example.com"},{"commit_hash":851,"wavelength":true,"latitude":fals... | tool_call_bad_format | {
"type": "object",
"properties": {
"chapter": {
"type": "integer"
},
"phenotype": {
"type": "string"
},
"level": {
"type": "array",
"items": {
"type": "object",
"properties": {
"enabled": {
"type": "string",
"format": "em... | <functioncall> check_availability
{chapter: 853, level: [{enabled: "test@domain.org", commit_hash: 182, wavelength: false, latitude: true, chapter: 160.56, credit_score: "PASS"}, {enabled: "admin@domain.org", commit_hash: 549, wavelength: false, chapter: 610.44, credit_score: "https://example.com"}, {commit_hash: 851, ... | Tool call has malformed arguments — unquoted keys in function parameters | {"chapter":853,"level":[{"enabled":"test@domain.org","commit_hash":182,"wavelength":false,"latitude":true,"chapter":160.56,"credit_score":"PASS"},{"enabled":"admin@domain.org","commit_hash":549,"wavelength":false,"chapter":610.44,"credit_score":"https://example.com"},{"commit_hash":851,"wavelength":true,"latitude":fals... |
TASK repair_structured_output
SPEC
FIELD dim_q08 TYPE integer REQUIRED yes
FIELD dim_s34 TYPE string REQUIRED yes
FIELD dim_p93.attr_r27 TYPE number REQUIRED yes
FIELD dim_p93.field_i09 TYPE integer REQUIRED no
FIELD dim_p93.dim_j60.prop_t18 TYPE boolean REQUIRED no
FIELD dim_p93.dim_j60.field_j58 TYPE number REQUIRED... | {"dim_q08":597,"dim_s34":"inactive","dim_p93":{"attr_r27":940.13,"field_i09":502,"dim_j60":{"prop_t18":true,"field_j58":536.74,"attr_l64":[785]},"prop_r49":{"prop_m58":"admin","val_h54":"https://www.com/data","prop_c30":123,"field_e39":"FWD","prop_v99":728.42,"param_b50":"active","field_w69":266.97}}} | trailing_comma | {
"type": "object",
"properties": {
"dim_q08": {
"type": "integer"
},
"dim_s34": {
"type": "string"
},
"dim_p93": {
"type": "object",
"properties": {
"attr_r27": {
"type": "number"
},
"field_i09": {
"type": "integer"
},
... | {"dim_q08":597,"dim_s34":"inactive","dim_p93":{"attr_r27":940.13,"field_i09":502,"dim_j60":{"prop_t18":true,"field_j58":536.74,"attr_l64":[785]},"prop_r49":{"prop_m58":"admin","val_h54":"https://www.com/data","prop_c30":123,"field_e39":"FWD","prop_v99":728.42,"param_b50":"active","field_w69":266.97}},} | Unexpected trailing comma | {"dim_q08":597,"dim_s34":"inactive","dim_p93":{"attr_r27":940.13,"field_i09":502,"dim_j60":{"prop_t18":true,"field_j58":536.74,"attr_l64":[785]},"prop_r49":{"prop_m58":"admin","val_h54":"https://www.com/data","prop_c30":123,"field_e39":"FWD","prop_v99":728.42,"param_b50":"active","field_w69":266.97}}} |
TASK repair_structured_output
SPEC
FIELD prop_p94 TYPE string REQUIRED no
FIELD prop_u88 TYPE string VALUES coastal|oceanic|inland|arctic REQUIRED yes
FIELD attr_u00 TYPE boolean REQUIRED yes
FIELD col_p89 TYPE string VALUES red|blue|green|black|white REQUIRED yes
FIELD val_v93 TYPE integer REQUIRED no
FIELD val_s05 T... | {"prop_u88":"arctic","attr_u00":true,"col_p89":"red"} | extra_field | {
"type": "object",
"properties": {
"prop_p94": {
"type": "string"
},
"prop_u88": {
"type": "string",
"enum": [
"coastal",
"oceanic",
"inland",
"arctic"
]
},
"attr_u00": {
"type": "boolean"
},
"col_p89": {
"type": "strin... | {"prop_u88": "arctic", "attr_u00": true, "col_p89": "red", "extra_value_4352": true} | Unknown field 'extra_value_4352' not defined in schema | {"prop_u88":"arctic","attr_u00":true,"col_p89":"red"} |
TASK repair_structured_output
SPEC
FIELD current_draw TYPE string VALUES type_a|type_b|type_c|type_d REQUIRED yes
FIELD age TYPE string VALUES open|in_progress|resolved|closed REQUIRED yes
FIELD step TYPE boolean REQUIRED yes
FIELD run_id TYPE string VALUES red|blue|green|black|white REQUIRED yes
BROKEN_OUTPUT
{"curr... | {"current_draw":"type_d","age":"resolved","step":false,"run_id":"black"} | missing_bracket | {
"type": "object",
"properties": {
"current_draw": {
"type": "string",
"enum": [
"type_a",
"type_b",
"type_c",
"type_d"
]
},
"age": {
"type": "string",
"enum": [
"open",
"in_progress",
"resolved",
"closed"
... | {"current_draw":"type_d","age":"resolved","step":false,"run_id":"black"} | Missing closing bracket | {"current_draw":"type_d","age":"resolved","step":false,"run_id":"black"} |
TASK repair_structured_output
SPEC
FIELD field_n74 TYPE number REQUIRED no
FIELD val_r42 TYPE string REQUIRED yes
FIELD prop_f05 TYPE integer REQUIRED yes
FIELD col_g48 TYPE integer REQUIRED no
FIELD val_x99 TYPE number REQUIRED no
BROKEN_OUTPUT
<functioncall> annotate_mutation
{field_n74: 500.2, val_r42: "world", pr... | {"field_n74":500.2,"val_r42":"world","prop_f05":101,"col_g48":706,"val_x99":911.2} | tool_call_bad_format | {
"type": "object",
"properties": {
"field_n74": {
"type": "number"
},
"val_r42": {
"type": "string"
},
"prop_f05": {
"type": "integer"
},
"col_g48": {
"type": "integer"
},
"val_x99": {
"type": "number"
}
},
"required": [
"val_r42",
"... | <functioncall> annotate_mutation
{field_n74: 500.2, val_r42: "world", prop_f05: 101, col_g48: 706, val_x99: 911.2} | Tool call has malformed arguments — unquoted keys in function parameters | {"field_n74":500.2,"val_r42":"world","prop_f05":101,"col_g48":706,"val_x99":911.2} |
TASK repair_structured_output
SPEC
FIELD username TYPE number REQUIRED yes
FIELD features TYPE integer REQUIRED yes
FIELD start_date TYPE string VALUES synonymous|missense|nonsense|frameshift REQUIRED yes
FIELD status TYPE string_email REQUIRED no
FIELD isotope TYPE boolean REQUIRED no
FIELD id TYPE string_date-time R... | {"username":9.12,"features":271,"start_date":"nonsense","status":"test@example.com","isotope":false,"id":"2024-04-18T16:46:00Z","company":"user@example.com"} | wrong_type | {
"type": "object",
"properties": {
"username": {
"type": "number"
},
"features": {
"type": "integer"
},
"start_date": {
"type": "string",
"enum": [
"synonymous",
"missense",
"nonsense",
"frameshift"
]
},
"status": {
"ty... | {"username": 9.12, "features": 271, "start_date": "nonsense", "status": "test@example.com", "isotope": "\"no\"", "id": "2024-04-18T16:46:00Z", "company": "user@example.com"} | Field 'isotope' must be boolean, got string | {"username":9.12,"features":271,"start_date":"nonsense","status":"test@example.com","isotope":false,"id":"2024-04-18T16:46:00Z","company":"user@example.com"} |
TASK repair_structured_output
SPEC
FIELD key_x73 TYPE string VALUES pending_review|confirmed|rejected|escalated REQUIRED no
FIELD param_u10 TYPE string REQUIRED no
FIELD field_h88 TYPE string REQUIRED no
FIELD dim_a80.prop_o84 TYPE string REQUIRED no
FIELD dim_a80.param_z85 TYPE string REQUIRED no
FIELD dim_a80.param_... | {"key_x73":"escalated","param_u10":"2024-06-30","field_h88":"https://api.example.com/v1","dim_a80":{"prop_o84":"2024-06-30","param_z85":"chrX","param_y37":{"prop_m60":"hemizygous","param_v68":"Paris","dim_j03":472,"prop_n27":"chrX","dim_m96":"closed","val_a82":"mode_a"},"field_a90":"admin@domain.org"},"col_z14":{"col_q... | unquoted_keys | {
"type": "object",
"properties": {
"key_x73": {
"type": "string",
"enum": [
"pending_review",
"confirmed",
"rejected",
"escalated"
]
},
"param_u10": {
"type": "string"
},
"field_h88": {
"type": "string"
},
"dim_a80": {
... | {key_x73:"escalated",param_u10:"2024-06-30",field_h88:"https://api.example.com/v1",dim_a80:{prop_o84:"2024-06-30",param_z85:"chrX",param_y37:{prop_m60:"hemizygous",param_v68:"Paris",dim_j03:472,prop_n27:"chrX",dim_m96:"closed",val_a82:"mode_a"},field_a90:"admin@domain.org"},col_z14:{col_q19:"level_3",field_t02:971,key_... | Expecting property name enclosed in double quotes | {"key_x73":"escalated","param_u10":"2024-06-30","field_h88":"https://api.example.com/v1","dim_a80":{"prop_o84":"2024-06-30","param_z85":"chrX","param_y37":{"prop_m60":"hemizygous","param_v68":"Paris","dim_j03":472,"prop_n27":"chrX","dim_m96":"closed","val_a82":"mode_a"},"field_a90":"admin@domain.org"},"col_z14":{"col_q... |
TASK repair_structured_output
SPEC
FIELD attr_n33 TYPE string REQUIRED no
FIELD field_n05 TYPE string_email REQUIRED yes
FIELD col_z14 TYPE string_email REQUIRED yes
FIELD field_c34 TYPE integer REQUIRED yes
FIELD val_w17 TYPE string_date-time REQUIRED no
FIELD prop_z28 TYPE string VALUES reliable|unstable|intermitten... | {"attr_n33":"GRCh38","field_n05":"ops@example.com","col_z14":"info@test.io","field_c34":93,"val_w17":"2024-10-01T04:46:00Z","prop_z28":"intermittent"} | trailing_comma | {
"type": "object",
"properties": {
"attr_n33": {
"type": "string"
},
"field_n05": {
"type": "string",
"format": "email"
},
"col_z14": {
"type": "string",
"format": "email"
},
"field_c34": {
"type": "integer"
},
"val_w17": {
"type": "stri... | {"attr_n33":"GRCh38","field_n05":"ops@example.com","col_z14":"info@test.io","field_c34":93,"val_w17":"2024-10-01T04:46:00Z","prop_z28":"intermittent",} | Unexpected trailing comma | {"attr_n33":"GRCh38","field_n05":"ops@example.com","col_z14":"info@test.io","field_c34":93,"val_w17":"2024-10-01T04:46:00Z","prop_z28":"intermittent"} |
TASK repair_structured_output
SPEC
FIELD val_j59 TYPE integer REQUIRED no
FIELD prop_g01 TYPE string REQUIRED no
FIELD dim_m17 TYPE string VALUES new|in_transit|delivered|returned REQUIRED no
FIELD dim_k83.key_k48 TYPE integer REQUIRED yes
FIELD dim_k83.param_v58 TYPE null REQUIRED no
FIELD dim_k83.param_o19 TYPE null... | {"val_j59":549,"dim_k83":{"key_k48":106,"param_o19":null},"key_g04":{"col_e38":"green","dim_s06":{"dim_r85":"FWD","field_n01":"2024-01-15","prop_u42":["https://example.com","PASS","RTG-04","foo"]},"val_w79":"https://api.io/data","col_g96":"escalated","attr_w84":null,"param_p18":{"prop_n08":"2020-03-24T22:35:00Z","prop_... | markdown_fences | {
"type": "object",
"properties": {
"val_j59": {
"type": "integer"
},
"prop_g01": {
"type": "string"
},
"dim_m17": {
"type": "string",
"enum": [
"new",
"in_transit",
"delivered",
"returned"
]
},
"dim_k83": {
"type": "obj... | ```json
{"val_j59":549,"dim_k83":{"key_k48":106,"param_o19":null},"key_g04":{"col_e38":"green","dim_s06":{"dim_r85":"FWD","field_n01":"2024-01-15","prop_u42":["https://example.com","PASS","RTG-04","foo"]},"val_w79":"https://api.io/data","col_g96":"escalated","attr_w84":null,"param_p18":{"prop_n08":"2020-03-24T22:35:00Z... | Output contains markdown code fences | {"val_j59":549,"dim_k83":{"key_k48":106,"param_o19":null},"key_g04":{"col_e38":"green","dim_s06":{"dim_r85":"FWD","field_n01":"2024-01-15","prop_u42":["https://example.com","PASS","RTG-04","foo"]},"val_w79":"https://api.io/data","col_g96":"escalated","attr_w84":null,"param_p18":{"prop_n08":"2020-03-24T22:35:00Z","prop_... |
TASK repair_structured_output
SPEC
FIELD interest_rate TYPE string REQUIRED yes
FIELD batch_code TYPE string REQUIRED no
FIELD fleet_number TYPE string REQUIRED no
FIELD current_draw TYPE string_email REQUIRED no
FIELD procedure_code[].medication TYPE string_email REQUIRED no
FIELD procedure_code[].yield_pct TYPE stri... | {"interest_rate":"Diana","batch_code":"https://api.example.com/v1","fleet_number":"QC-07","current_draw":"user@test.io","procedure_code":[{"medication":"admin@example.com","yield_pct":"viewer","current_draw":"QC-07","barcode":393.5,"due_date":268,"rating":null},{"medication":"admin@test.io","yield_pct":"editor","barcod... | tool_call_text_mix | {
"type": "object",
"properties": {
"interest_rate": {
"type": "string"
},
"batch_code": {
"type": "string"
},
"fleet_number": {
"type": "string"
},
"current_draw": {
"type": "string",
"format": "email"
},
"procedure_code": {
"type": "array",
... | I need to look up the information first.
<tool_call name="query_port_status">
{"interest_rate":"Diana","batch_code":"https://api.example.com/v1","fleet_number":"QC-07","current_draw":"user@test.io","procedure_code":[{"medication":"admin@example.com","yield_pct":"viewer","current_draw":"QC-07","barcode":393.5,"due_date"... | Agent response mixes reasoning text with tool call | {"interest_rate":"Diana","batch_code":"https://api.example.com/v1","fleet_number":"QC-07","current_draw":"user@test.io","procedure_code":[{"medication":"admin@example.com","yield_pct":"viewer","current_draw":"QC-07","barcode":393.5,"due_date":268,"rating":null},{"medication":"admin@test.io","yield_pct":"editor","barcod... |
TASK repair_structured_output
SPEC
FIELD credit_score TYPE string REQUIRED yes
FIELD item_id TYPE string REQUIRED yes
FIELD height TYPE integer REQUIRED yes
BROKEN_OUTPUT
{"credit_score": "A short description.", "item_id": "MV-Evergreen-01"} | {"credit_score":"A short description.","item_id":"MV-Evergreen-01","height":258} | missing_required | {
"type": "object",
"properties": {
"credit_score": {
"type": "string"
},
"item_id": {
"type": "string"
},
"height": {
"type": "integer"
}
},
"required": [
"item_id",
"credit_score",
"height"
]
} | {"credit_score": "A short description.", "item_id": "MV-Evergreen-01"} | Required field 'height' is missing | {"credit_score":"A short description.","item_id":"MV-Evergreen-01","height":258} |
TASK repair_structured_output
SPEC
FIELD dim_x73 TYPE integer REQUIRED no
FIELD prop_i19 TYPE string REQUIRED no
FIELD col_d78 TYPE number REQUIRED yes
FIELD key_d31[].attr_h61 TYPE string REQUIRED yes
FIELD key_d31[].prop_s04 TYPE string VALUES coastal|oceanic|inland|arctic REQUIRED yes
FIELD key_d31[].key_k03 TYPE s... | {"prop_i19":"completed","col_d78":41.35,"key_d31":[{"attr_h61":"PASS","prop_s04":"arctic","key_k03":"large","prop_o69":326},{"attr_h61":"demo","prop_s04":"coastal","key_k03":"large","prop_o69":468,"field_k34":"QC-07"},{"attr_h61":"demo","prop_s04":"coastal","prop_o69":946,"field_k34":"test"}]} | thought_process | {
"type": "object",
"properties": {
"dim_x73": {
"type": "integer"
},
"prop_i19": {
"type": "string"
},
"col_d78": {
"type": "number"
},
"key_d31": {
"type": "array",
"items": {
"type": "object",
"properties": {
"attr_h61": {
... | Processing the request now.
I'll validate against the schema.
{"prop_i19":"completed","col_d78":41.35,"key_d31":[{"attr_h61":"PASS","prop_s04":"arctic","key_k03":"large","prop_o69":326},{"attr_h61":"demo","prop_s04":"coastal","key_k03":"large","prop_o69":468,"field_k34":"QC-07"},{"attr_h61":"demo","prop_s04":"coastal"... | Output contains chain-of-thought reasoning before JSON | {"prop_i19":"completed","col_d78":41.35,"key_d31":[{"attr_h61":"PASS","prop_s04":"arctic","key_k03":"large","prop_o69":326},{"attr_h61":"demo","prop_s04":"coastal","key_k03":"large","prop_o69":468,"field_k34":"QC-07"},{"attr_h61":"demo","prop_s04":"coastal","prop_o69":946,"field_k34":"test"}]} |
TASK repair_structured_output
SPEC
FIELD published TYPE string REQUIRED no
FIELD tile TYPE string_date-time REQUIRED no
FIELD amplitude TYPE null REQUIRED yes
FIELD collateral TYPE string REQUIRED no
FIELD country TYPE boolean REQUIRED no
BROKEN_OUTPUT
<functioncall> check_cargo_manifest
{published: "2023-12-25", til... | {"published":"2023-12-25","tile":"2023-07-03T16:21:00Z","amplitude":null,"collateral":"Luis","country":true} | tool_call_bad_format | {
"type": "object",
"properties": {
"published": {
"type": "string"
},
"tile": {
"type": "string",
"format": "date-time"
},
"amplitude": {
"type": "null"
},
"collateral": {
"type": "string"
},
"country": {
"type": "boolean"
}
},
"requir... | <functioncall> check_cargo_manifest
{published: "2023-12-25", tile: "2023-07-03T16:21:00Z", amplitude: null, collateral: "Luis", country: true} | Tool call has malformed arguments — unquoted keys in function parameters | {"published":"2023-12-25","tile":"2023-07-03T16:21:00Z","amplitude":null,"collateral":"Luis","country":true} |
TASK repair_structured_output
SPEC
FIELD wavelength TYPE string REQUIRED no
FIELD sensor_id TYPE integer REQUIRED no
FIELD throttle_pos TYPE number REQUIRED yes
FIELD start_date TYPE number REQUIRED yes
FIELD priority[] TYPE string REQUIRED yes
BROKEN_OUTPUT
{"wavelength": "baz", "sensor_id": "\"207\"", "throttle_pos... | {"wavelength":"baz","sensor_id":207,"throttle_pos":22.82,"start_date":521.81,"priority":["example","pending"]} | wrong_type | {
"type": "object",
"properties": {
"wavelength": {
"type": "string"
},
"sensor_id": {
"type": "integer"
},
"throttle_pos": {
"type": "number"
},
"start_date": {
"type": "number"
},
"priority": {
"type": "array",
"items": {
"type": "str... | {"wavelength": "baz", "sensor_id": "\"207\"", "throttle_pos": 22.82, "start_date": 521.81, "priority": ["example", "pending"]} | Field 'sensor_id' must be integer, got string | {"wavelength":"baz","sensor_id":207,"throttle_pos":22.82,"start_date":521.81,"priority":["example","pending"]} |
TASK repair_structured_output
SPEC
FIELD param_q34 TYPE string REQUIRED no
FIELD dim_p87 TYPE integer REQUIRED yes
FIELD dim_m20 TYPE number REQUIRED no
FIELD dim_p27 TYPE string REQUIRED yes
FIELD col_b31 TYPE string VALUES reliable|unstable|intermittent REQUIRED no
FIELD field_g82 TYPE integer REQUIRED yes
FIELD col... | {"param_q34":"Hapag-Lloyd-Express","dim_p87":929,"dim_m20":331.46,"dim_p27":"2024-06-30","col_b31":"intermittent","field_g82":271,"col_q64":"New York"} | tool_call_partial_args | {
"type": "object",
"properties": {
"param_q34": {
"type": "string"
},
"dim_p87": {
"type": "integer"
},
"dim_m20": {
"type": "number"
},
"dim_p27": {
"type": "string"
},
"col_b31": {
"type": "string",
"enum": [
"reliable",
"uns... | Let me check the system.
Action: run_diagnostics
Arguments: {"param_q34": "Hapag-Lloyd-Express", "dim_m20": 331.46, "dim_p27": "2024-06-30", "col_b31": "intermittent", "field_g82": 271, "col_q64": "New York"} | Agent tool call missing required parameter 'dim_p87' | {"param_q34":"Hapag-Lloyd-Express","dim_p87":929,"dim_m20":331.46,"dim_p27":"2024-06-30","col_b31":"intermittent","field_g82":271,"col_q64":"New York"} |
TASK repair_structured_output
SPEC
FIELD current_draw TYPE number REQUIRED yes
FIELD voltage TYPE null REQUIRED no
FIELD full_name[] TYPE string REQUIRED yes
BROKEN_OUTPUT
{"current_draw":150.63,"voltage":null,"full_name":["user@domain.com",]} | {"current_draw":150.63,"voltage":null,"full_name":["user@domain.com"]} | trailing_comma | {
"type": "object",
"properties": {
"current_draw": {
"type": "number"
},
"voltage": {
"type": "null"
},
"full_name": {
"type": "array",
"items": {
"type": "string"
}
}
},
"required": [
"full_name",
"current_draw"
]
} | {"current_draw":150.63,"voltage":null,"full_name":["user@domain.com",]} | Unexpected trailing comma | {"current_draw":150.63,"voltage":null,"full_name":["user@domain.com"]} |
TASK repair_structured_output
SPEC
FIELD param_o94.col_g78.field_b58 TYPE string VALUES admin|editor|viewer REQUIRED no
FIELD param_o94.col_g78.val_p63 TYPE string VALUES new|in_transit|delivered|returned REQUIRED no
FIELD param_o94.col_g78.val_f23 TYPE string VALUES draft|published|archived REQUIRED no
FIELD param_o9... | {"dim_p80":"homozygous","param_t66":{"param_m64":"admin","key_c98":true,"prop_o64":false,"col_s78":861.95},"col_b98":"cancelled","dim_z47":"Paris","dim_j52":740.0} | thought_process | {
"type": "object",
"properties": {
"param_o94": {
"type": "object",
"properties": {
"col_g78": {
"type": "object",
"properties": {
"field_b58": {
"type": "string",
"enum": [
"admin",
"editor",
... | Let me construct this step by step.
First, I'll identify the required fields, then fill in the values.
{"dim_p80":"homozygous","param_t66":{"param_m64":"admin","key_c98":true,"prop_o64":false,"col_s78":861.95},"col_b98":"cancelled","dim_z47":"Paris","dim_j52":740.0} | Output contains chain-of-thought reasoning before JSON | {"dim_p80":"homozygous","param_t66":{"param_m64":"admin","key_c98":true,"prop_o64":false,"col_s78":861.95},"col_b98":"cancelled","dim_z47":"Paris","dim_j52":740.0} |
TASK repair_structured_output
SPEC
FIELD invoice_id TYPE number REQUIRED yes
FIELD url TYPE string VALUES open|in_progress|resolved|closed REQUIRED no
FIELD first_name TYPE integer REQUIRED no
BROKEN_OUTPUT
{"invoice_id":356.25,"url":"open","first_name":951} | {"invoice_id":356.25,"url":"open","first_name":951} | missing_bracket | {
"type": "object",
"properties": {
"invoice_id": {
"type": "number"
},
"url": {
"type": "string",
"enum": [
"open",
"in_progress",
"resolved",
"closed"
]
},
"first_name": {
"type": "integer"
}
},
"required": [
"invoice_id... | {"invoice_id":356.25,"url":"open","first_name":951} | Missing closing bracket | {"invoice_id":356.25,"url":"open","first_name":951} |
TASK repair_structured_output
SPEC
FIELD strand TYPE string_date-time REQUIRED yes
FIELD compound TYPE string VALUES reliable|unstable|intermittent REQUIRED no
FIELD frequency_hz TYPE boolean REQUIRED no
FIELD footnote TYPE string REQUIRED no
FIELD procedure_code TYPE string_date-time REQUIRED no
FIELD id TYPE integer... | {"strand":"2022-10-18T16:19:00Z","compound":"unstable","footnote":"Hapag-Lloyd-Express"} | tool_call_text_mix | {
"type": "object",
"properties": {
"strand": {
"type": "string",
"format": "date-time"
},
"compound": {
"type": "string",
"enum": [
"reliable",
"unstable",
"intermittent"
]
},
"frequency_hz": {
"type": "boolean"
},
"footnote": ... | Let me check the system.
<tool_call name="create_order">
{"strand":"2022-10-18T16:19:00Z","compound":"unstable","footnote":"Hapag-Lloyd-Express"}
</tool_call.
Done! | Agent response mixes reasoning text with tool call | {"strand":"2022-10-18T16:19:00Z","compound":"unstable","footnote":"Hapag-Lloyd-Express"} |
TASK repair_structured_output
SPEC
FIELD field_x06 TYPE boolean REQUIRED yes
FIELD dim_a58 TYPE string VALUES email|phone|sms|push REQUIRED yes
FIELD param_a30 TYPE boolean REQUIRED yes
FIELD field_h87.prop_h13 TYPE string VALUES synonymous|missense|nonsense|frameshift REQUIRED no
FIELD field_h87.key_u10 TYPE string R... | {"field_x06":false,"dim_a58":"push","param_a30":true,"val_p49":"Smith"} | single_quotes | {
"type": "object",
"properties": {
"field_x06": {
"type": "boolean"
},
"dim_a58": {
"type": "string",
"enum": [
"email",
"phone",
"sms",
"push"
]
},
"param_a30": {
"type": "boolean"
},
"field_h87": {
"type": "object",
... | {'field_x06':false,'dim_a58':'push','param_a30':true,'val_p49':'Smith'} | Expecting property name enclosed in double quotes | {"field_x06":false,"dim_a58":"push","param_a30":true,"val_p49":"Smith"} |
TASK repair_structured_output
SPEC
FIELD deploy_target TYPE string VALUES cat_a|cat_b|cat_c|cat_d REQUIRED no
FIELD verified TYPE string VALUES draft|published|archived REQUIRED yes
FIELD balance TYPE string VALUES reliable|unstable|intermittent REQUIRED yes
FIELD status TYPE integer REQUIRED no
FIELD options TYPE str... | {"deploy_target":"cat_c","verified":"archived","balance":"unstable","status":305,"options":"completed","type":"Silva","interest_rate":931} | tool_call_partial_args | {
"type": "object",
"properties": {
"deploy_target": {
"type": "string",
"enum": [
"cat_a",
"cat_b",
"cat_c",
"cat_d"
]
},
"verified": {
"type": "string",
"enum": [
"draft",
"published",
"archived"
]
},
"... | Let me check the system.
Action: lookup_customer
Arguments: {"deploy_target": "cat_c", "verified": "archived", "balance": "unstable", "status": 305, "options": "completed", "type": "Silva"} | Agent tool call missing required parameter 'interest_rate' | {"deploy_target":"cat_c","verified":"archived","balance":"unstable","status":305,"options":"completed","type":"Silva","interest_rate":931} |
TASK repair_structured_output
SPEC
FIELD key_l23 TYPE number REQUIRED yes
FIELD col_f38 TYPE string REQUIRED yes
FIELD val_n66.param_u66 TYPE string VALUES mode_a|mode_b|mode_c REQUIRED no
FIELD val_n66.key_b46 TYPE string_email REQUIRED yes
FIELD val_n66.val_w24 TYPE number REQUIRED yes
FIELD val_n66.col_g28 TYPE boo... | {"key_l23":606.67,"col_f38":"pending","val_n66":{"param_u66":"mode_c","key_b46":"user@example.com","val_w24":991.72,"col_g28":true,"field_s41":"MV-Evergreen-01","key_a98":"mode_b","prop_z64":"level_3"}} | missing_bracket | {
"type": "object",
"properties": {
"key_l23": {
"type": "number"
},
"col_f38": {
"type": "string"
},
"val_n66": {
"type": "object",
"properties": {
"param_u66": {
"type": "string",
"enum": [
"mode_a",
"mode_b",
... | {"key_l23":606.67,"col_f38":"pending","val_n66":{"param_u66":"mode_c","key_b46":"user@example.com","val_w24":991.72,"col_g28":true,"field_s41":"MV-Evergreen-01","key_a98":"mode_b","prop_z64":"level_3"}} | Missing closing bracket | {"key_l23":606.67,"col_f38":"pending","val_n66":{"param_u66":"mode_c","key_b46":"user@example.com","val_w24":991.72,"col_g28":true,"field_s41":"MV-Evergreen-01","key_a98":"mode_b","prop_z64":"level_3"}} |
TASK repair_structured_output
SPEC
FIELD dim_b78 TYPE null REQUIRED no
FIELD key_r62 TYPE boolean REQUIRED no
FIELD prop_f11 TYPE string REQUIRED yes
FIELD col_h56 TYPE string REQUIRED no
FIELD col_g08 TYPE string REQUIRED no
FIELD attr_p35.field_y91 TYPE string REQUIRED yes
FIELD attr_p35.param_h04 TYPE integer REQUI... | {"dim_b78":null,"key_r62":true,"prop_f11":"foo","col_h56":"MV-Evergreen-01","attr_p35":{"field_y91":"foo","param_h04":455,"param_v45":46,"val_n51":"https://api.io/data","val_b92":{"val_d41":"cat_c","attr_n49":false,"val_m72":896,"key_a38":"type_c","prop_c95":"type_a"}}} | agent_chain | {
"type": "object",
"properties": {
"dim_b78": {
"type": "null"
},
"key_r62": {
"type": "boolean"
},
"prop_f11": {
"type": "string"
},
"col_h56": {
"type": "string"
},
"col_g08": {
"type": "string"
},
"attr_p35": {
"type": "object",
... | I need to look up the information first.
Action: create_order
Result: {"key_r62": true, "prop_f11": "foo", "col_h56": "MV-Evergreen-01", "attr_p35": {"field_y91": "foo", "param_h04": 455, "param_v45": 46, "val_n51": "https://api.io/data", "val_b92": {"val_d41": "cat_c", "attr_n49": false, "val_m72": 896, "key_a38": "ty... | Agent multi-step chain with truncated tool output | {"dim_b78":null,"key_r62":true,"prop_f11":"foo","col_h56":"MV-Evergreen-01","attr_p35":{"field_y91":"foo","param_h04":455,"param_v45":46,"val_n51":"https://api.io/data","val_b92":{"val_d41":"cat_c","attr_n49":false,"val_m72":896,"key_a38":"type_c","prop_c95":"type_a"}}} |
TASK repair_structured_output
SPEC
FIELD velocity TYPE integer REQUIRED no
FIELD sensor_id TYPE string REQUIRED yes
FIELD batch_code TYPE string VALUES mode_a|mode_b REQUIRED yes
FIELD frequency_hz TYPE boolean REQUIRED no
FIELD organism.sensor_id TYPE string REQUIRED no
FIELD organism.patient_id TYPE string REQUIRED ... | {"velocity":257,"sensor_id":"world","batch_code":"mode_a","frequency_hz":false,"phone":{"organism":"Hapag-Lloyd-Express","chapter":"Diana","brake_pressure":null}} | truncated_object | {
"type": "object",
"properties": {
"velocity": {
"type": "integer"
},
"sensor_id": {
"type": "string"
},
"batch_code": {
"type": "string",
"enum": [
"mode_a",
"mode_b"
]
},
"frequency_hz": {
"type": "boolean"
},
"organism": {
... | {"velocity":257,"sensor_id":"world","batch_code":"mode_a","frequency_hz":false,"phone":{"organism":"Hapag-Lloyd-Express","chapter":"Diana","brake_pressure":null} | Unexpected end of JSON input — truncated object | {"velocity":257,"sensor_id":"world","batch_code":"mode_a","frequency_hz":false,"phone":{"organism":"Hapag-Lloyd-Express","chapter":"Diana","brake_pressure":null}} |
TASK repair_structured_output
SPEC
FIELD hazmat_code TYPE string_date-time REQUIRED no
FIELD category TYPE string REQUIRED no
FIELD city.ph_level TYPE boolean REQUIRED no
FIELD city.type TYPE integer REQUIRED yes
FIELD city.published TYPE string VALUES operational|degraded|offline|maintenance REQUIRED no
FIELD city.vi... | {"hazmat_code":"2023-08-27T10:01:00Z","city":{"ph_level":false,"type":975,"published":"degraded","interest_rate":[false,false,false,false]},"longitude":{"umi":"USD","reagent":"heterozygous","full_name":"info@domain.org","company":"published"},"account_id":507,"amplitude":"https://example.io/data","thumbnail":{"consigne... | markdown_fences | {
"type": "object",
"properties": {
"hazmat_code": {
"type": "string",
"format": "date-time"
},
"category": {
"type": "string"
},
"city": {
"type": "object",
"properties": {
"ph_level": {
"type": "boolean"
},
"type": {
"ty... | ```json
{"hazmat_code":"2023-08-27T10:01:00Z","city":{"ph_level":false,"type":975,"published":"degraded","interest_rate":[false,false,false,false]},"longitude":{"umi":"USD","reagent":"heterozygous","full_name":"info@domain.org","company":"published"},"account_id":507,"amplitude":"https://example.io/data","thumbnail":{"... | Output contains markdown code fences | {"hazmat_code":"2023-08-27T10:01:00Z","city":{"ph_level":false,"type":975,"published":"degraded","interest_rate":[false,false,false,false]},"longitude":{"umi":"USD","reagent":"heterozygous","full_name":"info@domain.org","company":"published"},"account_id":507,"amplitude":"https://example.io/data","thumbnail":{"consigne... |
TASK repair_structured_output
SPEC
FIELD name TYPE integer REQUIRED no
FIELD manifest_ref TYPE string REQUIRED no
FIELD annotation TYPE number REQUIRED yes
FIELD phenotype TYPE string REQUIRED no
FIELD id TYPE integer REQUIRED no
FIELD crew_id TYPE boolean REQUIRED yes
BROKEN_OUTPUT
{"name":355,"manifest_ref":"chr1",... | {"name":355,"manifest_ref":"chr1","annotation":169.53,"id":300,"crew_id":false} | missing_bracket | {
"type": "object",
"properties": {
"name": {
"type": "integer"
},
"manifest_ref": {
"type": "string"
},
"annotation": {
"type": "number"
},
"phenotype": {
"type": "string"
},
"id": {
"type": "integer"
},
"crew_id": {
"type": "boolean"
... | {"name":355,"manifest_ref":"chr1","annotation":169.53,"id":300,"crew_id":false} | Missing closing bracket | {"name":355,"manifest_ref":"chr1","annotation":169.53,"id":300,"crew_id":false} |
TASK repair_structured_output
SPEC
FIELD color TYPE string VALUES pending_review|confirmed|rejected|escalated REQUIRED yes
FIELD height TYPE string VALUES red|blue|green|black|white REQUIRED no
FIELD quality_score TYPE string VALUES draft|published|archived REQUIRED no
FIELD duration_ms TYPE string VALUES pending_revi... | {"color":"confirmed","height":"green"} | tool_call_bad_format | {
"type": "object",
"properties": {
"color": {
"type": "string",
"enum": [
"pending_review",
"confirmed",
"rejected",
"escalated"
]
},
"height": {
"type": "string",
"enum": [
"red",
"blue",
"green",
"black",
... | <functioncall> validate_address
{color: "confirmed", height: "green"} | Tool call has malformed arguments — unquoted keys in function parameters | {"color":"confirmed","height":"green"} |
TASK repair_structured_output
SPEC
FIELD published TYPE string REQUIRED yes
FIELD username TYPE integer REQUIRED no
FIELD dosage TYPE boolean REQUIRED yes
FIELD procedure_code TYPE string REQUIRED no
FIELD freight_class TYPE string REQUIRED no
FIELD priority.options TYPE number REQUIRED no
FIELD priority.current_draw ... | {"published":"Smith","username":853,"dosage":false,"procedure_code":"RTG-04","priority":{"options":770.44,"current_draw":"test@domain.org","tile":148},"latitude":true} | markdown_explanation | {
"type": "object",
"properties": {
"published": {
"type": "string"
},
"username": {
"type": "integer"
},
"dosage": {
"type": "boolean"
},
"procedure_code": {
"type": "string"
},
"freight_class": {
"type": "string"
},
"priority": {
"typ... | Here's the structured output:
```json
{"published":"Smith","username":853,"dosage":false,"procedure_code":"RTG-04","priority":{"options":770.44,"current_draw":"test@domain.org","tile":148},"latitude":true}
```
Data logged successfully. | Output contains markdown and explanatory text around JSON | {"published":"Smith","username":853,"dosage":false,"procedure_code":"RTG-04","priority":{"options":770.44,"current_draw":"test@domain.org","tile":148},"latitude":true} |
TASK repair_structured_output
SPEC
FIELD tax TYPE boolean REQUIRED yes
FIELD bearing TYPE number REQUIRED yes
FIELD organism.amount TYPE string VALUES small|medium|large|xl REQUIRED yes
FIELD organism.city TYPE null REQUIRED no
FIELD organism.bearing TYPE number REQUIRED yes
FIELD id TYPE string REQUIRED yes
BROKEN_O... | {"tax":false,"bearing":457.06,"organism":{"amount":"xl","city":null,"bearing":39.31},"id":"2024-06-30"} | number_with_unit | {
"type": "object",
"properties": {
"tax": {
"type": "boolean"
},
"bearing": {
"type": "number"
},
"organism": {
"type": "object",
"properties": {
"amount": {
"type": "string",
"enum": [
"small",
"medium",
"l... | {"tax": false, "bearing": "457.06ms", "organism": {"amount": "xl", "city": null, "bearing": 39.31}, "id": "2024-06-30"} | Field 'bearing' must be number, got string with unit | {"tax":false,"bearing":457.06,"organism":{"amount":"xl","city":null,"bearing":39.31},"id":"2024-06-30"} |
TASK repair_structured_output
SPEC
FIELD val_g03 TYPE string REQUIRED no
FIELD dim_z88 TYPE integer REQUIRED yes
FIELD prop_j17 TYPE string VALUES level_1|level_2|level_3 REQUIRED no
FIELD prop_f02 TYPE integer REQUIRED yes
BROKEN_OUTPUT
{"val_g03": "inactive", "dim_z88": "\"526\"", "prop_j17": "level_2", "prop_f02":... | {"val_g03":"inactive","dim_z88":526,"prop_j17":"level_2","prop_f02":56} | wrong_type | {
"type": "object",
"properties": {
"val_g03": {
"type": "string"
},
"dim_z88": {
"type": "integer"
},
"prop_j17": {
"type": "string",
"enum": [
"level_1",
"level_2",
"level_3"
]
},
"prop_f02": {
"type": "integer"
}
},
"... | {"val_g03": "inactive", "dim_z88": "\"526\"", "prop_j17": "level_2", "prop_f02": 56} | Field 'dim_z88' must be integer, got string | {"val_g03":"inactive","dim_z88":526,"prop_j17":"level_2","prop_f02":56} |
TASK repair_structured_output
SPEC
FIELD key_m98 TYPE string VALUES type_a|type_b|type_c|type_d|type_e|type_f REQUIRED yes
FIELD val_z01 TYPE number REQUIRED yes
FIELD param_r16 TYPE string VALUES operational|degraded|offline|maintenance REQUIRED yes
FIELD prop_n12 TYPE string REQUIRED yes
BROKEN_OUTPUT
Below is the ... | {"key_m98":"type_b","val_z01":925.79,"param_r16":"offline","prop_n12":"test"} | markdown_explanation | {
"type": "object",
"properties": {
"key_m98": {
"type": "string",
"enum": [
"type_a",
"type_b",
"type_c",
"type_d",
"type_e",
"type_f"
]
},
"val_z01": {
"type": "number"
},
"param_r16": {
"type": "string",
"enum... | Below is the JSON object:
```json
{"key_m98":"type_b","val_z01":925.79,"param_r16":"offline","prop_n12":"test"}
```
Data logged successfully. | Output contains markdown and explanatory text around JSON | {"key_m98":"type_b","val_z01":925.79,"param_r16":"offline","prop_n12":"test"} |
TASK repair_structured_output
SPEC
FIELD longitude.subtotal TYPE string REQUIRED yes
FIELD longitude.image_url TYPE string VALUES homozygous|heterozygous|hemizygous REQUIRED no
FIELD longitude.insurance_id TYPE string_date-time REQUIRED yes
FIELD verified TYPE string REQUIRED no
FIELD catalyst.transaction_id TYPE stri... | {"longitude":{"subtotal":"approved","image_url":"homozygous","insurance_id":"2020-12-11T09:29:00Z"},"verified":"qux","catalyst":{"transaction_id":"Santos","features":192,"conductivity":{"tags":"phone","level":"MV-Evergreen-01","annotation":"QC-07","start_date":"QC-07","ward":106}},"published":"chrX","due_date":"user@do... | extra_field | {
"type": "object",
"properties": {
"longitude": {
"type": "object",
"properties": {
"subtotal": {
"type": "string"
},
"image_url": {
"type": "string",
"enum": [
"homozygous",
"heterozygous",
"hemizygous"
... | {"longitude": {"subtotal": "approved", "image_url": "homozygous", "insurance_id": "2020-12-11T09:29:00Z"}, "verified": "qux", "catalyst": {"transaction_id": "Santos", "features": 192, "conductivity": {"tags": "phone", "level": "MV-Evergreen-01", "annotation": "QC-07", "start_date": "QC-07", "ward": 106}}, "published": ... | Unknown field 'extra_value_804' not defined in schema | {"longitude":{"subtotal":"approved","image_url":"homozygous","insurance_id":"2020-12-11T09:29:00Z"},"verified":"qux","catalyst":{"transaction_id":"Santos","features":192,"conductivity":{"tags":"phone","level":"MV-Evergreen-01","annotation":"QC-07","start_date":"QC-07","ward":106}},"published":"chrX","due_date":"user@do... |
TASK repair_structured_output
SPEC
FIELD paragraph.dosage TYPE integer REQUIRED yes
FIELD paragraph.velocity TYPE string_uri REQUIRED no
FIELD paragraph.feedback TYPE string REQUIRED yes
FIELD active TYPE null REQUIRED no
FIELD trace_id TYPE string REQUIRED no
FIELD image_url TYPE string_uri REQUIRED no
FIELD fleet_nu... | {"paragraph":{"dosage":194,"velocity":"https://data.org/data","feedback":"RTG-04"},"active":null,"trace_id":"user@domain.com","image_url":"https://api.org/data","fleet_number":7.81} | null_required | {
"type": "object",
"properties": {
"paragraph": {
"type": "object",
"properties": {
"dosage": {
"type": "integer"
},
"velocity": {
"type": "string",
"format": "uri"
},
"feedback": {
"type": "string"
}
},
... | {"paragraph": {"dosage": 194, "velocity": "https://data.org/data", "feedback": "RTG-04"}, "active": null, "trace_id": "user@domain.com", "image_url": "https://api.org/data", "fleet_number": null} | Required field 'fleet_number' is null | {"paragraph":{"dosage":194,"velocity":"https://data.org/data","feedback":"RTG-04"},"active":null,"trace_id":"user@domain.com","image_url":"https://api.org/data","fleet_number":7.81} |
TASK repair_structured_output
SPEC
FIELD address TYPE string REQUIRED yes
FIELD discount TYPE null REQUIRED no
FIELD timezone TYPE number REQUIRED yes
FIELD dissolved_oxygen TYPE boolean REQUIRED no
FIELD values.velocity TYPE string_date-time REQUIRED no
FIELD values.id TYPE boolean REQUIRED no
FIELD values.feedback T... | {"address":"2024-01-15","timezone":201.77,"dissolved_oxygen":false,"values":{"velocity":"2023-10-21T11:13:00Z","id":true,"feedback":"USD","format":270.45,"index":815}} | missing_bracket | {
"type": "object",
"properties": {
"address": {
"type": "string"
},
"discount": {
"type": "null"
},
"timezone": {
"type": "number"
},
"dissolved_oxygen": {
"type": "boolean"
},
"values": {
"type": "object",
"properties": {
"velocity": ... | {"address":"2024-01-15","timezone":201.77,"dissolved_oxygen":false,"values":{"velocity":"2023-10-21T11:13:00Z","id":true,"feedback":"USD","format":270.45,"index":815}} | Missing closing bracket | {"address":"2024-01-15","timezone":201.77,"dissolved_oxygen":false,"values":{"velocity":"2023-10-21T11:13:00Z","id":true,"feedback":"USD","format":270.45,"index":815}} |
TASK repair_structured_output
SPEC
FIELD field_l11 TYPE string REQUIRED yes
FIELD col_w21 TYPE boolean REQUIRED yes
FIELD val_t29 TYPE integer REQUIRED no
FIELD prop_x24 TYPE string REQUIRED no
FIELD param_s75[] TYPE null REQUIRED no
BROKEN_OUTPUT
{"field_l11":"Bob","col_w21":true,"val_t29":562 | {"field_l11":"Bob","col_w21":true,"val_t29":562} | truncated_object | {
"type": "object",
"properties": {
"field_l11": {
"type": "string"
},
"col_w21": {
"type": "boolean"
},
"val_t29": {
"type": "integer"
},
"prop_x24": {
"type": "string"
},
"param_s75": {
"type": "array",
"items": {
"type": "null"
... | {"field_l11":"Bob","col_w21":true,"val_t29":562 | Unexpected end of JSON input — truncated object | {"field_l11":"Bob","col_w21":true,"val_t29":562} |
TASK repair_structured_output
SPEC
FIELD attr_i82 TYPE string_date-time REQUIRED yes
FIELD col_m99 TYPE number REQUIRED yes
FIELD prop_k27 TYPE string VALUES reliable|unstable|intermittent REQUIRED no
FIELD key_z87 TYPE string REQUIRED no
FIELD attr_p29.param_a29 TYPE null REQUIRED yes
FIELD attr_p29.attr_f28 TYPE str... | {"attr_i82":"2024-04-24T09:40:00Z","col_m99":396.92,"attr_p29":{"param_a29":null,"attr_f28":"info@domain.org","param_k01":822,"param_n40":"white"}} | unquoted_keys | {
"type": "object",
"properties": {
"attr_i82": {
"type": "string",
"format": "date-time"
},
"col_m99": {
"type": "number"
},
"prop_k27": {
"type": "string",
"enum": [
"reliable",
"unstable",
"intermittent"
]
},
"key_z87": {
... | {attr_i82:"2024-04-24T09:40:00Z",col_m99:396.92,attr_p29:{param_a29:null,attr_f28:"info@domain.org",param_k01:822,param_n40:"white"}} | Expecting property name enclosed in double quotes | {"attr_i82":"2024-04-24T09:40:00Z","col_m99":396.92,"attr_p29":{"param_a29":null,"attr_f28":"info@domain.org","param_k01":822,"param_n40":"white"}} |
TASK repair_structured_output
SPEC
FIELD language TYPE integer REQUIRED no
FIELD filter_flag TYPE integer REQUIRED yes
FIELD zip_code.weight TYPE integer REQUIRED no
FIELD zip_code.category TYPE integer REQUIRED no
FIELD zip_code.throttle_pos.item_id TYPE string VALUES berthed|anchored|underway|moored REQUIRED no
FIEL... | {"language":613,"filter_flag":560,"zip_code":{"weight":40,"category":259,"throttle_pos":{"item_id":"anchored","full_name":"in_transit","maturity_date":885,"procedure_code":"type_b","run_id":true},"reagent":null},"terminal_id":426,"footnote":"test@example.com","amplitude":"cat_d","website":850} | agent_chain | {
"type": "object",
"properties": {
"language": {
"type": "integer"
},
"filter_flag": {
"type": "integer"
},
"zip_code": {
"type": "object",
"properties": {
"weight": {
"type": "integer"
},
"category": {
"type": "integer"
... | Let me check the system.
Action: calculate_price
Result: {"language": 613, "filter_flag": 560, "terminal_id": 426, "footnote": "test@example.com", "amplitude": "cat_d", "website": 850}
I'll query our database.
Action: get_inventory
Result: | Agent multi-step chain with truncated tool output | {"language":613,"filter_flag":560,"zip_code":{"weight":40,"category":259,"throttle_pos":{"item_id":"anchored","full_name":"in_transit","maturity_date":885,"procedure_code":"type_b","run_id":true},"reagent":null},"terminal_id":426,"footnote":"test@example.com","amplitude":"cat_d","website":850} |
TASK repair_structured_output
SPEC
FIELD val_o93 TYPE string VALUES email|phone|sms|push REQUIRED yes
FIELD dim_u10 TYPE string_email REQUIRED yes
FIELD param_t96 TYPE string VALUES low|medium|high|critical REQUIRED no
FIELD dim_y65 TYPE integer REQUIRED yes
BROKEN_OUTPUT
I found that dim_y65 should be 655. {"val_o93... | {"val_o93":"email","dim_u10":"info@example.com","param_t96":"medium","dim_y65":655} | partial_structure | {
"type": "object",
"properties": {
"val_o93": {
"type": "string",
"enum": [
"email",
"phone",
"sms",
"push"
]
},
"dim_u10": {
"type": "string",
"format": "email"
},
"param_t96": {
"type": "string",
"enum": [
"low"... | I found that dim_y65 should be 655. {"val_o93":"email","dim_u10":"info@example.com","param_t96":"medium","dim_y65":655} | Output mixes natural language with JSON | {"val_o93":"email","dim_u10":"info@example.com","param_t96":"medium","dim_y65":655} |
TASK repair_structured_output
SPEC
FIELD field_w38 TYPE string REQUIRED no
FIELD field_i68 TYPE string REQUIRED yes
FIELD key_u63 TYPE integer REQUIRED no
BROKEN_OUTPUT
Here is the JSON you requested:
```json
{"field_i68":"This is a test value.","key_u63":819}
```
This should match the schema you provided. | {"field_i68":"This is a test value.","key_u63":819} | markdown_explanation | {
"type": "object",
"properties": {
"field_w38": {
"type": "string"
},
"field_i68": {
"type": "string"
},
"key_u63": {
"type": "integer"
}
},
"required": [
"field_i68"
]
} | Here is the JSON you requested:
```json
{"field_i68":"This is a test value.","key_u63":819}
```
This should match the schema you provided. | Output contains markdown and explanatory text around JSON | {"field_i68":"This is a test value.","key_u63":819} |
TASK repair_structured_output
SPEC
FIELD consignee TYPE integer REQUIRED yes
FIELD url TYPE string_uri REQUIRED yes
FIELD verified TYPE number REQUIRED no
FIELD crew_id TYPE string REQUIRED no
BROKEN_OUTPUT
{"consignee": null, "url": "https://example.org/v1", "verified": 513.22, "crew_id": "chrX"} | {"consignee":208,"url":"https://example.org/v1","verified":513.22,"crew_id":"chrX"} | null_required | {
"type": "object",
"properties": {
"consignee": {
"type": "integer"
},
"url": {
"type": "string",
"format": "uri"
},
"verified": {
"type": "number"
},
"crew_id": {
"type": "string"
}
},
"required": [
"url",
"consignee"
]
} | {"consignee": null, "url": "https://example.org/v1", "verified": 513.22, "crew_id": "chrX"} | Required field 'consignee' is null | {"consignee":208,"url":"https://example.org/v1","verified":513.22,"crew_id":"chrX"} |
TASK repair_structured_output
SPEC
FIELD values TYPE integer REQUIRED yes
FIELD full_name TYPE string REQUIRED no
FIELD bed_number[].updated_at TYPE string_email REQUIRED no
FIELD bed_number[].tile TYPE null REQUIRED yes
FIELD bed_number[].thumbnail TYPE string REQUIRED no
FIELD notes[].width TYPE string VALUES new|in... | {"values":156,"full_name":"Jane","bed_number":[{"updated_at":"ops@example.com","tile":null},{"updated_at":"info@example.com","tile":null},{"updated_at":"ops@test.io","tile":null,"thumbnail":"RTG-04"}],"notes":[{"torque_output":"USD","notes":null,"bed_number":"Alice"}]} | trailing_comma | {
"type": "object",
"properties": {
"values": {
"type": "integer"
},
"full_name": {
"type": "string"
},
"bed_number": {
"type": "array",
"items": {
"type": "object",
"properties": {
"updated_at": {
"type": "string",
"forma... | {"values":156,"full_name":"Jane","bed_number":[{"updated_at":"ops@example.com","tile":null,},{"updated_at":"info@example.com","tile":null},{"updated_at":"ops@test.io","tile":null,"thumbnail":"RTG-04"}],"notes":[{"torque_output":"USD","notes":null,"bed_number":"Alice"}]} | Unexpected trailing comma | {"values":156,"full_name":"Jane","bed_number":[{"updated_at":"ops@example.com","tile":null},{"updated_at":"info@example.com","tile":null},{"updated_at":"ops@test.io","tile":null,"thumbnail":"RTG-04"}],"notes":[{"torque_output":"USD","notes":null,"bed_number":"Alice"}]} |
TASK repair_structured_output
SPEC
FIELD attr_k51 TYPE string VALUES cat_a|cat_b REQUIRED no
FIELD param_c84 TYPE string REQUIRED yes
FIELD param_k34 TYPE boolean REQUIRED no
FIELD prop_e58.val_m68 TYPE string REQUIRED no
FIELD prop_e58.dim_s61 TYPE integer REQUIRED no
FIELD prop_e58.param_h89 TYPE null REQUIRED yes
F... | {"param_c84":"foo","param_k34":false} | truncated_object | {
"type": "object",
"properties": {
"attr_k51": {
"type": "string",
"enum": [
"cat_a",
"cat_b"
]
},
"param_c84": {
"type": "string"
},
"param_k34": {
"type": "boolean"
},
"prop_e58": {
"type": "object",
"properties": {
"va... | {"param_c84":"foo","param_k34":false | Unexpected end of JSON input — truncated object | {"param_c84":"foo","param_k34":false} |
TASK repair_structured_output
SPEC
FIELD description TYPE string REQUIRED yes
FIELD lab_result.length TYPE integer REQUIRED no
FIELD lab_result.position.decay_rate TYPE string_uri REQUIRED no
FIELD lab_result.position.maturity_date TYPE string VALUES operational|degraded|offline|maintenance REQUIRED no
FIELD lab_resul... | {"description":"RTG-04","lab_result":{"position":{"decay_rate":"https://api.org/data","maturity_date":"degraded","dosage":"user@domain.com","isotope":395.0,"product_id":"Hapag-Lloyd-Express","transaction_id":"bar"},"amplitude":557.11,"quantity":"https://data.org/v1","latitude":{"bearing":"test@domain.org","span_id":"ht... | truncated_object | {
"type": "object",
"properties": {
"description": {
"type": "string"
},
"lab_result": {
"type": "object",
"properties": {
"length": {
"type": "integer"
},
"position": {
"type": "object",
"properties": {
"decay_rate": {
... | {"description":"RTG-04","lab_result":{"position":{"decay_rate":"https://api.org/data","maturity_date":"degraded","dosage":"user@domain.com","isotope":395.0,"product_id":"Hapag-Lloyd-Express","transaction_id":"bar"},"amplitude":557.11,"quantity":"https://data.org/v1","latitude":{"bearing":"test@domain.org","span_id":"ht... | Unexpected end of JSON input — truncated object | {"description":"RTG-04","lab_result":{"position":{"decay_rate":"https://api.org/data","maturity_date":"degraded","dosage":"user@domain.com","isotope":395.0,"product_id":"Hapag-Lloyd-Express","transaction_id":"bar"},"amplitude":557.11,"quantity":"https://data.org/v1","latitude":{"bearing":"test@domain.org","span_id":"ht... |
TASK repair_structured_output
SPEC
FIELD col_n02 TYPE string REQUIRED yes
FIELD prop_e77 TYPE string REQUIRED yes
FIELD dim_s77 TYPE string REQUIRED yes
BROKEN_OUTPUT
"col_n02":"https://example.com","prop_e77":"Bob","dim_s77":"Johnson"} | {"col_n02":"https://example.com","prop_e77":"Bob","dim_s77":"Johnson"} | missing_brace | {
"type": "object",
"properties": {
"col_n02": {
"type": "string"
},
"prop_e77": {
"type": "string"
},
"dim_s77": {
"type": "string"
}
},
"required": [
"dim_s77",
"col_n02",
"prop_e77"
]
} | "col_n02":"https://example.com","prop_e77":"Bob","dim_s77":"Johnson"} | Missing closing brace | {"col_n02":"https://example.com","prop_e77":"Bob","dim_s77":"Johnson"} |
TASK repair_structured_output
SPEC
FIELD velocity TYPE string VALUES cat_a|cat_b|cat_c|cat_d|cat_e|cat_f REQUIRED yes
FIELD brake_pressure TYPE integer REQUIRED no
FIELD image_url TYPE string REQUIRED no
FIELD quantity TYPE number REQUIRED yes
FIELD vital_sign TYPE string VALUES level_1|level_2|level_3|level_4 REQUIRE... | {"velocity":"cat_f","brake_pressure":873,"image_url":"Paris","quantity":912.73,"manifest_ref":740.11,"bed_number":"mode_d","invoice_id":true} | invalid_enum | {
"type": "object",
"properties": {
"velocity": {
"type": "string",
"enum": [
"cat_a",
"cat_b",
"cat_c",
"cat_d",
"cat_e",
"cat_f"
]
},
"brake_pressure": {
"type": "integer"
},
"image_url": {
"type": "string"
},
... | {"velocity": "cat_f", "brake_pressure": 873, "image_url": "Paris", "quantity": 912.73, "manifest_ref": 740.11, "bed_number": "invalid_choice_848", "invoice_id": true} | Field 'bed_number' has invalid enum value 'invalid_choice_848', expected one of ['mode_a', 'mode_b', 'mode_c', 'mode_d', 'mode_e'] | {"velocity":"cat_f","brake_pressure":873,"image_url":"Paris","quantity":912.73,"manifest_ref":740.11,"bed_number":"mode_d","invoice_id":true} |
TASK repair_structured_output
SPEC
FIELD param_c46.field_n27 TYPE string VALUES cat_a|cat_b REQUIRED yes
FIELD param_c46.dim_x41 TYPE string_uri REQUIRED no
FIELD param_c46.dim_f70 TYPE string REQUIRED no
FIELD param_c46.col_o89 TYPE null REQUIRED no
FIELD param_c46.param_r27 TYPE string_date-time REQUIRED yes
FIELD p... | {"param_c46":{"field_n27":"cat_a","dim_x41":"https://data.io/data","dim_f70":"Tokyo","param_r27":"2021-01-12T08:34:00Z","col_d06":"FWD","dim_t55":"https://data.io/api","prop_t96":true},"field_s60":{"key_r10":"option_a","val_g62":"option_a","key_i71":"medium"},"param_z73":"in_transit"} | agent_chain | {
"type": "object",
"properties": {
"param_c46": {
"type": "object",
"properties": {
"field_n27": {
"type": "string",
"enum": [
"cat_a",
"cat_b"
]
},
"dim_x41": {
"type": "string",
"format": "uri"
... | I need to look up the information first.
Action: get_weather
Result: {"field_s60": {"key_r10": "option_a", "val_g62": "option_a", "key_i71": "medium"}, "param_z73": "in_transit"}
I'll query our database.
Action: apply_discount
Result: | Agent multi-step chain with truncated tool output | {"param_c46":{"field_n27":"cat_a","dim_x41":"https://data.io/data","dim_f70":"Tokyo","param_r27":"2021-01-12T08:34:00Z","col_d06":"FWD","dim_t55":"https://data.io/api","prop_t96":true},"field_s60":{"key_r10":"option_a","val_g62":"option_a","key_i71":"medium"},"param_z73":"in_transit"} |
TASK repair_structured_output
SPEC
FIELD key_m33 TYPE number REQUIRED no
FIELD prop_y24 TYPE null REQUIRED no
FIELD attr_l01.dim_n45.key_t04 TYPE string_uri REQUIRED no
FIELD attr_l01.dim_n45.dim_k39 TYPE string REQUIRED no
FIELD attr_l01.dim_n45.val_m22 TYPE integer REQUIRED no
FIELD attr_l01.dim_n45.col_j36 TYPE str... | {"key_m33":291.89,"prop_y24":null,"attr_l01":{"dim_n45":{"key_t04":"https://www.org/v1","dim_k39":"world","col_j36":"2021-03-11T20:07:00Z","dim_n41":null},"val_d33":{"prop_o24":"warning","attr_x05":"2023-05-05T05:41:00Z","field_y57":"single","prop_z00":440.56},"field_l92":90,"col_r98":null,"val_m64":"sms"}} | single_quotes | {
"type": "object",
"properties": {
"key_m33": {
"type": "number"
},
"prop_y24": {
"type": "null"
},
"attr_l01": {
"type": "object",
"properties": {
"dim_n45": {
"type": "object",
"properties": {
"key_t04": {
"type": "... | {'key_m33':291.89,'prop_y24':null,'attr_l01':{'dim_n45':{'key_t04':'https://www.org/v1','dim_k39':'world','col_j36':'2021-03-11T20:07:00Z','dim_n41':null},'val_d33':{'prop_o24':'warning','attr_x05':'2023-05-05T05:41:00Z','field_y57':'single','prop_z00':440.56},'field_l92':90,'col_r98':null,'val_m64':'sms'}} | Expecting property name enclosed in double quotes | {"key_m33":291.89,"prop_y24":null,"attr_l01":{"dim_n45":{"key_t04":"https://www.org/v1","dim_k39":"world","col_j36":"2021-03-11T20:07:00Z","dim_n41":null},"val_d33":{"prop_o24":"warning","attr_x05":"2023-05-05T05:41:00Z","field_y57":"single","prop_z00":440.56},"field_l92":90,"col_r98":null,"val_m64":"sms"}} |
TASK repair_structured_output
SPEC
FIELD prop_n29 TYPE string VALUES option_a|option_b|option_c|option_d REQUIRED no
FIELD val_l81 TYPE string VALUES cat_a|cat_b REQUIRED no
FIELD field_w52 TYPE string VALUES option_a|option_b|option_c|option_d|option_e REQUIRED no
FIELD field_y67 TYPE null REQUIRED yes
FIELD prop_d61... | {"prop_n29":"option_d","field_w52":"option_a","field_y67":null,"prop_d61":861} | extra_text_before | {
"type": "object",
"properties": {
"prop_n29": {
"type": "string",
"enum": [
"option_a",
"option_b",
"option_c",
"option_d"
]
},
"val_l81": {
"type": "string",
"enum": [
"cat_a",
"cat_b"
]
},
"field_w52": {
... | The instrument reported:
{"prop_n29":"option_d","field_w52":"option_a","field_y67":null,"prop_d61":861} | Output contains non-JSON text before the object | {"prop_n29":"option_d","field_w52":"option_a","field_y67":null,"prop_d61":861} |
TASK repair_structured_output
SPEC
FIELD key_a94 TYPE integer REQUIRED no
FIELD col_e31 TYPE string REQUIRED yes
FIELD prop_t89 TYPE string VALUES email|phone|sms|push REQUIRED no
FIELD param_f62 TYPE null REQUIRED yes
BROKEN_OUTPUT
{'key_a94':915,'col_e31':'foo','prop_t89':'sms','param_f62':null} | {"key_a94":915,"col_e31":"foo","prop_t89":"sms","param_f62":null} | single_quotes | {
"type": "object",
"properties": {
"key_a94": {
"type": "integer"
},
"col_e31": {
"type": "string"
},
"prop_t89": {
"type": "string",
"enum": [
"email",
"phone",
"sms",
"push"
]
},
"param_f62": {
"type": "null"
}
... | {'key_a94':915,'col_e31':'foo','prop_t89':'sms','param_f62':null} | Expecting property name enclosed in double quotes | {"key_a94":915,"col_e31":"foo","prop_t89":"sms","param_f62":null} |
TASK repair_structured_output
SPEC
FIELD last_name TYPE boolean REQUIRED no
FIELD nickname TYPE string_email REQUIRED yes
FIELD crew_id TYPE string VALUES active|inactive|pending REQUIRED no
FIELD altitude.priority.latitude TYPE integer REQUIRED no
FIELD altitude.priority.procedure_code TYPE string REQUIRED no
FIELD a... | {"last_name":false,"nickname":"admin@test.io","altitude":{"priority":{"compound":false,"quality_score":"https://www.org/v1","amplitude":false},"pressure_kpa":true,"bearing":null},"verified":528.72} | markdown_fences | {
"type": "object",
"properties": {
"last_name": {
"type": "boolean"
},
"nickname": {
"type": "string",
"format": "email"
},
"crew_id": {
"type": "string",
"enum": [
"active",
"inactive",
"pending"
]
},
"altitude": {
"type... | ```json
{"last_name":false,"nickname":"admin@test.io","altitude":{"priority":{"compound":false,"quality_score":"https://www.org/v1","amplitude":false},"pressure_kpa":true,"bearing":null},"verified":528.72}
``` | Output contains markdown code fences | {"last_name":false,"nickname":"admin@test.io","altitude":{"priority":{"compound":false,"quality_score":"https://www.org/v1","amplitude":false},"pressure_kpa":true,"bearing":null},"verified":528.72} |
TASK repair_structured_output
SPEC
FIELD field_b18 TYPE boolean REQUIRED no
FIELD param_x03 TYPE string REQUIRED no
FIELD dim_c94 TYPE integer REQUIRED no
FIELD prop_n06.field_c73 TYPE integer REQUIRED yes
FIELD prop_n06.param_s57 TYPE string_email REQUIRED yes
FIELD prop_n06.key_a18 TYPE string REQUIRED no
FIELD prop... | {"field_b18":false,"dim_c94":738,"prop_n06":{"field_c73":222,"param_s57":"test@domain.org","val_x10":317.59,"col_o46":"type_c"},"dim_m44":null,"val_c21":"cat_c"} | null_required | {
"type": "object",
"properties": {
"field_b18": {
"type": "boolean"
},
"param_x03": {
"type": "string"
},
"dim_c94": {
"type": "integer"
},
"prop_n06": {
"type": "object",
"properties": {
"field_c73": {
"type": "integer"
},
... | {"field_b18": false, "dim_c94": 738, "prop_n06": {"field_c73": 222, "param_s57": "test@domain.org", "val_x10": 317.59, "col_o46": "type_c"}, "dim_m44": null, "val_c21": null} | Required field 'val_c21' is null | {"field_b18":false,"dim_c94":738,"prop_n06":{"field_c73":222,"param_s57":"test@domain.org","val_x10":317.59,"col_o46":"type_c"},"dim_m44":null,"val_c21":"cat_c"} |
TASK repair_structured_output
SPEC
FIELD amount TYPE integer REQUIRED no
FIELD end_date TYPE string_date-time REQUIRED no
FIELD batch_code.pressure_kpa TYPE string REQUIRED no
FIELD batch_code.balance TYPE number REQUIRED no
FIELD batch_code.currency TYPE string VALUES coastal|oceanic|inland|arctic REQUIRED no
FIELD b... | {"end_date":"2020-10-17T08:11:00Z","batch_code":{"pressure_kpa":"hello","balance":202.65,"currency":"inland","level":"baz","state":822.34,"manifest_ref":729,"amount":307.25,"compound":"https://www.com/data"},"items":"2025-05-21T16:26:00Z"} | missing_brace | {
"type": "object",
"properties": {
"amount": {
"type": "integer"
},
"end_date": {
"type": "string",
"format": "date-time"
},
"batch_code": {
"type": "object",
"properties": {
"pressure_kpa": {
"type": "string"
},
"balance": {
... | {"end_date":"2020-10-17T08:11:00Z","batch_code":"pressure_kpa":"hello","balance":202.65,"currency":"inland","level":"baz","state":822.34,"manifest_ref":729,"amount":307.25,"compound":"https://www.com/data"},"items":"2025-05-21T16:26:00Z"} | Missing closing brace | {"end_date":"2020-10-17T08:11:00Z","batch_code":{"pressure_kpa":"hello","balance":202.65,"currency":"inland","level":"baz","state":822.34,"manifest_ref":729,"amount":307.25,"compound":"https://www.com/data"},"items":"2025-05-21T16:26:00Z"} |
TASK repair_structured_output
SPEC
FIELD level.url TYPE string VALUES USD|EUR|GBP|BRL|JPY REQUIRED no
FIELD level.label TYPE integer REQUIRED no
FIELD level.dosage TYPE boolean REQUIRED yes
FIELD level.latitude TYPE string REQUIRED no
FIELD level.shipping TYPE string VALUES admin|editor|viewer REQUIRED yes
FIELD level... | {"level":{"url":"BRL","label":534,"dosage":true,"shipping":"admin","last_name":"published","trace_id":"enterprise"},"tags":null,"span_id":"Johnson","commit_hash":886,"options":"nonsense","collateral":"London","bearing":false} | truncated_array | {
"type": "object",
"properties": {
"level": {
"type": "object",
"properties": {
"url": {
"type": "string",
"enum": [
"USD",
"EUR",
"GBP",
"BRL",
"JPY"
]
},
"label": {
"type": ... | {"level":{"url":"BRL","label":534,"dosage":true,"shipping":"admin","last_name":"published","trace_id":"enterprise"},"tags":null,"span_id":"Johnson","commit_hash":886,"options":"nonsense","collateral":"London","bearing":false | Unexpected end of JSON input — truncated object | {"level":{"url":"BRL","label":534,"dosage":true,"shipping":"admin","last_name":"published","trace_id":"enterprise"},"tags":null,"span_id":"Johnson","commit_hash":886,"options":"nonsense","collateral":"London","bearing":false} |
TASK repair_structured_output
SPEC
FIELD salinity TYPE string REQUIRED no
FIELD annotation TYPE string VALUES email|phone|sms|push REQUIRED yes
FIELD dissolved_oxygen TYPE string_uri REQUIRED yes
FIELD diagnosis_code[].humidity_pct TYPE string REQUIRED no
FIELD diagnosis_code[].branch TYPE string REQUIRED yes
FIELD di... | {"salinity":"Hapag-Lloyd-Express","annotation":"push","dissolved_oxygen":"https://data.com/v1"} | missing_bracket | {
"type": "object",
"properties": {
"salinity": {
"type": "string"
},
"annotation": {
"type": "string",
"enum": [
"email",
"phone",
"sms",
"push"
]
},
"dissolved_oxygen": {
"type": "string",
"format": "uri"
},
"diagnosis... | {"salinity":"Hapag-Lloyd-Express","annotation":"push","dissolved_oxygen":"https://data.com/v1"} | Missing closing bracket | {"salinity":"Hapag-Lloyd-Express","annotation":"push","dissolved_oxygen":"https://data.com/v1"} |
TASK repair_structured_output
SPEC
FIELD values TYPE string VALUES single|married|divorced REQUIRED no
FIELD strand TYPE string VALUES reliable|unstable|intermittent REQUIRED no
FIELD dosage TYPE string VALUES free|basic|pro|enterprise REQUIRED no
FIELD longitude TYPE string REQUIRED no
FIELD commit_hash TYPE string R... | {"values":"divorced","strand":"reliable","dosage":"enterprise","longitude":"completed","commit_hash":"2024-06-30","subject":"married","format":"success"} | trailing_comma | {
"type": "object",
"properties": {
"values": {
"type": "string",
"enum": [
"single",
"married",
"divorced"
]
},
"strand": {
"type": "string",
"enum": [
"reliable",
"unstable",
"intermittent"
]
},
"dosage": {
... | {"values":"divorced","strand":"reliable","dosage":"enterprise","longitude":"completed","commit_hash":"2024-06-30","subject":"married","format":"success",} | Unexpected trailing comma | {"values":"divorced","strand":"reliable","dosage":"enterprise","longitude":"completed","commit_hash":"2024-06-30","subject":"married","format":"success"} |
TASK repair_structured_output
SPEC
FIELD position.span_id TYPE boolean REQUIRED yes
FIELD position.decay_rate TYPE integer REQUIRED no
FIELD position.items TYPE string REQUIRED yes
FIELD position.lab_result[] TYPE number REQUIRED yes
FIELD position.humidity_pct[] TYPE boolean REQUIRED no
FIELD company TYPE string VALU... | {"company":"mode_a","vessel_name":"medium"} | tool_call_wrong_param | {
"type": "object",
"properties": {
"position": {
"type": "object",
"properties": {
"span_id": {
"type": "boolean"
},
"decay_rate": {
"type": "integer"
},
"items": {
"type": "string"
},
"lab_result": {
"t... | Tool: calculate_price
Params: {"company": "mode_a", "vessel_name": "medium"} | Agent used wrong parameter name 'medication_id' instead of 'medication' | {"company":"mode_a","vessel_name":"medium"} |
TASK repair_structured_output
SPEC
FIELD height TYPE integer REQUIRED no
FIELD crew_id TYPE string_email REQUIRED yes
FIELD bill_of_lading.age TYPE string VALUES USD|EUR|GBP|BRL|JPY REQUIRED no
FIELD bill_of_lading.url TYPE string VALUES new|in_transit|delivered|returned REQUIRED no
FIELD bill_of_lading.isotope TYPE s... | {"crew_id":"info@domain.org","bill_of_lading":{"age":"EUR","isotope":"2023-12-25","department":629,"description":"closed"}} | truncated_array | {
"type": "object",
"properties": {
"height": {
"type": "integer"
},
"crew_id": {
"type": "string",
"format": "email"
},
"bill_of_lading": {
"type": "object",
"properties": {
"age": {
"type": "string",
"enum": [
"USD",
... | {"crew_id":"info@domain.org","bill_of_lading":{"age":"EUR","isotope":"2023-12-25","department":629,"description":"closed"} | Unexpected end of JSON input — truncated object | {"crew_id":"info@domain.org","bill_of_lading":{"age":"EUR","isotope":"2023-12-25","department":629,"description":"closed"}} |
TASK repair_structured_output
SPEC
FIELD dim_q61 TYPE number REQUIRED yes
FIELD field_z63 TYPE string_date-time REQUIRED yes
FIELD attr_d98 TYPE string VALUES type_a|type_b|type_c REQUIRED no
BROKEN_OUTPUT
{"dim_q61":925.51,"field_z63":"2020-05-10T17:24:00Z" | {"dim_q61":925.51,"field_z63":"2020-05-10T17:24:00Z"} | missing_brace | {
"type": "object",
"properties": {
"dim_q61": {
"type": "number"
},
"field_z63": {
"type": "string",
"format": "date-time"
},
"attr_d98": {
"type": "string",
"enum": [
"type_a",
"type_b",
"type_c"
]
}
},
"required": [
"dim_... | {"dim_q61":925.51,"field_z63":"2020-05-10T17:24:00Z" | Missing closing brace | {"dim_q61":925.51,"field_z63":"2020-05-10T17:24:00Z"} |
TASK repair_structured_output
SPEC
FIELD payment_status TYPE string REQUIRED no
FIELD ward TYPE string VALUES level_1|level_2|level_3|level_4|level_5 REQUIRED no
FIELD options[].section TYPE string VALUES type_a|type_b|type_c|type_d REQUIRED yes
FIELD options[].website TYPE string VALUES type_a|type_b REQUIRED yes
FIE... | {"payment_status":"https://api.example.com/v1","ward":"level_1","options":[{"section":"type_c","website":"type_a","voltage":"option_b","enabled":"Silva"},{"section":"type_d","website":"type_a","voltage":"option_b","enabled":"world"},{"section":"type_b","website":"type_a","enabled":"Hapag-Lloyd-Express"}]} | extra_text_after | {
"type": "object",
"properties": {
"payment_status": {
"type": "string"
},
"ward": {
"type": "string",
"enum": [
"level_1",
"level_2",
"level_3",
"level_4",
"level_5"
]
},
"options": {
"type": "array",
"items": {
... | {"payment_status":"https://api.example.com/v1","ward":"level_1","options":[{"section":"type_c","website":"type_a","voltage":"option_b","enabled":"Silva"},{"section":"type_d","website":"type_a","voltage":"option_b","enabled":"world"},{"section":"type_b","website":"type_a","enabled":"Hapag-Lloyd-Express"}]}
Analysis fini... | Output contains non-JSON text after the object | {"payment_status":"https://api.example.com/v1","ward":"level_1","options":[{"section":"type_c","website":"type_a","voltage":"option_b","enabled":"Silva"},{"section":"type_d","website":"type_a","voltage":"option_b","enabled":"world"},{"section":"type_b","website":"type_a","enabled":"Hapag-Lloyd-Express"}]} |
TASK repair_structured_output
SPEC
FIELD loan_amount TYPE string VALUES email|phone|sms|push REQUIRED no
FIELD user_id TYPE boolean REQUIRED no
FIELD label TYPE string_uri REQUIRED yes
BROKEN_OUTPUT
Here is the response in the requested format:
{"loan_amount":"push","user_id":false,"label":"https://api.io/v1"} | {"loan_amount":"push","user_id":false,"label":"https://api.io/v1"} | extra_text_before | {
"type": "object",
"properties": {
"loan_amount": {
"type": "string",
"enum": [
"email",
"phone",
"sms",
"push"
]
},
"user_id": {
"type": "boolean"
},
"label": {
"type": "string",
"format": "uri"
}
},
"required": [
... | Here is the response in the requested format:
{"loan_amount":"push","user_id":false,"label":"https://api.io/v1"} | Output contains non-JSON text before the object | {"loan_amount":"push","user_id":false,"label":"https://api.io/v1"} |
TASK repair_structured_output
SPEC
FIELD size TYPE string VALUES admin|editor|viewer REQUIRED yes
FIELD label TYPE number REQUIRED no
FIELD section TYPE string VALUES homozygous|heterozygous|hemizygous REQUIRED yes
FIELD country TYPE string VALUES operational|degraded|offline|maintenance REQUIRED yes
BROKEN_OUTPUT
{"... | {"size":"viewer","label":797.49,"section":"hemizygous","country":"maintenance"} | number_with_unit | {
"type": "object",
"properties": {
"size": {
"type": "string",
"enum": [
"admin",
"editor",
"viewer"
]
},
"label": {
"type": "number"
},
"section": {
"type": "string",
"enum": [
"homozygous",
"heterozygous",
"he... | {"size": "viewer", "label": "797.49sec", "section": "hemizygous", "country": "maintenance"} | Field 'label' must be number, got string with unit | {"size":"viewer","label":797.49,"section":"hemizygous","country":"maintenance"} |
TASK repair_structured_output
SPEC
FIELD end_date TYPE string REQUIRED no
FIELD invoice_id TYPE number REQUIRED no
FIELD insurance_id TYPE integer REQUIRED yes
FIELD length TYPE string REQUIRED no
FIELD type TYPE integer REQUIRED no
FIELD age TYPE string VALUES open|in_progress|resolved|closed REQUIRED no
BROKEN_OUTP... | {"end_date":"Smith","invoice_id":581.96,"insurance_id":941,"length":"demo","type":750} | tool_call_text_mix | {
"type": "object",
"properties": {
"end_date": {
"type": "string"
},
"invoice_id": {
"type": "number"
},
"insurance_id": {
"type": "integer"
},
"length": {
"type": "string"
},
"type": {
"type": "integer"
},
"age": {
"type": "string",
... | Let me check the system.
<tool_call name="get_weather">
{"end_date":"Smith","invoice_id":581.96,"insurance_id":941,"length":"demo","type":750}
</tool_call.
Done! | Agent response mixes reasoning text with tool call | {"end_date":"Smith","invoice_id":581.96,"insurance_id":941,"length":"demo","type":750} |
TASK repair_structured_output
SPEC
FIELD coverage TYPE number REQUIRED no
FIELD commit_hash TYPE number REQUIRED yes
FIELD country[].paragraph TYPE string VALUES level_1|level_2|level_3 REQUIRED yes
FIELD country[].freight_class TYPE number REQUIRED yes
FIELD country[].rating TYPE string REQUIRED yes
BROKEN_OUTPUT
{'... | {"commit_hash":270.4,"country":[{"paragraph":"level_1","freight_class":434.42,"rating":"pending"},{"paragraph":"level_2","freight_class":880.37,"rating":"Hapag-Lloyd-Express"}]} | single_quotes | {
"type": "object",
"properties": {
"coverage": {
"type": "number"
},
"commit_hash": {
"type": "number"
},
"country": {
"type": "array",
"items": {
"type": "object",
"properties": {
"paragraph": {
"type": "string",
"enum":... | {'commit_hash':270.4,'country':[{'paragraph':'level_1','freight_class':434.42,'rating':'pending'},{'paragraph':'level_2','freight_class':880.37,'rating':'Hapag-Lloyd-Express'}]} | Expecting property name enclosed in double quotes | {"commit_hash":270.4,"country":[{"paragraph":"level_1","freight_class":434.42,"rating":"pending"},{"paragraph":"level_2","freight_class":880.37,"rating":"Hapag-Lloyd-Express"}]} |
TASK repair_structured_output
SPEC
FIELD description TYPE number REQUIRED no
FIELD salinity TYPE null REQUIRED yes
FIELD currency TYPE string_email REQUIRED yes
FIELD dissolved_oxygen.velocity TYPE boolean REQUIRED yes
FIELD dissolved_oxygen.vital_sign.insurance_id TYPE integer REQUIRED yes
FIELD dissolved_oxygen.vita... | {"salinity":null,"currency":"test@example.com","dissolved_oxygen":{"velocity":false,"vital_sign":{"insurance_id":218,"filter_flag":"https://api.io/data","commit_hash":"2024-06-30","options":[613.61]},"ph_level":"ops@test.io"},"vessel_name":135,"frequency_hz":"synonymous","city":"warning"} | extra_text_before | {
"type": "object",
"properties": {
"description": {
"type": "number"
},
"salinity": {
"type": "null"
},
"currency": {
"type": "string",
"format": "email"
},
"dissolved_oxygen": {
"type": "object",
"properties": {
"velocity": {
"type"... | I've generated the following JSON:
{"salinity":null,"currency":"test@example.com","dissolved_oxygen":{"velocity":false,"vital_sign":{"insurance_id":218,"filter_flag":"https://api.io/data","commit_hash":"2024-06-30","options":[613.61]},"ph_level":"ops@test.io"},"vessel_name":135,"frequency_hz":"synonymous","city":"warni... | Output contains non-JSON text before the object | {"salinity":null,"currency":"test@example.com","dissolved_oxygen":{"velocity":false,"vital_sign":{"insurance_id":218,"filter_flag":"https://api.io/data","commit_hash":"2024-06-30","options":[613.61]},"ph_level":"ops@test.io"},"vessel_name":135,"frequency_hz":"synonymous","city":"warning"} |
TASK repair_structured_output
SPEC
FIELD freight_class TYPE null REQUIRED no
FIELD strand TYPE string REQUIRED no
FIELD position TYPE string REQUIRED no
FIELD footnote[] TYPE boolean REQUIRED yes
BROKEN_OUTPUT
Tool: fetch_lab_result
Params: {"freight_class": null, "position": "example", "footnote": [true]} | {"freight_class":null,"position":"example","footnote":[true]} | tool_call_wrong_param | {
"type": "object",
"properties": {
"freight_class": {
"type": "null"
},
"strand": {
"type": "string"
},
"position": {
"type": "string"
},
"footnote": {
"type": "array",
"items": {
"type": "boolean"
}
}
},
"required": [
"footnote"
... | Tool: fetch_lab_result
Params: {"freight_class": null, "position": "example", "footnote": [true]} | Agent used wrong parameter name 'strand_name' instead of 'strand' | {"freight_class":null,"position":"example","footnote":[true]} |
TASK repair_structured_output
SPEC
FIELD attr_n30 TYPE string VALUES email|phone|sms|push REQUIRED yes
FIELD field_m85 TYPE string REQUIRED yes
FIELD prop_x73 TYPE string REQUIRED yes
FIELD col_z66.prop_l90 TYPE number REQUIRED yes
FIELD col_z66.dim_o46.param_h53 TYPE string_uri REQUIRED yes
FIELD col_z66.dim_o46.attr... | {"attr_n30":"email","field_m85":"GRCh38","prop_x73":"GRCh38","col_z66":{"prop_l90":566.03,"dim_o46":{"param_h53":"https://example.org/api","attr_n92":"Paris","col_x53":"frameshift"},"dim_c65":"https://data.org/api","col_v91":"John","col_e19":"baz","prop_k74":"user@example.com","attr_b33":"https://api.org/data","val_a50... | invalid_enum | {
"type": "object",
"properties": {
"attr_n30": {
"type": "string",
"enum": [
"email",
"phone",
"sms",
"push"
]
},
"field_m85": {
"type": "string"
},
"prop_x73": {
"type": "string"
},
"col_z66": {
"type": "object",
... | {"attr_n30": "invalid_choice_515", "field_m85": "GRCh38", "prop_x73": "GRCh38", "col_z66": {"prop_l90": 566.03, "dim_o46": {"param_h53": "https://example.org/api", "attr_n92": "Paris", "col_x53": "frameshift"}, "dim_c65": "https://data.org/api", "col_v91": "John", "col_e19": "baz", "prop_k74": "user@example.com", "attr... | Field 'attr_n30' has invalid enum value 'invalid_choice_515', expected one of ['email', 'phone', 'sms', 'push'] | {"attr_n30":"email","field_m85":"GRCh38","prop_x73":"GRCh38","col_z66":{"prop_l90":566.03,"dim_o46":{"param_h53":"https://example.org/api","attr_n92":"Paris","col_x53":"frameshift"},"dim_c65":"https://data.org/api","col_v91":"John","col_e19":"baz","prop_k74":"user@example.com","attr_b33":"https://api.org/data","val_a50... |
TASK repair_structured_output
SPEC
FIELD attr_s01 TYPE string_email REQUIRED yes
FIELD prop_r84 TYPE string VALUES berthed|anchored|underway|moored REQUIRED no
FIELD col_d02 TYPE string VALUES reliable|unstable|intermittent REQUIRED yes
FIELD field_m90[] TYPE string VALUES low|medium|high|critical REQUIRED no
BROKEN_... | {"attr_s01":"info@domain.org","col_d02":"unstable","field_m90":["medium"]} | unquoted_keys | {
"type": "object",
"properties": {
"attr_s01": {
"type": "string",
"format": "email"
},
"prop_r84": {
"type": "string",
"enum": [
"berthed",
"anchored",
"underway",
"moored"
]
},
"col_d02": {
"type": "string",
"enum": [
... | {attr_s01:"info@domain.org",col_d02:"unstable",field_m90:["medium"]} | Expecting property name enclosed in double quotes | {"attr_s01":"info@domain.org","col_d02":"unstable","field_m90":["medium"]} |
TASK repair_structured_output
SPEC
FIELD col_a74 TYPE string VALUES draft|published|archived REQUIRED yes
FIELD key_i77 TYPE boolean REQUIRED yes
FIELD field_k40 TYPE string REQUIRED yes
FIELD col_w31 TYPE number REQUIRED yes
BROKEN_OUTPUT
Let me check the system.
Action: query_port_status
Result: {"key_i77": true, "... | {"col_a74":"published","key_i77":true,"field_k40":"FWD","col_w31":298.42} | agent_chain | {
"type": "object",
"properties": {
"col_a74": {
"type": "string",
"enum": [
"draft",
"published",
"archived"
]
},
"key_i77": {
"type": "boolean"
},
"field_k40": {
"type": "string"
},
"col_w31": {
"type": "number"
}
},
"... | Let me check the system.
Action: query_port_status
Result: {"key_i77": true, "field_k40": "FWD", "col_w31": 298.42}
I'll query our database.
Action: get_account
Result: | Agent multi-step chain with truncated tool output | {"col_a74":"published","key_i77":true,"field_k40":"FWD","col_w31":298.42} |
TASK repair_structured_output
SPEC
FIELD attr_o06 TYPE string VALUES email|phone|sms|push REQUIRED no
FIELD attr_h73 TYPE string VALUES new|in_transit|delivered|returned REQUIRED yes
FIELD dim_y67 TYPE string VALUES free|basic|pro|enterprise REQUIRED no
FIELD param_p62 TYPE boolean REQUIRED yes
FIELD attr_l87 TYPE nul... | {"attr_h73":"returned","dim_y67":"enterprise","param_p62":true,"attr_l87":null,"val_b95":false,"col_r07":830,"attr_t41":"free"} | agent_chain | {
"type": "object",
"properties": {
"attr_o06": {
"type": "string",
"enum": [
"email",
"phone",
"sms",
"push"
]
},
"attr_h73": {
"type": "string",
"enum": [
"new",
"in_transit",
"delivered",
"returned"
]
... | Let me check the system.
Action: book_appointment
Result: {"attr_h73": "returned", "dim_y67": "enterprise", "param_p62": true, "attr_l87": null, "val_b95": false, "attr_t41": "free"}
Processing the request now.
Action: query_port_status
Result: | Agent multi-step chain with truncated tool output | {"attr_h73":"returned","dim_y67":"enterprise","param_p62":true,"attr_l87":null,"val_b95":false,"col_r07":830,"attr_t41":"free"} |
TASK repair_structured_output
SPEC
FIELD field_t37 TYPE integer REQUIRED no
FIELD key_j30 TYPE integer REQUIRED yes
FIELD col_g99 TYPE boolean REQUIRED no
FIELD prop_s46 TYPE integer REQUIRED no
FIELD prop_a27 TYPE string VALUES level_1|level_2|level_3 REQUIRED no
BROKEN_OUTPUT
{"field_t37":661,"key_j30":330,"prop_s4... | {"field_t37":661,"key_j30":330,"prop_s46":427} | truncated_object | {
"type": "object",
"properties": {
"field_t37": {
"type": "integer"
},
"key_j30": {
"type": "integer"
},
"col_g99": {
"type": "boolean"
},
"prop_s46": {
"type": "integer"
},
"prop_a27": {
"type": "string",
"enum": [
"level_1",
... | {"field_t37":661,"key_j30":330,"prop_s46":427 | Unexpected end of JSON input — truncated object | {"field_t37":661,"key_j30":330,"prop_s46":427} |
TASK repair_structured_output
SPEC
FIELD loan_amount TYPE string REQUIRED no
FIELD brake_pressure TYPE number REQUIRED no
FIELD start_date TYPE string REQUIRED yes
FIELD index.format TYPE string VALUES USD|EUR|GBP|BRL|JPY REQUIRED no
FIELD index.created_at TYPE integer REQUIRED no
FIELD index.total TYPE boolean REQUIR... | {"loan_amount":"active","brake_pressure":671.29,"start_date":"test@example.com"} | tool_call_bad_format | {
"type": "object",
"properties": {
"loan_amount": {
"type": "string"
},
"brake_pressure": {
"type": "number"
},
"start_date": {
"type": "string"
},
"index": {
"type": "object",
"properties": {
"format": {
"type": "string",
"enum"... | <functioncall> filter_variants
{loan_amount: "active", brake_pressure: 671.29, start_date: "test@example.com"} | Tool call has malformed arguments — unquoted keys in function parameters | {"loan_amount":"active","brake_pressure":671.29,"start_date":"test@example.com"} |
TASK repair_structured_output
SPEC
FIELD label TYPE integer REQUIRED no
FIELD count TYPE integer REQUIRED no
FIELD values TYPE integer REQUIRED yes
BROKEN_OUTPUT
I need to check the port status before assigning the berth.
Let me verify the cargo manifest.
{"label":400,"count":465,"values":305} | {"label":400,"count":465,"values":305} | thought_process | {
"type": "object",
"properties": {
"label": {
"type": "integer"
},
"count": {
"type": "integer"
},
"values": {
"type": "integer"
}
},
"required": [
"values"
]
} | I need to check the port status before assigning the berth.
Let me verify the cargo manifest.
{"label":400,"count":465,"values":305} | Output contains chain-of-thought reasoning before JSON | {"label":400,"count":465,"values":305} |
TASK repair_structured_output
SPEC
FIELD val_r25 TYPE string VALUES option_a|option_b|option_c|option_d|option_e REQUIRED no
FIELD val_v17 TYPE string_uri REQUIRED no
FIELD attr_p77 TYPE integer REQUIRED no
FIELD param_y57 TYPE null REQUIRED no
FIELD prop_z73 TYPE string_date-time REQUIRED no
FIELD key_h89 TYPE intege... | {"val_r25":"option_c","attr_p77":858,"prop_z73":"2024-03-18T03:34:00Z","key_h89":6} | date_format_error | {
"type": "object",
"properties": {
"val_r25": {
"type": "string",
"enum": [
"option_a",
"option_b",
"option_c",
"option_d",
"option_e"
]
},
"val_v17": {
"type": "string",
"format": "uri"
},
"attr_p77": {
"type": "intege... | {"val_r25": "option_c", "attr_p77": 858, "prop_z73": "2024/06/15 14:30:00", "key_h89": 6} | Field 'prop_z73' has invalid date format | {"val_r25":"option_c","attr_p77":858,"prop_z73":"2024-03-18T03:34:00Z","key_h89":6} |
TASK repair_structured_output
SPEC
FIELD format TYPE string_date-time REQUIRED yes
FIELD hazmat_code TYPE string_date-time REQUIRED no
FIELD throttle_pos TYPE string VALUES draft|published|archived REQUIRED no
FIELD email TYPE string VALUES cat_a|cat_b REQUIRED no
FIELD vessel_name TYPE string REQUIRED yes
BROKEN_OUT... | {"format":"2022-11-03T14:01:00Z","throttle_pos":"published","email":"cat_a","vessel_name":"hello"} | tool_call_partial_args | {
"type": "object",
"properties": {
"format": {
"type": "string",
"format": "date-time"
},
"hazmat_code": {
"type": "string",
"format": "date-time"
},
"throttle_pos": {
"type": "string",
"enum": [
"draft",
"published",
"archived"
... | I need to look up the information first.
Action: calculate_docking_fee
Arguments: {"format": "2022-11-03T14:01:00Z", "throttle_pos": "published", "email": "cat_a"} | Agent tool call missing required parameter 'vessel_name' | {"format":"2022-11-03T14:01:00Z","throttle_pos":"published","email":"cat_a","vessel_name":"hello"} |
TASK repair_structured_output
SPEC
FIELD end_date TYPE string REQUIRED yes
FIELD features TYPE string REQUIRED yes
FIELD role TYPE string VALUES draft|published|archived REQUIRED yes
FIELD price TYPE integer REQUIRED no
FIELD active TYPE string VALUES option_a|option_b|option_c|option_d|option_e REQUIRED yes
BROKEN_O... | {"end_date":"sample","features":"Silva","role":"archived","price":380,"active":"option_d"} | extra_text_before | {
"type": "object",
"properties": {
"end_date": {
"type": "string"
},
"features": {
"type": "string"
},
"role": {
"type": "string",
"enum": [
"draft",
"published",
"archived"
]
},
"price": {
"type": "integer"
},
"active"... | The output is as follows:
{"end_date":"sample","features":"Silva","role":"archived","price":380,"active":"option_d"} | Output contains non-JSON text before the object | {"end_date":"sample","features":"Silva","role":"archived","price":380,"active":"option_d"} |
TASK repair_structured_output
SPEC
FIELD val_o69 TYPE integer REQUIRED yes
FIELD val_r36 TYPE string VALUES USD|EUR|GBP|BRL|JPY REQUIRED yes
FIELD attr_n80 TYPE null REQUIRED yes
BROKEN_OUTPUT
Sure, here's the result:
{"val_o69":565,"val_r36":"BRL","attr_n80":null} | {"val_o69":565,"val_r36":"BRL","attr_n80":null} | extra_text_before | {
"type": "object",
"properties": {
"val_o69": {
"type": "integer"
},
"val_r36": {
"type": "string",
"enum": [
"USD",
"EUR",
"GBP",
"BRL",
"JPY"
]
},
"attr_n80": {
"type": "null"
}
},
"required": [
"attr_n80",
... | Sure, here's the result:
{"val_o69":565,"val_r36":"BRL","attr_n80":null} | Output contains non-JSON text before the object | {"val_o69":565,"val_r36":"BRL","attr_n80":null} |
TASK repair_structured_output
SPEC
FIELD position TYPE number REQUIRED yes
FIELD frequency_hz TYPE integer REQUIRED no
FIELD shipping TYPE integer REQUIRED no
FIELD company TYPE string REQUIRED yes
FIELD currency TYPE boolean REQUIRED yes
FIELD priority TYPE number REQUIRED no
FIELD gene_id TYPE boolean REQUIRED yes
F... | {"position":538.69,"frequency_hz":749,"shipping":75,"company":"Oliveira","currency":true,"priority":217.67,"gene_id":true,"rating":613.56} | markdown_explanation | {
"type": "object",
"properties": {
"position": {
"type": "number"
},
"frequency_hz": {
"type": "integer"
},
"shipping": {
"type": "integer"
},
"company": {
"type": "string"
},
"currency": {
"type": "boolean"
},
"priority": {
"type": "n... | Sensor output follows:
```json
{"position":538.69,"frequency_hz":749,"shipping":75,"company":"Oliveira","currency":true,"priority":217.67,"gene_id":true,"rating":613.56}
```
Hope this helps! | Output contains markdown and explanatory text around JSON | {"position":538.69,"frequency_hz":749,"shipping":75,"company":"Oliveira","currency":true,"priority":217.67,"gene_id":true,"rating":613.56} |
TASK repair_structured_output
SPEC
FIELD address TYPE string_date-time REQUIRED no
FIELD insurance_id TYPE integer REQUIRED yes
FIELD updated_at.trace_id TYPE string REQUIRED no
FIELD updated_at.username TYPE null REQUIRED yes
FIELD updated_at.items TYPE number REQUIRED yes
BROKEN_OUTPUT
{"insurance_id": "88%", "upda... | {"insurance_id":88,"updated_at":{"trace_id":"Tokyo","username":null,"items":784.78}} | number_with_unit | {
"type": "object",
"properties": {
"address": {
"type": "string",
"format": "date-time"
},
"insurance_id": {
"type": "integer"
},
"updated_at": {
"type": "object",
"properties": {
"trace_id": {
"type": "string"
},
"username": {
... | {"insurance_id": "88%", "updated_at": {"trace_id": "Tokyo", "username": null, "items": 784.78}} | Field 'insurance_id' must be number, got string with unit | {"insurance_id":88,"updated_at":{"trace_id":"Tokyo","username":null,"items":784.78}} |
TASK repair_structured_output
SPEC
FIELD col_m04 TYPE string_email REQUIRED yes
FIELD key_u53 TYPE string REQUIRED no
FIELD prop_n86 TYPE number REQUIRED yes
BROKEN_OUTPUT
{'col_m04':'ops@test.io','key_u53':'Smith','prop_n86':878.64} | {"col_m04":"ops@test.io","key_u53":"Smith","prop_n86":878.64} | single_quotes | {
"type": "object",
"properties": {
"col_m04": {
"type": "string",
"format": "email"
},
"key_u53": {
"type": "string"
},
"prop_n86": {
"type": "number"
}
},
"required": [
"col_m04",
"prop_n86"
]
} | {'col_m04':'ops@test.io','key_u53':'Smith','prop_n86':878.64} | Expecting property name enclosed in double quotes | {"col_m04":"ops@test.io","key_u53":"Smith","prop_n86":878.64} |
TASK repair_structured_output
SPEC
FIELD paragraph TYPE integer REQUIRED yes
FIELD vessel_name TYPE string_date-time REQUIRED no
FIELD count TYPE number REQUIRED no
FIELD decay_rate TYPE string REQUIRED yes
FIELD title TYPE boolean REQUIRED yes
FIELD score TYPE string VALUES synonymous|missense|nonsense|frameshift REQ... | {"paragraph":390,"count":491.07,"decay_rate":"This is a test value.","title":true,"score":"frameshift"} | null_required | {
"type": "object",
"properties": {
"paragraph": {
"type": "integer"
},
"vessel_name": {
"type": "string",
"format": "date-time"
},
"count": {
"type": "number"
},
"decay_rate": {
"type": "string"
},
"title": {
"type": "boolean"
},
"scor... | {"paragraph": 390, "count": 491.07, "decay_rate": null, "title": true, "score": "frameshift"} | Required field 'decay_rate' is null | {"paragraph":390,"count":491.07,"decay_rate":"This is a test value.","title":true,"score":"frameshift"} |
TASK repair_structured_output
SPEC
FIELD category TYPE string REQUIRED no
FIELD zip_code.torque_output TYPE null REQUIRED no
FIELD zip_code.name TYPE number REQUIRED no
FIELD zip_code.loan_amount TYPE number REQUIRED no
FIELD zip_code.nickname TYPE string VALUES email|phone|sms|push REQUIRED no
FIELD zip_code.hazmat_c... | {"category":"2024-06-30","zip_code":{"torque_output":null,"name":673.15,"nickname":"email","hazmat_code":"ops@domain.org","consignee":681},"shift_code":768.33,"visible":"world","index":"2024-09-03T03:26:00Z","state":609} | missing_required | {
"type": "object",
"properties": {
"category": {
"type": "string"
},
"zip_code": {
"type": "object",
"properties": {
"torque_output": {
"type": "null"
},
"name": {
"type": "number"
},
"loan_amount": {
"type": "numbe... | {"category": "2024-06-30", "zip_code": {"torque_output": null, "name": 673.15, "nickname": "email", "hazmat_code": "ops@domain.org", "consignee": 681}, "shift_code": 768.33, "visible": "world", "index": "2024-09-03T03:26:00Z"} | Required field 'state' is missing | {"category":"2024-06-30","zip_code":{"torque_output":null,"name":673.15,"nickname":"email","hazmat_code":"ops@domain.org","consignee":681},"shift_code":768.33,"visible":"world","index":"2024-09-03T03:26:00Z","state":609} |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.