case_id
stringclasses
3 values
category
stringclasses
3 values
severity
stringclasses
2 values
synthetic
bool
1 class
baseline_schema
dict
candidate_schema
dict
expected_result
stringclasses
2 values
rationale
stringclasses
3 values
synthetic-required-field-removed
missing_required_field
high
true
{ "type": "object", "required": [ "account_id", "email", "phone_number" ], "properties": { "account_id": { "type": "string" }, "email": { "type": "string" }, "phone_number": { "type": "string" } } }
{ "type": "object", "required": [ "account_id", "email" ], "properties": { "account_id": { "type": "string" }, "email": { "type": "string" } } }
block
A required field present in the baseline is absent from the candidate contract.
synthetic-field-type-changed
field_type_changed
high
true
{ "type": "object", "required": [ "order_id", "total_cents" ], "properties": { "order_id": { "type": "string" }, "total_cents": { "type": "integer" } } }
{ "type": "object", "required": [ "order_id", "total_cents" ], "properties": { "order_id": { "type": "string" }, "total_cents": { "type": "string" } } }
block
The field name is stable but its declared type changes from integer to string.
synthetic-nested-field-moved
nested_field_moved
medium
true
{ "type": "object", "required": [ "sku", "warehouse" ], "properties": { "sku": { "type": "string" }, "warehouse": { "type": "object", "required": [ "region" ], "properties": { "region": { "type": "string" } } } } }
{ "type": "object", "required": [ "sku", "fulfilment" ], "properties": { "sku": { "type": "string" }, "fulfilment": { "type": "object", "required": [ "warehouse_region" ], "properties": { "warehouse_region": { "type": "string" }...
review
The same conceptual value appears to have moved to a different object path; human mapping review is required.