Dataiku · Schema

SavedModelSummary

AnalyticsArtificial IntelligenceData PlatformData ScienceMachine Learning

Properties

Name Type Description
projectKey string Project key
id string Saved model identifier
name string Saved model name
type string Model type (PREDICTION or CLUSTERING)
View JSON Schema on GitHub

JSON Schema

dataiku-savedmodelsummary-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/SavedModelSummary",
  "title": "SavedModelSummary",
  "type": "object",
  "properties": {
    "projectKey": {
      "type": "string",
      "description": "Project key"
    },
    "id": {
      "type": "string",
      "description": "Saved model identifier"
    },
    "name": {
      "type": "string",
      "description": "Saved model name"
    },
    "type": {
      "type": "string",
      "description": "Model type (PREDICTION or CLUSTERING)"
    }
  }
}