Complete the code to define a domain event type.
event_type = "[1]" # Represents an event within the same service boundary
A domain event represents something that happened inside a single service or bounded context.
Complete the code to define an integration event type.
event_type = "[1]" # Used to communicate between different microservices
Integration events are used to notify other services about something that happened.
Fix the error in the event type assignment for a notification event.
event_type = "[1]" # Event type used to inform users or systems about something
Notification events are meant to alert users or external systems about an event.
Fill both blanks to complete the event type descriptions.
domain_event = "[1]" # Event inside a service integration_event = "[2]" # Event between services
Domain events happen inside a service; integration events happen between services.
Fill all three blanks to complete the event type assignments.
domain_event = "[1]" integration_event = "[2]" notification_event = "[3]"
Each event type corresponds to its role: domain (internal), integration (between services), notification (alerts).
