JFrog · Schema

EvidenceSearchRequest

ArtifactoryCI/CDContainer RegistryDevOpsMLOpsPackage ManagementSecuritySoftware Supply Chain

Properties

Name Type Description
subject_type string
predicate_type string
created_from string
created_to string
created_by string
limit integer
offset integer
View JSON Schema on GitHub

JSON Schema

jfrog-evidencesearchrequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/EvidenceSearchRequest",
  "title": "EvidenceSearchRequest",
  "type": "object",
  "properties": {
    "subject_type": {
      "type": "string",
      "enum": [
        "artifact",
        "build",
        "package",
        "release_bundle"
      ]
    },
    "predicate_type": {
      "type": "string",
      "format": "uri"
    },
    "created_from": {
      "type": "string",
      "format": "date-time"
    },
    "created_to": {
      "type": "string",
      "format": "date-time"
    },
    "created_by": {
      "type": "string"
    },
    "limit": {
      "type": "integer",
      "default": 25
    },
    "offset": {
      "type": "integer"
    }
  }
}