Which JSON snippet correctly represents a composite operation request to update a user's email and delete a post?
A{ "batch": [ { "method": "POST", "path": "/users/45", "body": { "email": "new@example.com" } }, { "method": "DELETE", "path": "/posts/99" } ] }
B{ "actions": [ { "type": "UPDATE", "endpoint": "/users/45", "data": { "email": "new@example.com" } }, { "type": "REMOVE", "endpoint": "/posts/99" } ] }
C{ "requests": [ { "verb": "PUT", "url": "/users/45", "payload": { "email": "new@example.com" } }, { "verb": "DELETE", "url": "/posts/99" } ] }
D{ "operations": [ { "method": "PATCH", "path": "/users/45", "body": { "email": "new@example.com" } }, { "method": "DELETE", "path": "/posts/99" } ] }