http
PATCH /api/orders/123 HTTP/1.1
Host: api.example.com
Content-Type: application/json
[{"op": "replace", "path": "/status", "value": "shipped"}]
HTTP/1.1 405 Method Not Allowed
Allow: GET, PUT, DELETE
Content-Type: application/json
{
"error": "method_not_allowed",
"message": "PATCH not supported, use PUT for full updates",
"allowed_methods": ["GET", "PUT", "DELETE"]
}