Hedera · Schema

AssessedCustomFee

Distributed LedgerBlockchainDLTHashgraphTransactionsTokensNFTsSmart ContractsEnterprise

Properties

Name Type Description
amount integer
collector_account_id object
effective_payer_account_ids array
token_id object
View JSON Schema on GitHub

JSON Schema

AssessedCustomFee.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/hedera/refs/heads/main/json-schema/AssessedCustomFee.json",
  "title": "AssessedCustomFee",
  "type": "object",
  "properties": {
    "amount": {
      "format": "int64",
      "type": "integer"
    },
    "collector_account_id": {
      "$ref": "#/components/schemas/EntityId"
    },
    "effective_payer_account_ids": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/EntityId"
      }
    },
    "token_id": {
      "$ref": "#/components/schemas/EntityId"
    }
  }
}