JFrog Artifactory · Schema

Artifactory Permission Target

Schema for JFrog Artifactory permission targets (V2), defining access control rules for repositories and builds. Permission targets map users and groups to specific permissions on repository and build resources.

ArtifactsDevOpsCI/CDdocker-registryMavenPackage ManagementRepository

Properties

Name Type Description
name string Unique name for the permission target.
repo object Repository permissions section defining access to repository artifacts.
build object Build permissions section defining access to build information.
View JSON Schema on GitHub

JSON Schema

artifactory-permission-target.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://jfrog.com/schemas/artifactory-permission-target.json",
  "title": "Artifactory Permission Target",
  "description": "Schema for JFrog Artifactory permission targets (V2), defining access control rules for repositories and builds. Permission targets map users and groups to specific permissions on repository and build resources.",
  "type": "object",
  "required": ["name"],
  "properties": {
    "name": {
      "type": "string",
      "description": "Unique name for the permission target.",
      "examples": ["release-deployers", "dev-team-access"]
    },
    "repo": {
      "$ref": "#/$defs/permissionSection",
      "description": "Repository permissions section defining access to repository artifacts."
    },
    "build": {
      "$ref": "#/$defs/permissionSection",
      "description": "Build permissions section defining access to build information."
    }
  },
  "$defs": {
    "permissionSection": {
      "type": "object",
      "description": "A permission section for either repositories or builds.",
      "properties": {
        "repositories": {
          "type": "array",
          "description": "List of repository or build repository keys this permission applies to. Use 'ANY' for all repositories, 'ANY LOCAL' for all local repos, 'ANY REMOTE' for all remote repos.",
          "items": {
            "type": "string"
          },
          "examples": [
            ["libs-release-local", "libs-snapshot-local"],
            ["ANY"],
            ["ANY LOCAL"]
          ]
        },
        "actions": {
          "type": "object",
          "description": "Permission actions mapped to users and groups.",
          "properties": {
            "users": {
              "type": "object",
              "description": "Map of usernames to their permission actions.",
              "additionalProperties": {
                "type": "array",
                "items": {
                  "$ref": "#/$defs/permissionAction"
                }
              },
              "examples": [
                {
                  "admin-user": ["manage", "read", "write", "annotate", "delete"],
                  "deployer": ["read", "write", "annotate"]
                }
              ]
            },
            "groups": {
              "type": "object",
              "description": "Map of group names to their permission actions.",
              "additionalProperties": {
                "type": "array",
                "items": {
                  "$ref": "#/$defs/permissionAction"
                }
              },
              "examples": [
                {
                  "dev-team": ["read", "write", "annotate"],
                  "readers": ["read"]
                }
              ]
            }
          }
        },
        "includePatterns": {
          "type": "array",
          "description": "Artifact path patterns to include in this permission scope.",
          "items": {
            "type": "string"
          },
          "default": ["**"],
          "examples": [["**"], ["com/example/**"]]
        },
        "excludePatterns": {
          "type": "array",
          "description": "Artifact path patterns to exclude from this permission scope.",
          "items": {
            "type": "string"
          },
          "default": [],
          "examples": [[], ["com/internal/**"]]
        }
      }
    },
    "permissionAction": {
      "type": "string",
      "description": "A permission action that can be granted to users or groups.",
      "enum": [
        "read",
        "write",
        "annotate",
        "delete",
        "manage",
        "managedXrayMeta",
        "distribute"
      ]
    }
  }
}

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/artifactory-permission-target"
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.