{ "$schema": "https://json-structure.org/meta/core/v0/#", "$id": "https://raw.githubusercontent.com/api-evangelist/backblaze/refs/heads/main/json-structure/b2-native-api-list-parts-response-structure.json", "name": "ListPartsResponse", "description": "ListPartsResponse schema from Backblaze B2 Native API", "type": "object", "properties": { "parts": { "type": "array", "items": { "type": "object", "properties": { "fileId": { "type": "string" }, "partNumber": { "type": "int32" }, "contentLength": { "type": "int32" }, "contentSha1": { "type": "string" }, "uploadTimestamp": { "type": "int32" } } } }, "nextPartNumber": { "type": "int32", "nullable": true } } }