Alteryx · Schema

CreateJobContract

Contract for creating a new execution job

AnalyticsAutomationData EngineeringData PreparationData ScienceETLMachine LearningPredictive Analytics

Properties

Name Type Description
workerTag string Worker tag for routing
credentialId string Credential to use for execution
questions array Analytic app question values
priority string Job priority
View JSON Schema on GitHub

JSON Schema

alteryx-server-v3-create-job-contract-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "CreateJobContract",
  "type": "object",
  "description": "Contract for creating a new execution job",
  "properties": {
    "workerTag": {
      "type": "string",
      "description": "Worker tag for routing"
    },
    "credentialId": {
      "type": "string",
      "description": "Credential to use for execution"
    },
    "questions": {
      "type": "array",
      "description": "Analytic app question values"
    },
    "priority": {
      "type": "string",
      "description": "Job priority"
    }
  }
}