JFrog · Arazzo Workflow

JFrog ML Register Model Version

Version 1.0.0

Register an ML model then publish a version of it.

1 workflow 2 source APIs 1 provider
View Spec View on GitHub ArtifactoryCI/CDContainer RegistryDevOpsMLOpsPackage ManagementSecuritySoftware Supply ChainArazzoWorkflows

Provider

jfrog

Workflows

register-model-version
Create an ML model and publish a version, then verify it.
Creates a model, creates a version under it with metrics, then fetches the version to confirm.
3 steps inputs: artifactPath, framework, modelName, version outputs: modelId, status, versionId
1
createModel
Create a new model record with the supplied name and framework.
2
createVersion
Create a version under the model pointing at the supplied artifact path.
3
confirmVersion
Read the model version back to confirm it was published.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: JFrog ML Register Model Version
  summary: Register an ML model then publish a version of it.
  description: >-
    Model lifecycle management with JFrog ML. The workflow creates a model
    record, creates a version under that model pointing at an artifact path,
    then reads the version back to confirm it was published. Every step spells
    out its request inline so the flow can be read and executed without opening
    the underlying OpenAPI description.
  version: 1.0.0
sourceDescriptions:
- name: modelVersionsApi
  url: ../openapi/jfrog-model-versions-api-openapi.yml
  type: openapi
- name: modelsApi
  url: ../openapi/jfrog-models-api-openapi.yml
  type: openapi
workflows:
- workflowId: register-model-version
  summary: Create an ML model and publish a version, then verify it.
  description: >-
    Creates a model, creates a version under it with metrics, then fetches the
    version to confirm.
  inputs:
    type: object
    required:
    - modelName
    - framework
    - version
    - artifactPath
    properties:
      modelName:
        type: string
        description: The name of the model to register.
      framework:
        type: string
        description: The ML framework (e.g. tensorflow, pytorch, sklearn).
      version:
        type: string
        description: The model version to publish.
      artifactPath:
        type: string
        description: The Artifactory path to the model version artifact.
  steps:
  - stepId: createModel
    description: >-
      Create a new model record with the supplied name and framework.
    operationId: createModel
    requestBody:
      contentType: application/json
      payload:
        name: $inputs.modelName
        description: Registered by the register-model-version workflow
        framework: $inputs.framework
        task_type: classification
    successCriteria:
    - condition: $statusCode == 201
    outputs:
      modelId: $response.body#/id
  - stepId: createVersion
    description: >-
      Create a version under the model pointing at the supplied artifact path.
    operationId: createModelVersion
    parameters:
    - name: modelId
      in: path
      value: $steps.createModel.outputs.modelId
    requestBody:
      contentType: application/json
      payload:
        version: $inputs.version
        description: Published by the register-model-version workflow
        status: staging
        artifact_path: $inputs.artifactPath
    successCriteria:
    - condition: $statusCode == 201
    outputs:
      versionId: $response.body#/id
  - stepId: confirmVersion
    description: >-
      Read the model version back to confirm it was published.
    operationId: getModelVersion
    parameters:
    - name: modelId
      in: path
      value: $steps.createModel.outputs.modelId
    - name: versionId
      in: path
      value: $steps.createVersion.outputs.versionId
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      version: $response.body#/version
      status: $response.body#/status
  outputs:
    modelId: $steps.createModel.outputs.modelId
    versionId: $steps.createVersion.outputs.versionId
    status: $steps.confirmVersion.outputs.status

Work with this as data

Every workflow here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for arazzo workflows

4 MCP tools reach this
  • find_arazzoBrowse and filter every workflow in the catalog.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This workflow
curl "https://apis.io/api/v1/arazzo/jfrog-ml-register-model-version-workflow"
All arazzo workflows
curl "https://apis.io/api/v1/arazzo?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.