INPUT_OBJECT

CreateTDOForJob

link GraphQL Schema definition

1input CreateTDOForJob {
6
2# A name for the TDO object, such as the name of the primary media file.
3# If not provided, the TDO will have the name of the scheduled job that
4# created it.
5name: String
9
7# A description for the TDO object.
8description: String
14
10# True if the new TDO should be made public. If true, security.global
11# will be set to true and users from other organizations will be able to
12# view, but not modify, the TDO's metadata and assets.
13isPublic: Boolean
20
15# An optional parent folder ID for the new TemporalDataObject.
16# The folder can be filed in additional folders later using
17# `fileTemporalDataObject`,
18# or un-filed from this one.
19parentFolderId: ID
23
21# Only internal systems can set this value
22applicationId: ID
27
24# Status, such as "downloaded" or "recording".
25# The server will set a value if one is not provided.
26status: String
30
28# Detailed metadata about the TDO
29details: JSONData
35
31# Optionally, specify one or more structured data objects to apply as
32# content templates to the TDO. They will be stored as assets of type
33# content-template and will contain an immutable copy of the original data.
34contentTemplates: [CreateTDOContentTemplateWithTDO!]
40
36# Optionally, add the new data to the search index. If the data is not
37# indexed on creation, it can be indexed later by using `updateTDO` or
38# creating a suitable job.
39addToIndex: Boolean
43
41# An optional thumbnail URL for the TDO
42thumbnailUrl: String
46
44# An optional preview asset URL for the TDO
45previewUrl: String
49
47# An optional image representing the TDO source
48sourceImageUrl: String
50}