Dataiku · Schema

Recipe

AnalyticsArtificial IntelligenceData PlatformData ScienceMachine Learning

Properties

Name Type Description
projectKey string Project key
name string Recipe name
type string Recipe type
inputs object Input datasets and roles
outputs object Output datasets and roles
params object Recipe-specific parameters
creationTag object
versionTag object
View JSON Schema on GitHub

JSON Schema

dataiku-recipe-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Recipe",
  "title": "Recipe",
  "type": "object",
  "properties": {
    "projectKey": {
      "type": "string",
      "description": "Project key"
    },
    "name": {
      "type": "string",
      "description": "Recipe name"
    },
    "type": {
      "type": "string",
      "description": "Recipe type"
    },
    "inputs": {
      "type": "object",
      "description": "Input datasets and roles"
    },
    "outputs": {
      "type": "object",
      "description": "Output datasets and roles"
    },
    "params": {
      "type": "object",
      "description": "Recipe-specific parameters"
    },
    "creationTag": {
      "$ref": "#/components/schemas/Tag"
    },
    "versionTag": {
      "$ref": "#/components/schemas/Tag"
    }
  }
}