ZenML · JSON Structure

Zenml Pipeline Run Structure

Structural definition of a ZenML pipeline run.

Type: object Properties: 7
AIMachine LearningMLOpsLLMOpsPipelinesOpen SourcePython

ZenMLPipelineRunStructure is a JSON Structure definition published by ZenML, describing 7 properties. It conforms to the https://json-structure.org/draft-00/schema meta-schema.

Properties

id name pipeline_id stack_id status start_time end_time

Meta-schema: https://json-structure.org/draft-00/schema

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/draft-00/schema",
  "name": "ZenMLPipelineRunStructure",
  "type": "object",
  "description": "Structural definition of a ZenML pipeline run.",
  "properties": {
    "id": { "type": "string" },
    "name": { "type": "string" },
    "pipeline_id": { "type": "string" },
    "stack_id": { "type": "string" },
    "status": { "type": "string", "enum": ["initializing", "running", "completed", "failed", "cached", "stopped"] },
    "start_time": { "type": "string" },
    "end_time": { "type": "string" }
  }
}