{ "$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" } } }