OBJECT

Event

link GraphQL Schema definition

  • type Event {
  • # Event ID (unique to the Skylight platform)
  • event_id: String!
  • # The type of event (example: 'dark_rendezvous')
  • event_type: EventType
  • # Event start location and timestamp
  • start: StartEnd
  • # Vessel-specific information for the vessels involved in the event
  • vessels: EmbeddedVessels
  • # Event-specific information
  • event_details: EventDetails
  • # Event end location and timestamp
  • end: StartEnd
  • # Additional event parameters (applies only for 'aoi_visit' and 'speed_range'
  • # event types)
  • user_params: UserParams
  • }