Dataiku · Schema

Connection

AnalyticsArtificial IntelligenceData PlatformData ScienceMachine Learning

Properties

Name Type Description
name string Connection name
type string Connection type
params object Connection-specific parameters
allowWrite boolean Whether write operations are allowed
allowManagedDatasets boolean Whether managed datasets are allowed
View JSON Schema on GitHub

JSON Schema

dataiku-connection-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Connection",
  "title": "Connection",
  "type": "object",
  "properties": {
    "name": {
      "type": "string",
      "description": "Connection name"
    },
    "type": {
      "type": "string",
      "description": "Connection type"
    },
    "params": {
      "type": "object",
      "description": "Connection-specific parameters"
    },
    "allowWrite": {
      "type": "boolean",
      "description": "Whether write operations are allowed"
    },
    "allowManagedDatasets": {
      "type": "boolean",
      "description": "Whether managed datasets are allowed"
    }
  }
}