Dataiku · Schema

CreateProjectRequest

AnalyticsArtificial IntelligenceData PlatformData ScienceMachine Learning

Properties

Name Type Description
projectKey string Unique project key (uppercase letters and numbers)
name string Display name for the project
owner string Login of the project owner
View JSON Schema on GitHub

JSON Schema

dataiku-createprojectrequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CreateProjectRequest",
  "title": "CreateProjectRequest",
  "type": "object",
  "required": [
    "projectKey",
    "name"
  ],
  "properties": {
    "projectKey": {
      "type": "string",
      "description": "Unique project key (uppercase letters and numbers)",
      "pattern": "^[A-Z][A-Z0-9_]*$"
    },
    "name": {
      "type": "string",
      "description": "Display name for the project"
    },
    "owner": {
      "type": "string",
      "description": "Login of the project owner"
    }
  }
}