Dataiku · Schema

SchemaColumn

AnalyticsArtificial IntelligenceData PlatformData ScienceMachine Learning

Properties

Name Type Description
name string Column name
type string Column data type (e.g., string, bigint, double, boolean, date)
meaning string Semantic meaning assigned to the column
maxLength integer Maximum length for string columns
View JSON Schema on GitHub

JSON Schema

dataiku-schemacolumn-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/SchemaColumn",
  "title": "SchemaColumn",
  "type": "object",
  "properties": {
    "name": {
      "type": "string",
      "description": "Column name"
    },
    "type": {
      "type": "string",
      "description": "Column data type (e.g., string, bigint, double, boolean, date)"
    },
    "meaning": {
      "type": "string",
      "description": "Semantic meaning assigned to the column"
    },
    "maxLength": {
      "type": "integer",
      "description": "Maximum length for string columns"
    }
  }
}