{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-health-dashboard/refs/heads/main/json-schema/health-event-schema.json", "title": "Event", "description": "

Summary information about an Health event.

Health events can be public or account-specific:

You can determine if an event is public or account-specific by using the eventScopeCode parameter. For more information, see eventScopeCode.

", "type": "object", "properties": { "arn": { "allOf": [ { "$ref": "#/components/schemas/eventArn" }, { "description": "

The unique identifier for the event. The event ARN has the arn:aws:health:event-region::event/SERVICE/EVENT_TYPE_CODE/EVENT_TYPE_PLUS_ID format.

For example, an event ARN might look like the following:

arn:aws:health:us-east-1::event/EC2/EC2_INSTANCE_RETIREMENT_SCHEDULED/EC2_INSTANCE_RETIREMENT_SCHEDULED_ABC123-DEF456

" } ] }, "service": { "allOf": [ { "$ref": "#/components/schemas/service" }, { "description": "The Amazon Web Services service that is affected by the event. For example, EC2, RDS." } ] }, "eventTypeCode": { "allOf": [ { "$ref": "#/components/schemas/eventTypeCode" }, { "description": "The unique identifier for the event type. The format is AWS_SERVICE_DESCRIPTION ; for example, AWS_EC2_SYSTEM_MAINTENANCE_EVENT." } ] }, "eventTypeCategory": { "allOf": [ { "$ref": "#/components/schemas/eventTypeCategory" }, { "description": "A list of event type category codes. Possible values are issue, accountNotification, or scheduledChange. Currently, the investigation value isn't supported at this time." } ] }, "region": { "allOf": [ { "$ref": "#/components/schemas/region" }, { "description": "The Amazon Web Services Region name of the event." } ] }, "availabilityZone": { "allOf": [ { "$ref": "#/components/schemas/availabilityZone" }, { "description": "The Amazon Web Services Availability Zone of the event. For example, us-east-1a." } ] }, "startTime": { "allOf": [ { "$ref": "#/components/schemas/timestamp" }, { "description": "The date and time that the event began." } ] }, "endTime": { "allOf": [ { "$ref": "#/components/schemas/timestamp" }, { "description": "The date and time that the event ended." } ] }, "lastUpdatedTime": { "allOf": [ { "$ref": "#/components/schemas/timestamp" }, { "description": "The most recent date and time that the event was updated." } ] }, "statusCode": { "allOf": [ { "$ref": "#/components/schemas/eventStatusCode" }, { "description": "The most recent status of the event. Possible values are open, closed, and upcoming." } ] }, "eventScopeCode": { "allOf": [ { "$ref": "#/components/schemas/eventScopeCode" }, { "description": "

This parameter specifies if the Health event is a public Amazon Web Services service event or an account-specific event.

" } ] } } }