OBJECT

EngineJobTemplate

link GraphQL Schema definition

1type EngineJobTemplate {
2
3# Job template type
4type: JobTemplateEnumType
5
6# Template data - json job DAG definition, with handlebar style {{VAR}}
7# parametrization
8template: JSONData
9
10# List of input types that the template supports
11supportedInputTypes: [String!]
12
13}

link Required by