{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/DeploymentRequest", "title": "DeploymentRequest", "type": "object", "properties": { "name": { "type": "string" }, "model_id": { "type": "string" }, "model_version_id": { "type": "string" }, "replicas": { "type": "integer", "default": 1 }, "resources": { "type": "object", "properties": { "cpu": { "type": "string" }, "memory": { "type": "string" }, "gpu": { "type": "integer" } } } }, "required": [ "name", "model_id", "model_version_id" ] }