Hedera · Schema

StakingRewardTransfer

A staking reward transfer

Distributed LedgerBlockchainDLTHashgraphTransactionsTokensNFTsSmart ContractsEnterprise

Properties

Name Type Description
account object
amount integer The number of tinybars awarded
View JSON Schema on GitHub

JSON Schema

StakingRewardTransfer.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/hedera/refs/heads/main/json-schema/StakingRewardTransfer.json",
  "title": "StakingRewardTransfer",
  "type": "object",
  "description": "A staking reward transfer",
  "required": [
    "account",
    "amount"
  ],
  "properties": {
    "account": {
      "$ref": "#/components/schemas/EntityId"
    },
    "amount": {
      "description": "The number of tinybars awarded",
      "example": 10,
      "format": "int64",
      "type": "integer"
    }
  },
  "example": {
    "account_id": "0.0.1000",
    "amount": 10
  }
}