Dataiku · Schema

DatasetData

AnalyticsArtificial IntelligenceData PlatformData ScienceMachine Learning

Properties

Name Type Description
columns array Column names
rows array Data rows
totalCount integer Total number of rows in the dataset
View JSON Schema on GitHub

JSON Schema

dataiku-datasetdata-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/DatasetData",
  "title": "DatasetData",
  "type": "object",
  "properties": {
    "columns": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "description": "Column names"
    },
    "rows": {
      "type": "array",
      "items": {
        "type": "array",
        "items": {
          "type": "string"
        }
      },
      "description": "Data rows"
    },
    "totalCount": {
      "type": "integer",
      "description": "Total number of rows in the dataset"
    }
  }
}