Dataiku · Schema

DatasetSchema

AnalyticsArtificial IntelligenceData PlatformData ScienceMachine-Learning

Properties

Name Type Description
columns array List of columns in the dataset
userModified boolean Whether the schema was manually modified
View JSON Schema on GitHub

JSON Schema

dataiku-datasetschema-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/DatasetSchema",
  "title": "DatasetSchema",
  "type": "object",
  "properties": {
    "columns": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/SchemaColumn"
      },
      "description": "List of columns in the dataset"
    },
    "userModified": {
      "type": "boolean",
      "description": "Whether the schema was manually modified"
    }
  }
}