Price field type change (breaking)
String → number often breaks strict clients. Use Text Diff + JSON structure hints on /diff.
Before
{
"id": "sku-1",
"price": "19.99",
"currency": "USD"
}After
{
"id": "sku-1",
"price": 19.99,
"currency": "USD"
}