INPUT_OBJECT

CreateTDOInJob

Payload required to create a temporal data object

link GraphQL Schema definition

1input CreateTDOInJob {
6
2# Start date and time. ISO-8601 standard strings
3# and numerical format in either Unix format (seconds
4# since epoch) or milliseconds since epoch are accepted.
5startDateTime: DateTime
11
7# Stop date and time. ISO-8601 standard strings
8# and numerical format in either Unix format (seconds
9# since epoch) or milliseconds since epoch are accepted.
10stopDateTime: DateTime
15
12# Status, such as "downloaded" or "recording".
13# The server will set a value if one is not provided.
14status: String
18
16# A name for the TDO object, such as the name of the primary media file.
17name: String
21
19# A description for the TDO object.
20description: String
26
22# True if the new TDO should be made public. If true, security.global
23# will be set to true and users from other organizations will be able to
24# view, but not modify, the TDO's metadata and assets.
25isPublic: Boolean
33
27# An optional parent folder ID for the new TemporalDataObject.
28# The folder can be filed in additional folders later using
29# `fileTemporalDataObject`,
30# or un-filed from this one. This field is mutually exclusive with the top level
31# targetId parameter.
32parentFolderId: ID
41
34# Optionally, set source data for this TDO. Source data identifies
35# that task that generated this TDO. If the TDO was not generated as part
36# of engine or adapter execution, this field should not be set.
37# However, it is _strongly_ recommended that engines that create TDOs
38# set this field. Doing so ensures that later tasks in the same job
39# have appropriate access to the new TDO.
40sourceData: SetTDOSourceData
43
42details: JSONData
48
44# Optionally, specify one or more structured data objects to apply as
45# content templates to the TDO. They will be stored as assets of type
46# content-template and will contain an immutable copy of the original data.
47contentTemplates: [CreateTDOContentTemplateWithTDO!]
53
49# Optionally, add the new data to the search index. If the data is not
50# indexed on creation, it can be indexed later by using `updateTDO` or
51# creating a suitable job.
52addToIndex: Boolean
56
54# An optional thumbnail URL for the TDO
55thumbnailUrl: String
59
57# An optional preview asset URL for the TDO
58previewUrl: String
62
60# An optional image representing the TDO source
61sourceImageUrl: String
65
63# Optionally, provide information to create one or more assets.
64assets: [CreateAssetInTDO!]
66}

link Required by