Dataiku · Schema

StartJobRequest

AnalyticsArtificial IntelligenceData PlatformData ScienceMachine Learning

Properties

Name Type Description
outputs array List of outputs to build
View JSON Schema on GitHub

JSON Schema

dataiku-startjobrequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/StartJobRequest",
  "title": "StartJobRequest",
  "type": "object",
  "required": [
    "outputs"
  ],
  "properties": {
    "outputs": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "projectKey": {
            "type": "string"
          },
          "id": {
            "type": "string"
          },
          "type": {
            "type": "string",
            "enum": [
              "DATASET",
              "MANAGED_FOLDER",
              "SAVED_MODEL"
            ]
          }
        }
      },
      "description": "List of outputs to build"
    }
  }
}