JFrog · Schema

DistributeRequest

ArtifactoryCI/CDContainer RegistryDevOpsMLOpsPackage ManagementSecuritySoftware Supply Chain

Properties

Name Type Description
auto_create_missing_repositories boolean
distribution_rules array
View JSON Schema on GitHub

JSON Schema

jfrog-distributerequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/DistributeRequest",
  "title": "DistributeRequest",
  "type": "object",
  "properties": {
    "auto_create_missing_repositories": {
      "type": "boolean",
      "default": false
    },
    "distribution_rules": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "site_name": {
            "type": "string"
          }
        }
      }
    }
  },
  "required": [
    "distribution_rules"
  ]
}