JFrog · Schema

DeployResponse

ArtifactoryCI/CDContainer RegistryDevOpsMLOpsPackage ManagementSecuritySoftware Supply Chain

Properties

Name Type Description
repo string
path string
created string
createdBy string
downloadUri string
mimeType string
size integer
checksums object
originalChecksums object
uri string
View JSON Schema on GitHub

JSON Schema

jfrog-deployresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/DeployResponse",
  "title": "DeployResponse",
  "type": "object",
  "properties": {
    "repo": {
      "type": "string"
    },
    "path": {
      "type": "string"
    },
    "created": {
      "type": "string",
      "format": "date-time"
    },
    "createdBy": {
      "type": "string"
    },
    "downloadUri": {
      "type": "string",
      "format": "uri"
    },
    "mimeType": {
      "type": "string"
    },
    "size": {
      "type": "integer"
    },
    "checksums": {
      "$ref": "#/components/schemas/Checksums"
    },
    "originalChecksums": {
      "$ref": "#/components/schemas/Checksums"
    },
    "uri": {
      "type": "string",
      "format": "uri"
    }
  }
}