Dataiku · Schema

JobSummary

AnalyticsArtificial IntelligenceData PlatformData ScienceMachine Learning

Properties

Name Type Description
id string Unique job identifier
projectKey string Project key
state string Current state of the job
initiator string User who started the job
startTime integer Job start time as epoch milliseconds
View JSON Schema on GitHub

JSON Schema

dataiku-jobsummary-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/JobSummary",
  "title": "JobSummary",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "description": "Unique job identifier"
    },
    "projectKey": {
      "type": "string",
      "description": "Project key"
    },
    "state": {
      "type": "string",
      "enum": [
        "NOT_STARTED",
        "RUNNING",
        "DONE",
        "FAILED",
        "ABORTED"
      ],
      "description": "Current state of the job"
    },
    "initiator": {
      "type": "string",
      "description": "User who started the job"
    },
    "startTime": {
      "type": "integer",
      "format": "int64",
      "description": "Job start time as epoch milliseconds"
    }
  }
}