OBJECT
AssetSourceData
A structure containing metadata about the source engine and task for an asset.
link GraphQL Schema definition
1 type AssetSourceData { 2 3 # The name of the asset source engine or engine category 4 String : 5 6 # ID of the specific task that created the asset 7 ID : 8 9 # The specific task that created the asset 10 Task : 11 12 # The ID of the engine that created the asset 13 ID : 14 15 # The engine that created the asset 16 Engine : 17 18 # The ID of the source from which this asset was generated or stamped. 19 ID : 20 21 # ID of the schema describing this asset, if there is one. 22 # Typically applies only to assets of type "content-template". 23 ID : 24 25 # The schema definition, if there is one 26 Schema : 27 28 }