Dataiku · Schema

ArtifactSummary

AnalyticsArtificial IntelligenceData PlatformData ScienceMachine Learning

Properties

Name Type Description
id string Artifact identifier
name string Artifact display name
blueprintId string Blueprint this artifact belongs to
status string Current workflow status
createdOn integer Creation timestamp
createdBy string User who created the artifact
View JSON Schema on GitHub

JSON Schema

dataiku-artifactsummary-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ArtifactSummary",
  "title": "ArtifactSummary",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "description": "Artifact identifier"
    },
    "name": {
      "type": "string",
      "description": "Artifact display name"
    },
    "blueprintId": {
      "type": "string",
      "description": "Blueprint this artifact belongs to"
    },
    "status": {
      "type": "string",
      "description": "Current workflow status"
    },
    "createdOn": {
      "type": "integer",
      "format": "int64",
      "description": "Creation timestamp"
    },
    "createdBy": {
      "type": "string",
      "description": "User who created the artifact"
    }
  }
}