curl --location --request POST 'https://your-api-server.com' \
--header 'Content-Type: application/json' \
--data-raw '{
"eventId": "evt_8d3f9a2b-1c4e-5f6g-7h8i-9j0k1l2m3n4o",
"eventType": "pet.adopted",
"timestamp": "2024-12-15T14:30:00Z",
"data": {
"pet": {
"id": "pet_c4t_5x7k9m",
"species": "CAT",
"name": "Whiskers",
"breed": "Domestic Shorthair",
"ageMonths": 18,
"status": "adopted"
},
"adoption": {
"id": "adp_7h3k9m2q",
"completedAt": "2024-12-15T14:30:00Z"
},
"adopter": {
"id": "usr_9k2m4n6p",
"name": "Jane Smith",
"email": "jane.smith@example.com"
}
}
}'