input stringlengths 170 4.38k | target stringlengths 11 500 | corruption_type stringclasses 28
values | schema dict | invalid_json stringlengths 2 1.02k | error stringlengths 21 156 | target_json stringlengths 11 500 |
|---|---|---|---|---|---|---|
TASK repair_structured_output
SPEC
FIELD field_w24 TYPE number REQUIRED no
FIELD dim_v24 TYPE number REQUIRED no
FIELD prop_t92 TYPE integer REQUIRED no
FIELD field_d16 TYPE string VALUES operational|degraded|offline|maintenance REQUIRED no
FIELD col_w91 TYPE string_uri REQUIRED yes
BROKEN_OUTPUT
{'dim_v24':142.8,'co... | {"dim_v24":142.8,"col_w91":"https://data.io/api"} | single_quotes | {
"type": "object",
"properties": {
"field_w24": {
"type": "number"
},
"dim_v24": {
"type": "number"
},
"prop_t92": {
"type": "integer"
},
"field_d16": {
"type": "string",
"enum": [
"operational",
"degraded",
"offline",
"maint... | {'dim_v24':142.8,'col_w91':'https://data.io/api'} | Expecting property name enclosed in double quotes | {"dim_v24":142.8,"col_w91":"https://data.io/api"} |
TASK repair_structured_output
SPEC
FIELD collateral TYPE string VALUES red|blue|green|black|white REQUIRED yes
FIELD ph_level TYPE null REQUIRED no
FIELD terminal_id TYPE string REQUIRED yes
FIELD crew_id.brake_pressure TYPE boolean REQUIRED yes
FIELD crew_id.updated_at TYPE null REQUIRED yes
FIELD crew_id.status TYPE... | {"collateral":"green","ph_level":null,"terminal_id":"https://api.example.com/v1","crew_id":{"brake_pressure":true,"updated_at":null,"status":922.73,"collateral":{"options":"pro","deploy_target":"ops@test.io","sensor_id":"nonsense","category":"closed","build_status":804,"freight_class":"PASS","state":true},"date":{"mess... | truncated_object | {
"type": "object",
"properties": {
"collateral": {
"type": "string",
"enum": [
"red",
"blue",
"green",
"black",
"white"
]
},
"ph_level": {
"type": "null"
},
"terminal_id": {
"type": "string"
},
"crew_id": {
"typ... | {"collateral":"green","ph_level":null,"terminal_id":"https://api.example.com/v1","crew_id":{"brake_pressure":true,"updated_at":null,"status":922.73,"collateral":{"options":"pro","deploy_target":"ops@test.io","sensor_id":"nonsense","category":"closed","build_status":804,"freight_class":"PASS","state":true},"date":{"mess... | Unexpected end of JSON input — truncated object | {"collateral":"green","ph_level":null,"terminal_id":"https://api.example.com/v1","crew_id":{"brake_pressure":true,"updated_at":null,"status":922.73,"collateral":{"options":"pro","deploy_target":"ops@test.io","sensor_id":"nonsense","category":"closed","build_status":804,"freight_class":"PASS","state":true},"date":{"mess... |
TASK repair_structured_output
SPEC
FIELD fleet_number TYPE integer REQUIRED yes
FIELD longitude TYPE string REQUIRED yes
FIELD ward TYPE number REQUIRED no
FIELD name TYPE string VALUES admin|editor|viewer REQUIRED no
BROKEN_OUTPUT
Tool: call_variants
Params: {"fleet_number": 10, "name": "editor", "longitude2": "qux"... | {"fleet_number":10,"longitude":"qux","name":"editor"} | tool_call_wrong_param | {
"type": "object",
"properties": {
"fleet_number": {
"type": "integer"
},
"longitude": {
"type": "string"
},
"ward": {
"type": "number"
},
"name": {
"type": "string",
"enum": [
"admin",
"editor",
"viewer"
]
}
},
"requir... | Tool: call_variants
Params: {"fleet_number": 10, "name": "editor", "longitude2": "qux"} | Agent used wrong parameter name 'longitude2' instead of 'longitude' | {"fleet_number":10,"longitude":"qux","name":"editor"} |
TASK repair_structured_output
SPEC
FIELD field_t54 TYPE string VALUES type_a|type_b|type_c|type_d|type_e|type_f REQUIRED no
FIELD param_i97 TYPE string VALUES cat_a|cat_b|cat_c REQUIRED no
FIELD prop_p46 TYPE integer REQUIRED yes
FIELD field_z52 TYPE string REQUIRED no
FIELD prop_x30 TYPE string_uri REQUIRED no
FIELD ... | {"param_i97":"cat_c","prop_p46":201,"prop_x30":"https://example.io/v1","attr_p64":"mode_d","attr_a86":null,"key_n75":true} | unquoted_keys | {
"type": "object",
"properties": {
"field_t54": {
"type": "string",
"enum": [
"type_a",
"type_b",
"type_c",
"type_d",
"type_e",
"type_f"
]
},
"param_i97": {
"type": "string",
"enum": [
"cat_a",
"cat_b",
... | {param_i97:"cat_c",prop_p46:201,prop_x30:"https://example.io/v1",attr_p64:"mode_d",attr_a86:null,key_n75:true} | Expecting property name enclosed in double quotes | {"param_i97":"cat_c","prop_p46":201,"prop_x30":"https://example.io/v1","attr_p64":"mode_d","attr_a86":null,"key_n75":true} |
TASK repair_structured_output
SPEC
FIELD param_q59 TYPE number REQUIRED yes
FIELD col_e63 TYPE string VALUES operational|degraded|offline|maintenance REQUIRED yes
FIELD field_d36 TYPE string VALUES low|medium|high|critical REQUIRED yes
BROKEN_OUTPUT
{"param_q59":367.38,"col_e63":"operational","field_d36":"low",} | {"param_q59":367.38,"col_e63":"operational","field_d36":"low"} | trailing_comma | {
"type": "object",
"properties": {
"param_q59": {
"type": "number"
},
"col_e63": {
"type": "string",
"enum": [
"operational",
"degraded",
"offline",
"maintenance"
]
},
"field_d36": {
"type": "string",
"enum": [
"low",
... | {"param_q59":367.38,"col_e63":"operational","field_d36":"low",} | Unexpected trailing comma | {"param_q59":367.38,"col_e63":"operational","field_d36":"low"} |
TASK repair_structured_output
SPEC
FIELD transaction_id TYPE integer REQUIRED yes
FIELD insurance_id TYPE string VALUES USD|EUR|GBP|BRL|JPY REQUIRED no
FIELD catalyst TYPE string VALUES berthed|anchored|underway|moored REQUIRED no
BROKEN_OUTPUT
{"insurance_id": "JPY", "catalyst": "berthed"} | {"transaction_id":334,"insurance_id":"JPY","catalyst":"berthed"} | missing_required | {
"type": "object",
"properties": {
"transaction_id": {
"type": "integer"
},
"insurance_id": {
"type": "string",
"enum": [
"USD",
"EUR",
"GBP",
"BRL",
"JPY"
]
},
"catalyst": {
"type": "string",
"enum": [
"berthed... | {"insurance_id": "JPY", "catalyst": "berthed"} | Required field 'transaction_id' is missing | {"transaction_id":334,"insurance_id":"JPY","catalyst":"berthed"} |
TASK repair_structured_output
SPEC
FIELD param_y31 TYPE string VALUES pending_review|confirmed|rejected|escalated REQUIRED no
FIELD attr_t20 TYPE string VALUES email|phone|sms|push REQUIRED yes
FIELD dim_z51 TYPE null REQUIRED yes
FIELD field_e93[] TYPE boolean REQUIRED yes
BROKEN_OUTPUT
{param_y31:"confirmed",attr_t... | {"param_y31":"confirmed","attr_t20":"email","dim_z51":null,"field_e93":[true]} | unquoted_keys | {
"type": "object",
"properties": {
"param_y31": {
"type": "string",
"enum": [
"pending_review",
"confirmed",
"rejected",
"escalated"
]
},
"attr_t20": {
"type": "string",
"enum": [
"email",
"phone",
"sms",
"pus... | {param_y31:"confirmed",attr_t20:"email",dim_z51:null,field_e93:[true]} | Expecting property name enclosed in double quotes | {"param_y31":"confirmed","attr_t20":"email","dim_z51":null,"field_e93":[true]} |
TASK repair_structured_output
SPEC
FIELD attr_t83 TYPE number REQUIRED yes
FIELD key_i29.val_u35 TYPE string REQUIRED no
FIELD key_i29.attr_n25 TYPE boolean REQUIRED yes
FIELD key_i29.col_m09 TYPE integer REQUIRED no
FIELD col_c84 TYPE string VALUES admin|editor|viewer REQUIRED no
FIELD val_m26.col_d12 TYPE string VAL... | {"attr_t83":349.78,"col_c84":"admin","val_m26":{"col_d12":"cat_a","val_s71":true,"key_w94":{"dim_s24":421,"field_v82":true,"val_b53":8,"col_w72":"Johnson"},"val_t10":{"param_m09":482,"prop_x06":"option_c","key_h89":364.56,"field_t72":"Santos","prop_f15":276,"attr_q50":"escalated","col_p62":"https://api.example.com/v1"}... | tool_call_wrong_param | {
"type": "object",
"properties": {
"attr_t83": {
"type": "number"
},
"key_i29": {
"type": "object",
"properties": {
"val_u35": {
"type": "string"
},
"attr_n25": {
"type": "boolean"
},
"col_m09": {
"type": "integer"
... | Tool: book_appointment
Params: {"attr_t83": 349.78, "col_c84": "admin", "val_m26_name": {"col_d12": "cat_a", "val_s71": true, "key_w94": {"dim_s24": 421, "field_v82": true, "val_b53": 8, "col_w72": "Johnson"}, "val_t10": {"param_m09": 482, "prop_x06": "option_c", "key_h89": 364.56, "field_t72": "Santos", "prop_f15": 27... | Agent used wrong parameter name 'val_m26_name' instead of 'val_m26' | {"attr_t83":349.78,"col_c84":"admin","val_m26":{"col_d12":"cat_a","val_s71":true,"key_w94":{"dim_s24":421,"field_v82":true,"val_b53":8,"col_w72":"Johnson"},"val_t10":{"param_m09":482,"prop_x06":"option_c","key_h89":364.56,"field_t72":"Santos","prop_f15":276,"attr_q50":"escalated","col_p62":"https://api.example.com/v1"}... |
TASK repair_structured_output
SPEC
FIELD prop_d34 TYPE number REQUIRED no
FIELD field_e66 TYPE string REQUIRED yes
FIELD key_b23 TYPE integer REQUIRED no
FIELD dim_v41 TYPE string_date-time REQUIRED yes
FIELD col_p87.attr_x82 TYPE string REQUIRED no
FIELD col_p87.prop_i14 TYPE string VALUES admin|editor|viewer REQUIRE... | {"prop_d34":491.33,"field_e66":"Tokyo","key_b23":100,"dim_v41":"2025-01-22T17:49:00Z","attr_k68":{"field_m68":741.31,"val_w33":371},"col_e11":"option_b","field_e25":244} | partial_structure | {
"type": "object",
"properties": {
"prop_d34": {
"type": "number"
},
"field_e66": {
"type": "string"
},
"key_b23": {
"type": "integer"
},
"dim_v41": {
"type": "string",
"format": "date-time"
},
"col_p87": {
"type": "object",
"properties"... | Result: key_b23=100, {"prop_d34":491.33,"field_e66":"Tokyo","key_b23":100,"dim_v41":"2025-01-22T17:49:00Z","attr_k68":{"field_m68":741.31,"val_w33":371},"col_e11":"option_b","field_e25":244} | Output mixes natural language with JSON | {"prop_d34":491.33,"field_e66":"Tokyo","key_b23":100,"dim_v41":"2025-01-22T17:49:00Z","attr_k68":{"field_m68":741.31,"val_w33":371},"col_e11":"option_b","field_e25":244} |
TASK repair_structured_output
SPEC
FIELD commit_hash TYPE boolean REQUIRED no
FIELD collateral TYPE null REQUIRED no
FIELD size.berth_slot TYPE integer REQUIRED yes
FIELD size.message TYPE string_uri REQUIRED no
FIELD size.reagent[].commit_hash TYPE boolean REQUIRED yes
FIELD size.reagent[].size TYPE string VALUES lev... | {"commit_hash":false,"collateral":null,"size":{"berth_slot":726,"message":"https://example.com/v1","reagent":[{"commit_hash":false,"size":"level_2","dissolved_oxygen":"mode_b","product_id":true,"yield_pct":"sample"},{"commit_hash":true,"size":"level_2","dissolved_oxygen":"mode_a","product_id":true,"yield_pct":"John","h... | wrong_type | {
"type": "object",
"properties": {
"commit_hash": {
"type": "boolean"
},
"collateral": {
"type": "null"
},
"size": {
"type": "object",
"properties": {
"berth_slot": {
"type": "integer"
},
"message": {
"type": "string",
... | {"commit_hash": "\"no\"", "collateral": null, "size": {"berth_slot": 726, "message": "https://example.com/v1", "reagent": [{"commit_hash": false, "size": "level_2", "dissolved_oxygen": "mode_b", "product_id": true, "yield_pct": "sample"}, {"commit_hash": true, "size": "level_2", "dissolved_oxygen": "mode_a", "product_i... | Field 'commit_hash' must be boolean, got string | {"commit_hash":false,"collateral":null,"size":{"berth_slot":726,"message":"https://example.com/v1","reagent":[{"commit_hash":false,"size":"level_2","dissolved_oxygen":"mode_b","product_id":true,"yield_pct":"sample"},{"commit_hash":true,"size":"level_2","dissolved_oxygen":"mode_a","product_id":true,"yield_pct":"John","h... |
TASK repair_structured_output
SPEC
FIELD created_at TYPE string VALUES red|blue|green|black|white REQUIRED no
FIELD voltage TYPE integer REQUIRED yes
FIELD credit_score TYPE string REQUIRED yes
FIELD comments.longitude TYPE string VALUES red|blue|green|black|white REQUIRED no
FIELD comments.duration_ms TYPE string VAL... | {"created_at":"blue","voltage":72,"credit_score":"Johnson","comments":{"longitude":"blue","duration_ms":"enterprise","level":540,"branch":true,"build_status":"maintenance","collateral":"Maria","full_name":"2026-11-02T04:15:00Z"},"id":"2023-12-25","branch":"chr1"} | tool_call_partial_args | {
"type": "object",
"properties": {
"created_at": {
"type": "string",
"enum": [
"red",
"blue",
"green",
"black",
"white"
]
},
"voltage": {
"type": "integer"
},
"credit_score": {
"type": "string"
},
"comments": {
... | Let me check the system.
Action: lookup_customer
Arguments: {"created_at": "blue", "voltage": 72, "credit_score": "Johnson", "id": "2023-12-25", "branch": "chr1"} | Agent tool call missing required parameter 'comments' | {"created_at":"blue","voltage":72,"credit_score":"Johnson","comments":{"longitude":"blue","duration_ms":"enterprise","level":540,"branch":true,"build_status":"maintenance","collateral":"Maria","full_name":"2026-11-02T04:15:00Z"},"id":"2023-12-25","branch":"chr1"} |
TASK repair_structured_output
SPEC
FIELD lab_result.branch TYPE string VALUES cat_a|cat_b REQUIRED no
FIELD lab_result.patient_id TYPE string VALUES level_1|level_2 REQUIRED yes
FIELD lab_result.date TYPE string REQUIRED yes
FIELD lab_result.type TYPE number REQUIRED no
FIELD lab_result.state TYPE string REQUIRED yes
... | {"lab_result":{"branch":"cat_a","patient_id":"level_1","date":"PASS","type":558.41,"state":"Smith"},"active":"option_b","subject":"cat_a","cargo_type":148,"catalyst":{"ph_level":"REV","quality_score":"intermittent","port_code":{"age":827.83,"name":"Bob","duration_ms":713,"batch_code":false},"maturity_date":751}} | single_quotes | {
"type": "object",
"properties": {
"lab_result": {
"type": "object",
"properties": {
"branch": {
"type": "string",
"enum": [
"cat_a",
"cat_b"
]
},
"patient_id": {
"type": "string",
"enum": [
... | {'lab_result':{'branch':'cat_a','patient_id':'level_1','date':'PASS','type':558.41,'state':'Smith'},'active':'option_b','subject':'cat_a','cargo_type':148,'catalyst':{'ph_level':'REV','quality_score':'intermittent','port_code':{'age':827.83,'name':'Bob','duration_ms':713,'batch_code':false},'maturity_date':751}} | Expecting property name enclosed in double quotes | {"lab_result":{"branch":"cat_a","patient_id":"level_1","date":"PASS","type":558.41,"state":"Smith"},"active":"option_b","subject":"cat_a","cargo_type":148,"catalyst":{"ph_level":"REV","quality_score":"intermittent","port_code":{"age":827.83,"name":"Bob","duration_ms":713,"batch_code":false},"maturity_date":751}} |
TASK repair_structured_output
SPEC
FIELD height.label TYPE string REQUIRED yes
FIELD height.procedure_code TYPE string_uri REQUIRED yes
FIELD height.temp_celsius TYPE string VALUES mode_a|mode_b|mode_c|mode_d REQUIRED yes
FIELD section TYPE string REQUIRED no
FIELD bed_number TYPE string REQUIRED yes
FIELD item_id.amp... | {"height":{"label":"inactive","procedure_code":"https://example.io/v1","temp_celsius":"mode_a"},"section":"Paris","bed_number":"approved","item_id":{"amplitude":"2026-01-10T05:09:00Z","medication":{"nickname":"Diana","brake_pressure":"https://example.io/v1","due_date":"hello","id":807.49},"step":null,"umi":"cat_b","sub... | unquoted_keys | {
"type": "object",
"properties": {
"height": {
"type": "object",
"properties": {
"label": {
"type": "string"
},
"procedure_code": {
"type": "string",
"format": "uri"
},
"temp_celsius": {
"type": "string",
"enu... | {height:{label:"inactive",procedure_code:"https://example.io/v1",temp_celsius:"mode_a"},section:"Paris",bed_number:"approved",item_id:{amplitude:"2026-01-10T05:09:00Z",medication:{nickname:"Diana",brake_pressure:"https://example.io/v1",due_date:"hello",id:807.49},step:null,umi:"cat_b",subject:true},catalyst:369,interes... | Expecting property name enclosed in double quotes | {"height":{"label":"inactive","procedure_code":"https://example.io/v1","temp_celsius":"mode_a"},"section":"Paris","bed_number":"approved","item_id":{"amplitude":"2026-01-10T05:09:00Z","medication":{"nickname":"Diana","brake_pressure":"https://example.io/v1","due_date":"hello","id":807.49},"step":null,"umi":"cat_b","sub... |
TASK repair_structured_output
SPEC
FIELD length TYPE string_date-time REQUIRED no
FIELD footnote TYPE string VALUES homozygous|heterozygous|hemizygous REQUIRED yes
FIELD voltage.humidity_pct TYPE string VALUES small|medium|large|xl REQUIRED yes
FIELD voltage.patient_id TYPE string VALUES success|error|warning|info REQ... | {"length":"2024-07-17T10:07:00Z","footnote":"homozygous","voltage":{"humidity_pct":"xl","patient_id":"info","visible":"Berlin","maturity_date":"2024-01-15"},"index":"Silva","chromosome":542.8} | missing_required | {
"type": "object",
"properties": {
"length": {
"type": "string",
"format": "date-time"
},
"footnote": {
"type": "string",
"enum": [
"homozygous",
"heterozygous",
"hemizygous"
]
},
"voltage": {
"type": "object",
"properties": {
... | {"length": "2024-07-17T10:07:00Z", "voltage": {"humidity_pct": "xl", "patient_id": "info", "visible": "Berlin", "maturity_date": "2024-01-15"}, "index": "Silva", "chromosome": 542.8} | Required field 'footnote' is missing | {"length":"2024-07-17T10:07:00Z","footnote":"homozygous","voltage":{"humidity_pct":"xl","patient_id":"info","visible":"Berlin","maturity_date":"2024-01-15"},"index":"Silva","chromosome":542.8} |
TASK repair_structured_output
SPEC
FIELD tax TYPE number REQUIRED no
FIELD due_date TYPE string_uri REQUIRED no
FIELD rating TYPE string REQUIRED no
FIELD quantity.bed_number TYPE string REQUIRED yes
FIELD quantity.phone TYPE string VALUES open|in_progress|resolved|closed REQUIRED no
FIELD quantity.chapter TYPE intege... | {"tax":770.05,"due_date":"https://example.io/api","rating":"Hapag-Lloyd-Express","quantity":{"bed_number":"Smith","chapter":797,"notes":{"current_draw":897.91,"trace_id":null,"throttle_pos":"underway","title":"Oliveira","shift_code":"test"}}} | missing_required | {
"type": "object",
"properties": {
"tax": {
"type": "number"
},
"due_date": {
"type": "string",
"format": "uri"
},
"rating": {
"type": "string"
},
"quantity": {
"type": "object",
"properties": {
"bed_number": {
"type": "string"
... | {"tax": 770.05, "due_date": "https://example.io/api", "rating": "Hapag-Lloyd-Express"} | Required field 'quantity' is missing | {"tax":770.05,"due_date":"https://example.io/api","rating":"Hapag-Lloyd-Express","quantity":{"bed_number":"Smith","chapter":797,"notes":{"current_draw":897.91,"trace_id":null,"throttle_pos":"underway","title":"Oliveira","shift_code":"test"}}} |
TASK repair_structured_output
SPEC
FIELD type TYPE string REQUIRED no
FIELD deploy_target TYPE string VALUES type_a|type_b|type_c|type_d|type_e REQUIRED yes
FIELD bed_number.current_draw TYPE string VALUES mode_a|mode_b|mode_c|mode_d|mode_e REQUIRED no
FIELD bed_number.item_id TYPE null REQUIRED no
FIELD bed_number.ru... | {"type":"MV-Evergreen-01","deploy_target":"type_c","bed_number":{"item_id":null,"run_id":"chr1"},"weight":false,"width":"hello","decay_rate":"cat_f","interest_rate":"completed","date":{"hazmat_code":"test@test.io","length":393,"email":["type_b","type_e","type_c","type_c"]}} | partial_structure | {
"type": "object",
"properties": {
"type": {
"type": "string"
},
"deploy_target": {
"type": "string",
"enum": [
"type_a",
"type_b",
"type_c",
"type_d",
"type_e"
]
},
"bed_number": {
"type": "object",
"properties": {
... | Based on the data, deploy_target is type_c. {"type":"MV-Evergreen-01","deploy_target":"type_c","bed_number":{"item_id":null,"run_id":"chr1"},"weight":false,"width":"hello","decay_rate":"cat_f","interest_rate":"completed","date":{"hazmat_code":"test@test.io","length":393,"email":["type_b","type_e","type_c","type_c"]}} | Output mixes natural language with JSON | {"type":"MV-Evergreen-01","deploy_target":"type_c","bed_number":{"item_id":null,"run_id":"chr1"},"weight":false,"width":"hello","decay_rate":"cat_f","interest_rate":"completed","date":{"hazmat_code":"test@test.io","length":393,"email":["type_b","type_e","type_c","type_c"]}} |
TASK repair_structured_output
SPEC
FIELD col_j98 TYPE string REQUIRED no
FIELD key_m01 TYPE integer REQUIRED no
FIELD attr_z56[] TYPE integer REQUIRED no
FIELD attr_l31[] TYPE string VALUES coastal|oceanic|inland|arctic REQUIRED yes
BROKEN_OUTPUT
{"col_j98":"hello","key_m01":106,"attr_z56":[588],"attr_l31":["arctic",... | {"col_j98":"hello","key_m01":106,"attr_z56":[588],"attr_l31":["arctic","inland","inland","oceanic"]} | truncated_object | {
"type": "object",
"properties": {
"col_j98": {
"type": "string"
},
"key_m01": {
"type": "integer"
},
"attr_z56": {
"type": "array",
"items": {
"type": "integer"
}
},
"attr_l31": {
"type": "array",
"items": {
"type": "string",
... | {"col_j98":"hello","key_m01":106,"attr_z56":[588],"attr_l31":["arctic","inland","inland","oceanic"] | Unexpected end of JSON input — truncated object | {"col_j98":"hello","key_m01":106,"attr_z56":[588],"attr_l31":["arctic","inland","inland","oceanic"]} |
TASK repair_structured_output
SPEC
FIELD col_d17 TYPE string REQUIRED yes
FIELD attr_t59 TYPE boolean REQUIRED no
FIELD col_h90 TYPE string REQUIRED yes
FIELD val_a90 TYPE string VALUES type_a|type_b|type_c|type_d REQUIRED no
FIELD dim_j26.dim_t06.field_w04 TYPE string VALUES berthed|anchored|underway|moored REQUIRED ... | {"col_d17":"Johnson","attr_t59":true,"col_h90":"QC-07","val_a90":"type_a"} | extra_text_after | {
"type": "object",
"properties": {
"col_d17": {
"type": "string"
},
"attr_t59": {
"type": "boolean"
},
"col_h90": {
"type": "string"
},
"val_a90": {
"type": "string",
"enum": [
"type_a",
"type_b",
"type_c",
"type_d"
]
... | {"col_d17":"Johnson","attr_t59":true,"col_h90":"QC-07","val_a90":"type_a"}
Feel free to ask if you have questions. | Output contains non-JSON text after the object | {"col_d17":"Johnson","attr_t59":true,"col_h90":"QC-07","val_a90":"type_a"} |
TASK repair_structured_output
SPEC
FIELD field_g49 TYPE string VALUES small|medium|large|xl REQUIRED no
FIELD param_b74 TYPE string VALUES email|phone|sms|push REQUIRED yes
FIELD field_n50 TYPE number REQUIRED yes
FIELD field_i25 TYPE string VALUES operational|degraded|offline|maintenance REQUIRED no
FIELD val_z88 TYP... | {"param_b74":"sms","field_n50":135.78,"field_i25":"offline","val_z88":"resolved","attr_c42":"reliable"} | missing_brace | {
"type": "object",
"properties": {
"field_g49": {
"type": "string",
"enum": [
"small",
"medium",
"large",
"xl"
]
},
"param_b74": {
"type": "string",
"enum": [
"email",
"phone",
"sms",
"push"
]
},
... | {"param_b74":"sms","field_n50":135.78,"field_i25":"offline","val_z88":"resolved","attr_c42":"reliable" | Missing closing brace | {"param_b74":"sms","field_n50":135.78,"field_i25":"offline","val_z88":"resolved","attr_c42":"reliable"} |
TASK repair_structured_output
SPEC
FIELD procedure_code TYPE string VALUES type_a|type_b REQUIRED no
FIELD state TYPE string VALUES type_a|type_b|type_c REQUIRED yes
FIELD label TYPE string REQUIRED yes
FIELD timezone TYPE integer REQUIRED yes
FIELD id TYPE null REQUIRED no
FIELD age TYPE null REQUIRED no
FIELD start_... | {"state":"type_a","label":"completed","timezone":731,"id":null,"age":null,"start_date":"https://example.com"} | truncated_array | {
"type": "object",
"properties": {
"procedure_code": {
"type": "string",
"enum": [
"type_a",
"type_b"
]
},
"state": {
"type": "string",
"enum": [
"type_a",
"type_b",
"type_c"
]
},
"label": {
"type": "string"
}... | {"state":"type_a","label":"completed","timezone":731,"id":null,"age":null,"start_date":"https://example.com" | Unexpected end of JSON input — truncated object | {"state":"type_a","label":"completed","timezone":731,"id":null,"age":null,"start_date":"https://example.com"} |
TASK repair_structured_output
SPEC
FIELD umi TYPE string VALUES cat_a|cat_b|cat_c REQUIRED yes
FIELD weight TYPE string VALUES level_1|level_2|level_3|level_4|level_5|level_6 REQUIRED no
FIELD zip_code TYPE string REQUIRED no
FIELD manifest_ref TYPE string_email REQUIRED no
FIELD current_draw TYPE string REQUIRED no
F... | {"umi":"cat_b","zip_code":"user@domain.com","manifest_ref":"user@example.com","current_draw":"2024-06-30","repository":"Jane","run_id":862.78} | missing_required | {
"type": "object",
"properties": {
"umi": {
"type": "string",
"enum": [
"cat_a",
"cat_b",
"cat_c"
]
},
"weight": {
"type": "string",
"enum": [
"level_1",
"level_2",
"level_3",
"level_4",
"level_5",
"le... | {"umi": "cat_b", "zip_code": "user@domain.com", "manifest_ref": "user@example.com", "current_draw": "2024-06-30", "repository": "Jane"} | Required field 'run_id' is missing | {"umi":"cat_b","zip_code":"user@domain.com","manifest_ref":"user@example.com","current_draw":"2024-06-30","repository":"Jane","run_id":862.78} |
TASK repair_structured_output
SPEC
FIELD col_r04.val_c38 TYPE null REQUIRED no
FIELD col_r04.val_k96.dim_u83 TYPE string REQUIRED yes
FIELD col_r04.val_k96.col_b91 TYPE string VALUES red|blue|green|black|white REQUIRED no
FIELD col_r04.val_k96.val_t85 TYPE string REQUIRED yes
FIELD col_r04.val_k96.param_o24 TYPE strin... | {"col_r04":{"val_k96":{"dim_u83":"bar","val_t85":"QC-07","param_o24":"cat_b","val_i72":"hello"},"field_t45":"coastal","val_v49":true,"field_d49":"https://example.com"},"field_r50":"Diana","col_x48":null,"val_f67":752} | null_required | {
"type": "object",
"properties": {
"col_r04": {
"type": "object",
"properties": {
"val_c38": {
"type": "null"
},
"val_k96": {
"type": "object",
"properties": {
"dim_u83": {
"type": "string"
},
"c... | {"col_r04": {"val_k96": {"dim_u83": "bar", "val_t85": "QC-07", "param_o24": "cat_b", "val_i72": "hello"}, "field_t45": "coastal", "val_v49": true, "field_d49": "https://example.com"}, "field_r50": null, "col_x48": null, "val_f67": 752} | Required field 'field_r50' is null | {"col_r04":{"val_k96":{"dim_u83":"bar","val_t85":"QC-07","param_o24":"cat_b","val_i72":"hello"},"field_t45":"coastal","val_v49":true,"field_d49":"https://example.com"},"field_r50":"Diana","col_x48":null,"val_f67":752} |
TASK repair_structured_output
SPEC
FIELD size TYPE string VALUES open|in_progress|resolved|closed REQUIRED no
FIELD conductivity TYPE string VALUES success|error|warning|info REQUIRED yes
FIELD turbidity TYPE string VALUES low|medium|high|critical REQUIRED no
FIELD tile TYPE string_email REQUIRED no
FIELD index TYPE s... | {"size":"open","conductivity":"info","turbidity":"high","tile":"ops@test.io","quantity":"2023-12-25","updated_at":37} | partial_structure | {
"type": "object",
"properties": {
"size": {
"type": "string",
"enum": [
"open",
"in_progress",
"resolved",
"closed"
]
},
"conductivity": {
"type": "string",
"enum": [
"success",
"error",
"warning",
"info"
... | Result: size=open, {"size":"open","conductivity":"info","turbidity":"high","tile":"ops@test.io","quantity":"2023-12-25","updated_at":37} | Output mixes natural language with JSON | {"size":"open","conductivity":"info","turbidity":"high","tile":"ops@test.io","quantity":"2023-12-25","updated_at":37} |
TASK repair_structured_output
SPEC
FIELD prop_i72 TYPE string VALUES email|phone|sms|push REQUIRED no
FIELD dim_f74 TYPE number REQUIRED no
FIELD attr_g18 TYPE boolean REQUIRED no
FIELD prop_a61 TYPE integer REQUIRED no
FIELD dim_r93 TYPE string VALUES email|phone|sms|push REQUIRED no
FIELD attr_b64 TYPE number REQUIR... | {"dim_f74":412.06,"attr_g18":false,"prop_a61":221,"col_u93":60.9,"key_p82":"warning"} | missing_bracket | {
"type": "object",
"properties": {
"prop_i72": {
"type": "string",
"enum": [
"email",
"phone",
"sms",
"push"
]
},
"dim_f74": {
"type": "number"
},
"attr_g18": {
"type": "boolean"
},
"prop_a61": {
"type": "integer"
}... | {"dim_f74":412.06,"attr_g18":false,"prop_a61":221,"col_u93":60.9,"key_p82":"warning"} | Missing closing bracket | {"dim_f74":412.06,"attr_g18":false,"prop_a61":221,"col_u93":60.9,"key_p82":"warning"} |
TASK repair_structured_output
SPEC
FIELD pressure_kpa TYPE string_date-time REQUIRED no
FIELD brake_pressure TYPE string REQUIRED yes
FIELD step TYPE string REQUIRED no
FIELD zip_code TYPE boolean REQUIRED no
FIELD version TYPE string REQUIRED yes
FIELD run_id.type TYPE string VALUES coastal|oceanic|inland|arctic REQU... | {"pressure_kpa":"2025-04-10T05:58:00Z","brake_pressure":"Berlin","step":"hello","zip_code":true,"version":"John","run_id":{"type":"coastal","longitude":"bar","count":"foo"}} | unquoted_keys | {
"type": "object",
"properties": {
"pressure_kpa": {
"type": "string",
"format": "date-time"
},
"brake_pressure": {
"type": "string"
},
"step": {
"type": "string"
},
"zip_code": {
"type": "boolean"
},
"version": {
"type": "string"
},
"... | {pressure_kpa:"2025-04-10T05:58:00Z",brake_pressure:"Berlin",step:"hello",zip_code:true,version:"John",run_id:{type:"coastal",longitude:"bar",count:"foo"}} | Expecting property name enclosed in double quotes | {"pressure_kpa":"2025-04-10T05:58:00Z","brake_pressure":"Berlin","step":"hello","zip_code":true,"version":"John","run_id":{"type":"coastal","longitude":"bar","count":"foo"}} |
TASK repair_structured_output
SPEC
FIELD prop_b41 TYPE integer REQUIRED no
FIELD col_u62 TYPE number REQUIRED no
FIELD val_c11 TYPE string REQUIRED no
FIELD col_a08 TYPE boolean REQUIRED no
FIELD attr_d96.col_l81 TYPE string REQUIRED no
FIELD attr_d96.dim_h90 TYPE number REQUIRED no
FIELD attr_d96.col_y37 TYPE integer... | {"prop_b41":484,"col_u62":936.2,"attr_d96":{"dim_h90":524.42,"col_y37":850,"key_p91":"test@domain.org","val_k21":{"col_a43":179.31,"dim_r75":"approved","prop_k77":"John","param_d61":311.91,"col_e02":true}},"prop_t45":true,"col_q04":551,"val_o31":"Luis"} | unquoted_keys | {
"type": "object",
"properties": {
"prop_b41": {
"type": "integer"
},
"col_u62": {
"type": "number"
},
"val_c11": {
"type": "string"
},
"col_a08": {
"type": "boolean"
},
"attr_d96": {
"type": "object",
"properties": {
"col_l81": {
... | {prop_b41:484,col_u62:936.2,attr_d96:{dim_h90:524.42,col_y37:850,key_p91:"test@domain.org",val_k21:{col_a43:179.31,dim_r75:"approved",prop_k77:"John",param_d61:311.91,col_e02:true}},prop_t45:true,col_q04:551,val_o31:"Luis"} | Expecting property name enclosed in double quotes | {"prop_b41":484,"col_u62":936.2,"attr_d96":{"dim_h90":524.42,"col_y37":850,"key_p91":"test@domain.org","val_k21":{"col_a43":179.31,"dim_r75":"approved","prop_k77":"John","param_d61":311.91,"col_e02":true}},"prop_t45":true,"col_q04":551,"val_o31":"Luis"} |
TASK repair_structured_output
SPEC
FIELD cargo_type TYPE string VALUES synonymous|missense|nonsense|frameshift REQUIRED no
FIELD ward TYPE string VALUES small|medium|large|xl REQUIRED yes
FIELD balance TYPE string VALUES USD|EUR|GBP|BRL|JPY REQUIRED no
FIELD collateral TYPE string REQUIRED no
FIELD subtotal TYPE strin... | {"cargo_type":"synonymous","ward":"large","balance":"USD","collateral":"chrX","subtotal":"completed","payment_status":"pending"} | thought_process | {
"type": "object",
"properties": {
"cargo_type": {
"type": "string",
"enum": [
"synonymous",
"missense",
"nonsense",
"frameshift"
]
},
"ward": {
"type": "string",
"enum": [
"small",
"medium",
"large",
"xl"
... | Processing the request now.
I'll validate against the schema.
{"cargo_type":"synonymous","ward":"large","balance":"USD","collateral":"chrX","subtotal":"completed","payment_status":"pending"} | Output contains chain-of-thought reasoning before JSON | {"cargo_type":"synonymous","ward":"large","balance":"USD","collateral":"chrX","subtotal":"completed","payment_status":"pending"} |
TASK repair_structured_output
SPEC
FIELD col_m67 TYPE boolean REQUIRED yes
FIELD key_j85 TYPE string VALUES open|in_progress|resolved|closed REQUIRED yes
FIELD param_t32 TYPE number REQUIRED yes
FIELD val_w26 TYPE string REQUIRED yes
BROKEN_OUTPUT
{'col_m67':true,'key_j85':'closed','param_t32':374.26,'val_w26':'QC-07... | {"col_m67":true,"key_j85":"closed","param_t32":374.26,"val_w26":"QC-07"} | single_quotes | {
"type": "object",
"properties": {
"col_m67": {
"type": "boolean"
},
"key_j85": {
"type": "string",
"enum": [
"open",
"in_progress",
"resolved",
"closed"
]
},
"param_t32": {
"type": "number"
},
"val_w26": {
"type": "str... | {'col_m67':true,'key_j85':'closed','param_t32':374.26,'val_w26':'QC-07'} | Expecting property name enclosed in double quotes | {"col_m67":true,"key_j85":"closed","param_t32":374.26,"val_w26":"QC-07"} |
TASK repair_structured_output
SPEC
FIELD val_k15 TYPE integer REQUIRED yes
FIELD val_q09 TYPE string_date-time REQUIRED yes
FIELD val_b47 TYPE string VALUES synonymous|missense|nonsense|frameshift REQUIRED yes
BROKEN_OUTPUT
{val_k15:485,val_q09:"2025-11-25T17:51:00Z",val_b47:"synonymous"} | {"val_k15":485,"val_q09":"2025-11-25T17:51:00Z","val_b47":"synonymous"} | unquoted_keys | {
"type": "object",
"properties": {
"val_k15": {
"type": "integer"
},
"val_q09": {
"type": "string",
"format": "date-time"
},
"val_b47": {
"type": "string",
"enum": [
"synonymous",
"missense",
"nonsense",
"frameshift"
]
}
... | {val_k15:485,val_q09:"2025-11-25T17:51:00Z",val_b47:"synonymous"} | Expecting property name enclosed in double quotes | {"val_k15":485,"val_q09":"2025-11-25T17:51:00Z","val_b47":"synonymous"} |
TASK repair_structured_output
SPEC
FIELD attr_e16 TYPE string VALUES free|basic|pro|enterprise REQUIRED yes
FIELD param_b70 TYPE string VALUES USD|EUR|GBP|BRL|JPY REQUIRED yes
FIELD key_d84 TYPE string VALUES new|in_transit|delivered|returned REQUIRED yes
FIELD prop_u90 TYPE string_date-time REQUIRED no
BROKEN_OUTPUT... | {"attr_e16":"enterprise","param_b70":"USD","key_d84":"new","prop_u90":"2026-09-05T23:17:00Z"} | trailing_comma | {
"type": "object",
"properties": {
"attr_e16": {
"type": "string",
"enum": [
"free",
"basic",
"pro",
"enterprise"
]
},
"param_b70": {
"type": "string",
"enum": [
"USD",
"EUR",
"GBP",
"BRL",
"JPY"
... | {"attr_e16":"enterprise","param_b70":"USD","key_d84":"new","prop_u90":"2026-09-05T23:17:00Z",} | Unexpected trailing comma | {"attr_e16":"enterprise","param_b70":"USD","key_d84":"new","prop_u90":"2026-09-05T23:17:00Z"} |
TASK repair_structured_output
SPEC
FIELD col_f04 TYPE string VALUES red|blue|green|black|white REQUIRED no
FIELD val_r51 TYPE integer REQUIRED yes
FIELD key_o91 TYPE string_email REQUIRED no
FIELD dim_c11 TYPE string_uri REQUIRED no
FIELD attr_x12 TYPE string REQUIRED yes
FIELD key_s02 TYPE string REQUIRED no
FIELD fi... | {"col_f04":"blue","val_r51":856,"key_o91":"admin@example.com","attr_x12":"example","key_s02":"example","field_g57":"test@test.io"} | invalid_enum | {
"type": "object",
"properties": {
"col_f04": {
"type": "string",
"enum": [
"red",
"blue",
"green",
"black",
"white"
]
},
"val_r51": {
"type": "integer"
},
"key_o91": {
"type": "string",
"format": "email"
},
"di... | {"col_f04": "invalid_choice_536", "val_r51": 856, "key_o91": "admin@example.com", "attr_x12": "example", "key_s02": "example", "field_g57": "test@test.io"} | Field 'col_f04' has invalid enum value 'invalid_choice_536', expected one of ['red', 'blue', 'green', 'black', 'white'] | {"col_f04":"blue","val_r51":856,"key_o91":"admin@example.com","attr_x12":"example","key_s02":"example","field_g57":"test@test.io"} |
TASK repair_structured_output
SPEC
FIELD field_s62 TYPE integer REQUIRED no
FIELD prop_w65.attr_p27 TYPE string VALUES operational|degraded|offline|maintenance REQUIRED no
FIELD prop_w65.key_l96 TYPE string VALUES synonymous|missense|nonsense|frameshift REQUIRED yes
FIELD prop_w65.field_k15 TYPE string VALUES red|blue... | {"prop_w65":{"key_l96":"missense","field_f67":143,"key_k12":342,"attr_y07":"2020-05-26T04:51:00Z","dim_s96":"active"},"val_g58":0.94,"val_c83":"degraded"} | truncated_object | {
"type": "object",
"properties": {
"field_s62": {
"type": "integer"
},
"prop_w65": {
"type": "object",
"properties": {
"attr_p27": {
"type": "string",
"enum": [
"operational",
"degraded",
"offline",
"maintenan... | {"prop_w65":{"key_l96":"missense","field_f67":143,"key_k12":342,"attr_y07":"2020-05-26T04:51:00Z","dim_s96":"active"},"val_g58":0.94,"val_c83":"degraded" | Unexpected end of JSON input — truncated object | {"prop_w65":{"key_l96":"missense","field_f67":143,"key_k12":342,"attr_y07":"2020-05-26T04:51:00Z","dim_s96":"active"},"val_g58":0.94,"val_c83":"degraded"} |
TASK repair_structured_output
SPEC
FIELD format TYPE string_email REQUIRED yes
FIELD full_name TYPE string VALUES level_1|level_2|level_3|level_4|level_5 REQUIRED yes
FIELD dissolved_oxygen TYPE number REQUIRED yes
FIELD count TYPE string_date-time REQUIRED yes
BROKEN_OUTPUT
{"format": "test@example.com", "dissolved_... | {"format":"test@example.com","full_name":"level_4","dissolved_oxygen":773.28,"count":"2022-11-24T13:38:00Z"} | missing_required | {
"type": "object",
"properties": {
"format": {
"type": "string",
"format": "email"
},
"full_name": {
"type": "string",
"enum": [
"level_1",
"level_2",
"level_3",
"level_4",
"level_5"
]
},
"dissolved_oxygen": {
"type": "... | {"format": "test@example.com", "dissolved_oxygen": 773.28, "count": "2022-11-24T13:38:00Z"} | Required field 'full_name' is missing | {"format":"test@example.com","full_name":"level_4","dissolved_oxygen":773.28,"count":"2022-11-24T13:38:00Z"} |
TASK repair_structured_output
SPEC
FIELD prop_t23 TYPE string REQUIRED yes
FIELD key_l58 TYPE string REQUIRED yes
FIELD field_t96[] TYPE number REQUIRED no
BROKEN_OUTPUT
{"prop_t23":"pending","key_l58":"Johnson","field_t96":[675.3,480.7,261.09,955.01]}
Hope this helps! | {"prop_t23":"pending","key_l58":"Johnson","field_t96":[675.3,480.7,261.09,955.01]} | extra_text_after | {
"type": "object",
"properties": {
"prop_t23": {
"type": "string"
},
"key_l58": {
"type": "string"
},
"field_t96": {
"type": "array",
"items": {
"type": "number"
}
}
},
"required": [
"key_l58",
"prop_t23"
]
} | {"prop_t23":"pending","key_l58":"Johnson","field_t96":[675.3,480.7,261.09,955.01]}
Hope this helps! | Output contains non-JSON text after the object | {"prop_t23":"pending","key_l58":"Johnson","field_t96":[675.3,480.7,261.09,955.01]} |
TASK repair_structured_output
SPEC
FIELD param_l16 TYPE integer REQUIRED no
FIELD field_f52 TYPE integer REQUIRED yes
FIELD col_v70 TYPE integer REQUIRED no
FIELD dim_u66 TYPE string VALUES coastal|oceanic|inland|arctic REQUIRED yes
FIELD field_j64 TYPE string VALUES low|medium|high|critical REQUIRED yes
FIELD param_t... | {"param_l16":476,"field_f52":289,"col_v70":889,"dim_u66":"arctic","field_j64":"critical","param_t78":911} | markdown_explanation | {
"type": "object",
"properties": {
"param_l16": {
"type": "integer"
},
"field_f52": {
"type": "integer"
},
"col_v70": {
"type": "integer"
},
"dim_u66": {
"type": "string",
"enum": [
"coastal",
"oceanic",
"inland",
"arctic"
... | Sensor output follows:
```json
{"param_l16":476,"field_f52":289,"col_v70":889,"dim_u66":"arctic","field_j64":"critical","param_t78":911}
```
Feel free to ask if you have questions. | Output contains markdown and explanatory text around JSON | {"param_l16":476,"field_f52":289,"col_v70":889,"dim_u66":"arctic","field_j64":"critical","param_t78":911} |
TASK repair_structured_output
SPEC
FIELD val_f45 TYPE string REQUIRED no
FIELD col_a75 TYPE boolean REQUIRED no
FIELD val_u09 TYPE string REQUIRED yes
BROKEN_OUTPUT
{"val_f45": "foo", "col_a75": false, "val_u09": "Sao Paulo", "extra_data_8578": true} | {"val_f45":"foo","col_a75":false,"val_u09":"Sao Paulo"} | extra_field | {
"type": "object",
"properties": {
"val_f45": {
"type": "string"
},
"col_a75": {
"type": "boolean"
},
"val_u09": {
"type": "string"
}
},
"required": [
"val_u09"
]
} | {"val_f45": "foo", "col_a75": false, "val_u09": "Sao Paulo", "extra_data_8578": true} | Unknown field 'extra_data_8578' not defined in schema | {"val_f45":"foo","col_a75":false,"val_u09":"Sao Paulo"} |
TASK repair_structured_output
SPEC
FIELD attr_t16 TYPE string_uri REQUIRED no
FIELD param_k46 TYPE string VALUES level_1|level_2 REQUIRED no
FIELD col_a24 TYPE string VALUES coastal|oceanic|inland|arctic REQUIRED yes
BROKEN_OUTPUT
read_sensor_array(param_k46='level_2', col_a24='oceanic') | {"param_k46":"level_2","col_a24":"oceanic"} | tool_call_python_syntax | {
"type": "object",
"properties": {
"attr_t16": {
"type": "string",
"format": "uri"
},
"param_k46": {
"type": "string",
"enum": [
"level_1",
"level_2"
]
},
"col_a24": {
"type": "string",
"enum": [
"coastal",
"oceanic",
... | read_sensor_array(param_k46='level_2', col_a24='oceanic') | Tool call uses Python syntax instead of JSON | {"param_k46":"level_2","col_a24":"oceanic"} |
TASK repair_structured_output
SPEC
FIELD field_t62 TYPE string REQUIRED no
FIELD val_i06 TYPE string REQUIRED no
FIELD prop_a62 TYPE string_date-time REQUIRED yes
FIELD val_i79 TYPE null REQUIRED no
FIELD key_d33 TYPE integer REQUIRED no
BROKEN_OUTPUT
{"field_t62": "Sao Paulo", "val_i79": null, "key_d33": 690} | {"field_t62":"Sao Paulo","prop_a62":"2021-08-28T23:31:00Z","val_i79":null,"key_d33":690} | missing_required | {
"type": "object",
"properties": {
"field_t62": {
"type": "string"
},
"val_i06": {
"type": "string"
},
"prop_a62": {
"type": "string",
"format": "date-time"
},
"val_i79": {
"type": "null"
},
"key_d33": {
"type": "integer"
}
},
"require... | {"field_t62": "Sao Paulo", "val_i79": null, "key_d33": 690} | Required field 'prop_a62' is missing | {"field_t62":"Sao Paulo","prop_a62":"2021-08-28T23:31:00Z","val_i79":null,"key_d33":690} |
TASK repair_structured_output
SPEC
FIELD dim_r51 TYPE string REQUIRED no
FIELD prop_x85 TYPE null REQUIRED yes
FIELD val_j57 TYPE string REQUIRED yes
BROKEN_OUTPUT
check_availability(dim_r51='RTG-04', prop_x85=None, val_j57='Jane') | {"dim_r51":"RTG-04","prop_x85":null,"val_j57":"Jane"} | tool_call_python_syntax | {
"type": "object",
"properties": {
"dim_r51": {
"type": "string"
},
"prop_x85": {
"type": "null"
},
"val_j57": {
"type": "string"
}
},
"required": [
"val_j57",
"prop_x85"
]
} | check_availability(dim_r51='RTG-04', prop_x85=None, val_j57='Jane') | Tool call uses Python syntax instead of JSON | {"dim_r51":"RTG-04","prop_x85":null,"val_j57":"Jane"} |
TASK repair_structured_output
SPEC
FIELD duration_ms TYPE string VALUES cat_a|cat_b REQUIRED yes
FIELD verified TYPE boolean REQUIRED no
FIELD rating TYPE string REQUIRED no
FIELD bearing.visible TYPE string VALUES mode_a|mode_b|mode_c|mode_d|mode_e|mode_f REQUIRED yes
FIELD bearing.procedure_code TYPE boolean REQUIRE... | {"duration_ms":"cat_a","verified":false,"humidity_pct":"inactive"} | missing_bracket | {
"type": "object",
"properties": {
"duration_ms": {
"type": "string",
"enum": [
"cat_a",
"cat_b"
]
},
"verified": {
"type": "boolean"
},
"rating": {
"type": "string"
},
"bearing": {
"type": "object",
"properties": {
"visi... | {"duration_ms":"cat_a","verified":false,"humidity_pct":"inactive"} | Missing closing bracket | {"duration_ms":"cat_a","verified":false,"humidity_pct":"inactive"} |
TASK repair_structured_output
SPEC
FIELD trace_id TYPE string VALUES draft|published|archived REQUIRED no
FIELD filter_flag TYPE string VALUES success|error|warning|info REQUIRED no
FIELD status TYPE integer REQUIRED no
FIELD salinity TYPE string VALUES homozygous|heterozygous|hemizygous REQUIRED no
FIELD yield_pct TY... | {"filter_flag":"error","status":673,"salinity":"homozygous","yield_pct":795.57,"user_id":"Luis","notes":"Tokyo"} | partial_structure | {
"type": "object",
"properties": {
"trace_id": {
"type": "string",
"enum": [
"draft",
"published",
"archived"
]
},
"filter_flag": {
"type": "string",
"enum": [
"success",
"error",
"warning",
"info"
]
},
... | The notes is Tokyo and {"filter_flag":"error","status":673,"salinity":"homozygous","yield_pct":795.57,"user_id":"Luis","notes":"Tokyo"} | Output mixes natural language with JSON | {"filter_flag":"error","status":673,"salinity":"homozygous","yield_pct":795.57,"user_id":"Luis","notes":"Tokyo"} |
TASK repair_structured_output
SPEC
FIELD val_k47 TYPE string REQUIRED yes
FIELD key_z74 TYPE integer REQUIRED yes
FIELD val_t02 TYPE string VALUES USD|EUR|GBP|BRL|JPY REQUIRED yes
FIELD attr_q40 TYPE integer REQUIRED no
BROKEN_OUTPUT
{"val_k47":"Johnson","key_z74":623,"val_t02":"GBP"} | {"val_k47":"Johnson","key_z74":623,"val_t02":"GBP"} | missing_bracket | {
"type": "object",
"properties": {
"val_k47": {
"type": "string"
},
"key_z74": {
"type": "integer"
},
"val_t02": {
"type": "string",
"enum": [
"USD",
"EUR",
"GBP",
"BRL",
"JPY"
]
},
"attr_q40": {
"type": "intege... | {"val_k47":"Johnson","key_z74":623,"val_t02":"GBP"} | Missing closing bracket | {"val_k47":"Johnson","key_z74":623,"val_t02":"GBP"} |
TASK repair_structured_output
SPEC
FIELD message TYPE string_uri REQUIRED no
FIELD website TYPE boolean REQUIRED yes
FIELD account_id TYPE integer REQUIRED no
FIELD label TYPE string VALUES mode_a|mode_b|mode_c|mode_d REQUIRED no
FIELD step TYPE number REQUIRED no
FIELD hazmat_code TYPE boolean REQUIRED no
FIELD gene_... | {"message":"https://example.io/v1","website":false,"account_id":584,"gene_id":"type_a"} | tool_call_text_mix | {
"type": "object",
"properties": {
"message": {
"type": "string",
"format": "uri"
},
"website": {
"type": "boolean"
},
"account_id": {
"type": "integer"
},
"label": {
"type": "string",
"enum": [
"mode_a",
"mode_b",
"mode_c",
... | Processing the request now.
<tool_call name="create_ticket">
{"message":"https://example.io/v1","website":false,"account_id":584,"gene_id":"type_a"}
</tool_call.
The result is ready. | Agent response mixes reasoning text with tool call | {"message":"https://example.io/v1","website":false,"account_id":584,"gene_id":"type_a"} |
TASK repair_structured_output
SPEC
FIELD param_i88 TYPE string REQUIRED no
FIELD param_z07 TYPE string_date-time REQUIRED yes
FIELD prop_h42 TYPE boolean REQUIRED no
FIELD prop_h72 TYPE integer REQUIRED no
FIELD field_t48.prop_d89 TYPE number REQUIRED yes
FIELD field_t48.prop_t74 TYPE string VALUES level_1|level_2|lev... | {"param_i88":"completed","param_z07":"2026-05-04T02:15:00Z","prop_h42":false,"field_t48":{"prop_d89":952.04,"field_s61":"https://data.io/data","dim_y39":280.21,"dim_a46":"cat_d","val_p25":{"val_d75":"reliable","attr_g13":"mode_c","prop_j84":"type_d","key_y87":"mode_c","param_v49":"admin@test.io","prop_s25":76,"attr_g62... | extra_text_before | {
"type": "object",
"properties": {
"param_i88": {
"type": "string"
},
"param_z07": {
"type": "string",
"format": "date-time"
},
"prop_h42": {
"type": "boolean"
},
"prop_h72": {
"type": "integer"
},
"field_t48": {
"type": "object",
"prope... | Here is the response in the requested format:
{"param_i88":"completed","param_z07":"2026-05-04T02:15:00Z","prop_h42":false,"field_t48":{"prop_d89":952.04,"field_s61":"https://data.io/data","dim_y39":280.21,"dim_a46":"cat_d","val_p25":{"val_d75":"reliable","attr_g13":"mode_c","prop_j84":"type_d","key_y87":"mode_c","para... | Output contains non-JSON text before the object | {"param_i88":"completed","param_z07":"2026-05-04T02:15:00Z","prop_h42":false,"field_t48":{"prop_d89":952.04,"field_s61":"https://data.io/data","dim_y39":280.21,"dim_a46":"cat_d","val_p25":{"val_d75":"reliable","attr_g13":"mode_c","prop_j84":"type_d","key_y87":"mode_c","param_v49":"admin@test.io","prop_s25":76,"attr_g62... |
TASK repair_structured_output
SPEC
FIELD prop_k98 TYPE string_uri REQUIRED no
FIELD val_r84 TYPE boolean REQUIRED yes
FIELD field_e15 TYPE string REQUIRED no
FIELD key_y73 TYPE number REQUIRED no
FIELD attr_k73 TYPE string VALUES draft|published|archived REQUIRED yes
FIELD dim_l53.key_z87 TYPE string VALUES low|medium... | {"prop_k98":"https://data.org/v1","val_r84":true,"key_y73":877.64,"attr_k73":"published","dim_l53":{"key_z87":"critical","val_s51":true,"param_s18":{"key_c29":false,"key_o86":"completed","field_m94":"returned","field_t60":"option_b","field_h56":true}}} | trailing_comma | {
"type": "object",
"properties": {
"prop_k98": {
"type": "string",
"format": "uri"
},
"val_r84": {
"type": "boolean"
},
"field_e15": {
"type": "string"
},
"key_y73": {
"type": "number"
},
"attr_k73": {
"type": "string",
"enum": [
... | {"prop_k98":"https://data.org/v1","val_r84":true,"key_y73":877.64,"attr_k73":"published","dim_l53":{"key_z87":"critical","val_s51":true,"param_s18":{"key_c29":false,"key_o86":"completed","field_m94":"returned","field_t60":"option_b","field_h56":true}},} | Unexpected trailing comma | {"prop_k98":"https://data.org/v1","val_r84":true,"key_y73":877.64,"attr_k73":"published","dim_l53":{"key_z87":"critical","val_s51":true,"param_s18":{"key_c29":false,"key_o86":"completed","field_m94":"returned","field_t60":"option_b","field_h56":true}}} |
TASK repair_structured_output
SPEC
FIELD active TYPE string_date-time REQUIRED no
FIELD username TYPE integer REQUIRED no
FIELD size TYPE string REQUIRED yes
BROKEN_OUTPUT
{"active": "2022-09-04T14:01:00Z", "username": 823} | {"active":"2022-09-04T14:01:00Z","username":823,"size":"inactive"} | missing_required | {
"type": "object",
"properties": {
"active": {
"type": "string",
"format": "date-time"
},
"username": {
"type": "integer"
},
"size": {
"type": "string"
}
},
"required": [
"size"
]
} | {"active": "2022-09-04T14:01:00Z", "username": 823} | Required field 'size' is missing | {"active":"2022-09-04T14:01:00Z","username":823,"size":"inactive"} |
TASK repair_structured_output
SPEC
FIELD attr_f10 TYPE string REQUIRED yes
FIELD key_h16 TYPE number REQUIRED yes
FIELD param_d77 TYPE string VALUES admin|editor|viewer REQUIRED no
FIELD col_r72.param_x16 TYPE null REQUIRED no
FIELD col_r72.val_t13 TYPE string REQUIRED no
FIELD col_r72.prop_i24 TYPE string REQUIRED ye... | {"attr_f10":"Bob","key_h16":959.05,"col_r72":{"param_x16":null,"prop_i24":"inactive","val_y25":"returned","col_l29":"hemizygous","prop_f02":"example"}} | tool_call_bad_format | {
"type": "object",
"properties": {
"attr_f10": {
"type": "string"
},
"key_h16": {
"type": "number"
},
"param_d77": {
"type": "string",
"enum": [
"admin",
"editor",
"viewer"
]
},
"col_r72": {
"type": "object",
"properties"... | <functioncall> queue_sequencing_run
{attr_f10: "Bob", key_h16: 959.05, col_r72: {param_x16: null, prop_i24: "inactive", val_y25: "returned", col_l29: "hemizygous", prop_f02: "example"}} | Tool call has malformed arguments — unquoted keys in function parameters | {"attr_f10":"Bob","key_h16":959.05,"col_r72":{"param_x16":null,"prop_i24":"inactive","val_y25":"returned","col_l29":"hemizygous","prop_f02":"example"}} |
TASK repair_structured_output
SPEC
FIELD interest_rate TYPE string VALUES red|blue|green|black|white REQUIRED no
FIELD product_id TYPE integer REQUIRED no
FIELD user_id TYPE string REQUIRED yes
FIELD current_draw TYPE integer REQUIRED no
FIELD updated_at TYPE boolean REQUIRED no
FIELD url TYPE string REQUIRED no
FIELD... | {"interest_rate":"black","product_id":758,"user_id":"user@domain.com","updated_at":false,"url":"sample"} | single_quotes | {
"type": "object",
"properties": {
"interest_rate": {
"type": "string",
"enum": [
"red",
"blue",
"green",
"black",
"white"
]
},
"product_id": {
"type": "integer"
},
"user_id": {
"type": "string"
},
"current_draw": {
... | {'interest_rate':'black','product_id':758,'user_id':'user@domain.com','updated_at':false,'url':'sample'} | Expecting property name enclosed in double quotes | {"interest_rate":"black","product_id":758,"user_id":"user@domain.com","updated_at":false,"url":"sample"} |
TASK repair_structured_output
SPEC
FIELD branch TYPE integer REQUIRED yes
FIELD maturity_date TYPE string REQUIRED yes
FIELD compound[].item_id TYPE integer REQUIRED yes
FIELD compound[].berth_slot TYPE string REQUIRED no
FIELD compound[].total TYPE boolean REQUIRED no
FIELD compound[].city TYPE string_date-time REQUI... | {"branch":891,"maturity_date":"PASS","compound":[{"item_id":857,"total":true,"city":"2025-02-28T08:53:00Z"},{"item_id":742,"city":"2025-09-11T13:42:00Z"},{"item_id":857,"berth_slot":"Sao Paulo","total":true,"city":"2025-08-08T18:31:00Z"},{"item_id":227,"berth_slot":"https://api.example.com/v1","total":false,"city":"202... | markdown_explanation | {
"type": "object",
"properties": {
"branch": {
"type": "integer"
},
"maturity_date": {
"type": "string"
},
"compound": {
"type": "array",
"items": {
"type": "object",
"properties": {
"item_id": {
"type": "integer"
},
... | Let me provide the data in JSON format:
```json
{"branch":891,"maturity_date":"PASS","compound":[{"item_id":857,"total":true,"city":"2025-02-28T08:53:00Z"},{"item_id":742,"city":"2025-09-11T13:42:00Z"},{"item_id":857,"berth_slot":"Sao Paulo","total":true,"city":"2025-08-08T18:31:00Z"},{"item_id":227,"berth_slot":"https... | Output contains markdown and explanatory text around JSON | {"branch":891,"maturity_date":"PASS","compound":[{"item_id":857,"total":true,"city":"2025-02-28T08:53:00Z"},{"item_id":742,"city":"2025-09-11T13:42:00Z"},{"item_id":857,"berth_slot":"Sao Paulo","total":true,"city":"2025-08-08T18:31:00Z"},{"item_id":227,"berth_slot":"https://api.example.com/v1","total":false,"city":"202... |
TASK repair_structured_output
SPEC
FIELD balance TYPE string REQUIRED yes
FIELD log_level TYPE string_date-time REQUIRED yes
FIELD rating TYPE boolean REQUIRED yes
BROKEN_OUTPUT
I need to look up the information first.
Action: call_variants
Result: {"balance": "MV-Evergreen-01", "log_level": "2025-01-12T20:50:00Z"}
... | {"balance":"MV-Evergreen-01","log_level":"2025-01-12T20:50:00Z","rating":false} | agent_chain | {
"type": "object",
"properties": {
"balance": {
"type": "string"
},
"log_level": {
"type": "string",
"format": "date-time"
},
"rating": {
"type": "boolean"
}
},
"required": [
"rating",
"log_level",
"balance"
]
} | I need to look up the information first.
Action: call_variants
Result: {"balance": "MV-Evergreen-01", "log_level": "2025-01-12T20:50:00Z"}
I'll query our database.
Action: fetch_lab_result
Result: | Agent multi-step chain with truncated tool output | {"balance":"MV-Evergreen-01","log_level":"2025-01-12T20:50:00Z","rating":false} |
TASK repair_structured_output
SPEC
FIELD procedure_code TYPE string VALUES option_a|option_b|option_c|option_d|option_e REQUIRED yes
FIELD items TYPE string VALUES type_a|type_b|type_c|type_d REQUIRED yes
FIELD status TYPE string REQUIRED no
FIELD commit_hash TYPE string REQUIRED yes
BROKEN_OUTPUT
Let me check the sy... | {"procedure_code":"option_d","items":"type_c","commit_hash":"Santos"} | agent_chain | {
"type": "object",
"properties": {
"procedure_code": {
"type": "string",
"enum": [
"option_a",
"option_b",
"option_c",
"option_d",
"option_e"
]
},
"items": {
"type": "string",
"enum": [
"type_a",
"type_b",
"ty... | Let me check the system.
Action: align_reads
Result: {"procedure_code": "option_d", "items": "type_c"}
I'll query our database.
Action: delete_item
Result: | Agent multi-step chain with truncated tool output | {"procedure_code":"option_d","items":"type_c","commit_hash":"Santos"} |
TASK repair_structured_output
SPEC
FIELD subject TYPE integer REQUIRED yes
FIELD rating TYPE string REQUIRED no
FIELD count TYPE integer REQUIRED no
FIELD deploy_target TYPE integer REQUIRED yes
FIELD torque_output TYPE string VALUES USD|EUR|GBP|BRL|JPY REQUIRED yes
BROKEN_OUTPUT
queue_sequencing_run(subject=596, rat... | {"subject":596,"rating":"bar","deploy_target":574,"torque_output":"GBP"} | tool_call_python_syntax | {
"type": "object",
"properties": {
"subject": {
"type": "integer"
},
"rating": {
"type": "string"
},
"count": {
"type": "integer"
},
"deploy_target": {
"type": "integer"
},
"torque_output": {
"type": "string",
"enum": [
"USD",
... | queue_sequencing_run(subject=596, rating='bar', deploy_target=574, torque_output='GBP') | Tool call uses Python syntax instead of JSON | {"subject":596,"rating":"bar","deploy_target":574,"torque_output":"GBP"} |
TASK repair_structured_output
SPEC
FIELD first_name TYPE string VALUES level_1|level_2|level_3|level_4 REQUIRED no
FIELD count TYPE string VALUES coastal|oceanic|inland|arctic REQUIRED no
FIELD maturity_date TYPE string VALUES mode_a|mode_b|mode_c REQUIRED yes
BROKEN_OUTPUT
Here is the response in the requested forma... | {"maturity_date":"mode_b"} | markdown_explanation | {
"type": "object",
"properties": {
"first_name": {
"type": "string",
"enum": [
"level_1",
"level_2",
"level_3",
"level_4"
]
},
"count": {
"type": "string",
"enum": [
"coastal",
"oceanic",
"inland",
"arctic"
... | Here is the response in the requested format:
```json
{"maturity_date":"mode_b"}
```
Let me know if you need anything else! | Output contains markdown and explanatory text around JSON | {"maturity_date":"mode_b"} |
TASK repair_structured_output
SPEC
FIELD val_w54 TYPE number REQUIRED no
FIELD col_l53 TYPE number REQUIRED yes
FIELD key_r51 TYPE string VALUES mode_a|mode_b|mode_c|mode_d|mode_e|mode_f REQUIRED no
FIELD attr_k38.field_l72 TYPE boolean REQUIRED no
FIELD attr_k38.param_v51 TYPE string VALUES cat_a|cat_b REQUIRED yes
F... | {"col_l53":490.81,"attr_k38":{"field_l72":false,"param_v51":"cat_a","val_s40":869,"dim_n26":"https://api.example.com/v1","prop_v74":["JPY","JPY","JPY"]},"attr_d87":{"attr_o09":"hemizygous","field_r14":"mode_c","val_d52":"medium"}} | extra_field | {
"type": "object",
"properties": {
"val_w54": {
"type": "number"
},
"col_l53": {
"type": "number"
},
"key_r51": {
"type": "string",
"enum": [
"mode_a",
"mode_b",
"mode_c",
"mode_d",
"mode_e",
"mode_f"
]
},
"at... | {"col_l53": 490.81, "attr_k38": {"field_l72": false, "param_v51": "cat_a", "val_s40": 869, "dim_n26": "https://api.example.com/v1", "prop_v74": ["JPY", "JPY", "JPY"]}, "attr_d87": {"attr_o09": "hemizygous", "field_r14": "mode_c", "val_d52": "medium"}, "extra_data_4800": true} | Unknown field 'extra_data_4800' not defined in schema | {"col_l53":490.81,"attr_k38":{"field_l72":false,"param_v51":"cat_a","val_s40":869,"dim_n26":"https://api.example.com/v1","prop_v74":["JPY","JPY","JPY"]},"attr_d87":{"attr_o09":"hemizygous","field_r14":"mode_c","val_d52":"medium"}} |
TASK repair_structured_output
SPEC
FIELD field_p15 TYPE string REQUIRED no
FIELD dim_t64 TYPE string REQUIRED no
FIELD dim_z40 TYPE string VALUES pending_review|confirmed|rejected|escalated REQUIRED yes
FIELD field_g14 TYPE number REQUIRED no
FIELD attr_u50 TYPE string REQUIRED no
FIELD field_b46 TYPE number REQUIRED ... | {"field_p15":"hello","dim_t64":"test@example.com","dim_z40":"pending_review","field_g14":381.55,"field_b46":116.42} | missing_brace | {
"type": "object",
"properties": {
"field_p15": {
"type": "string"
},
"dim_t64": {
"type": "string"
},
"dim_z40": {
"type": "string",
"enum": [
"pending_review",
"confirmed",
"rejected",
"escalated"
]
},
"field_g14": {
... | "field_p15":"hello","dim_t64":"test@example.com","dim_z40":"pending_review","field_g14":381.55,"field_b46":116.42} | Missing closing brace | {"field_p15":"hello","dim_t64":"test@example.com","dim_z40":"pending_review","field_g14":381.55,"field_b46":116.42} |
TASK repair_structured_output
SPEC
FIELD tags.paragraph TYPE string VALUES single|married|divorced REQUIRED no
FIELD tags.step TYPE string REQUIRED no
FIELD tags.pressure_kpa TYPE integer REQUIRED yes
FIELD tags.insurance_id TYPE string REQUIRED no
FIELD tags.branch.city TYPE string VALUES open|in_progress|resolved|cl... | {"tags":{"paragraph":"divorced","pressure_kpa":26,"branch":{"city":"in_progress","wavelength":"resolved","start_date":"EUR","section":"nonsense","role":"A short description.","item_id":true},"invoice_id":548,"full_name":"operational"},"altitude":{"quantity":"Silva","dosage":{"values":true,"amount":"Johnson"},"barcode":... | markdown_fences | {
"type": "object",
"properties": {
"tags": {
"type": "object",
"properties": {
"paragraph": {
"type": "string",
"enum": [
"single",
"married",
"divorced"
]
},
"step": {
"type": "string"
},
... | ```json
{"tags":{"paragraph":"divorced","pressure_kpa":26,"branch":{"city":"in_progress","wavelength":"resolved","start_date":"EUR","section":"nonsense","role":"A short description.","item_id":true},"invoice_id":548,"full_name":"operational"},"altitude":{"quantity":"Silva","dosage":{"values":true,"amount":"Johnson"},"b... | Output contains markdown code fences | {"tags":{"paragraph":"divorced","pressure_kpa":26,"branch":{"city":"in_progress","wavelength":"resolved","start_date":"EUR","section":"nonsense","role":"A short description.","item_id":true},"invoice_id":548,"full_name":"operational"},"altitude":{"quantity":"Silva","dosage":{"values":true,"amount":"Johnson"},"barcode":... |
TASK repair_structured_output
SPEC
FIELD patient_id TYPE integer REQUIRED no
FIELD item_id TYPE integer REQUIRED no
FIELD type TYPE string REQUIRED yes
FIELD span_id TYPE integer REQUIRED yes
FIELD reagent TYPE null REQUIRED no
FIELD insurance_id TYPE string VALUES homozygous|heterozygous|hemizygous REQUIRED yes
FIELD... | {"patient_id":682,"item_id":741,"type":"baz","span_id":211,"reagent":null,"insurance_id":"hemizygous","trace_id":{"verified":"draft","crew_id":"cancelled","type":null,"turbidity":"RTG-04","feedback":812}} | null_required | {
"type": "object",
"properties": {
"patient_id": {
"type": "integer"
},
"item_id": {
"type": "integer"
},
"type": {
"type": "string"
},
"span_id": {
"type": "integer"
},
"reagent": {
"type": "null"
},
"insurance_id": {
"type": "string"... | {"patient_id": 682, "item_id": 741, "type": "baz", "span_id": 211, "reagent": null, "insurance_id": null, "trace_id": {"verified": "draft", "crew_id": "cancelled", "type": null, "turbidity": "RTG-04", "feedback": 812}} | Required field 'insurance_id' is null | {"patient_id":682,"item_id":741,"type":"baz","span_id":211,"reagent":null,"insurance_id":"hemizygous","trace_id":{"verified":"draft","crew_id":"cancelled","type":null,"turbidity":"RTG-04","feedback":812}} |
TASK repair_structured_output
SPEC
FIELD height TYPE integer REQUIRED no
FIELD aligned_pct TYPE integer REQUIRED no
FIELD span_id TYPE null REQUIRED no
FIELD frequency_hz TYPE number REQUIRED yes
FIELD feedback TYPE string REQUIRED no
FIELD repository TYPE boolean REQUIRED yes
BROKEN_OUTPUT
{"height": "\"821\"", "ali... | {"height":821,"aligned_pct":422,"span_id":null,"frequency_hz":245.77,"repository":false} | wrong_type | {
"type": "object",
"properties": {
"height": {
"type": "integer"
},
"aligned_pct": {
"type": "integer"
},
"span_id": {
"type": "null"
},
"frequency_hz": {
"type": "number"
},
"feedback": {
"type": "string"
},
"repository": {
"type": "b... | {"height": "\"821\"", "aligned_pct": 422, "span_id": null, "frequency_hz": 245.77, "repository": false} | Field 'height' must be integer, got string | {"height":821,"aligned_pct":422,"span_id":null,"frequency_hz":245.77,"repository":false} |
TASK repair_structured_output
SPEC
FIELD description TYPE string VALUES free|basic|pro|enterprise REQUIRED no
FIELD zip_code TYPE integer REQUIRED yes
FIELD cargo_type TYPE string VALUES email|phone|sms|push REQUIRED yes
BROKEN_OUTPUT
<functioncall> process_payment
{description: "enterprise", zip_code: 487, cargo_typ... | {"description":"enterprise","zip_code":487,"cargo_type":"sms"} | tool_call_bad_format | {
"type": "object",
"properties": {
"description": {
"type": "string",
"enum": [
"free",
"basic",
"pro",
"enterprise"
]
},
"zip_code": {
"type": "integer"
},
"cargo_type": {
"type": "string",
"enum": [
"email",
"... | <functioncall> process_payment
{description: "enterprise", zip_code: 487, cargo_type: "sms"} | Tool call has malformed arguments — unquoted keys in function parameters | {"description":"enterprise","zip_code":487,"cargo_type":"sms"} |
TASK repair_structured_output
SPEC
FIELD key_k15 TYPE string VALUES option_a|option_b|option_c|option_d|option_e|option_f REQUIRED no
FIELD param_f29 TYPE number REQUIRED yes
FIELD val_v62 TYPE string VALUES type_a|type_b|type_c REQUIRED no
FIELD param_z35 TYPE integer REQUIRED no
FIELD val_w15 TYPE string VALUES mode... | {"param_f29":926.54,"val_v62":"type_c","param_z35":390,"val_w15":"mode_d","dim_a99":null,"col_f54":689} | missing_bracket | {
"type": "object",
"properties": {
"key_k15": {
"type": "string",
"enum": [
"option_a",
"option_b",
"option_c",
"option_d",
"option_e",
"option_f"
]
},
"param_f29": {
"type": "number"
},
"val_v62": {
"type": "string",... | {"param_f29":926.54,"val_v62":"type_c","param_z35":390,"val_w15":"mode_d","dim_a99":null,"col_f54":689} | Missing closing bracket | {"param_f29":926.54,"val_v62":"type_c","param_z35":390,"val_w15":"mode_d","dim_a99":null,"col_f54":689} |
TASK repair_structured_output
SPEC
FIELD pressure_kpa TYPE string REQUIRED yes
FIELD voltage TYPE string REQUIRED no
FIELD berth_slot TYPE string_uri REQUIRED no
FIELD end_date TYPE string VALUES active|inactive|pending REQUIRED no
FIELD manifest_ref TYPE string VALUES level_1|level_2 REQUIRED yes
FIELD step TYPE stri... | {"pressure_kpa":"Johnson","voltage":"cancelled","berth_slot":"https://www.io/v1","end_date":"active","manifest_ref":"level_1","step":"QC-07","medication":"active"} | extra_text_after | {
"type": "object",
"properties": {
"pressure_kpa": {
"type": "string"
},
"voltage": {
"type": "string"
},
"berth_slot": {
"type": "string",
"format": "uri"
},
"end_date": {
"type": "string",
"enum": [
"active",
"inactive",
"pen... | {"pressure_kpa":"Johnson","voltage":"cancelled","berth_slot":"https://www.io/v1","end_date":"active","manifest_ref":"level_1","step":"QC-07","medication":"active"}
Let me know if you need anything else! | Output contains non-JSON text after the object | {"pressure_kpa":"Johnson","voltage":"cancelled","berth_slot":"https://www.io/v1","end_date":"active","manifest_ref":"level_1","step":"QC-07","medication":"active"} |
TASK repair_structured_output
SPEC
FIELD color TYPE string VALUES synonymous|missense|nonsense|frameshift REQUIRED no
FIELD username TYPE boolean REQUIRED no
FIELD country.shipping.url TYPE string_email REQUIRED yes
FIELD country.shipping.aligned_pct TYPE string VALUES red|blue|green|black|white REQUIRED yes
FIELD cou... | {"username":false,"country":{"annotation":"phone","balance":{"user_id":966,"due_date":"reliable","turbidity":"John","price":"type_c","footnote":"2022-11-10T21:39:00Z","wavelength":"info@test.io","label":"Maria","quantity":599.15},"user_id":"baz","conductivity":743,"values":"degraded"},"price":{"verified":"Charlie","ima... | wrong_type | {
"type": "object",
"properties": {
"color": {
"type": "string",
"enum": [
"synonymous",
"missense",
"nonsense",
"frameshift"
]
},
"username": {
"type": "boolean"
},
"country": {
"type": "object",
"properties": {
"shippi... | {"username": "\"no\"", "country": {"annotation": "phone", "balance": {"user_id": 966, "due_date": "reliable", "turbidity": "John", "price": "type_c", "footnote": "2022-11-10T21:39:00Z", "wavelength": "info@test.io", "label": "Maria", "quantity": 599.15}, "user_id": "baz", "conductivity": 743, "values": "degraded"}, "pr... | Field 'username' must be boolean, got string | {"username":false,"country":{"annotation":"phone","balance":{"user_id":966,"due_date":"reliable","turbidity":"John","price":"type_c","footnote":"2022-11-10T21:39:00Z","wavelength":"info@test.io","label":"Maria","quantity":599.15},"user_id":"baz","conductivity":743,"values":"degraded"},"price":{"verified":"Charlie","ima... |
TASK repair_structured_output
SPEC
FIELD discount TYPE string VALUES free|basic|pro|enterprise REQUIRED yes
FIELD dosage TYPE string VALUES new|in_transit|delivered|returned REQUIRED no
FIELD berth_slot TYPE string VALUES red|blue|green|black|white REQUIRED yes
FIELD ward TYPE string_uri REQUIRED yes
FIELD cargo_type ... | {"discount":"free","dosage":"in_transit","berth_slot":"white","ward":"https://www.com/data","cargo_type":"2024-01-15"} | tool_call_text_mix | {
"type": "object",
"properties": {
"discount": {
"type": "string",
"enum": [
"free",
"basic",
"pro",
"enterprise"
]
},
"dosage": {
"type": "string",
"enum": [
"new",
"in_transit",
"delivered",
"returned"
... | I need to look up the information first.
<tool_call name="validate_address">
{"discount":"free","dosage":"in_transit","berth_slot":"white","ward":"https://www.com/data","cargo_type":"2024-01-15"}
</tool_call.
Operation completed. | Agent response mixes reasoning text with tool call | {"discount":"free","dosage":"in_transit","berth_slot":"white","ward":"https://www.com/data","cargo_type":"2024-01-15"} |
TASK repair_structured_output
SPEC
FIELD attr_l07 TYPE string REQUIRED no
FIELD prop_h05 TYPE string REQUIRED no
FIELD key_t78 TYPE boolean REQUIRED no
FIELD attr_z45 TYPE string REQUIRED yes
FIELD dim_k98 TYPE boolean REQUIRED yes
BROKEN_OUTPUT
{'key_t78':true,'attr_z45':'Johnson','dim_k98':false} | {"key_t78":true,"attr_z45":"Johnson","dim_k98":false} | single_quotes | {
"type": "object",
"properties": {
"attr_l07": {
"type": "string"
},
"prop_h05": {
"type": "string"
},
"key_t78": {
"type": "boolean"
},
"attr_z45": {
"type": "string"
},
"dim_k98": {
"type": "boolean"
}
},
"required": [
"attr_z45",
... | {'key_t78':true,'attr_z45':'Johnson','dim_k98':false} | Expecting property name enclosed in double quotes | {"key_t78":true,"attr_z45":"Johnson","dim_k98":false} |
TASK repair_structured_output
SPEC
FIELD key_o27 TYPE integer REQUIRED yes
FIELD col_r29 TYPE string_date-time REQUIRED yes
FIELD dim_y51 TYPE integer REQUIRED yes
BROKEN_OUTPUT
{"key_o27": 127, "col_r29": "2020-06-18T15:23:00Z", "dim_y51": "\"146\""} | {"key_o27":127,"col_r29":"2020-06-18T15:23:00Z","dim_y51":146} | wrong_type | {
"type": "object",
"properties": {
"key_o27": {
"type": "integer"
},
"col_r29": {
"type": "string",
"format": "date-time"
},
"dim_y51": {
"type": "integer"
}
},
"required": [
"key_o27",
"col_r29",
"dim_y51"
]
} | {"key_o27": 127, "col_r29": "2020-06-18T15:23:00Z", "dim_y51": "\"146\""} | Field 'dim_y51' must be integer, got string | {"key_o27":127,"col_r29":"2020-06-18T15:23:00Z","dim_y51":146} |
TASK repair_structured_output
SPEC
FIELD throttle_pos TYPE string VALUES email|phone|sms|push REQUIRED yes
FIELD tags TYPE string VALUES free|basic|pro|enterprise REQUIRED yes
FIELD vessel_name TYPE string VALUES new|in_transit|delivered|returned REQUIRED no
FIELD credit_score TYPE string_email REQUIRED yes
FIELD phon... | {"throttle_pos":"email","tags":"basic","vessel_name":"in_transit","credit_score":"admin@example.com"} | invalid_enum | {
"type": "object",
"properties": {
"throttle_pos": {
"type": "string",
"enum": [
"email",
"phone",
"sms",
"push"
]
},
"tags": {
"type": "string",
"enum": [
"free",
"basic",
"pro",
"enterprise"
]
},
... | {"throttle_pos": "email", "tags": "invalid_option_423", "vessel_name": "in_transit", "credit_score": "admin@example.com"} | Field 'tags' has invalid enum value 'invalid_option_423', expected one of ['free', 'basic', 'pro', 'enterprise'] | {"throttle_pos":"email","tags":"basic","vessel_name":"in_transit","credit_score":"admin@example.com"} |
TASK repair_structured_output
SPEC
FIELD field_q66 TYPE string_uri REQUIRED no
FIELD attr_r13 TYPE integer REQUIRED no
FIELD dim_f14 TYPE number REQUIRED no
FIELD prop_h08.field_v68 TYPE string VALUES email|phone|sms|push REQUIRED yes
FIELD prop_h08.param_b39 TYPE integer REQUIRED yes
FIELD prop_h08.field_g39 TYPE str... | {"attr_r13":336,"dim_f14":390.81,"prop_h08":{"field_v68":"phone","param_b39":943,"field_g39":"divorced","dim_a51":612,"key_q26":"https://api.example.com/v1","prop_e80":"PASS"}} | trailing_comma | {
"type": "object",
"properties": {
"field_q66": {
"type": "string",
"format": "uri"
},
"attr_r13": {
"type": "integer"
},
"dim_f14": {
"type": "number"
},
"prop_h08": {
"type": "object",
"properties": {
"field_v68": {
"type": "string... | {"attr_r13":336,"dim_f14":390.81,"prop_h08":{"field_v68":"phone","param_b39":943,"field_g39":"divorced","dim_a51":612,"key_q26":"https://api.example.com/v1","prop_e80":"PASS",}} | Unexpected trailing comma | {"attr_r13":336,"dim_f14":390.81,"prop_h08":{"field_v68":"phone","param_b39":943,"field_g39":"divorced","dim_a51":612,"key_q26":"https://api.example.com/v1","prop_e80":"PASS"}} |
TASK repair_structured_output
SPEC
FIELD temp_celsius.size TYPE string REQUIRED yes
FIELD temp_celsius.build_status TYPE string_date-time REQUIRED yes
FIELD temp_celsius.email.dosage TYPE string REQUIRED no
FIELD temp_celsius.email.total TYPE integer REQUIRED yes
FIELD temp_celsius.email.type TYPE number REQUIRED no
F... | {"duration_ms":"anchored","type":"test@test.io","feedback":"2025-06-14T05:37:00Z","phone":false} | invalid_enum | {
"type": "object",
"properties": {
"temp_celsius": {
"type": "object",
"properties": {
"size": {
"type": "string"
},
"build_status": {
"type": "string",
"format": "date-time"
},
"email": {
"type": "object",
"p... | {"duration_ms": "invalid_value_786", "type": "test@test.io", "feedback": "2025-06-14T05:37:00Z", "phone": false} | Field 'duration_ms' has invalid enum value 'invalid_value_786', expected one of ['berthed', 'anchored', 'underway', 'moored'] | {"duration_ms":"anchored","type":"test@test.io","feedback":"2025-06-14T05:37:00Z","phone":false} |
TASK repair_structured_output
SPEC
FIELD col_l61 TYPE string REQUIRED no
FIELD val_e55 TYPE string REQUIRED no
FIELD dim_o82.attr_x35 TYPE string VALUES small|medium|large|xl REQUIRED no
FIELD dim_o82.dim_d55 TYPE string VALUES pending_review|confirmed|rejected|escalated REQUIRED yes
FIELD dim_o82.col_q63 TYPE number ... | {"col_l61":"inactive","val_e55":"A short description.","dim_o82":{"attr_x35":"small","dim_d55":"escalated","col_q63":181.31,"key_x61":"2024-07-26T17:41:00Z"},"field_k82":{"attr_y11":"Maria","val_o16":false,"key_v60":{"dim_k50":"frameshift","val_w76":301,"param_n99":"admin@example.com"},"val_k65":"https://www.io/api"},"... | tool_call_wrong_param | {
"type": "object",
"properties": {
"col_l61": {
"type": "string"
},
"val_e55": {
"type": "string"
},
"dim_o82": {
"type": "object",
"properties": {
"attr_x35": {
"type": "string",
"enum": [
"small",
"medium",
... | Tool: annotate_mutation
Params: {"val_e55": "A short description.", "dim_o82": {"attr_x35": "small", "dim_d55": "escalated", "col_q63": 181.31, "key_x61": "2024-07-26T17:41:00Z"}, "field_k82": {"attr_y11": "Maria", "val_o16": false, "key_v60": {"dim_k50": "frameshift", "val_w76": 301, "param_n99": "admin@example.com"},... | Agent used wrong parameter name 'col_l61_name' instead of 'col_l61' | {"col_l61":"inactive","val_e55":"A short description.","dim_o82":{"attr_x35":"small","dim_d55":"escalated","col_q63":181.31,"key_x61":"2024-07-26T17:41:00Z"},"field_k82":{"attr_y11":"Maria","val_o16":false,"key_v60":{"dim_k50":"frameshift","val_w76":301,"param_n99":"admin@example.com"},"val_k65":"https://www.io/api"},"... |
TASK repair_structured_output
SPEC
FIELD attr_y60.dim_m83 TYPE string VALUES option_a|option_b|option_c|option_d|option_e|option_f REQUIRED yes
FIELD attr_y60.attr_d02 TYPE string VALUES type_a|type_b|type_c REQUIRED no
FIELD attr_y60.param_s23 TYPE string VALUES option_a|option_b|option_c|option_d|option_e REQUIRED n... | {"attr_y60":{"dim_m83":"option_e","attr_d02":"type_a","dim_v85":178,"val_p12":722.76},"val_f35":true,"dim_h71":false,"param_f22":"mode_a","col_a85":{"attr_y17":391.69,"param_s23":"level_3","col_u53":{"field_n18":350,"param_w20":"option_e","key_i64":74,"dim_u54":259,"key_j78":128}},"param_n70":813.13} | single_quotes | {
"type": "object",
"properties": {
"attr_y60": {
"type": "object",
"properties": {
"dim_m83": {
"type": "string",
"enum": [
"option_a",
"option_b",
"option_c",
"option_d",
"option_e",
"option_f"
... | {'attr_y60':{'dim_m83':'option_e','attr_d02':'type_a','dim_v85':178,'val_p12':722.76},'val_f35':true,'dim_h71':false,'param_f22':'mode_a','col_a85':{'attr_y17':391.69,'param_s23':'level_3','col_u53':{'field_n18':350,'param_w20':'option_e','key_i64':74,'dim_u54':259,'key_j78':128}},'param_n70':813.13} | Expecting property name enclosed in double quotes | {"attr_y60":{"dim_m83":"option_e","attr_d02":"type_a","dim_v85":178,"val_p12":722.76},"val_f35":true,"dim_h71":false,"param_f22":"mode_a","col_a85":{"attr_y17":391.69,"param_s23":"level_3","col_u53":{"field_n18":350,"param_w20":"option_e","key_i64":74,"dim_u54":259,"key_j78":128}},"param_n70":813.13} |
TASK repair_structured_output
SPEC
FIELD attr_d88 TYPE string VALUES free|basic|pro|enterprise REQUIRED no
FIELD key_n66 TYPE string REQUIRED yes
FIELD key_j13 TYPE string VALUES synonymous|missense|nonsense|frameshift REQUIRED yes
FIELD attr_t71 TYPE integer REQUIRED no
FIELD key_b66 TYPE number REQUIRED yes
FIELD co... | {"attr_d88":"free","key_n66":"Luis","key_j13":"synonymous","attr_t71":756,"key_b66":8.59,"col_e67":"foo"} | trailing_comma | {
"type": "object",
"properties": {
"attr_d88": {
"type": "string",
"enum": [
"free",
"basic",
"pro",
"enterprise"
]
},
"key_n66": {
"type": "string"
},
"key_j13": {
"type": "string",
"enum": [
"synonymous",
"mis... | {"attr_d88":"free","key_n66":"Luis","key_j13":"synonymous","attr_t71":756,"key_b66":8.59,"col_e67":"foo",} | Unexpected trailing comma | {"attr_d88":"free","key_n66":"Luis","key_j13":"synonymous","attr_t71":756,"key_b66":8.59,"col_e67":"foo"} |
TASK repair_structured_output
SPEC
FIELD name TYPE string REQUIRED yes
FIELD compound TYPE string VALUES success|error|warning|info REQUIRED yes
FIELD tags TYPE string REQUIRED no
BROKEN_OUTPUT
Here is the JSON you requested:
```json
{"name":"Alice","compound":"success"}
```
Analysis finished. | {"name":"Alice","compound":"success"} | markdown_explanation | {
"type": "object",
"properties": {
"name": {
"type": "string"
},
"compound": {
"type": "string",
"enum": [
"success",
"error",
"warning",
"info"
]
},
"tags": {
"type": "string"
}
},
"required": [
"compound",
"name"
... | Here is the JSON you requested:
```json
{"name":"Alice","compound":"success"}
```
Analysis finished. | Output contains markdown and explanatory text around JSON | {"name":"Alice","compound":"success"} |
TASK repair_structured_output
SPEC
FIELD height TYPE string REQUIRED yes
FIELD version TYPE number REQUIRED yes
FIELD balance.enabled TYPE boolean REQUIRED no
FIELD balance.log_level TYPE string REQUIRED yes
FIELD balance.allele TYPE null REQUIRED yes
FIELD balance.score TYPE string VALUES success|error|warning|info R... | {"height":"cancelled","version":964.14,"balance":{"enabled":false,"log_level":"Alice","allele":null,"score":"warning","barcode":341},"notes":{"half_life":"user@domain.com","image_url":{"image_url":"https://example.org/api","item_id":929.05,"tax":"oceanic","port_code":946},"thumbnail":{"altitude":"basic","values":"under... | truncated_array | {
"type": "object",
"properties": {
"height": {
"type": "string"
},
"version": {
"type": "number"
},
"balance": {
"type": "object",
"properties": {
"enabled": {
"type": "boolean"
},
"log_level": {
"type": "string"
},
... | {"height":"cancelled","version":964.14,"balance":{"enabled":false,"log_level":"Alice","allele":null,"score":"warning","barcode":341},"notes":{"half_life":"user@domain.com","image_url":{"image_url":"https://example.org/api","item_id":929.05,"tax":"oceanic","port_code":946},"thumbnail":{"altitude":"basic","values":"under... | Unexpected end of JSON input — truncated object | {"height":"cancelled","version":964.14,"balance":{"enabled":false,"log_level":"Alice","allele":null,"score":"warning","barcode":341},"notes":{"half_life":"user@domain.com","image_url":{"image_url":"https://example.org/api","item_id":929.05,"tax":"oceanic","port_code":946},"thumbnail":{"altitude":"basic","values":"under... |
TASK repair_structured_output
SPEC
FIELD turbidity TYPE string REQUIRED no
FIELD country TYPE string VALUES email|phone|sms|push REQUIRED yes
FIELD age TYPE string_uri REQUIRED no
BROKEN_OUTPUT
{"age": "https://www.com/v1"} | {"country":"phone","age":"https://www.com/v1"} | missing_required | {
"type": "object",
"properties": {
"turbidity": {
"type": "string"
},
"country": {
"type": "string",
"enum": [
"email",
"phone",
"sms",
"push"
]
},
"age": {
"type": "string",
"format": "uri"
}
},
"required": [
"coun... | {"age": "https://www.com/v1"} | Required field 'country' is missing | {"country":"phone","age":"https://www.com/v1"} |
TASK repair_structured_output
SPEC
FIELD col_c53 TYPE string REQUIRED no
FIELD dim_a12 TYPE string REQUIRED yes
FIELD val_f44 TYPE string VALUES homozygous|heterozygous|hemizygous REQUIRED no
FIELD col_f63 TYPE number REQUIRED no
FIELD attr_l14 TYPE string VALUES success|error|warning|info REQUIRED no
FIELD val_r81 TY... | {"col_c53":"Tokyo","dim_a12":"Silva","val_f44":"hemizygous","col_f63":478.74,"val_r81":31,"param_e10":"Paris"} | null_required | {
"type": "object",
"properties": {
"col_c53": {
"type": "string"
},
"dim_a12": {
"type": "string"
},
"val_f44": {
"type": "string",
"enum": [
"homozygous",
"heterozygous",
"hemizygous"
]
},
"col_f63": {
"type": "number"
},
... | {"col_c53": "Tokyo", "dim_a12": null, "val_f44": "hemizygous", "col_f63": 478.74, "val_r81": 31, "param_e10": "Paris"} | Required field 'dim_a12' is null | {"col_c53":"Tokyo","dim_a12":"Silva","val_f44":"hemizygous","col_f63":478.74,"val_r81":31,"param_e10":"Paris"} |
TASK repair_structured_output
SPEC
FIELD barcode.values.index TYPE string VALUES USD|EUR|GBP|BRL|JPY REQUIRED yes
FIELD barcode.values.port_code TYPE boolean REQUIRED yes
FIELD barcode.values.batch_code TYPE string REQUIRED yes
FIELD barcode.count.invoice_id TYPE null REQUIRED yes
FIELD barcode.count.humidity_pct TYPE... | {"barcode":{"count":{"invoice_id":null,"humidity_pct":"QC-07"},"updated_at":"degraded","collateral":false},"subject":"test@example.com","feedback":true} | boolean_as_string | {
"type": "object",
"properties": {
"barcode": {
"type": "object",
"properties": {
"values": {
"type": "object",
"properties": {
"index": {
"type": "string",
"enum": [
"USD",
"EUR",
"G... | {"barcode": {"count": {"invoice_id": null, "humidity_pct": "QC-07"}, "updated_at": "degraded", "collateral": false}, "subject": "test@example.com", "feedback": "true"} | Field 'feedback' must be boolean, got string | {"barcode":{"count":{"invoice_id":null,"humidity_pct":"QC-07"},"updated_at":"degraded","collateral":false},"subject":"test@example.com","feedback":true} |
TASK repair_structured_output
SPEC
FIELD val_l26 TYPE integer REQUIRED no
FIELD col_s44 TYPE string REQUIRED yes
FIELD prop_t16.attr_s29 TYPE string_email REQUIRED yes
FIELD prop_t16.param_v32 TYPE integer REQUIRED no
FIELD prop_t16.field_h30 TYPE null REQUIRED no
FIELD prop_t16.param_v62 TYPE number REQUIRED no
FIELD... | {"col_s44":"Jane","prop_t16":{"attr_s29":"user@test.io","field_h30":null,"prop_i19":null,"field_u31":259}} | thought_process | {
"type": "object",
"properties": {
"val_l26": {
"type": "integer"
},
"col_s44": {
"type": "string"
},
"prop_t16": {
"type": "object",
"properties": {
"attr_s29": {
"type": "string",
"format": "email"
},
"param_v32": {
... | Breaking down the requirements:
- Must include all required fields
- Types must match the schema
- Values should be realistic
{"col_s44":"Jane","prop_t16":{"attr_s29":"user@test.io","field_h30":null,"prop_i19":null,"field_u31":259}} | Output contains chain-of-thought reasoning before JSON | {"col_s44":"Jane","prop_t16":{"attr_s29":"user@test.io","field_h30":null,"prop_i19":null,"field_u31":259}} |
TASK repair_structured_output
SPEC
FIELD type.height TYPE string_date-time REQUIRED no
FIELD type.subject TYPE null REQUIRED yes
FIELD type.pressure_kpa TYPE string VALUES new|in_transit|delivered|returned REQUIRED no
FIELD type.priority TYPE string REQUIRED yes
FIELD vessel_name TYPE string REQUIRED no
FIELD medicati... | {"type":{"height":"2021-04-14T01:13:00Z","subject":null,"pressure_kpa":"new","priority":"Luis"},"vessel_name":"quux","medication":135.81} | truncated_object | {
"type": "object",
"properties": {
"type": {
"type": "object",
"properties": {
"height": {
"type": "string",
"format": "date-time"
},
"subject": {
"type": "null"
},
"pressure_kpa": {
"type": "string",
"enum": ... | {"type":{"height":"2021-04-14T01:13:00Z","subject":null,"pressure_kpa":"new","priority":"Luis"},"vessel_name":"quux","medication":135.81 | Unexpected end of JSON input — truncated object | {"type":{"height":"2021-04-14T01:13:00Z","subject":null,"pressure_kpa":"new","priority":"Luis"},"vessel_name":"quux","medication":135.81} |
TASK repair_structured_output
SPEC
FIELD col_d49 TYPE string REQUIRED no
FIELD dim_g15 TYPE string REQUIRED yes
FIELD prop_t11 TYPE string REQUIRED no
FIELD val_z98 TYPE string VALUES coastal|oceanic|inland|arctic REQUIRED yes
FIELD prop_b74.field_v43 TYPE string VALUES mode_a|mode_b|mode_c REQUIRED no
FIELD prop_b74.... | {"col_d49":"test@example.com","dim_g15":"hello","val_z98":"arctic","prop_b74":{"field_v43":"mode_b","attr_f30":"type_b","attr_g33":"mode_c","attr_j70":"Hapag-Lloyd-Express","field_d35":"REV","val_v62":416},"attr_v07":"cat_e","prop_z65":true} | agent_chain | {
"type": "object",
"properties": {
"col_d49": {
"type": "string"
},
"dim_g15": {
"type": "string"
},
"prop_t11": {
"type": "string"
},
"val_z98": {
"type": "string",
"enum": [
"coastal",
"oceanic",
"inland",
"arctic"
]
... | I need to look up the information first.
Action: calculate_price
Result: {"col_d49": "test@example.com", "dim_g15": "hello", "val_z98": "arctic", "prop_b74": {"field_v43": "mode_b", "attr_f30": "type_b", "attr_g33": "mode_c", "attr_j70": "Hapag-Lloyd-Express", "field_d35": "REV", "val_v62": 416}, "attr_v07": "cat_e"}
... | Agent multi-step chain with truncated tool output | {"col_d49":"test@example.com","dim_g15":"hello","val_z98":"arctic","prop_b74":{"field_v43":"mode_b","attr_f30":"type_b","attr_g33":"mode_c","attr_j70":"Hapag-Lloyd-Express","field_d35":"REV","val_v62":416},"attr_v07":"cat_e","prop_z65":true} |
TASK repair_structured_output
SPEC
FIELD catalyst TYPE string REQUIRED no
FIELD throttle_pos TYPE string VALUES red|blue|green|black|white REQUIRED no
FIELD span_id TYPE number REQUIRED no
FIELD bed_number TYPE string VALUES red|blue|green|black|white REQUIRED yes
FIELD created_at TYPE string REQUIRED no
FIELD zip_cod... | {"catalyst":"REV","throttle_pos":"blue","span_id":89.47,"bed_number":"blue","created_at":"Charlie","zip_code":"2023-12-25","phenotype":false} | extra_field | {
"type": "object",
"properties": {
"catalyst": {
"type": "string"
},
"throttle_pos": {
"type": "string",
"enum": [
"red",
"blue",
"green",
"black",
"white"
]
},
"span_id": {
"type": "number"
},
"bed_number": {
"... | {"catalyst": "REV", "throttle_pos": "blue", "span_id": 89.47, "bed_number": "blue", "created_at": "Charlie", "zip_code": "2023-12-25", "phenotype": false, "extra_data_4528": 42} | Unknown field 'extra_data_4528' not defined in schema | {"catalyst":"REV","throttle_pos":"blue","span_id":89.47,"bed_number":"blue","created_at":"Charlie","zip_code":"2023-12-25","phenotype":false} |
TASK repair_structured_output
SPEC
FIELD field_z01 TYPE string VALUES open|in_progress|resolved|closed REQUIRED no
FIELD key_f91.field_x25 TYPE string VALUES draft|published|archived REQUIRED no
FIELD key_f91.key_m18 TYPE boolean REQUIRED yes
FIELD key_f91.val_y44 TYPE string REQUIRED no
FIELD key_f91.attr_c82 TYPE in... | {"field_z01":"resolved","key_f91":{"field_x25":"published","key_m18":false,"val_y44":"Berlin","attr_c82":175,"dim_j78":"chr1","param_e24":748,"field_k67":732,"field_q67":41},"param_w37":55} | null_required | {
"type": "object",
"properties": {
"field_z01": {
"type": "string",
"enum": [
"open",
"in_progress",
"resolved",
"closed"
]
},
"key_f91": {
"type": "object",
"properties": {
"field_x25": {
"type": "string",
"enum"... | {"field_z01": "resolved", "key_f91": null, "param_w37": 55} | Required field 'key_f91' is null | {"field_z01":"resolved","key_f91":{"field_x25":"published","key_m18":false,"val_y44":"Berlin","attr_c82":175,"dim_j78":"chr1","param_e24":748,"field_k67":732,"field_q67":41},"param_w37":55} |
TASK repair_structured_output
SPEC
FIELD dim_t50 TYPE integer REQUIRED yes
FIELD attr_e10 TYPE string REQUIRED no
FIELD val_z01 TYPE string_email REQUIRED yes
FIELD col_i81 TYPE string_uri REQUIRED no
FIELD field_i42[].val_n42 TYPE string VALUES homozygous|heterozygous|hemizygous REQUIRED no
FIELD field_i42[].field_h6... | {"dim_t50":192,"attr_e10":"world","val_z01":"test@domain.org","col_i81":"https://api.org/v1"} | tool_call_text_mix | {
"type": "object",
"properties": {
"dim_t50": {
"type": "integer"
},
"attr_e10": {
"type": "string"
},
"val_z01": {
"type": "string",
"format": "email"
},
"col_i81": {
"type": "string",
"format": "uri"
},
"field_i42": {
"type": "array",
... | I need to look up the information first.
<tool_call name="get_weather">
{"dim_t50":192,"attr_e10":"world","val_z01":"test@domain.org","col_i81":"https://api.org/v1"}
</tool_call.
Operation completed. | Agent response mixes reasoning text with tool call | {"dim_t50":192,"attr_e10":"world","val_z01":"test@domain.org","col_i81":"https://api.org/v1"} |
TASK repair_structured_output
SPEC
FIELD field_y31 TYPE string REQUIRED yes
FIELD key_h88 TYPE string REQUIRED no
FIELD attr_i52 TYPE integer REQUIRED no
FIELD dim_t05 TYPE integer REQUIRED no
FIELD field_j04 TYPE string_date-time REQUIRED yes
BROKEN_OUTPUT
{"field_y31":"Luis","attr_i52":478,"field_j04":"2026-02-18T0... | {"field_y31":"Luis","attr_i52":478,"field_j04":"2026-02-18T01:38:00Z"} | truncated_object | {
"type": "object",
"properties": {
"field_y31": {
"type": "string"
},
"key_h88": {
"type": "string"
},
"attr_i52": {
"type": "integer"
},
"dim_t05": {
"type": "integer"
},
"field_j04": {
"type": "string",
"format": "date-time"
}
},
"re... | {"field_y31":"Luis","attr_i52":478,"field_j04":"2026-02-18T01:38:00Z" | Unexpected end of JSON input — truncated object | {"field_y31":"Luis","attr_i52":478,"field_j04":"2026-02-18T01:38:00Z"} |
TASK repair_structured_output
SPEC
FIELD dim_g26 TYPE string VALUES mode_a|mode_b|mode_c|mode_d|mode_e|mode_f REQUIRED yes
FIELD key_h06 TYPE string VALUES pending_review|confirmed|rejected|escalated REQUIRED yes
FIELD field_x11 TYPE string VALUES level_1|level_2|level_3 REQUIRED yes
FIELD dim_y56 TYPE string VALUES a... | {"dim_g26":"mode_a","key_h06":"confirmed","field_x11":"level_3","dim_y56":"active"} | truncated_array | {
"type": "object",
"properties": {
"dim_g26": {
"type": "string",
"enum": [
"mode_a",
"mode_b",
"mode_c",
"mode_d",
"mode_e",
"mode_f"
]
},
"key_h06": {
"type": "string",
"enum": [
"pending_review",
"confirmed... | {"dim_g26":"mode_a","key_h06":"confirmed","field_x11":"level_3","dim_y56":"active" | Unexpected end of JSON input — truncated object | {"dim_g26":"mode_a","key_h06":"confirmed","field_x11":"level_3","dim_y56":"active"} |
TASK repair_structured_output
SPEC
FIELD barcode TYPE string VALUES cat_a|cat_b|cat_c|cat_d REQUIRED no
FIELD index TYPE string VALUES admin|editor|viewer REQUIRED no
FIELD tax TYPE string VALUES low|medium|high|critical REQUIRED no
FIELD interest_rate TYPE integer REQUIRED yes
FIELD size TYPE string REQUIRED no
FIELD... | {"barcode":"cat_d","index":"admin","tax":"critical","interest_rate":200,"size":"Hapag-Lloyd-Express","temp_celsius":"hello","name":true,"due_date":"type_d"} | missing_bracket | {
"type": "object",
"properties": {
"barcode": {
"type": "string",
"enum": [
"cat_a",
"cat_b",
"cat_c",
"cat_d"
]
},
"index": {
"type": "string",
"enum": [
"admin",
"editor",
"viewer"
]
},
"tax": {
... | {"barcode":"cat_d","index":"admin","tax":"critical","interest_rate":200,"size":"Hapag-Lloyd-Express","temp_celsius":"hello","name":true,"due_date":"type_d"} | Missing closing bracket | {"barcode":"cat_d","index":"admin","tax":"critical","interest_rate":200,"size":"Hapag-Lloyd-Express","temp_celsius":"hello","name":true,"due_date":"type_d"} |
TASK repair_structured_output
SPEC
FIELD field_w42 TYPE string_date-time REQUIRED yes
FIELD col_x05.prop_l66 TYPE integer REQUIRED yes
FIELD col_x05.param_y06 TYPE string REQUIRED yes
FIELD col_x05.attr_v71 TYPE string REQUIRED no
FIELD field_y53 TYPE number REQUIRED yes
FIELD dim_m66 TYPE boolean REQUIRED yes
FIELD f... | {"field_w42":"2021-05-18T00:50:00Z","col_x05":{"prop_l66":459,"param_y06":"GRCh38","attr_v71":"New York"},"field_y53":237.5,"dim_m66":true,"field_q11":"level_2"} | truncated_array | {
"type": "object",
"properties": {
"field_w42": {
"type": "string",
"format": "date-time"
},
"col_x05": {
"type": "object",
"properties": {
"prop_l66": {
"type": "integer"
},
"param_y06": {
"type": "string"
},
"attr_v71... | {"field_w42":"2021-05-18T00:50:00Z","col_x05":{"prop_l66":459,"param_y06":"GRCh38","attr_v71":"New York"},"field_y53":237.5,"dim_m66":true,"field_q11":"level_2" | Unexpected end of JSON input — truncated object | {"field_w42":"2021-05-18T00:50:00Z","col_x05":{"prop_l66":459,"param_y06":"GRCh38","attr_v71":"New York"},"field_y53":237.5,"dim_m66":true,"field_q11":"level_2"} |
TASK repair_structured_output
SPEC
FIELD weight TYPE number REQUIRED yes
FIELD chapter.bed_number TYPE string_date-time REQUIRED yes
FIELD chapter.order_id TYPE boolean REQUIRED yes
FIELD chapter.notes TYPE string_uri REQUIRED yes
FIELD chapter.shipping TYPE string VALUES berthed|anchored|underway|moored REQUIRED no
F... | {"weight":147.02,"chapter":{"bed_number":"2022-01-25T16:56:00Z","order_id":false,"notes":"https://api.com/v1","shipping":"anchored","insurance_id":false},"crew_id":false} | missing_required | {
"type": "object",
"properties": {
"weight": {
"type": "number"
},
"chapter": {
"type": "object",
"properties": {
"bed_number": {
"type": "string",
"format": "date-time"
},
"order_id": {
"type": "boolean"
},
"notes"... | {"weight": 147.02, "chapter": {"bed_number": "2022-01-25T16:56:00Z", "order_id": false, "notes": "https://api.com/v1", "shipping": "anchored", "insurance_id": false}} | Required field 'crew_id' is missing | {"weight":147.02,"chapter":{"bed_number":"2022-01-25T16:56:00Z","order_id":false,"notes":"https://api.com/v1","shipping":"anchored","insurance_id":false},"crew_id":false} |
TASK repair_structured_output
SPEC
FIELD attr_m17 TYPE string VALUES new|in_transit|delivered|returned REQUIRED no
FIELD col_a72 TYPE boolean REQUIRED no
FIELD prop_j83 TYPE integer REQUIRED yes
FIELD prop_k95[].col_s58 TYPE string REQUIRED no
FIELD prop_k95[].attr_n41 TYPE number REQUIRED no
FIELD prop_k95[].col_s65 ... | {"attr_m17":"in_transit","col_a72":false,"prop_j83":871,"prop_k95":[{"col_s65":"admin@domain.org"}]} | single_quotes | {
"type": "object",
"properties": {
"attr_m17": {
"type": "string",
"enum": [
"new",
"in_transit",
"delivered",
"returned"
]
},
"col_a72": {
"type": "boolean"
},
"prop_j83": {
"type": "integer"
},
"prop_k95": {
"type": "... | {'attr_m17':'in_transit','col_a72':false,'prop_j83':871,'prop_k95':[{'col_s65':'admin@domain.org'}]} | Expecting property name enclosed in double quotes | {"attr_m17":"in_transit","col_a72":false,"prop_j83":871,"prop_k95":[{"col_s65":"admin@domain.org"}]} |
TASK repair_structured_output
SPEC
FIELD col_m10 TYPE string VALUES pending_review|confirmed|rejected|escalated REQUIRED yes
FIELD param_y68 TYPE string REQUIRED no
FIELD prop_c13 TYPE boolean REQUIRED yes
FIELD key_a01.col_u20 TYPE string_date-time REQUIRED no
FIELD key_a01.key_h44 TYPE string REQUIRED no
FIELD key_a... | {"col_m10":"confirmed","param_y68":"A short description.","prop_c13":false,"col_q09":{"prop_g71":"Johnson","val_j49":927,"field_x29":790.95}} | thought_process | {
"type": "object",
"properties": {
"col_m10": {
"type": "string",
"enum": [
"pending_review",
"confirmed",
"rejected",
"escalated"
]
},
"param_y68": {
"type": "string"
},
"prop_c13": {
"type": "boolean"
},
"key_a01": {
... | Breaking down the requirements:
- Must include all required fields
- Types must match the schema
- Values should be realistic
{"col_m10":"confirmed","param_y68":"A short description.","prop_c13":false,"col_q09":{"prop_g71":"Johnson","val_j49":927,"field_x29":790.95}} | Output contains chain-of-thought reasoning before JSON | {"col_m10":"confirmed","param_y68":"A short description.","prop_c13":false,"col_q09":{"prop_g71":"Johnson","val_j49":927,"field_x29":790.95}} |
TASK repair_structured_output
SPEC
FIELD deploy_target TYPE boolean REQUIRED yes
FIELD count TYPE null REQUIRED yes
FIELD lane TYPE string VALUES cat_a|cat_b|cat_c|cat_d|cat_e|cat_f REQUIRED yes
FIELD transaction_id TYPE string VALUES reliable|unstable|intermittent REQUIRED yes
BROKEN_OUTPUT
{"deploy_target": "\"yes\... | {"deploy_target":true,"count":null,"lane":"cat_e","transaction_id":"intermittent"} | wrong_type | {
"type": "object",
"properties": {
"deploy_target": {
"type": "boolean"
},
"count": {
"type": "null"
},
"lane": {
"type": "string",
"enum": [
"cat_a",
"cat_b",
"cat_c",
"cat_d",
"cat_e",
"cat_f"
]
},
"transact... | {"deploy_target": "\"yes\"", "count": null, "lane": "cat_e", "transaction_id": "intermittent"} | Field 'deploy_target' must be boolean, got string | {"deploy_target":true,"count":null,"lane":"cat_e","transaction_id":"intermittent"} |
TASK repair_structured_output
SPEC
FIELD dim_m82 TYPE string_date-time REQUIRED no
FIELD col_q72 TYPE integer REQUIRED no
FIELD attr_k89 TYPE boolean REQUIRED yes
FIELD prop_p08 TYPE string_uri REQUIRED no
FIELD key_v80[] TYPE string_email REQUIRED yes
FIELD col_u23[] TYPE boolean REQUIRED yes
BROKEN_OUTPUT
{"dim_m82... | {"dim_m82":"2024-07-15T18:25:00Z","col_q72":362,"attr_k89":false,"prop_p08":"https://api.io/v1","key_v80":["info@example.com","admin@test.io","ops@example.com"],"col_u23":[false,true,false]} | trailing_comma | {
"type": "object",
"properties": {
"dim_m82": {
"type": "string",
"format": "date-time"
},
"col_q72": {
"type": "integer"
},
"attr_k89": {
"type": "boolean"
},
"prop_p08": {
"type": "string",
"format": "uri"
},
"key_v80": {
"type": "arra... | {"dim_m82":"2024-07-15T18:25:00Z","col_q72":362,"attr_k89":false,"prop_p08":"https://api.io/v1","key_v80":["info@example.com","admin@test.io","ops@example.com",],"col_u23":[false,true,false]} | Unexpected trailing comma | {"dim_m82":"2024-07-15T18:25:00Z","col_q72":362,"attr_k89":false,"prop_p08":"https://api.io/v1","key_v80":["info@example.com","admin@test.io","ops@example.com"],"col_u23":[false,true,false]} |
TASK repair_structured_output
SPEC
FIELD yield_pct TYPE string VALUES level_1|level_2|level_3|level_4|level_5|level_6 REQUIRED no
FIELD tags TYPE string REQUIRED no
FIELD berth_slot.crew_id TYPE string VALUES coastal|oceanic|inland|arctic REQUIRED no
FIELD berth_slot.hazmat_code TYPE string VALUES type_a|type_b|type_c... | {"yield_pct":"level_2","tags":"baz","altitude":"Tokyo","visible":269.2} | unquoted_keys | {
"type": "object",
"properties": {
"yield_pct": {
"type": "string",
"enum": [
"level_1",
"level_2",
"level_3",
"level_4",
"level_5",
"level_6"
]
},
"tags": {
"type": "string"
},
"berth_slot": {
"type": "object",
... | {yield_pct:"level_2",tags:"baz",altitude:"Tokyo",visible:269.2} | Expecting property name enclosed in double quotes | {"yield_pct":"level_2","tags":"baz","altitude":"Tokyo","visible":269.2} |
TASK repair_structured_output
SPEC
FIELD param_k47 TYPE string REQUIRED no
FIELD param_k53 TYPE null REQUIRED no
FIELD param_g25 TYPE string VALUES type_a|type_b REQUIRED yes
FIELD prop_n78.field_y52.dim_a45 TYPE string VALUES new|in_transit|delivered|returned REQUIRED no
FIELD prop_n78.field_y52.attr_h88 TYPE number ... | {"param_k53":null,"param_g25":"type_a","prop_n78":{"field_y52":{"dim_a45":"new","attr_h88":967.63,"key_r66":341},"dim_m98":25.49,"param_w98":955}} | agent_chain | {
"type": "object",
"properties": {
"param_k47": {
"type": "string"
},
"param_k53": {
"type": "null"
},
"param_g25": {
"type": "string",
"enum": [
"type_a",
"type_b"
]
},
"prop_n78": {
"type": "object",
"properties": {
"fi... | I need to look up the information first.
Action: search
Result: {"param_k53": null, "prop_n78": {"field_y52": {"dim_a45": "new", "attr_h88": 967.63, "key_r66": 341}, "dim_m98": 25.49, "param_w98": 955}}
Processing the request now.
Action: send_email
Result: | Agent multi-step chain with truncated tool output | {"param_k53":null,"param_g25":"type_a","prop_n78":{"field_y52":{"dim_a45":"new","attr_h88":967.63,"key_r66":341},"dim_m98":25.49,"param_w98":955}} |
TASK repair_structured_output
SPEC
FIELD param_h21 TYPE string VALUES open|in_progress|resolved|closed REQUIRED yes
FIELD key_k13 TYPE string VALUES cat_a|cat_b|cat_c|cat_d REQUIRED yes
FIELD field_k57 TYPE string VALUES mode_a|mode_b|mode_c|mode_d|mode_e REQUIRED no
FIELD field_q36 TYPE boolean REQUIRED yes
BROKEN_O... | {"param_h21":"in_progress","key_k13":"cat_d","field_k57":"mode_d","field_q36":false} | partial_structure | {
"type": "object",
"properties": {
"param_h21": {
"type": "string",
"enum": [
"open",
"in_progress",
"resolved",
"closed"
]
},
"key_k13": {
"type": "string",
"enum": [
"cat_a",
"cat_b",
"cat_c",
"cat_d"
... | Result: field_q36=False, {"param_h21":"in_progress","key_k13":"cat_d","field_k57":"mode_d","field_q36":false} | Output mixes natural language with JSON | {"param_h21":"in_progress","key_k13":"cat_d","field_k57":"mode_d","field_q36":false} |
TASK repair_structured_output
SPEC
FIELD visible TYPE string VALUES option_a|option_b|option_c|option_d|option_e|option_f REQUIRED no
FIELD crew_id.url TYPE string REQUIRED no
FIELD crew_id.trace_id TYPE string VALUES type_a|type_b|type_c|type_d|type_e REQUIRED no
FIELD crew_id.title TYPE string REQUIRED yes
FIELD cre... | {"visible":"option_b","username":661,"product_id":"option_a","coverage":"homozygous","company":null} | tool_call_partial_args | {
"type": "object",
"properties": {
"visible": {
"type": "string",
"enum": [
"option_a",
"option_b",
"option_c",
"option_d",
"option_e",
"option_f"
]
},
"crew_id": {
"type": "object",
"properties": {
"url": {
... | I need to look up the information first.
Action: get_account
Arguments: {"visible": "option_b", "product_id": "option_a", "coverage": "homozygous", "company": null} | Agent tool call missing required parameter 'username' | {"visible":"option_b","username":661,"product_id":"option_a","coverage":"homozygous","company":null} |
TASK repair_structured_output
SPEC
FIELD prop_x62 TYPE string_date-time REQUIRED no
FIELD param_x65 TYPE string REQUIRED no
FIELD param_u43 TYPE string VALUES cat_a|cat_b REQUIRED no
FIELD attr_h25 TYPE integer REQUIRED yes
FIELD key_w39[].param_f79 TYPE string REQUIRED yes
FIELD key_w39[].dim_a29 TYPE string REQUIRED... | {"prop_x62":"2021-12-24T23:45:00Z","param_u43":"cat_b","attr_h25":190,"key_w39":[{"param_f79":"2023-12-25","dim_a29":"qux","attr_o12":["mode_a","mode_a","mode_b","mode_a"]},{"param_f79":"sample","dim_a29":"New York","attr_o12":["mode_d","mode_a"]}],"prop_k84":["mode_a","mode_d","mode_a"]} | invalid_enum | {
"type": "object",
"properties": {
"prop_x62": {
"type": "string",
"format": "date-time"
},
"param_x65": {
"type": "string"
},
"param_u43": {
"type": "string",
"enum": [
"cat_a",
"cat_b"
]
},
"attr_h25": {
"type": "integer"
}... | {"prop_x62": "2021-12-24T23:45:00Z", "param_u43": "invalid_option_893", "attr_h25": 190, "key_w39": [{"param_f79": "2023-12-25", "dim_a29": "qux", "attr_o12": ["mode_a", "mode_a", "mode_b", "mode_a"]}, {"param_f79": "sample", "dim_a29": "New York", "attr_o12": ["mode_d", "mode_a"]}], "prop_k84": ["mode_a", "mode_d", "m... | Field 'param_u43' has invalid enum value 'invalid_option_893', expected one of ['cat_a', 'cat_b'] | {"prop_x62":"2021-12-24T23:45:00Z","param_u43":"cat_b","attr_h25":190,"key_w39":[{"param_f79":"2023-12-25","dim_a29":"qux","attr_o12":["mode_a","mode_a","mode_b","mode_a"]},{"param_f79":"sample","dim_a29":"New York","attr_o12":["mode_d","mode_a"]}],"prop_k84":["mode_a","mode_d","mode_a"]} |
TASK repair_structured_output
SPEC
FIELD type TYPE boolean REQUIRED no
FIELD image_url TYPE string_uri REQUIRED no
FIELD log_level.subtotal TYPE string VALUES active|inactive|pending REQUIRED yes
FIELD log_level.duration_ms TYPE string VALUES low|medium|high|critical REQUIRED yes
FIELD log_level.gene_id.throttle_pos T... | {"image_url":"https://www.io/v1","log_level":{"subtotal":"inactive","duration_ms":"critical","gene_id":{"throttle_pos":"test@example.com","country":"https://api.example.com/v1","build_status":"2025-11-26T09:49:00Z","image_url":"admin@domain.org"},"features":"Santos","id":"demo","credit_score":"quux"}} | thought_process | {
"type": "object",
"properties": {
"type": {
"type": "boolean"
},
"image_url": {
"type": "string",
"format": "uri"
},
"log_level": {
"type": "object",
"properties": {
"subtotal": {
"type": "string",
"enum": [
"active",
... | Analyzing the sensor data to generate the output.
I'll apply the required format first.
{"image_url":"https://www.io/v1","log_level":{"subtotal":"inactive","duration_ms":"critical","gene_id":{"throttle_pos":"test@example.com","country":"https://api.example.com/v1","build_status":"2025-11-26T09:49:00Z","image_url":"adm... | Output contains chain-of-thought reasoning before JSON | {"image_url":"https://www.io/v1","log_level":{"subtotal":"inactive","duration_ms":"critical","gene_id":{"throttle_pos":"test@example.com","country":"https://api.example.com/v1","build_status":"2025-11-26T09:49:00Z","image_url":"admin@domain.org"},"features":"Santos","id":"demo","credit_score":"quux"}} |
TASK repair_structured_output
SPEC
FIELD ward.features TYPE string VALUES cat_a|cat_b|cat_c|cat_d|cat_e|cat_f REQUIRED no
FIELD ward.hazmat_code TYPE string VALUES option_a|option_b REQUIRED no
FIELD ward.consignee.bill_of_lading TYPE integer REQUIRED no
FIELD ward.consignee.diagnosis_code TYPE string REQUIRED no
FIEL... | {"ward":{"consignee":{"bill_of_lading":61,"diagnosis_code":"2024-06-30","vessel_name":"editor","hazmat_code":false,"altitude":false},"longitude":"chr1","order_id":"option_a","duration_ms":"user@domain.com","name":false},"chapter":381,"vessel_name":"demo"} | null_required | {
"type": "object",
"properties": {
"ward": {
"type": "object",
"properties": {
"features": {
"type": "string",
"enum": [
"cat_a",
"cat_b",
"cat_c",
"cat_d",
"cat_e",
"cat_f"
]
},
... | {"ward": {"consignee": {"bill_of_lading": 61, "diagnosis_code": "2024-06-30", "vessel_name": "editor", "hazmat_code": false, "altitude": false}, "longitude": "chr1", "order_id": "option_a", "duration_ms": "user@domain.com", "name": false}, "chapter": 381, "vessel_name": null} | Required field 'vessel_name' is null | {"ward":{"consignee":{"bill_of_lading":61,"diagnosis_code":"2024-06-30","vessel_name":"editor","hazmat_code":false,"altitude":false},"longitude":"chr1","order_id":"option_a","duration_ms":"user@domain.com","name":false},"chapter":381,"vessel_name":"demo"} |
TASK repair_structured_output
SPEC
FIELD updated_at.size TYPE string REQUIRED yes
FIELD updated_at.allele TYPE string VALUES coastal|oceanic|inland|arctic REQUIRED yes
FIELD updated_at.date[] TYPE number REQUIRED no
FIELD priority TYPE string REQUIRED yes
FIELD half_life TYPE boolean REQUIRED yes
BROKEN_OUTPUT
{"upda... | {"updated_at":{"size":"Luis","allele":"oceanic","date":[974.19]},"priority":"MV-Evergreen-01","half_life":true} | extra_field | {
"type": "object",
"properties": {
"updated_at": {
"type": "object",
"properties": {
"size": {
"type": "string"
},
"allele": {
"type": "string",
"enum": [
"coastal",
"oceanic",
"inland",
"arctic"
... | {"updated_at": {"size": "Luis", "allele": "oceanic", "date": [974.19]}, "priority": "MV-Evergreen-01", "half_life": true, "extra_field_3203": true} | Unknown field 'extra_field_3203' not defined in schema | {"updated_at":{"size":"Luis","allele":"oceanic","date":[974.19]},"priority":"MV-Evergreen-01","half_life":true} |
TASK repair_structured_output
SPEC
FIELD dim_w35.key_r85 TYPE boolean REQUIRED no
FIELD dim_w35.dim_n69 TYPE string REQUIRED no
FIELD dim_w35.val_p03.val_n66 TYPE string REQUIRED yes
FIELD dim_w35.val_p03.attr_c59 TYPE string REQUIRED no
FIELD dim_w35.val_p03.param_q32 TYPE number REQUIRED yes
FIELD dim_w35.val_p03.di... | {"dim_w35":{"key_r85":false,"dim_n69":"Maria","val_p03":{"val_n66":"2024-06-30","attr_c59":"John","param_q32":67.09,"val_m66":"https://www.com/api"}},"param_b45":"option_c","val_p43":{"dim_m98":"hello","dim_u31":528,"prop_o97":[819.82,540.59,171.61,89.11]}} | unquoted_keys | {
"type": "object",
"properties": {
"dim_w35": {
"type": "object",
"properties": {
"key_r85": {
"type": "boolean"
},
"dim_n69": {
"type": "string"
},
"val_p03": {
"type": "object",
"properties": {
"val_n66": ... | {dim_w35:{key_r85:false,dim_n69:"Maria",val_p03:{val_n66:"2024-06-30",attr_c59:"John",param_q32:67.09,val_m66:"https://www.com/api"}},param_b45:"option_c",val_p43:{dim_m98:"hello",dim_u31:528,prop_o97:[819.82,540.59,171.61,89.11]}} | Expecting property name enclosed in double quotes | {"dim_w35":{"key_r85":false,"dim_n69":"Maria","val_p03":{"val_n66":"2024-06-30","attr_c59":"John","param_q32":67.09,"val_m66":"https://www.com/api"}},"param_b45":"option_c","val_p43":{"dim_m98":"hello","dim_u31":528,"prop_o97":[819.82,540.59,171.61,89.11]}} |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.