JFrog · Schema

FolderInfo

ArtifactoryCI/CDContainer RegistryDevOpsMLOpsPackage ManagementSecuritySoftware Supply Chain

Properties

Name Type Description
repo string
path string
created string
createdBy string
lastModified string
modifiedBy string
lastUpdated string
children array
uri string
View JSON Schema on GitHub

JSON Schema

jfrog-folderinfo-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/FolderInfo",
  "title": "FolderInfo",
  "type": "object",
  "properties": {
    "repo": {
      "type": "string"
    },
    "path": {
      "type": "string"
    },
    "created": {
      "type": "string",
      "format": "date-time"
    },
    "createdBy": {
      "type": "string"
    },
    "lastModified": {
      "type": "string",
      "format": "date-time"
    },
    "modifiedBy": {
      "type": "string"
    },
    "lastUpdated": {
      "type": "string",
      "format": "date-time"
    },
    "children": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "uri": {
            "type": "string"
          },
          "folder": {
            "type": "boolean"
          }
        }
      }
    },
    "uri": {
      "type": "string",
      "format": "uri"
    }
  }
}