INPUT_OBJECT
CreateTDOInJob
Payload required to create a temporal data object
link GraphQL Schema definition
1 input 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. 5 : 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. 10 : DateTime 15 12 # Status, such as "downloaded" or "recording". 13 # The server will set a value if one is not provided. 14 : String 18 16 # A name for the TDO object, such as the name of the primary media file. 17 : String 21 19 # A description for the TDO object. 20 : 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. 25 : 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. 32 : 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. 40 : SetTDOSourceData 43 42 : 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. 47 : [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. 52 : Boolean 56 54 # An optional thumbnail URL for the TDO 55 : String 59 57 # An optional preview asset URL for the TDO 58 : String 62 60 # An optional image representing the TDO source 61 : String 65 63 # Optionally, provide information to create one or more assets. 64 : [CreateAssetInTDO!] 66 }