JFrog · Schema

ModelVersion

ArtifactoryCI/CDContainer RegistryDevOpsMLOpsPackage ManagementSecuritySoftware Supply Chain

Properties

Name Type Description
id string
model_id string
version string
description string
status string
artifact_path string Path to the model artifact in Artifactory
metrics object Key-value pairs of model metrics (accuracy, loss, etc.)
parameters object Hyperparameters used for training
created_at string
created_by string
View JSON Schema on GitHub

JSON Schema

jfrog-modelversion-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ModelVersion",
  "title": "ModelVersion",
  "type": "object",
  "properties": {
    "id": {
      "type": "string"
    },
    "model_id": {
      "type": "string"
    },
    "version": {
      "type": "string"
    },
    "description": {
      "type": "string"
    },
    "status": {
      "type": "string",
      "enum": [
        "draft",
        "staging",
        "production",
        "archived"
      ]
    },
    "artifact_path": {
      "type": "string",
      "description": "Path to the model artifact in Artifactory"
    },
    "metrics": {
      "type": "object",
      "additionalProperties": {
        "type": "number"
      },
      "description": "Key-value pairs of model metrics (accuracy, loss, etc.)"
    },
    "parameters": {
      "type": "object",
      "additionalProperties": {
        "type": "string"
      },
      "description": "Hyperparameters used for training"
    },
    "created_at": {
      "type": "string",
      "format": "date-time"
    },
    "created_by": {
      "type": "string"
    }
  }
}