http
PUT /api/documents/doc-1 HTTP/1.1
Host: api.example.com
If-Match: "old-version-abc"
Content-Type: application/json
{"content": "Updated"}
HTTP/1.1 412 Precondition Failed
ETag: "current-version-xyz"
Content-Type: application/json
{
"error": "precondition_failed",
"message": "Resource was modified, ETag mismatch",
"expected_etag": "old-version-abc",
"current_etag": "current-version-xyz"
}