curl --request PATCH \
--url https://api.example.com/books/{isbn} \
--header 'Content-Type: application/json' \
--data '
{
"title": "<string>",
"author": {
"author.id": 123,
"author.name": "<string>",
"author.age": 123
},
"stock": 123,
"coverImage": "<string>"
}
'