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 ph_level TYPE number REQUIRED no
FIELD section TYPE string REQUIRED yes
FIELD currency TYPE integer REQUIRED no
FIELD paragraph.address TYPE null REQUIRED no
FIELD paragraph.thumbnail TYPE integer REQUIRED yes
FIELD paragraph.voltage TYPE boolean REQUIRED yes
FIELD paragraph.hu... | {"ph_level":725.8,"section":"2023-12-25","paragraph":{"address":null,"thumbnail":366,"voltage":false,"humidity_pct":"divorced","brake_pressure":[{"transaction_id":982,"allele":905,"category":"Johnson","hazmat_code":false,"start_date":false,"name":"MV-Evergreen-01"}]},"cargo_type":"chr1","language":935,"features":"user@... | wrong_type | {
"type": "object",
"properties": {
"ph_level": {
"type": "number"
},
"section": {
"type": "string"
},
"currency": {
"type": "integer"
},
"paragraph": {
"type": "object",
"properties": {
"address": {
"type": "null"
},
"thumb... | {"ph_level": "\"725.8\"", "section": "2023-12-25", "paragraph": {"address": null, "thumbnail": 366, "voltage": false, "humidity_pct": "divorced", "brake_pressure": [{"transaction_id": 982, "allele": 905, "category": "Johnson", "hazmat_code": false, "start_date": false, "name": "MV-Evergreen-01"}]}, "cargo_type": "chr1"... | Field 'ph_level' must be number, got string | {"ph_level":725.8,"section":"2023-12-25","paragraph":{"address":null,"thumbnail":366,"voltage":false,"humidity_pct":"divorced","brake_pressure":[{"transaction_id":982,"allele":905,"category":"Johnson","hazmat_code":false,"start_date":false,"name":"MV-Evergreen-01"}]},"cargo_type":"chr1","language":935,"features":"user@... |
TASK repair_structured_output
SPEC
FIELD yield_pct TYPE string REQUIRED yes
FIELD humidity_pct TYPE integer REQUIRED yes
FIELD product_id TYPE number REQUIRED yes
BROKEN_OUTPUT
{"yield_pct": "PASS", "humidity_pct": null, "product_id": 556.87} | {"yield_pct":"PASS","humidity_pct":967,"product_id":556.87} | null_required | {
"type": "object",
"properties": {
"yield_pct": {
"type": "string"
},
"humidity_pct": {
"type": "integer"
},
"product_id": {
"type": "number"
}
},
"required": [
"product_id",
"yield_pct",
"humidity_pct"
]
} | {"yield_pct": "PASS", "humidity_pct": null, "product_id": 556.87} | Required field 'humidity_pct' is null | {"yield_pct":"PASS","humidity_pct":967,"product_id":556.87} |
TASK repair_structured_output
SPEC
FIELD attr_e07 TYPE string VALUES mode_a|mode_b REQUIRED no
FIELD col_f15 TYPE string VALUES admin|editor|viewer REQUIRED no
FIELD attr_h02 TYPE boolean REQUIRED no
FIELD col_d43 TYPE string REQUIRED no
FIELD param_h71 TYPE integer REQUIRED yes
FIELD val_i80 TYPE boolean REQUIRED no
... | {"attr_e07":"mode_b","col_f15":"viewer","attr_h02":true,"col_d43":"RTG-04","param_h71":213} | markdown_fences | {
"type": "object",
"properties": {
"attr_e07": {
"type": "string",
"enum": [
"mode_a",
"mode_b"
]
},
"col_f15": {
"type": "string",
"enum": [
"admin",
"editor",
"viewer"
]
},
"attr_h02": {
"type": "boolean"
},... | ```json
{"attr_e07":"mode_b","col_f15":"viewer","attr_h02":true,"col_d43":"RTG-04","param_h71":213}
``` | Output contains markdown code fences | {"attr_e07":"mode_b","col_f15":"viewer","attr_h02":true,"col_d43":"RTG-04","param_h71":213} |
TASK repair_structured_output
SPEC
FIELD category TYPE string VALUES new|in_transit|delivered|returned REQUIRED yes
FIELD height TYPE string VALUES level_1|level_2|level_3|level_4|level_5|level_6 REQUIRED yes
FIELD gene_id TYPE string REQUIRED no
FIELD state TYPE number REQUIRED no
BROKEN_OUTPUT
Let me check the syst... | {"category":"new","height":"level_2","state":446.16} | agent_chain | {
"type": "object",
"properties": {
"category": {
"type": "string",
"enum": [
"new",
"in_transit",
"delivered",
"returned"
]
},
"height": {
"type": "string",
"enum": [
"level_1",
"level_2",
"level_3",
"level_4"... | Let me check the system.
Action: process_payment
Result: {"height": "level_2", "state": 446.16}
I'll query our database.
Action: calculate_price
Result: | Agent multi-step chain with truncated tool output | {"category":"new","height":"level_2","state":446.16} |
TASK repair_structured_output
SPEC
FIELD log_level TYPE string_uri REQUIRED yes
FIELD address TYPE integer REQUIRED yes
FIELD patient_id TYPE integer REQUIRED yes
BROKEN_OUTPUT
{"log_level":"https://api.io/api","address":873,"patient_id":68,} | {"log_level":"https://api.io/api","address":873,"patient_id":68} | trailing_comma | {
"type": "object",
"properties": {
"log_level": {
"type": "string",
"format": "uri"
},
"address": {
"type": "integer"
},
"patient_id": {
"type": "integer"
}
},
"required": [
"log_level",
"address",
"patient_id"
]
} | {"log_level":"https://api.io/api","address":873,"patient_id":68,} | Unexpected trailing comma | {"log_level":"https://api.io/api","address":873,"patient_id":68} |
TASK repair_structured_output
SPEC
FIELD dosage TYPE integer REQUIRED no
FIELD span_id TYPE integer REQUIRED no
FIELD isotope TYPE string_uri REQUIRED yes
FIELD url TYPE string REQUIRED no
FIELD discount[] TYPE number REQUIRED yes
BROKEN_OUTPUT
{"dosage":430,"span_id":137,"isotope":"https://example.io/data","discount... | {"dosage":430,"span_id":137,"isotope":"https://example.io/data","discount":[466.83]} | trailing_comma | {
"type": "object",
"properties": {
"dosage": {
"type": "integer"
},
"span_id": {
"type": "integer"
},
"isotope": {
"type": "string",
"format": "uri"
},
"url": {
"type": "string"
},
"discount": {
"type": "array",
"items": {
"type"... | {"dosage":430,"span_id":137,"isotope":"https://example.io/data","discount":[466.83,]} | Unexpected trailing comma | {"dosage":430,"span_id":137,"isotope":"https://example.io/data","discount":[466.83]} |
TASK repair_structured_output
SPEC
FIELD prop_k05 TYPE string REQUIRED no
FIELD param_r94 TYPE string REQUIRED no
FIELD prop_z56 TYPE integer REQUIRED no
FIELD prop_h47.attr_h60.attr_h80 TYPE integer REQUIRED no
FIELD prop_h47.attr_h60.dim_k16 TYPE string VALUES cat_a|cat_b|cat_c|cat_d REQUIRED yes
FIELD prop_h47.attr... | {"param_r94":"test@example.com","prop_z56":331,"prop_h47":{"attr_h60":{"attr_h80":810,"dim_k16":"cat_d","prop_y11":544.89,"attr_t19":[567,423,533,881]},"param_b25":515.25,"key_s51":"example","dim_z28":553.48}} | single_quotes | {
"type": "object",
"properties": {
"prop_k05": {
"type": "string"
},
"param_r94": {
"type": "string"
},
"prop_z56": {
"type": "integer"
},
"prop_h47": {
"type": "object",
"properties": {
"attr_h60": {
"type": "object",
"propertie... | {'param_r94':'test@example.com','prop_z56':331,'prop_h47':{'attr_h60':{'attr_h80':810,'dim_k16':'cat_d','prop_y11':544.89,'attr_t19':[567,423,533,881]},'param_b25':515.25,'key_s51':'example','dim_z28':553.48}} | Expecting property name enclosed in double quotes | {"param_r94":"test@example.com","prop_z56":331,"prop_h47":{"attr_h60":{"attr_h80":810,"dim_k16":"cat_d","prop_y11":544.89,"attr_t19":[567,423,533,881]},"param_b25":515.25,"key_s51":"example","dim_z28":553.48}} |
TASK repair_structured_output
SPEC
FIELD param_b78 TYPE string VALUES homozygous|heterozygous|hemizygous REQUIRED no
FIELD col_n91 TYPE number REQUIRED yes
FIELD param_b14 TYPE boolean REQUIRED yes
FIELD dim_u30 TYPE string VALUES USD|EUR|GBP|BRL|JPY REQUIRED no
FIELD prop_u40.col_o17 TYPE string REQUIRED yes
FIELD pr... | {"col_n91":972.32,"param_b14":true,"dim_u30":"BRL","prop_u40":{"col_o17":"John","key_x76":"Tokyo","param_m14":{"val_o47":"Silva","attr_x95":945,"attr_v09":"2022-12-23T07:22:00Z","dim_v84":"2020-06-04T15:43:00Z","param_g96":"missense"}},"attr_c45":false,"field_c67":"Sao Paulo"} | extra_field | {
"type": "object",
"properties": {
"param_b78": {
"type": "string",
"enum": [
"homozygous",
"heterozygous",
"hemizygous"
]
},
"col_n91": {
"type": "number"
},
"param_b14": {
"type": "boolean"
},
"dim_u30": {
"type": "string",
... | {"col_n91": 972.32, "param_b14": true, "dim_u30": "BRL", "prop_u40": {"col_o17": "John", "key_x76": "Tokyo", "param_m14": {"val_o47": "Silva", "attr_x95": 945, "attr_v09": "2022-12-23T07:22:00Z", "dim_v84": "2020-06-04T15:43:00Z", "param_g96": "missense"}}, "attr_c45": false, "field_c67": "Sao Paulo", "extra_field_8595... | Unknown field 'extra_field_8595' not defined in schema | {"col_n91":972.32,"param_b14":true,"dim_u30":"BRL","prop_u40":{"col_o17":"John","key_x76":"Tokyo","param_m14":{"val_o47":"Silva","attr_x95":945,"attr_v09":"2022-12-23T07:22:00Z","dim_v84":"2020-06-04T15:43:00Z","param_g96":"missense"}},"attr_c45":false,"field_c67":"Sao Paulo"} |
TASK repair_structured_output
SPEC
FIELD conductivity TYPE string VALUES success|error|warning|info REQUIRED no
FIELD company TYPE string_email REQUIRED yes
FIELD bill_of_lading.type TYPE string VALUES active|inactive|pending REQUIRED no
FIELD bill_of_lading.quality_score TYPE string REQUIRED no
FIELD bill_of_lading.p... | {"conductivity":"success","company":"user@test.io","bill_of_lading":{"type":"active","quality_score":"Tokyo","product_id":"Charlie","sensor_id":"hemizygous","active":{"tags":"https://data.com/api","insurance_id":"ops@test.io","website":"critical","zip_code":836.56,"items":"new"},"version":{"umi":663.06,"features":"succ... | missing_brace | {
"type": "object",
"properties": {
"conductivity": {
"type": "string",
"enum": [
"success",
"error",
"warning",
"info"
]
},
"company": {
"type": "string",
"format": "email"
},
"bill_of_lading": {
"type": "object",
"proper... | {"conductivity":"success","company":"user@test.io","bill_of_lading":{"type":"active","quality_score":"Tokyo","product_id":"Charlie","sensor_id":"hemizygous","active":{"tags":"https://data.com/api","insurance_id":"ops@test.io","website":"critical","zip_code":836.56,"items":"new"},"version":{"umi":663.06,"features":"succ... | Missing closing brace | {"conductivity":"success","company":"user@test.io","bill_of_lading":{"type":"active","quality_score":"Tokyo","product_id":"Charlie","sensor_id":"hemizygous","active":{"tags":"https://data.com/api","insurance_id":"ops@test.io","website":"critical","zip_code":836.56,"items":"new"},"version":{"umi":663.06,"features":"succ... |
TASK repair_structured_output
SPEC
FIELD branch TYPE string_uri REQUIRED yes
FIELD brake_pressure TYPE number REQUIRED no
FIELD procedure_code TYPE null REQUIRED yes
FIELD feedback.bill_of_lading TYPE integer REQUIRED no
FIELD feedback.tags TYPE string_uri REQUIRED no
FIELD feedback.active TYPE string VALUES synonymou... | {"branch":"https://data.org/api","procedure_code":null} | thought_process | {
"type": "object",
"properties": {
"branch": {
"type": "string",
"format": "uri"
},
"brake_pressure": {
"type": "number"
},
"procedure_code": {
"type": "null"
},
"feedback": {
"type": "object",
"properties": {
"bill_of_lading": {
"ty... | I need to check the port status before assigning the berth.
Let me verify the cargo manifest.
{"branch":"https://data.org/api","procedure_code":null} | Output contains chain-of-thought reasoning before JSON | {"branch":"https://data.org/api","procedure_code":null} |
TASK repair_structured_output
SPEC
FIELD val_v70 TYPE string VALUES coastal|oceanic|inland|arctic REQUIRED yes
FIELD val_o99 TYPE string VALUES operational|degraded|offline|maintenance REQUIRED no
FIELD field_z73 TYPE string VALUES new|in_transit|delivered|returned REQUIRED no
FIELD param_u49 TYPE string VALUES new|in... | {"val_v70":"arctic","field_z73":"in_transit","param_u49":"in_transit","dim_t33":"degraded"} | truncated_object | {
"type": "object",
"properties": {
"val_v70": {
"type": "string",
"enum": [
"coastal",
"oceanic",
"inland",
"arctic"
]
},
"val_o99": {
"type": "string",
"enum": [
"operational",
"degraded",
"offline",
"mainten... | {"val_v70":"arctic","field_z73":"in_transit","param_u49":"in_transit","dim_t33":"degraded" | Unexpected end of JSON input — truncated object | {"val_v70":"arctic","field_z73":"in_transit","param_u49":"in_transit","dim_t33":"degraded"} |
TASK repair_structured_output
SPEC
FIELD vessel_name TYPE integer REQUIRED no
FIELD item_id TYPE boolean REQUIRED no
FIELD altitude TYPE integer REQUIRED no
FIELD tags TYPE string REQUIRED no
FIELD build_status TYPE string REQUIRED yes
FIELD section TYPE string VALUES draft|published|archived REQUIRED no
FIELD deploy_... | {"vessel_name":296,"altitude":834,"build_status":"2024-06-30","deploy_target":"Jane"} | extra_text_after | {
"type": "object",
"properties": {
"vessel_name": {
"type": "integer"
},
"item_id": {
"type": "boolean"
},
"altitude": {
"type": "integer"
},
"tags": {
"type": "string"
},
"build_status": {
"type": "string"
},
"section": {
"type": "str... | {"vessel_name":296,"altitude":834,"build_status":"2024-06-30","deploy_target":"Jane"}
Data logged successfully. | Output contains non-JSON text after the object | {"vessel_name":296,"altitude":834,"build_status":"2024-06-30","deploy_target":"Jane"} |
TASK repair_structured_output
SPEC
FIELD attr_n40 TYPE string REQUIRED yes
FIELD val_v46 TYPE string_date-time REQUIRED no
FIELD prop_m58 TYPE null REQUIRED no
FIELD prop_l49.attr_v14 TYPE string VALUES pending_review|confirmed|rejected|escalated REQUIRED yes
FIELD prop_l49.col_j14 TYPE string_email REQUIRED no
FIELD ... | {"attr_n40":"Oliveira","val_v46":"2023-10-08T08:39:00Z","prop_m58":null} | unquoted_keys | {
"type": "object",
"properties": {
"attr_n40": {
"type": "string"
},
"val_v46": {
"type": "string",
"format": "date-time"
},
"prop_m58": {
"type": "null"
},
"prop_l49": {
"type": "object",
"properties": {
"attr_v14": {
"type": "strin... | {attr_n40:"Oliveira",val_v46:"2023-10-08T08:39:00Z",prop_m58:null} | Expecting property name enclosed in double quotes | {"attr_n40":"Oliveira","val_v46":"2023-10-08T08:39:00Z","prop_m58":null} |
TASK repair_structured_output
SPEC
FIELD val_m27 TYPE boolean REQUIRED yes
FIELD key_q27 TYPE string VALUES active|inactive|pending REQUIRED no
FIELD col_m95.attr_z72 TYPE string VALUES draft|published|archived REQUIRED yes
FIELD col_m95.key_i08 TYPE string REQUIRED no
FIELD col_m95.param_b51 TYPE integer REQUIRED no
... | {"val_m27":true,"key_q27":"pending","col_m95":{"attr_z72":"published","key_i08":"bar","param_b51":230,"key_e22":"red","dim_e81":696,"prop_i21":{"prop_l04":835,"dim_y38":799,"param_q46":616,"col_d27":845,"field_m59":"Berlin","attr_d21":"viewer"},"dim_x20":"published","dim_q95":"coastal"},"param_h88":{"key_v53":576.39,"k... | missing_brace | {
"type": "object",
"properties": {
"val_m27": {
"type": "boolean"
},
"key_q27": {
"type": "string",
"enum": [
"active",
"inactive",
"pending"
]
},
"col_m95": {
"type": "object",
"properties": {
"attr_z72": {
"type": "... | "val_m27":true,"key_q27":"pending","col_m95":{"attr_z72":"published","key_i08":"bar","param_b51":230,"key_e22":"red","dim_e81":696,"prop_i21":{"prop_l04":835,"dim_y38":799,"param_q46":616,"col_d27":845,"field_m59":"Berlin","attr_d21":"viewer"},"dim_x20":"published","dim_q95":"coastal"},"param_h88":{"key_v53":576.39,"ke... | Missing closing brace | {"val_m27":true,"key_q27":"pending","col_m95":{"attr_z72":"published","key_i08":"bar","param_b51":230,"key_e22":"red","dim_e81":696,"prop_i21":{"prop_l04":835,"dim_y38":799,"param_q46":616,"col_d27":845,"field_m59":"Berlin","attr_d21":"viewer"},"dim_x20":"published","dim_q95":"coastal"},"param_h88":{"key_v53":576.39,"k... |
TASK repair_structured_output
SPEC
FIELD medication TYPE string REQUIRED no
FIELD procedure_code TYPE integer REQUIRED no
FIELD credit_score.deploy_target.account_id TYPE string VALUES option_a|option_b|option_c|option_d|option_e REQUIRED no
FIELD credit_score.deploy_target.freight_class TYPE string VALUES cat_a|cat_b... | {"medication":"demo","credit_score":{"deploy_target":{"freight_class":"cat_d","loan_amount":null,"duration_ms":"cancelled"},"message":"synonymous","dissolved_oxygen":"small","run_id":{"payment_status":"medium","transaction_id":42,"phenotype":"test@example.com","count":null,"items":"John"},"bill_of_lading":"arctic"},"re... | missing_bracket | {
"type": "object",
"properties": {
"medication": {
"type": "string"
},
"procedure_code": {
"type": "integer"
},
"credit_score": {
"type": "object",
"properties": {
"deploy_target": {
"type": "object",
"properties": {
"account_id": ... | {"medication":"demo","credit_score":{"deploy_target":{"freight_class":"cat_d","loan_amount":null,"duration_ms":"cancelled"},"message":"synonymous","dissolved_oxygen":"small","run_id":{"payment_status":"medium","transaction_id":42,"phenotype":"test@example.com","count":null,"items":"John"},"bill_of_lading":"arctic"},"re... | Missing closing bracket | {"medication":"demo","credit_score":{"deploy_target":{"freight_class":"cat_d","loan_amount":null,"duration_ms":"cancelled"},"message":"synonymous","dissolved_oxygen":"small","run_id":{"payment_status":"medium","transaction_id":42,"phenotype":"test@example.com","count":null,"items":"John"},"bill_of_lading":"arctic"},"re... |
TASK repair_structured_output
SPEC
FIELD col_r11 TYPE null REQUIRED yes
FIELD col_t88 TYPE integer REQUIRED yes
FIELD key_t84.val_e73 TYPE string VALUES red|blue|green|black|white REQUIRED yes
FIELD key_t84.attr_w22 TYPE string VALUES red|blue|green|black|white REQUIRED yes
FIELD key_t84.key_z94 TYPE string VALUES ber... | {"col_r11":null,"col_t88":240,"key_t84":{"val_e73":"blue","attr_w22":"red","val_k12":830,"key_m94":true,"key_l52":"pending_review","attr_a32":"Sao Paulo"}} | missing_bracket | {
"type": "object",
"properties": {
"col_r11": {
"type": "null"
},
"col_t88": {
"type": "integer"
},
"key_t84": {
"type": "object",
"properties": {
"val_e73": {
"type": "string",
"enum": [
"red",
"blue",
"gre... | {"col_r11":null,"col_t88":240,"key_t84":{"val_e73":"blue","attr_w22":"red","val_k12":830,"key_m94":true,"key_l52":"pending_review","attr_a32":"Sao Paulo"}} | Missing closing bracket | {"col_r11":null,"col_t88":240,"key_t84":{"val_e73":"blue","attr_w22":"red","val_k12":830,"key_m94":true,"key_l52":"pending_review","attr_a32":"Sao Paulo"}} |
TASK repair_structured_output
SPEC
FIELD reagent TYPE number REQUIRED yes
FIELD duration_ms TYPE integer REQUIRED no
FIELD index TYPE string REQUIRED yes
FIELD comments TYPE string VALUES email|phone|sms|push REQUIRED yes
BROKEN_OUTPUT
{"reagent":25.38,"duration_ms":641,"index":"inactive","comments":"email"} | {"reagent":25.38,"duration_ms":641,"index":"inactive","comments":"email"} | missing_bracket | {
"type": "object",
"properties": {
"reagent": {
"type": "number"
},
"duration_ms": {
"type": "integer"
},
"index": {
"type": "string"
},
"comments": {
"type": "string",
"enum": [
"email",
"phone",
"sms",
"push"
]
}
... | {"reagent":25.38,"duration_ms":641,"index":"inactive","comments":"email"} | Missing closing bracket | {"reagent":25.38,"duration_ms":641,"index":"inactive","comments":"email"} |
TASK repair_structured_output
SPEC
FIELD param_y12 TYPE string REQUIRED yes
FIELD field_f51 TYPE string VALUES single|married|divorced REQUIRED yes
FIELD attr_p96 TYPE string REQUIRED no
FIELD col_c40 TYPE string VALUES small|medium|large|xl REQUIRED yes
FIELD col_c05 TYPE number REQUIRED no
FIELD field_u96 TYPE strin... | {"param_y12":"pending","field_f51":"single","col_c40":"small","col_c05":417.23,"field_u96":"escalated"} | number_with_unit | {
"type": "object",
"properties": {
"param_y12": {
"type": "string"
},
"field_f51": {
"type": "string",
"enum": [
"single",
"married",
"divorced"
]
},
"attr_p96": {
"type": "string"
},
"col_c40": {
"type": "string",
"enum"... | {"param_y12": "pending", "field_f51": "single", "col_c40": "small", "col_c05": "417.23cm", "field_u96": "escalated"} | Field 'col_c05' must be number, got string with unit | {"param_y12":"pending","field_f51":"single","col_c40":"small","col_c05":417.23,"field_u96":"escalated"} |
TASK repair_structured_output
SPEC
FIELD crew_id TYPE string REQUIRED yes
FIELD tax TYPE string VALUES admin|editor|viewer REQUIRED no
FIELD vessel_name TYPE string_date-time REQUIRED yes
FIELD credit_score TYPE string_uri REQUIRED yes
FIELD color TYPE integer REQUIRED no
FIELD yield_pct TYPE integer REQUIRED no
FIELD... | {"crew_id":"test@example.com","tax":"editor","vessel_name":"2024-07-16T07:56:00Z","credit_score":"https://example.org/v1","color":768,"yield_pct":830,"altitude":945} | date_format_error | {
"type": "object",
"properties": {
"crew_id": {
"type": "string"
},
"tax": {
"type": "string",
"enum": [
"admin",
"editor",
"viewer"
]
},
"vessel_name": {
"type": "string",
"format": "date-time"
},
"credit_score": {
"type... | {"crew_id": "test@example.com", "tax": "editor", "vessel_name": "2024-07-16T07:56:00", "credit_score": "https://example.org/v1", "color": 768, "yield_pct": 830, "altitude": 945} | Field 'vessel_name' has invalid date format | {"crew_id":"test@example.com","tax":"editor","vessel_name":"2024-07-16T07:56:00Z","credit_score":"https://example.org/v1","color":768,"yield_pct":830,"altitude":945} |
TASK repair_structured_output
SPEC
FIELD col_h03 TYPE string_email REQUIRED yes
FIELD val_e45 TYPE number REQUIRED yes
FIELD col_y95 TYPE string_email REQUIRED no
FIELD key_e11 TYPE integer REQUIRED no
FIELD param_z37 TYPE integer REQUIRED no
FIELD dim_g64 TYPE string VALUES level_1|level_2|level_3|level_4|level_5 REQ... | {"col_h03":"test@test.io","val_e45":631.66,"col_y95":"ops@example.com","key_e11":266,"param_z37":655} | agent_chain | {
"type": "object",
"properties": {
"col_h03": {
"type": "string",
"format": "email"
},
"val_e45": {
"type": "number"
},
"col_y95": {
"type": "string",
"format": "email"
},
"key_e11": {
"type": "integer"
},
"param_z37": {
"type": "integer... | I need to look up the information first.
Action: assign_berth
Result: {"val_e45": 631.66, "col_y95": "ops@example.com", "key_e11": 266, "param_z37": 655}
Processing the request now.
Action: assign_berth
Result: | Agent multi-step chain with truncated tool output | {"col_h03":"test@test.io","val_e45":631.66,"col_y95":"ops@example.com","key_e11":266,"param_z37":655} |
TASK repair_structured_output
SPEC
FIELD dim_r69 TYPE boolean REQUIRED no
FIELD param_d31.prop_t19 TYPE string VALUES free|basic|pro|enterprise REQUIRED yes
FIELD param_d31.col_h72 TYPE integer REQUIRED no
FIELD param_d31.dim_x29 TYPE string REQUIRED yes
FIELD param_d31.attr_z45 TYPE string REQUIRED no
FIELD param_d31... | {"dim_r69":true,"param_d31":{"prop_t19":"free","col_h72":678,"dim_x29":"John","attr_z45":"2023-12-25","col_u43":{"val_x90":512,"val_a41":"qux","attr_p82":"returned","param_g81":"Smith"},"prop_f20":"Luis","param_f22":{"key_n58":"2024-01-15","prop_v40":"draft","attr_m76":"2020-03-08T15:32:00Z"}},"key_a92":"viewer","col_m... | null_required | {
"type": "object",
"properties": {
"dim_r69": {
"type": "boolean"
},
"param_d31": {
"type": "object",
"properties": {
"prop_t19": {
"type": "string",
"enum": [
"free",
"basic",
"pro",
"enterprise"
]
... | {"dim_r69": true, "param_d31": {"prop_t19": "free", "col_h72": 678, "dim_x29": "John", "attr_z45": "2023-12-25", "col_u43": {"val_x90": 512, "val_a41": "qux", "attr_p82": "returned", "param_g81": "Smith"}, "prop_f20": "Luis", "param_f22": {"key_n58": "2024-01-15", "prop_v40": "draft", "attr_m76": "2020-03-08T15:32:00Z"... | Required field 'col_m01' is null | {"dim_r69":true,"param_d31":{"prop_t19":"free","col_h72":678,"dim_x29":"John","attr_z45":"2023-12-25","col_u43":{"val_x90":512,"val_a41":"qux","attr_p82":"returned","param_g81":"Smith"},"prop_f20":"Luis","param_f22":{"key_n58":"2024-01-15","prop_v40":"draft","attr_m76":"2020-03-08T15:32:00Z"}},"key_a92":"viewer","col_m... |
TASK repair_structured_output
SPEC
FIELD first_name TYPE string REQUIRED no
FIELD pressure_kpa TYPE integer REQUIRED no
FIELD bearing TYPE boolean REQUIRED yes
FIELD label.reagent TYPE string VALUES operational|degraded|offline|maintenance REQUIRED no
FIELD label.commit_hash TYPE string VALUES coastal|oceanic|inland|a... | {"first_name":"Berlin","pressure_kpa":784,"bearing":true,"label":{"reagent":"operational","commit_hash":"coastal"},"message":{"start_date":"high","username":"medium","maturity_date":"MV-Evergreen-01","repository":360,"half_life":643,"temp_celsius":970}} | boolean_as_string | {
"type": "object",
"properties": {
"first_name": {
"type": "string"
},
"pressure_kpa": {
"type": "integer"
},
"bearing": {
"type": "boolean"
},
"label": {
"type": "object",
"properties": {
"reagent": {
"type": "string",
"enum": [... | {"first_name": "Berlin", "pressure_kpa": 784, "bearing": "true", "label": {"reagent": "operational", "commit_hash": "coastal"}, "message": {"start_date": "high", "username": "medium", "maturity_date": "MV-Evergreen-01", "repository": 360, "half_life": 643, "temp_celsius": 970}} | Field 'bearing' must be boolean, got string | {"first_name":"Berlin","pressure_kpa":784,"bearing":true,"label":{"reagent":"operational","commit_hash":"coastal"},"message":{"start_date":"high","username":"medium","maturity_date":"MV-Evergreen-01","repository":360,"half_life":643,"temp_celsius":970}} |
TASK repair_structured_output
SPEC
FIELD prop_o16 TYPE number REQUIRED no
FIELD attr_i66 TYPE string REQUIRED yes
FIELD col_s37.dim_l01 TYPE boolean REQUIRED no
FIELD col_s37.param_w28 TYPE integer REQUIRED no
FIELD col_s37.attr_n04 TYPE integer REQUIRED no
FIELD col_s37.prop_i68 TYPE string REQUIRED yes
FIELD col_s37... | {"prop_o16":503.87,"attr_i66":"demo","col_s37":{"dim_l01":true,"attr_n04":147,"prop_i68":"Sao Paulo","attr_a88":"https://api.example.com/v1","attr_g58":"open","prop_b39":798.31}} | trailing_comma | {
"type": "object",
"properties": {
"prop_o16": {
"type": "number"
},
"attr_i66": {
"type": "string"
},
"col_s37": {
"type": "object",
"properties": {
"dim_l01": {
"type": "boolean"
},
"param_w28": {
"type": "integer"
},... | {"prop_o16":503.87,"attr_i66":"demo","col_s37":{"dim_l01":true,"attr_n04":147,"prop_i68":"Sao Paulo","attr_a88":"https://api.example.com/v1","attr_g58":"open","prop_b39":798.31},} | Unexpected trailing comma | {"prop_o16":503.87,"attr_i66":"demo","col_s37":{"dim_l01":true,"attr_n04":147,"prop_i68":"Sao Paulo","attr_a88":"https://api.example.com/v1","attr_g58":"open","prop_b39":798.31}} |
TASK repair_structured_output
SPEC
FIELD tax TYPE string REQUIRED no
FIELD id TYPE string VALUES pending_review|confirmed|rejected|escalated REQUIRED yes
FIELD maturity_date TYPE integer REQUIRED yes
BROKEN_OUTPUT
I'll query our database.
<tool_call name="calculate_docking_fee">
{"id":"rejected","maturity_date":584}
... | {"id":"rejected","maturity_date":584} | tool_call_text_mix | {
"type": "object",
"properties": {
"tax": {
"type": "string"
},
"id": {
"type": "string",
"enum": [
"pending_review",
"confirmed",
"rejected",
"escalated"
]
},
"maturity_date": {
"type": "integer"
}
},
"required": [
"id",... | I'll query our database.
<tool_call name="calculate_docking_fee">
{"id":"rejected","maturity_date":584}
</tool_call.
Operation completed. | Agent response mixes reasoning text with tool call | {"id":"rejected","maturity_date":584} |
TASK repair_structured_output
SPEC
FIELD dim_h74 TYPE string REQUIRED no
FIELD key_z93 TYPE integer REQUIRED no
FIELD attr_e56 TYPE string_email REQUIRED yes
FIELD attr_f32 TYPE number REQUIRED no
BROKEN_OUTPUT
I need to create a JSON object that matches the given schema.
Let me make sure all required fields are incl... | {"dim_h74":"REV","key_z93":434,"attr_e56":"ops@test.io"} | thought_process | {
"type": "object",
"properties": {
"dim_h74": {
"type": "string"
},
"key_z93": {
"type": "integer"
},
"attr_e56": {
"type": "string",
"format": "email"
},
"attr_f32": {
"type": "number"
}
},
"required": [
"attr_e56"
]
} | I need to create a JSON object that matches the given schema.
Let me make sure all required fields are included.
{"dim_h74":"REV","key_z93":434,"attr_e56":"ops@test.io"} | Output contains chain-of-thought reasoning before JSON | {"dim_h74":"REV","key_z93":434,"attr_e56":"ops@test.io"} |
TASK repair_structured_output
SPEC
FIELD dim_t86 TYPE null REQUIRED no
FIELD key_y62 TYPE string REQUIRED no
FIELD key_w42 TYPE integer REQUIRED yes
FIELD param_n38 TYPE string REQUIRED no
BROKEN_OUTPUT
{"key_y62":"Berlin","key_w42":923,"param_n38":"Oliveira" | {"key_y62":"Berlin","key_w42":923,"param_n38":"Oliveira"} | truncated_array | {
"type": "object",
"properties": {
"dim_t86": {
"type": "null"
},
"key_y62": {
"type": "string"
},
"key_w42": {
"type": "integer"
},
"param_n38": {
"type": "string"
}
},
"required": [
"key_w42"
]
} | {"key_y62":"Berlin","key_w42":923,"param_n38":"Oliveira" | Unexpected end of JSON input — truncated object | {"key_y62":"Berlin","key_w42":923,"param_n38":"Oliveira"} |
TASK repair_structured_output
SPEC
FIELD field_n82 TYPE string REQUIRED yes
FIELD key_p30 TYPE integer REQUIRED yes
FIELD col_j89 TYPE string REQUIRED yes
BROKEN_OUTPUT
I need to look up the information first.
Action: update_preferences
Result: {"field_n82": "user@domain.com", "key_p30": 314}
Processing the request ... | {"field_n82":"user@domain.com","key_p30":314,"col_j89":"This is a test value."} | agent_chain | {
"type": "object",
"properties": {
"field_n82": {
"type": "string"
},
"key_p30": {
"type": "integer"
},
"col_j89": {
"type": "string"
}
},
"required": [
"field_n82",
"col_j89",
"key_p30"
]
} | I need to look up the information first.
Action: update_preferences
Result: {"field_n82": "user@domain.com", "key_p30": 314}
Processing the request now.
Action: read_sensor_array
Result: | Agent multi-step chain with truncated tool output | {"field_n82":"user@domain.com","key_p30":314,"col_j89":"This is a test value."} |
TASK repair_structured_output
SPEC
FIELD field_d28 TYPE string VALUES reliable|unstable|intermittent REQUIRED yes
FIELD attr_r13 TYPE string VALUES red|blue|green|black|white REQUIRED no
FIELD col_d51.prop_l68 TYPE null REQUIRED no
FIELD col_d51.field_b82 TYPE string VALUES free|basic|pro|enterprise REQUIRED no
FIELD ... | {"field_d28":"intermittent","attr_r13":"blue","col_d51":{"prop_l68":null,"field_b82":"basic","field_k52":{"attr_s92":971.55,"val_y35":"critical","attr_y35":"Luis","field_f94":"pro","val_y45":false,"dim_u98":"pending"}},"field_k86":931,"field_m37":309} | markdown_explanation | {
"type": "object",
"properties": {
"field_d28": {
"type": "string",
"enum": [
"reliable",
"unstable",
"intermittent"
]
},
"attr_r13": {
"type": "string",
"enum": [
"red",
"blue",
"green",
"black",
"white"
... | Here is the JSON you requested:
```json
{"field_d28":"intermittent","attr_r13":"blue","col_d51":{"prop_l68":null,"field_b82":"basic","field_k52":{"attr_s92":971.55,"val_y35":"critical","attr_y35":"Luis","field_f94":"pro","val_y45":false,"dim_u98":"pending"}},"field_k86":931,"field_m37":309}
```
This should match the sc... | Output contains markdown and explanatory text around JSON | {"field_d28":"intermittent","attr_r13":"blue","col_d51":{"prop_l68":null,"field_b82":"basic","field_k52":{"attr_s92":971.55,"val_y35":"critical","attr_y35":"Luis","field_f94":"pro","val_y45":false,"dim_u98":"pending"}},"field_k86":931,"field_m37":309} |
TASK repair_structured_output
SPEC
FIELD velocity TYPE string REQUIRED yes
FIELD bill_of_lading TYPE string VALUES open|in_progress|resolved|closed REQUIRED yes
FIELD color TYPE integer REQUIRED yes
BROKEN_OUTPUT
{"velocity":"foo","bill_of_lading":"in_progress","color":65,} | {"velocity":"foo","bill_of_lading":"in_progress","color":65} | trailing_comma | {
"type": "object",
"properties": {
"velocity": {
"type": "string"
},
"bill_of_lading": {
"type": "string",
"enum": [
"open",
"in_progress",
"resolved",
"closed"
]
},
"color": {
"type": "integer"
}
},
"required": [
"color"... | {"velocity":"foo","bill_of_lading":"in_progress","color":65,} | Unexpected trailing comma | {"velocity":"foo","bill_of_lading":"in_progress","color":65} |
TASK repair_structured_output
SPEC
FIELD val_v30.dim_t08 TYPE string VALUES red|blue|green|black|white REQUIRED no
FIELD val_v30.param_q33 TYPE number REQUIRED no
FIELD val_v30.field_z95 TYPE string_date-time REQUIRED yes
FIELD val_v30.col_q19 TYPE string REQUIRED yes
FIELD val_v30.prop_x33 TYPE string REQUIRED no
FIE... | {"val_v30":{"param_q33":577.65,"field_z95":"2026-04-01T04:53:00Z","col_q19":"approved","prop_x33":"London"},"val_m72":{"key_u57":"mode_e","key_i92":"level_1","key_z71":"hello","dim_e10":645.95,"col_u88":null},"param_h12":"single","field_i93":267,"field_v76":"Silva","param_q54":"2025-08-25T03:54:00Z","prop_z61":"QC-07",... | truncated_object | {
"type": "object",
"properties": {
"val_v30": {
"type": "object",
"properties": {
"dim_t08": {
"type": "string",
"enum": [
"red",
"blue",
"green",
"black",
"white"
]
},
"param_q33": {
... | {"val_v30":{"param_q33":577.65,"field_z95":"2026-04-01T04:53:00Z","col_q19":"approved","prop_x33":"London"},"val_m72":{"key_u57":"mode_e","key_i92":"level_1","key_z71":"hello","dim_e10":645.95,"col_u88":null},"param_h12":"single","field_i93":267,"field_v76":"Silva","param_q54":"2025-08-25T03:54:00Z","prop_z61":"QC-07",... | Unexpected end of JSON input — truncated object | {"val_v30":{"param_q33":577.65,"field_z95":"2026-04-01T04:53:00Z","col_q19":"approved","prop_x33":"London"},"val_m72":{"key_u57":"mode_e","key_i92":"level_1","key_z71":"hello","dim_e10":645.95,"col_u88":null},"param_h12":"single","field_i93":267,"field_v76":"Silva","param_q54":"2025-08-25T03:54:00Z","prop_z61":"QC-07",... |
TASK repair_structured_output
SPEC
FIELD attr_p55 TYPE string VALUES active|inactive|pending REQUIRED no
FIELD key_a48 TYPE string VALUES red|blue|green|black|white REQUIRED no
FIELD val_p31[].dim_j81 TYPE string REQUIRED no
FIELD val_p31[].col_l86 TYPE integer REQUIRED no
FIELD val_p31[].param_l78 TYPE string VALUES ... | {"val_p31":[{"dim_j81":"qux","param_l78":"maintenance","key_a08":"chr1","prop_o07":null},{"col_l86":820,"param_l78":"operational","key_a08":"RTG-04"},{"dim_j81":"world","param_l78":"offline","key_a08":"Smith","prop_o07":null}]} | extra_text_before | {
"type": "object",
"properties": {
"attr_p55": {
"type": "string",
"enum": [
"active",
"inactive",
"pending"
]
},
"key_a48": {
"type": "string",
"enum": [
"red",
"blue",
"green",
"black",
"white"
]
}... | Sensor output follows:
{"val_p31":[{"dim_j81":"qux","param_l78":"maintenance","key_a08":"chr1","prop_o07":null},{"col_l86":820,"param_l78":"operational","key_a08":"RTG-04"},{"dim_j81":"world","param_l78":"offline","key_a08":"Smith","prop_o07":null}]} | Output contains non-JSON text before the object | {"val_p31":[{"dim_j81":"qux","param_l78":"maintenance","key_a08":"chr1","prop_o07":null},{"col_l86":820,"param_l78":"operational","key_a08":"RTG-04"},{"dim_j81":"world","param_l78":"offline","key_a08":"Smith","prop_o07":null}]} |
TASK repair_structured_output
SPEC
FIELD interest_rate TYPE string VALUES homozygous|heterozygous|hemizygous REQUIRED yes
FIELD voltage TYPE string VALUES operational|degraded|offline|maintenance REQUIRED no
FIELD insurance_id TYPE string VALUES free|basic|pro|enterprise REQUIRED yes
BROKEN_OUTPUT
I need to look up t... | {"interest_rate":"hemizygous","voltage":"operational","insurance_id":"basic"} | tool_call_partial_args | {
"type": "object",
"properties": {
"interest_rate": {
"type": "string",
"enum": [
"homozygous",
"heterozygous",
"hemizygous"
]
},
"voltage": {
"type": "string",
"enum": [
"operational",
"degraded",
"offline",
"mainten... | I need to look up the information first.
Action: track_vessel
Arguments: {"interest_rate": "hemizygous", "voltage": "operational"} | Agent tool call missing required parameter 'insurance_id' | {"interest_rate":"hemizygous","voltage":"operational","insurance_id":"basic"} |
TASK repair_structured_output
SPEC
FIELD deploy_target.lane TYPE string_email REQUIRED yes
FIELD deploy_target.invoice_id TYPE string VALUES USD|EUR|GBP|BRL|JPY REQUIRED yes
FIELD deploy_target.hazmat_code TYPE string_uri REQUIRED yes
FIELD deploy_target.amount.end_date TYPE integer REQUIRED no
FIELD deploy_target.amo... | {"deploy_target":{"lane":"admin@example.com","invoice_id":"GBP","hazmat_code":"https://example.io/v1","amount":{"voltage":true,"status_code":["pending"],"feedback":["bar","MV-Evergreen-01"]}},"duration_ms":261.75,"nickname":{"decay_rate":false,"subtotal":"2020-12-14T05:27:00Z","notes":"London","insurance_id":["maintena... | markdown_explanation | {
"type": "object",
"properties": {
"deploy_target": {
"type": "object",
"properties": {
"lane": {
"type": "string",
"format": "email"
},
"invoice_id": {
"type": "string",
"enum": [
"USD",
"EUR",
"GBP... | Here is the response in the requested format:
```json
{"deploy_target":{"lane":"admin@example.com","invoice_id":"GBP","hazmat_code":"https://example.io/v1","amount":{"voltage":true,"status_code":["pending"],"feedback":["bar","MV-Evergreen-01"]}},"duration_ms":261.75,"nickname":{"decay_rate":false,"subtotal":"2020-12-14... | Output contains markdown and explanatory text around JSON | {"deploy_target":{"lane":"admin@example.com","invoice_id":"GBP","hazmat_code":"https://example.io/v1","amount":{"voltage":true,"status_code":["pending"],"feedback":["bar","MV-Evergreen-01"]}},"duration_ms":261.75,"nickname":{"decay_rate":false,"subtotal":"2020-12-14T05:27:00Z","notes":"London","insurance_id":["maintena... |
TASK repair_structured_output
SPEC
FIELD attr_j56 TYPE string VALUES berthed|anchored|underway|moored REQUIRED no
FIELD key_m50 TYPE string VALUES level_1|level_2|level_3|level_4 REQUIRED yes
FIELD dim_x03 TYPE string VALUES pending_review|confirmed|rejected|escalated REQUIRED no
FIELD attr_b33[] TYPE integer REQUIRED... | {"attr_j56":"underway","key_m50":"level_3","dim_x03":"escalated","attr_b33":[892],"param_z50":[false]} | missing_required | {
"type": "object",
"properties": {
"attr_j56": {
"type": "string",
"enum": [
"berthed",
"anchored",
"underway",
"moored"
]
},
"key_m50": {
"type": "string",
"enum": [
"level_1",
"level_2",
"level_3",
"level_4"... | {"attr_j56": "underway", "dim_x03": "escalated", "attr_b33": [892], "param_z50": [false]} | Required field 'key_m50' is missing | {"attr_j56":"underway","key_m50":"level_3","dim_x03":"escalated","attr_b33":[892],"param_z50":[false]} |
TASK repair_structured_output
SPEC
FIELD val_e55 TYPE string REQUIRED no
FIELD prop_e16 TYPE string REQUIRED no
FIELD prop_u53.prop_r72.col_m32 TYPE string_uri REQUIRED no
FIELD prop_u53.prop_r72.col_a14 TYPE boolean REQUIRED no
FIELD prop_u53.prop_r72.dim_d27 TYPE string REQUIRED yes
FIELD prop_u53.prop_r72.val_r69 T... | {"prop_e16":"Hapag-Lloyd-Express","key_g90":true,"param_x08":42.9,"prop_v70":{"key_m93":{"val_w07":588,"prop_s34":"https://example.com/data","col_h53":"Smith","key_f07":"2024-01-15"},"prop_s14":{"val_y69":null,"attr_h16":499,"val_a64":839,"key_m33":false,"val_f92":"2022-09-04T04:41:00Z","attr_k60":"QC-07"},"col_s56":"q... | tool_call_python_syntax | {
"type": "object",
"properties": {
"val_e55": {
"type": "string"
},
"prop_e16": {
"type": "string"
},
"prop_u53": {
"type": "object",
"properties": {
"prop_r72": {
"type": "object",
"properties": {
"col_m32": {
"type"... | get_weather(prop_e16='Hapag-Lloyd-Express', key_g90=True, param_x08=42.9, prop_v70={'key_m93': {'val_w07': 588, 'prop_s34': 'https://example.com/data', 'col_h53': 'Smith', 'key_f07': '2024-01-15'}, 'prop_s14': {'val_y69': None, 'attr_h16': 499, 'val_a64': 839, 'key_m33': False, 'val_f92': '2022-09-04T04:41:00Z', 'attr_... | Tool call uses Python syntax instead of JSON | {"prop_e16":"Hapag-Lloyd-Express","key_g90":true,"param_x08":42.9,"prop_v70":{"key_m93":{"val_w07":588,"prop_s34":"https://example.com/data","col_h53":"Smith","key_f07":"2024-01-15"},"prop_s14":{"val_y69":null,"attr_h16":499,"val_a64":839,"key_m33":false,"val_f92":"2022-09-04T04:41:00Z","attr_k60":"QC-07"},"col_s56":"q... |
TASK repair_structured_output
SPEC
FIELD key_h16 TYPE string REQUIRED yes
FIELD col_b81 TYPE integer REQUIRED yes
FIELD col_t69 TYPE boolean REQUIRED no
FIELD col_i66.prop_z42 TYPE string VALUES admin|editor|viewer REQUIRED yes
FIELD col_i66.col_u86 TYPE string_date-time REQUIRED no
FIELD col_i66.field_s85 TYPE string... | {"key_h16":"Berlin","col_b81":226,"col_t69":false,"col_i66":{"prop_z42":"editor","col_u86":"2023-04-16T12:26:00Z","field_s85":"London","key_e35":"cat_a","key_p10":"hello","attr_p04":611}} | missing_brace | {
"type": "object",
"properties": {
"key_h16": {
"type": "string"
},
"col_b81": {
"type": "integer"
},
"col_t69": {
"type": "boolean"
},
"col_i66": {
"type": "object",
"properties": {
"prop_z42": {
"type": "string",
"enum": [
... | "key_h16":"Berlin","col_b81":226,"col_t69":false,"col_i66":{"prop_z42":"editor","col_u86":"2023-04-16T12:26:00Z","field_s85":"London","key_e35":"cat_a","key_p10":"hello","attr_p04":611}} | Missing closing brace | {"key_h16":"Berlin","col_b81":226,"col_t69":false,"col_i66":{"prop_z42":"editor","col_u86":"2023-04-16T12:26:00Z","field_s85":"London","key_e35":"cat_a","key_p10":"hello","attr_p04":611}} |
TASK repair_structured_output
SPEC
FIELD build_status TYPE string REQUIRED yes
FIELD chromosome TYPE string VALUES draft|published|archived REQUIRED no
FIELD organism.crew_id.city TYPE string REQUIRED yes
FIELD organism.crew_id.brake_pressure TYPE string VALUES small|medium|large|xl REQUIRED no
FIELD organism.crew_id.... | {"build_status":"QC-07","chromosome":"draft","organism":{"crew_id":{"city":"demo","brake_pressure":"small","language":547},"height":null,"pressure_kpa":620.18,"brake_pressure":{"loan_amount":"2022-02-10T17:36:00Z","decay_rate":283,"state":"admin@test.io","conductivity":["push","phone","email"]},"lab_result":132.63}} | missing_bracket | {
"type": "object",
"properties": {
"build_status": {
"type": "string"
},
"chromosome": {
"type": "string",
"enum": [
"draft",
"published",
"archived"
]
},
"organism": {
"type": "object",
"properties": {
"crew_id": {
"... | {"build_status":"QC-07","chromosome":"draft","organism":{"crew_id":{"city":"demo","brake_pressure":"small","language":547},"height":null,"pressure_kpa":620.18,"brake_pressure":{"loan_amount":"2022-02-10T17:36:00Z","decay_rate":283,"state":"admin@test.io","conductivity":["push","phone","email"},"lab_result":132.63}} | Missing closing bracket | {"build_status":"QC-07","chromosome":"draft","organism":{"crew_id":{"city":"demo","brake_pressure":"small","language":547},"height":null,"pressure_kpa":620.18,"brake_pressure":{"loan_amount":"2022-02-10T17:36:00Z","decay_rate":283,"state":"admin@test.io","conductivity":["push","phone","email"]},"lab_result":132.63}} |
TASK repair_structured_output
SPEC
FIELD tax TYPE string_email REQUIRED yes
FIELD aligned_pct TYPE integer REQUIRED yes
FIELD vital_sign.velocity TYPE string VALUES coastal|oceanic|inland|arctic REQUIRED yes
FIELD vital_sign.dosage TYPE string REQUIRED yes
FIELD vital_sign.throttle_pos[].gene_id TYPE number REQUIRED n... | {"tax":"info@domain.org","aligned_pct":90,"vital_sign":{"velocity":"inland","dosage":"2023-12-25","throttle_pos":[{"gene_id":170.47,"diagnosis_code":"inland","fleet_number":"2025-11-04T08:09:00Z"},{"gene_id":322.25,"repository":748,"diagnosis_code":"inland","fleet_number":"2021-01-18T16:25:00Z"}]},"conductivity":"ocean... | extra_text_before | {
"type": "object",
"properties": {
"tax": {
"type": "string",
"format": "email"
},
"aligned_pct": {
"type": "integer"
},
"vital_sign": {
"type": "object",
"properties": {
"velocity": {
"type": "string",
"enum": [
"coastal",
... | Sure, here's the result:
{"tax":"info@domain.org","aligned_pct":90,"vital_sign":{"velocity":"inland","dosage":"2023-12-25","throttle_pos":[{"gene_id":170.47,"diagnosis_code":"inland","fleet_number":"2025-11-04T08:09:00Z"},{"gene_id":322.25,"repository":748,"diagnosis_code":"inland","fleet_number":"2021-01-18T16:25:00Z"... | Output contains non-JSON text before the object | {"tax":"info@domain.org","aligned_pct":90,"vital_sign":{"velocity":"inland","dosage":"2023-12-25","throttle_pos":[{"gene_id":170.47,"diagnosis_code":"inland","fleet_number":"2025-11-04T08:09:00Z"},{"gene_id":322.25,"repository":748,"diagnosis_code":"inland","fleet_number":"2021-01-18T16:25:00Z"}]},"conductivity":"ocean... |
TASK repair_structured_output
SPEC
FIELD dim_m09 TYPE integer REQUIRED no
FIELD field_w57 TYPE string VALUES reliable|unstable|intermittent REQUIRED yes
FIELD dim_w18 TYPE integer REQUIRED no
FIELD col_w81.prop_i16 TYPE string VALUES active|inactive|pending REQUIRED no
FIELD col_w81.key_t99 TYPE string REQUIRED no
FIE... | {"field_w57":"unstable","col_w81":{"prop_i16":"pending","key_t99":"2024-01-15","attr_q52":"single","val_x22":false},"field_w25":{"dim_z93":null,"key_l98":"escalated","val_p15":null,"dim_g74":"nonsense","dim_f41":{"param_h34":false}}} | markdown_explanation | {
"type": "object",
"properties": {
"dim_m09": {
"type": "integer"
},
"field_w57": {
"type": "string",
"enum": [
"reliable",
"unstable",
"intermittent"
]
},
"dim_w18": {
"type": "integer"
},
"col_w81": {
"type": "object",
... | The instrument reported:
```json
{"field_w57":"unstable","col_w81":{"prop_i16":"pending","key_t99":"2024-01-15","attr_q52":"single","val_x22":false},"field_w25":{"dim_z93":null,"key_l98":"escalated","val_p15":null,"dim_g74":"nonsense","dim_f41":{"param_h34":false}}}
```
Feel free to ask if you have questions. | Output contains markdown and explanatory text around JSON | {"field_w57":"unstable","col_w81":{"prop_i16":"pending","key_t99":"2024-01-15","attr_q52":"single","val_x22":false},"field_w25":{"dim_z93":null,"key_l98":"escalated","val_p15":null,"dim_g74":"nonsense","dim_f41":{"param_h34":false}}} |
TASK repair_structured_output
SPEC
FIELD col_u08 TYPE number REQUIRED yes
FIELD key_f80 TYPE string_uri REQUIRED no
FIELD param_o31 TYPE boolean REQUIRED no
FIELD attr_k44.dim_d01 TYPE string REQUIRED yes
FIELD attr_k44.param_p89 TYPE string VALUES USD|EUR|GBP|BRL|JPY REQUIRED no
FIELD attr_k44.prop_g24 TYPE boolean R... | {"col_u08":126.26,"key_f80":"https://www.com/v1","param_o31":false,"attr_k44":{"dim_d01":"https://api.example.com/v1","param_p89":"EUR","prop_g24":false},"dim_h11":"intermittent","key_g97":null,"prop_h96":"pending","col_l64":true} | boolean_as_string | {
"type": "object",
"properties": {
"col_u08": {
"type": "number"
},
"key_f80": {
"type": "string",
"format": "uri"
},
"param_o31": {
"type": "boolean"
},
"attr_k44": {
"type": "object",
"properties": {
"dim_d01": {
"type": "string"
... | {"col_u08": 126.26, "key_f80": "https://www.com/v1", "param_o31": false, "attr_k44": {"dim_d01": "https://api.example.com/v1", "param_p89": "EUR", "prop_g24": false}, "dim_h11": "intermittent", "key_g97": null, "prop_h96": "pending", "col_l64": "yes"} | Field 'col_l64' must be boolean, got string | {"col_u08":126.26,"key_f80":"https://www.com/v1","param_o31":false,"attr_k44":{"dim_d01":"https://api.example.com/v1","param_p89":"EUR","prop_g24":false},"dim_h11":"intermittent","key_g97":null,"prop_h96":"pending","col_l64":true} |
TASK repair_structured_output
SPEC
FIELD procedure_code TYPE string VALUES level_1|level_2 REQUIRED yes
FIELD weight TYPE string VALUES berthed|anchored|underway|moored REQUIRED no
FIELD loan_amount TYPE null REQUIRED yes
BROKEN_OUTPUT
Let me check the system.
<tool_call name="send_email">
{"procedure_code":"level_1"... | {"procedure_code":"level_1","loan_amount":null} | tool_call_text_mix | {
"type": "object",
"properties": {
"procedure_code": {
"type": "string",
"enum": [
"level_1",
"level_2"
]
},
"weight": {
"type": "string",
"enum": [
"berthed",
"anchored",
"underway",
"moored"
]
},
"loan_amount"... | Let me check the system.
<tool_call name="send_email">
{"procedure_code":"level_1","loan_amount":null}
</tool_call.
Operation completed. | Agent response mixes reasoning text with tool call | {"procedure_code":"level_1","loan_amount":null} |
TASK repair_structured_output
SPEC
FIELD order_id TYPE integer REQUIRED no
FIELD decay_rate TYPE number REQUIRED no
FIELD humidity_pct TYPE string VALUES pending_review|confirmed|rejected|escalated REQUIRED yes
FIELD coverage TYPE string VALUES synonymous|missense|nonsense|frameshift REQUIRED no
FIELD lane TYPE string... | {"order_id":162,"decay_rate":839.77,"humidity_pct":"escalated","coverage":"nonsense","lane":"foo","amount":{"throttle_pos":"editor","currency":"new","nickname":"delivered","berth_slot":996,"humidity_pct":"Diana","account_id":true},"longitude":553,"freight_class":569} | extra_text_after | {
"type": "object",
"properties": {
"order_id": {
"type": "integer"
},
"decay_rate": {
"type": "number"
},
"humidity_pct": {
"type": "string",
"enum": [
"pending_review",
"confirmed",
"rejected",
"escalated"
]
},
"coverage": {... | {"order_id":162,"decay_rate":839.77,"humidity_pct":"escalated","coverage":"nonsense","lane":"foo","amount":{"throttle_pos":"editor","currency":"new","nickname":"delivered","berth_slot":996,"humidity_pct":"Diana","account_id":true},"longitude":553,"freight_class":569}
Analysis finished. | Output contains non-JSON text after the object | {"order_id":162,"decay_rate":839.77,"humidity_pct":"escalated","coverage":"nonsense","lane":"foo","amount":{"throttle_pos":"editor","currency":"new","nickname":"delivered","berth_slot":996,"humidity_pct":"Diana","account_id":true},"longitude":553,"freight_class":569} |
TASK repair_structured_output
SPEC
FIELD index TYPE string REQUIRED yes
FIELD allele TYPE integer REQUIRED no
FIELD lab_result TYPE string VALUES level_1|level_2|level_3|level_4|level_5 REQUIRED no
FIELD account_id TYPE string_email REQUIRED no
FIELD category TYPE null REQUIRED no
FIELD credit_score.enabled TYPE strin... | {"index":"test@example.com","allele":31,"lab_result":"level_4","credit_score":{"enabled":"Sao Paulo","latitude":"mode_a"}} | thought_process | {
"type": "object",
"properties": {
"index": {
"type": "string"
},
"allele": {
"type": "integer"
},
"lab_result": {
"type": "string",
"enum": [
"level_1",
"level_2",
"level_3",
"level_4",
"level_5"
]
},
"account_id": {... | Analyzing the sensor data to generate the output.
I'll apply the required format first.
{"index":"test@example.com","allele":31,"lab_result":"level_4","credit_score":{"enabled":"Sao Paulo","latitude":"mode_a"}} | Output contains chain-of-thought reasoning before JSON | {"index":"test@example.com","allele":31,"lab_result":"level_4","credit_score":{"enabled":"Sao Paulo","latitude":"mode_a"}} |
TASK repair_structured_output
SPEC
FIELD param_z83 TYPE boolean REQUIRED yes
FIELD prop_o12 TYPE string_uri REQUIRED yes
FIELD val_q12 TYPE integer REQUIRED yes
FIELD dim_e10 TYPE number REQUIRED no
FIELD field_t27 TYPE boolean REQUIRED yes
FIELD param_v41 TYPE string REQUIRED no
FIELD attr_w80 TYPE string VALUES mode... | {"param_z83":false,"prop_o12":"https://www.com/api","val_q12":414,"dim_e10":100.29,"field_t27":true,"param_v41":"user@domain.com","attr_w80":"mode_a"} | single_quotes | {
"type": "object",
"properties": {
"param_z83": {
"type": "boolean"
},
"prop_o12": {
"type": "string",
"format": "uri"
},
"val_q12": {
"type": "integer"
},
"dim_e10": {
"type": "number"
},
"field_t27": {
"type": "boolean"
},
"param_v41... | {'param_z83':false,'prop_o12':'https://www.com/api','val_q12':414,'dim_e10':100.29,'field_t27':true,'param_v41':'user@domain.com','attr_w80':'mode_a'} | Expecting property name enclosed in double quotes | {"param_z83":false,"prop_o12":"https://www.com/api","val_q12":414,"dim_e10":100.29,"field_t27":true,"param_v41":"user@domain.com","attr_w80":"mode_a"} |
TASK repair_structured_output
SPEC
FIELD conductivity TYPE string VALUES small|medium|large|xl REQUIRED yes
FIELD barcode TYPE boolean REQUIRED no
FIELD footnote TYPE null REQUIRED no
BROKEN_OUTPUT
{"conductivity": "small", "footnote": null, "extra_field_135": true} | {"conductivity":"small","footnote":null} | extra_field | {
"type": "object",
"properties": {
"conductivity": {
"type": "string",
"enum": [
"small",
"medium",
"large",
"xl"
]
},
"barcode": {
"type": "boolean"
},
"footnote": {
"type": "null"
}
},
"required": [
"conductivity"
]
} | {"conductivity": "small", "footnote": null, "extra_field_135": true} | Unknown field 'extra_field_135' not defined in schema | {"conductivity":"small","footnote":null} |
TASK repair_structured_output
SPEC
FIELD tax TYPE integer REQUIRED yes
FIELD account_id TYPE string VALUES USD|EUR|GBP|BRL|JPY REQUIRED yes
FIELD run_id TYPE string VALUES active|inactive|pending REQUIRED yes
BROKEN_OUTPUT
{"tax": 765, "run_id": "inactive"} | {"tax":765,"account_id":"USD","run_id":"inactive"} | missing_required | {
"type": "object",
"properties": {
"tax": {
"type": "integer"
},
"account_id": {
"type": "string",
"enum": [
"USD",
"EUR",
"GBP",
"BRL",
"JPY"
]
},
"run_id": {
"type": "string",
"enum": [
"active",
"inac... | {"tax": 765, "run_id": "inactive"} | Required field 'account_id' is missing | {"tax":765,"account_id":"USD","run_id":"inactive"} |
TASK repair_structured_output
SPEC
FIELD category TYPE string REQUIRED yes
FIELD sensor_id TYPE string VALUES active|inactive|pending REQUIRED yes
FIELD aligned_pct TYPE string_date-time REQUIRED yes
FIELD invoice_id TYPE boolean REQUIRED no
BROKEN_OUTPUT
{"category":"QC-07","sensor_id":"inactive","aligned_pct":"2020... | {"category":"QC-07","sensor_id":"inactive","aligned_pct":"2020-08-10T02:54:00Z","invoice_id":true} | truncated_array | {
"type": "object",
"properties": {
"category": {
"type": "string"
},
"sensor_id": {
"type": "string",
"enum": [
"active",
"inactive",
"pending"
]
},
"aligned_pct": {
"type": "string",
"format": "date-time"
},
"invoice_id": {
... | {"category":"QC-07","sensor_id":"inactive","aligned_pct":"2020-08-10T02:54:00Z","invoice_id":true | Unexpected end of JSON input — truncated object | {"category":"QC-07","sensor_id":"inactive","aligned_pct":"2020-08-10T02:54:00Z","invoice_id":true} |
TASK repair_structured_output
SPEC
FIELD attr_r77 TYPE string_uri REQUIRED no
FIELD attr_z09 TYPE integer REQUIRED no
FIELD col_a59 TYPE string REQUIRED no
FIELD prop_x61 TYPE null REQUIRED no
FIELD key_v70 TYPE string VALUES free|basic|pro|enterprise REQUIRED yes
FIELD dim_k98 TYPE string VALUES admin|editor|viewer R... | {"attr_r77":"https://api.org/data","attr_z09":69,"col_a59":"Smith","key_v70":"free","dim_k98":"admin"} | tool_call_partial_args | {
"type": "object",
"properties": {
"attr_r77": {
"type": "string",
"format": "uri"
},
"attr_z09": {
"type": "integer"
},
"col_a59": {
"type": "string"
},
"prop_x61": {
"type": "null"
},
"key_v70": {
"type": "string",
"enum": [
"f... | I need to look up the information first.
Action: check_cargo_manifest
Arguments: {"attr_r77": "https://api.org/data", "attr_z09": 69, "col_a59": "Smith", "dim_k98": "admin"} | Agent tool call missing required parameter 'key_v70' | {"attr_r77":"https://api.org/data","attr_z09":69,"col_a59":"Smith","key_v70":"free","dim_k98":"admin"} |
TASK repair_structured_output
SPEC
FIELD dim_e40 TYPE string REQUIRED no
FIELD col_a04 TYPE number REQUIRED no
FIELD param_b25 TYPE string VALUES level_1|level_2|level_3|level_4|level_5 REQUIRED yes
FIELD key_v43 TYPE string REQUIRED no
FIELD field_e84[] TYPE integer REQUIRED no
FIELD val_t16[] TYPE integer REQUIRED n... | {"dim_e40":"cancelled","param_b25":"level_3","field_e84":[809,54]} | extra_field | {
"type": "object",
"properties": {
"dim_e40": {
"type": "string"
},
"col_a04": {
"type": "number"
},
"param_b25": {
"type": "string",
"enum": [
"level_1",
"level_2",
"level_3",
"level_4",
"level_5"
]
},
"key_v43": {
... | {"dim_e40": "cancelled", "param_b25": "level_3", "field_e84": [809, 54], "extra_info_9363": 42} | Unknown field 'extra_info_9363' not defined in schema | {"dim_e40":"cancelled","param_b25":"level_3","field_e84":[809,54]} |
TASK repair_structured_output
SPEC
FIELD val_h82 TYPE string VALUES cat_a|cat_b|cat_c|cat_d|cat_e|cat_f REQUIRED no
FIELD prop_w74 TYPE string VALUES email|phone|sms|push REQUIRED no
FIELD col_p30 TYPE string REQUIRED yes
BROKEN_OUTPUT
{"val_h82": "cat_e", "prop_w74": "sms"} | {"val_h82":"cat_e","prop_w74":"sms","col_p30":"Tokyo"} | missing_required | {
"type": "object",
"properties": {
"val_h82": {
"type": "string",
"enum": [
"cat_a",
"cat_b",
"cat_c",
"cat_d",
"cat_e",
"cat_f"
]
},
"prop_w74": {
"type": "string",
"enum": [
"email",
"phone",
"sms",
... | {"val_h82": "cat_e", "prop_w74": "sms"} | Required field 'col_p30' is missing | {"val_h82":"cat_e","prop_w74":"sms","col_p30":"Tokyo"} |
TASK repair_structured_output
SPEC
FIELD thumbnail.step TYPE string_date-time REQUIRED yes
FIELD thumbnail.category TYPE number REQUIRED yes
FIELD thumbnail.index TYPE string REQUIRED no
FIELD thumbnail.altitude.product_id TYPE integer REQUIRED no
FIELD thumbnail.altitude.tags TYPE string VALUES red|blue|green|black|w... | {"verified":976,"compound":"offline","color":"editor","quantity":{"discount":564,"batch_code":false,"commit_hash":"2026-06-24T01:05:00Z"}} | number_with_unit | {
"type": "object",
"properties": {
"thumbnail": {
"type": "object",
"properties": {
"step": {
"type": "string",
"format": "date-time"
},
"category": {
"type": "number"
},
"index": {
"type": "string"
},
"... | {"verified": "976kg", "compound": "offline", "color": "editor", "quantity": {"discount": 564, "batch_code": false, "commit_hash": "2026-06-24T01:05:00Z"}} | Field 'verified' must be number, got string with unit | {"verified":976,"compound":"offline","color":"editor","quantity":{"discount":564,"batch_code":false,"commit_hash":"2026-06-24T01:05:00Z"}} |
TASK repair_structured_output
SPEC
FIELD field_u51 TYPE string REQUIRED yes
FIELD field_m27 TYPE null REQUIRED yes
FIELD dim_b24[].val_o46 TYPE string_date-time REQUIRED yes
FIELD dim_b24[].val_g95 TYPE string REQUIRED yes
FIELD dim_b24[].col_b13 TYPE boolean REQUIRED no
FIELD dim_b24[].val_p51 TYPE integer REQUIRED y... | {"field_u51":"RTG-04","field_m27":null} | markdown_fences | {
"type": "object",
"properties": {
"field_u51": {
"type": "string"
},
"field_m27": {
"type": "null"
},
"dim_b24": {
"type": "array",
"items": {
"type": "object",
"properties": {
"val_o46": {
"type": "string",
"format": "d... | ```json
{"field_u51":"RTG-04","field_m27":null}
``` | Output contains markdown code fences | {"field_u51":"RTG-04","field_m27":null} |
TASK repair_structured_output
SPEC
FIELD val_t11 TYPE string VALUES low|medium|high|critical REQUIRED yes
FIELD attr_t70 TYPE string VALUES open|in_progress|resolved|closed REQUIRED no
FIELD field_f49 TYPE null REQUIRED no
FIELD val_x61 TYPE boolean REQUIRED no
FIELD key_h36 TYPE string VALUES free|basic|pro|enterpris... | {"val_t11":"high","attr_t70":"closed","field_f49":null,"key_h36":"enterprise","attr_w11":252.99,"dim_c79":"chr1"} | invalid_enum | {
"type": "object",
"properties": {
"val_t11": {
"type": "string",
"enum": [
"low",
"medium",
"high",
"critical"
]
},
"attr_t70": {
"type": "string",
"enum": [
"open",
"in_progress",
"resolved",
"closed"
... | {"val_t11": "high", "attr_t70": "closed", "field_f49": null, "key_h36": "invalid_value_664", "attr_w11": 252.99, "dim_c79": "chr1"} | Field 'key_h36' has invalid enum value 'invalid_value_664', expected one of ['free', 'basic', 'pro', 'enterprise'] | {"val_t11":"high","attr_t70":"closed","field_f49":null,"key_h36":"enterprise","attr_w11":252.99,"dim_c79":"chr1"} |
TASK repair_structured_output
SPEC
FIELD longitude TYPE string VALUES cat_a|cat_b REQUIRED no
FIELD invoice_id.diagnosis_code TYPE string VALUES option_a|option_b|option_c|option_d REQUIRED no
FIELD invoice_id.width TYPE integer REQUIRED yes
FIELD invoice_id.department[] TYPE string REQUIRED no
FIELD updated_at TYPE i... | {"longitude":"cat_b","invoice_id":{"diagnosis_code":"option_c","width":432,"department":["Diana","example","active","Smith"]},"span_id":760,"length":"EUR","active":"Silva"} | markdown_explanation | {
"type": "object",
"properties": {
"longitude": {
"type": "string",
"enum": [
"cat_a",
"cat_b"
]
},
"invoice_id": {
"type": "object",
"properties": {
"diagnosis_code": {
"type": "string",
"enum": [
"option_a",
... | Let me provide the data in JSON format:
```json
{"longitude":"cat_b","invoice_id":{"diagnosis_code":"option_c","width":432,"department":["Diana","example","active","Smith"]},"span_id":760,"length":"EUR","active":"Silva"}
```
This should match the schema you provided. | Output contains markdown and explanatory text around JSON | {"longitude":"cat_b","invoice_id":{"diagnosis_code":"option_c","width":432,"department":["Diana","example","active","Smith"]},"span_id":760,"length":"EUR","active":"Silva"} |
TASK repair_structured_output
SPEC
FIELD repository TYPE integer REQUIRED no
FIELD compound TYPE string REQUIRED yes
FIELD id TYPE string VALUES coastal|oceanic|inland|arctic REQUIRED yes
FIELD collateral TYPE string VALUES open|in_progress|resolved|closed REQUIRED yes
FIELD state TYPE string REQUIRED no
FIELD vessel_... | {"repository":948,"compound":"world","id":"arctic","collateral":"open","vessel_name":{"description":"world","comments":"2024-08-12T15:53:00Z","length":[618.44],"values":[{"amplitude":"2025-08-08T04:06:00Z","run_id":548.19,"amount":"escalated","aligned_pct":"EUR","diagnosis_code":792}]},"ph_level":{"tile":305.38}} | tool_call_bad_format | {
"type": "object",
"properties": {
"repository": {
"type": "integer"
},
"compound": {
"type": "string"
},
"id": {
"type": "string",
"enum": [
"coastal",
"oceanic",
"inland",
"arctic"
]
},
"collateral": {
"type": "string... | <functioncall> calibrate_instrument
{repository: 948, compound: "world", id: "arctic", collateral: "open", vessel_name: {description: "world", comments: "2024-08-12T15:53:00Z", length: [618.44], values: [{amplitude: "2025-08-08T04:06:00Z", run_id: 548.19, amount: "escalated", aligned_pct: "EUR", diagnosis_code: 792}]},... | Tool call has malformed arguments — unquoted keys in function parameters | {"repository":948,"compound":"world","id":"arctic","collateral":"open","vessel_name":{"description":"world","comments":"2024-08-12T15:53:00Z","length":[618.44],"values":[{"amplitude":"2025-08-08T04:06:00Z","run_id":548.19,"amount":"escalated","aligned_pct":"EUR","diagnosis_code":792}]},"ph_level":{"tile":305.38}} |
TASK repair_structured_output
SPEC
FIELD shipping TYPE string REQUIRED no
FIELD payment_status TYPE string REQUIRED no
FIELD transaction_id TYPE string_email REQUIRED yes
FIELD half_life[].index TYPE null REQUIRED yes
FIELD half_life[].version TYPE string REQUIRED no
FIELD half_life[].length TYPE string_date-time REQU... | {"payment_status":"Oliveira","transaction_id":"user@domain.org","half_life":[{"index":null,"length":"2021-12-15T08:09:00Z"}]} | agent_chain | {
"type": "object",
"properties": {
"shipping": {
"type": "string"
},
"payment_status": {
"type": "string"
},
"transaction_id": {
"type": "string",
"format": "email"
},
"half_life": {
"type": "array",
"items": {
"type": "object",
"prope... | I need to look up the information first.
Action: create_order
Result: {"payment_status": "Oliveira", "half_life": [{"index": null, "length": "2021-12-15T08:09:00Z"}]}
Processing the request now.
Action: filter_variants
Result: | Agent multi-step chain with truncated tool output | {"payment_status":"Oliveira","transaction_id":"user@domain.org","half_life":[{"index":null,"length":"2021-12-15T08:09:00Z"}]} |
TASK repair_structured_output
SPEC
FIELD level TYPE number REQUIRED no
FIELD start_date TYPE string REQUIRED no
FIELD vessel_name TYPE string VALUES option_a|option_b REQUIRED yes
BROKEN_OUTPUT
{"level": "85.4MB", "vessel_name": "option_b"} | {"level":85.4,"vessel_name":"option_b"} | number_with_unit | {
"type": "object",
"properties": {
"level": {
"type": "number"
},
"start_date": {
"type": "string"
},
"vessel_name": {
"type": "string",
"enum": [
"option_a",
"option_b"
]
}
},
"required": [
"vessel_name"
]
} | {"level": "85.4MB", "vessel_name": "option_b"} | Field 'level' must be number, got string with unit | {"level":85.4,"vessel_name":"option_b"} |
TASK repair_structured_output
SPEC
FIELD col_d15 TYPE string REQUIRED no
FIELD param_l96 TYPE string REQUIRED yes
FIELD key_k63 TYPE null REQUIRED no
FIELD col_a59 TYPE boolean REQUIRED no
FIELD key_h73.col_k57 TYPE boolean REQUIRED yes
FIELD key_h73.field_l32 TYPE string VALUES new|in_transit|delivered|returned REQUI... | {"col_d15":"Berlin","param_l96":"Bob","key_k63":null,"col_a59":false,"key_h73":{"col_k57":true,"field_l32":"in_transit","attr_q02":861},"key_p57":{"prop_w96":"homozygous","key_v19":"offline","val_r15":false,"prop_m93":"error","dim_z27":135}} | partial_structure | {
"type": "object",
"properties": {
"col_d15": {
"type": "string"
},
"param_l96": {
"type": "string"
},
"key_k63": {
"type": "null"
},
"col_a59": {
"type": "boolean"
},
"key_h73": {
"type": "object",
"properties": {
"col_k57": {
... | I found that col_d15 should be Berlin. {"col_d15":"Berlin","param_l96":"Bob","key_k63":null,"col_a59":false,"key_h73":{"col_k57":true,"field_l32":"in_transit","attr_q02":861},"key_p57":{"prop_w96":"homozygous","key_v19":"offline","val_r15":false,"prop_m93":"error","dim_z27":135}} | Output mixes natural language with JSON | {"col_d15":"Berlin","param_l96":"Bob","key_k63":null,"col_a59":false,"key_h73":{"col_k57":true,"field_l32":"in_transit","attr_q02":861},"key_p57":{"prop_w96":"homozygous","key_v19":"offline","val_r15":false,"prop_m93":"error","dim_z27":135}} |
TASK repair_structured_output
SPEC
FIELD enabled TYPE string VALUES berthed|anchored|underway|moored REQUIRED no
FIELD position.age TYPE string REQUIRED no
FIELD position.label TYPE integer REQUIRED no
FIELD position.amplitude TYPE string REQUIRED yes
FIELD position.title TYPE integer REQUIRED no
FIELD position.verifi... | {"position":{"age":"example","amplitude":"chr1","title":893,"verified":{"due_date":"new","tile":"https://api.example.com/v1","created_at":983,"freight_class":"level_2","label":"cat_e"},"reagent":false,"balance":true},"trace_id":"option_d","aligned_pct":"2023-12-25","invoice_id":74.46,"sensor_id":13} | tool_call_partial_args | {
"type": "object",
"properties": {
"enabled": {
"type": "string",
"enum": [
"berthed",
"anchored",
"underway",
"moored"
]
},
"position": {
"type": "object",
"properties": {
"age": {
"type": "string"
},
"labe... | I need to look up the information first.
Action: align_reads
Arguments: {"position": {"age": "example", "amplitude": "chr1", "title": 893, "verified": {"due_date": "new", "tile": "https://api.example.com/v1", "created_at": 983, "freight_class": "level_2", "label": "cat_e"}, "reagent": false, "balance": true}, "trace_id... | Agent tool call missing required parameter 'sensor_id' | {"position":{"age":"example","amplitude":"chr1","title":893,"verified":{"due_date":"new","tile":"https://api.example.com/v1","created_at":983,"freight_class":"level_2","label":"cat_e"},"reagent":false,"balance":true},"trace_id":"option_d","aligned_pct":"2023-12-25","invoice_id":74.46,"sensor_id":13} |
TASK repair_structured_output
SPEC
FIELD key_j38 TYPE integer REQUIRED no
FIELD field_o68 TYPE null REQUIRED no
FIELD param_p24 TYPE string VALUES success|error|warning|info REQUIRED yes
FIELD key_k20 TYPE string VALUES red|blue|green|black|white REQUIRED no
FIELD key_q34 TYPE string VALUES active|inactive|pending REQ... | {"key_j38":629,"field_o68":null,"param_p24":"info","key_k20":"white","key_q34":"active"} | tool_call_text_mix | {
"type": "object",
"properties": {
"key_j38": {
"type": "integer"
},
"field_o68": {
"type": "null"
},
"param_p24": {
"type": "string",
"enum": [
"success",
"error",
"warning",
"info"
]
},
"key_k20": {
"type": "string",
... | I need to look up the information first.
<tool_call name="calibrate_instrument">
{"key_j38":629,"field_o68":null,"param_p24":"info","key_k20":"white","key_q34":"active"}
</tool_call.
Done! | Agent response mixes reasoning text with tool call | {"key_j38":629,"field_o68":null,"param_p24":"info","key_k20":"white","key_q34":"active"} |
TASK repair_structured_output
SPEC
FIELD build_status TYPE string REQUIRED yes
FIELD section TYPE string REQUIRED yes
FIELD priority TYPE number REQUIRED yes
FIELD cargo_type TYPE string REQUIRED no
FIELD gene_id.subject TYPE number REQUIRED yes
FIELD gene_id.balance TYPE integer REQUIRED no
FIELD gene_id.barcode TYPE... | {"build_status":"Berlin","section":"Diana","priority":418.56,"cargo_type":"New York","gene_id":{"subject":996.74,"barcode":196.32,"vital_sign":430,"duration_ms":{"paragraph":852,"compound":false,"label":"chrX","timezone":["underway"]}}} | null_required | {
"type": "object",
"properties": {
"build_status": {
"type": "string"
},
"section": {
"type": "string"
},
"priority": {
"type": "number"
},
"cargo_type": {
"type": "string"
},
"gene_id": {
"type": "object",
"properties": {
"subject": {... | {"build_status": "Berlin", "section": "Diana", "priority": null, "cargo_type": "New York", "gene_id": {"subject": 996.74, "barcode": 196.32, "vital_sign": 430, "duration_ms": {"paragraph": 852, "compound": false, "label": "chrX", "timezone": ["underway"]}}} | Required field 'priority' is null | {"build_status":"Berlin","section":"Diana","priority":418.56,"cargo_type":"New York","gene_id":{"subject":996.74,"barcode":196.32,"vital_sign":430,"duration_ms":{"paragraph":852,"compound":false,"label":"chrX","timezone":["underway"]}}} |
TASK repair_structured_output
SPEC
FIELD due_date TYPE string REQUIRED no
FIELD credit_score TYPE string REQUIRED yes
FIELD last_name TYPE string REQUIRED yes
FIELD url TYPE string VALUES coastal|oceanic|inland|arctic REQUIRED no
FIELD notes TYPE integer REQUIRED no
FIELD tags TYPE string VALUES email|phone|sms|push R... | {"credit_score":"Santos","last_name":"bar","notes":973,"tags":"phone"} | agent_chain | {
"type": "object",
"properties": {
"due_date": {
"type": "string"
},
"credit_score": {
"type": "string"
},
"last_name": {
"type": "string"
},
"url": {
"type": "string",
"enum": [
"coastal",
"oceanic",
"inland",
"arctic"
... | Let me check the system.
Action: validate_address
Result: {"last_name": "bar", "notes": 973, "tags": "phone"}
I'll query our database.
Action: generate_report
Result: | Agent multi-step chain with truncated tool output | {"credit_score":"Santos","last_name":"bar","notes":973,"tags":"phone"} |
TASK repair_structured_output
SPEC
FIELD field_d97 TYPE boolean REQUIRED yes
FIELD prop_w18 TYPE string VALUES synonymous|missense|nonsense|frameshift REQUIRED no
FIELD col_b35 TYPE string VALUES low|medium|high|critical REQUIRED yes
FIELD dim_u54[] TYPE string VALUES pending_review|confirmed|rejected|escalated REQUIR... | {"field_d97":false,"prop_w18":"frameshift","col_b35":"medium"} | missing_brace | {
"type": "object",
"properties": {
"field_d97": {
"type": "boolean"
},
"prop_w18": {
"type": "string",
"enum": [
"synonymous",
"missense",
"nonsense",
"frameshift"
]
},
"col_b35": {
"type": "string",
"enum": [
"low",
... | {"field_d97":false,"prop_w18":"frameshift","col_b35":"medium" | Missing closing brace | {"field_d97":false,"prop_w18":"frameshift","col_b35":"medium"} |
TASK repair_structured_output
SPEC
FIELD verified TYPE string VALUES type_a|type_b REQUIRED no
FIELD items TYPE number REQUIRED no
FIELD medication TYPE integer REQUIRED no
FIELD branch TYPE string VALUES mode_a|mode_b REQUIRED yes
FIELD start_date TYPE string VALUES cat_a|cat_b REQUIRED no
FIELD footnote TYPE integer... | {"items":901.09,"branch":"mode_a","footnote":770} | number_with_unit | {
"type": "object",
"properties": {
"verified": {
"type": "string",
"enum": [
"type_a",
"type_b"
]
},
"items": {
"type": "number"
},
"medication": {
"type": "integer"
},
"branch": {
"type": "string",
"enum": [
"mode_a",
... | {"items": 901.09, "branch": "mode_a", "footnote": "770px"} | Field 'footnote' must be number, got string with unit | {"items":901.09,"branch":"mode_a","footnote":770} |
TASK repair_structured_output
SPEC
FIELD key_k22 TYPE string VALUES pending_review|confirmed|rejected|escalated REQUIRED yes
FIELD field_b56 TYPE string REQUIRED no
FIELD dim_m32 TYPE integer REQUIRED yes
FIELD key_v61 TYPE string_date-time REQUIRED no
BROKEN_OUTPUT
{key_k22:"pending_review",field_b56:"qux",dim_m32:7... | {"key_k22":"pending_review","field_b56":"qux","dim_m32":714,"key_v61":"2021-05-18T03:34:00Z"} | unquoted_keys | {
"type": "object",
"properties": {
"key_k22": {
"type": "string",
"enum": [
"pending_review",
"confirmed",
"rejected",
"escalated"
]
},
"field_b56": {
"type": "string"
},
"dim_m32": {
"type": "integer"
},
"key_v61": {
"... | {key_k22:"pending_review",field_b56:"qux",dim_m32:714,key_v61:"2021-05-18T03:34:00Z"} | Expecting property name enclosed in double quotes | {"key_k22":"pending_review","field_b56":"qux","dim_m32":714,"key_v61":"2021-05-18T03:34:00Z"} |
TASK repair_structured_output
SPEC
FIELD level TYPE string REQUIRED no
FIELD annotation TYPE string REQUIRED yes
FIELD balance TYPE string VALUES draft|published|archived REQUIRED no
FIELD product_id TYPE string REQUIRED no
FIELD department TYPE string_date-time REQUIRED no
FIELD color TYPE null REQUIRED no
FIELD medi... | {"annotation":"pending","balance":"draft","product_id":"REV","department":"2026-03-05T05:19:00Z","color":null,"medication":372} | tool_call_text_mix | {
"type": "object",
"properties": {
"level": {
"type": "string"
},
"annotation": {
"type": "string"
},
"balance": {
"type": "string",
"enum": [
"draft",
"published",
"archived"
]
},
"product_id": {
"type": "string"
},
"d... | I'll query our database.
<tool_call name="annotate_mutation">
{"annotation":"pending","balance":"draft","product_id":"REV","department":"2026-03-05T05:19:00Z","color":null,"medication":372}
</tool_call.
Operation completed. | Agent response mixes reasoning text with tool call | {"annotation":"pending","balance":"draft","product_id":"REV","department":"2026-03-05T05:19:00Z","color":null,"medication":372} |
TASK repair_structured_output
SPEC
FIELD param_h09 TYPE string VALUES small|medium|large|xl REQUIRED yes
FIELD val_s60 TYPE null REQUIRED yes
FIELD key_b10 TYPE integer REQUIRED no
FIELD field_b49 TYPE integer REQUIRED yes
BROKEN_OUTPUT
Below is the JSON object:
```json
{"param_h09":"medium","val_s60":null,"key_b10":... | {"param_h09":"medium","val_s60":null,"key_b10":862,"field_b49":1} | markdown_explanation | {
"type": "object",
"properties": {
"param_h09": {
"type": "string",
"enum": [
"small",
"medium",
"large",
"xl"
]
},
"val_s60": {
"type": "null"
},
"key_b10": {
"type": "integer"
},
"field_b49": {
"type": "integer"
}... | Below is the JSON object:
```json
{"param_h09":"medium","val_s60":null,"key_b10":862,"field_b49":1}
```
Data logged successfully. | Output contains markdown and explanatory text around JSON | {"param_h09":"medium","val_s60":null,"key_b10":862,"field_b49":1} |
TASK repair_structured_output
SPEC
FIELD col_t01 TYPE integer REQUIRED no
FIELD dim_c36 TYPE string REQUIRED yes
FIELD prop_v59 TYPE string REQUIRED yes
FIELD col_v17 TYPE string REQUIRED yes
FIELD field_y97 TYPE null REQUIRED no
BROKEN_OUTPUT
Here is the response in the requested format:
{"col_t01":592,"dim_c36":"20... | {"col_t01":592,"dim_c36":"2024-06-30","prop_v59":"Alice","col_v17":"2023-12-25","field_y97":null} | extra_text_before | {
"type": "object",
"properties": {
"col_t01": {
"type": "integer"
},
"dim_c36": {
"type": "string"
},
"prop_v59": {
"type": "string"
},
"col_v17": {
"type": "string"
},
"field_y97": {
"type": "null"
}
},
"required": [
"prop_v59",
"co... | Here is the response in the requested format:
{"col_t01":592,"dim_c36":"2024-06-30","prop_v59":"Alice","col_v17":"2023-12-25","field_y97":null} | Output contains non-JSON text before the object | {"col_t01":592,"dim_c36":"2024-06-30","prop_v59":"Alice","col_v17":"2023-12-25","field_y97":null} |
TASK repair_structured_output
SPEC
FIELD frequency_hz TYPE string REQUIRED yes
FIELD humidity_pct TYPE boolean REQUIRED no
FIELD catalyst TYPE string VALUES new|in_transit|delivered|returned REQUIRED yes
FIELD consignee TYPE string VALUES USD|EUR|GBP|BRL|JPY REQUIRED yes
FIELD terminal_id[].log_level TYPE boolean REQU... | {"frequency_hz":"GRCh38","humidity_pct":true,"catalyst":"in_transit","consignee":"JPY"} | extra_field | {
"type": "object",
"properties": {
"frequency_hz": {
"type": "string"
},
"humidity_pct": {
"type": "boolean"
},
"catalyst": {
"type": "string",
"enum": [
"new",
"in_transit",
"delivered",
"returned"
]
},
"consignee": {
... | {"frequency_hz": "GRCh38", "humidity_pct": true, "catalyst": "in_transit", "consignee": "JPY", "extra_info_8135": 42} | Unknown field 'extra_info_8135' not defined in schema | {"frequency_hz":"GRCh38","humidity_pct":true,"catalyst":"in_transit","consignee":"JPY"} |
TASK repair_structured_output
SPEC
FIELD field_q66 TYPE string VALUES low|medium|high|critical REQUIRED no
FIELD param_z88 TYPE string REQUIRED yes
FIELD dim_v47 TYPE string REQUIRED no
FIELD col_f75 TYPE integer REQUIRED no
BROKEN_OUTPUT
{"field_q66": "small", "param_z88": "Luis", "dim_v47": "RTG-04"} | {"field_q66":"low","param_z88":"Luis","dim_v47":"RTG-04"} | synonym_enum | {
"type": "object",
"properties": {
"field_q66": {
"type": "string",
"enum": [
"low",
"medium",
"high",
"critical"
]
},
"param_z88": {
"type": "string"
},
"dim_v47": {
"type": "string"
},
"col_f75": {
"type": "integer"
... | {"field_q66": "small", "param_z88": "Luis", "dim_v47": "RTG-04"} | Field 'field_q66' has synonym 'small' instead of valid enum value | {"field_q66":"low","param_z88":"Luis","dim_v47":"RTG-04"} |
TASK repair_structured_output
SPEC
FIELD field_u70 TYPE string_date-time REQUIRED no
FIELD param_o92 TYPE string REQUIRED no
FIELD key_h45 TYPE string REQUIRED no
FIELD dim_k73 TYPE string VALUES pending_review|confirmed|rejected|escalated REQUIRED no
FIELD col_b36 TYPE number REQUIRED no
FIELD param_n05 TYPE string R... | {"key_h45":"Luis","dim_k73":"rejected","param_n05":"chr1","attr_p86":"unstable","val_j97":"oceanic"} | partial_structure | {
"type": "object",
"properties": {
"field_u70": {
"type": "string",
"format": "date-time"
},
"param_o92": {
"type": "string"
},
"key_h45": {
"type": "string"
},
"dim_k73": {
"type": "string",
"enum": [
"pending_review",
"confirmed",
... | Result: val_j97=oceanic, {"key_h45":"Luis","dim_k73":"rejected","param_n05":"chr1","attr_p86":"unstable","val_j97":"oceanic"} | Output mixes natural language with JSON | {"key_h45":"Luis","dim_k73":"rejected","param_n05":"chr1","attr_p86":"unstable","val_j97":"oceanic"} |
TASK repair_structured_output
SPEC
FIELD yield_pct TYPE boolean REQUIRED yes
FIELD values TYPE string REQUIRED yes
FIELD notes TYPE string REQUIRED yes
BROKEN_OUTPUT
Below is the JSON object:
{"yield_pct":false,"values":"Jane","notes":"Santos"} | {"yield_pct":false,"values":"Jane","notes":"Santos"} | extra_text_before | {
"type": "object",
"properties": {
"yield_pct": {
"type": "boolean"
},
"values": {
"type": "string"
},
"notes": {
"type": "string"
}
},
"required": [
"notes",
"yield_pct",
"values"
]
} | Below is the JSON object:
{"yield_pct":false,"values":"Jane","notes":"Santos"} | Output contains non-JSON text before the object | {"yield_pct":false,"values":"Jane","notes":"Santos"} |
TASK repair_structured_output
SPEC
FIELD key_i53 TYPE integer REQUIRED yes
FIELD prop_q34 TYPE integer REQUIRED no
FIELD attr_d97 TYPE string VALUES red|blue|green|black|white REQUIRED no
FIELD val_w06 TYPE null REQUIRED no
FIELD attr_n35.field_x38 TYPE string REQUIRED no
FIELD attr_n35.col_x75 TYPE string REQUIRED no... | {"key_i53":7,"prop_q34":512,"attr_n35":{"col_x75":"Bob","field_n49":[668.45]}} | markdown_fences | {
"type": "object",
"properties": {
"key_i53": {
"type": "integer"
},
"prop_q34": {
"type": "integer"
},
"attr_d97": {
"type": "string",
"enum": [
"red",
"blue",
"green",
"black",
"white"
]
},
"val_w06": {
"type"... | ```json
{"key_i53":7,"prop_q34":512,"attr_n35":{"col_x75":"Bob","field_n49":[668.45]}}
``` | Output contains markdown code fences | {"key_i53":7,"prop_q34":512,"attr_n35":{"col_x75":"Bob","field_n49":[668.45]}} |
TASK repair_structured_output
SPEC
FIELD description TYPE string VALUES coastal|oceanic|inland|arctic REQUIRED yes
FIELD temp_celsius TYPE string VALUES level_1|level_2|level_3|level_4 REQUIRED no
FIELD cargo_type TYPE null REQUIRED yes
FIELD subject.count TYPE string VALUES USD|EUR|GBP|BRL|JPY REQUIRED yes
FIELD subj... | {"description":"inland","temp_celsius":"level_3","cargo_type":null,"subject":{"count":"GBP","quantity":"approved","username":"cat_c"},"insurance_id":{"timezone":877,"nickname":"PASS","medication":["type_a"],"duration_ms":["baz","Silva","https://api.example.com/v1"]}} | tool_call_python_syntax | {
"type": "object",
"properties": {
"description": {
"type": "string",
"enum": [
"coastal",
"oceanic",
"inland",
"arctic"
]
},
"temp_celsius": {
"type": "string",
"enum": [
"level_1",
"level_2",
"level_3",
"lev... | calculate_price(description='inland', temp_celsius='level_3', cargo_type=None, subject={'count': 'GBP', 'quantity': 'approved', 'username': 'cat_c'}, insurance_id={'timezone': 877, 'nickname': 'PASS', 'medication': ['type_a'], 'duration_ms': ['baz', 'Silva', 'https://api.example.com/v1']}) | Tool call uses Python syntax instead of JSON | {"description":"inland","temp_celsius":"level_3","cargo_type":null,"subject":{"count":"GBP","quantity":"approved","username":"cat_c"},"insurance_id":{"timezone":877,"nickname":"PASS","medication":["type_a"],"duration_ms":["baz","Silva","https://api.example.com/v1"]}} |
TASK repair_structured_output
SPEC
FIELD key_t66 TYPE string_date-time REQUIRED no
FIELD val_f27 TYPE string REQUIRED yes
FIELD col_o70 TYPE string REQUIRED no
FIELD dim_l96 TYPE number REQUIRED yes
FIELD col_p33 TYPE string REQUIRED yes
FIELD field_q86 TYPE string VALUES success|error|warning|info REQUIRED no
FIELD f... | {"key_t66":"2024-04-21T09:13:00Z","val_f27":"demo","dim_l96":549.75,"col_p33":"REV","field_q86":"warning"} | markdown_fences | {
"type": "object",
"properties": {
"key_t66": {
"type": "string",
"format": "date-time"
},
"val_f27": {
"type": "string"
},
"col_o70": {
"type": "string"
},
"dim_l96": {
"type": "number"
},
"col_p33": {
"type": "string"
},
"field_q86":... | ```json
{"key_t66":"2024-04-21T09:13:00Z","val_f27":"demo","dim_l96":549.75,"col_p33":"REV","field_q86":"warning"}
``` | Output contains markdown code fences | {"key_t66":"2024-04-21T09:13:00Z","val_f27":"demo","dim_l96":549.75,"col_p33":"REV","field_q86":"warning"} |
TASK repair_structured_output
SPEC
FIELD key_j83.prop_h39 TYPE null REQUIRED no
FIELD key_j83.key_n39 TYPE string VALUES cat_a|cat_b|cat_c|cat_d REQUIRED yes
FIELD key_j83.col_x78 TYPE string REQUIRED yes
FIELD key_j83.prop_y84.col_s49 TYPE integer REQUIRED no
FIELD key_j83.prop_y84.prop_v82 TYPE string REQUIRED no
FI... | {"key_j83":{"key_n39":"cat_c","col_x78":"FWD","prop_y84":{"col_s49":373,"prop_v82":"Oliveira","attr_y62":"in_transit","dim_w66":80,"field_a17":519.63,"dim_w29":503},"val_d68":{"col_y19":"maintenance","key_k51":"Sao Paulo","dim_t38":"test@domain.org","dim_x57":"in_transit","val_u37":"Maria","prop_m77":316}},"attr_o12":1... | extra_text_before | {
"type": "object",
"properties": {
"key_j83": {
"type": "object",
"properties": {
"prop_h39": {
"type": "null"
},
"key_n39": {
"type": "string",
"enum": [
"cat_a",
"cat_b",
"cat_c",
"cat_d"
... | Sure, here's the result:
{"key_j83":{"key_n39":"cat_c","col_x78":"FWD","prop_y84":{"col_s49":373,"prop_v82":"Oliveira","attr_y62":"in_transit","dim_w66":80,"field_a17":519.63,"dim_w29":503},"val_d68":{"col_y19":"maintenance","key_k51":"Sao Paulo","dim_t38":"test@domain.org","dim_x57":"in_transit","val_u37":"Maria","pro... | Output contains non-JSON text before the object | {"key_j83":{"key_n39":"cat_c","col_x78":"FWD","prop_y84":{"col_s49":373,"prop_v82":"Oliveira","attr_y62":"in_transit","dim_w66":80,"field_a17":519.63,"dim_w29":503},"val_d68":{"col_y19":"maintenance","key_k51":"Sao Paulo","dim_t38":"test@domain.org","dim_x57":"in_transit","val_u37":"Maria","prop_m77":316}},"attr_o12":1... |
TASK repair_structured_output
SPEC
FIELD attr_i91.attr_i04 TYPE string REQUIRED yes
FIELD attr_i91.val_o98 TYPE string REQUIRED no
FIELD attr_i91.param_o44 TYPE null REQUIRED no
FIELD attr_i91.prop_u52.key_f77 TYPE string VALUES new|in_transit|delivered|returned REQUIRED no
FIELD attr_i91.prop_u52.param_j43 TYPE strin... | {"attr_i91":{"attr_i04":"Charlie","val_o98":"Silva","param_o44":null,"prop_u52":{"col_n65":"pending","val_q67":"RTG-04","col_q12":992,"dim_z87":null}},"param_r35":{"param_q74":"world","param_u50":{"attr_d21":848,"key_b39":138.94,"val_o95":98,"key_h26":586,"field_s34":[318.6,323.37,975.11,28.4]},"col_k30":"editor"},"dim... | tool_call_python_syntax | {
"type": "object",
"properties": {
"attr_i91": {
"type": "object",
"properties": {
"attr_i04": {
"type": "string"
},
"val_o98": {
"type": "string"
},
"param_o44": {
"type": "null"
},
"prop_u52": {
"type"... | process_payment(attr_i91={'attr_i04': 'Charlie', 'val_o98': 'Silva', 'param_o44': None, 'prop_u52': {'col_n65': 'pending', 'val_q67': 'RTG-04', 'col_q12': 992, 'dim_z87': None}}, param_r35={'param_q74': 'world', 'param_u50': {'attr_d21': 848, 'key_b39': 138.94, 'val_o95': 98, 'key_h26': 586, 'field_s34': [318.6, 323.37... | Tool call uses Python syntax instead of JSON | {"attr_i91":{"attr_i04":"Charlie","val_o98":"Silva","param_o44":null,"prop_u52":{"col_n65":"pending","val_q67":"RTG-04","col_q12":992,"dim_z87":null}},"param_r35":{"param_q74":"world","param_u50":{"attr_d21":848,"key_b39":138.94,"val_o95":98,"key_h26":586,"field_s34":[318.6,323.37,975.11,28.4]},"col_k30":"editor"},"dim... |
TASK repair_structured_output
SPEC
FIELD vital_sign TYPE string REQUIRED yes
FIELD nickname TYPE string VALUES draft|published|archived REQUIRED yes
FIELD order_id TYPE string_uri REQUIRED no
FIELD gene_id TYPE string VALUES draft|published|archived REQUIRED yes
BROKEN_OUTPUT
{"vital_sign": "Jane", "nickname": null, ... | {"vital_sign":"Jane","nickname":"archived","order_id":"https://data.io/v1","gene_id":"archived"} | null_required | {
"type": "object",
"properties": {
"vital_sign": {
"type": "string"
},
"nickname": {
"type": "string",
"enum": [
"draft",
"published",
"archived"
]
},
"order_id": {
"type": "string",
"format": "uri"
},
"gene_id": {
"type"... | {"vital_sign": "Jane", "nickname": null, "order_id": "https://data.io/v1", "gene_id": "archived"} | Required field 'nickname' is null | {"vital_sign":"Jane","nickname":"archived","order_id":"https://data.io/v1","gene_id":"archived"} |
TASK repair_structured_output
SPEC
FIELD category TYPE string REQUIRED yes
FIELD subtotal TYPE string REQUIRED yes
FIELD label TYPE string VALUES type_a|type_b|type_c|type_d|type_e REQUIRED yes
FIELD tile TYPE number REQUIRED no
FIELD currency TYPE string VALUES red|blue|green|black|white REQUIRED yes
BROKEN_OUTPUT
{... | {"category":"Oliveira","subtotal":"Charlie","label":"type_c","tile":944.42,"currency":"red"} | truncated_object | {
"type": "object",
"properties": {
"category": {
"type": "string"
},
"subtotal": {
"type": "string"
},
"label": {
"type": "string",
"enum": [
"type_a",
"type_b",
"type_c",
"type_d",
"type_e"
]
},
"tile": {
"type... | {"category":"Oliveira","subtotal":"Charlie","label":"type_c","tile":944.42,"currency":"red" | Unexpected end of JSON input — truncated object | {"category":"Oliveira","subtotal":"Charlie","label":"type_c","tile":944.42,"currency":"red"} |
TASK repair_structured_output
SPEC
FIELD status TYPE string VALUES level_1|level_2|level_3|level_4|level_5 REQUIRED yes
FIELD torque_output TYPE string VALUES mode_a|mode_b|mode_c REQUIRED no
FIELD amount TYPE number REQUIRED yes
FIELD quality_score TYPE string VALUES berthed|anchored|underway|moored REQUIRED yes
BRO... | {"status":"level_5","amount":667.33,"quality_score":"berthed"} | partial_structure | {
"type": "object",
"properties": {
"status": {
"type": "string",
"enum": [
"level_1",
"level_2",
"level_3",
"level_4",
"level_5"
]
},
"torque_output": {
"type": "string",
"enum": [
"mode_a",
"mode_b",
"mode_c"... | Based on the data, status is level_5. {"status":"level_5","amount":667.33,"quality_score":"berthed"} | Output mixes natural language with JSON | {"status":"level_5","amount":667.33,"quality_score":"berthed"} |
TASK repair_structured_output
SPEC
FIELD dim_i89 TYPE string VALUES option_a|option_b|option_c|option_d|option_e REQUIRED no
FIELD key_d24 TYPE string VALUES mode_a|mode_b|mode_c|mode_d|mode_e|mode_f REQUIRED no
FIELD col_p55 TYPE string REQUIRED yes
BROKEN_OUTPUT
{"dim_i89": "option_e", "key_d24": "mode_a", "col_p55... | {"dim_i89":"option_e","key_d24":"mode_a","col_p55":"test@example.com"} | extra_field | {
"type": "object",
"properties": {
"dim_i89": {
"type": "string",
"enum": [
"option_a",
"option_b",
"option_c",
"option_d",
"option_e"
]
},
"key_d24": {
"type": "string",
"enum": [
"mode_a",
"mode_b",
"mode_c"... | {"dim_i89": "option_e", "key_d24": "mode_a", "col_p55": "test@example.com", "extra_field_6445": "unexpected"} | Unknown field 'extra_field_6445' not defined in schema | {"dim_i89":"option_e","key_d24":"mode_a","col_p55":"test@example.com"} |
TASK repair_structured_output
SPEC
FIELD ward TYPE string VALUES mode_a|mode_b|mode_c|mode_d REQUIRED no
FIELD end_date TYPE number REQUIRED yes
FIELD active TYPE string REQUIRED no
BROKEN_OUTPUT
Processing the request now.
<tool_call name="calibrate_instrument">
{"ward":"mode_c","end_date":601.8}
</tool_call.
Operat... | {"ward":"mode_c","end_date":601.8} | tool_call_text_mix | {
"type": "object",
"properties": {
"ward": {
"type": "string",
"enum": [
"mode_a",
"mode_b",
"mode_c",
"mode_d"
]
},
"end_date": {
"type": "number"
},
"active": {
"type": "string"
}
},
"required": [
"end_date"
]
} | Processing the request now.
<tool_call name="calibrate_instrument">
{"ward":"mode_c","end_date":601.8}
</tool_call.
Operation completed. | Agent response mixes reasoning text with tool call | {"ward":"mode_c","end_date":601.8} |
TASK repair_structured_output
SPEC
FIELD dim_d99 TYPE null REQUIRED no
FIELD col_v85 TYPE string REQUIRED no
FIELD attr_h04 TYPE string VALUES level_1|level_2 REQUIRED no
FIELD val_u48 TYPE integer REQUIRED no
FIELD param_p49.attr_q34 TYPE string REQUIRED yes
FIELD param_p49.attr_q38 TYPE boolean REQUIRED no
FIELD par... | {"dim_d99":null,"col_v85":"Paris","attr_h04":"level_1","val_u48":67,"param_p49":{"attr_q34":"https://api.example.com/v1","attr_q38":true,"col_r63":"hello","key_x53":{"val_o70":false,"key_c23":"married","col_y50":"Diana","attr_z42":false,"dim_v16":"GRCh38"}},"attr_k70":{"val_a96":{"key_d58":"https://example.io/v1","val_... | tool_call_wrong_param | {
"type": "object",
"properties": {
"dim_d99": {
"type": "null"
},
"col_v85": {
"type": "string"
},
"attr_h04": {
"type": "string",
"enum": [
"level_1",
"level_2"
]
},
"val_u48": {
"type": "integer"
},
"param_p49": {
"type... | Tool: get_inventory
Params: {"dim_d99": null, "col_v85": "Paris", "attr_h04": "level_1", "val_u48": 67, "attr_k70": {"val_a96": {"key_d58": "https://example.io/v1", "val_e52": "level_4"}, "val_u23": "chr1", "dim_a13": 680, "prop_r92": "admin@test.io"}, "param_p49_new": {"attr_q34": "https://api.example.com/v1", "attr_q... | Agent used wrong parameter name 'param_p49_new' instead of 'param_p49' | {"dim_d99":null,"col_v85":"Paris","attr_h04":"level_1","val_u48":67,"param_p49":{"attr_q34":"https://api.example.com/v1","attr_q38":true,"col_r63":"hello","key_x53":{"val_o70":false,"key_c23":"married","col_y50":"Diana","attr_z42":false,"dim_v16":"GRCh38"}},"attr_k70":{"val_a96":{"key_d58":"https://example.io/v1","val_... |
TASK repair_structured_output
SPEC
FIELD run_id TYPE string VALUES type_a|type_b|type_c|type_d|type_e REQUIRED yes
FIELD procedure_code.color TYPE string VALUES active|inactive|pending REQUIRED no
FIELD procedure_code.ward TYPE string VALUES homozygous|heterozygous|hemizygous REQUIRED no
FIELD procedure_code.balance T... | {"run_id":"type_d","cargo_type":{"medication":{"width":"draft","first_name":null,"quantity":"cancelled","coverage":"admin@test.io"},"freight_class":{"updated_at":987,"hazmat_code":true,"humidity_pct":"info@test.io","trace_id":"Bob","age":729,"length":683,"total":172.46}}} | invalid_enum | {
"type": "object",
"properties": {
"run_id": {
"type": "string",
"enum": [
"type_a",
"type_b",
"type_c",
"type_d",
"type_e"
]
},
"procedure_code": {
"type": "object",
"properties": {
"color": {
"type": "string",
... | {"run_id": "invalid_value_412", "cargo_type": {"medication": {"width": "draft", "first_name": null, "quantity": "cancelled", "coverage": "admin@test.io"}, "freight_class": {"updated_at": 987, "hazmat_code": true, "humidity_pct": "info@test.io", "trace_id": "Bob", "age": 729, "length": 683, "total": 172.46}}} | Field 'run_id' has invalid enum value 'invalid_value_412', expected one of ['type_a', 'type_b', 'type_c', 'type_d', 'type_e'] | {"run_id":"type_d","cargo_type":{"medication":{"width":"draft","first_name":null,"quantity":"cancelled","coverage":"admin@test.io"},"freight_class":{"updated_at":987,"hazmat_code":true,"humidity_pct":"info@test.io","trace_id":"Bob","age":729,"length":683,"total":172.46}}} |
TASK repair_structured_output
SPEC
FIELD dosage TYPE string VALUES operational|degraded|offline|maintenance REQUIRED no
FIELD subtotal TYPE string VALUES option_a|option_b|option_c|option_d REQUIRED no
FIELD first_name TYPE integer REQUIRED yes
FIELD decay_rate TYPE string VALUES mode_a|mode_b|mode_c REQUIRED no
FIELD... | {"subtotal":"option_b","first_name":348,"decay_rate":"mode_b","ward":234} | trailing_comma | {
"type": "object",
"properties": {
"dosage": {
"type": "string",
"enum": [
"operational",
"degraded",
"offline",
"maintenance"
]
},
"subtotal": {
"type": "string",
"enum": [
"option_a",
"option_b",
"option_c",
... | {"subtotal":"option_b","first_name":348,"decay_rate":"mode_b","ward":234,} | Unexpected trailing comma | {"subtotal":"option_b","first_name":348,"decay_rate":"mode_b","ward":234} |
TASK repair_structured_output
SPEC
FIELD param_u10 TYPE number REQUIRED no
FIELD field_r57 TYPE boolean REQUIRED no
FIELD col_d60.attr_t25 TYPE string VALUES single|married|divorced REQUIRED no
FIELD col_d60.prop_w35 TYPE string REQUIRED yes
FIELD col_d60.attr_q36 TYPE string REQUIRED no
FIELD col_d60.col_t07.val_h29 ... | {"param_u10":791.14,"col_d60":{"attr_t25":"single","prop_w35":"FWD","attr_q36":"Luis","prop_p70":"active"},"dim_c09":{"col_i99":"bar","val_a33":null,"val_p60":"sms","field_i09":[{"val_e71":"option_b","key_b44":true,"attr_o19":"level_2","key_w21":633.61},{"val_e71":"option_c","key_b44":true,"attr_o19":"level_2","key_w21... | agent_chain | {
"type": "object",
"properties": {
"param_u10": {
"type": "number"
},
"field_r57": {
"type": "boolean"
},
"col_d60": {
"type": "object",
"properties": {
"attr_t25": {
"type": "string",
"enum": [
"single",
"married",
... | Let me check the system.
Action: get_inventory
Result: {"param_u10": 791.14, "col_d60": {"attr_t25": "single", "prop_w35": "FWD", "attr_q36": "Luis", "prop_p70": "active"}, "param_k01": "type_a"}
I'll query our database.
Action: read_sensor_array
Result: | Agent multi-step chain with truncated tool output | {"param_u10":791.14,"col_d60":{"attr_t25":"single","prop_w35":"FWD","attr_q36":"Luis","prop_p70":"active"},"dim_c09":{"col_i99":"bar","val_a33":null,"val_p60":"sms","field_i09":[{"val_e71":"option_b","key_b44":true,"attr_o19":"level_2","key_w21":633.61},{"val_e71":"option_c","key_b44":true,"attr_o19":"level_2","key_w21... |
TASK repair_structured_output
SPEC
FIELD attr_x68.val_v23 TYPE boolean REQUIRED no
FIELD attr_x68.col_r19 TYPE string VALUES homozygous|heterozygous|hemizygous REQUIRED yes
FIELD attr_x68.param_n71[] TYPE string REQUIRED no
FIELD attr_x68.attr_o19[].attr_b40 TYPE string REQUIRED no
FIELD attr_x68.attr_o19[].key_a21 TY... | {"attr_x68":{"val_v23":false,"col_r19":"heterozygous","param_n71":["MV-Evergreen-01"]},"val_n38":"https://data.io/v1","col_i79":true} | markdown_fences | {
"type": "object",
"properties": {
"attr_x68": {
"type": "object",
"properties": {
"val_v23": {
"type": "boolean"
},
"col_r19": {
"type": "string",
"enum": [
"homozygous",
"heterozygous",
"hemizygous"
... | ```json
{"attr_x68":{"val_v23":false,"col_r19":"heterozygous","param_n71":["MV-Evergreen-01"]},"val_n38":"https://data.io/v1","col_i79":true}
``` | Output contains markdown code fences | {"attr_x68":{"val_v23":false,"col_r19":"heterozygous","param_n71":["MV-Evergreen-01"]},"val_n38":"https://data.io/v1","col_i79":true} |
TASK repair_structured_output
SPEC
FIELD price TYPE string REQUIRED no
FIELD torque_output TYPE number REQUIRED yes
FIELD tags TYPE string VALUES low|medium|high|critical REQUIRED yes
FIELD items[] TYPE string REQUIRED no
FIELD count[].verified TYPE string VALUES level_1|level_2|level_3|level_4|level_5 REQUIRED yes
FI... | {"price":"Diana","torque_output":362.63,"tags":"medium","items":["This is a test value.","Maria","Silva"],"count":[{"verified":"level_5","shipping":"GRCh38","procedure_code":false},{"verified":"level_5","phone":600,"shipping":"Tokyo","procedure_code":false},{"verified":"level_5","shipping":"2024-01-15","procedure_code"... | tool_call_python_syntax | {
"type": "object",
"properties": {
"price": {
"type": "string"
},
"torque_output": {
"type": "number"
},
"tags": {
"type": "string",
"enum": [
"low",
"medium",
"high",
"critical"
]
},
"items": {
"type": "array",
"... | delete_item(price='Diana', torque_output=362.63, tags='medium', items=['This is a test value.', 'Maria', 'Silva'], count=[{'verified': 'level_5', 'shipping': 'GRCh38', 'procedure_code': False}, {'verified': 'level_5', 'phone': 600, 'shipping': 'Tokyo', 'procedure_code': False}, {'verified': 'level_5', 'shipping': '2024... | Tool call uses Python syntax instead of JSON | {"price":"Diana","torque_output":362.63,"tags":"medium","items":["This is a test value.","Maria","Silva"],"count":[{"verified":"level_5","shipping":"GRCh38","procedure_code":false},{"verified":"level_5","phone":600,"shipping":"Tokyo","procedure_code":false},{"verified":"level_5","shipping":"2024-01-15","procedure_code"... |
TASK repair_structured_output
SPEC
FIELD section TYPE string REQUIRED yes
FIELD footnote TYPE string REQUIRED yes
FIELD weight[] TYPE string VALUES option_a|option_b|option_c|option_d|option_e|option_f REQUIRED yes
BROKEN_OUTPUT
{"section":"world","footnote":"QC-07","weight":["option_a" | {"section":"world","footnote":"QC-07","weight":["option_a"]} | truncated_array | {
"type": "object",
"properties": {
"section": {
"type": "string"
},
"footnote": {
"type": "string"
},
"weight": {
"type": "array",
"items": {
"type": "string",
"enum": [
"option_a",
"option_b",
"option_c",
"option_d... | {"section":"world","footnote":"QC-07","weight":["option_a" | Unexpected end of JSON input — truncated array | {"section":"world","footnote":"QC-07","weight":["option_a"]} |
TASK repair_structured_output
SPEC
FIELD procedure_code TYPE string VALUES operational|degraded|offline|maintenance REQUIRED no
FIELD account_id TYPE string REQUIRED no
FIELD strand.maturity_date.phenotype TYPE string VALUES USD|EUR|GBP|BRL|JPY REQUIRED no
FIELD strand.maturity_date.total TYPE string REQUIRED yes
FIEL... | {"procedure_code":"offline","account_id":"bar","visible":"user@domain.org","footnote":362} | number_with_unit | {
"type": "object",
"properties": {
"procedure_code": {
"type": "string",
"enum": [
"operational",
"degraded",
"offline",
"maintenance"
]
},
"account_id": {
"type": "string"
},
"strand": {
"type": "object",
"properties": {
... | {"procedure_code": "offline", "account_id": "bar", "visible": "user@domain.org", "footnote": "362ms"} | Field 'footnote' must be number, got string with unit | {"procedure_code":"offline","account_id":"bar","visible":"user@domain.org","footnote":362} |
TASK repair_structured_output
SPEC
FIELD port_code TYPE boolean REQUIRED no
FIELD full_name TYPE number REQUIRED no
FIELD shipping.crew_id TYPE string VALUES synonymous|missense|nonsense|frameshift REQUIRED yes
FIELD shipping.color TYPE string_date-time REQUIRED no
FIELD shipping.diagnosis_code TYPE integer REQUIRED n... | {"port_code":true,"full_name":18.66,"shipping":{"crew_id":"synonymous","color":"2022-10-13T07:50:00Z","diagnosis_code":970,"longitude":"PASS","velocity":{"isotope":822,"berth_slot":"rejected","repository":"2020-05-02T14:03:00Z","run_id":"2026-08-12T10:09:00Z","phenotype":"Smith"}},"length":802,"bed_number":365,"count":... | missing_bracket | {
"type": "object",
"properties": {
"port_code": {
"type": "boolean"
},
"full_name": {
"type": "number"
},
"shipping": {
"type": "object",
"properties": {
"crew_id": {
"type": "string",
"enum": [
"synonymous",
"missense"... | {"port_code":true,"full_name":18.66,"shipping":{"crew_id":"synonymous","color":"2022-10-13T07:50:00Z","diagnosis_code":970,"longitude":"PASS","velocity":{"isotope":822,"berth_slot":"rejected","repository":"2020-05-02T14:03:00Z","run_id":"2026-08-12T10:09:00Z","phenotype":"Smith"}},"length":802,"bed_number":365,"count":... | Missing closing bracket | {"port_code":true,"full_name":18.66,"shipping":{"crew_id":"synonymous","color":"2022-10-13T07:50:00Z","diagnosis_code":970,"longitude":"PASS","velocity":{"isotope":822,"berth_slot":"rejected","repository":"2020-05-02T14:03:00Z","run_id":"2026-08-12T10:09:00Z","phenotype":"Smith"}},"length":802,"bed_number":365,"count":... |
TASK repair_structured_output
SPEC
FIELD count TYPE string VALUES reliable|unstable|intermittent REQUIRED no
FIELD last_name TYPE string VALUES success|error|warning|info REQUIRED no
FIELD user_id TYPE string VALUES reliable|unstable|intermittent REQUIRED no
FIELD ward TYPE integer REQUIRED no
FIELD status TYPE intege... | {"count":"reliable","last_name":"warning","user_id":"reliable","ward":722,"size":"frameshift","temp_celsius":"2026-02-17T21:50:00Z"} | tool_call_partial_args | {
"type": "object",
"properties": {
"count": {
"type": "string",
"enum": [
"reliable",
"unstable",
"intermittent"
]
},
"last_name": {
"type": "string",
"enum": [
"success",
"error",
"warning",
"info"
]
},
... | Let me check the system.
Action: calibrate_instrument
Arguments: {"count": "reliable", "last_name": "warning", "user_id": "reliable", "ward": 722, "temp_celsius": "2026-02-17T21:50:00Z"} | Agent tool call missing required parameter 'size' | {"count":"reliable","last_name":"warning","user_id":"reliable","ward":722,"size":"frameshift","temp_celsius":"2026-02-17T21:50:00Z"} |
TASK repair_structured_output
SPEC
FIELD latitude TYPE integer REQUIRED yes
FIELD lab_result TYPE string VALUES type_a|type_b|type_c|type_d|type_e|type_f REQUIRED no
FIELD product_id TYPE string VALUES level_1|level_2|level_3|level_4|level_5|level_6 REQUIRED yes
FIELD duration_ms TYPE string REQUIRED yes
FIELD umi TYP... | {"latitude":335,"lab_result":"type_f","product_id":"level_2","duration_ms":"bar","span_id":{"quantity":735,"start_date":"mode_e","size":"baz","patient_id":"option_a","bed_number":618,"values":541.85},"description":842} | tool_call_python_syntax | {
"type": "object",
"properties": {
"latitude": {
"type": "integer"
},
"lab_result": {
"type": "string",
"enum": [
"type_a",
"type_b",
"type_c",
"type_d",
"type_e",
"type_f"
]
},
"product_id": {
"type": "string",
... | call_variants(latitude=335, lab_result='type_f', product_id='level_2', duration_ms='bar', span_id={'quantity': 735, 'start_date': 'mode_e', 'size': 'baz', 'patient_id': 'option_a', 'bed_number': 618, 'values': 541.85}, description=842) | Tool call uses Python syntax instead of JSON | {"latitude":335,"lab_result":"type_f","product_id":"level_2","duration_ms":"bar","span_id":{"quantity":735,"start_date":"mode_e","size":"baz","patient_id":"option_a","bed_number":618,"values":541.85},"description":842} |
TASK repair_structured_output
SPEC
FIELD key_u27 TYPE string REQUIRED yes
FIELD prop_x79 TYPE integer REQUIRED yes
FIELD prop_s52 TYPE boolean REQUIRED no
FIELD field_r47 TYPE string REQUIRED no
FIELD prop_c98[].val_o55 TYPE string REQUIRED no
FIELD prop_c98[].key_y70 TYPE number REQUIRED no
FIELD prop_c98[].dim_u71 T... | {"key_u27":"Charlie","prop_x79":206,"prop_s52":true,"field_r47":"chr1","prop_c98":[{"val_o55":"Maria","key_y70":276.13,"dim_u71":"rejected","param_j81":true,"key_o20":833.15,"param_l99":273,"param_d02":"admin@domain.org"},{"dim_u71":"escalated","key_o20":263.24,"param_l99":1,"param_d02":"ops@domain.org"}]} | markdown_fences | {
"type": "object",
"properties": {
"key_u27": {
"type": "string"
},
"prop_x79": {
"type": "integer"
},
"prop_s52": {
"type": "boolean"
},
"field_r47": {
"type": "string"
},
"prop_c98": {
"type": "array",
"items": {
"type": "object",
... | ```json
{"key_u27":"Charlie","prop_x79":206,"prop_s52":true,"field_r47":"chr1","prop_c98":[{"val_o55":"Maria","key_y70":276.13,"dim_u71":"rejected","param_j81":true,"key_o20":833.15,"param_l99":273,"param_d02":"admin@domain.org"},{"dim_u71":"escalated","key_o20":263.24,"param_l99":1,"param_d02":"ops@domain.org"}]}
``` | Output contains markdown code fences | {"key_u27":"Charlie","prop_x79":206,"prop_s52":true,"field_r47":"chr1","prop_c98":[{"val_o55":"Maria","key_y70":276.13,"dim_u71":"rejected","param_j81":true,"key_o20":833.15,"param_l99":273,"param_d02":"admin@domain.org"},{"dim_u71":"escalated","key_o20":263.24,"param_l99":1,"param_d02":"ops@domain.org"}]} |
TASK repair_structured_output
SPEC
FIELD dim_a77 TYPE string VALUES mode_a|mode_b REQUIRED yes
FIELD attr_j30 TYPE boolean REQUIRED no
FIELD dim_g26 TYPE null REQUIRED no
FIELD field_q62 TYPE string VALUES level_1|level_2|level_3 REQUIRED yes
FIELD val_y66 TYPE null REQUIRED yes
BROKEN_OUTPUT
{"dim_a77": "mode_a", "a... | {"dim_a77":"mode_a","attr_j30":true,"dim_g26":null,"field_q62":"level_1","val_y66":null} | missing_required | {
"type": "object",
"properties": {
"dim_a77": {
"type": "string",
"enum": [
"mode_a",
"mode_b"
]
},
"attr_j30": {
"type": "boolean"
},
"dim_g26": {
"type": "null"
},
"field_q62": {
"type": "string",
"enum": [
"level_1",
... | {"dim_a77": "mode_a", "attr_j30": true, "dim_g26": null, "val_y66": null} | Required field 'field_q62' is missing | {"dim_a77":"mode_a","attr_j30":true,"dim_g26":null,"field_q62":"level_1","val_y66":null} |
TASK repair_structured_output
SPEC
FIELD status TYPE string VALUES single|married|divorced REQUIRED no
FIELD first_name TYPE number REQUIRED yes
FIELD values TYPE boolean REQUIRED yes
BROKEN_OUTPUT
Below is the JSON object:
{"status":"divorced","first_name":499.66,"values":true} | {"status":"divorced","first_name":499.66,"values":true} | extra_text_before | {
"type": "object",
"properties": {
"status": {
"type": "string",
"enum": [
"single",
"married",
"divorced"
]
},
"first_name": {
"type": "number"
},
"values": {
"type": "boolean"
}
},
"required": [
"values",
"first_name"
]
} | Below is the JSON object:
{"status":"divorced","first_name":499.66,"values":true} | Output contains non-JSON text before the object | {"status":"divorced","first_name":499.66,"values":true} |
TASK repair_structured_output
SPEC
FIELD city TYPE string REQUIRED yes
FIELD batch_code TYPE number REQUIRED no
FIELD catalyst TYPE string REQUIRED no
FIELD verified TYPE boolean REQUIRED yes
FIELD dosage TYPE boolean REQUIRED yes
BROKEN_OUTPUT
Let me check the system.
Action: update_record
Arguments: {"batch_code": ... | {"city":"RTG-04","batch_code":233.69,"catalyst":"Paris","verified":true,"dosage":false} | tool_call_partial_args | {
"type": "object",
"properties": {
"city": {
"type": "string"
},
"batch_code": {
"type": "number"
},
"catalyst": {
"type": "string"
},
"verified": {
"type": "boolean"
},
"dosage": {
"type": "boolean"
}
},
"required": [
"verified",
"d... | Let me check the system.
Action: update_record
Arguments: {"batch_code": 233.69, "catalyst": "Paris", "verified": true, "dosage": false} | Agent tool call missing required parameter 'city' | {"city":"RTG-04","batch_code":233.69,"catalyst":"Paris","verified":true,"dosage":false} |
TASK repair_structured_output
SPEC
FIELD title TYPE string VALUES USD|EUR|GBP|BRL|JPY REQUIRED no
FIELD salinity TYPE string VALUES open|in_progress|resolved|closed REQUIRED no
FIELD cargo_type TYPE integer REQUIRED no
FIELD account_id TYPE boolean REQUIRED no
FIELD organism TYPE string VALUES open|in_progress|resolve... | {"title":"JPY","salinity":"open","cargo_type":124,"account_id":true,"organism":"resolved","patient_id":"resolved","maturity_date":"divorced","name":{"chapter":"draft","wavelength":"reliable","freight_class":true,"timezone":true,"insurance_id":"https://data.io/data","amplitude":true}} | missing_brace | {
"type": "object",
"properties": {
"title": {
"type": "string",
"enum": [
"USD",
"EUR",
"GBP",
"BRL",
"JPY"
]
},
"salinity": {
"type": "string",
"enum": [
"open",
"in_progress",
"resolved",
"closed"
... | {"title":"JPY","salinity":"open","cargo_type":124,"account_id":true,"organism":"resolved","patient_id":"resolved","maturity_date":"divorced","name":{"chapter":"draft","wavelength":"reliable","freight_class":true,"timezone":true,"insurance_id":"https://data.io/data","amplitude":true} | Missing closing brace | {"title":"JPY","salinity":"open","cargo_type":124,"account_id":true,"organism":"resolved","patient_id":"resolved","maturity_date":"divorced","name":{"chapter":"draft","wavelength":"reliable","freight_class":true,"timezone":true,"insurance_id":"https://data.io/data","amplitude":true}} |
TASK repair_structured_output
SPEC
FIELD chromosome TYPE string REQUIRED no
FIELD due_date TYPE boolean REQUIRED no
FIELD velocity TYPE string_email REQUIRED yes
BROKEN_OUTPUT
```json
{"chromosome":"completed","due_date":false,"velocity":"admin@domain.org"}
``` | {"chromosome":"completed","due_date":false,"velocity":"admin@domain.org"} | markdown_fences | {
"type": "object",
"properties": {
"chromosome": {
"type": "string"
},
"due_date": {
"type": "boolean"
},
"velocity": {
"type": "string",
"format": "email"
}
},
"required": [
"velocity"
]
} | ```json
{"chromosome":"completed","due_date":false,"velocity":"admin@domain.org"}
``` | Output contains markdown code fences | {"chromosome":"completed","due_date":false,"velocity":"admin@domain.org"} |
TASK repair_structured_output
SPEC
FIELD dim_e87 TYPE string VALUES email|phone|sms|push REQUIRED no
FIELD prop_g96 TYPE number REQUIRED no
FIELD key_w63 TYPE number REQUIRED no
FIELD val_w15 TYPE string_uri REQUIRED no
FIELD prop_y86 TYPE string_email REQUIRED no
FIELD col_y04 TYPE null REQUIRED yes
BROKEN_OUTPUT
{"... | {"dim_e87":"phone","key_w63":845.52,"col_y04":null} | truncated_object | {
"type": "object",
"properties": {
"dim_e87": {
"type": "string",
"enum": [
"email",
"phone",
"sms",
"push"
]
},
"prop_g96": {
"type": "number"
},
"key_w63": {
"type": "number"
},
"val_w15": {
"type": "string",
"f... | {"dim_e87":"phone","key_w63":845.52,"col_y04":null | Unexpected end of JSON input — truncated object | {"dim_e87":"phone","key_w63":845.52,"col_y04":null} |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.