curl --location --request POST 'https://your-api-server.com' \
--header 'Content-Type: application/json' \
--data-raw '{
"eventId": "d6703cc8-9e79-415d-ac03-a4dc7f6ab43c",
"eventType": "pet.available",
"timestamp": "2019-08-24T14:15:22Z",
"data": {
"pet": {
"species": "DOG",
"name": "Whiskers",
"breed": "Domestic Shorthair",
"ageMonths": 18,
"size": "SMALL",
"color": "Orange Tabby",
"gender": "MALE",
"goodWithKids": true,
"goodWithPets": true,
"adoptionFee": 75,
"description": "string",
"photos": [
"http://example.com"
],
"medicalInfo": {
"spayedNeutered": true,
"vaccinated": true,
"microchipped": true,
"specialNeeds": true,
"notes": "string"
}
}
}
}'