{
"$schema": "https://json-structure.org/meta/core/v0/#",
"$id": "https://raw.githubusercontent.com/api-evangelist/amazon-health-dashboard/refs/heads/main/json-structure/health-event-details-structure.json",
"name": "EventDetails",
"description": "Detailed information about an event. A combination of an Event object, an EventDescription object, and additional metadata about the event. Returned by the DescribeEventDetails operation.",
"type": "object",
"properties": {
"event": {
"allOf": [
{
"$ref": "#/components/schemas/Event"
},
{
"description": "Summary information about the event."
}
]
},
"eventDescription": {
"allOf": [
{
"$ref": "#/components/schemas/EventDescription"
},
{
"description": "The most recent description of the event."
}
]
},
"eventMetadata": {
"allOf": [
{
"$ref": "#/components/schemas/eventMetadata"
},
{
"description": "Additional metadata about the event."
}
]
}
}
}