Veritas NetBackup · Schema

JobFileListResponse

BackupData ProtectionDisaster RecoveryEnterpriseRecoveryStorage

Properties

Name Type Description
data array
meta object
View JSON Schema on GitHub

JSON Schema

veritas-netbackup-jobfilelistresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/JobFileListResponse",
  "title": "JobFileListResponse",
  "type": "object",
  "properties": {
    "data": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "type": {
            "type": "string",
            "const": "jobFileEntry"
          },
          "id": {
            "type": "string"
          },
          "attributes": {
            "type": "object",
            "properties": {
              "fileName": {
                "type": "string",
                "description": "Full path of the file"
              },
              "fileSize": {
                "type": "integer",
                "description": "Size of the file in bytes"
              }
            }
          }
        }
      },
      "example": []
    },
    "meta": {
      "$ref": "#/components/schemas/PaginationMeta"
    }
  }
}