JFrog · Schema

AuditEntry

ArtifactoryCI/CDContainer RegistryDevOpsMLOpsPackage ManagementSecuritySoftware Supply Chain

Properties

Name Type Description
timestamp string
package_name string
package_version string
package_type string
repository string
policy_name string
action_taken string
reason string
requesting_user string
View JSON Schema on GitHub

JSON Schema

jfrog-auditentry-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/AuditEntry",
  "title": "AuditEntry",
  "type": "object",
  "properties": {
    "timestamp": {
      "type": "string",
      "format": "date-time"
    },
    "package_name": {
      "type": "string"
    },
    "package_version": {
      "type": "string"
    },
    "package_type": {
      "type": "string"
    },
    "repository": {
      "type": "string"
    },
    "policy_name": {
      "type": "string"
    },
    "action_taken": {
      "type": "string",
      "enum": [
        "blocked",
        "allowed",
        "warned"
      ]
    },
    "reason": {
      "type": "string"
    },
    "requesting_user": {
      "type": "string"
    }
  }
}