Backblaze · Schema

ListFileNamesResponse

ListFileNamesResponse schema from Backblaze B2 Native API

Cloud StorageObject StorageStorageBackup

Properties

Name Type Description
files array
nextFileName string Next file name for pagination
View JSON Schema on GitHub

JSON Schema

b2-native-api-list-file-names-response-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/backblaze/refs/heads/main/json-schema/b2-native-api-list-file-names-response-schema.json",
  "title": "ListFileNamesResponse",
  "description": "ListFileNamesResponse schema from Backblaze B2 Native API",
  "type": "object",
  "properties": {
    "files": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/FileInfo"
      }
    },
    "nextFileName": {
      "type": "string",
      "nullable": true,
      "description": "Next file name for pagination"
    }
  }
}