JFrog · Schema

PromotionRequest

ArtifactoryCI/CDContainer RegistryDevOpsMLOpsPackage ManagementSecuritySoftware Supply Chain

Properties

Name Type Description
release_bundle_name string
release_bundle_version string
environment string Target environment name (e.g., DEV, STAGING, PROD)
included_repository_keys array
overwrite_existing_artifacts boolean
View JSON Schema on GitHub

JSON Schema

jfrog-promotionrequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/PromotionRequest",
  "title": "PromotionRequest",
  "type": "object",
  "properties": {
    "release_bundle_name": {
      "type": "string"
    },
    "release_bundle_version": {
      "type": "string"
    },
    "environment": {
      "type": "string",
      "description": "Target environment name (e.g., DEV, STAGING, PROD)"
    },
    "included_repository_keys": {
      "type": "array",
      "items": {
        "type": "string"
      }
    },
    "overwrite_existing_artifacts": {
      "type": "boolean",
      "default": false
    }
  },
  "required": [
    "release_bundle_name",
    "release_bundle_version",
    "environment"
  ]
}