JFrog · Schema

JFrog Build Info

Represents build information stored in JFrog Artifactory, capturing the complete record of a CI/CD build including source modules, produced artifacts, dependencies, and environment details.

ArtifactoryCI/CDContainer RegistryDevOpsMLOpsPackage ManagementSecuritySoftware Supply Chain

Properties

Name Type Description
version string Build info schema version
name string Build name
number string Build number or run identifier
type string Type of build system
started string Build start timestamp
durationMillis integer Build duration in milliseconds
buildAgent object Build agent information
agent object CI server agent information
principal string User that triggered the build
artifactoryPrincipal string Artifactory user for publishing build info
vcsRevision string VCS revision (commit hash)
vcsUrl string VCS repository URL
url string CI build URL
modules array Build modules produced by this build
statuses array Build promotion statuses
properties object Custom build properties
View JSON Schema on GitHub

JSON Schema

jfrog-build-info-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://jfrog.com/schemas/build-info",
  "title": "JFrog Build Info",
  "description": "Represents build information stored in JFrog Artifactory, capturing the complete record of a CI/CD build including source modules, produced artifacts, dependencies, and environment details.",
  "type": "object",
  "properties": {
    "version": {
      "type": "string",
      "description": "Build info schema version"
    },
    "name": {
      "type": "string",
      "description": "Build name",
      "examples": [
        "my-app-build"
      ]
    },
    "number": {
      "type": "string",
      "description": "Build number or run identifier",
      "examples": [
        "42",
        "2025.01.15.1"
      ]
    },
    "type": {
      "type": "string",
      "description": "Type of build system",
      "enum": [
        "GENERIC",
        "MAVEN",
        "GRADLE",
        "ANT",
        "IVY",
        "DOCKER",
        "NPM",
        "NUGET",
        "GO",
        "PIP"
      ]
    },
    "started": {
      "type": "string",
      "format": "date-time",
      "description": "Build start timestamp"
    },
    "durationMillis": {
      "type": "integer",
      "description": "Build duration in milliseconds",
      "minimum": 0
    },
    "buildAgent": {
      "type": "object",
      "description": "Build agent information",
      "properties": {
        "name": {
          "type": "string",
          "examples": [
            "Jenkins",
            "GitHub Actions",
            "JFrog Pipelines"
          ]
        },
        "version": {
          "type": "string"
        }
      }
    },
    "agent": {
      "type": "object",
      "description": "CI server agent information",
      "properties": {
        "name": {
          "type": "string"
        },
        "version": {
          "type": "string"
        }
      }
    },
    "principal": {
      "type": "string",
      "description": "User that triggered the build"
    },
    "artifactoryPrincipal": {
      "type": "string",
      "description": "Artifactory user for publishing build info"
    },
    "vcsRevision": {
      "type": "string",
      "description": "VCS revision (commit hash)"
    },
    "vcsUrl": {
      "type": "string",
      "format": "uri",
      "description": "VCS repository URL"
    },
    "url": {
      "type": "string",
      "format": "uri",
      "description": "CI build URL"
    },
    "modules": {
      "type": "array",
      "description": "Build modules produced by this build",
      "items": {
        "$ref": "#/$defs/Module"
      }
    },
    "statuses": {
      "type": "array",
      "description": "Build promotion statuses",
      "items": {
        "$ref": "#/$defs/PromotionStatus"
      }
    },
    "properties": {
      "type": "object",
      "description": "Custom build properties",
      "additionalProperties": {
        "type": "string"
      }
    }
  },
  "required": [
    "name",
    "number",
    "started"
  ],
  "$defs": {
    "Module": {
      "type": "object",
      "description": "A build module representing a produced component",
      "properties": {
        "id": {
          "type": "string",
          "description": "Module identifier"
        },
        "artifacts": {
          "type": "array",
          "description": "Artifacts produced by this module",
          "items": {
            "type": "object",
            "properties": {
              "type": {
                "type": "string",
                "description": "Artifact type/extension"
              },
              "sha1": {
                "type": "string"
              },
              "sha256": {
                "type": "string"
              },
              "md5": {
                "type": "string"
              },
              "name": {
                "type": "string"
              }
            }
          }
        },
        "dependencies": {
          "type": "array",
          "description": "Dependencies consumed by this module",
          "items": {
            "type": "object",
            "properties": {
              "type": {
                "type": "string"
              },
              "sha1": {
                "type": "string"
              },
              "sha256": {
                "type": "string"
              },
              "md5": {
                "type": "string"
              },
              "id": {
                "type": "string"
              },
              "scopes": {
                "type": "array",
                "items": {
                  "type": "string"
                }
              }
            }
          }
        }
      },
      "required": [
        "id"
      ]
    },
    "PromotionStatus": {
      "type": "object",
      "description": "Build promotion status record",
      "properties": {
        "status": {
          "type": "string",
          "description": "Promotion status name",
          "examples": [
            "staged",
            "released"
          ]
        },
        "comment": {
          "type": "string"
        },
        "repository": {
          "type": "string",
          "description": "Target repository for promotion"
        },
        "timestamp": {
          "type": "string",
          "format": "date-time"
        },
        "user": {
          "type": "string",
          "description": "User who performed the promotion"
        },
        "ciUser": {
          "type": "string",
          "description": "CI user who triggered the promotion"
        }
      }
    }
  }
}

Work with this as data

Every JSON Schema 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 schemas

4 MCP tools reach this
  • find_json_schemasBrowse and filter every JSON Schema 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 JSON Schema
curl "https://apis.io/api/v1/json-schemas/jfrog-build-info"
All schemas
curl "https://apis.io/api/v1/json-schemas?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.