Dataiku · Schema

ProjectMetadata

AnalyticsArtificial IntelligenceData PlatformData ScienceMachine Learning

Properties

Name Type Description
label string Display label for the project
description string Project description
shortDesc string Short description
tags array Tags associated with the project
checklists object Checklists for the project
View JSON Schema on GitHub

JSON Schema

dataiku-projectmetadata-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ProjectMetadata",
  "title": "ProjectMetadata",
  "type": "object",
  "properties": {
    "label": {
      "type": "string",
      "description": "Display label for the project"
    },
    "description": {
      "type": "string",
      "description": "Project description"
    },
    "shortDesc": {
      "type": "string",
      "description": "Short description"
    },
    "tags": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "description": "Tags associated with the project"
    },
    "checklists": {
      "type": "object",
      "description": "Checklists for the project"
    }
  }
}