ZenML · Schema

ZenML Model

A registered model in the ZenML Model Control Plane, with model card metadata and a chain of model versions.

AIMachine LearningMLOpsLLMOpsPipelinesOpen SourcePython

Properties

Name Type Description
id string
name string
description string
license string
ethical_considerations string
trade_offs string
limitations string
audience string
use_cases string
created string
View JSON Schema on GitHub

JSON Schema

zenml-model-schema.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/zenml/main/json-schema/zenml-model-schema.json",
  "title": "ZenML Model",
  "description": "A registered model in the ZenML Model Control Plane, with model card metadata and a chain of model versions.",
  "type": "object",
  "required": ["id", "name"],
  "properties": {
    "id": { "type": "string", "format": "uuid" },
    "name": { "type": "string" },
    "description": { "type": "string" },
    "license": { "type": "string" },
    "ethical_considerations": { "type": "string" },
    "trade_offs": { "type": "string" },
    "limitations": { "type": "string" },
    "audience": { "type": "string" },
    "use_cases": { "type": "string" },
    "created": { "type": "string", "format": "date-time" }
  }
}