OBJECT
TDOSourceData
Describes source information about a TDO. That is, the components and processes that produced it. Each field may or may not have a value, depending on how the TDO was created.
link GraphQL Schema definition
1 type TDOSourceData { 2 3 # Task ID, typically of an ingestion task. 4 ID : 5 6 # The task object. 7 Task : 8 9 # Ingestion source ID 10 ID : 11 12 # ID of the scheduled job, if any, under which this TDO was created 13 ID : 14 15 # ID of the engine used in the task that created this TDO 16 ID : 17 18 # The engine used in the task that created this TDO. 19 Engine : 20 21 # ID of the cluster, if any, under which TDO belongs to 22 ID : 23 24 }