OBJECT

AssetSourceData

A structure containing metadata about the source engine and task for an asset.

link GraphQL Schema definition

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