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 param_t64 TYPE integer REQUIRED no
FIELD val_d57 TYPE integer REQUIRED no
FIELD prop_s90.attr_g18 TYPE string REQUIRED yes
FIELD prop_s90.attr_m11 TYPE string VALUES draft|published|archived REQUIRED no
FIELD prop_s90.field_w34 TYPE boolean REQUIRED no
FIELD prop_s90.key_m36.fi... | {"param_t64":869,"prop_s90":{"attr_g18":"Diana","attr_m11":"draft","key_m36":{"field_s24":"pending_review","param_y56":"delivered","attr_v25":"https://api.example.com/v1","key_i81":"test@example.com","field_h44":"viewer"},"field_g00":{"col_z63":true,"dim_v99":387.12,"param_y54":"rejected","attr_j60":"coastal","prop_g91... | missing_brace | {
"type": "object",
"properties": {
"param_t64": {
"type": "integer"
},
"val_d57": {
"type": "integer"
},
"prop_s90": {
"type": "object",
"properties": {
"attr_g18": {
"type": "string"
},
"attr_m11": {
"type": "string",
... | {"param_t64":869,"prop_s90":{"attr_g18":"Diana","attr_m11":"draft","key_m36":{"field_s24":"pending_review","param_y56":"delivered","attr_v25":"https://api.example.com/v1","key_i81":"test@example.com","field_h44":"viewer"},"field_g00":"col_z63":true,"dim_v99":387.12,"param_y54":"rejected","attr_j60":"coastal","prop_g91"... | Missing closing brace | {"param_t64":869,"prop_s90":{"attr_g18":"Diana","attr_m11":"draft","key_m36":{"field_s24":"pending_review","param_y56":"delivered","attr_v25":"https://api.example.com/v1","key_i81":"test@example.com","field_h44":"viewer"},"field_g00":{"col_z63":true,"dim_v99":387.12,"param_y54":"rejected","attr_j60":"coastal","prop_g91... |
TASK repair_structured_output
SPEC
FIELD col_l34.col_i60 TYPE integer REQUIRED no
FIELD col_l34.prop_o55 TYPE string VALUES pending_review|confirmed|rejected|escalated REQUIRED yes
FIELD col_l34.key_r15 TYPE boolean REQUIRED yes
FIELD key_u32 TYPE string VALUES pending_review|confirmed|rejected|escalated REQUIRED no
F... | {"col_l34":{"prop_o55":"pending_review","key_r15":false},"key_u32":"escalated","key_c45":"new","prop_x35":"pending"} | extra_field | {
"type": "object",
"properties": {
"col_l34": {
"type": "object",
"properties": {
"col_i60": {
"type": "integer"
},
"prop_o55": {
"type": "string",
"enum": [
"pending_review",
"confirmed",
"rejected",
... | {"col_l34": {"prop_o55": "pending_review", "key_r15": false}, "key_u32": "escalated", "key_c45": "new", "prop_x35": "pending", "extra_data_5243": 42} | Unknown field 'extra_data_5243' not defined in schema | {"col_l34":{"prop_o55":"pending_review","key_r15":false},"key_u32":"escalated","key_c45":"new","prop_x35":"pending"} |
TASK repair_structured_output
SPEC
FIELD vital_sign TYPE string VALUES active|inactive|pending REQUIRED yes
FIELD description TYPE string VALUES homozygous|heterozygous|hemizygous REQUIRED no
FIELD username TYPE number REQUIRED yes
FIELD hazmat_code TYPE null REQUIRED yes
FIELD first_name TYPE string REQUIRED no
BROK... | {"vital_sign":"inactive","username":921.65,"hazmat_code":null,"first_name":"GRCh38"} | unquoted_keys | {
"type": "object",
"properties": {
"vital_sign": {
"type": "string",
"enum": [
"active",
"inactive",
"pending"
]
},
"description": {
"type": "string",
"enum": [
"homozygous",
"heterozygous",
"hemizygous"
]
},
"u... | {vital_sign:"inactive",username:921.65,hazmat_code:null,first_name:"GRCh38"} | Expecting property name enclosed in double quotes | {"vital_sign":"inactive","username":921.65,"hazmat_code":null,"first_name":"GRCh38"} |
TASK repair_structured_output
SPEC
FIELD prop_b08 TYPE string REQUIRED yes
FIELD attr_w15 TYPE integer REQUIRED yes
FIELD val_u01 TYPE boolean REQUIRED no
BROKEN_OUTPUT
{"prop_b08": "Sao Paulo", "attr_w15": 410, "val_u01": false, "extra_field_9765": true} | {"prop_b08":"Sao Paulo","attr_w15":410,"val_u01":false} | extra_field | {
"type": "object",
"properties": {
"prop_b08": {
"type": "string"
},
"attr_w15": {
"type": "integer"
},
"val_u01": {
"type": "boolean"
}
},
"required": [
"attr_w15",
"prop_b08"
]
} | {"prop_b08": "Sao Paulo", "attr_w15": 410, "val_u01": false, "extra_field_9765": true} | Unknown field 'extra_field_9765' not defined in schema | {"prop_b08":"Sao Paulo","attr_w15":410,"val_u01":false} |
TASK repair_structured_output
SPEC
FIELD prop_t62 TYPE integer REQUIRED yes
FIELD attr_g69 TYPE string REQUIRED no
FIELD col_t66 TYPE string VALUES small|medium|large|xl REQUIRED no
FIELD val_h64 TYPE number REQUIRED yes
FIELD field_w54 TYPE string REQUIRED yes
FIELD key_a25 TYPE string REQUIRED no
FIELD field_h54 TYP... | {"prop_t62":809,"attr_g69":"cancelled","col_t66":"medium","val_h64":406.35,"field_w54":"Smith"} | wrong_type | {
"type": "object",
"properties": {
"prop_t62": {
"type": "integer"
},
"attr_g69": {
"type": "string"
},
"col_t66": {
"type": "string",
"enum": [
"small",
"medium",
"large",
"xl"
]
},
"val_h64": {
"type": "number"
},... | {"prop_t62": "\"809\"", "attr_g69": "cancelled", "col_t66": "medium", "val_h64": 406.35, "field_w54": "Smith"} | Field 'prop_t62' must be integer, got string | {"prop_t62":809,"attr_g69":"cancelled","col_t66":"medium","val_h64":406.35,"field_w54":"Smith"} |
TASK repair_structured_output
SPEC
FIELD price TYPE string VALUES mode_a|mode_b REQUIRED yes
FIELD enabled TYPE integer REQUIRED yes
FIELD hazmat_code TYPE string REQUIRED no
FIELD user_id TYPE null REQUIRED yes
FIELD format TYPE string VALUES type_a|type_b|type_c|type_d REQUIRED yes
FIELD credit_score.half_life TYPE ... | {"price":"mode_a","enabled":99,"user_id":null,"format":"type_c","credit_score":{"half_life":174,"message":"cat_b","freight_class":true,"torque_output":"qux"},"procedure_code":{"bearing":"https://data.io/api","dosage":"pending","end_date":390,"filter_flag":[true,true,true],"longitude":[{"state":"test@domain.org","status... | agent_chain | {
"type": "object",
"properties": {
"price": {
"type": "string",
"enum": [
"mode_a",
"mode_b"
]
},
"enabled": {
"type": "integer"
},
"hazmat_code": {
"type": "string"
},
"user_id": {
"type": "null"
},
"format": {
"type": "... | I need to look up the information first.
Action: generate_report
Result: {"price": "mode_a", "enabled": 99, "user_id": null, "format": "type_c", "credit_score": {"half_life": 174, "message": "cat_b", "freight_class": true, "torque_output": "qux"}, "subject": "QC-07"}
I'll query our database.
Action: update_record
Resu... | Agent multi-step chain with truncated tool output | {"price":"mode_a","enabled":99,"user_id":null,"format":"type_c","credit_score":{"half_life":174,"message":"cat_b","freight_class":true,"torque_output":"qux"},"procedure_code":{"bearing":"https://data.io/api","dosage":"pending","end_date":390,"filter_flag":[true,true,true],"longitude":[{"state":"test@domain.org","status... |
TASK repair_structured_output
SPEC
FIELD crew_id TYPE string REQUIRED no
FIELD turbidity TYPE null REQUIRED no
FIELD nickname TYPE integer REQUIRED no
FIELD score TYPE string REQUIRED yes
FIELD id TYPE integer REQUIRED no
FIELD name TYPE string REQUIRED no
BROKEN_OUTPUT
{"crew_id":"chrX","turbidity":null,"nickname":5... | {"crew_id":"chrX","turbidity":null,"nickname":56,"score":"chr1","id":825,"name":"Johnson"} | truncated_array | {
"type": "object",
"properties": {
"crew_id": {
"type": "string"
},
"turbidity": {
"type": "null"
},
"nickname": {
"type": "integer"
},
"score": {
"type": "string"
},
"id": {
"type": "integer"
},
"name": {
"type": "string"
}
},
... | {"crew_id":"chrX","turbidity":null,"nickname":56,"score":"chr1","id":825,"name":"Johnson" | Unexpected end of JSON input — truncated object | {"crew_id":"chrX","turbidity":null,"nickname":56,"score":"chr1","id":825,"name":"Johnson"} |
TASK repair_structured_output
SPEC
FIELD col_p78 TYPE string VALUES email|phone|sms|push REQUIRED yes
FIELD param_t76 TYPE number REQUIRED no
FIELD dim_v58 TYPE string_uri REQUIRED no
FIELD dim_b29 TYPE string REQUIRED yes
BROKEN_OUTPUT
{"col_p78": "invalid_choice_341", "dim_v58": "https://www.org/v1", "dim_b29": "Pa... | {"col_p78":"phone","dim_v58":"https://www.org/v1","dim_b29":"Paris"} | invalid_enum | {
"type": "object",
"properties": {
"col_p78": {
"type": "string",
"enum": [
"email",
"phone",
"sms",
"push"
]
},
"param_t76": {
"type": "number"
},
"dim_v58": {
"type": "string",
"format": "uri"
},
"dim_b29": {
"t... | {"col_p78": "invalid_choice_341", "dim_v58": "https://www.org/v1", "dim_b29": "Paris"} | Field 'col_p78' has invalid enum value 'invalid_choice_341', expected one of ['email', 'phone', 'sms', 'push'] | {"col_p78":"phone","dim_v58":"https://www.org/v1","dim_b29":"Paris"} |
TASK repair_structured_output
SPEC
FIELD index TYPE string VALUES cat_a|cat_b|cat_c|cat_d REQUIRED no
FIELD id TYPE integer REQUIRED yes
FIELD run_id TYPE string VALUES mode_a|mode_b REQUIRED no
FIELD allele TYPE string_email REQUIRED no
FIELD price TYPE boolean REQUIRED no
FIELD freight_class TYPE integer REQUIRED no... | {"index":"cat_d","id":925,"price":true,"freight_class":545} | boolean_as_string | {
"type": "object",
"properties": {
"index": {
"type": "string",
"enum": [
"cat_a",
"cat_b",
"cat_c",
"cat_d"
]
},
"id": {
"type": "integer"
},
"run_id": {
"type": "string",
"enum": [
"mode_a",
"mode_b"
]
... | {"index": "cat_d", "id": 925, "price": "no", "freight_class": 545} | Field 'price' must be boolean, got string | {"index":"cat_d","id":925,"price":true,"freight_class":545} |
TASK repair_structured_output
SPEC
FIELD val_k48 TYPE boolean REQUIRED no
FIELD key_g20 TYPE integer REQUIRED no
FIELD field_o24 TYPE string_email REQUIRED no
FIELD dim_m38 TYPE string VALUES level_1|level_2|level_3|level_4 REQUIRED no
FIELD val_f96.param_v42 TYPE string REQUIRED no
FIELD val_f96.val_p26 TYPE string V... | {"val_k48":false,"key_g20":969,"field_o24":"test@example.com","dim_m38":"level_1","val_f96":{"val_p26":"cat_d","field_f02":"user@test.io","field_g00":{"val_g32":"London","attr_a75":"inactive","key_p75":741,"val_j54":null,"key_h33":919,"param_z24":"GRCh38"},"dim_o28":"https://www.org/data","attr_f74":"info@example.com"}... | tool_call_text_mix | {
"type": "object",
"properties": {
"val_k48": {
"type": "boolean"
},
"key_g20": {
"type": "integer"
},
"field_o24": {
"type": "string",
"format": "email"
},
"dim_m38": {
"type": "string",
"enum": [
"level_1",
"level_2",
"level_... | Processing the request now.
<tool_call name="apply_discount">
{"val_k48":false,"key_g20":969,"field_o24":"test@example.com","dim_m38":"level_1","val_f96":{"val_p26":"cat_d","field_f02":"user@test.io","field_g00":{"val_g32":"London","attr_a75":"inactive","key_p75":741,"val_j54":null,"key_h33":919,"param_z24":"GRCh38"},"... | Agent response mixes reasoning text with tool call | {"val_k48":false,"key_g20":969,"field_o24":"test@example.com","dim_m38":"level_1","val_f96":{"val_p26":"cat_d","field_f02":"user@test.io","field_g00":{"val_g32":"London","attr_a75":"inactive","key_p75":741,"val_j54":null,"key_h33":919,"param_z24":"GRCh38"},"dim_o28":"https://www.org/data","attr_f74":"info@example.com"}... |
TASK repair_structured_output
SPEC
FIELD product_id TYPE string VALUES mode_a|mode_b REQUIRED yes
FIELD vital_sign TYPE null REQUIRED yes
FIELD port_code TYPE string VALUES mode_a|mode_b|mode_c REQUIRED no
FIELD deploy_target TYPE boolean REQUIRED no
BROKEN_OUTPUT
```json
{"product_id":"mode_a","vital_sign":null,"dep... | {"product_id":"mode_a","vital_sign":null,"deploy_target":false} | markdown_fences | {
"type": "object",
"properties": {
"product_id": {
"type": "string",
"enum": [
"mode_a",
"mode_b"
]
},
"vital_sign": {
"type": "null"
},
"port_code": {
"type": "string",
"enum": [
"mode_a",
"mode_b",
"mode_c"
]
... | ```json
{"product_id":"mode_a","vital_sign":null,"deploy_target":false}
``` | Output contains markdown code fences | {"product_id":"mode_a","vital_sign":null,"deploy_target":false} |
TASK repair_structured_output
SPEC
FIELD subject TYPE string VALUES mode_a|mode_b|mode_c|mode_d REQUIRED yes
FIELD umi TYPE string VALUES option_a|option_b|option_c|option_d|option_e|option_f REQUIRED yes
FIELD section TYPE string REQUIRED yes
BROKEN_OUTPUT
```json
{"subject":"mode_a","umi":"option_d","section":"PASS... | {"subject":"mode_a","umi":"option_d","section":"PASS"} | markdown_fences | {
"type": "object",
"properties": {
"subject": {
"type": "string",
"enum": [
"mode_a",
"mode_b",
"mode_c",
"mode_d"
]
},
"umi": {
"type": "string",
"enum": [
"option_a",
"option_b",
"option_c",
"option_d",
... | ```json
{"subject":"mode_a","umi":"option_d","section":"PASS"}
``` | Output contains markdown code fences | {"subject":"mode_a","umi":"option_d","section":"PASS"} |
TASK repair_structured_output
SPEC
FIELD wavelength TYPE null REQUIRED yes
FIELD salinity TYPE string_email REQUIRED yes
FIELD image_url TYPE string_email REQUIRED no
FIELD pressure_kpa.trace_id TYPE string VALUES open|in_progress|resolved|closed REQUIRED no
FIELD pressure_kpa.zip_code TYPE string VALUES free|basic|pr... | {"wavelength":null,"salinity":"ops@domain.org","pressure_kpa":{"trace_id":"open","step":"Maria","balance":"https://www.org/api"},"size":{"loan_amount":null,"phone":"Smith","phenotype":"test@test.io","country":"single","wavelength":false}} | missing_brace | {
"type": "object",
"properties": {
"wavelength": {
"type": "null"
},
"salinity": {
"type": "string",
"format": "email"
},
"image_url": {
"type": "string",
"format": "email"
},
"pressure_kpa": {
"type": "object",
"properties": {
"trace_id... | "wavelength":null,"salinity":"ops@domain.org","pressure_kpa":{"trace_id":"open","step":"Maria","balance":"https://www.org/api"},"size":{"loan_amount":null,"phone":"Smith","phenotype":"test@test.io","country":"single","wavelength":false}} | Missing closing brace | {"wavelength":null,"salinity":"ops@domain.org","pressure_kpa":{"trace_id":"open","step":"Maria","balance":"https://www.org/api"},"size":{"loan_amount":null,"phone":"Smith","phenotype":"test@test.io","country":"single","wavelength":false}} |
TASK repair_structured_output
SPEC
FIELD diagnosis_code TYPE string_uri REQUIRED no
FIELD organism TYPE string REQUIRED no
FIELD tags TYPE string VALUES open|in_progress|resolved|closed REQUIRED yes
FIELD current_draw.velocity TYPE string VALUES single|married|divorced REQUIRED yes
FIELD current_draw.order_id TYPE str... | {"organism":"quux","tags":"open","current_draw":{"velocity":"married","order_id":"test@example.com","count":800.37,"quality_score":"2024-09-22T20:06:00Z","state":"reliable","phenotype":812}} | unquoted_keys | {
"type": "object",
"properties": {
"diagnosis_code": {
"type": "string",
"format": "uri"
},
"organism": {
"type": "string"
},
"tags": {
"type": "string",
"enum": [
"open",
"in_progress",
"resolved",
"closed"
]
},
"curre... | {organism:"quux",tags:"open",current_draw:{velocity:"married",order_id:"test@example.com",count:800.37,quality_score:"2024-09-22T20:06:00Z",state:"reliable",phenotype:812}} | Expecting property name enclosed in double quotes | {"organism":"quux","tags":"open","current_draw":{"velocity":"married","order_id":"test@example.com","count":800.37,"quality_score":"2024-09-22T20:06:00Z","state":"reliable","phenotype":812}} |
TASK repair_structured_output
SPEC
FIELD comments TYPE string VALUES reliable|unstable|intermittent REQUIRED yes
FIELD options TYPE number REQUIRED yes
FIELD annotation TYPE string REQUIRED no
FIELD vital_sign TYPE string_email REQUIRED yes
FIELD chromosome TYPE string_uri REQUIRED yes
BROKEN_OUTPUT
{comments:"interm... | {"comments":"intermittent","options":640.81,"vital_sign":"admin@test.io","chromosome":"https://example.io/v1"} | unquoted_keys | {
"type": "object",
"properties": {
"comments": {
"type": "string",
"enum": [
"reliable",
"unstable",
"intermittent"
]
},
"options": {
"type": "number"
},
"annotation": {
"type": "string"
},
"vital_sign": {
"type": "string",
... | {comments:"intermittent",options:640.81,vital_sign:"admin@test.io",chromosome:"https://example.io/v1"} | Expecting property name enclosed in double quotes | {"comments":"intermittent","options":640.81,"vital_sign":"admin@test.io","chromosome":"https://example.io/v1"} |
TASK repair_structured_output
SPEC
FIELD humidity_pct TYPE boolean REQUIRED no
FIELD features TYPE number REQUIRED yes
FIELD shipper_ref TYPE string REQUIRED yes
BROKEN_OUTPUT
{"humidity_pct": "\"yes\"", "features": 568.81, "shipper_ref": "London"} | {"humidity_pct":true,"features":568.81,"shipper_ref":"London"} | wrong_type | {
"type": "object",
"properties": {
"humidity_pct": {
"type": "boolean"
},
"features": {
"type": "number"
},
"shipper_ref": {
"type": "string"
}
},
"required": [
"features",
"shipper_ref"
]
} | {"humidity_pct": "\"yes\"", "features": 568.81, "shipper_ref": "London"} | Field 'humidity_pct' must be boolean, got string | {"humidity_pct":true,"features":568.81,"shipper_ref":"London"} |
TASK repair_structured_output
SPEC
FIELD tile TYPE string VALUES mode_a|mode_b|mode_c|mode_d|mode_e REQUIRED yes
FIELD payment_status TYPE string VALUES type_a|type_b|type_c|type_d REQUIRED no
FIELD age TYPE string REQUIRED yes
FIELD run_id TYPE integer REQUIRED no
FIELD throttle_pos TYPE string REQUIRED no
FIELD publ... | {"tile":"mode_d","age":"Luis","throttle_pos":"PASS","published":478.48,"position":"qux","active":"QC-07"} | number_with_unit | {
"type": "object",
"properties": {
"tile": {
"type": "string",
"enum": [
"mode_a",
"mode_b",
"mode_c",
"mode_d",
"mode_e"
]
},
"payment_status": {
"type": "string",
"enum": [
"type_a",
"type_b",
"type_c",
... | {"tile": "mode_d", "age": "Luis", "throttle_pos": "PASS", "published": "478.48px", "position": "qux", "active": "QC-07"} | Field 'published' must be number, got string with unit | {"tile":"mode_d","age":"Luis","throttle_pos":"PASS","published":478.48,"position":"qux","active":"QC-07"} |
TASK repair_structured_output
SPEC
FIELD total TYPE string_uri REQUIRED no
FIELD brake_pressure TYPE number REQUIRED no
FIELD cargo_type.order_id TYPE string VALUES homozygous|heterozygous|hemizygous REQUIRED no
FIELD cargo_type.shipper_ref TYPE string VALUES single|married|divorced REQUIRED yes
FIELD cargo_type.posit... | {"brake_pressure":588.9,"cargo_type":{"order_id":"heterozygous","shipper_ref":"married","position":967,"color":"Hapag-Lloyd-Express","description":"MV-Evergreen-01","collateral":"Tokyo"},"index":{"salinity":676,"ph_level":"xl","transaction_id":"2024-06-30"}} | agent_chain | {
"type": "object",
"properties": {
"total": {
"type": "string",
"format": "uri"
},
"brake_pressure": {
"type": "number"
},
"cargo_type": {
"type": "object",
"properties": {
"order_id": {
"type": "string",
"enum": [
"homozygou... | Let me check the system.
Action: create_ticket
Result: {"brake_pressure": 588.9, "index": {"salinity": 676, "ph_level": "xl", "transaction_id": "2024-06-30"}}
I'll query our database.
Action: create_ticket
Result: | Agent multi-step chain with truncated tool output | {"brake_pressure":588.9,"cargo_type":{"order_id":"heterozygous","shipper_ref":"married","position":967,"color":"Hapag-Lloyd-Express","description":"MV-Evergreen-01","collateral":"Tokyo"},"index":{"salinity":676,"ph_level":"xl","transaction_id":"2024-06-30"}} |
TASK repair_structured_output
SPEC
FIELD prop_g63.col_f08 TYPE integer REQUIRED yes
FIELD prop_g63.field_g23 TYPE null REQUIRED yes
FIELD prop_g63.col_u69 TYPE string REQUIRED no
FIELD field_z71 TYPE integer REQUIRED yes
FIELD attr_i47 TYPE string VALUES level_1|level_2|level_3|level_4 REQUIRED no
FIELD param_g14 TYPE... | {"prop_g63":{"col_f08":981,"field_g23":null,"col_u69":"Jane"},"field_z71":968,"attr_i47":"level_4","param_g14":5.63} | markdown_explanation | {
"type": "object",
"properties": {
"prop_g63": {
"type": "object",
"properties": {
"col_f08": {
"type": "integer"
},
"field_g23": {
"type": "null"
},
"col_u69": {
"type": "string"
}
},
"required": [
"c... | Pipeline result:
```json
{"prop_g63":{"col_f08":981,"field_g23":null,"col_u69":"Jane"},"field_z71":968,"attr_i47":"level_4","param_g14":5.63}
```
Let me know if you need anything else! | Output contains markdown and explanatory text around JSON | {"prop_g63":{"col_f08":981,"field_g23":null,"col_u69":"Jane"},"field_z71":968,"attr_i47":"level_4","param_g14":5.63} |
TASK repair_structured_output
SPEC
FIELD dim_k32 TYPE string VALUES free|basic|pro|enterprise REQUIRED no
FIELD dim_y37 TYPE string VALUES coastal|oceanic|inland|arctic REQUIRED no
FIELD dim_b16 TYPE string VALUES low|medium|high|critical REQUIRED no
FIELD col_p31 TYPE integer REQUIRED no
FIELD val_f57 TYPE boolean RE... | {"dim_k32":"enterprise","dim_y37":"oceanic","dim_b16":"low","col_p31":895,"val_f57":true,"prop_u00":"Luis","key_w89":"white"} | tool_call_partial_args | {
"type": "object",
"properties": {
"dim_k32": {
"type": "string",
"enum": [
"free",
"basic",
"pro",
"enterprise"
]
},
"dim_y37": {
"type": "string",
"enum": [
"coastal",
"oceanic",
"inland",
"arctic"
]
... | Let me check the system.
Action: get_account
Arguments: {"dim_k32": "enterprise", "dim_y37": "oceanic", "dim_b16": "low", "col_p31": 895, "val_f57": true, "prop_u00": "Luis"} | Agent tool call missing required parameter 'key_w89' | {"dim_k32":"enterprise","dim_y37":"oceanic","dim_b16":"low","col_p31":895,"val_f57":true,"prop_u00":"Luis","key_w89":"white"} |
TASK repair_structured_output
SPEC
FIELD param_p84 TYPE string_email REQUIRED yes
FIELD key_v54 TYPE integer REQUIRED no
FIELD val_a37 TYPE integer REQUIRED no
FIELD param_c06 TYPE integer REQUIRED yes
FIELD field_f91[] TYPE string VALUES berthed|anchored|underway|moored REQUIRED yes
BROKEN_OUTPUT
{"param_p84":"test@... | {"param_p84":"test@domain.org","val_a37":77,"param_c06":679,"field_f91":["underway","berthed"]} | truncated_object | {
"type": "object",
"properties": {
"param_p84": {
"type": "string",
"format": "email"
},
"key_v54": {
"type": "integer"
},
"val_a37": {
"type": "integer"
},
"param_c06": {
"type": "integer"
},
"field_f91": {
"type": "array",
"items": {
... | {"param_p84":"test@domain.org","val_a37":77,"param_c06":679,"field_f91":["underway","berthed"] | Unexpected end of JSON input — truncated object | {"param_p84":"test@domain.org","val_a37":77,"param_c06":679,"field_f91":["underway","berthed"]} |
TASK repair_structured_output
SPEC
FIELD torque_output TYPE string VALUES pending_review|confirmed|rejected|escalated REQUIRED no
FIELD deploy_target TYPE boolean REQUIRED no
FIELD half_life TYPE integer REQUIRED yes
FIELD height TYPE number REQUIRED no
FIELD options TYPE integer REQUIRED yes
FIELD latitude TYPE strin... | {"torque_output":"escalated","deploy_target":true,"half_life":282,"height":828.2,"options":647,"longitude":"2025-11-26T21:58:00Z"} | truncated_object | {
"type": "object",
"properties": {
"torque_output": {
"type": "string",
"enum": [
"pending_review",
"confirmed",
"rejected",
"escalated"
]
},
"deploy_target": {
"type": "boolean"
},
"half_life": {
"type": "integer"
},
"height... | {"torque_output":"escalated","deploy_target":true,"half_life":282,"height":828.2,"options":647,"longitude":"2025-11-26T21:58:00Z" | Unexpected end of JSON input — truncated object | {"torque_output":"escalated","deploy_target":true,"half_life":282,"height":828.2,"options":647,"longitude":"2025-11-26T21:58:00Z"} |
TASK repair_structured_output
SPEC
FIELD prop_e68 TYPE integer REQUIRED yes
FIELD field_d80 TYPE integer REQUIRED yes
FIELD key_w22 TYPE integer REQUIRED yes
FIELD dim_s93 TYPE string VALUES red|blue|green|black|white REQUIRED no
FIELD key_r59 TYPE integer REQUIRED no
FIELD param_q05 TYPE string REQUIRED no
BROKEN_OU... | {"prop_e68":882,"field_d80":998,"key_w22":565,"key_r59":869} | thought_process | {
"type": "object",
"properties": {
"prop_e68": {
"type": "integer"
},
"field_d80": {
"type": "integer"
},
"key_w22": {
"type": "integer"
},
"dim_s93": {
"type": "string",
"enum": [
"red",
"blue",
"green",
"black",
"wh... | I need to check the port status before assigning the berth.
Let me verify the cargo manifest.
{"prop_e68":882,"field_d80":998,"key_w22":565,"key_r59":869} | Output contains chain-of-thought reasoning before JSON | {"prop_e68":882,"field_d80":998,"key_w22":565,"key_r59":869} |
TASK repair_structured_output
SPEC
FIELD phone TYPE string VALUES operational|degraded|offline|maintenance REQUIRED no
FIELD age TYPE string VALUES small|medium|large|xl REQUIRED no
FIELD barcode TYPE null REQUIRED no
FIELD port_code TYPE string VALUES draft|published|archived REQUIRED yes
FIELD salinity TYPE null REQ... | {"phone":"maintenance","age":"medium","barcode":null,"port_code":"published","salinity":null,"price":false} | boolean_as_string | {
"type": "object",
"properties": {
"phone": {
"type": "string",
"enum": [
"operational",
"degraded",
"offline",
"maintenance"
]
},
"age": {
"type": "string",
"enum": [
"small",
"medium",
"large",
"xl"
]
... | {"phone": "maintenance", "age": "medium", "barcode": null, "port_code": "published", "salinity": null, "price": "false"} | Field 'price' must be boolean, got string | {"phone":"maintenance","age":"medium","barcode":null,"port_code":"published","salinity":null,"price":false} |
TASK repair_structured_output
SPEC
FIELD col_t41 TYPE string VALUES success|error|warning|info REQUIRED yes
FIELD param_o61 TYPE integer REQUIRED yes
FIELD dim_u54 TYPE string VALUES reliable|unstable|intermittent REQUIRED no
BROKEN_OUTPUT
Let me check the system.
Action: fetch_lab_result
Arguments: {"col_t41": "warn... | {"col_t41":"warning","param_o61":811,"dim_u54":"unstable"} | tool_call_partial_args | {
"type": "object",
"properties": {
"col_t41": {
"type": "string",
"enum": [
"success",
"error",
"warning",
"info"
]
},
"param_o61": {
"type": "integer"
},
"dim_u54": {
"type": "string",
"enum": [
"reliable",
"un... | Let me check the system.
Action: fetch_lab_result
Arguments: {"col_t41": "warning", "dim_u54": "unstable"} | Agent tool call missing required parameter 'param_o61' | {"col_t41":"warning","param_o61":811,"dim_u54":"unstable"} |
TASK repair_structured_output
SPEC
FIELD id TYPE string REQUIRED yes
FIELD created_at TYPE string REQUIRED no
FIELD order_id.shipping TYPE integer REQUIRED no
FIELD order_id.ph_level TYPE string REQUIRED yes
FIELD order_id.cargo_type TYPE string REQUIRED no
FIELD order_id.age TYPE integer REQUIRED no
FIELD order_id.pr... | {"id":"Maria","order_id":{"shipping":351,"ph_level":"2024-01-15","age":860,"procedure_code":"2024-01-15"},"dissolved_oxygen":653,"amplitude":317,"deploy_target":{"pressure_kpa":"2026-07-27T21:13:00Z","country":false,"status":"cat_a","city":{"isotope":"EUR","visible":"level_1","annotation":null},"throttle_pos":{"start_d... | extra_text_after | {
"type": "object",
"properties": {
"id": {
"type": "string"
},
"created_at": {
"type": "string"
},
"order_id": {
"type": "object",
"properties": {
"shipping": {
"type": "integer"
},
"ph_level": {
"type": "string"
},
... | {"id":"Maria","order_id":{"shipping":351,"ph_level":"2024-01-15","age":860,"procedure_code":"2024-01-15"},"dissolved_oxygen":653,"amplitude":317,"deploy_target":{"pressure_kpa":"2026-07-27T21:13:00Z","country":false,"status":"cat_a","city":{"isotope":"EUR","visible":"level_1","annotation":null},"throttle_pos":{"start_d... | Output contains non-JSON text after the object | {"id":"Maria","order_id":{"shipping":351,"ph_level":"2024-01-15","age":860,"procedure_code":"2024-01-15"},"dissolved_oxygen":653,"amplitude":317,"deploy_target":{"pressure_kpa":"2026-07-27T21:13:00Z","country":false,"status":"cat_a","city":{"isotope":"EUR","visible":"level_1","annotation":null},"throttle_pos":{"start_d... |
TASK repair_structured_output
SPEC
FIELD balance TYPE string VALUES mode_a|mode_b|mode_c|mode_d|mode_e|mode_f REQUIRED yes
FIELD procedure_code TYPE string REQUIRED no
FIELD branch TYPE boolean REQUIRED yes
FIELD paragraph TYPE number REQUIRED no
BROKEN_OUTPUT
{"balance":"mode_d","branch":false | {"balance":"mode_d","branch":false} | truncated_object | {
"type": "object",
"properties": {
"balance": {
"type": "string",
"enum": [
"mode_a",
"mode_b",
"mode_c",
"mode_d",
"mode_e",
"mode_f"
]
},
"procedure_code": {
"type": "string"
},
"branch": {
"type": "boolean"
},
... | {"balance":"mode_d","branch":false | Unexpected end of JSON input — truncated object | {"balance":"mode_d","branch":false} |
TASK repair_structured_output
SPEC
FIELD tax TYPE integer REQUIRED no
FIELD chapter TYPE string REQUIRED yes
FIELD footnote TYPE number REQUIRED no
FIELD image_url TYPE string REQUIRED yes
FIELD department.format TYPE null REQUIRED no
FIELD department.ph_level TYPE string_email REQUIRED yes
FIELD department.section TY... | {"tax":42,"chapter":"foo","image_url":"Silva","department":{"ph_level":"admin@example.com","section":"synonymous"}} | missing_brace | {
"type": "object",
"properties": {
"tax": {
"type": "integer"
},
"chapter": {
"type": "string"
},
"footnote": {
"type": "number"
},
"image_url": {
"type": "string"
},
"department": {
"type": "object",
"properties": {
"format": {
... | {"tax":42,"chapter":"foo","image_url":"Silva","department":{"ph_level":"admin@example.com","section":"synonymous"} | Missing closing brace | {"tax":42,"chapter":"foo","image_url":"Silva","department":{"ph_level":"admin@example.com","section":"synonymous"}} |
TASK repair_structured_output
SPEC
FIELD val_h11 TYPE integer REQUIRED no
FIELD field_f53 TYPE string VALUES single|married|divorced REQUIRED no
FIELD attr_f85 TYPE string REQUIRED no
FIELD col_n88 TYPE integer REQUIRED no
FIELD key_d70 TYPE string_date-time REQUIRED yes
FIELD param_k83 TYPE string REQUIRED no
FIELD p... | {"val_h11":664,"field_f53":"divorced","attr_f85":"2024-01-15","col_n88":699,"key_d70":"2020-07-25T10:06:00Z","param_k83":"GRCh38"} | extra_text_before | {
"type": "object",
"properties": {
"val_h11": {
"type": "integer"
},
"field_f53": {
"type": "string",
"enum": [
"single",
"married",
"divorced"
]
},
"attr_f85": {
"type": "string"
},
"col_n88": {
"type": "integer"
},
"k... | Here is the JSON you requested:
{"val_h11":664,"field_f53":"divorced","attr_f85":"2024-01-15","col_n88":699,"key_d70":"2020-07-25T10:06:00Z","param_k83":"GRCh38"} | Output contains non-JSON text before the object | {"val_h11":664,"field_f53":"divorced","attr_f85":"2024-01-15","col_n88":699,"key_d70":"2020-07-25T10:06:00Z","param_k83":"GRCh38"} |
TASK repair_structured_output
SPEC
FIELD altitude TYPE string VALUES option_a|option_b|option_c REQUIRED yes
FIELD sensor_id TYPE string VALUES level_1|level_2 REQUIRED yes
FIELD notes.diagnosis_code TYPE integer REQUIRED yes
FIELD notes.hazmat_code TYPE boolean REQUIRED yes
FIELD notes.description.size TYPE string RE... | {"altitude":"option_c","sensor_id":"level_1","notes":{"diagnosis_code":406,"hazmat_code":true,"description":{"size":"chrX","full_name":false,"subject":330,"due_date":161.04,"chapter":82,"length":"level_1","amount":141},"freight_class":true}} | tool_call_python_syntax | {
"type": "object",
"properties": {
"altitude": {
"type": "string",
"enum": [
"option_a",
"option_b",
"option_c"
]
},
"sensor_id": {
"type": "string",
"enum": [
"level_1",
"level_2"
]
},
"notes": {
"type": "object"... | check_cargo_manifest(altitude='option_c', sensor_id='level_1', notes={'diagnosis_code': 406, 'hazmat_code': True, 'description': {'size': 'chrX', 'full_name': False, 'subject': 330, 'due_date': 161.04, 'chapter': 82, 'length': 'level_1', 'amount': 141}, 'freight_class': True}) | Tool call uses Python syntax instead of JSON | {"altitude":"option_c","sensor_id":"level_1","notes":{"diagnosis_code":406,"hazmat_code":true,"description":{"size":"chrX","full_name":false,"subject":330,"due_date":161.04,"chapter":82,"length":"level_1","amount":141},"freight_class":true}} |
TASK repair_structured_output
SPEC
FIELD allele TYPE integer REQUIRED yes
FIELD timezone TYPE string_uri REQUIRED no
FIELD strand TYPE integer REQUIRED yes
FIELD label.country TYPE string VALUES synonymous|missense|nonsense|frameshift REQUIRED yes
FIELD label.organism TYPE integer REQUIRED no
FIELD label.last_name.wei... | {"allele":182,"timezone":"https://api.com/api","strand":687,"label":{"country":"frameshift","last_name":{"weight":875,"lab_result":"reliable","ward":"arctic"}},"compound":689} | trailing_comma | {
"type": "object",
"properties": {
"allele": {
"type": "integer"
},
"timezone": {
"type": "string",
"format": "uri"
},
"strand": {
"type": "integer"
},
"label": {
"type": "object",
"properties": {
"country": {
"type": "string",
... | {"allele":182,"timezone":"https://api.com/api","strand":687,"label":{"country":"frameshift","last_name":{"weight":875,"lab_result":"reliable","ward":"arctic",}},"compound":689} | Unexpected trailing comma | {"allele":182,"timezone":"https://api.com/api","strand":687,"label":{"country":"frameshift","last_name":{"weight":875,"lab_result":"reliable","ward":"arctic"}},"compound":689} |
TASK repair_structured_output
SPEC
FIELD branch TYPE string_uri REQUIRED yes
FIELD height TYPE null REQUIRED no
FIELD conductivity TYPE integer REQUIRED yes
FIELD username.chapter TYPE boolean REQUIRED yes
FIELD username.batch_code TYPE string VALUES draft|published|archived REQUIRED yes
FIELD username.order_id.deploy... | {"branch":"https://api.io/api","height":null,"conductivity":365,"username":{"chapter":false,"batch_code":"published","coverage":{"first_name":"arctic","vessel_name":"test@example.com","length":["PASS","bar"]}},"medication":"inland"} | thought_process | {
"type": "object",
"properties": {
"branch": {
"type": "string",
"format": "uri"
},
"height": {
"type": "null"
},
"conductivity": {
"type": "integer"
},
"username": {
"type": "object",
"properties": {
"chapter": {
"type": "boolean"
... | Analyzing the sensor data to generate the output.
I'll apply the required format first.
{"branch":"https://api.io/api","height":null,"conductivity":365,"username":{"chapter":false,"batch_code":"published","coverage":{"first_name":"arctic","vessel_name":"test@example.com","length":["PASS","bar"]}},"medication":"inland"... | Output contains chain-of-thought reasoning before JSON | {"branch":"https://api.io/api","height":null,"conductivity":365,"username":{"chapter":false,"batch_code":"published","coverage":{"first_name":"arctic","vessel_name":"test@example.com","length":["PASS","bar"]}},"medication":"inland"} |
TASK repair_structured_output
SPEC
FIELD col_a55.attr_v74 TYPE boolean REQUIRED no
FIELD col_a55.prop_n01 TYPE string REQUIRED yes
FIELD col_a55.param_r06.param_a60 TYPE boolean REQUIRED yes
FIELD col_a55.param_r06.val_j36 TYPE number REQUIRED yes
FIELD col_a55.param_r06.val_f11[] TYPE string REQUIRED yes
FIELD dim_m1... | {"col_a55":{"attr_v74":true,"prop_n01":"quux"},"dim_m18":"admin@test.io","val_b69":"example","prop_u59":"inactive"} | tool_call_bad_format | {
"type": "object",
"properties": {
"col_a55": {
"type": "object",
"properties": {
"attr_v74": {
"type": "boolean"
},
"prop_n01": {
"type": "string"
},
"param_r06": {
"type": "object",
"properties": {
"param_... | <functioncall> align_reads
{col_a55: {attr_v74: true, prop_n01: "quux"}, dim_m18: "admin@test.io", val_b69: "example", prop_u59: "inactive"} | Tool call has malformed arguments — unquoted keys in function parameters | {"col_a55":{"attr_v74":true,"prop_n01":"quux"},"dim_m18":"admin@test.io","val_b69":"example","prop_u59":"inactive"} |
TASK repair_structured_output
SPEC
FIELD annotation TYPE string VALUES berthed|anchored|underway|moored REQUIRED no
FIELD date TYPE number REQUIRED yes
FIELD payment_status[].build_status TYPE string VALUES homozygous|heterozygous|hemizygous REQUIRED yes
FIELD payment_status[].description TYPE integer REQUIRED yes
FIE... | {"annotation":"anchored","date":549.93,"payment_status":[{"build_status":"homozygous","description":761,"age":36},{"build_status":"homozygous","description":268,"age":127},{"build_status":"heterozygous","description":662,"age":361}]} | wrong_type | {
"type": "object",
"properties": {
"annotation": {
"type": "string",
"enum": [
"berthed",
"anchored",
"underway",
"moored"
]
},
"date": {
"type": "number"
},
"payment_status": {
"type": "array",
"items": {
"type": "obje... | {"annotation": "anchored", "date": "\"549.93\"", "payment_status": [{"build_status": "homozygous", "description": 761, "age": 36}, {"build_status": "homozygous", "description": 268, "age": 127}, {"build_status": "heterozygous", "description": 662, "age": 361}]} | Field 'date' must be number, got string | {"annotation":"anchored","date":549.93,"payment_status":[{"build_status":"homozygous","description":761,"age":36},{"build_status":"homozygous","description":268,"age":127},{"build_status":"heterozygous","description":662,"age":361}]} |
TASK repair_structured_output
SPEC
FIELD prop_t36 TYPE integer REQUIRED no
FIELD key_i96 TYPE string REQUIRED no
FIELD val_t92 TYPE null REQUIRED no
FIELD field_v32.attr_a35 TYPE string REQUIRED no
FIELD field_v32.col_w68 TYPE null REQUIRED no
FIELD field_v32.attr_c67 TYPE string REQUIRED yes
FIELD field_v32.key_s23 T... | {"prop_t36":962,"key_i96":"baz","val_t92":null,"field_v32":{"attr_a35":"user@domain.com","attr_c67":"This is a test value.","key_s23":"user@example.com","attr_w30":417.85},"prop_d54":457,"attr_s44":false,"prop_a68":"test@test.io"} | agent_chain | {
"type": "object",
"properties": {
"prop_t36": {
"type": "integer"
},
"key_i96": {
"type": "string"
},
"val_t92": {
"type": "null"
},
"field_v32": {
"type": "object",
"properties": {
"attr_a35": {
"type": "string"
},
"col_w... | I need to look up the information first.
Action: process_payment
Result: {"prop_t36": 962, "key_i96": "baz", "val_t92": null, "field_v32": {"attr_a35": "user@domain.com", "attr_c67": "This is a test value.", "key_s23": "user@example.com", "attr_w30": 417.85}, "attr_s44": false, "prop_a68": "test@test.io"}
I'll query o... | Agent multi-step chain with truncated tool output | {"prop_t36":962,"key_i96":"baz","val_t92":null,"field_v32":{"attr_a35":"user@domain.com","attr_c67":"This is a test value.","key_s23":"user@example.com","attr_w30":417.85},"prop_d54":457,"attr_s44":false,"prop_a68":"test@test.io"} |
TASK repair_structured_output
SPEC
FIELD wavelength.barcode.weight TYPE string VALUES active|inactive|pending REQUIRED no
FIELD wavelength.barcode.brake_pressure TYPE null REQUIRED no
FIELD wavelength.barcode.level TYPE number REQUIRED no
FIELD wavelength.barcode.label TYPE integer REQUIRED yes
FIELD wavelength.barcod... | {"wavelength":{"barcode":{"weight":"active","brake_pressure":null,"level":685.47,"label":198,"vessel_name":"in_progress"},"balance":"escalated"},"isotope":383,"allele":"black","tax":"Alice","timezone":38,"transaction_id":"https://api.io/data","quality_score":"viewer"} | markdown_explanation | {
"type": "object",
"properties": {
"wavelength": {
"type": "object",
"properties": {
"barcode": {
"type": "object",
"properties": {
"weight": {
"type": "string",
"enum": [
"active",
"inactive",
... | The parsed result is:
```json
{"wavelength":{"barcode":{"weight":"active","brake_pressure":null,"level":685.47,"label":198,"vessel_name":"in_progress"},"balance":"escalated"},"isotope":383,"allele":"black","tax":"Alice","timezone":38,"transaction_id":"https://api.io/data","quality_score":"viewer"}
```
Data logged succe... | Output contains markdown and explanatory text around JSON | {"wavelength":{"barcode":{"weight":"active","brake_pressure":null,"level":685.47,"label":198,"vessel_name":"in_progress"},"balance":"escalated"},"isotope":383,"allele":"black","tax":"Alice","timezone":38,"transaction_id":"https://api.io/data","quality_score":"viewer"} |
TASK repair_structured_output
SPEC
FIELD col_n99 TYPE string REQUIRED yes
FIELD field_h48 TYPE string REQUIRED no
FIELD key_r43 TYPE integer REQUIRED no
FIELD prop_t35 TYPE string VALUES option_a|option_b|option_c|option_d REQUIRED no
FIELD field_j42.dim_g72 TYPE string VALUES cat_a|cat_b|cat_c REQUIRED yes
FIELD fiel... | {"col_n99":"London","field_h48":"Luis","prop_t35":"option_a","field_j42":{"dim_g72":"cat_c","prop_j20":"frameshift","field_f08":{"dim_s09":"sms","param_s03":"GBP","attr_r84":"level_3","field_m56":53},"col_i56":"in_transit"}} | partial_structure | {
"type": "object",
"properties": {
"col_n99": {
"type": "string"
},
"field_h48": {
"type": "string"
},
"key_r43": {
"type": "integer"
},
"prop_t35": {
"type": "string",
"enum": [
"option_a",
"option_b",
"option_c",
"option_d"... | I found that field_j42 should be {'dim_g72': 'cat_c', 'prop_j20': 'frameshift', 'field_f08': {'dim_s09': 'sms', 'param_s03': 'GBP', 'attr_r84': 'level_3', 'field_m56': 53}, 'col_i56': 'in_transit'}. {"col_n99":"London","field_h48":"Luis","prop_t35":"option_a","field_j42":{"dim_g72":"cat_c","prop_j20":"frameshift","fiel... | Output mixes natural language with JSON | {"col_n99":"London","field_h48":"Luis","prop_t35":"option_a","field_j42":{"dim_g72":"cat_c","prop_j20":"frameshift","field_f08":{"dim_s09":"sms","param_s03":"GBP","attr_r84":"level_3","field_m56":53},"col_i56":"in_transit"}} |
TASK repair_structured_output
SPEC
FIELD param_g32 TYPE boolean REQUIRED no
FIELD field_p26 TYPE string VALUES pending_review|confirmed|rejected|escalated REQUIRED yes
FIELD attr_a05 TYPE string_uri REQUIRED yes
BROKEN_OUTPUT
Here's the structured output:
{"field_p26":"confirmed","attr_a05":"https://api.com/v1"} | {"field_p26":"confirmed","attr_a05":"https://api.com/v1"} | extra_text_before | {
"type": "object",
"properties": {
"param_g32": {
"type": "boolean"
},
"field_p26": {
"type": "string",
"enum": [
"pending_review",
"confirmed",
"rejected",
"escalated"
]
},
"attr_a05": {
"type": "string",
"format": "uri"
}... | Here's the structured output:
{"field_p26":"confirmed","attr_a05":"https://api.com/v1"} | Output contains non-JSON text before the object | {"field_p26":"confirmed","attr_a05":"https://api.com/v1"} |
TASK repair_structured_output
SPEC
FIELD barcode.balance TYPE string VALUES email|phone|sms|push REQUIRED no
FIELD barcode.catalyst TYPE string REQUIRED yes
FIELD barcode.commit_hash TYPE number REQUIRED no
FIELD barcode.freight_class TYPE integer REQUIRED no
FIELD barcode.city[] TYPE number REQUIRED no
FIELD version ... | {"barcode":{"balance":"email","catalyst":"inactive","commit_hash":420.01,"freight_class":978,"city":[127.41,743.66,87.06,858.55]},"version":"cat_b","due_date":"cat_a","quantity":418} | extra_field | {
"type": "object",
"properties": {
"barcode": {
"type": "object",
"properties": {
"balance": {
"type": "string",
"enum": [
"email",
"phone",
"sms",
"push"
]
},
"catalyst": {
"type": "stri... | {"barcode": {"balance": "email", "catalyst": "inactive", "commit_hash": 420.01, "freight_class": 978, "city": [127.41, 743.66, 87.06, 858.55]}, "version": "cat_b", "due_date": "cat_a", "quantity": 418, "extra_field_9977": true} | Unknown field 'extra_field_9977' not defined in schema | {"barcode":{"balance":"email","catalyst":"inactive","commit_hash":420.01,"freight_class":978,"city":[127.41,743.66,87.06,858.55]},"version":"cat_b","due_date":"cat_a","quantity":418} |
TASK repair_structured_output
SPEC
FIELD field_x26 TYPE boolean REQUIRED yes
FIELD field_w27 TYPE string REQUIRED no
FIELD prop_r66 TYPE integer REQUIRED no
FIELD dim_m48[].param_e83 TYPE boolean REQUIRED yes
FIELD dim_m48[].key_m80 TYPE string_email REQUIRED no
FIELD dim_m48[].key_v66 TYPE null REQUIRED no
FIELD dim_... | {"field_x26":false,"field_w27":"Smith","prop_r66":238,"dim_m48":[{"param_e83":true,"key_m80":"test@example.com","key_v66":null,"attr_j18":"in_progress","col_f51":false}]} | boolean_as_string | {
"type": "object",
"properties": {
"field_x26": {
"type": "boolean"
},
"field_w27": {
"type": "string"
},
"prop_r66": {
"type": "integer"
},
"dim_m48": {
"type": "array",
"items": {
"type": "object",
"properties": {
"param_e83": {
... | {"field_x26": "false", "field_w27": "Smith", "prop_r66": 238, "dim_m48": [{"param_e83": true, "key_m80": "test@example.com", "key_v66": null, "attr_j18": "in_progress", "col_f51": false}]} | Field 'field_x26' must be boolean, got string | {"field_x26":false,"field_w27":"Smith","prop_r66":238,"dim_m48":[{"param_e83":true,"key_m80":"test@example.com","key_v66":null,"attr_j18":"in_progress","col_f51":false}]} |
TASK repair_structured_output
SPEC
FIELD col_s63 TYPE string REQUIRED no
FIELD dim_i73 TYPE string VALUES option_a|option_b REQUIRED yes
FIELD col_u75 TYPE string_email REQUIRED no
FIELD dim_c62 TYPE number REQUIRED no
FIELD param_t51 TYPE integer REQUIRED yes
FIELD field_q08 TYPE integer REQUIRED yes
BROKEN_OUTPUT
{... | {"col_s63":"Sao Paulo","dim_i73":"option_b","col_u75":"admin@example.com","param_t51":395,"field_q08":476} | truncated_object | {
"type": "object",
"properties": {
"col_s63": {
"type": "string"
},
"dim_i73": {
"type": "string",
"enum": [
"option_a",
"option_b"
]
},
"col_u75": {
"type": "string",
"format": "email"
},
"dim_c62": {
"type": "number"
},
... | {"col_s63":"Sao Paulo","dim_i73":"option_b","col_u75":"admin@example.com","param_t51":395,"field_q08":476 | Unexpected end of JSON input — truncated object | {"col_s63":"Sao Paulo","dim_i73":"option_b","col_u75":"admin@example.com","param_t51":395,"field_q08":476} |
TASK repair_structured_output
SPEC
FIELD subject TYPE number REQUIRED yes
FIELD consignee TYPE integer REQUIRED no
FIELD run_id TYPE string VALUES synonymous|missense|nonsense|frameshift REQUIRED no
FIELD company TYPE null REQUIRED yes
BROKEN_OUTPUT
Processing the request now.
<tool_call name="search">
{"subject":143... | {"subject":143.23,"consignee":184,"run_id":"missense","company":null} | tool_call_text_mix | {
"type": "object",
"properties": {
"subject": {
"type": "number"
},
"consignee": {
"type": "integer"
},
"run_id": {
"type": "string",
"enum": [
"synonymous",
"missense",
"nonsense",
"frameshift"
]
},
"company": {
"type"... | Processing the request now.
<tool_call name="search">
{"subject":143.23,"consignee":184,"run_id":"missense","company":null}
</tool_call. | Agent response mixes reasoning text with tool call | {"subject":143.23,"consignee":184,"run_id":"missense","company":null} |
TASK repair_structured_output
SPEC
FIELD col_s78 TYPE string_date-time REQUIRED no
FIELD key_q60 TYPE null REQUIRED yes
FIELD val_c76.dim_s72 TYPE boolean REQUIRED no
FIELD val_c76.val_q86 TYPE string REQUIRED yes
FIELD val_c76.field_x92 TYPE string REQUIRED yes
FIELD val_c76.key_l91 TYPE string VALUES open|in_progres... | {"col_s78":"2023-05-20T23:10:00Z","key_q60":null,"val_c76":{"dim_s72":true,"val_q86":"demo","field_x92":"approved","key_l91":"closed"}} | truncated_object | {
"type": "object",
"properties": {
"col_s78": {
"type": "string",
"format": "date-time"
},
"key_q60": {
"type": "null"
},
"val_c76": {
"type": "object",
"properties": {
"dim_s72": {
"type": "boolean"
},
"val_q86": {
"type... | {"col_s78":"2023-05-20T23:10:00Z","key_q60":null,"val_c76":{"dim_s72":true,"val_q86":"demo","field_x92":"approved","key_l91":"closed"} | Unexpected end of JSON input — truncated object | {"col_s78":"2023-05-20T23:10:00Z","key_q60":null,"val_c76":{"dim_s72":true,"val_q86":"demo","field_x92":"approved","key_l91":"closed"}} |
TASK repair_structured_output
SPEC
FIELD due_date TYPE integer REQUIRED no
FIELD dosage TYPE integer REQUIRED no
FIELD branch TYPE string REQUIRED no
FIELD state.nickname TYPE number REQUIRED yes
FIELD state.date TYPE string REQUIRED yes
FIELD state.allele TYPE string_email REQUIRED yes
BROKEN_OUTPUT
Result: state={'... | {"dosage":696,"state":{"nickname":288.16,"date":"chrX","allele":"ops@example.com"}} | partial_structure | {
"type": "object",
"properties": {
"due_date": {
"type": "integer"
},
"dosage": {
"type": "integer"
},
"branch": {
"type": "string"
},
"state": {
"type": "object",
"properties": {
"nickname": {
"type": "number"
},
"date": {... | Result: state={'nickname': 288.16, 'date': 'chrX', 'allele': 'ops@example.com'}, {"dosage":696,"state":{"nickname":288.16,"date":"chrX","allele":"ops@example.com"}} | Output mixes natural language with JSON | {"dosage":696,"state":{"nickname":288.16,"date":"chrX","allele":"ops@example.com"}} |
TASK repair_structured_output
SPEC
FIELD wavelength TYPE string VALUES low|medium|high|critical REQUIRED no
FIELD amount TYPE string VALUES USD|EUR|GBP|BRL|JPY REQUIRED no
FIELD address TYPE string REQUIRED yes
FIELD longitude TYPE integer REQUIRED no
FIELD span_id TYPE number REQUIRED no
FIELD yield_pct TYPE string R... | {"amount":"BRL","address":"Jane","span_id":269.01,"message":"maintenance"} | invalid_enum | {
"type": "object",
"properties": {
"wavelength": {
"type": "string",
"enum": [
"low",
"medium",
"high",
"critical"
]
},
"amount": {
"type": "string",
"enum": [
"USD",
"EUR",
"GBP",
"BRL",
"JPY"
]... | {"amount": "BRL", "address": "Jane", "span_id": 269.01, "message": "invalid_option_549"} | Field 'message' has invalid enum value 'invalid_option_549', expected one of ['operational', 'degraded', 'offline', 'maintenance'] | {"amount":"BRL","address":"Jane","span_id":269.01,"message":"maintenance"} |
TASK repair_structured_output
SPEC
FIELD lane TYPE string VALUES USD|EUR|GBP|BRL|JPY REQUIRED no
FIELD branch TYPE string VALUES pending_review|confirmed|rejected|escalated REQUIRED yes
FIELD vital_sign TYPE string REQUIRED no
FIELD size TYPE boolean REQUIRED yes
FIELD price TYPE string_date-time REQUIRED no
BROKEN_O... | {"branch":"pending_review","vital_sign":"foo","size":false,"price":"2022-09-06T23:13:00Z"} | tool_call_bad_format | {
"type": "object",
"properties": {
"lane": {
"type": "string",
"enum": [
"USD",
"EUR",
"GBP",
"BRL",
"JPY"
]
},
"branch": {
"type": "string",
"enum": [
"pending_review",
"confirmed",
"rejected",
"escal... | <functioncall> call_variants
{branch: "pending_review", vital_sign: "foo", size: false, price: "2022-09-06T23:13:00Z"} | Tool call has malformed arguments — unquoted keys in function parameters | {"branch":"pending_review","vital_sign":"foo","size":false,"price":"2022-09-06T23:13:00Z"} |
TASK repair_structured_output
SPEC
FIELD nickname TYPE string VALUES mode_a|mode_b REQUIRED no
FIELD commit_hash TYPE string VALUES mode_a|mode_b|mode_c REQUIRED yes
FIELD branch TYPE string VALUES option_a|option_b|option_c|option_d|option_e REQUIRED no
FIELD freight_class TYPE string REQUIRED no
FIELD longitude.flee... | {"commit_hash":"mode_c","branch":"option_c","freight_class":"Sao Paulo","longitude":{"fleet_number":"user@domain.com","gene_id":268,"conductivity":"option_b"},"features":"option_c"} | partial_structure | {
"type": "object",
"properties": {
"nickname": {
"type": "string",
"enum": [
"mode_a",
"mode_b"
]
},
"commit_hash": {
"type": "string",
"enum": [
"mode_a",
"mode_b",
"mode_c"
]
},
"branch": {
"type": "string",
... | The features is option_c and {"commit_hash":"mode_c","branch":"option_c","freight_class":"Sao Paulo","longitude":{"fleet_number":"user@domain.com","gene_id":268,"conductivity":"option_b"},"features":"option_c"} | Output mixes natural language with JSON | {"commit_hash":"mode_c","branch":"option_c","freight_class":"Sao Paulo","longitude":{"fleet_number":"user@domain.com","gene_id":268,"conductivity":"option_b"},"features":"option_c"} |
TASK repair_structured_output
SPEC
FIELD tax.height TYPE string VALUES email|phone|sms|push REQUIRED yes
FIELD tax.filter_flag TYPE string VALUES active|inactive|pending REQUIRED yes
FIELD tax.thumbnail TYPE string VALUES level_1|level_2|level_3|level_4 REQUIRED yes
FIELD tax.ph_level TYPE null REQUIRED no
FIELD tax.b... | {"tax":{"height":"sms","filter_flag":"inactive","thumbnail":"level_3","ph_level":null,"bed_number":"Smith","options":868.99},"product_id":"small","bearing":true,"section":950,"manifest_ref":488} | single_quotes | {
"type": "object",
"properties": {
"tax": {
"type": "object",
"properties": {
"height": {
"type": "string",
"enum": [
"email",
"phone",
"sms",
"push"
]
},
"filter_flag": {
"type": "string... | {'tax':{'height':'sms','filter_flag':'inactive','thumbnail':'level_3','ph_level':null,'bed_number':'Smith','options':868.99},'product_id':'small','bearing':true,'section':950,'manifest_ref':488} | Expecting property name enclosed in double quotes | {"tax":{"height":"sms","filter_flag":"inactive","thumbnail":"level_3","ph_level":null,"bed_number":"Smith","options":868.99},"product_id":"small","bearing":true,"section":950,"manifest_ref":488} |
TASK repair_structured_output
SPEC
FIELD item_id TYPE string VALUES homozygous|heterozygous|hemizygous REQUIRED yes
FIELD payment_status TYPE integer REQUIRED yes
FIELD due_date TYPE null REQUIRED no
FIELD footnote TYPE string VALUES berthed|anchored|underway|moored REQUIRED no
BROKEN_OUTPUT
{"item_id": "homozygous",... | {"item_id":"homozygous","payment_status":526,"due_date":null,"footnote":"moored"} | number_with_unit | {
"type": "object",
"properties": {
"item_id": {
"type": "string",
"enum": [
"homozygous",
"heterozygous",
"hemizygous"
]
},
"payment_status": {
"type": "integer"
},
"due_date": {
"type": "null"
},
"footnote": {
"type": "string"... | {"item_id": "homozygous", "payment_status": "526MB", "due_date": null, "footnote": "moored"} | Field 'payment_status' must be number, got string with unit | {"item_id":"homozygous","payment_status":526,"due_date":null,"footnote":"moored"} |
TASK repair_structured_output
SPEC
FIELD commit_hash TYPE string REQUIRED no
FIELD message TYPE string REQUIRED no
FIELD status[] TYPE number REQUIRED yes
BROKEN_OUTPUT
```json
{"commit_hash":"user@domain.com","message":"Johnson","status":[668.37,161.79,149.31,592.61]}
``` | {"commit_hash":"user@domain.com","message":"Johnson","status":[668.37,161.79,149.31,592.61]} | markdown_fences | {
"type": "object",
"properties": {
"commit_hash": {
"type": "string"
},
"message": {
"type": "string"
},
"status": {
"type": "array",
"items": {
"type": "number"
}
}
},
"required": [
"status"
]
} | ```json
{"commit_hash":"user@domain.com","message":"Johnson","status":[668.37,161.79,149.31,592.61]}
``` | Output contains markdown code fences | {"commit_hash":"user@domain.com","message":"Johnson","status":[668.37,161.79,149.31,592.61]} |
TASK repair_structured_output
SPEC
FIELD col_w85.param_n74.key_k89 TYPE string REQUIRED yes
FIELD col_w85.param_n74.dim_h25 TYPE string_uri REQUIRED yes
FIELD col_w85.param_n74.attr_x92 TYPE string VALUES USD|EUR|GBP|BRL|JPY REQUIRED yes
FIELD col_w85.param_n74.col_r32 TYPE number REQUIRED yes
FIELD col_w85.val_x66 TY... | {"col_w85":{"param_n74":{"key_k89":"Sao Paulo","dim_h25":"https://www.org/data","attr_x92":"USD","col_r32":939.75},"val_x66":"hello","val_y18":{"col_e16":"https://api.io/v1","key_c96":"Tokyo","val_m37":"free","attr_b56":"test@test.io","field_v12":false},"key_i08":{"param_p68":777,"dim_u87":null,"val_j72":"world","col_j... | tool_call_python_syntax | {
"type": "object",
"properties": {
"col_w85": {
"type": "object",
"properties": {
"param_n74": {
"type": "object",
"properties": {
"key_k89": {
"type": "string"
},
"dim_h25": {
"type": "string",
... | get_inventory(col_w85={'param_n74': {'key_k89': 'Sao Paulo', 'dim_h25': 'https://www.org/data', 'attr_x92': 'USD', 'col_r32': 939.75}, 'val_x66': 'hello', 'val_y18': {'col_e16': 'https://api.io/v1', 'key_c96': 'Tokyo', 'val_m37': 'free', 'attr_b56': 'test@test.io', 'field_v12': False}, 'key_i08': {'param_p68': 777, 'di... | Tool call uses Python syntax instead of JSON | {"col_w85":{"param_n74":{"key_k89":"Sao Paulo","dim_h25":"https://www.org/data","attr_x92":"USD","col_r32":939.75},"val_x66":"hello","val_y18":{"col_e16":"https://api.io/v1","key_c96":"Tokyo","val_m37":"free","attr_b56":"test@test.io","field_v12":false},"key_i08":{"param_p68":777,"dim_u87":null,"val_j72":"world","col_j... |
TASK repair_structured_output
SPEC
FIELD visible TYPE string REQUIRED no
FIELD created_at TYPE number REQUIRED yes
FIELD humidity_pct TYPE string_email REQUIRED yes
BROKEN_OUTPUT
{"visible":"QC-07","created_at":813.7,"humidity_pct":"user@domain.org"} | {"visible":"QC-07","created_at":813.7,"humidity_pct":"user@domain.org"} | missing_bracket | {
"type": "object",
"properties": {
"visible": {
"type": "string"
},
"created_at": {
"type": "number"
},
"humidity_pct": {
"type": "string",
"format": "email"
}
},
"required": [
"created_at",
"humidity_pct"
]
} | {"visible":"QC-07","created_at":813.7,"humidity_pct":"user@domain.org"} | Missing closing bracket | {"visible":"QC-07","created_at":813.7,"humidity_pct":"user@domain.org"} |
TASK repair_structured_output
SPEC
FIELD payment_status TYPE string REQUIRED no
FIELD temp_celsius TYPE integer REQUIRED no
FIELD voltage TYPE string REQUIRED yes
FIELD cargo_type TYPE string_uri REQUIRED no
FIELD start_date TYPE string VALUES USD|EUR|GBP|BRL|JPY REQUIRED no
BROKEN_OUTPUT
{"payment_status":"chr1","te... | {"payment_status":"chr1","temp_celsius":847,"voltage":"Silva","cargo_type":"https://example.com/v1","start_date":"USD"} | missing_brace | {
"type": "object",
"properties": {
"payment_status": {
"type": "string"
},
"temp_celsius": {
"type": "integer"
},
"voltage": {
"type": "string"
},
"cargo_type": {
"type": "string",
"format": "uri"
},
"start_date": {
"type": "string",
"en... | {"payment_status":"chr1","temp_celsius":847,"voltage":"Silva","cargo_type":"https://example.com/v1","start_date":"USD" | Missing closing brace | {"payment_status":"chr1","temp_celsius":847,"voltage":"Silva","cargo_type":"https://example.com/v1","start_date":"USD"} |
TASK repair_structured_output
SPEC
FIELD param_i48 TYPE string REQUIRED yes
FIELD param_y11 TYPE string REQUIRED no
FIELD col_g39.param_r59 TYPE integer REQUIRED yes
FIELD col_g39.key_h66 TYPE number REQUIRED yes
FIELD col_g39.key_s80[].dim_n78 TYPE string VALUES operational|degraded|offline|maintenance REQUIRED yes
F... | {"param_i48":"A short description.","param_y11":"pending","col_g39":{"param_r59":807,"key_h66":134.36,"key_s80":[{"dim_n78":"operational","col_j89":590.89,"dim_j94":"info@test.io","field_d21":"Diana"},{"dim_n78":"degraded","prop_t21":true,"col_j89":369.92,"dim_j94":"info@example.com","field_d21":"chrX"},{"dim_n78":"ope... | extra_field | {
"type": "object",
"properties": {
"param_i48": {
"type": "string"
},
"param_y11": {
"type": "string"
},
"col_g39": {
"type": "object",
"properties": {
"param_r59": {
"type": "integer"
},
"key_h66": {
"type": "number"
}... | {"param_i48": "A short description.", "param_y11": "pending", "col_g39": {"param_r59": 807, "key_h66": 134.36, "key_s80": [{"dim_n78": "operational", "col_j89": 590.89, "dim_j94": "info@test.io", "field_d21": "Diana"}, {"dim_n78": "degraded", "prop_t21": true, "col_j89": 369.92, "dim_j94": "info@example.com", "field_d2... | Unknown field 'extra_field_2143' not defined in schema | {"param_i48":"A short description.","param_y11":"pending","col_g39":{"param_r59":807,"key_h66":134.36,"key_s80":[{"dim_n78":"operational","col_j89":590.89,"dim_j94":"info@test.io","field_d21":"Diana"},{"dim_n78":"degraded","prop_t21":true,"col_j89":369.92,"dim_j94":"info@example.com","field_d21":"chrX"},{"dim_n78":"ope... |
TASK repair_structured_output
SPEC
FIELD dim_v77 TYPE string VALUES open|in_progress|resolved|closed REQUIRED yes
FIELD val_g93 TYPE string VALUES reliable|unstable|intermittent REQUIRED no
FIELD field_r27 TYPE integer REQUIRED no
FIELD prop_m23 TYPE integer REQUIRED yes
FIELD col_o01 TYPE string VALUES free|basic|pro... | {"dim_v77":"resolved","val_g93":"unstable","prop_m23":24,"val_h68":"REV"} | tool_call_wrong_param | {
"type": "object",
"properties": {
"dim_v77": {
"type": "string",
"enum": [
"open",
"in_progress",
"resolved",
"closed"
]
},
"val_g93": {
"type": "string",
"enum": [
"reliable",
"unstable",
"intermittent"
]
... | Tool: send_email
Params: {"dim_v77": "resolved", "val_g93": "unstable", "prop_m23": 24, "val_h68": "REV"} | Agent used wrong parameter name 'val_r23_id' instead of 'val_r23' | {"dim_v77":"resolved","val_g93":"unstable","prop_m23":24,"val_h68":"REV"} |
TASK repair_structured_output
SPEC
FIELD val_k64 TYPE integer REQUIRED no
FIELD val_a09 TYPE string REQUIRED yes
FIELD prop_l63 TYPE boolean REQUIRED no
FIELD field_r51[] TYPE integer REQUIRED yes
BROKEN_OUTPUT
{"val_k64": "66sec", "val_a09": "cancelled", "field_r51": [657, 395]} | {"val_k64":66,"val_a09":"cancelled","field_r51":[657,395]} | number_with_unit | {
"type": "object",
"properties": {
"val_k64": {
"type": "integer"
},
"val_a09": {
"type": "string"
},
"prop_l63": {
"type": "boolean"
},
"field_r51": {
"type": "array",
"items": {
"type": "integer"
}
}
},
"required": [
"field_r51",... | {"val_k64": "66sec", "val_a09": "cancelled", "field_r51": [657, 395]} | Field 'val_k64' must be number, got string with unit | {"val_k64":66,"val_a09":"cancelled","field_r51":[657,395]} |
TASK repair_structured_output
SPEC
FIELD collateral TYPE number REQUIRED yes
FIELD shift_code TYPE boolean REQUIRED no
FIELD height TYPE number REQUIRED yes
BROKEN_OUTPUT
{"collateral":84.95,"shift_code":true,"height":632.34} | {"collateral":84.95,"shift_code":true,"height":632.34} | missing_bracket | {
"type": "object",
"properties": {
"collateral": {
"type": "number"
},
"shift_code": {
"type": "boolean"
},
"height": {
"type": "number"
}
},
"required": [
"height",
"collateral"
]
} | {"collateral":84.95,"shift_code":true,"height":632.34} | Missing closing bracket | {"collateral":84.95,"shift_code":true,"height":632.34} |
TASK repair_structured_output
SPEC
FIELD quality_score TYPE string VALUES operational|degraded|offline|maintenance REQUIRED no
FIELD address TYPE string VALUES pending_review|confirmed|rejected|escalated REQUIRED no
FIELD timezone TYPE string VALUES success|error|warning|info REQUIRED no
FIELD priority TYPE boolean RE... | {"quality_score":"maintenance","address":"escalated","timezone":"warning","priority":true,"loan_amount":"PASS","size":null,"log_level":11} | trailing_comma | {
"type": "object",
"properties": {
"quality_score": {
"type": "string",
"enum": [
"operational",
"degraded",
"offline",
"maintenance"
]
},
"address": {
"type": "string",
"enum": [
"pending_review",
"confirmed",
"rejec... | {"quality_score":"maintenance","address":"escalated","timezone":"warning","priority":true,"loan_amount":"PASS","size":null,"log_level":11,} | Unexpected trailing comma | {"quality_score":"maintenance","address":"escalated","timezone":"warning","priority":true,"loan_amount":"PASS","size":null,"log_level":11} |
TASK repair_structured_output
SPEC
FIELD due_date TYPE integer REQUIRED yes
FIELD transaction_id TYPE integer REQUIRED no
FIELD shipping TYPE boolean REQUIRED no
BROKEN_OUTPUT
I need to look up the information first.
Action: annotate_mutation
Arguments: {"transaction_id": 783, "shipping": false} | {"due_date":802,"transaction_id":783,"shipping":false} | tool_call_partial_args | {
"type": "object",
"properties": {
"due_date": {
"type": "integer"
},
"transaction_id": {
"type": "integer"
},
"shipping": {
"type": "boolean"
}
},
"required": [
"due_date"
]
} | I need to look up the information first.
Action: annotate_mutation
Arguments: {"transaction_id": 783, "shipping": false} | Agent tool call missing required parameter 'due_date' | {"due_date":802,"transaction_id":783,"shipping":false} |
TASK repair_structured_output
SPEC
FIELD field_a85 TYPE string VALUES low|medium|high|critical REQUIRED no
FIELD attr_i14 TYPE string VALUES single|married|divorced REQUIRED yes
FIELD param_v60 TYPE number REQUIRED no
FIELD key_g63 TYPE number REQUIRED yes
FIELD col_n27.prop_v38 TYPE string REQUIRED no
FIELD col_n27.c... | {"field_a85":"high","attr_i14":"single","key_g63":513.43,"col_n27":{"field_q18":"https://www.com/v1","key_o64":"coastal","key_s44":"blue","dim_e15":"push","key_r42":"user@domain.org"}} | tool_call_python_syntax | {
"type": "object",
"properties": {
"field_a85": {
"type": "string",
"enum": [
"low",
"medium",
"high",
"critical"
]
},
"attr_i14": {
"type": "string",
"enum": [
"single",
"married",
"divorced"
]
},
"para... | apply_discount(field_a85='high', attr_i14='single', key_g63=513.43, col_n27={'field_q18': 'https://www.com/v1', 'key_o64': 'coastal', 'key_s44': 'blue', 'dim_e15': 'push', 'key_r42': 'user@domain.org'}) | Tool call uses Python syntax instead of JSON | {"field_a85":"high","attr_i14":"single","key_g63":513.43,"col_n27":{"field_q18":"https://www.com/v1","key_o64":"coastal","key_s44":"blue","dim_e15":"push","key_r42":"user@domain.org"}} |
TASK repair_structured_output
SPEC
FIELD param_z76 TYPE integer REQUIRED no
FIELD field_t86 TYPE string VALUES type_a|type_b|type_c REQUIRED no
FIELD field_w41 TYPE string REQUIRED no
FIELD key_j24 TYPE string REQUIRED yes
FIELD col_x36 TYPE string REQUIRED no
FIELD dim_y21.key_d19 TYPE integer REQUIRED yes
FIELD dim_... | {"param_z76":134,"field_t86":"type_c","field_w41":"Oliveira","key_j24":"cancelled","dim_y21":{"key_d19":728,"key_p27":false,"col_i36":[null]},"dim_b06":true,"dim_c03":"2022-02-19T03:40:00Z"} | tool_call_bad_format | {
"type": "object",
"properties": {
"param_z76": {
"type": "integer"
},
"field_t86": {
"type": "string",
"enum": [
"type_a",
"type_b",
"type_c"
]
},
"field_w41": {
"type": "string"
},
"key_j24": {
"type": "string"
},
"co... | <functioncall> get_account
{param_z76: 134, field_t86: "type_c", field_w41: "Oliveira", key_j24: "cancelled", dim_y21: {key_d19: 728, key_p27: false, col_i36: [null]}, dim_b06: true, dim_c03: "2022-02-19T03:40:00Z"} | Tool call has malformed arguments — unquoted keys in function parameters | {"param_z76":134,"field_t86":"type_c","field_w41":"Oliveira","key_j24":"cancelled","dim_y21":{"key_d19":728,"key_p27":false,"col_i36":[null]},"dim_b06":true,"dim_c03":"2022-02-19T03:40:00Z"} |
TASK repair_structured_output
SPEC
FIELD dim_w03 TYPE string VALUES success|error|warning|info REQUIRED yes
FIELD prop_c16 TYPE string VALUES pending_review|confirmed|rejected|escalated REQUIRED yes
FIELD attr_d04 TYPE number REQUIRED yes
BROKEN_OUTPUT
<functioncall> create_ticket
{dim_w03: "warning", prop_c16: "pend... | {"dim_w03":"warning","prop_c16":"pending_review","attr_d04":136.18} | tool_call_bad_format | {
"type": "object",
"properties": {
"dim_w03": {
"type": "string",
"enum": [
"success",
"error",
"warning",
"info"
]
},
"prop_c16": {
"type": "string",
"enum": [
"pending_review",
"confirmed",
"rejected",
"esca... | <functioncall> create_ticket
{dim_w03: "warning", prop_c16: "pending_review", attr_d04: 136.18} | Tool call has malformed arguments — unquoted keys in function parameters | {"dim_w03":"warning","prop_c16":"pending_review","attr_d04":136.18} |
TASK repair_structured_output
SPEC
FIELD crew_id TYPE string REQUIRED no
FIELD insurance_id TYPE string VALUES free|basic|pro|enterprise REQUIRED no
FIELD allele TYPE integer REQUIRED no
FIELD company TYPE string_date-time REQUIRED yes
FIELD website TYPE string VALUES homozygous|heterozygous|hemizygous REQUIRED no
FIE... | {"crew_id":"Luis","insurance_id":"pro","allele":562,"company":"2026-08-13T21:33:00Z","website":"homozygous","footnote":"A short description.","verified":"admin@test.io","position":"demo"} | null_required | {
"type": "object",
"properties": {
"crew_id": {
"type": "string"
},
"insurance_id": {
"type": "string",
"enum": [
"free",
"basic",
"pro",
"enterprise"
]
},
"allele": {
"type": "integer"
},
"company": {
"type": "string",... | {"crew_id": "Luis", "insurance_id": "pro", "allele": 562, "company": "2026-08-13T21:33:00Z", "website": "homozygous", "footnote": "A short description.", "verified": "admin@test.io", "position": null} | Required field 'position' is null | {"crew_id":"Luis","insurance_id":"pro","allele":562,"company":"2026-08-13T21:33:00Z","website":"homozygous","footnote":"A short description.","verified":"admin@test.io","position":"demo"} |
TASK repair_structured_output
SPEC
FIELD attr_f61 TYPE string VALUES option_a|option_b|option_c|option_d REQUIRED no
FIELD attr_e86 TYPE string VALUES level_1|level_2|level_3|level_4|level_5 REQUIRED yes
FIELD attr_p39 TYPE string_uri REQUIRED yes
FIELD key_x48 TYPE boolean REQUIRED yes
FIELD col_o40 TYPE integer REQU... | {"attr_f61":"option_d","attr_e86":"level_5","attr_p39":"https://api.com/api","key_x48":true,"col_o40":793,"param_q35":102.77,"attr_l30":"level_1","attr_d76":"coastal"} | null_required | {
"type": "object",
"properties": {
"attr_f61": {
"type": "string",
"enum": [
"option_a",
"option_b",
"option_c",
"option_d"
]
},
"attr_e86": {
"type": "string",
"enum": [
"level_1",
"level_2",
"level_3",
"leve... | {"attr_f61": "option_d", "attr_e86": null, "attr_p39": "https://api.com/api", "key_x48": true, "col_o40": 793, "param_q35": 102.77, "attr_l30": "level_1", "attr_d76": "coastal"} | Required field 'attr_e86' is null | {"attr_f61":"option_d","attr_e86":"level_5","attr_p39":"https://api.com/api","key_x48":true,"col_o40":793,"param_q35":102.77,"attr_l30":"level_1","attr_d76":"coastal"} |
TASK repair_structured_output
SPEC
FIELD isotope.organism TYPE string REQUIRED yes
FIELD isotope.total TYPE string_uri REQUIRED no
FIELD isotope.filter_flag TYPE null REQUIRED no
FIELD isotope.compound.allele TYPE string VALUES level_1|level_2|level_3|level_4 REQUIRED yes
FIELD isotope.compound.umi TYPE boolean REQUIR... | {"isotope":{"organism":"user@domain.com","total":"https://data.com/data","filter_flag":null,"compound":{"allele":"level_4","umi":false,"chapter":500.97,"isotope":false,"weight":"Berlin","visible":true,"trace_id":"berthed"}},"voltage":"Berlin","run_id":true,"format":"Bob","branch":{"trace_id":106,"consignee":"frameshift... | null_required | {
"type": "object",
"properties": {
"isotope": {
"type": "object",
"properties": {
"organism": {
"type": "string"
},
"total": {
"type": "string",
"format": "uri"
},
"filter_flag": {
"type": "null"
},
"com... | {"isotope": null, "voltage": "Berlin", "run_id": true, "format": "Bob", "branch": {"trace_id": 106, "consignee": "frameshift", "gene_id": 569, "city": {"repository": "Smith", "transaction_id": "anchored", "loan_amount": "chrX", "type": "A short description."}}} | Required field 'isotope' is null | {"isotope":{"organism":"user@domain.com","total":"https://data.com/data","filter_flag":null,"compound":{"allele":"level_4","umi":false,"chapter":500.97,"isotope":false,"weight":"Berlin","visible":true,"trace_id":"berthed"}},"voltage":"Berlin","run_id":true,"format":"Bob","branch":{"trace_id":106,"consignee":"frameshift... |
TASK repair_structured_output
SPEC
FIELD dim_x87 TYPE string REQUIRED no
FIELD col_q94 TYPE string VALUES option_a|option_b REQUIRED yes
FIELD val_o42.attr_i17 TYPE string VALUES type_a|type_b|type_c REQUIRED no
FIELD val_o42.val_l99 TYPE integer REQUIRED yes
FIELD val_o42.attr_i89 TYPE string REQUIRED no
FIELD val_o4... | {"col_q94":"option_b","val_o42":{"attr_i17":"type_c","val_l99":907,"col_a28":"level_4","dim_i43":"completed","dim_t75":"cancelled","param_v11":"option_e"},"param_w76":{"val_q94":false,"prop_b99":819.15,"key_v77":243,"attr_e79":918}} | tool_call_partial_args | {
"type": "object",
"properties": {
"dim_x87": {
"type": "string"
},
"col_q94": {
"type": "string",
"enum": [
"option_a",
"option_b"
]
},
"val_o42": {
"type": "object",
"properties": {
"attr_i17": {
"type": "string",
... | Let me check the system.
Action: verify_hazmat_compliance
Arguments: {"val_o42": {"attr_i17": "type_c", "val_l99": 907, "col_a28": "level_4", "dim_i43": "completed", "dim_t75": "cancelled", "param_v11": "option_e"}, "param_w76": {"val_q94": false, "prop_b99": 819.15, "key_v77": 243, "attr_e79": 918}} | Agent tool call missing required parameter 'col_q94' | {"col_q94":"option_b","val_o42":{"attr_i17":"type_c","val_l99":907,"col_a28":"level_4","dim_i43":"completed","dim_t75":"cancelled","param_v11":"option_e"},"param_w76":{"val_q94":false,"prop_b99":819.15,"key_v77":243,"attr_e79":918}} |
TASK repair_structured_output
SPEC
FIELD key_b80 TYPE string_uri REQUIRED yes
FIELD prop_u27 TYPE number REQUIRED yes
FIELD col_r76.prop_k77 TYPE string_email REQUIRED yes
FIELD col_r76.col_i17 TYPE string VALUES cat_a|cat_b|cat_c|cat_d|cat_e|cat_f REQUIRED no
FIELD col_r76.prop_v45.dim_n25 TYPE null REQUIRED no
FIELD... | {"key_b80":"https://example.org/v1","prop_u27":301.78,"col_r76":{"prop_k77":"test@example.com","col_i17":"cat_c","prop_v45":{"dim_n25":null,"field_l84":236,"dim_l05":"option_b","val_v05":true}}} | unquoted_keys | {
"type": "object",
"properties": {
"key_b80": {
"type": "string",
"format": "uri"
},
"prop_u27": {
"type": "number"
},
"col_r76": {
"type": "object",
"properties": {
"prop_k77": {
"type": "string",
"format": "email"
},
"c... | {key_b80:"https://example.org/v1",prop_u27:301.78,col_r76:{prop_k77:"test@example.com",col_i17:"cat_c",prop_v45:{dim_n25:null,field_l84:236,dim_l05:"option_b",val_v05:true}}} | Expecting property name enclosed in double quotes | {"key_b80":"https://example.org/v1","prop_u27":301.78,"col_r76":{"prop_k77":"test@example.com","col_i17":"cat_c","prop_v45":{"dim_n25":null,"field_l84":236,"dim_l05":"option_b","val_v05":true}}} |
TASK repair_structured_output
SPEC
FIELD yield_pct TYPE boolean REQUIRED yes
FIELD berth_slot TYPE string REQUIRED no
FIELD credit_score TYPE number REQUIRED no
FIELD published TYPE integer REQUIRED no
FIELD message.comments TYPE string VALUES coastal|oceanic|inland|arctic REQUIRED no
FIELD message.bearing TYPE intege... | {"yield_pct":true,"berth_slot":"RTG-04","message":{"comments":"arctic","bearing":338,"procedure_code":537.41,"pressure_kpa":null,"position":[{"vessel_name":"2022-09-12T00:57:00Z","umi":null,"coverage":428,"username":"https://www.org/api","shift_code":26}]}} | markdown_explanation | {
"type": "object",
"properties": {
"yield_pct": {
"type": "boolean"
},
"berth_slot": {
"type": "string"
},
"credit_score": {
"type": "number"
},
"published": {
"type": "integer"
},
"message": {
"type": "object",
"properties": {
"commen... | Sensor output follows:
```json
{"yield_pct":true,"berth_slot":"RTG-04","message":{"comments":"arctic","bearing":338,"procedure_code":537.41,"pressure_kpa":null,"position":[{"vessel_name":"2022-09-12T00:57:00Z","umi":null,"coverage":428,"username":"https://www.org/api","shift_code":26}]}}
```
Feel free to ask if you hav... | Output contains markdown and explanatory text around JSON | {"yield_pct":true,"berth_slot":"RTG-04","message":{"comments":"arctic","bearing":338,"procedure_code":537.41,"pressure_kpa":null,"position":[{"vessel_name":"2022-09-12T00:57:00Z","umi":null,"coverage":428,"username":"https://www.org/api","shift_code":26}]}} |
TASK repair_structured_output
SPEC
FIELD pressure_kpa TYPE string VALUES option_a|option_b|option_c|option_d|option_e REQUIRED no
FIELD status_code TYPE integer REQUIRED yes
FIELD annotation TYPE string_date-time REQUIRED no
FIELD length.credit_score TYPE integer REQUIRED yes
FIELD length.tags TYPE string VALUES level... | {"pressure_kpa":"option_c","status_code":682,"length":{"credit_score":737,"tags":"level_6","compound":"baz","due_date":"level_3","amount":552.5}} | thought_process | {
"type": "object",
"properties": {
"pressure_kpa": {
"type": "string",
"enum": [
"option_a",
"option_b",
"option_c",
"option_d",
"option_e"
]
},
"status_code": {
"type": "integer"
},
"annotation": {
"type": "string",
"f... | I need to create a JSON object that matches the given schema.
Let me make sure all required fields are included.
{"pressure_kpa":"option_c","status_code":682,"length":{"credit_score":737,"tags":"level_6","compound":"baz","due_date":"level_3","amount":552.5}} | Output contains chain-of-thought reasoning before JSON | {"pressure_kpa":"option_c","status_code":682,"length":{"credit_score":737,"tags":"level_6","compound":"baz","due_date":"level_3","amount":552.5}} |
TASK repair_structured_output
SPEC
FIELD updated_at TYPE string VALUES single|married|divorced REQUIRED yes
FIELD status TYPE string VALUES admin|editor|viewer REQUIRED yes
FIELD message TYPE string VALUES berthed|anchored|underway|moored REQUIRED no
FIELD annotation TYPE string VALUES coastal|oceanic|inland|arctic RE... | {"updated_at":"married","status":"viewer","annotation":"coastal"} | tool_call_wrong_param | {
"type": "object",
"properties": {
"updated_at": {
"type": "string",
"enum": [
"single",
"married",
"divorced"
]
},
"status": {
"type": "string",
"enum": [
"admin",
"editor",
"viewer"
]
},
"message": {
"ty... | Tool: lookup_customer
Params: {"updated_at": "married", "annotation": "coastal", "status_new": "viewer"} | Agent used wrong parameter name 'status_new' instead of 'status' | {"updated_at":"married","status":"viewer","annotation":"coastal"} |
TASK repair_structured_output
SPEC
FIELD terminal_id TYPE string REQUIRED no
FIELD cargo_type TYPE integer REQUIRED yes
FIELD date.quality_score TYPE string VALUES berthed|anchored|underway|moored REQUIRED yes
FIELD date.url TYPE string REQUIRED yes
FIELD date.comments.role TYPE string VALUES operational|degraded|offl... | {"terminal_id":"https://api.example.com/v1","cargo_type":122,"date":{"quality_score":"berthed","url":"Tokyo","comments":{"price":721,"tile":"bar","maturity_date":"rejected","department":false},"vessel_name":{"build_status":"enterprise","compound":"GRCh38","item_id":"hello","velocity":"2024-01-19T12:58:00Z"}}} | missing_required | {
"type": "object",
"properties": {
"terminal_id": {
"type": "string"
},
"cargo_type": {
"type": "integer"
},
"date": {
"type": "object",
"properties": {
"quality_score": {
"type": "string",
"enum": [
"berthed",
"anchore... | {"terminal_id": "https://api.example.com/v1", "date": {"quality_score": "berthed", "url": "Tokyo", "comments": {"price": 721, "tile": "bar", "maturity_date": "rejected", "department": false}, "vessel_name": {"build_status": "enterprise", "compound": "GRCh38", "item_id": "hello", "velocity": "2024-01-19T12:58:00Z"}}} | Required field 'cargo_type' is missing | {"terminal_id":"https://api.example.com/v1","cargo_type":122,"date":{"quality_score":"berthed","url":"Tokyo","comments":{"price":721,"tile":"bar","maturity_date":"rejected","department":false},"vessel_name":{"build_status":"enterprise","compound":"GRCh38","item_id":"hello","velocity":"2024-01-19T12:58:00Z"}}} |
TASK repair_structured_output
SPEC
FIELD options TYPE string VALUES active|inactive|pending REQUIRED yes
FIELD payment_status TYPE string VALUES operational|degraded|offline|maintenance REQUIRED no
FIELD balance TYPE string REQUIRED yes
FIELD compound TYPE string_email REQUIRED yes
FIELD footnote[].feedback TYPE strin... | {"options":"inactive","payment_status":"operational","balance":"example","compound":"user@example.com","footnote":[{"chapter":"resolved"},{"chapter":"open"}],"due_date":[{"company":"MV-Evergreen-01","status":278.97,"size":"RTG-04","full_name":"red","count":589,"subject":"2023-12-25"}]} | extra_field | {
"type": "object",
"properties": {
"options": {
"type": "string",
"enum": [
"active",
"inactive",
"pending"
]
},
"payment_status": {
"type": "string",
"enum": [
"operational",
"degraded",
"offline",
"maintenance"
... | {"options": "inactive", "payment_status": "operational", "balance": "example", "compound": "user@example.com", "footnote": [{"chapter": "resolved"}, {"chapter": "open"}], "due_date": [{"company": "MV-Evergreen-01", "status": 278.97, "size": "RTG-04", "full_name": "red", "count": 589, "subject": "2023-12-25"}], "extra_i... | Unknown field 'extra_info_5227' not defined in schema | {"options":"inactive","payment_status":"operational","balance":"example","compound":"user@example.com","footnote":[{"chapter":"resolved"},{"chapter":"open"}],"due_date":[{"company":"MV-Evergreen-01","status":278.97,"size":"RTG-04","full_name":"red","count":589,"subject":"2023-12-25"}]} |
TASK repair_structured_output
SPEC
FIELD shipping TYPE string VALUES operational|degraded|offline|maintenance REQUIRED no
FIELD step TYPE string VALUES synonymous|missense|nonsense|frameshift REQUIRED no
FIELD organism TYPE string VALUES open|in_progress|resolved|closed REQUIRED no
FIELD loan_amount TYPE null REQUIRED... | {"shipping":"offline","organism":"closed","loan_amount":null} | tool_call_partial_args | {
"type": "object",
"properties": {
"shipping": {
"type": "string",
"enum": [
"operational",
"degraded",
"offline",
"maintenance"
]
},
"step": {
"type": "string",
"enum": [
"synonymous",
"missense",
"nonsense",
... | Let me check the system.
Action: call_variants
Arguments: {"shipping": "offline", "organism": "closed"} | Agent tool call missing required parameter 'loan_amount' | {"shipping":"offline","organism":"closed","loan_amount":null} |
TASK repair_structured_output
SPEC
FIELD version TYPE number REQUIRED no
FIELD image_url TYPE string_email REQUIRED no
FIELD allele TYPE number REQUIRED no
FIELD current_draw TYPE string VALUES low|medium|high|critical REQUIRED yes
FIELD isotope TYPE string VALUES cat_a|cat_b|cat_c REQUIRED no
FIELD longitude TYPE str... | {"version":740.87,"image_url":"ops@domain.org","allele":429.87,"current_draw":"medium","longitude":"https://example.com/v1","date":{"organism":"delivered","phone":"option_b","subtotal":"https://example.io/v1","start_date":{"username":"demo","medication":498.5,"status":"phone","zip_code":true},"weight":"MV-Evergreen-01"... | truncated_array | {
"type": "object",
"properties": {
"version": {
"type": "number"
},
"image_url": {
"type": "string",
"format": "email"
},
"allele": {
"type": "number"
},
"current_draw": {
"type": "string",
"enum": [
"low",
"medium",
"high",
... | {"version":740.87,"image_url":"ops@domain.org","allele":429.87,"current_draw":"medium","longitude":"https://example.com/v1","date":{"organism":"delivered","phone":"option_b","subtotal":"https://example.io/v1","start_date":{"username":"demo","medication":498.5,"status":"phone","zip_code":true},"weight":"MV-Evergreen-01"... | Unexpected end of JSON input — truncated object | {"version":740.87,"image_url":"ops@domain.org","allele":429.87,"current_draw":"medium","longitude":"https://example.com/v1","date":{"organism":"delivered","phone":"option_b","subtotal":"https://example.io/v1","start_date":{"username":"demo","medication":498.5,"status":"phone","zip_code":true},"weight":"MV-Evergreen-01"... |
TASK repair_structured_output
SPEC
FIELD key_j44 TYPE string REQUIRED yes
FIELD dim_d51 TYPE integer REQUIRED yes
FIELD prop_m86 TYPE string REQUIRED no
FIELD param_z02 TYPE number REQUIRED yes
BROKEN_OUTPUT
{"dim_d51": 289, "param_z02": 535.09} | {"key_j44":"2024-06-30","dim_d51":289,"param_z02":535.09} | missing_required | {
"type": "object",
"properties": {
"key_j44": {
"type": "string"
},
"dim_d51": {
"type": "integer"
},
"prop_m86": {
"type": "string"
},
"param_z02": {
"type": "number"
}
},
"required": [
"param_z02",
"key_j44",
"dim_d51"
]
} | {"dim_d51": 289, "param_z02": 535.09} | Required field 'key_j44' is missing | {"key_j44":"2024-06-30","dim_d51":289,"param_z02":535.09} |
TASK repair_structured_output
SPEC
FIELD attr_i80 TYPE string REQUIRED yes
FIELD param_g69 TYPE string VALUES USD|EUR|GBP|BRL|JPY REQUIRED no
FIELD prop_v10 TYPE string_uri REQUIRED no
FIELD key_s82 TYPE integer REQUIRED yes
FIELD dim_u60[].key_m46 TYPE string VALUES homozygous|heterozygous|hemizygous REQUIRED yes
FIE... | {"attr_i80":"MV-Evergreen-01","param_g69":"USD","key_s82":460,"prop_p74":[{"field_t22":"London","param_q14":"https://www.com/v1","val_w01":196,"val_j09":73},{"param_q14":"https://data.org/api"},{"field_t22":"Jane","param_q14":"https://data.io/api","val_j09":224},{"field_t22":"Bob","param_q14":"https://example.com/v1","... | tool_call_python_syntax | {
"type": "object",
"properties": {
"attr_i80": {
"type": "string"
},
"param_g69": {
"type": "string",
"enum": [
"USD",
"EUR",
"GBP",
"BRL",
"JPY"
]
},
"prop_v10": {
"type": "string",
"format": "uri"
},
"key_s82"... | track_vessel(attr_i80='MV-Evergreen-01', param_g69='USD', key_s82=460, prop_p74=[{'field_t22': 'London', 'param_q14': 'https://www.com/v1', 'val_w01': 196, 'val_j09': 73}, {'param_q14': 'https://data.org/api'}, {'field_t22': 'Jane', 'param_q14': 'https://data.io/api', 'val_j09': 224}, {'field_t22': 'Bob', 'param_q14': ... | Tool call uses Python syntax instead of JSON | {"attr_i80":"MV-Evergreen-01","param_g69":"USD","key_s82":460,"prop_p74":[{"field_t22":"London","param_q14":"https://www.com/v1","val_w01":196,"val_j09":73},{"param_q14":"https://data.org/api"},{"field_t22":"Jane","param_q14":"https://data.io/api","val_j09":224},{"field_t22":"Bob","param_q14":"https://example.com/v1","... |
TASK repair_structured_output
SPEC
FIELD key_k33 TYPE string REQUIRED no
FIELD attr_c13 TYPE integer REQUIRED no
FIELD dim_r00[] TYPE string REQUIRED yes
BROKEN_OUTPUT
```json
{"key_k33":"bar","dim_r00":["2024-06-30","John","baz","Silva"]}
``` | {"key_k33":"bar","dim_r00":["2024-06-30","John","baz","Silva"]} | markdown_fences | {
"type": "object",
"properties": {
"key_k33": {
"type": "string"
},
"attr_c13": {
"type": "integer"
},
"dim_r00": {
"type": "array",
"items": {
"type": "string"
}
}
},
"required": [
"dim_r00"
]
} | ```json
{"key_k33":"bar","dim_r00":["2024-06-30","John","baz","Silva"]}
``` | Output contains markdown code fences | {"key_k33":"bar","dim_r00":["2024-06-30","John","baz","Silva"]} |
TASK repair_structured_output
SPEC
FIELD param_j26 TYPE number REQUIRED yes
FIELD param_o53 TYPE string_uri REQUIRED no
FIELD attr_i54[].param_k65 TYPE string_date-time REQUIRED yes
FIELD attr_i54[].key_f86 TYPE boolean REQUIRED no
FIELD attr_i54[].field_u02 TYPE array REQUIRED yes
FIELD attr_i54[].val_i35 TYPE array ... | {"param_j26":697.32,"param_o53":"https://api.io/v1","attr_i54":[{"param_k65":"2024-10-19T01:10:00Z","key_f86":false,"field_u02":["push"],"val_i35":[93.92,397.53]}],"key_l75":["2023-12-25","chrX","Sao Paulo","Silva"]} | extra_field | {
"type": "object",
"properties": {
"param_j26": {
"type": "number"
},
"param_o53": {
"type": "string",
"format": "uri"
},
"attr_i54": {
"type": "array",
"items": {
"type": "object",
"properties": {
"param_k65": {
"type": "strin... | {"param_j26": 697.32, "param_o53": "https://api.io/v1", "attr_i54": [{"param_k65": "2024-10-19T01:10:00Z", "key_f86": false, "field_u02": ["push"], "val_i35": [93.92, 397.53]}], "key_l75": ["2023-12-25", "chrX", "Sao Paulo", "Silva"], "extra_info_8117": 42} | Unknown field 'extra_info_8117' not defined in schema | {"param_j26":697.32,"param_o53":"https://api.io/v1","attr_i54":[{"param_k65":"2024-10-19T01:10:00Z","key_f86":false,"field_u02":["push"],"val_i35":[93.92,397.53]}],"key_l75":["2023-12-25","chrX","Sao Paulo","Silva"]} |
TASK repair_structured_output
SPEC
FIELD paragraph TYPE string VALUES free|basic|pro|enterprise REQUIRED no
FIELD transaction_id TYPE string REQUIRED yes
FIELD ph_level TYPE string VALUES small|medium|large|xl REQUIRED yes
FIELD full_name TYPE string REQUIRED yes
FIELD score.total TYPE string VALUES draft|published|ar... | {"paragraph":"free","transaction_id":"John","ph_level":"xl","full_name":"Tokyo","score":{"title":202,"weight":[182.87,871.38],"insurance_id":[995,493]},"feedback":{"user_id":"large","first_name":538.58,"umi":"Bob","zip_code":"info@test.io"}} | agent_chain | {
"type": "object",
"properties": {
"paragraph": {
"type": "string",
"enum": [
"free",
"basic",
"pro",
"enterprise"
]
},
"transaction_id": {
"type": "string"
},
"ph_level": {
"type": "string",
"enum": [
"small",
... | I need to look up the information first.
Action: validate_address
Result: {"paragraph": "free", "transaction_id": "John", "ph_level": "xl", "score": {"title": 202, "weight": [182.87, 871.38], "insurance_id": [995, 493]}, "feedback": {"user_id": "large", "first_name": 538.58, "umi": "Bob", "zip_code": "info@test.io"}}
... | Agent multi-step chain with truncated tool output | {"paragraph":"free","transaction_id":"John","ph_level":"xl","full_name":"Tokyo","score":{"title":202,"weight":[182.87,871.38],"insurance_id":[995,493]},"feedback":{"user_id":"large","first_name":538.58,"umi":"Bob","zip_code":"info@test.io"}} |
TASK repair_structured_output
SPEC
FIELD key_d52 TYPE integer REQUIRED yes
FIELD field_t71 TYPE string VALUES cat_a|cat_b REQUIRED yes
FIELD val_q00 TYPE number REQUIRED yes
FIELD key_n68 TYPE integer REQUIRED yes
BROKEN_OUTPUT
```json
{"key_d52":736,"field_t71":"cat_b","val_q00":612.49,"key_n68":85}
``` | {"key_d52":736,"field_t71":"cat_b","val_q00":612.49,"key_n68":85} | markdown_fences | {
"type": "object",
"properties": {
"key_d52": {
"type": "integer"
},
"field_t71": {
"type": "string",
"enum": [
"cat_a",
"cat_b"
]
},
"val_q00": {
"type": "number"
},
"key_n68": {
"type": "integer"
}
},
"required": [
"key_n... | ```json
{"key_d52":736,"field_t71":"cat_b","val_q00":612.49,"key_n68":85}
``` | Output contains markdown code fences | {"key_d52":736,"field_t71":"cat_b","val_q00":612.49,"key_n68":85} |
TASK repair_structured_output
SPEC
FIELD longitude TYPE string_date-time REQUIRED no
FIELD position TYPE string REQUIRED no
FIELD diagnosis_code TYPE string VALUES operational|degraded|offline|maintenance REQUIRED yes
FIELD tax TYPE string VALUES operational|degraded|offline|maintenance REQUIRED no
FIELD role TYPE int... | {"longitude":"2025-06-10T21:21:00Z","position":"QC-07","diagnosis_code":"operational","role":541,"visible":677} | markdown_explanation | {
"type": "object",
"properties": {
"longitude": {
"type": "string",
"format": "date-time"
},
"position": {
"type": "string"
},
"diagnosis_code": {
"type": "string",
"enum": [
"operational",
"degraded",
"offline",
"maintenance"
... | Below is the JSON object:
```json
{"longitude":"2025-06-10T21:21:00Z","position":"QC-07","diagnosis_code":"operational","role":541,"visible":677}
```
Feel free to ask if you have questions. | Output contains markdown and explanatory text around JSON | {"longitude":"2025-06-10T21:21:00Z","position":"QC-07","diagnosis_code":"operational","role":541,"visible":677} |
TASK repair_structured_output
SPEC
FIELD prop_c28 TYPE boolean REQUIRED yes
FIELD col_q05 TYPE string REQUIRED no
FIELD prop_x19 TYPE string REQUIRED no
FIELD key_f26 TYPE boolean REQUIRED yes
FIELD param_u10 TYPE string REQUIRED yes
FIELD param_b74 TYPE string VALUES berthed|anchored|underway|moored REQUIRED yes
BRO... | {"prop_c28":false,"col_q05":"chrX","key_f26":true,"param_u10":"cancelled","param_b74":"underway"} | markdown_fences | {
"type": "object",
"properties": {
"prop_c28": {
"type": "boolean"
},
"col_q05": {
"type": "string"
},
"prop_x19": {
"type": "string"
},
"key_f26": {
"type": "boolean"
},
"param_u10": {
"type": "string"
},
"param_b74": {
"type": "strin... | ```json
{"prop_c28":false,"col_q05":"chrX","key_f26":true,"param_u10":"cancelled","param_b74":"underway"}
``` | Output contains markdown code fences | {"prop_c28":false,"col_q05":"chrX","key_f26":true,"param_u10":"cancelled","param_b74":"underway"} |
TASK repair_structured_output
SPEC
FIELD repository TYPE string REQUIRED no
FIELD bed_number TYPE number REQUIRED no
FIELD score.start_date TYPE string VALUES berthed|anchored|underway|moored REQUIRED no
FIELD score.catalyst TYPE string REQUIRED yes
FIELD score.paragraph.product_id TYPE string VALUES level_1|level_2|l... | {"repository":"Hapag-Lloyd-Express","score":{"catalyst":"REV","filter_flag":true},"medication":true,"yield_pct":843,"coverage":"user@test.io"} | tool_call_wrong_param | {
"type": "object",
"properties": {
"repository": {
"type": "string"
},
"bed_number": {
"type": "number"
},
"score": {
"type": "object",
"properties": {
"start_date": {
"type": "string",
"enum": [
"berthed",
"anchored",
... | Tool: schedule_meeting
Params: {"repository": "Hapag-Lloyd-Express", "medication": true, "yield_pct": 843, "coverage": "user@test.io", "score_name": {"catalyst": "REV", "filter_flag": true}} | Agent used wrong parameter name 'score_name' instead of 'score' | {"repository":"Hapag-Lloyd-Express","score":{"catalyst":"REV","filter_flag":true},"medication":true,"yield_pct":843,"coverage":"user@test.io"} |
TASK repair_structured_output
SPEC
FIELD prop_l43.val_x92 TYPE null REQUIRED yes
FIELD prop_l43.val_u60 TYPE string VALUES mode_a|mode_b REQUIRED yes
FIELD prop_l43.attr_w26 TYPE string VALUES level_1|level_2|level_3|level_4|level_5 REQUIRED no
FIELD prop_l43.key_r40 TYPE integer REQUIRED no
FIELD prop_l43.attr_v37[] ... | {"prop_l43":{"val_x92":null,"val_u60":"mode_a","attr_w26":"level_1","key_r40":106,"attr_v37":["MV-Evergreen-01"]},"prop_g81":276.25,"key_d64":333,"dim_i04":"RTG-04","prop_z99":"pro"} | thought_process | {
"type": "object",
"properties": {
"prop_l43": {
"type": "object",
"properties": {
"val_x92": {
"type": "null"
},
"val_u60": {
"type": "string",
"enum": [
"mode_a",
"mode_b"
]
},
"attr_w26": {
... | Analyzing the sensor data to generate the output.
I'll apply the required format first.
{"prop_l43":{"val_x92":null,"val_u60":"mode_a","attr_w26":"level_1","key_r40":106,"attr_v37":["MV-Evergreen-01"]},"prop_g81":276.25,"key_d64":333,"dim_i04":"RTG-04","prop_z99":"pro"} | Output contains chain-of-thought reasoning before JSON | {"prop_l43":{"val_x92":null,"val_u60":"mode_a","attr_w26":"level_1","key_r40":106,"attr_v37":["MV-Evergreen-01"]},"prop_g81":276.25,"key_d64":333,"dim_i04":"RTG-04","prop_z99":"pro"} |
TASK repair_structured_output
SPEC
FIELD key_a58 TYPE string_date-time REQUIRED no
FIELD col_i01 TYPE string VALUES pending_review|confirmed|rejected|escalated REQUIRED yes
FIELD attr_p45 TYPE string VALUES berthed|anchored|underway|moored REQUIRED no
FIELD param_l32 TYPE string VALUES draft|published|archived REQUIRE... | {"col_i01":"escalated","attr_p45":"berthed","val_q23":{"prop_c29":null,"key_p80":169,"param_w00":653,"prop_o27":{"val_c10":"blue","val_d97":"admin","col_k27":"heterozygous"}},"attr_i40":{"dim_q10":"https://www.io/data","param_o10":{"param_x97":"enterprise","val_i33":"demo","key_l24":216,"attr_g24":493.81,"attr_s56":"ne... | extra_field | {
"type": "object",
"properties": {
"key_a58": {
"type": "string",
"format": "date-time"
},
"col_i01": {
"type": "string",
"enum": [
"pending_review",
"confirmed",
"rejected",
"escalated"
]
},
"attr_p45": {
"type": "string",
... | {"col_i01": "escalated", "attr_p45": "berthed", "val_q23": {"prop_c29": null, "key_p80": 169, "param_w00": 653, "prop_o27": {"val_c10": "blue", "val_d97": "admin", "col_k27": "heterozygous"}}, "attr_i40": {"dim_q10": "https://www.io/data", "param_o10": {"param_x97": "enterprise", "val_i33": "demo", "key_l24": 216, "att... | Unknown field 'extra_info_4676' not defined in schema | {"col_i01":"escalated","attr_p45":"berthed","val_q23":{"prop_c29":null,"key_p80":169,"param_w00":653,"prop_o27":{"val_c10":"blue","val_d97":"admin","col_k27":"heterozygous"}},"attr_i40":{"dim_q10":"https://www.io/data","param_o10":{"param_x97":"enterprise","val_i33":"demo","key_l24":216,"attr_g24":493.81,"attr_s56":"ne... |
TASK repair_structured_output
SPEC
FIELD attr_s99 TYPE string REQUIRED no
FIELD col_y67 TYPE string REQUIRED yes
FIELD prop_x98 TYPE number REQUIRED no
BROKEN_OUTPUT
Let me check the system.
Action: annotate_mutation
Arguments: {"attr_s99": "Sao Paulo", "prop_x98": 181.2} | {"attr_s99":"Sao Paulo","col_y67":"Alice","prop_x98":181.2} | tool_call_partial_args | {
"type": "object",
"properties": {
"attr_s99": {
"type": "string"
},
"col_y67": {
"type": "string"
},
"prop_x98": {
"type": "number"
}
},
"required": [
"col_y67"
]
} | Let me check the system.
Action: annotate_mutation
Arguments: {"attr_s99": "Sao Paulo", "prop_x98": 181.2} | Agent tool call missing required parameter 'col_y67' | {"attr_s99":"Sao Paulo","col_y67":"Alice","prop_x98":181.2} |
TASK repair_structured_output
SPEC
FIELD col_t86 TYPE boolean REQUIRED no
FIELD val_t64 TYPE integer REQUIRED no
FIELD key_g19[].col_d01 TYPE string_uri REQUIRED no
FIELD key_g19[].param_j46 TYPE boolean REQUIRED no
FIELD key_g19[].val_q14 TYPE string REQUIRED yes
FIELD key_g19[].dim_s70 TYPE string VALUES operational... | {"val_t64":680,"key_g19":[{"param_j46":true,"val_q14":"RTG-04","dim_s70":"maintenance","attr_i78":260,"col_w79":"returned","dim_y92":"approved"},{"val_q14":"Maria","dim_s70":"offline","attr_i78":88}]} | unquoted_keys | {
"type": "object",
"properties": {
"col_t86": {
"type": "boolean"
},
"val_t64": {
"type": "integer"
},
"key_g19": {
"type": "array",
"items": {
"type": "object",
"properties": {
"col_d01": {
"type": "string",
"format": "u... | {val_t64:680,key_g19:[{param_j46:true,val_q14:"RTG-04",dim_s70:"maintenance",attr_i78:260,col_w79:"returned",dim_y92:"approved"},{val_q14:"Maria",dim_s70:"offline",attr_i78:88}]} | Expecting property name enclosed in double quotes | {"val_t64":680,"key_g19":[{"param_j46":true,"val_q14":"RTG-04","dim_s70":"maintenance","attr_i78":260,"col_w79":"returned","dim_y92":"approved"},{"val_q14":"Maria","dim_s70":"offline","attr_i78":88}]} |
TASK repair_structured_output
SPEC
FIELD key_u20 TYPE string VALUES level_1|level_2 REQUIRED no
FIELD prop_c32 TYPE string REQUIRED no
FIELD key_o74 TYPE boolean REQUIRED yes
FIELD dim_b09 TYPE string REQUIRED no
FIELD field_n49 TYPE boolean REQUIRED no
FIELD dim_b50 TYPE string VALUES level_1|level_2|level_3|level_4|... | {"key_u20":"level_2","prop_c32":"New York","key_o74":true,"dim_b09":"Maria","dim_b50":"level_1"} | partial_structure | {
"type": "object",
"properties": {
"key_u20": {
"type": "string",
"enum": [
"level_1",
"level_2"
]
},
"prop_c32": {
"type": "string"
},
"key_o74": {
"type": "boolean"
},
"dim_b09": {
"type": "string"
},
"field_n49": {
"ty... | Result: dim_b09=Maria, {"key_u20":"level_2","prop_c32":"New York","key_o74":true,"dim_b09":"Maria","dim_b50":"level_1"} | Output mixes natural language with JSON | {"key_u20":"level_2","prop_c32":"New York","key_o74":true,"dim_b09":"Maria","dim_b50":"level_1"} |
TASK repair_structured_output
SPEC
FIELD param_r98 TYPE string_date-time REQUIRED no
FIELD attr_t84 TYPE string_date-time REQUIRED no
FIELD field_o67 TYPE integer REQUIRED no
FIELD attr_j07 TYPE string_date-time REQUIRED no
FIELD field_k03 TYPE null REQUIRED no
FIELD attr_e86 TYPE string REQUIRED yes
FIELD col_b51 TYP... | {"attr_t84":"2025-02-02T11:04:00Z","field_o67":30,"attr_j07":"2026-07-23T05:41:00Z","field_k03":null,"attr_e86":"2023-12-25","col_b51":"type_f"} | tool_call_python_syntax | {
"type": "object",
"properties": {
"param_r98": {
"type": "string",
"format": "date-time"
},
"attr_t84": {
"type": "string",
"format": "date-time"
},
"field_o67": {
"type": "integer"
},
"attr_j07": {
"type": "string",
"format": "date-time"
}... | track_vessel(attr_t84='2025-02-02T11:04:00Z', field_o67=30, attr_j07='2026-07-23T05:41:00Z', field_k03=None, attr_e86='2023-12-25', col_b51='type_f') | Tool call uses Python syntax instead of JSON | {"attr_t84":"2025-02-02T11:04:00Z","field_o67":30,"attr_j07":"2026-07-23T05:41:00Z","field_k03":null,"attr_e86":"2023-12-25","col_b51":"type_f"} |
TASK repair_structured_output
SPEC
FIELD attr_u69 TYPE string VALUES USD|EUR|GBP|BRL|JPY REQUIRED yes
FIELD key_g10.attr_e24 TYPE string VALUES synonymous|missense|nonsense|frameshift REQUIRED no
FIELD key_g10.field_o50 TYPE string VALUES open|in_progress|resolved|closed REQUIRED yes
FIELD key_g10.val_u81 TYPE string ... | {"attr_u69":"BRL","key_g10":{"attr_e24":"synonymous","field_o50":"in_progress","val_p31":null,"dim_g57":"pro"},"prop_t54":224,"param_w89":622,"key_j13":true} | tool_call_bad_format | {
"type": "object",
"properties": {
"attr_u69": {
"type": "string",
"enum": [
"USD",
"EUR",
"GBP",
"BRL",
"JPY"
]
},
"key_g10": {
"type": "object",
"properties": {
"attr_e24": {
"type": "string",
"enum": [
... | <functioncall> calibrate_instrument
{attr_u69: "BRL", key_g10: {attr_e24: "synonymous", field_o50: "in_progress", val_p31: null, dim_g57: "pro"}, prop_t54: 224, param_w89: 622, key_j13: true} | Tool call has malformed arguments — unquoted keys in function parameters | {"attr_u69":"BRL","key_g10":{"attr_e24":"synonymous","field_o50":"in_progress","val_p31":null,"dim_g57":"pro"},"prop_t54":224,"param_w89":622,"key_j13":true} |
TASK repair_structured_output
SPEC
FIELD dim_h10.attr_n27 TYPE number REQUIRED yes
FIELD dim_h10.col_l80.key_y04 TYPE boolean REQUIRED no
FIELD dim_h10.col_l80.param_a36 TYPE string VALUES success|error|warning|info REQUIRED yes
FIELD dim_h10.col_l80.prop_v79[] TYPE string REQUIRED no
FIELD dim_h10.col_l80.param_r81[]... | {"dim_h10":{"attr_n27":258.6,"col_l80":{"key_y04":false,"param_a36":"warning","param_r81":[true,false,true]},"val_d76":363,"dim_d34":{"prop_c55":null,"param_b17":"foo","field_l08":260.32},"col_r41":210},"key_q77":"baz","key_p66":"test@test.io"} | thought_process | {
"type": "object",
"properties": {
"dim_h10": {
"type": "object",
"properties": {
"attr_n27": {
"type": "number"
},
"col_l80": {
"type": "object",
"properties": {
"key_y04": {
"type": "boolean"
},
... | Breaking down the requirements:
- Must include all required fields
- Types must match the schema
- Values should be realistic
{"dim_h10":{"attr_n27":258.6,"col_l80":{"key_y04":false,"param_a36":"warning","param_r81":[true,false,true]},"val_d76":363,"dim_d34":{"prop_c55":null,"param_b17":"foo","field_l08":260.32},"col... | Output contains chain-of-thought reasoning before JSON | {"dim_h10":{"attr_n27":258.6,"col_l80":{"key_y04":false,"param_a36":"warning","param_r81":[true,false,true]},"val_d76":363,"dim_d34":{"prop_c55":null,"param_b17":"foo","field_l08":260.32},"col_r41":210},"key_q77":"baz","key_p66":"test@test.io"} |
TASK repair_structured_output
SPEC
FIELD col_j84 TYPE integer REQUIRED yes
FIELD field_m88 TYPE string REQUIRED no
FIELD dim_v08 TYPE string REQUIRED no
FIELD val_y91[] TYPE integer REQUIRED yes
BROKEN_OUTPUT
"col_j84":325,"field_m88":"active","dim_v08":"https://api.example.com/v1","val_y91":[314]} | {"col_j84":325,"field_m88":"active","dim_v08":"https://api.example.com/v1","val_y91":[314]} | missing_brace | {
"type": "object",
"properties": {
"col_j84": {
"type": "integer"
},
"field_m88": {
"type": "string"
},
"dim_v08": {
"type": "string"
},
"val_y91": {
"type": "array",
"items": {
"type": "integer"
}
}
},
"required": [
"col_j84",
... | "col_j84":325,"field_m88":"active","dim_v08":"https://api.example.com/v1","val_y91":[314]} | Missing closing brace | {"col_j84":325,"field_m88":"active","dim_v08":"https://api.example.com/v1","val_y91":[314]} |
TASK repair_structured_output
SPEC
FIELD param_d58 TYPE string REQUIRED yes
FIELD dim_t31 TYPE string REQUIRED no
FIELD param_m67.col_v14 TYPE string REQUIRED no
FIELD param_m67.param_v72 TYPE number REQUIRED yes
FIELD param_m67.param_y31 TYPE boolean REQUIRED no
FIELD param_m67.attr_o36 TYPE boolean REQUIRED yes
FIEL... | {"param_d58":"pending","dim_t31":"Maria","val_x17":"This is a test value.","key_m73":362.94,"param_u49":"https://www.org/v1"} | unquoted_keys | {
"type": "object",
"properties": {
"param_d58": {
"type": "string"
},
"dim_t31": {
"type": "string"
},
"param_m67": {
"type": "object",
"properties": {
"col_v14": {
"type": "string"
},
"param_v72": {
"type": "number"
},... | {param_d58:"pending",dim_t31:"Maria",val_x17:"This is a test value.",key_m73:362.94,param_u49:"https://www.org/v1"} | Expecting property name enclosed in double quotes | {"param_d58":"pending","dim_t31":"Maria","val_x17":"This is a test value.","key_m73":362.94,"param_u49":"https://www.org/v1"} |
TASK repair_structured_output
SPEC
FIELD col_k26 TYPE integer REQUIRED yes
FIELD prop_e18.key_p34 TYPE integer REQUIRED no
FIELD prop_e18.col_o03 TYPE number REQUIRED no
FIELD prop_e18.col_h41 TYPE string VALUES option_a|option_b REQUIRED yes
FIELD prop_e18.prop_n61 TYPE boolean REQUIRED no
FIELD prop_e18.field_t68[].... | {"col_k26":466,"prop_e18":{"key_p34":388,"col_h41":"option_b","prop_n61":false,"field_t68":[{"param_v00":"cat_b","col_b46":"level_3","field_v06":"level_5","dim_m85":"cat_b"}]},"col_z10":{"attr_j78":"moored","dim_h44":615,"col_p40":[{"key_g51":"new","prop_m04":904,"field_v87":"PASS","prop_s61":"2025-12-11T14:37:00Z","fi... | truncated_array | {
"type": "object",
"properties": {
"col_k26": {
"type": "integer"
},
"prop_e18": {
"type": "object",
"properties": {
"key_p34": {
"type": "integer"
},
"col_o03": {
"type": "number"
},
"col_h41": {
"type": "string",
... | {"col_k26":466,"prop_e18":{"key_p34":388,"col_h41":"option_b","prop_n61":false,"field_t68":[{"param_v00":"cat_b","col_b46":"level_3","field_v06":"level_5","dim_m85":"cat_b"}]},"col_z10":{"attr_j78":"moored","dim_h44":615,"col_p40":[{"key_g51":"new","prop_m04":904,"field_v87":"PASS","prop_s61":"2025-12-11T14:37:00Z","fi... | Unexpected end of JSON input — truncated object | {"col_k26":466,"prop_e18":{"key_p34":388,"col_h41":"option_b","prop_n61":false,"field_t68":[{"param_v00":"cat_b","col_b46":"level_3","field_v06":"level_5","dim_m85":"cat_b"}]},"col_z10":{"attr_j78":"moored","dim_h44":615,"col_p40":[{"key_g51":"new","prop_m04":904,"field_v87":"PASS","prop_s61":"2025-12-11T14:37:00Z","fi... |
TASK repair_structured_output
SPEC
FIELD gene_id TYPE string_date-time REQUIRED yes
FIELD length TYPE string REQUIRED no
FIELD name TYPE string VALUES type_a|type_b|type_c REQUIRED yes
FIELD country TYPE number REQUIRED no
FIELD order_id TYPE string REQUIRED yes
FIELD deploy_target.diagnosis_code TYPE string VALUES sy... | {"gene_id":"2023-03-16T05:30:00Z","length":"Smith","name":"type_c","country":239.5,"order_id":"Oliveira","deploy_target":{"annotation":"2025-06-16T01:31:00Z","coverage":766,"turbidity":811.01,"score":"https://www.org/v1"}} | missing_bracket | {
"type": "object",
"properties": {
"gene_id": {
"type": "string",
"format": "date-time"
},
"length": {
"type": "string"
},
"name": {
"type": "string",
"enum": [
"type_a",
"type_b",
"type_c"
]
},
"country": {
"type": "numb... | {"gene_id":"2023-03-16T05:30:00Z","length":"Smith","name":"type_c","country":239.5,"order_id":"Oliveira","deploy_target":{"annotation":"2025-06-16T01:31:00Z","coverage":766,"turbidity":811.01,"score":"https://www.org/v1"}} | Missing closing bracket | {"gene_id":"2023-03-16T05:30:00Z","length":"Smith","name":"type_c","country":239.5,"order_id":"Oliveira","deploy_target":{"annotation":"2025-06-16T01:31:00Z","coverage":766,"turbidity":811.01,"score":"https://www.org/v1"}} |
TASK repair_structured_output
SPEC
FIELD strand TYPE integer REQUIRED yes
FIELD temp_celsius TYPE string REQUIRED yes
FIELD insurance_id TYPE boolean REQUIRED no
BROKEN_OUTPUT
Pipeline result:
{"strand":538,"temp_celsius":"GRCh38"} | {"strand":538,"temp_celsius":"GRCh38"} | extra_text_before | {
"type": "object",
"properties": {
"strand": {
"type": "integer"
},
"temp_celsius": {
"type": "string"
},
"insurance_id": {
"type": "boolean"
}
},
"required": [
"strand",
"temp_celsius"
]
} | Pipeline result:
{"strand":538,"temp_celsius":"GRCh38"} | Output contains non-JSON text before the object | {"strand":538,"temp_celsius":"GRCh38"} |
TASK repair_structured_output
SPEC
FIELD val_d27 TYPE string VALUES homozygous|heterozygous|hemizygous REQUIRED yes
FIELD field_j09 TYPE string VALUES level_1|level_2|level_3|level_4|level_5 REQUIRED no
FIELD val_y55 TYPE string VALUES mode_a|mode_b|mode_c|mode_d|mode_e|mode_f REQUIRED yes
FIELD dim_l87 TYPE string VA... | {"val_d27":"hemizygous","field_j09":"level_4","val_y55":"mode_b","dim_l87":"type_c"} | invalid_enum | {
"type": "object",
"properties": {
"val_d27": {
"type": "string",
"enum": [
"homozygous",
"heterozygous",
"hemizygous"
]
},
"field_j09": {
"type": "string",
"enum": [
"level_1",
"level_2",
"level_3",
"level_4",
... | {"val_d27": "hemizygous", "field_j09": "invalid_choice_993", "val_y55": "mode_b", "dim_l87": "type_c"} | Field 'field_j09' has invalid enum value 'invalid_choice_993', expected one of ['level_1', 'level_2', 'level_3', 'level_4', 'level_5'] | {"val_d27":"hemizygous","field_j09":"level_4","val_y55":"mode_b","dim_l87":"type_c"} |
TASK repair_structured_output
SPEC
FIELD current_draw TYPE string_email REQUIRED yes
FIELD length TYPE string REQUIRED yes
FIELD torque_output TYPE string REQUIRED no
FIELD frequency_hz TYPE integer REQUIRED yes
FIELD deploy_target.due_date TYPE string REQUIRED yes
FIELD deploy_target.diagnosis_code.fleet_number TYPE ... | {"current_draw":"user@example.com","length":"Silva","frequency_hz":497,"deploy_target":{"due_date":"Santos","diagnosis_code":{"fleet_number":"GBP","total":632.74,"id":"world","first_name":"John","state":"confirmed","amplitude":"medium"}}} | tool_call_python_syntax | {
"type": "object",
"properties": {
"current_draw": {
"type": "string",
"format": "email"
},
"length": {
"type": "string"
},
"torque_output": {
"type": "string"
},
"frequency_hz": {
"type": "integer"
},
"deploy_target": {
"type": "object",
... | call_variants(current_draw='user@example.com', length='Silva', frequency_hz=497, deploy_target={'due_date': 'Santos', 'diagnosis_code': {'fleet_number': 'GBP', 'total': 632.74, 'id': 'world', 'first_name': 'John', 'state': 'confirmed', 'amplitude': 'medium'}}) | Tool call uses Python syntax instead of JSON | {"current_draw":"user@example.com","length":"Silva","frequency_hz":497,"deploy_target":{"due_date":"Santos","diagnosis_code":{"fleet_number":"GBP","total":632.74,"id":"world","first_name":"John","state":"confirmed","amplitude":"medium"}}} |
TASK repair_structured_output
SPEC
FIELD param_g04 TYPE number REQUIRED yes
FIELD val_r47 TYPE boolean REQUIRED no
FIELD val_y08 TYPE string REQUIRED yes
FIELD col_e26 TYPE string_uri REQUIRED yes
FIELD key_e91 TYPE string_date-time REQUIRED yes
FIELD dim_v66 TYPE string_date-time REQUIRED no
BROKEN_OUTPUT
{"param_g0... | {"param_g04":732.59,"val_r47":true,"val_y08":"active","col_e26":"https://www.io/api","key_e91":"2020-04-24T04:35:00Z","dim_v66":"2026-08-18T13:57:00Z"} | null_required | {
"type": "object",
"properties": {
"param_g04": {
"type": "number"
},
"val_r47": {
"type": "boolean"
},
"val_y08": {
"type": "string"
},
"col_e26": {
"type": "string",
"format": "uri"
},
"key_e91": {
"type": "string",
"format": "date-tim... | {"param_g04": 732.59, "val_r47": true, "val_y08": "active", "col_e26": "https://www.io/api", "key_e91": null, "dim_v66": "2026-08-18T13:57:00Z"} | Required field 'key_e91' is null | {"param_g04":732.59,"val_r47":true,"val_y08":"active","col_e26":"https://www.io/api","key_e91":"2020-04-24T04:35:00Z","dim_v66":"2026-08-18T13:57:00Z"} |
TASK repair_structured_output
SPEC
FIELD decay_rate.tags TYPE string VALUES level_1|level_2|level_3|level_4|level_5|level_6 REQUIRED no
FIELD decay_rate.conductivity TYPE boolean REQUIRED yes
FIELD decay_rate.interest_rate.run_id TYPE string VALUES level_1|level_2|level_3|level_4|level_5|level_6 REQUIRED no
FIELD deca... | {"decay_rate":{"conductivity":false,"interest_rate":{"end_date":"user@domain.com","transaction_id":697.69,"filter_flag":278,"priority":"user@domain.com"},"patient_id":{"level":32,"shift_code":677,"insurance_id":"Smith","coverage":140.97}},"half_life":{"role":"returned","tile":"level_4","score":{"position":"type_b","bar... | missing_required | {
"type": "object",
"properties": {
"decay_rate": {
"type": "object",
"properties": {
"tags": {
"type": "string",
"enum": [
"level_1",
"level_2",
"level_3",
"level_4",
"level_5",
"level_6"
]... | {"decay_rate": {"conductivity": false, "interest_rate": {"end_date": "user@domain.com", "transaction_id": 697.69, "filter_flag": 278, "priority": "user@domain.com"}, "patient_id": {"level": 32, "shift_code": 677, "insurance_id": "Smith", "coverage": 140.97}}, "half_life": {"role": "returned", "tile": "level_4", "score"... | Required field 'run_id' is missing | {"decay_rate":{"conductivity":false,"interest_rate":{"end_date":"user@domain.com","transaction_id":697.69,"filter_flag":278,"priority":"user@domain.com"},"patient_id":{"level":32,"shift_code":677,"insurance_id":"Smith","coverage":140.97}},"half_life":{"role":"returned","tile":"level_4","score":{"position":"type_b","bar... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.