Clojars · Schema

Artifact

Full metadata for a Clojars artifact including versions, downloads, dependencies, and licenses.

ClojurePackage RegistryArtifact RepositoryOpen-Source

Properties

Name Type Description
jar_name string The artifact (JAR) name.
group_name string The Maven group identifier.
version string The latest released version string.
description stringnull Short human-readable description of the artifact.
homepage stringnull URL of the project homepage.
downloads integer Cumulative total download count across all versions.
licenses array Software licenses declared for this artifact.
recent_versions array Recent release versions with per-version download counts.
dependencies array Maven dependencies declared in the artifact's POM.
View JSON Schema on GitHub

JSON Schema

artifact.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://clojars.org/schema/artifact",
  "title": "Artifact",
  "description": "Full metadata for a Clojars artifact including versions, downloads, dependencies, and licenses.",
  "type": "object",
  "properties": {
    "jar_name": {
      "type": "string",
      "description": "The artifact (JAR) name.",
      "examples": ["clojure", "ring-core"]
    },
    "group_name": {
      "type": "string",
      "description": "The Maven group identifier.",
      "examples": ["org.clojure", "ring"]
    },
    "version": {
      "type": "string",
      "description": "The latest released version string.",
      "examples": ["1.11.1", "1.11.0"]
    },
    "description": {
      "type": ["string", "null"],
      "description": "Short human-readable description of the artifact."
    },
    "homepage": {
      "type": ["string", "null"],
      "format": "uri",
      "description": "URL of the project homepage."
    },
    "downloads": {
      "type": "integer",
      "minimum": 0,
      "description": "Cumulative total download count across all versions."
    },
    "licenses": {
      "type": "array",
      "description": "Software licenses declared for this artifact.",
      "items": {
        "$ref": "#/$defs/License"
      }
    },
    "recent_versions": {
      "type": "array",
      "description": "Recent release versions with per-version download counts.",
      "items": {
        "$ref": "#/$defs/ArtifactVersion"
      }
    },
    "dependencies": {
      "type": "array",
      "description": "Maven dependencies declared in the artifact's POM.",
      "items": {
        "$ref": "#/$defs/Dependency"
      }
    }
  },
  "required": ["jar_name", "group_name", "version"],
  "$defs": {
    "License": {
      "type": "object",
      "description": "A software license.",
      "properties": {
        "name": {
          "type": "string",
          "description": "License name.",
          "examples": ["Eclipse Public License 1.0", "MIT"]
        },
        "url": {
          "type": ["string", "null"],
          "format": "uri",
          "description": "URL to the full license text."
        }
      },
      "required": ["name"]
    },
    "ArtifactVersion": {
      "type": "object",
      "description": "A specific version of an artifact.",
      "properties": {
        "version": {
          "type": "string",
          "description": "The version string.",
          "examples": ["1.11.1"]
        },
        "downloads": {
          "type": "integer",
          "minimum": 0,
          "description": "Download count for this specific version."
        }
      },
      "required": ["version"]
    },
    "Dependency": {
      "type": "object",
      "description": "A Maven dependency declared by the artifact.",
      "properties": {
        "group_name": {
          "type": "string",
          "description": "The dependency's group identifier."
        },
        "jar_name": {
          "type": "string",
          "description": "The dependency's artifact name."
        },
        "version": {
          "type": "string",
          "description": "Required version of the dependency."
        },
        "scope": {
          "type": ["string", "null"],
          "description": "Maven dependency scope (compile, test, provided, etc.).",
          "examples": ["compile", "test", "provided"]
        }
      },
      "required": ["group_name", "jar_name", "version"]
    }
  }
}

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/artifact"
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.