Dataiku · Schema

ScenarioSummary

AnalyticsArtificial IntelligenceData PlatformData ScienceMachine-Learning

Properties

Name Type Description
id string Scenario identifier
projectKey string Project key
name string Scenario name
active boolean Whether the scenario is active
type string Scenario type (step_based or custom_python)
View JSON Schema on GitHub

JSON Schema

dataiku-scenariosummary-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ScenarioSummary",
  "title": "ScenarioSummary",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "description": "Scenario identifier"
    },
    "projectKey": {
      "type": "string",
      "description": "Project key"
    },
    "name": {
      "type": "string",
      "description": "Scenario name"
    },
    "active": {
      "type": "boolean",
      "description": "Whether the scenario is active"
    },
    "type": {
      "type": "string",
      "description": "Scenario type (step_based or custom_python)"
    }
  }
}