JFrog · Schema

CurationPolicyRequest

ArtifactoryCI/CDContainer RegistryDevOpsMLOpsPackage ManagementSecuritySoftware Supply Chain

Properties

Name Type Description
policy_name string
description string
enabled boolean
policy_type string
repositories array
package_types array
conditions object
actions object
View JSON Schema on GitHub

JSON Schema

jfrog-curationpolicyrequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CurationPolicyRequest",
  "title": "CurationPolicyRequest",
  "type": "object",
  "properties": {
    "policy_name": {
      "type": "string"
    },
    "description": {
      "type": "string"
    },
    "enabled": {
      "type": "boolean"
    },
    "policy_type": {
      "type": "string"
    },
    "repositories": {
      "type": "array",
      "items": {
        "type": "string"
      }
    },
    "package_types": {
      "type": "array",
      "items": {
        "type": "string"
      }
    },
    "conditions": {
      "type": "object"
    },
    "actions": {
      "type": "object"
    }
  },
  "required": [
    "policy_name",
    "policy_type"
  ]
}