JFrog · Schema

DistributionRequest

ArtifactoryCI/CDContainer RegistryDevOpsMLOpsPackage ManagementSecuritySoftware Supply Chain

Properties

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

JSON Schema

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