OBJECT
ScheduledJob
link GraphQL Schema definition
1 type ScheduledJob { 2 3 ID! : 4 5 # Organization ID 6 ID : 7 8 # Organization that owns this scheduled job 9 Organization : 10 11 # Name of scheduled job 12 String : 13 14 # Description for the scheduledJob 15 String : 16 17 # This is the time the scheduled job will start ingesting. 18 # 19 # This is in Source Local Time 20 # 21 # Notes: 22 # - If this is in the past, then ingestion will start here and go forward 23 # - If this is the future, then ingestion will not start until that time is 24 # reached 25 DateTime : 26 27 # The stop time for the scheduledJob. 28 # 29 # This is in Source Local Time 30 DateTime : 31 32 # deprecated. DO NOT USE. 33 # TODO(al): Remove 34 ID!] : [ 35 36 # deprecated. DO NOT USE. 37 # TODO(al): Remove 38 ( 39 Int, : 40 Int : 41 ): JobTemplateList! @deprecated( reason: "obsolete v2 construct" ) 42 43 # Retrieve the complete set of job templates associated with this 44 # scheduled job, including those that are associated through a job 45 # pipeline. 46 Int, : Int): JobTemplateList! ( : 47 48 # The ID of the primary source on this scheduled job, if applicable. 49 # This is based on the payloads of the tasks that are invoked for 50 # this scheduled job. 51 ID : 52 53 # The primary source. See `primarySourceId` above. 54 Source : 55 56 # Arguments 57 # targetId: Optionally, specify a TDO ID to filter by job target 58 # clusterId: Optionally, specify a cluster ID to filter by 59 # cluster 60 # orderBy: Provide sort information. The default is to sort by 61 # createdDateTime descending. 62 # dateTimeFilter: Optionally, specify filters on date/time 63 # fields. 64 # If a filter is not provided here, the query will 65 # default to the past 3 months. 66 # status: Provide a list of status strings to filter by status 67 # offset: Provide an offset to skip to a certain element in the 68 # result, for paging. 69 # limit: Specify the maximum number of results to included in 70 # this response, or page size. 71 ( 72 ID, : 73 ID, : 74 JobSortField!], : [ 75 JobDateTimeFilter!], : [ 76 JobStatusFilter!], : [ 77 Int, : 78 Int : 79 ): JobList! 80 81 # Get a list of sources that are used 82 # by engine configurations that reference 83 # this schedule through the schedule -> job -> task relationship. 84 Int, : Int): SourceList ( : 85 86 # If the scheduled job is recurring, this is the day and times for the recurring 87 # schedule 88 SchedulePart!] : [ 89 90 # If true, this is active 91 Boolean! : 92 93 # This is the scheduledJob Run Mode. Recurring, Continuous, Once or On Demand. 94 # 95 # On Demand will be launched when the API is called 96 RunMode! : 97 98 JSONData : 99 100 ID : 101 102 DateTime : 103 104 DateTime : 105 106 # List of schema-controlled content templates attached 107 # to this scheduled job 108 ScheduledJobContentTemplate!]! : [ 109 110 # Permissions granted to other organizations. Only the source owner 111 # can view or edit this field. 112 ScheduledJobCollaboratorList! : 113 114 # A public scheduled job can be viewed and launched by 115 # users from any organization. By default, scheduled jobs are 116 # private and can only be viewed or launched by the owning organization 117 # and organizations that the owner has explicitly shared them with. 118 # Only Veritone administrators can create public scheduled jobs. 119 Boolean : 120 121 # The user's permission on this scheduled job 122 ScheduledJobPermission : 123 124 ID : 125 126 SourceType : 127 128 ID : 129 130 String : 131 132 Int, : Int): ProgramAffiliateList! ( : 133 134 # deprecated. DO NOT USE.x 135 # TODO: Remove 136 ID!] @deprecated( reason: "obsolete v2 construct" ) : [ 137 138 # deprecated. DO NOT USE. 139 # TODO: Remove 140 ( 141 Int, : 142 Int : 143 ): JobPipelineList! @deprecated( reason: "obsolete v2 construct" ) 144 145 }