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 catalyst TYPE string VALUES free|basic|pro|enterprise REQUIRED yes
FIELD commit_hash TYPE integer REQUIRED yes
FIELD chapter TYPE string_date-time REQUIRED yes
FIELD isotope TYPE number REQUIRED yes
BROKEN_OUTPUT
Analyzing the schema to generate valid JSON...
Checking required... | {"catalyst":"free","commit_hash":527,"chapter":"2024-02-21T01:11:00Z","isotope":295.8} | thought_process | {
"type": "object",
"properties": {
"catalyst": {
"type": "string",
"enum": [
"free",
"basic",
"pro",
"enterprise"
]
},
"commit_hash": {
"type": "integer"
},
"chapter": {
"type": "string",
"format": "date-time"
},
"isoto... | Analyzing the schema to generate valid JSON...
Checking required fields and types...
{"catalyst":"free","commit_hash":527,"chapter":"2024-02-21T01:11:00Z","isotope":295.8} | Output contains chain-of-thought reasoning before JSON | {"catalyst":"free","commit_hash":527,"chapter":"2024-02-21T01:11:00Z","isotope":295.8} |
TASK repair_structured_output
SPEC
FIELD val_i04 TYPE number REQUIRED yes
FIELD col_c73 TYPE integer REQUIRED yes
FIELD col_g77 TYPE string VALUES homozygous|heterozygous|hemizygous REQUIRED no
FIELD prop_u97 TYPE boolean REQUIRED no
FIELD key_p04 TYPE string_date-time REQUIRED no
FIELD field_g05 TYPE string REQUIRED ... | {"val_i04":801.05,"col_c73":482,"col_g77":"hemizygous","prop_u97":true,"key_p04":"2026-02-06T00:23:00Z"} | single_quotes | {
"type": "object",
"properties": {
"val_i04": {
"type": "number"
},
"col_c73": {
"type": "integer"
},
"col_g77": {
"type": "string",
"enum": [
"homozygous",
"heterozygous",
"hemizygous"
]
},
"prop_u97": {
"type": "boolean"
... | {'val_i04':801.05,'col_c73':482,'col_g77':'hemizygous','prop_u97':true,'key_p04':'2026-02-06T00:23:00Z'} | Expecting property name enclosed in double quotes | {"val_i04":801.05,"col_c73":482,"col_g77":"hemizygous","prop_u97":true,"key_p04":"2026-02-06T00:23:00Z"} |
TASK repair_structured_output
SPEC
FIELD dissolved_oxygen.amount TYPE integer REQUIRED no
FIELD dissolved_oxygen.status_code.company TYPE string_email REQUIRED yes
FIELD dissolved_oxygen.status_code.altitude TYPE string VALUES option_a|option_b|option_c REQUIRED yes
FIELD dissolved_oxygen.status_code.ward TYPE string ... | {"dissolved_oxygen":{"amount":983,"status_code":{"company":"ops@example.com","altitude":"option_c","ward":"operational","zip_code":343,"salinity":480.91,"version":"https://api.example.com/v1","fleet_number":564.94},"due_date":{"title":532.59,"half_life":"https://data.com/api","image_url":713,"subject":507.82},"active":... | truncated_object | {
"type": "object",
"properties": {
"dissolved_oxygen": {
"type": "object",
"properties": {
"amount": {
"type": "integer"
},
"status_code": {
"type": "object",
"properties": {
"company": {
"type": "string",
... | {"dissolved_oxygen":{"amount":983,"status_code":{"company":"ops@example.com","altitude":"option_c","ward":"operational","zip_code":343,"salinity":480.91,"version":"https://api.example.com/v1","fleet_number":564.94},"due_date":{"title":532.59,"half_life":"https://data.com/api","image_url":713,"subject":507.82},"active":... | Unexpected end of JSON input — truncated object | {"dissolved_oxygen":{"amount":983,"status_code":{"company":"ops@example.com","altitude":"option_c","ward":"operational","zip_code":343,"salinity":480.91,"version":"https://api.example.com/v1","fleet_number":564.94},"due_date":{"title":532.59,"half_life":"https://data.com/api","image_url":713,"subject":507.82},"active":... |
TASK repair_structured_output
SPEC
FIELD lab_result TYPE string REQUIRED no
FIELD nickname TYPE string REQUIRED yes
FIELD decay_rate TYPE string VALUES new|in_transit|delivered|returned REQUIRED yes
FIELD total.trace_id TYPE boolean REQUIRED no
FIELD total.compound TYPE integer REQUIRED yes
FIELD total.voltage TYPE st... | {"nickname":"demo","decay_rate":"returned","total":{"compound":248,"ward":991,"values":{"tile":"Sao Paulo","thumbnail":"London","address":"foo","weight":"user@domain.org","length":null,"shipper_ref":"test@example.com","department":false,"brake_pressure":487}},"transaction_id":{"run_id":"inactive","verified":"Maria","ac... | extra_field | {
"type": "object",
"properties": {
"lab_result": {
"type": "string"
},
"nickname": {
"type": "string"
},
"decay_rate": {
"type": "string",
"enum": [
"new",
"in_transit",
"delivered",
"returned"
]
},
"total": {
"type": "... | {"nickname": "demo", "decay_rate": "returned", "total": {"compound": 248, "ward": 991, "values": {"tile": "Sao Paulo", "thumbnail": "London", "address": "foo", "weight": "user@domain.org", "length": null, "shipper_ref": "test@example.com", "department": false, "brake_pressure": 487}}, "transaction_id": {"run_id": "inac... | Unknown field 'extra_value_3309' not defined in schema | {"nickname":"demo","decay_rate":"returned","total":{"compound":248,"ward":991,"values":{"tile":"Sao Paulo","thumbnail":"London","address":"foo","weight":"user@domain.org","length":null,"shipper_ref":"test@example.com","department":false,"brake_pressure":487}},"transaction_id":{"run_id":"inactive","verified":"Maria","ac... |
TASK repair_structured_output
SPEC
FIELD bearing TYPE boolean REQUIRED yes
FIELD dissolved_oxygen TYPE null REQUIRED yes
FIELD repository.color TYPE string VALUES cat_a|cat_b REQUIRED no
FIELD repository.subject TYPE integer REQUIRED no
FIELD repository.credit_score TYPE number REQUIRED no
FIELD repository.country TYP... | {"bearing":true,"dissolved_oxygen":null,"repository":{"color":"cat_a","credit_score":822.8,"country":"mode_a","temp_celsius":null}} | tool_call_wrong_param | {
"type": "object",
"properties": {
"bearing": {
"type": "boolean"
},
"dissolved_oxygen": {
"type": "null"
},
"repository": {
"type": "object",
"properties": {
"color": {
"type": "string",
"enum": [
"cat_a",
"cat_b"
... | Tool: transfer_call
Params: {"bearing": true, "repository": {"color": "cat_a", "credit_score": 822.8, "country": "mode_a", "temp_celsius": null}, "dissolved_oxygen_name": null} | Agent used wrong parameter name 'dissolved_oxygen_name' instead of 'dissolved_oxygen' | {"bearing":true,"dissolved_oxygen":null,"repository":{"color":"cat_a","credit_score":822.8,"country":"mode_a","temp_celsius":null}} |
TASK repair_structured_output
SPEC
FIELD zip_code TYPE string REQUIRED no
FIELD port_code TYPE number REQUIRED yes
FIELD state TYPE number REQUIRED no
FIELD crew_id TYPE string VALUES cat_a|cat_b|cat_c|cat_d REQUIRED no
FIELD description TYPE string_email REQUIRED no
BROKEN_OUTPUT
{"port_code":580.02,"state":201.77,"... | {"port_code":580.02,"state":201.77,"description":"ops@test.io"} | extra_text_after | {
"type": "object",
"properties": {
"zip_code": {
"type": "string"
},
"port_code": {
"type": "number"
},
"state": {
"type": "number"
},
"crew_id": {
"type": "string",
"enum": [
"cat_a",
"cat_b",
"cat_c",
"cat_d"
]
},... | {"port_code":580.02,"state":201.77,"description":"ops@test.io"}
Data logged successfully. | Output contains non-JSON text after the object | {"port_code":580.02,"state":201.77,"description":"ops@test.io"} |
TASK repair_structured_output
SPEC
FIELD last_name TYPE number REQUIRED no
FIELD published TYPE string REQUIRED yes
FIELD count TYPE string VALUES option_a|option_b|option_c REQUIRED no
FIELD first_name.total TYPE string VALUES synonymous|missense|nonsense|frameshift REQUIRED no
FIELD first_name.quality_score TYPE str... | {"published":"PASS","count":"option_c","first_name":{"total":"synonymous","span_id":700,"values":{"count":"small","discount":859,"city":null,"vessel_name":"Paris","frequency_hz":"info@example.com"}},"span_id":287,"phenotype":{"end_date":"mode_d","consignee":"published","aligned_pct":"type_c","role":"completed","item_id... | single_quotes | {
"type": "object",
"properties": {
"last_name": {
"type": "number"
},
"published": {
"type": "string"
},
"count": {
"type": "string",
"enum": [
"option_a",
"option_b",
"option_c"
]
},
"first_name": {
"type": "object",
"pr... | {'published':'PASS','count':'option_c','first_name':{'total':'synonymous','span_id':700,'values':{'count':'small','discount':859,'city':null,'vessel_name':'Paris','frequency_hz':'info@example.com'}},'span_id':287,'phenotype':{'end_date':'mode_d','consignee':'published','aligned_pct':'type_c','role':'completed','item_id... | Expecting property name enclosed in double quotes | {"published":"PASS","count":"option_c","first_name":{"total":"synonymous","span_id":700,"values":{"count":"small","discount":859,"city":null,"vessel_name":"Paris","frequency_hz":"info@example.com"}},"span_id":287,"phenotype":{"end_date":"mode_d","consignee":"published","aligned_pct":"type_c","role":"completed","item_id... |
TASK repair_structured_output
SPEC
FIELD prop_p27 TYPE string REQUIRED yes
FIELD key_p32 TYPE integer REQUIRED no
FIELD key_f34[].prop_b78 TYPE string REQUIRED no
FIELD key_f34[].key_l01 TYPE string VALUES level_1|level_2|level_3|level_4|level_5 REQUIRED no
FIELD key_f34[].field_w43 TYPE integer REQUIRED no
FIELD key_... | {"prop_p27":"world"} | thought_process | {
"type": "object",
"properties": {
"prop_p27": {
"type": "string"
},
"key_p32": {
"type": "integer"
},
"key_f34": {
"type": "array",
"items": {
"type": "object",
"properties": {
"prop_b78": {
"type": "string"
},
"... | I need to create a JSON object that matches the given schema.
Let me make sure all required fields are included.
{"prop_p27":"world"} | Output contains chain-of-thought reasoning before JSON | {"prop_p27":"world"} |
TASK repair_structured_output
SPEC
FIELD velocity TYPE number REQUIRED no
FIELD allele TYPE string_email REQUIRED yes
FIELD strand TYPE integer REQUIRED yes
FIELD filter_flag TYPE number REQUIRED no
FIELD berth_slot[].allele TYPE string VALUES USD|EUR|GBP|BRL|JPY REQUIRED no
FIELD berth_slot[].weight TYPE string VALUE... | {"velocity":905.84,"allele":"admin@test.io","strand":627,"filter_flag":769.06} | tool_call_text_mix | {
"type": "object",
"properties": {
"velocity": {
"type": "number"
},
"allele": {
"type": "string",
"format": "email"
},
"strand": {
"type": "integer"
},
"filter_flag": {
"type": "number"
},
"berth_slot": {
"type": "array",
"items": {
... | I'll query our database.
<tool_call name="annotate_mutation">
{"velocity":905.84,"allele":"admin@test.io","strand":627,"filter_flag":769.06}
</tool_call.
Operation completed. | Agent response mixes reasoning text with tool call | {"velocity":905.84,"allele":"admin@test.io","strand":627,"filter_flag":769.06} |
TASK repair_structured_output
SPEC
FIELD date.half_life TYPE null REQUIRED yes
FIELD date.lab_result TYPE integer REQUIRED no
FIELD date.brake_pressure TYPE string VALUES low|medium|high|critical REQUIRED no
FIELD date.product_id TYPE number REQUIRED yes
FIELD date.collateral[] TYPE string REQUIRED yes
FIELD humidity_... | {"date":{"half_life":null,"lab_result":535,"brake_pressure":"high","product_id":786.73,"collateral":["sample"]},"humidity_pct":"cat_a","label":{"decay_rate":293,"country":"unstable"},"cargo_type":"hello","type":{"updated_at":"https://example.com","status_code":true},"count":899} | extra_text_after | {
"type": "object",
"properties": {
"date": {
"type": "object",
"properties": {
"half_life": {
"type": "null"
},
"lab_result": {
"type": "integer"
},
"brake_pressure": {
"type": "string",
"enum": [
"low",
... | {"date":{"half_life":null,"lab_result":535,"brake_pressure":"high","product_id":786.73,"collateral":["sample"]},"humidity_pct":"cat_a","label":{"decay_rate":293,"country":"unstable"},"cargo_type":"hello","type":{"updated_at":"https://example.com","status_code":true},"count":899}
Data logged successfully. | Output contains non-JSON text after the object | {"date":{"half_life":null,"lab_result":535,"brake_pressure":"high","product_id":786.73,"collateral":["sample"]},"humidity_pct":"cat_a","label":{"decay_rate":293,"country":"unstable"},"cargo_type":"hello","type":{"updated_at":"https://example.com","status_code":true},"count":899} |
TASK repair_structured_output
SPEC
FIELD barcode TYPE string REQUIRED yes
FIELD values TYPE null REQUIRED yes
FIELD due_date TYPE string REQUIRED no
FIELD count TYPE string VALUES low|medium|high|critical REQUIRED yes
FIELD voltage.vital_sign TYPE string REQUIRED no
FIELD voltage.loan_amount TYPE string REQUIRED yes
F... | {"barcode":"2023-12-25","values":null,"count":"critical"} | extra_text_before | {
"type": "object",
"properties": {
"barcode": {
"type": "string"
},
"values": {
"type": "null"
},
"due_date": {
"type": "string"
},
"count": {
"type": "string",
"enum": [
"low",
"medium",
"high",
"critical"
]
},
... | Based on your request, here is the data:
{"barcode":"2023-12-25","values":null,"count":"critical"} | Output contains non-JSON text before the object | {"barcode":"2023-12-25","values":null,"count":"critical"} |
TASK repair_structured_output
SPEC
FIELD param_j30 TYPE string VALUES email|phone|sms|push REQUIRED yes
FIELD attr_n70.field_z96 TYPE boolean REQUIRED no
FIELD attr_n70.field_l66 TYPE string VALUES red|blue|green|black|white REQUIRED yes
FIELD attr_n70.dim_u82 TYPE boolean REQUIRED yes
FIELD attr_n70.key_e41 TYPE stri... | {"param_j30":"sms","param_w40":"quux","col_u41":"free","attr_x16":197.37,"key_e57":false} | single_quotes | {
"type": "object",
"properties": {
"param_j30": {
"type": "string",
"enum": [
"email",
"phone",
"sms",
"push"
]
},
"attr_n70": {
"type": "object",
"properties": {
"field_z96": {
"type": "boolean"
},
"field_l... | {'param_j30':'sms','param_w40':'quux','col_u41':'free','attr_x16':197.37,'key_e57':false} | Expecting property name enclosed in double quotes | {"param_j30":"sms","param_w40":"quux","col_u41":"free","attr_x16":197.37,"key_e57":false} |
TASK repair_structured_output
SPEC
FIELD shipping.currency TYPE string VALUES email|phone|sms|push REQUIRED yes
FIELD shipping.age TYPE string VALUES admin|editor|viewer REQUIRED yes
FIELD shipping.longitude TYPE boolean REQUIRED yes
FIELD branch TYPE integer REQUIRED no
FIELD chromosome TYPE string VALUES new|in_tran... | {"branch":78,"chromosome":"new","insurance_id":"pending","format":"Berlin"} | tool_call_bad_format | {
"type": "object",
"properties": {
"shipping": {
"type": "object",
"properties": {
"currency": {
"type": "string",
"enum": [
"email",
"phone",
"sms",
"push"
]
},
"age": {
"type": "string"... | <functioncall> fetch_lab_result
{branch: 78, chromosome: "new", insurance_id: "pending", format: "Berlin"} | Tool call has malformed arguments — unquoted keys in function parameters | {"branch":78,"chromosome":"new","insurance_id":"pending","format":"Berlin"} |
TASK repair_structured_output
SPEC
FIELD total TYPE string REQUIRED no
FIELD email TYPE string REQUIRED yes
FIELD maturity_date.frequency_hz TYPE string_uri REQUIRED yes
FIELD maturity_date.procedure_code TYPE string REQUIRED yes
FIELD maturity_date.strand.comments TYPE string VALUES homozygous|heterozygous|hemizygous... | {"total":"Paris","email":"inactive","maturity_date":{"frequency_hz":"https://data.io/data","procedure_code":"Berlin","strand":{"comments":"homozygous","notes":"inactive","compound":true}},"dosage":"low"} | truncated_array | {
"type": "object",
"properties": {
"total": {
"type": "string"
},
"email": {
"type": "string"
},
"maturity_date": {
"type": "object",
"properties": {
"frequency_hz": {
"type": "string",
"format": "uri"
},
"procedure_code": {
... | {"total":"Paris","email":"inactive","maturity_date":{"frequency_hz":"https://data.io/data","procedure_code":"Berlin","strand":{"comments":"homozygous","notes":"inactive","compound":true}},"dosage":"low" | Unexpected end of JSON input — truncated object | {"total":"Paris","email":"inactive","maturity_date":{"frequency_hz":"https://data.io/data","procedure_code":"Berlin","strand":{"comments":"homozygous","notes":"inactive","compound":true}},"dosage":"low"} |
TASK repair_structured_output
SPEC
FIELD full_name TYPE number REQUIRED no
FIELD manifest_ref TYPE integer REQUIRED yes
FIELD zip_code[].price TYPE string VALUES homozygous|heterozygous|hemizygous REQUIRED yes
FIELD zip_code[].user_id TYPE string REQUIRED no
FIELD zip_code[].gene_id TYPE string REQUIRED yes
FIELD zip_... | {"full_name":286.49,"manifest_ref":835,"zip_code":[{"price":"homozygous","user_id":"Santos","gene_id":"Jane","barcode":null,"amount":"ops@test.io","isotope":"GBP"},{"price":"homozygous","gene_id":"Hapag-Lloyd-Express","invoice_id":false,"isotope":"EUR"},{"price":"homozygous","user_id":"world","gene_id":"Maria","invoice... | trailing_comma | {
"type": "object",
"properties": {
"full_name": {
"type": "number"
},
"manifest_ref": {
"type": "integer"
},
"zip_code": {
"type": "array",
"items": {
"type": "object",
"properties": {
"price": {
"type": "string",
"enum":... | {"full_name":286.49,"manifest_ref":835,"zip_code":[{"price":"homozygous","user_id":"Santos","gene_id":"Jane","barcode":null,"amount":"ops@test.io","isotope":"GBP",},{"price":"homozygous","gene_id":"Hapag-Lloyd-Express","invoice_id":false,"isotope":"EUR"},{"price":"homozygous","user_id":"world","gene_id":"Maria","invoic... | Unexpected trailing comma | {"full_name":286.49,"manifest_ref":835,"zip_code":[{"price":"homozygous","user_id":"Santos","gene_id":"Jane","barcode":null,"amount":"ops@test.io","isotope":"GBP"},{"price":"homozygous","gene_id":"Hapag-Lloyd-Express","invoice_id":false,"isotope":"EUR"},{"price":"homozygous","user_id":"world","gene_id":"Maria","invoice... |
TASK repair_structured_output
SPEC
FIELD col_x81 TYPE string_date-time REQUIRED yes
FIELD val_d08 TYPE string REQUIRED no
FIELD col_q72 TYPE number REQUIRED no
FIELD prop_s04 TYPE integer REQUIRED yes
FIELD val_x27[] TYPE string VALUES free|basic|pro|enterprise REQUIRED no
BROKEN_OUTPUT
{"col_x81":"2020-06-24T17:33:0... | {"col_x81":"2020-06-24T17:33:00Z","val_d08":"Charlie","col_q72":996.03,"prop_s04":281} | missing_bracket | {
"type": "object",
"properties": {
"col_x81": {
"type": "string",
"format": "date-time"
},
"val_d08": {
"type": "string"
},
"col_q72": {
"type": "number"
},
"prop_s04": {
"type": "integer"
},
"val_x27": {
"type": "array",
"items": {
... | {"col_x81":"2020-06-24T17:33:00Z","val_d08":"Charlie","col_q72":996.03,"prop_s04":281} | Missing closing bracket | {"col_x81":"2020-06-24T17:33:00Z","val_d08":"Charlie","col_q72":996.03,"prop_s04":281} |
TASK repair_structured_output
SPEC
FIELD val_r87 TYPE string VALUES pending_review|confirmed|rejected|escalated REQUIRED yes
FIELD attr_r89 TYPE string VALUES email|phone|sms|push REQUIRED no
FIELD col_d14 TYPE integer REQUIRED no
FIELD param_d50 TYPE string VALUES low|medium|high|critical REQUIRED no
FIELD attr_p11 T... | {"val_r87":"pending_review","col_d14":81,"param_d50":"low","attr_p11":"email"} | single_quotes | {
"type": "object",
"properties": {
"val_r87": {
"type": "string",
"enum": [
"pending_review",
"confirmed",
"rejected",
"escalated"
]
},
"attr_r89": {
"type": "string",
"enum": [
"email",
"phone",
"sms",
"push"... | {'val_r87':'pending_review','col_d14':81,'param_d50':'low','attr_p11':'email'} | Expecting property name enclosed in double quotes | {"val_r87":"pending_review","col_d14":81,"param_d50":"low","attr_p11":"email"} |
TASK repair_structured_output
SPEC
FIELD attr_s26 TYPE string REQUIRED no
FIELD prop_r80.col_k26 TYPE integer REQUIRED yes
FIELD prop_r80.dim_o75 TYPE string VALUES reliable|unstable|intermittent REQUIRED no
FIELD prop_r80.prop_e09 TYPE boolean REQUIRED yes
FIELD prop_r80.attr_f66 TYPE string REQUIRED no
FIELD param_u... | {"attr_s26":"Santos","prop_r80":{"col_k26":403,"dim_o75":"unstable","prop_e09":false,"attr_f66":"Santos"},"param_u73":"Bob","attr_o38":395,"prop_p65":false,"key_w22":55.66,"val_f95":"A short description."} | extra_text_before | {
"type": "object",
"properties": {
"attr_s26": {
"type": "string"
},
"prop_r80": {
"type": "object",
"properties": {
"col_k26": {
"type": "integer"
},
"dim_o75": {
"type": "string",
"enum": [
"reliable",
"un... | Let me provide the data in JSON format:
{"attr_s26":"Santos","prop_r80":{"col_k26":403,"dim_o75":"unstable","prop_e09":false,"attr_f66":"Santos"},"param_u73":"Bob","attr_o38":395,"prop_p65":false,"key_w22":55.66,"val_f95":"A short description."} | Output contains non-JSON text before the object | {"attr_s26":"Santos","prop_r80":{"col_k26":403,"dim_o75":"unstable","prop_e09":false,"attr_f66":"Santos"},"param_u73":"Bob","attr_o38":395,"prop_p65":false,"key_w22":55.66,"val_f95":"A short description."} |
TASK repair_structured_output
SPEC
FIELD color TYPE integer REQUIRED no
FIELD bed_number TYPE string REQUIRED no
FIELD chapter TYPE boolean REQUIRED no
FIELD freight_class TYPE string REQUIRED yes
FIELD dosage TYPE string REQUIRED yes
FIELD website TYPE string REQUIRED no
FIELD message TYPE boolean REQUIRED no
FIELD s... | {"color":211,"bed_number":"Paris","chapter":true,"freight_class":"Alice","dosage":"Maria","message":false,"strand":{"tax":"https://example.com","score":"large","compound":505,"isotope":724.43,"step":717}} | extra_text_after | {
"type": "object",
"properties": {
"color": {
"type": "integer"
},
"bed_number": {
"type": "string"
},
"chapter": {
"type": "boolean"
},
"freight_class": {
"type": "string"
},
"dosage": {
"type": "string"
},
"website": {
"type": "strin... | {"color":211,"bed_number":"Paris","chapter":true,"freight_class":"Alice","dosage":"Maria","message":false,"strand":{"tax":"https://example.com","score":"large","compound":505,"isotope":724.43,"step":717}}
I've ensured all required fields are present. | Output contains non-JSON text after the object | {"color":211,"bed_number":"Paris","chapter":true,"freight_class":"Alice","dosage":"Maria","message":false,"strand":{"tax":"https://example.com","score":"large","compound":505,"isotope":724.43,"step":717}} |
TASK repair_structured_output
SPEC
FIELD col_c28 TYPE string_uri REQUIRED yes
FIELD prop_u86 TYPE integer REQUIRED yes
FIELD field_a86 TYPE string REQUIRED yes
BROKEN_OUTPUT
{"col_c28": null, "prop_u86": 289, "field_a86": "Alice"} | {"col_c28":"https://example.org/data","prop_u86":289,"field_a86":"Alice"} | null_required | {
"type": "object",
"properties": {
"col_c28": {
"type": "string",
"format": "uri"
},
"prop_u86": {
"type": "integer"
},
"field_a86": {
"type": "string"
}
},
"required": [
"prop_u86",
"field_a86",
"col_c28"
]
} | {"col_c28": null, "prop_u86": 289, "field_a86": "Alice"} | Required field 'col_c28' is null | {"col_c28":"https://example.org/data","prop_u86":289,"field_a86":"Alice"} |
TASK repair_structured_output
SPEC
FIELD field_x53 TYPE integer REQUIRED yes
FIELD dim_q07 TYPE integer REQUIRED no
FIELD attr_z13.key_a65 TYPE string VALUES free|basic|pro|enterprise REQUIRED yes
FIELD attr_z13.field_b13 TYPE string REQUIRED yes
FIELD attr_z13.col_k57.dim_l10 TYPE integer REQUIRED yes
FIELD attr_z13.... | {"field_x53":111,"attr_z13":{"key_a65":"free","field_b13":"New York","col_k57":{"dim_l10":954,"attr_p26":405,"col_c92":"GBP","attr_f83":"divorced","param_b87":null,"prop_w15":"approved"},"prop_p53":"https://www.com/data","param_x07":409},"param_j57":"sms","prop_c49":null,"field_y24":"FWD","dim_r27":"email"} | number_with_unit | {
"type": "object",
"properties": {
"field_x53": {
"type": "integer"
},
"dim_q07": {
"type": "integer"
},
"attr_z13": {
"type": "object",
"properties": {
"key_a65": {
"type": "string",
"enum": [
"free",
"basic",
... | {"field_x53": "111px", "attr_z13": {"key_a65": "free", "field_b13": "New York", "col_k57": {"dim_l10": 954, "attr_p26": 405, "col_c92": "GBP", "attr_f83": "divorced", "param_b87": null, "prop_w15": "approved"}, "prop_p53": "https://www.com/data", "param_x07": 409}, "param_j57": "sms", "prop_c49": null, "field_y24": "FW... | Field 'field_x53' must be number, got string with unit | {"field_x53":111,"attr_z13":{"key_a65":"free","field_b13":"New York","col_k57":{"dim_l10":954,"attr_p26":405,"col_c92":"GBP","attr_f83":"divorced","param_b87":null,"prop_w15":"approved"},"prop_p53":"https://www.com/data","param_x07":409},"param_j57":"sms","prop_c49":null,"field_y24":"FWD","dim_r27":"email"} |
TASK repair_structured_output
SPEC
FIELD throttle_pos TYPE string VALUES admin|editor|viewer REQUIRED no
FIELD commit_hash TYPE string REQUIRED yes
FIELD dissolved_oxygen.order_id TYPE integer REQUIRED yes
FIELD dissolved_oxygen.color TYPE number REQUIRED no
FIELD dissolved_oxygen.due_date TYPE string VALUES success|e... | {"commit_hash":"test@example.com","dissolved_oxygen":{"order_id":455,"color":880.02,"due_date":"warning","humidity_pct":{"created_at":"Diana","span_id":"new","build_status":false,"allele":"EUR"},"shift_code":{"index":"unstable","ward":true,"size":699,"count":271.93,"created_at":863,"shift_code":"published"}}} | tool_call_text_mix | {
"type": "object",
"properties": {
"throttle_pos": {
"type": "string",
"enum": [
"admin",
"editor",
"viewer"
]
},
"commit_hash": {
"type": "string"
},
"dissolved_oxygen": {
"type": "object",
"properties": {
"order_id": {
... | I'll query our database.
<tool_call name="filter_variants">
{"commit_hash":"test@example.com","dissolved_oxygen":{"order_id":455,"color":880.02,"due_date":"warning","humidity_pct":{"created_at":"Diana","span_id":"new","build_status":false,"allele":"EUR"},"shift_code":{"index":"unstable","ward":true,"size":699,"count":2... | Agent response mixes reasoning text with tool call | {"commit_hash":"test@example.com","dissolved_oxygen":{"order_id":455,"color":880.02,"due_date":"warning","humidity_pct":{"created_at":"Diana","span_id":"new","build_status":false,"allele":"EUR"},"shift_code":{"index":"unstable","ward":true,"size":699,"count":271.93,"created_at":863,"shift_code":"published"}}} |
TASK repair_structured_output
SPEC
FIELD col_t48 TYPE string VALUES pending_review|confirmed|rejected|escalated REQUIRED no
FIELD field_z42 TYPE string REQUIRED yes
FIELD val_t29 TYPE string VALUES active|inactive|pending REQUIRED yes
FIELD key_e00 TYPE string REQUIRED no
FIELD prop_q17 TYPE number REQUIRED yes
BROKE... | {"col_t48":"rejected","field_z42":"Johnson","val_t29":"pending","prop_q17":337.85} | missing_required | {
"type": "object",
"properties": {
"col_t48": {
"type": "string",
"enum": [
"pending_review",
"confirmed",
"rejected",
"escalated"
]
},
"field_z42": {
"type": "string"
},
"val_t29": {
"type": "string",
"enum": [
"active... | {"col_t48": "rejected", "field_z42": "Johnson", "val_t29": "pending"} | Required field 'prop_q17' is missing | {"col_t48":"rejected","field_z42":"Johnson","val_t29":"pending","prop_q17":337.85} |
TASK repair_structured_output
SPEC
FIELD col_d04 TYPE string REQUIRED no
FIELD param_w25 TYPE null REQUIRED yes
FIELD field_q56 TYPE boolean REQUIRED yes
BROKEN_OUTPUT
{"col_d04":"Alice","param_w25":null,"field_q56":true | {"col_d04":"Alice","param_w25":null,"field_q56":true} | truncated_object | {
"type": "object",
"properties": {
"col_d04": {
"type": "string"
},
"param_w25": {
"type": "null"
},
"field_q56": {
"type": "boolean"
}
},
"required": [
"param_w25",
"field_q56"
]
} | {"col_d04":"Alice","param_w25":null,"field_q56":true | Unexpected end of JSON input — truncated object | {"col_d04":"Alice","param_w25":null,"field_q56":true} |
TASK repair_structured_output
SPEC
FIELD attr_z28 TYPE boolean REQUIRED no
FIELD col_w84 TYPE integer REQUIRED no
FIELD val_o05 TYPE string VALUES USD|EUR|GBP|BRL|JPY REQUIRED yes
BROKEN_OUTPUT
{"attr_z28": false, "col_w84": 644, "val_o05": "invalid_value_99"} | {"attr_z28":false,"col_w84":644,"val_o05":"EUR"} | invalid_enum | {
"type": "object",
"properties": {
"attr_z28": {
"type": "boolean"
},
"col_w84": {
"type": "integer"
},
"val_o05": {
"type": "string",
"enum": [
"USD",
"EUR",
"GBP",
"BRL",
"JPY"
]
}
},
"required": [
"val_o05"
]... | {"attr_z28": false, "col_w84": 644, "val_o05": "invalid_value_99"} | Field 'val_o05' has invalid enum value 'invalid_value_99', expected one of ['USD', 'EUR', 'GBP', 'BRL', 'JPY'] | {"attr_z28":false,"col_w84":644,"val_o05":"EUR"} |
TASK repair_structured_output
SPEC
FIELD credit_score TYPE string REQUIRED yes
FIELD batch_code TYPE string REQUIRED no
FIELD due_date TYPE string REQUIRED no
FIELD date TYPE string VALUES email|phone|sms|push REQUIRED yes
FIELD features TYPE string REQUIRED yes
BROKEN_OUTPUT
Tool: annotate_mutation
Params: {"batch_c... | {"credit_score":"https://api.example.com/v1","batch_code":"Hapag-Lloyd-Express","date":"email","features":"Charlie"} | tool_call_wrong_param | {
"type": "object",
"properties": {
"credit_score": {
"type": "string"
},
"batch_code": {
"type": "string"
},
"due_date": {
"type": "string"
},
"date": {
"type": "string",
"enum": [
"email",
"phone",
"sms",
"push"
]
... | Tool: annotate_mutation
Params: {"batch_code": "Hapag-Lloyd-Express", "date": "email", "features": "Charlie", "credit_score_value": "https://api.example.com/v1"} | Agent used wrong parameter name 'credit_score_value' instead of 'credit_score' | {"credit_score":"https://api.example.com/v1","batch_code":"Hapag-Lloyd-Express","date":"email","features":"Charlie"} |
TASK repair_structured_output
SPEC
FIELD col_j25 TYPE integer REQUIRED yes
FIELD col_m24 TYPE number REQUIRED yes
FIELD attr_c62.key_e00 TYPE string REQUIRED no
FIELD attr_c62.key_s12 TYPE string VALUES free|basic|pro|enterprise REQUIRED no
FIELD attr_c62.field_s39 TYPE string VALUES homozygous|heterozygous|hemizygous... | {"col_j25":927,"col_m24":813.72,"attr_c62":{"key_s12":"enterprise","field_s39":"homozygous","key_d59":{"field_q31":333,"prop_r68":"info","param_f49":"bar","attr_x27":"user@domain.com"},"attr_w74":"anchored","key_a41":"admin","col_p31":"basic","prop_f91":"FWD"},"col_f80":{"val_u77":906,"dim_k15":"small","field_q48":443}... | extra_text_after | {
"type": "object",
"properties": {
"col_j25": {
"type": "integer"
},
"col_m24": {
"type": "number"
},
"attr_c62": {
"type": "object",
"properties": {
"key_e00": {
"type": "string"
},
"key_s12": {
"type": "string",
"en... | {"col_j25":927,"col_m24":813.72,"attr_c62":{"key_s12":"enterprise","field_s39":"homozygous","key_d59":{"field_q31":333,"prop_r68":"info","param_f49":"bar","attr_x27":"user@domain.com"},"attr_w74":"anchored","key_a41":"admin","col_p31":"basic","prop_f91":"FWD"},"col_f80":{"val_u77":906,"dim_k15":"small","field_q48":443}... | Output contains non-JSON text after the object | {"col_j25":927,"col_m24":813.72,"attr_c62":{"key_s12":"enterprise","field_s39":"homozygous","key_d59":{"field_q31":333,"prop_r68":"info","param_f49":"bar","attr_x27":"user@domain.com"},"attr_w74":"anchored","key_a41":"admin","col_p31":"basic","prop_f91":"FWD"},"col_f80":{"val_u77":906,"dim_k15":"small","field_q48":443}... |
TASK repair_structured_output
SPEC
FIELD type TYPE string VALUES homozygous|heterozygous|hemizygous REQUIRED yes
FIELD longitude TYPE boolean REQUIRED yes
FIELD barcode TYPE boolean REQUIRED yes
FIELD features TYPE number REQUIRED no
FIELD active TYPE number REQUIRED no
BROKEN_OUTPUT
I found that type should be homoz... | {"type":"homozygous","longitude":false,"barcode":false,"features":266.05} | partial_structure | {
"type": "object",
"properties": {
"type": {
"type": "string",
"enum": [
"homozygous",
"heterozygous",
"hemizygous"
]
},
"longitude": {
"type": "boolean"
},
"barcode": {
"type": "boolean"
},
"features": {
"type": "number"
}... | I found that type should be homozygous. {"type":"homozygous","longitude":false,"barcode":false,"features":266.05} | Output mixes natural language with JSON | {"type":"homozygous","longitude":false,"barcode":false,"features":266.05} |
TASK repair_structured_output
SPEC
FIELD decay_rate TYPE boolean REQUIRED yes
FIELD gene_id TYPE boolean REQUIRED yes
FIELD status TYPE string REQUIRED no
FIELD consignee.type TYPE string VALUES email|phone|sms|push REQUIRED no
FIELD consignee.version TYPE boolean REQUIRED no
FIELD consignee.sensor_id TYPE boolean REQ... | {"decay_rate":false,"gene_id":false,"status":"Johnson"} | trailing_comma | {
"type": "object",
"properties": {
"decay_rate": {
"type": "boolean"
},
"gene_id": {
"type": "boolean"
},
"status": {
"type": "string"
},
"consignee": {
"type": "object",
"properties": {
"type": {
"type": "string",
"enum": [
... | {"decay_rate":false,"gene_id":false,"status":"Johnson",} | Unexpected trailing comma | {"decay_rate":false,"gene_id":false,"status":"Johnson"} |
TASK repair_structured_output
SPEC
FIELD param_w97.attr_j13 TYPE integer REQUIRED no
FIELD param_w97.key_d75 TYPE string REQUIRED no
FIELD param_w97.param_w47 TYPE string_uri REQUIRED no
FIELD param_w97.col_b77 TYPE string REQUIRED yes
FIELD param_w97.param_r13[] TYPE string REQUIRED no
FIELD param_v34 TYPE string VAL... | {"param_w97":{"attr_j13":357,"key_d75":"London","param_w47":"https://api.com/data","col_b77":"Sao Paulo"},"param_v34":"degraded","param_y51":true,"attr_f93":{"val_q93":false,"val_x03":"quux","attr_a40":{"prop_h34":"type_e","dim_m09":"married","col_k63":"in_transit"},"key_f98":{"col_s95":"mode_b","attr_c34":215,"dim_s88... | trailing_comma | {
"type": "object",
"properties": {
"param_w97": {
"type": "object",
"properties": {
"attr_j13": {
"type": "integer"
},
"key_d75": {
"type": "string"
},
"param_w47": {
"type": "string",
"format": "uri"
},
... | {"param_w97":{"attr_j13":357,"key_d75":"London","param_w47":"https://api.com/data","col_b77":"Sao Paulo",},"param_v34":"degraded","param_y51":true,"attr_f93":{"val_q93":false,"val_x03":"quux","attr_a40":{"prop_h34":"type_e","dim_m09":"married","col_k63":"in_transit"},"key_f98":{"col_s95":"mode_b","attr_c34":215,"dim_s8... | Unexpected trailing comma | {"param_w97":{"attr_j13":357,"key_d75":"London","param_w47":"https://api.com/data","col_b77":"Sao Paulo"},"param_v34":"degraded","param_y51":true,"attr_f93":{"val_q93":false,"val_x03":"quux","attr_a40":{"prop_h34":"type_e","dim_m09":"married","col_k63":"in_transit"},"key_f98":{"col_s95":"mode_b","attr_c34":215,"dim_s88... |
TASK repair_structured_output
SPEC
FIELD field_u56 TYPE string VALUES mode_a|mode_b|mode_c|mode_d REQUIRED yes
FIELD attr_t03 TYPE number REQUIRED no
FIELD col_o99.dim_f29 TYPE integer REQUIRED no
FIELD col_o99.dim_i42.col_n67 TYPE string REQUIRED yes
FIELD col_o99.dim_i42.attr_w29 TYPE integer REQUIRED no
FIELD col_o... | {"field_u56":"mode_a","attr_t03":328.92,"col_o99":{"dim_i42":{"col_n67":"GRCh38","attr_w29":526,"attr_j69":true,"prop_s83":152.29,"val_y91":["new","returned","delivered"],"field_z87":["cat_a","cat_a"]},"field_z58":784.78,"prop_y28":687,"key_v90":true},"col_j26":"Diana","col_f46":"Berlin","prop_z41":{"dim_u80":"pending"... | markdown_explanation | {
"type": "object",
"properties": {
"field_u56": {
"type": "string",
"enum": [
"mode_a",
"mode_b",
"mode_c",
"mode_d"
]
},
"attr_t03": {
"type": "number"
},
"col_o99": {
"type": "object",
"properties": {
"dim_f29": {
... | Below is the JSON object:
```json
{"field_u56":"mode_a","attr_t03":328.92,"col_o99":{"dim_i42":{"col_n67":"GRCh38","attr_w29":526,"attr_j69":true,"prop_s83":152.29,"val_y91":["new","returned","delivered"],"field_z87":["cat_a","cat_a"]},"field_z58":784.78,"prop_y28":687,"key_v90":true},"col_j26":"Diana","col_f46":"Berli... | Output contains markdown and explanatory text around JSON | {"field_u56":"mode_a","attr_t03":328.92,"col_o99":{"dim_i42":{"col_n67":"GRCh38","attr_w29":526,"attr_j69":true,"prop_s83":152.29,"val_y91":["new","returned","delivered"],"field_z87":["cat_a","cat_a"]},"field_z58":784.78,"prop_y28":687,"key_v90":true},"col_j26":"Diana","col_f46":"Berlin","prop_z41":{"dim_u80":"pending"... |
TASK repair_structured_output
SPEC
FIELD attr_d95 TYPE number REQUIRED yes
FIELD prop_y80 TYPE boolean REQUIRED yes
FIELD attr_a43 TYPE string VALUES mode_a|mode_b|mode_c|mode_d|mode_e|mode_f REQUIRED yes
FIELD prop_q24 TYPE string REQUIRED yes
BROKEN_OUTPUT
Let me check the system.
Action: apply_discount
Arguments: ... | {"attr_d95":218.56,"prop_y80":true,"attr_a43":"mode_a","prop_q24":"user@domain.com"} | tool_call_partial_args | {
"type": "object",
"properties": {
"attr_d95": {
"type": "number"
},
"prop_y80": {
"type": "boolean"
},
"attr_a43": {
"type": "string",
"enum": [
"mode_a",
"mode_b",
"mode_c",
"mode_d",
"mode_e",
"mode_f"
]
},
... | Let me check the system.
Action: apply_discount
Arguments: {"prop_y80": true, "attr_a43": "mode_a", "prop_q24": "user@domain.com"} | Agent tool call missing required parameter 'attr_d95' | {"attr_d95":218.56,"prop_y80":true,"attr_a43":"mode_a","prop_q24":"user@domain.com"} |
TASK repair_structured_output
SPEC
FIELD param_f51 TYPE string VALUES red|blue|green|black|white REQUIRED no
FIELD param_m40 TYPE string REQUIRED no
FIELD val_q96 TYPE string VALUES new|in_transit|delivered|returned REQUIRED yes
FIELD param_q93 TYPE string REQUIRED no
FIELD val_u98 TYPE number REQUIRED no
FIELD param_... | {"param_f51":"green","param_m40":"sample","val_q96":"returned","param_q93":"sample","val_u98":548.11,"param_r45":null,"prop_l23":963.61,"col_x05":310.64} | missing_required | {
"type": "object",
"properties": {
"param_f51": {
"type": "string",
"enum": [
"red",
"blue",
"green",
"black",
"white"
]
},
"param_m40": {
"type": "string"
},
"val_q96": {
"type": "string",
"enum": [
"new",
... | {"param_f51": "green", "param_m40": "sample", "val_q96": "returned", "param_q93": "sample", "val_u98": 548.11, "prop_l23": 963.61, "col_x05": 310.64} | Required field 'param_r45' is missing | {"param_f51":"green","param_m40":"sample","val_q96":"returned","param_q93":"sample","val_u98":548.11,"param_r45":null,"prop_l23":963.61,"col_x05":310.64} |
TASK repair_structured_output
SPEC
FIELD tags TYPE string VALUES active|inactive|pending REQUIRED yes
FIELD longitude TYPE integer REQUIRED no
FIELD duration_ms TYPE integer REQUIRED no
FIELD hazmat_code TYPE integer REQUIRED no
FIELD active TYPE string VALUES low|medium|high|critical REQUIRED no
BROKEN_OUTPUT
{"tags... | {"tags":"pending","longitude":891,"duration_ms":942,"hazmat_code":442,"active":"low"} | truncated_object | {
"type": "object",
"properties": {
"tags": {
"type": "string",
"enum": [
"active",
"inactive",
"pending"
]
},
"longitude": {
"type": "integer"
},
"duration_ms": {
"type": "integer"
},
"hazmat_code": {
"type": "integer"
},
... | {"tags":"pending","longitude":891,"duration_ms":942,"hazmat_code":442,"active":"low" | Unexpected end of JSON input — truncated object | {"tags":"pending","longitude":891,"duration_ms":942,"hazmat_code":442,"active":"low"} |
TASK repair_structured_output
SPEC
FIELD param_v95 TYPE string VALUES low|medium|high|critical REQUIRED no
FIELD dim_g88 TYPE string_uri REQUIRED yes
FIELD val_k29 TYPE boolean REQUIRED no
FIELD key_k05 TYPE string_date-time REQUIRED yes
FIELD key_f88 TYPE boolean REQUIRED no
FIELD key_s08 TYPE string REQUIRED yes
FIE... | {"dim_g88":"https://api.com/v1","val_k29":false,"key_k05":"2026-05-26T18:16:00Z","key_f88":true,"key_s08":"world","val_l47":{"param_n40":"2024-01-15","field_s03":[609,805,872],"dim_b11":["option_b"]},"dim_w85":"info"} | boolean_as_string | {
"type": "object",
"properties": {
"param_v95": {
"type": "string",
"enum": [
"low",
"medium",
"high",
"critical"
]
},
"dim_g88": {
"type": "string",
"format": "uri"
},
"val_k29": {
"type": "boolean"
},
"key_k05": {
... | {"dim_g88": "https://api.com/v1", "val_k29": "False", "key_k05": "2026-05-26T18:16:00Z", "key_f88": true, "key_s08": "world", "val_l47": {"param_n40": "2024-01-15", "field_s03": [609, 805, 872], "dim_b11": ["option_b"]}, "dim_w85": "info"} | Field 'val_k29' must be boolean, got string | {"dim_g88":"https://api.com/v1","val_k29":false,"key_k05":"2026-05-26T18:16:00Z","key_f88":true,"key_s08":"world","val_l47":{"param_n40":"2024-01-15","field_s03":[609,805,872],"dim_b11":["option_b"]},"dim_w85":"info"} |
TASK repair_structured_output
SPEC
FIELD col_t53 TYPE string VALUES level_1|level_2|level_3|level_4|level_5|level_6 REQUIRED no
FIELD dim_s05 TYPE string VALUES level_1|level_2|level_3|level_4|level_5|level_6 REQUIRED no
FIELD field_y70 TYPE integer REQUIRED no
FIELD dim_l90 TYPE null REQUIRED yes
FIELD col_y57.prop_t... | {"col_t53":"level_3","dim_s05":"level_1","dim_l90":null,"col_y57":{"prop_t02":"pending","val_y15":"type_e","key_m41":{"key_t13":388.24,"val_b50":"type_b","dim_d11":"cat_f"}},"param_i32":153,"field_a30":"large","prop_n14":"chr1"} | partial_structure | {
"type": "object",
"properties": {
"col_t53": {
"type": "string",
"enum": [
"level_1",
"level_2",
"level_3",
"level_4",
"level_5",
"level_6"
]
},
"dim_s05": {
"type": "string",
"enum": [
"level_1",
"level_2",
... | The col_t53 is level_3 and {"col_t53":"level_3","dim_s05":"level_1","dim_l90":null,"col_y57":{"prop_t02":"pending","val_y15":"type_e","key_m41":{"key_t13":388.24,"val_b50":"type_b","dim_d11":"cat_f"}},"param_i32":153,"field_a30":"large","prop_n14":"chr1"} | Output mixes natural language with JSON | {"col_t53":"level_3","dim_s05":"level_1","dim_l90":null,"col_y57":{"prop_t02":"pending","val_y15":"type_e","key_m41":{"key_t13":388.24,"val_b50":"type_b","dim_d11":"cat_f"}},"param_i32":153,"field_a30":"large","prop_n14":"chr1"} |
TASK repair_structured_output
SPEC
FIELD col_x15 TYPE string_date-time REQUIRED yes
FIELD field_d53 TYPE string REQUIRED no
FIELD key_h42 TYPE string VALUES admin|editor|viewer REQUIRED yes
FIELD key_a16.attr_m00 TYPE string_uri REQUIRED no
FIELD key_a16.prop_f54 TYPE string VALUES mode_a|mode_b|mode_c|mode_d REQUIRED... | {"col_x15":"2023-03-08T17:44:00Z","field_d53":"FWD","key_h42":"admin","key_a16":{"attr_m00":"https://data.org/v1","prop_f54":"mode_d","key_z77":"user@domain.com","prop_i66":{"dim_z03":314,"attr_f18":"test@test.io","prop_a71":"admin@example.com"},"prop_d35":"option_a","key_a97":119.52,"val_a16":"level_1"},"param_d16":"G... | truncated_object | {
"type": "object",
"properties": {
"col_x15": {
"type": "string",
"format": "date-time"
},
"field_d53": {
"type": "string"
},
"key_h42": {
"type": "string",
"enum": [
"admin",
"editor",
"viewer"
]
},
"key_a16": {
"type": ... | {"col_x15":"2023-03-08T17:44:00Z","field_d53":"FWD","key_h42":"admin","key_a16":{"attr_m00":"https://data.org/v1","prop_f54":"mode_d","key_z77":"user@domain.com","prop_i66":{"dim_z03":314,"attr_f18":"test@test.io","prop_a71":"admin@example.com"},"prop_d35":"option_a","key_a97":119.52,"val_a16":"level_1"},"param_d16":"G... | Unexpected end of JSON input — truncated object | {"col_x15":"2023-03-08T17:44:00Z","field_d53":"FWD","key_h42":"admin","key_a16":{"attr_m00":"https://data.org/v1","prop_f54":"mode_d","key_z77":"user@domain.com","prop_i66":{"dim_z03":314,"attr_f18":"test@test.io","prop_a71":"admin@example.com"},"prop_d35":"option_a","key_a97":119.52,"val_a16":"level_1"},"param_d16":"G... |
TASK repair_structured_output
SPEC
FIELD attr_r44 TYPE string REQUIRED yes
FIELD attr_v88 TYPE string VALUES mode_a|mode_b REQUIRED no
FIELD col_n34 TYPE boolean REQUIRED yes
FIELD prop_p91.prop_b07 TYPE string VALUES level_1|level_2|level_3|level_4|level_5 REQUIRED yes
FIELD prop_p91.attr_d79 TYPE boolean REQUIRED no... | {"attr_r44":"2024-06-30","attr_v88":"mode_a","col_n34":true,"prop_p91":{"prop_b07":"level_2","attr_d79":false,"dim_f08":441,"val_i35":null,"param_m87":{"col_g06":"mode_e","col_d70":"pending_review"},"key_s68":"push"},"col_q14":22.52} | single_quotes | {
"type": "object",
"properties": {
"attr_r44": {
"type": "string"
},
"attr_v88": {
"type": "string",
"enum": [
"mode_a",
"mode_b"
]
},
"col_n34": {
"type": "boolean"
},
"prop_p91": {
"type": "object",
"properties": {
"pro... | {'attr_r44':'2024-06-30','attr_v88':'mode_a','col_n34':true,'prop_p91':{'prop_b07':'level_2','attr_d79':false,'dim_f08':441,'val_i35':null,'param_m87':{'col_g06':'mode_e','col_d70':'pending_review'},'key_s68':'push'},'col_q14':22.52} | Expecting property name enclosed in double quotes | {"attr_r44":"2024-06-30","attr_v88":"mode_a","col_n34":true,"prop_p91":{"prop_b07":"level_2","attr_d79":false,"dim_f08":441,"val_i35":null,"param_m87":{"col_g06":"mode_e","col_d70":"pending_review"},"key_s68":"push"},"col_q14":22.52} |
TASK repair_structured_output
SPEC
FIELD company TYPE string REQUIRED no
FIELD branch TYPE null REQUIRED yes
FIELD address TYPE string REQUIRED no
FIELD height TYPE string VALUES new|in_transit|delivered|returned REQUIRED no
FIELD maturity_date TYPE integer REQUIRED no
FIELD start_date TYPE string VALUES pending_revie... | {"company":"2023-12-25","branch":null,"height":"new","maturity_date":328,"start_date":"confirmed"} | tool_call_partial_args | {
"type": "object",
"properties": {
"company": {
"type": "string"
},
"branch": {
"type": "null"
},
"address": {
"type": "string"
},
"height": {
"type": "string",
"enum": [
"new",
"in_transit",
"delivered",
"returned"
]
... | I need to look up the information first.
Action: apply_discount
Arguments: {"company": "2023-12-25", "height": "new", "maturity_date": 328, "start_date": "confirmed"} | Agent tool call missing required parameter 'branch' | {"company":"2023-12-25","branch":null,"height":"new","maturity_date":328,"start_date":"confirmed"} |
TASK repair_structured_output
SPEC
FIELD prop_t59 TYPE string VALUES option_a|option_b|option_c|option_d|option_e|option_f REQUIRED yes
FIELD attr_d13 TYPE string VALUES draft|published|archived REQUIRED yes
FIELD attr_k08 TYPE string VALUES new|in_transit|delivered|returned REQUIRED yes
BROKEN_OUTPUT
{"prop_t59":"op... | {"prop_t59":"option_d","attr_d13":"draft","attr_k08":"delivered"} | truncated_array | {
"type": "object",
"properties": {
"prop_t59": {
"type": "string",
"enum": [
"option_a",
"option_b",
"option_c",
"option_d",
"option_e",
"option_f"
]
},
"attr_d13": {
"type": "string",
"enum": [
"draft",
"publ... | {"prop_t59":"option_d","attr_d13":"draft","attr_k08":"delivered" | Unexpected end of JSON input — truncated object | {"prop_t59":"option_d","attr_d13":"draft","attr_k08":"delivered"} |
TASK repair_structured_output
SPEC
FIELD shipping TYPE integer REQUIRED no
FIELD count TYPE string VALUES level_1|level_2|level_3|level_4|level_5 REQUIRED yes
FIELD batch_code[] TYPE boolean REQUIRED yes
FIELD aligned_pct[] TYPE string REQUIRED no
BROKEN_OUTPUT
Let me check the system.
Action: create_ticket
Arguments... | {"shipping":983,"count":"level_5","batch_code":[true,true,false],"aligned_pct":["hello","Alice"]} | tool_call_partial_args | {
"type": "object",
"properties": {
"shipping": {
"type": "integer"
},
"count": {
"type": "string",
"enum": [
"level_1",
"level_2",
"level_3",
"level_4",
"level_5"
]
},
"batch_code": {
"type": "array",
"items": {
... | Let me check the system.
Action: create_ticket
Arguments: {"shipping": 983, "batch_code": [true, true, false], "aligned_pct": ["hello", "Alice"]} | Agent tool call missing required parameter 'count' | {"shipping":983,"count":"level_5","batch_code":[true,true,false],"aligned_pct":["hello","Alice"]} |
TASK repair_structured_output
SPEC
FIELD prop_o75 TYPE string VALUES free|basic|pro|enterprise REQUIRED no
FIELD col_s35 TYPE string VALUES coastal|oceanic|inland|arctic REQUIRED no
FIELD field_c67 TYPE null REQUIRED yes
FIELD dim_d07 TYPE string REQUIRED no
FIELD col_r00 TYPE string REQUIRED no
FIELD dim_z97 TYPE int... | {"prop_o75":"enterprise","field_c67":null,"dim_d07":"world","col_r00":"New York","dim_z97":121,"val_o74":"Jane"} | unquoted_keys | {
"type": "object",
"properties": {
"prop_o75": {
"type": "string",
"enum": [
"free",
"basic",
"pro",
"enterprise"
]
},
"col_s35": {
"type": "string",
"enum": [
"coastal",
"oceanic",
"inland",
"arctic"
]
... | {prop_o75:"enterprise",field_c67:null,dim_d07:"world",col_r00:"New York",dim_z97:121,val_o74:"Jane"} | Expecting property name enclosed in double quotes | {"prop_o75":"enterprise","field_c67":null,"dim_d07":"world","col_r00":"New York","dim_z97":121,"val_o74":"Jane"} |
TASK repair_structured_output
SPEC
FIELD terminal_id.label TYPE number REQUIRED yes
FIELD terminal_id.type TYPE integer REQUIRED yes
FIELD terminal_id.address TYPE integer REQUIRED yes
FIELD patient_id TYPE string_email REQUIRED yes
FIELD type.velocity TYPE string VALUES draft|published|archived REQUIRED yes
FIELD typ... | {"terminal_id":{"label":951.45,"type":3,"address":842},"patient_id":"user@test.io","type":{"velocity":"draft","yield_pct":943,"humidity_pct":"JPY","date":"Sao Paulo","full_name":true,"longitude":"GBP","updated_at":"user@domain.com","image_url":{"shift_code":"BRL","email":"maintenance","account_id":"intermittent","compo... | single_quotes | {
"type": "object",
"properties": {
"terminal_id": {
"type": "object",
"properties": {
"label": {
"type": "number"
},
"type": {
"type": "integer"
},
"address": {
"type": "integer"
}
},
"required": [
"la... | {'terminal_id':{'label':951.45,'type':3,'address':842},'patient_id':'user@test.io','type':{'velocity':'draft','yield_pct':943,'humidity_pct':'JPY','date':'Sao Paulo','full_name':true,'longitude':'GBP','updated_at':'user@domain.com','image_url':{'shift_code':'BRL','email':'maintenance','account_id':'intermittent','compo... | Expecting property name enclosed in double quotes | {"terminal_id":{"label":951.45,"type":3,"address":842},"patient_id":"user@test.io","type":{"velocity":"draft","yield_pct":943,"humidity_pct":"JPY","date":"Sao Paulo","full_name":true,"longitude":"GBP","updated_at":"user@domain.com","image_url":{"shift_code":"BRL","email":"maintenance","account_id":"intermittent","compo... |
TASK repair_structured_output
SPEC
FIELD val_v11 TYPE string VALUES small|medium|large|xl REQUIRED yes
FIELD param_g67 TYPE string REQUIRED yes
FIELD col_c48 TYPE string VALUES email|phone|sms|push REQUIRED no
FIELD col_s08 TYPE string REQUIRED no
FIELD param_k23.dim_b06 TYPE boolean REQUIRED no
FIELD param_k23.prop_z... | {"val_v11":"large","param_g67":"approved","col_c48":"push","col_s08":"A short description.","param_k23":{"dim_b06":true,"prop_z87":"quux","key_o13":"MV-Evergreen-01","field_l16":{"field_b70":"pro","attr_f23":"foo","key_r35":"example","col_e04":"viewer","attr_c03":"approved","param_n54":"Bob","field_p78":true},"prop_w35... | tool_call_wrong_param | {
"type": "object",
"properties": {
"val_v11": {
"type": "string",
"enum": [
"small",
"medium",
"large",
"xl"
]
},
"param_g67": {
"type": "string"
},
"col_c48": {
"type": "string",
"enum": [
"email",
"phone",
... | Tool: validate_address
Params: {"param_g67": "approved", "col_c48": "push", "col_s08": "A short description.", "param_k23": {"dim_b06": true, "prop_z87": "quux", "key_o13": "MV-Evergreen-01", "field_l16": {"field_b70": "pro", "attr_f23": "foo", "key_r35": "example", "col_e04": "viewer", "attr_c03": "approved", "param_n... | Agent used wrong parameter name 'val_v11_new' instead of 'val_v11' | {"val_v11":"large","param_g67":"approved","col_c48":"push","col_s08":"A short description.","param_k23":{"dim_b06":true,"prop_z87":"quux","key_o13":"MV-Evergreen-01","field_l16":{"field_b70":"pro","attr_f23":"foo","key_r35":"example","col_e04":"viewer","attr_c03":"approved","param_n54":"Bob","field_p78":true},"prop_w35... |
TASK repair_structured_output
SPEC
FIELD filter_flag TYPE string REQUIRED yes
FIELD status_code TYPE integer REQUIRED no
FIELD brake_pressure.current_draw TYPE string VALUES success|error|warning|info REQUIRED no
FIELD brake_pressure.phenotype TYPE boolean REQUIRED yes
FIELD brake_pressure.freight_class TYPE integer R... | {"filter_flag":"GRCh38","brake_pressure":{"current_draw":"warning","phenotype":true,"freight_class":308,"log_level":"https://data.io/v1","score":"approved","deploy_target":"foo"}} | extra_text_after | {
"type": "object",
"properties": {
"filter_flag": {
"type": "string"
},
"status_code": {
"type": "integer"
},
"brake_pressure": {
"type": "object",
"properties": {
"current_draw": {
"type": "string",
"enum": [
"success",
... | {"filter_flag":"GRCh38","brake_pressure":{"current_draw":"warning","phenotype":true,"freight_class":308,"log_level":"https://data.io/v1","score":"approved","deploy_target":"foo"}}
Feel free to ask if you have questions. | Output contains non-JSON text after the object | {"filter_flag":"GRCh38","brake_pressure":{"current_draw":"warning","phenotype":true,"freight_class":308,"log_level":"https://data.io/v1","score":"approved","deploy_target":"foo"}} |
TASK repair_structured_output
SPEC
FIELD attr_t28 TYPE boolean REQUIRED yes
FIELD key_x51.dim_o69.prop_j00 TYPE string VALUES type_a|type_b|type_c REQUIRED no
FIELD key_x51.dim_o69.param_k02 TYPE string VALUES pending_review|confirmed|rejected|escalated REQUIRED yes
FIELD key_x51.dim_o69.attr_m62 TYPE string VALUES ty... | {"attr_t28":true,"key_x51":{"dim_o69":{"prop_j00":"type_a","param_k02":"escalated","attr_m62":"type_a"},"col_i04":null,"prop_f89":{"key_f92":"approved","prop_z99":"low","key_e91":null,"param_m67":942,"attr_o19":"2024-06-30","val_z12":"Berlin","col_r08":"admin@test.io"},"attr_n24":714},"key_b75":null,"val_x76":"https://... | tool_call_text_mix | {
"type": "object",
"properties": {
"attr_t28": {
"type": "boolean"
},
"key_x51": {
"type": "object",
"properties": {
"dim_o69": {
"type": "object",
"properties": {
"prop_j00": {
"type": "string",
"enum": [
... | Processing the request now.
<tool_call name="validate_address">
{"attr_t28":true,"key_x51":{"dim_o69":{"prop_j00":"type_a","param_k02":"escalated","attr_m62":"type_a"},"col_i04":null,"prop_f89":{"key_f92":"approved","prop_z99":"low","key_e91":null,"param_m67":942,"attr_o19":"2024-06-30","val_z12":"Berlin","col_r08":"ad... | Agent response mixes reasoning text with tool call | {"attr_t28":true,"key_x51":{"dim_o69":{"prop_j00":"type_a","param_k02":"escalated","attr_m62":"type_a"},"col_i04":null,"prop_f89":{"key_f92":"approved","prop_z99":"low","key_e91":null,"param_m67":942,"attr_o19":"2024-06-30","val_z12":"Berlin","col_r08":"admin@test.io"},"attr_n24":714},"key_b75":null,"val_x76":"https://... |
TASK repair_structured_output
SPEC
FIELD compound TYPE string VALUES mode_a|mode_b REQUIRED no
FIELD tags TYPE string VALUES open|in_progress|resolved|closed REQUIRED no
FIELD items TYPE integer REQUIRED yes
FIELD size TYPE number REQUIRED no
FIELD tile TYPE number REQUIRED no
FIELD discount.image_url TYPE null REQUIR... | {"tags":"open","items":713,"size":942.65,"tile":97.11,"discount":{"image_url":null,"bill_of_lading":125,"company":{"medication":2,"email":513,"gene_id":"option_d","repository":"Bob"},"umi":770},"id":"https://www.com/v1"} | markdown_explanation | {
"type": "object",
"properties": {
"compound": {
"type": "string",
"enum": [
"mode_a",
"mode_b"
]
},
"tags": {
"type": "string",
"enum": [
"open",
"in_progress",
"resolved",
"closed"
]
},
"items": {
"type"... | The parsed result is:
```json
{"tags":"open","items":713,"size":942.65,"tile":97.11,"discount":{"image_url":null,"bill_of_lading":125,"company":{"medication":2,"email":513,"gene_id":"option_d","repository":"Bob"},"umi":770},"id":"https://www.com/v1"}
```
Analysis finished. | Output contains markdown and explanatory text around JSON | {"tags":"open","items":713,"size":942.65,"tile":97.11,"discount":{"image_url":null,"bill_of_lading":125,"company":{"medication":2,"email":513,"gene_id":"option_d","repository":"Bob"},"umi":770},"id":"https://www.com/v1"} |
TASK repair_structured_output
SPEC
FIELD filter_flag TYPE string VALUES option_a|option_b REQUIRED no
FIELD country.label TYPE string REQUIRED yes
FIELD country.title.bed_number TYPE integer REQUIRED yes
FIELD country.title.size TYPE null REQUIRED no
FIELD country.title.nickname[] TYPE string VALUES success|error|warn... | {"country":{"label":"A short description.","title":{"bed_number":320,"nickname":["success"]}},"strand":"2024-01-15","payment_status":"qux"} | extra_field | {
"type": "object",
"properties": {
"filter_flag": {
"type": "string",
"enum": [
"option_a",
"option_b"
]
},
"country": {
"type": "object",
"properties": {
"label": {
"type": "string"
},
"title": {
"type": "object"... | {"country": {"label": "A short description.", "title": {"bed_number": 320, "nickname": ["success"]}}, "strand": "2024-01-15", "payment_status": "qux", "extra_info_2610": "unexpected"} | Unknown field 'extra_info_2610' not defined in schema | {"country":{"label":"A short description.","title":{"bed_number":320,"nickname":["success"]}},"strand":"2024-01-15","payment_status":"qux"} |
TASK repair_structured_output
SPEC
FIELD param_o56.key_b10 TYPE string VALUES coastal|oceanic|inland|arctic REQUIRED yes
FIELD param_o56.key_z86 TYPE integer REQUIRED no
FIELD param_o56.dim_b58 TYPE integer REQUIRED no
FIELD param_o56.field_x94 TYPE string VALUES synonymous|missense|nonsense|frameshift REQUIRED no
FIE... | {"param_o56":{"key_b10":"oceanic","key_z86":103,"field_x94":"frameshift","param_v85":null,"col_c70":"ops@domain.org"},"val_v76":"QC-07","val_e55":null} | missing_required | {
"type": "object",
"properties": {
"param_o56": {
"type": "object",
"properties": {
"key_b10": {
"type": "string",
"enum": [
"coastal",
"oceanic",
"inland",
"arctic"
]
},
"key_z86": {
"ty... | {"val_v76": "QC-07", "val_e55": null} | Required field 'param_o56' is missing | {"param_o56":{"key_b10":"oceanic","key_z86":103,"field_x94":"frameshift","param_v85":null,"col_c70":"ops@domain.org"},"val_v76":"QC-07","val_e55":null} |
TASK repair_structured_output
SPEC
FIELD vital_sign TYPE string REQUIRED no
FIELD strand TYPE string_date-time REQUIRED no
FIELD url TYPE string VALUES option_a|option_b|option_c REQUIRED yes
FIELD throttle_pos TYPE string REQUIRED no
FIELD width TYPE integer REQUIRED yes
FIELD cargo_type TYPE number REQUIRED no
BROK... | {"vital_sign":"Bob","strand":"2024-03-11T04:52:00Z","url":"option_c","width":740,"cargo_type":284.56} | agent_chain | {
"type": "object",
"properties": {
"vital_sign": {
"type": "string"
},
"strand": {
"type": "string",
"format": "date-time"
},
"url": {
"type": "string",
"enum": [
"option_a",
"option_b",
"option_c"
]
},
"throttle_pos": {
... | Let me check the system.
Action: update_preferences
Result: {"vital_sign": "Bob", "strand": "2024-03-11T04:52:00Z", "url": "option_c", "width": 740}
Processing the request now.
Action: get_account
Result: | Agent multi-step chain with truncated tool output | {"vital_sign":"Bob","strand":"2024-03-11T04:52:00Z","url":"option_c","width":740,"cargo_type":284.56} |
TASK repair_structured_output
SPEC
FIELD commit_hash TYPE string VALUES berthed|anchored|underway|moored REQUIRED yes
FIELD due_date TYPE string VALUES coastal|oceanic|inland|arctic REQUIRED yes
FIELD status TYPE null REQUIRED yes
FIELD zip_code TYPE boolean REQUIRED no
BROKEN_OUTPUT
{"commit_hash":"berthed","due_dat... | {"commit_hash":"berthed","due_date":"arctic","status":null,"zip_code":false} | missing_bracket | {
"type": "object",
"properties": {
"commit_hash": {
"type": "string",
"enum": [
"berthed",
"anchored",
"underway",
"moored"
]
},
"due_date": {
"type": "string",
"enum": [
"coastal",
"oceanic",
"inland",
"arcti... | {"commit_hash":"berthed","due_date":"arctic","status":null,"zip_code":false} | Missing closing bracket | {"commit_hash":"berthed","due_date":"arctic","status":null,"zip_code":false} |
TASK repair_structured_output
SPEC
FIELD email TYPE null REQUIRED no
FIELD transaction_id TYPE string VALUES mode_a|mode_b REQUIRED yes
FIELD image_url TYPE string VALUES mode_a|mode_b|mode_c|mode_d|mode_e|mode_f REQUIRED no
FIELD vital_sign TYPE string VALUES mode_a|mode_b REQUIRED yes
BROKEN_OUTPUT
{"email": null, ... | {"email":null,"transaction_id":"mode_a","vital_sign":"mode_a"} | missing_required | {
"type": "object",
"properties": {
"email": {
"type": "null"
},
"transaction_id": {
"type": "string",
"enum": [
"mode_a",
"mode_b"
]
},
"image_url": {
"type": "string",
"enum": [
"mode_a",
"mode_b",
"mode_c",
"m... | {"email": null, "vital_sign": "mode_a"} | Required field 'transaction_id' is missing | {"email":null,"transaction_id":"mode_a","vital_sign":"mode_a"} |
TASK repair_structured_output
SPEC
FIELD attr_u16 TYPE string REQUIRED yes
FIELD prop_k20 TYPE string VALUES USD|EUR|GBP|BRL|JPY REQUIRED no
FIELD col_q48 TYPE string REQUIRED no
FIELD dim_o86 TYPE integer REQUIRED no
FIELD prop_j01 TYPE number REQUIRED no
FIELD val_s21 TYPE string REQUIRED no
BROKEN_OUTPUT
Let me ch... | {"attr_u16":"demo","dim_o86":129,"prop_j01":42.47,"val_s21":"Oliveira"} | agent_chain | {
"type": "object",
"properties": {
"attr_u16": {
"type": "string"
},
"prop_k20": {
"type": "string",
"enum": [
"USD",
"EUR",
"GBP",
"BRL",
"JPY"
]
},
"col_q48": {
"type": "string"
},
"dim_o86": {
"type": "intege... | Let me check the system.
Action: create_order
Result: {"attr_u16": "demo", "dim_o86": 129, "val_s21": "Oliveira"}
I'll query our database.
Action: process_payment
Result: | Agent multi-step chain with truncated tool output | {"attr_u16":"demo","dim_o86":129,"prop_j01":42.47,"val_s21":"Oliveira"} |
TASK repair_structured_output
SPEC
FIELD deploy_target.ward TYPE string_email REQUIRED yes
FIELD deploy_target.step TYPE string VALUES open|in_progress|resolved|closed REQUIRED no
FIELD deploy_target.commit_hash TYPE integer REQUIRED no
FIELD zip_code TYPE string REQUIRED no
FIELD filter_flag TYPE integer REQUIRED yes... | {"zip_code":"London","filter_flag":954,"coverage":888,"category":null} | missing_bracket | {
"type": "object",
"properties": {
"deploy_target": {
"type": "object",
"properties": {
"ward": {
"type": "string",
"format": "email"
},
"step": {
"type": "string",
"enum": [
"open",
"in_progress",
"... | {"zip_code":"London","filter_flag":954,"coverage":888,"category":null} | Missing closing bracket | {"zip_code":"London","filter_flag":954,"coverage":888,"category":null} |
TASK repair_structured_output
SPEC
FIELD pressure_kpa TYPE string_date-time REQUIRED no
FIELD email TYPE string REQUIRED yes
FIELD image_url TYPE string REQUIRED no
BROKEN_OUTPUT
Tool: search
Params: {"email": "Alice", "image_url": "cancelled", "pressure_kpa_id": "2025-04-18T19:20:00Z"} | {"pressure_kpa":"2025-04-18T19:20:00Z","email":"Alice","image_url":"cancelled"} | tool_call_wrong_param | {
"type": "object",
"properties": {
"pressure_kpa": {
"type": "string",
"format": "date-time"
},
"email": {
"type": "string"
},
"image_url": {
"type": "string"
}
},
"required": [
"email"
]
} | Tool: search
Params: {"email": "Alice", "image_url": "cancelled", "pressure_kpa_id": "2025-04-18T19:20:00Z"} | Agent used wrong parameter name 'pressure_kpa_id' instead of 'pressure_kpa' | {"pressure_kpa":"2025-04-18T19:20:00Z","email":"Alice","image_url":"cancelled"} |
TASK repair_structured_output
SPEC
FIELD procedure_code TYPE integer REQUIRED no
FIELD language.currency TYPE string VALUES reliable|unstable|intermittent REQUIRED yes
FIELD language.interest_rate TYPE string VALUES draft|published|archived REQUIRED yes
FIELD language.size TYPE string VALUES active|inactive|pending RE... | {"procedure_code":590,"language":{"currency":"reliable","interest_rate":"archived","label":"error","full_name":178},"maturity_date":245.74,"ward":44.59} | truncated_array | {
"type": "object",
"properties": {
"procedure_code": {
"type": "integer"
},
"language": {
"type": "object",
"properties": {
"currency": {
"type": "string",
"enum": [
"reliable",
"unstable",
"intermittent"
]
... | {"procedure_code":590,"language":{"currency":"reliable","interest_rate":"archived","label":"error","full_name":178},"maturity_date":245.74,"ward":44.59 | Unexpected end of JSON input — truncated object | {"procedure_code":590,"language":{"currency":"reliable","interest_rate":"archived","label":"error","full_name":178},"maturity_date":245.74,"ward":44.59} |
TASK repair_structured_output
SPEC
FIELD dim_e91 TYPE string VALUES level_1|level_2 REQUIRED yes
FIELD field_x50 TYPE integer REQUIRED no
FIELD field_x38 TYPE integer REQUIRED no
FIELD attr_x77 TYPE boolean REQUIRED no
BROKEN_OUTPUT
{"dim_e91": "level_2", "field_x50": 382, "field_x38": 479, "extra_field_4301": "unexp... | {"dim_e91":"level_2","field_x50":382,"field_x38":479} | extra_field | {
"type": "object",
"properties": {
"dim_e91": {
"type": "string",
"enum": [
"level_1",
"level_2"
]
},
"field_x50": {
"type": "integer"
},
"field_x38": {
"type": "integer"
},
"attr_x77": {
"type": "boolean"
}
},
"required": [
... | {"dim_e91": "level_2", "field_x50": 382, "field_x38": 479, "extra_field_4301": "unexpected"} | Unknown field 'extra_field_4301' not defined in schema | {"dim_e91":"level_2","field_x50":382,"field_x38":479} |
TASK repair_structured_output
SPEC
FIELD shipping TYPE string_email REQUIRED no
FIELD notes TYPE string_date-time REQUIRED no
FIELD position TYPE string REQUIRED yes
FIELD tax TYPE string REQUIRED yes
FIELD role TYPE string REQUIRED yes
FIELD chromosome TYPE number REQUIRED no
FIELD image_url TYPE string REQUIRED no
F... | {"shipping":"ops@example.com","notes":"2025-08-18T00:29:00Z","position":"London","tax":"London","role":"2024-06-30","chromosome":454.53,"image_url":"Jane","half_life":{"hazmat_code":"FWD","loan_amount":null,"price":18,"order_id":true,"batch_code":"admin"}} | markdown_explanation | {
"type": "object",
"properties": {
"shipping": {
"type": "string",
"format": "email"
},
"notes": {
"type": "string",
"format": "date-time"
},
"position": {
"type": "string"
},
"tax": {
"type": "string"
},
"role": {
"type": "string"
}... | Here is the response in the requested format:
```json
{"shipping":"ops@example.com","notes":"2025-08-18T00:29:00Z","position":"London","tax":"London","role":"2024-06-30","chromosome":454.53,"image_url":"Jane","half_life":{"hazmat_code":"FWD","loan_amount":null,"price":18,"order_id":true,"batch_code":"admin"}}
```
Feel ... | Output contains markdown and explanatory text around JSON | {"shipping":"ops@example.com","notes":"2025-08-18T00:29:00Z","position":"London","tax":"London","role":"2024-06-30","chromosome":454.53,"image_url":"Jane","half_life":{"hazmat_code":"FWD","loan_amount":null,"price":18,"order_id":true,"batch_code":"admin"}} |
TASK repair_structured_output
SPEC
FIELD val_k22 TYPE string VALUES open|in_progress|resolved|closed REQUIRED no
FIELD col_n76 TYPE string VALUES success|error|warning|info REQUIRED no
FIELD col_n09 TYPE boolean REQUIRED no
FIELD key_r98 TYPE number REQUIRED yes
FIELD key_l02 TYPE null REQUIRED no
FIELD col_x87 TYPE n... | {"val_k22":"open","col_n76":"info","key_r98":291.17,"key_l02":null,"col_x87":493.99} | tool_call_text_mix | {
"type": "object",
"properties": {
"val_k22": {
"type": "string",
"enum": [
"open",
"in_progress",
"resolved",
"closed"
]
},
"col_n76": {
"type": "string",
"enum": [
"success",
"error",
"warning",
"info"
... | I need to look up the information first.
<tool_call name="run_diagnostics">
{"val_k22":"open","col_n76":"info","key_r98":291.17,"key_l02":null,"col_x87":493.99}
</tool_call.
The result is ready. | Agent response mixes reasoning text with tool call | {"val_k22":"open","col_n76":"info","key_r98":291.17,"key_l02":null,"col_x87":493.99} |
TASK repair_structured_output
SPEC
FIELD attr_o75 TYPE string VALUES active|inactive|pending REQUIRED yes
FIELD dim_p94 TYPE string_email REQUIRED yes
FIELD key_g18.key_w39 TYPE string VALUES single|married|divorced REQUIRED yes
FIELD key_g18.key_f80 TYPE integer REQUIRED yes
FIELD key_g18.col_j38 TYPE string_email RE... | {"attr_o75":"pending","dim_p94":"user@example.com","key_g18":{"key_w39":"divorced","key_f80":530,"col_j38":"info@example.com","key_m45":441}} | single_quotes | {
"type": "object",
"properties": {
"attr_o75": {
"type": "string",
"enum": [
"active",
"inactive",
"pending"
]
},
"dim_p94": {
"type": "string",
"format": "email"
},
"key_g18": {
"type": "object",
"properties": {
"key_w39... | {'attr_o75':'pending','dim_p94':'user@example.com','key_g18':{'key_w39':'divorced','key_f80':530,'col_j38':'info@example.com','key_m45':441}} | Expecting property name enclosed in double quotes | {"attr_o75":"pending","dim_p94":"user@example.com","key_g18":{"key_w39":"divorced","key_f80":530,"col_j38":"info@example.com","key_m45":441}} |
TASK repair_structured_output
SPEC
FIELD span_id TYPE string VALUES USD|EUR|GBP|BRL|JPY REQUIRED no
FIELD vital_sign TYPE string VALUES open|in_progress|resolved|closed REQUIRED no
FIELD phone TYPE string REQUIRED yes
FIELD throttle_pos TYPE string REQUIRED yes
FIELD tags TYPE boolean REQUIRED no
FIELD due_date TYPE n... | {"span_id":"GBP","vital_sign":"closed","phone":"example","throttle_pos":"RTG-04","tags":true,"due_date":null,"altitude":"Luis"} | tool_call_python_syntax | {
"type": "object",
"properties": {
"span_id": {
"type": "string",
"enum": [
"USD",
"EUR",
"GBP",
"BRL",
"JPY"
]
},
"vital_sign": {
"type": "string",
"enum": [
"open",
"in_progress",
"resolved",
"closed... | call_variants(span_id='GBP', vital_sign='closed', phone='example', throttle_pos='RTG-04', tags=True, due_date=None, altitude='Luis') | Tool call uses Python syntax instead of JSON | {"span_id":"GBP","vital_sign":"closed","phone":"example","throttle_pos":"RTG-04","tags":true,"due_date":null,"altitude":"Luis"} |
TASK repair_structured_output
SPEC
FIELD department TYPE string_date-time REQUIRED yes
FIELD tile TYPE string VALUES type_a|type_b|type_c|type_d|type_e|type_f REQUIRED no
FIELD language TYPE integer REQUIRED no
FIELD account_id TYPE boolean REQUIRED no
BROKEN_OUTPUT
delete_item(department='2021-03-02T07:25:00Z', tile... | {"department":"2021-03-02T07:25:00Z","tile":"type_c","account_id":true} | tool_call_python_syntax | {
"type": "object",
"properties": {
"department": {
"type": "string",
"format": "date-time"
},
"tile": {
"type": "string",
"enum": [
"type_a",
"type_b",
"type_c",
"type_d",
"type_e",
"type_f"
]
},
"language": {
"... | delete_item(department='2021-03-02T07:25:00Z', tile='type_c', account_id=True) | Tool call uses Python syntax instead of JSON | {"department":"2021-03-02T07:25:00Z","tile":"type_c","account_id":true} |
TASK repair_structured_output
SPEC
FIELD maturity_date TYPE string VALUES mode_a|mode_b|mode_c|mode_d|mode_e|mode_f REQUIRED no
FIELD state TYPE string VALUES operational|degraded|offline|maintenance REQUIRED yes
FIELD title TYPE string VALUES berthed|anchored|underway|moored REQUIRED yes
FIELD latitude TYPE number RE... | {"maturity_date":"mode_b","state":"degraded","title":"anchored","latitude":756.01} | tool_call_text_mix | {
"type": "object",
"properties": {
"maturity_date": {
"type": "string",
"enum": [
"mode_a",
"mode_b",
"mode_c",
"mode_d",
"mode_e",
"mode_f"
]
},
"state": {
"type": "string",
"enum": [
"operational",
"degraded... | Processing the request now.
<tool_call name="update_record">
{"maturity_date":"mode_b","state":"degraded","title":"anchored","latitude":756.01}
</tool_call.
Operation completed. | Agent response mixes reasoning text with tool call | {"maturity_date":"mode_b","state":"degraded","title":"anchored","latitude":756.01} |
TASK repair_structured_output
SPEC
FIELD yield_pct TYPE string VALUES type_a|type_b|type_c|type_d|type_e REQUIRED no
FIELD options TYPE number REQUIRED no
FIELD user_id TYPE string REQUIRED no
FIELD label.batch_code TYPE string VALUES homozygous|heterozygous|hemizygous REQUIRED yes
FIELD label.vital_sign TYPE string V... | {"yield_pct":"type_b","options":644.77,"user_id":"2024-06-30","diagnosis_code":922,"isotope":"PASS"} | wrong_type | {
"type": "object",
"properties": {
"yield_pct": {
"type": "string",
"enum": [
"type_a",
"type_b",
"type_c",
"type_d",
"type_e"
]
},
"options": {
"type": "number"
},
"user_id": {
"type": "string"
},
"label": {
"t... | {"yield_pct": "type_b", "options": "\"644.77\"", "user_id": "2024-06-30", "diagnosis_code": 922, "isotope": "PASS"} | Field 'options' must be number, got string | {"yield_pct":"type_b","options":644.77,"user_id":"2024-06-30","diagnosis_code":922,"isotope":"PASS"} |
TASK repair_structured_output
SPEC
FIELD comments TYPE integer REQUIRED no
FIELD tile.decay_rate.index TYPE string REQUIRED no
FIELD tile.decay_rate.ward TYPE null REQUIRED yes
FIELD tile.decay_rate.lane TYPE string VALUES low|medium|high|critical REQUIRED no
FIELD tile.decay_rate.branch[] TYPE string REQUIRED yes
FIE... | {"comments":425,"tile":{"decay_rate":{"index":"Maria","ward":null,"lane":"high","branch":["Tokyo","inactive"]},"isotope":"ops@test.io","balance":377.04,"patient_id":"test@example.com"},"product_id":"white"} | single_quotes | {
"type": "object",
"properties": {
"comments": {
"type": "integer"
},
"tile": {
"type": "object",
"properties": {
"decay_rate": {
"type": "object",
"properties": {
"index": {
"type": "string"
},
"ward": {
... | {'comments':425,'tile':{'decay_rate':{'index':'Maria','ward':null,'lane':'high','branch':['Tokyo','inactive']},'isotope':'ops@test.io','balance':377.04,'patient_id':'test@example.com'},'product_id':'white'} | Expecting property name enclosed in double quotes | {"comments":425,"tile":{"decay_rate":{"index":"Maria","ward":null,"lane":"high","branch":["Tokyo","inactive"]},"isotope":"ops@test.io","balance":377.04,"patient_id":"test@example.com"},"product_id":"white"} |
TASK repair_structured_output
SPEC
FIELD key_p53 TYPE string VALUES homozygous|heterozygous|hemizygous REQUIRED no
FIELD key_d12 TYPE string VALUES mode_a|mode_b REQUIRED no
FIELD col_l56.prop_t87 TYPE string_date-time REQUIRED no
FIELD col_l56.col_i40 TYPE boolean REQUIRED yes
FIELD col_l56.param_p85 TYPE boolean REQ... | {"key_p53":"hemizygous","key_d12":"mode_b","col_l56":{"col_i40":true,"param_p85":true,"dim_q11":328.41,"attr_s72":"intermittent","param_o62":495,"field_r92":442,"key_m64":{"key_i61":"type_a","prop_o93":"reliable","param_d06":"Bob","field_b94":690.08}},"key_u76":"inactive","attr_w49":null,"key_z74":942} | tool_call_python_syntax | {
"type": "object",
"properties": {
"key_p53": {
"type": "string",
"enum": [
"homozygous",
"heterozygous",
"hemizygous"
]
},
"key_d12": {
"type": "string",
"enum": [
"mode_a",
"mode_b"
]
},
"col_l56": {
"type": "ob... | process_payment(key_p53='hemizygous', key_d12='mode_b', col_l56={'col_i40': True, 'param_p85': True, 'dim_q11': 328.41, 'attr_s72': 'intermittent', 'param_o62': 495, 'field_r92': 442, 'key_m64': {'key_i61': 'type_a', 'prop_o93': 'reliable', 'param_d06': 'Bob', 'field_b94': 690.08}}, key_u76='inactive', attr_w49=None, k... | Tool call uses Python syntax instead of JSON | {"key_p53":"hemizygous","key_d12":"mode_b","col_l56":{"col_i40":true,"param_p85":true,"dim_q11":328.41,"attr_s72":"intermittent","param_o62":495,"field_r92":442,"key_m64":{"key_i61":"type_a","prop_o93":"reliable","param_d06":"Bob","field_b94":690.08}},"key_u76":"inactive","attr_w49":null,"key_z74":942} |
TASK repair_structured_output
SPEC
FIELD half_life TYPE string REQUIRED yes
FIELD color TYPE integer REQUIRED no
FIELD velocity[] TYPE integer REQUIRED yes
FIELD invoice_id[].umi TYPE string REQUIRED no
FIELD invoice_id[].collateral TYPE string REQUIRED no
FIELD invoice_id[].invoice_id TYPE boolean REQUIRED no
FIELD i... | {"half_life":"https://example.com","color":990,"velocity":[631,449],"invoice_id":[{"collateral":"2024-01-15","balance":"cat_b","half_life":["https://data.org/data","https://data.com/api"]}]} | missing_brace | {
"type": "object",
"properties": {
"half_life": {
"type": "string"
},
"color": {
"type": "integer"
},
"velocity": {
"type": "array",
"items": {
"type": "integer"
}
},
"invoice_id": {
"type": "array",
"items": {
"type": "object",
... | {"half_life":"https://example.com","color":990,"velocity":[631,449],"invoice_id":[{"collateral":"2024-01-15","balance":"cat_b","half_life":["https://data.org/data","https://data.com/api"]}] | Missing closing brace | {"half_life":"https://example.com","color":990,"velocity":[631,449],"invoice_id":[{"collateral":"2024-01-15","balance":"cat_b","half_life":["https://data.org/data","https://data.com/api"]}]} |
TASK repair_structured_output
SPEC
FIELD longitude TYPE string REQUIRED no
FIELD status_code TYPE integer REQUIRED yes
FIELD insurance_id TYPE number REQUIRED no
FIELD message.chromosome TYPE string VALUES open|in_progress|resolved|closed REQUIRED no
FIELD message.bed_number TYPE boolean REQUIRED no
FIELD message.temp... | {"longitude":"demo","status_code":792,"version":"warning"} | extra_field | {
"type": "object",
"properties": {
"longitude": {
"type": "string"
},
"status_code": {
"type": "integer"
},
"insurance_id": {
"type": "number"
},
"message": {
"type": "object",
"properties": {
"chromosome": {
"type": "string",
"e... | {"longitude": "demo", "status_code": 792, "version": "warning", "extra_value_423": "unexpected"} | Unknown field 'extra_value_423' not defined in schema | {"longitude":"demo","status_code":792,"version":"warning"} |
TASK repair_structured_output
SPEC
FIELD branch TYPE string REQUIRED yes
FIELD zip_code TYPE string VALUES mode_a|mode_b|mode_c REQUIRED no
FIELD notes TYPE string VALUES admin|editor|viewer REQUIRED no
FIELD shipper_ref TYPE string VALUES option_a|option_b|option_c REQUIRED no
FIELD collateral TYPE number REQUIRED no... | {"branch":"RTG-04","zip_code":"mode_c","notes":"admin","shipper_ref":"option_a","collateral":655.96,"turbidity":"type_a"} | invalid_enum | {
"type": "object",
"properties": {
"branch": {
"type": "string"
},
"zip_code": {
"type": "string",
"enum": [
"mode_a",
"mode_b",
"mode_c"
]
},
"notes": {
"type": "string",
"enum": [
"admin",
"editor",
"viewer"
... | {"branch": "RTG-04", "zip_code": "invalid_option_579", "notes": "admin", "shipper_ref": "option_a", "collateral": 655.96, "turbidity": "type_a"} | Field 'zip_code' has invalid enum value 'invalid_option_579', expected one of ['mode_a', 'mode_b', 'mode_c'] | {"branch":"RTG-04","zip_code":"mode_c","notes":"admin","shipper_ref":"option_a","collateral":655.96,"turbidity":"type_a"} |
TASK repair_structured_output
SPEC
FIELD paragraph TYPE string VALUES new|in_transit|delivered|returned REQUIRED yes
FIELD diagnosis_code TYPE string REQUIRED no
FIELD subject.yield_pct TYPE string REQUIRED yes
FIELD subject.count TYPE string VALUES new|in_transit|delivered|returned REQUIRED yes
FIELD subject.waveleng... | {"paragraph":"new","diagnosis_code":"Bob","subject":{"yield_pct":"Johnson","count":"in_transit","wavelength":"2024-05-10T08:41:00Z","timezone":"world"},"footnote":"level_5","freight_class":"QC-07","maturity_date":"https://data.com/v1","level":349} | wrong_type | {
"type": "object",
"properties": {
"paragraph": {
"type": "string",
"enum": [
"new",
"in_transit",
"delivered",
"returned"
]
},
"diagnosis_code": {
"type": "string"
},
"subject": {
"type": "object",
"properties": {
"yie... | {"paragraph": "new", "diagnosis_code": "Bob", "subject": {"yield_pct": "Johnson", "count": "in_transit", "wavelength": "2024-05-10T08:41:00Z", "timezone": "world"}, "footnote": "level_5", "freight_class": "QC-07", "maturity_date": "https://data.com/v1", "level": "\"349\""} | Field 'level' must be integer, got string | {"paragraph":"new","diagnosis_code":"Bob","subject":{"yield_pct":"Johnson","count":"in_transit","wavelength":"2024-05-10T08:41:00Z","timezone":"world"},"footnote":"level_5","freight_class":"QC-07","maturity_date":"https://data.com/v1","level":349} |
TASK repair_structured_output
SPEC
FIELD throttle_pos TYPE string VALUES free|basic|pro|enterprise REQUIRED yes
FIELD log_level TYPE string_email REQUIRED yes
FIELD procedure_code.score TYPE boolean REQUIRED no
FIELD procedure_code.visible TYPE string REQUIRED no
FIELD procedure_code.id TYPE string VALUES homozygous|h... | {"throttle_pos":"basic","log_level":"ops@example.com","procedure_code":{"score":false,"visible":"This is a test value.","features":"underway","latitude":"Bob","tax":"2026-02-24T01:31:00Z"}} | tool_call_wrong_param | {
"type": "object",
"properties": {
"throttle_pos": {
"type": "string",
"enum": [
"free",
"basic",
"pro",
"enterprise"
]
},
"log_level": {
"type": "string",
"format": "email"
},
"procedure_code": {
"type": "object",
"prope... | Tool: process_payment
Params: {"log_level": "ops@example.com", "procedure_code": {"score": false, "visible": "This is a test value.", "features": "underway", "latitude": "Bob", "tax": "2026-02-24T01:31:00Z"}, "throttle_pos_name": "basic"} | Agent used wrong parameter name 'throttle_pos_name' instead of 'throttle_pos' | {"throttle_pos":"basic","log_level":"ops@example.com","procedure_code":{"score":false,"visible":"This is a test value.","features":"underway","latitude":"Bob","tax":"2026-02-24T01:31:00Z"}} |
TASK repair_structured_output
SPEC
FIELD val_a67 TYPE integer REQUIRED yes
FIELD val_k27 TYPE string VALUES level_1|level_2 REQUIRED no
FIELD field_m91 TYPE string REQUIRED yes
FIELD key_o12 TYPE boolean REQUIRED yes
FIELD dim_j41 TYPE string VALUES single|married|divorced REQUIRED yes
FIELD dim_d66 TYPE string VALUES... | {"val_a67":818,"val_k27":"level_1","field_m91":"PASS","key_o12":false,"dim_j41":"divorced","val_x83":null,"col_s55":"world"} | partial_structure | {
"type": "object",
"properties": {
"val_a67": {
"type": "integer"
},
"val_k27": {
"type": "string",
"enum": [
"level_1",
"level_2"
]
},
"field_m91": {
"type": "string"
},
"key_o12": {
"type": "boolean"
},
"dim_j41": {
"ty... | Based on the data, val_k27 is level_1. {"val_a67":818,"val_k27":"level_1","field_m91":"PASS","key_o12":false,"dim_j41":"divorced","val_x83":null,"col_s55":"world"} | Output mixes natural language with JSON | {"val_a67":818,"val_k27":"level_1","field_m91":"PASS","key_o12":false,"dim_j41":"divorced","val_x83":null,"col_s55":"world"} |
TASK repair_structured_output
SPEC
FIELD col_j25 TYPE number REQUIRED yes
FIELD attr_y20 TYPE integer REQUIRED no
FIELD val_s75.prop_e11 TYPE number REQUIRED yes
FIELD val_s75.col_s58 TYPE integer REQUIRED no
FIELD val_s75.prop_c28.key_p15 TYPE string VALUES pending_review|confirmed|rejected|escalated REQUIRED no
FIEL... | {"col_j25":92.63,"attr_y20":194,"val_s75":{"prop_e11":428.48,"col_s58":653,"col_q74":{"dim_o08":false}},"prop_g37":"https://example.com","key_b56":{"prop_n78":false,"col_o00":553.12,"param_z91":{"field_a19":null,"col_q57":["viewer"]},"prop_w24":671,"param_l04":229.97,"field_n13":true},"val_p57":68.42} | thought_process | {
"type": "object",
"properties": {
"col_j25": {
"type": "number"
},
"attr_y20": {
"type": "integer"
},
"val_s75": {
"type": "object",
"properties": {
"prop_e11": {
"type": "number"
},
"col_s58": {
"type": "integer"
},
... | Analyzing the sensor data to generate the output.
I'll apply the required format first.
{"col_j25":92.63,"attr_y20":194,"val_s75":{"prop_e11":428.48,"col_s58":653,"col_q74":{"dim_o08":false}},"prop_g37":"https://example.com","key_b56":{"prop_n78":false,"col_o00":553.12,"param_z91":{"field_a19":null,"col_q57":["viewer"... | Output contains chain-of-thought reasoning before JSON | {"col_j25":92.63,"attr_y20":194,"val_s75":{"prop_e11":428.48,"col_s58":653,"col_q74":{"dim_o08":false}},"prop_g37":"https://example.com","key_b56":{"prop_n78":false,"col_o00":553.12,"param_z91":{"field_a19":null,"col_q57":["viewer"]},"prop_w24":671,"param_l04":229.97,"field_n13":true},"val_p57":68.42} |
TASK repair_structured_output
SPEC
FIELD param_f89 TYPE string VALUES free|basic|pro|enterprise REQUIRED no
FIELD param_s15 TYPE boolean REQUIRED yes
FIELD field_q03[].prop_w47 TYPE string REQUIRED yes
FIELD field_q03[].key_q12 TYPE number REQUIRED no
FIELD field_q03[].param_c33 TYPE string VALUES type_a|type_b|type_c... | {"param_s15":true,"field_q03":[{"prop_w47":"This is a test value.","key_q12":845.33,"col_x51":"bar","param_x61":"2026-12-11T22:17:00Z"},{"prop_w47":"Bob","param_c33":"type_f","col_x51":"Bob"}],"prop_x02":[{"field_q57":"mode_c","field_b95":"mode_b","key_t27":"Tokyo","val_s26":253},{"field_q57":"mode_c","key_w93":617,"fi... | tool_call_python_syntax | {
"type": "object",
"properties": {
"param_f89": {
"type": "string",
"enum": [
"free",
"basic",
"pro",
"enterprise"
]
},
"param_s15": {
"type": "boolean"
},
"field_q03": {
"type": "array",
"items": {
"type": "object",
... | lookup_customer(param_s15=True, field_q03=[{'prop_w47': 'This is a test value.', 'key_q12': 845.33, 'col_x51': 'bar', 'param_x61': '2026-12-11T22:17:00Z'}, {'prop_w47': 'Bob', 'param_c33': 'type_f', 'col_x51': 'Bob'}], prop_x02=[{'field_q57': 'mode_c', 'field_b95': 'mode_b', 'key_t27': 'Tokyo', 'val_s26': 253}, {'field... | Tool call uses Python syntax instead of JSON | {"param_s15":true,"field_q03":[{"prop_w47":"This is a test value.","key_q12":845.33,"col_x51":"bar","param_x61":"2026-12-11T22:17:00Z"},{"prop_w47":"Bob","param_c33":"type_f","col_x51":"Bob"}],"prop_x02":[{"field_q57":"mode_c","field_b95":"mode_b","key_t27":"Tokyo","val_s26":253},{"field_q57":"mode_c","key_w93":617,"fi... |
TASK repair_structured_output
SPEC
FIELD width TYPE boolean REQUIRED yes
FIELD website TYPE string REQUIRED yes
FIELD rating TYPE string REQUIRED no
FIELD length TYPE string REQUIRED yes
FIELD nickname.temp_celsius TYPE boolean REQUIRED no
FIELD nickname.label TYPE string VALUES homozygous|heterozygous|hemizygous REQU... | {"width":false,"website":"REV","rating":"sample","length":"completed","nickname":{"temp_celsius":true,"length":"pending","discount":565.9,"turbidity":{"values":"option_a","sensor_id":"Alice","crew_id":"London","features":"delivered","step":"London","bill_of_lading":"type_b"},"hazmat_code":{"version":507.96,"country":"t... | single_quotes | {
"type": "object",
"properties": {
"width": {
"type": "boolean"
},
"website": {
"type": "string"
},
"rating": {
"type": "string"
},
"length": {
"type": "string"
},
"nickname": {
"type": "object",
"properties": {
"temp_celsius": {
... | {'width':false,'website':'REV','rating':'sample','length':'completed','nickname':{'temp_celsius':true,'length':'pending','discount':565.9,'turbidity':{'values':'option_a','sensor_id':'Alice','crew_id':'London','features':'delivered','step':'London','bill_of_lading':'type_b'},'hazmat_code':{'version':507.96,'country':'t... | Expecting property name enclosed in double quotes | {"width":false,"website":"REV","rating":"sample","length":"completed","nickname":{"temp_celsius":true,"length":"pending","discount":565.9,"turbidity":{"values":"option_a","sensor_id":"Alice","crew_id":"London","features":"delivered","step":"London","bill_of_lading":"type_b"},"hazmat_code":{"version":507.96,"country":"t... |
TASK repair_structured_output
SPEC
FIELD col_b73 TYPE integer REQUIRED yes
FIELD attr_w63 TYPE string REQUIRED yes
FIELD val_a16[].val_r86 TYPE string REQUIRED no
FIELD val_a16[].dim_t89 TYPE string_uri REQUIRED no
FIELD val_a16[].param_d65 TYPE string VALUES mode_a|mode_b|mode_c|mode_d|mode_e|mode_f REQUIRED no
FIELD... | {"col_b73":632,"attr_w63":"Santos","val_a16":[{"val_r86":"Johnson","param_d65":"mode_a","attr_w75":false,"val_h27":128}]} | tool_call_wrong_param | {
"type": "object",
"properties": {
"col_b73": {
"type": "integer"
},
"attr_w63": {
"type": "string"
},
"val_a16": {
"type": "array",
"items": {
"type": "object",
"properties": {
"val_r86": {
"type": "string"
},
"d... | Tool: get_account
Params: {"col_b73": 632, "attr_w63": "Santos", "val_a16_value": [{"val_r86": "Johnson", "param_d65": "mode_a", "attr_w75": false, "val_h27": 128}]} | Agent used wrong parameter name 'val_a16_value' instead of 'val_a16' | {"col_b73":632,"attr_w63":"Santos","val_a16":[{"val_r86":"Johnson","param_d65":"mode_a","attr_w75":false,"val_h27":128}]} |
TASK repair_structured_output
SPEC
FIELD category TYPE string REQUIRED no
FIELD medication TYPE string REQUIRED no
FIELD verified TYPE string REQUIRED yes
FIELD options TYPE string REQUIRED yes
FIELD order_id TYPE string_uri REQUIRED no
FIELD chapter TYPE string VALUES homozygous|heterozygous|hemizygous REQUIRED no
FI... | {"category":"qux","medication":"inactive","verified":"Hapag-Lloyd-Express","options":"foo","order_id":"https://example.io/api","score":"in_progress"} | extra_text_after | {
"type": "object",
"properties": {
"category": {
"type": "string"
},
"medication": {
"type": "string"
},
"verified": {
"type": "string"
},
"options": {
"type": "string"
},
"order_id": {
"type": "string",
"format": "uri"
},
"chapter": {... | {"category":"qux","medication":"inactive","verified":"Hapag-Lloyd-Express","options":"foo","order_id":"https://example.io/api","score":"in_progress"}
This should match the schema you provided. | Output contains non-JSON text after the object | {"category":"qux","medication":"inactive","verified":"Hapag-Lloyd-Express","options":"foo","order_id":"https://example.io/api","score":"in_progress"} |
TASK repair_structured_output
SPEC
FIELD turbidity TYPE string_email REQUIRED yes
FIELD filter_flag TYPE number REQUIRED yes
FIELD state TYPE boolean REQUIRED no
FIELD collateral.footnote TYPE boolean REQUIRED yes
FIELD collateral.interest_rate TYPE string_date-time REQUIRED no
FIELD collateral.length.options TYPE int... | {"turbidity":"ops@test.io","filter_flag":9.46,"dissolved_oxygen":{"decay_rate":"Charlie","insurance_id":{"shipper_ref":738,"quality_score":"new","chromosome":"Hapag-Lloyd-Express","catalyst":"married","name":true},"hazmat_code":"https://www.org/v1"}} | markdown_fences | {
"type": "object",
"properties": {
"turbidity": {
"type": "string",
"format": "email"
},
"filter_flag": {
"type": "number"
},
"state": {
"type": "boolean"
},
"collateral": {
"type": "object",
"properties": {
"footnote": {
"type": "bo... | ```json
{"turbidity":"ops@test.io","filter_flag":9.46,"dissolved_oxygen":{"decay_rate":"Charlie","insurance_id":{"shipper_ref":738,"quality_score":"new","chromosome":"Hapag-Lloyd-Express","catalyst":"married","name":true},"hazmat_code":"https://www.org/v1"}}
``` | Output contains markdown code fences | {"turbidity":"ops@test.io","filter_flag":9.46,"dissolved_oxygen":{"decay_rate":"Charlie","insurance_id":{"shipper_ref":738,"quality_score":"new","chromosome":"Hapag-Lloyd-Express","catalyst":"married","name":true},"hazmat_code":"https://www.org/v1"}} |
TASK repair_structured_output
SPEC
FIELD param_l65 TYPE string VALUES option_a|option_b|option_c|option_d|option_e REQUIRED no
FIELD val_y47 TYPE string_date-time REQUIRED no
FIELD dim_e71 TYPE string VALUES admin|editor|viewer REQUIRED no
FIELD field_k52 TYPE boolean REQUIRED yes
BROKEN_OUTPUT
Let me check the syste... | {"field_k52":true} | agent_chain | {
"type": "object",
"properties": {
"param_l65": {
"type": "string",
"enum": [
"option_a",
"option_b",
"option_c",
"option_d",
"option_e"
]
},
"val_y47": {
"type": "string",
"format": "date-time"
},
"dim_e71": {
"type": ... | Let me check the system.
Action: search
Observation: {"field_k52":true}
I'll query our database.
Final: | Agent multi-step chain with truncated tool output | {"field_k52":true} |
TASK repair_structured_output
SPEC
FIELD prop_m82 TYPE string REQUIRED yes
FIELD param_i00 TYPE string VALUES admin|editor|viewer REQUIRED no
FIELD prop_n40 TYPE string VALUES open|in_progress|resolved|closed REQUIRED yes
FIELD param_y60 TYPE string VALUES low|medium|high|critical REQUIRED no
FIELD field_p42 TYPE inte... | {"prop_m82":"QC-07","prop_n40":"closed","field_p42":87} | null_required | {
"type": "object",
"properties": {
"prop_m82": {
"type": "string"
},
"param_i00": {
"type": "string",
"enum": [
"admin",
"editor",
"viewer"
]
},
"prop_n40": {
"type": "string",
"enum": [
"open",
"in_progress",
"... | {"prop_m82": "QC-07", "prop_n40": null, "field_p42": 87} | Required field 'prop_n40' is null | {"prop_m82":"QC-07","prop_n40":"closed","field_p42":87} |
TASK repair_structured_output
SPEC
FIELD prop_k45 TYPE string REQUIRED yes
FIELD val_j09 TYPE string VALUES homozygous|heterozygous|hemizygous REQUIRED yes
FIELD dim_e80.val_j16 TYPE string VALUES admin|editor|viewer REQUIRED no
FIELD dim_e80.param_t04 TYPE integer REQUIRED no
FIELD dim_e80.field_m42 TYPE number REQUI... | {"prop_k45":"Smith","val_j09":"homozygous","dim_e80":{"val_j16":"viewer","param_t04":911,"field_y01":"Sao Paulo"},"val_v41":{"field_m80":872.67,"dim_u55":"test"}} | null_required | {
"type": "object",
"properties": {
"prop_k45": {
"type": "string"
},
"val_j09": {
"type": "string",
"enum": [
"homozygous",
"heterozygous",
"hemizygous"
]
},
"dim_e80": {
"type": "object",
"properties": {
"val_j16": {
... | {"prop_k45": null, "val_j09": "homozygous", "dim_e80": {"val_j16": "viewer", "param_t04": 911, "field_y01": "Sao Paulo"}, "val_v41": {"field_m80": 872.67, "dim_u55": "test"}} | Required field 'prop_k45' is null | {"prop_k45":"Smith","val_j09":"homozygous","dim_e80":{"val_j16":"viewer","param_t04":911,"field_y01":"Sao Paulo"},"val_v41":{"field_m80":872.67,"dim_u55":"test"}} |
TASK repair_structured_output
SPEC
FIELD step TYPE boolean REQUIRED no
FIELD torque_output TYPE string VALUES operational|degraded|offline|maintenance REQUIRED no
FIELD status_code TYPE integer REQUIRED yes
FIELD account_id.dissolved_oxygen TYPE string VALUES option_a|option_b|option_c REQUIRED yes
FIELD account_id.wa... | {"step":false,"torque_output":"operational","status_code":617,"account_id":{"dissolved_oxygen":"option_a","ward":"option_a","features":false,"shipper_ref":673.67},"frequency_hz":274.92} | trailing_comma | {
"type": "object",
"properties": {
"step": {
"type": "boolean"
},
"torque_output": {
"type": "string",
"enum": [
"operational",
"degraded",
"offline",
"maintenance"
]
},
"status_code": {
"type": "integer"
},
"account_id": {
... | {"step":false,"torque_output":"operational","status_code":617,"account_id":{"dissolved_oxygen":"option_a","ward":"option_a","features":false,"shipper_ref":673.67,},"frequency_hz":274.92} | Unexpected trailing comma | {"step":false,"torque_output":"operational","status_code":617,"account_id":{"dissolved_oxygen":"option_a","ward":"option_a","features":false,"shipper_ref":673.67},"frequency_hz":274.92} |
TASK repair_structured_output
SPEC
FIELD voltage TYPE string VALUES USD|EUR|GBP|BRL|JPY REQUIRED yes
FIELD count TYPE number REQUIRED yes
FIELD latitude TYPE string VALUES type_a|type_b|type_c|type_d REQUIRED no
FIELD annotation TYPE null REQUIRED yes
BROKEN_OUTPUT
{"count": 756.33, "latitude": "type_d", "annotation"... | {"voltage":"USD","count":756.33,"latitude":"type_d","annotation":null} | missing_required | {
"type": "object",
"properties": {
"voltage": {
"type": "string",
"enum": [
"USD",
"EUR",
"GBP",
"BRL",
"JPY"
]
},
"count": {
"type": "number"
},
"latitude": {
"type": "string",
"enum": [
"type_a",
"type... | {"count": 756.33, "latitude": "type_d", "annotation": null} | Required field 'voltage' is missing | {"voltage":"USD","count":756.33,"latitude":"type_d","annotation":null} |
TASK repair_structured_output
SPEC
FIELD field_v96 TYPE integer REQUIRED no
FIELD attr_k61 TYPE string VALUES open|in_progress|resolved|closed REQUIRED yes
FIELD param_z00 TYPE number REQUIRED yes
FIELD val_e62 TYPE string VALUES single|married|divorced REQUIRED yes
BROKEN_OUTPUT
I need to look up the information fir... | {"attr_k61":"in_progress","param_z00":366.58,"val_e62":"divorced"} | agent_chain | {
"type": "object",
"properties": {
"field_v96": {
"type": "integer"
},
"attr_k61": {
"type": "string",
"enum": [
"open",
"in_progress",
"resolved",
"closed"
]
},
"param_z00": {
"type": "number"
},
"val_e62": {
"type": "... | I need to look up the information first.
Action: send_email
Result: {"param_z00": 366.58, "val_e62": "divorced"}
I'll query our database.
Action: search
Result: | Agent multi-step chain with truncated tool output | {"attr_k61":"in_progress","param_z00":366.58,"val_e62":"divorced"} |
TASK repair_structured_output
SPEC
FIELD key_e15 TYPE number REQUIRED yes
FIELD key_n08 TYPE number REQUIRED yes
FIELD prop_f29 TYPE string_date-time REQUIRED no
FIELD val_q46 TYPE integer REQUIRED no
FIELD col_x14 TYPE string VALUES synonymous|missense|nonsense|frameshift REQUIRED no
FIELD val_p07 TYPE string VALUES ... | {"key_e15":595.8,"key_n08":953.0,"val_q46":526,"col_x14":"synonymous","val_p07":"intermittent","field_z53":6,"field_u48":"ops@test.io"} | agent_chain | {
"type": "object",
"properties": {
"key_e15": {
"type": "number"
},
"key_n08": {
"type": "number"
},
"prop_f29": {
"type": "string",
"format": "date-time"
},
"val_q46": {
"type": "integer"
},
"col_x14": {
"type": "string",
"enum": [
... | I need to look up the information first.
Action: get_weather
Result: {"key_e15": 595.8, "key_n08": 953.0, "val_q46": 526, "col_x14": "synonymous", "field_z53": 6, "field_u48": "ops@test.io"}
I'll query our database.
Action: lookup_customer
Result: | Agent multi-step chain with truncated tool output | {"key_e15":595.8,"key_n08":953.0,"val_q46":526,"col_x14":"synonymous","val_p07":"intermittent","field_z53":6,"field_u48":"ops@test.io"} |
TASK repair_structured_output
SPEC
FIELD aligned_pct TYPE number REQUIRED no
FIELD voltage TYPE string_email REQUIRED no
FIELD items TYPE string REQUIRED yes
FIELD isotope.altitude TYPE string VALUES level_1|level_2 REQUIRED no
FIELD isotope.half_life TYPE string VALUES level_1|level_2|level_3 REQUIRED yes
FIELD isoto... | {"aligned_pct":800.96,"items":"chrX","isotope":{"altitude":"level_2","half_life":"level_3","quantity":141.66,"language":"Santos","color":"Tokyo"},"frequency_hz":551.69,"description":{"consignee":"https://www.org/v1"}} | agent_chain | {
"type": "object",
"properties": {
"aligned_pct": {
"type": "number"
},
"voltage": {
"type": "string",
"format": "email"
},
"items": {
"type": "string"
},
"isotope": {
"type": "object",
"properties": {
"altitude": {
"type": "string",... | I need to look up the information first.
Action: book_appointment
Result: {"aligned_pct": 800.96, "items": "chrX", "frequency_hz": 551.69, "description": {"consignee": "https://www.org/v1"}}
I'll query our database.
Action: update_record
Result: | Agent multi-step chain with truncated tool output | {"aligned_pct":800.96,"items":"chrX","isotope":{"altitude":"level_2","half_life":"level_3","quantity":141.66,"language":"Santos","color":"Tokyo"},"frequency_hz":551.69,"description":{"consignee":"https://www.org/v1"}} |
TASK repair_structured_output
SPEC
FIELD lab_result TYPE number REQUIRED yes
FIELD reagent TYPE string REQUIRED no
FIELD title TYPE integer REQUIRED no
BROKEN_OUTPUT
Below is the JSON object:
{"lab_result":493.27,"reagent":"https://api.example.com/v1"} | {"lab_result":493.27,"reagent":"https://api.example.com/v1"} | extra_text_before | {
"type": "object",
"properties": {
"lab_result": {
"type": "number"
},
"reagent": {
"type": "string"
},
"title": {
"type": "integer"
}
},
"required": [
"lab_result"
]
} | Below is the JSON object:
{"lab_result":493.27,"reagent":"https://api.example.com/v1"} | Output contains non-JSON text before the object | {"lab_result":493.27,"reagent":"https://api.example.com/v1"} |
TASK repair_structured_output
SPEC
FIELD payment_status TYPE string VALUES coastal|oceanic|inland|arctic REQUIRED yes
FIELD count TYPE string REQUIRED no
FIELD conductivity TYPE integer REQUIRED yes
FIELD lab_result TYPE number REQUIRED no
BROKEN_OUTPUT
{"payment_status": "invalid_value_837", "conductivity": 665, "la... | {"payment_status":"arctic","conductivity":665,"lab_result":508.95} | invalid_enum | {
"type": "object",
"properties": {
"payment_status": {
"type": "string",
"enum": [
"coastal",
"oceanic",
"inland",
"arctic"
]
},
"count": {
"type": "string"
},
"conductivity": {
"type": "integer"
},
"lab_result": {
"typ... | {"payment_status": "invalid_value_837", "conductivity": 665, "lab_result": 508.95} | Field 'payment_status' has invalid enum value 'invalid_value_837', expected one of ['coastal', 'oceanic', 'inland', 'arctic'] | {"payment_status":"arctic","conductivity":665,"lab_result":508.95} |
TASK repair_structured_output
SPEC
FIELD loan_amount TYPE number REQUIRED yes
FIELD dissolved_oxygen TYPE string REQUIRED no
FIELD consignee TYPE string REQUIRED yes
FIELD values TYPE null REQUIRED yes
BROKEN_OUTPUT
{loan_amount:374.74,consignee:"demo",values:null} | {"loan_amount":374.74,"consignee":"demo","values":null} | unquoted_keys | {
"type": "object",
"properties": {
"loan_amount": {
"type": "number"
},
"dissolved_oxygen": {
"type": "string"
},
"consignee": {
"type": "string"
},
"values": {
"type": "null"
}
},
"required": [
"values",
"loan_amount",
"consignee"
]
} | {loan_amount:374.74,consignee:"demo",values:null} | Expecting property name enclosed in double quotes | {"loan_amount":374.74,"consignee":"demo","values":null} |
TASK repair_structured_output
SPEC
FIELD nickname TYPE string VALUES synonymous|missense|nonsense|frameshift REQUIRED yes
FIELD label TYPE integer REQUIRED no
FIELD torque_output.latitude TYPE string VALUES homozygous|heterozygous|hemizygous REQUIRED no
FIELD torque_output.chapter TYPE boolean REQUIRED yes
FIELD torqu... | {"nickname":"nonsense","torque_output":{"latitude":"hemizygous","chapter":true,"format":"medium","bed_number":"https://api.example.com/v1"},"compound":{"length":{"crew_id":"https://www.org/data","features":836,"visible":"returned","email":"https://api.example.com/v1","medication":"editor","reagent":"example","voltage":... | extra_text_after | {
"type": "object",
"properties": {
"nickname": {
"type": "string",
"enum": [
"synonymous",
"missense",
"nonsense",
"frameshift"
]
},
"label": {
"type": "integer"
},
"torque_output": {
"type": "object",
"properties": {
"... | {"nickname":"nonsense","torque_output":{"latitude":"hemizygous","chapter":true,"format":"medium","bed_number":"https://api.example.com/v1"},"compound":{"length":{"crew_id":"https://www.org/data","features":836,"visible":"returned","email":"https://api.example.com/v1","medication":"editor","reagent":"example","voltage":... | Output contains non-JSON text after the object | {"nickname":"nonsense","torque_output":{"latitude":"hemizygous","chapter":true,"format":"medium","bed_number":"https://api.example.com/v1"},"compound":{"length":{"crew_id":"https://www.org/data","features":836,"visible":"returned","email":"https://api.example.com/v1","medication":"editor","reagent":"example","voltage":... |
TASK repair_structured_output
SPEC
FIELD key_z20 TYPE integer REQUIRED no
FIELD prop_f31 TYPE string VALUES USD|EUR|GBP|BRL|JPY REQUIRED no
FIELD prop_e26.key_l61.attr_h82 TYPE integer REQUIRED yes
FIELD prop_e26.key_l61.attr_x91 TYPE string VALUES free|basic|pro|enterprise REQUIRED yes
FIELD prop_e26.key_l61.val_p56 ... | {"key_z20":966,"prop_f31":"GBP","prop_e26":{"key_l61":{"attr_h82":8,"attr_x91":"enterprise","val_p56":"user@test.io","col_g42":"https://example.io/api","param_z72":587.08},"param_h79":226}} | tool_call_text_mix | {
"type": "object",
"properties": {
"key_z20": {
"type": "integer"
},
"prop_f31": {
"type": "string",
"enum": [
"USD",
"EUR",
"GBP",
"BRL",
"JPY"
]
},
"prop_e26": {
"type": "object",
"properties": {
"key_l61": {
... | I'll query our database.
<tool_call name="delete_item">
{"key_z20":966,"prop_f31":"GBP","prop_e26":{"key_l61":{"attr_h82":8,"attr_x91":"enterprise","val_p56":"user@test.io","col_g42":"https://example.io/api","param_z72":587.08},"param_h79":226}}
</tool_call.
The result is ready. | Agent response mixes reasoning text with tool call | {"key_z20":966,"prop_f31":"GBP","prop_e26":{"key_l61":{"attr_h82":8,"attr_x91":"enterprise","val_p56":"user@test.io","col_g42":"https://example.io/api","param_z72":587.08},"param_h79":226}} |
TASK repair_structured_output
SPEC
FIELD dim_s89 TYPE string VALUES mode_a|mode_b REQUIRED no
FIELD val_y98 TYPE string VALUES mode_a|mode_b REQUIRED no
FIELD dim_m79 TYPE string REQUIRED no
FIELD val_t78 TYPE string REQUIRED no
FIELD field_u07 TYPE string REQUIRED no
FIELD key_i30 TYPE string REQUIRED yes
FIELD field... | {"dim_m79":"sample","field_u07":"completed","key_i30":"Diana","field_p95":349} | missing_brace | {
"type": "object",
"properties": {
"dim_s89": {
"type": "string",
"enum": [
"mode_a",
"mode_b"
]
},
"val_y98": {
"type": "string",
"enum": [
"mode_a",
"mode_b"
]
},
"dim_m79": {
"type": "string"
},
"val_t78": {
... | {"dim_m79":"sample","field_u07":"completed","key_i30":"Diana","field_p95":349 | Missing closing brace | {"dim_m79":"sample","field_u07":"completed","key_i30":"Diana","field_p95":349} |
TASK repair_structured_output
SPEC
FIELD attr_v17 TYPE string VALUES mode_a|mode_b|mode_c REQUIRED no
FIELD prop_n27.field_z34 TYPE string VALUES option_a|option_b|option_c|option_d|option_e REQUIRED yes
FIELD prop_n27.dim_i65 TYPE integer REQUIRED yes
FIELD prop_n27.prop_v17 TYPE string REQUIRED no
FIELD prop_n27.att... | {"attr_v17":"mode_c","prop_n27":{"field_z34":"option_b","dim_i65":402,"prop_v17":"MV-Evergreen-01","attr_q28":[844]},"attr_j31":"option_c","key_z38":"GBP","param_u50":"option_e","val_l54":"admin@example.com","val_i76":"Bob","prop_k09":581} | unquoted_keys | {
"type": "object",
"properties": {
"attr_v17": {
"type": "string",
"enum": [
"mode_a",
"mode_b",
"mode_c"
]
},
"prop_n27": {
"type": "object",
"properties": {
"field_z34": {
"type": "string",
"enum": [
"option... | {attr_v17:"mode_c",prop_n27:{field_z34:"option_b",dim_i65:402,prop_v17:"MV-Evergreen-01",attr_q28:[844]},attr_j31:"option_c",key_z38:"GBP",param_u50:"option_e",val_l54:"admin@example.com",val_i76:"Bob",prop_k09:581} | Expecting property name enclosed in double quotes | {"attr_v17":"mode_c","prop_n27":{"field_z34":"option_b","dim_i65":402,"prop_v17":"MV-Evergreen-01","attr_q28":[844]},"attr_j31":"option_c","key_z38":"GBP","param_u50":"option_e","val_l54":"admin@example.com","val_i76":"Bob","prop_k09":581} |
TASK repair_structured_output
SPEC
FIELD field_l89 TYPE string VALUES berthed|anchored|underway|moored REQUIRED yes
FIELD param_v36 TYPE string VALUES homozygous|heterozygous|hemizygous REQUIRED no
FIELD field_h88 TYPE boolean REQUIRED no
FIELD param_x61 TYPE string REQUIRED no
BROKEN_OUTPUT
{field_l89:"berthed",para... | {"field_l89":"berthed","param_x61":"chrX"} | unquoted_keys | {
"type": "object",
"properties": {
"field_l89": {
"type": "string",
"enum": [
"berthed",
"anchored",
"underway",
"moored"
]
},
"param_v36": {
"type": "string",
"enum": [
"homozygous",
"heterozygous",
"hemizygous"
... | {field_l89:"berthed",param_x61:"chrX"} | Expecting property name enclosed in double quotes | {"field_l89":"berthed","param_x61":"chrX"} |
TASK repair_structured_output
SPEC
FIELD attr_j60.attr_t14 TYPE string VALUES low|medium|high|critical REQUIRED no
FIELD attr_j60.field_y44 TYPE string VALUES draft|published|archived REQUIRED yes
FIELD attr_j60.prop_x77 TYPE string VALUES single|married|divorced REQUIRED no
FIELD attr_j60.val_s16 TYPE string VALUES a... | {"dim_u46":"user@test.io","param_g03":"New York"} | thought_process | {
"type": "object",
"properties": {
"attr_j60": {
"type": "object",
"properties": {
"attr_t14": {
"type": "string",
"enum": [
"low",
"medium",
"high",
"critical"
]
},
"field_y44": {
"type"... | Let me analyze the request and generate the appropriate JSON.
The user wants a structured object with specific fields.
{"dim_u46":"user@test.io","param_g03":"New York"} | Output contains chain-of-thought reasoning before JSON | {"dim_u46":"user@test.io","param_g03":"New York"} |
TASK repair_structured_output
SPEC
FIELD col_o98 TYPE string VALUES cat_a|cat_b|cat_c|cat_d|cat_e|cat_f REQUIRED no
FIELD col_z18 TYPE integer REQUIRED yes
FIELD val_u19 TYPE string REQUIRED yes
FIELD key_f58 TYPE boolean REQUIRED no
FIELD param_w12 TYPE number REQUIRED no
FIELD dim_w25 TYPE boolean REQUIRED no
FIELD ... | {"col_z18":287,"val_u19":"Paris","key_f58":false,"dim_w25":true,"key_t97":"info@example.com"} | tool_call_wrong_param | {
"type": "object",
"properties": {
"col_o98": {
"type": "string",
"enum": [
"cat_a",
"cat_b",
"cat_c",
"cat_d",
"cat_e",
"cat_f"
]
},
"col_z18": {
"type": "integer"
},
"val_u19": {
"type": "string"
},
"key_f58... | Tool: query_port_status
Params: {"col_z18": 287, "val_u19": "Paris", "key_f58": false, "dim_w25": true, "key_t97": "info@example.com"} | Agent used wrong parameter name 'col_o982' instead of 'col_o98' | {"col_z18":287,"val_u19":"Paris","key_f58":false,"dim_w25":true,"key_t97":"info@example.com"} |
TASK repair_structured_output
SPEC
FIELD attr_t13 TYPE string VALUES option_a|option_b|option_c REQUIRED no
FIELD param_y93 TYPE string VALUES USD|EUR|GBP|BRL|JPY REQUIRED yes
FIELD field_a91 TYPE string VALUES option_a|option_b|option_c|option_d|option_e REQUIRED no
FIELD prop_f97 TYPE integer REQUIRED no
FIELD param... | {"attr_t13":"option_c","param_y93":"JPY","field_a91":"option_b","param_p36":"active","val_a98":false} | null_required | {
"type": "object",
"properties": {
"attr_t13": {
"type": "string",
"enum": [
"option_a",
"option_b",
"option_c"
]
},
"param_y93": {
"type": "string",
"enum": [
"USD",
"EUR",
"GBP",
"BRL",
"JPY"
]
},
... | {"attr_t13": "option_c", "param_y93": null, "field_a91": "option_b", "param_p36": "active", "val_a98": false} | Required field 'param_y93' is null | {"attr_t13":"option_c","param_y93":"JPY","field_a91":"option_b","param_p36":"active","val_a98":false} |
TASK repair_structured_output
SPEC
FIELD prop_m78 TYPE boolean REQUIRED no
FIELD col_s73 TYPE null REQUIRED no
FIELD col_d45 TYPE string REQUIRED yes
FIELD dim_k18 TYPE number REQUIRED no
FIELD val_h74 TYPE string REQUIRED no
BROKEN_OUTPUT
{"prop_m78":true,"col_s73":null,"col_d45":"Diana","dim_k18":284.64,"val_h74":"... | {"prop_m78":true,"col_s73":null,"col_d45":"Diana","dim_k18":284.64,"val_h74":"Luis"} | truncated_object | {
"type": "object",
"properties": {
"prop_m78": {
"type": "boolean"
},
"col_s73": {
"type": "null"
},
"col_d45": {
"type": "string"
},
"dim_k18": {
"type": "number"
},
"val_h74": {
"type": "string"
}
},
"required": [
"col_d45"
]
} | {"prop_m78":true,"col_s73":null,"col_d45":"Diana","dim_k18":284.64,"val_h74":"Luis" | Unexpected end of JSON input — truncated object | {"prop_m78":true,"col_s73":null,"col_d45":"Diana","dim_k18":284.64,"val_h74":"Luis"} |
TASK repair_structured_output
SPEC
FIELD pressure_kpa TYPE string VALUES new|in_transit|delivered|returned REQUIRED yes
FIELD commit_hash TYPE string REQUIRED no
FIELD image_url TYPE boolean REQUIRED no
FIELD index TYPE null REQUIRED no
FIELD lab_result TYPE null REQUIRED yes
FIELD last_name TYPE number REQUIRED yes
F... | {"pressure_kpa":"new","commit_hash":"sample","index":null,"lab_result":null,"last_name":872.13} | extra_field | {
"type": "object",
"properties": {
"pressure_kpa": {
"type": "string",
"enum": [
"new",
"in_transit",
"delivered",
"returned"
]
},
"commit_hash": {
"type": "string"
},
"image_url": {
"type": "boolean"
},
"index": {
"typ... | {"pressure_kpa": "new", "commit_hash": "sample", "index": null, "lab_result": null, "last_name": 872.13, "extra_value_9722": 42} | Unknown field 'extra_value_9722' not defined in schema | {"pressure_kpa":"new","commit_hash":"sample","index":null,"lab_result":null,"last_name":872.13} |
TASK repair_structured_output
SPEC
FIELD prop_x79 TYPE string_email REQUIRED yes
FIELD param_y59 TYPE string REQUIRED no
FIELD key_w94 TYPE string REQUIRED no
FIELD attr_g61 TYPE integer REQUIRED no
FIELD attr_l75[] TYPE number REQUIRED yes
BROKEN_OUTPUT
{"prop_x79":"ops@test.io","param_y59":"hello","attr_g61":390,"a... | {"prop_x79":"ops@test.io","param_y59":"hello","attr_g61":390,"attr_l75":[487.54,641.43,758.38]} | truncated_object | {
"type": "object",
"properties": {
"prop_x79": {
"type": "string",
"format": "email"
},
"param_y59": {
"type": "string"
},
"key_w94": {
"type": "string"
},
"attr_g61": {
"type": "integer"
},
"attr_l75": {
"type": "array",
"items": {
... | {"prop_x79":"ops@test.io","param_y59":"hello","attr_g61":390,"attr_l75":[487.54,641.43,758.38] | Unexpected end of JSON input — truncated object | {"prop_x79":"ops@test.io","param_y59":"hello","attr_g61":390,"attr_l75":[487.54,641.43,758.38]} |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.