Backblaze · Schema

ListPartsResponse

ListPartsResponse schema from Backblaze B2 Native API

Cloud StorageObject StorageStorageBackup

Properties

Name Type Description
parts array
nextPartNumber integer
View JSON Schema on GitHub

JSON Schema

b2-native-api-list-parts-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-parts-response-schema.json",
  "title": "ListPartsResponse",
  "description": "ListPartsResponse schema from Backblaze B2 Native API",
  "type": "object",
  "properties": {
    "parts": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "fileId": {
            "type": "string"
          },
          "partNumber": {
            "type": "integer"
          },
          "contentLength": {
            "type": "integer"
          },
          "contentSha1": {
            "type": "string"
          },
          "uploadTimestamp": {
            "type": "integer"
          }
        }
      }
    },
    "nextPartNumber": {
      "type": "integer",
      "nullable": true
    }
  }
}