Hedera · Schema

ChunkInfo

Distributed LedgerBlockchainDLTHashgraphTransactionsTokensNFTsSmart ContractsEnterprise

Properties

Name Type Description
initial_transaction_id object
number integer
total integer
View JSON Schema on GitHub

JSON Schema

ChunkInfo.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/hedera/refs/heads/main/json-schema/ChunkInfo.json",
  "title": "ChunkInfo",
  "type": [
    "object",
    "null"
  ],
  "properties": {
    "initial_transaction_id": {
      "$ref": "#/components/schemas/TransactionId"
    },
    "number": {
      "example": 1,
      "format": "int32",
      "type": "integer"
    },
    "total": {
      "example": 2,
      "format": "int32",
      "type": "integer"
    }
  }
}