Hedera · Schema

FixedFee

Distributed LedgerBlockchainDLTHashgraphTransactionsTokensNFTsSmart ContractsEnterprise

Properties

Name Type Description
all_collectors_are_exempt boolean
amount integer
collector_account_id object
denominating_token_id object
View JSON Schema on GitHub

JSON Schema

FixedFee.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/hedera/refs/heads/main/json-schema/FixedFee.json",
  "title": "FixedFee",
  "type": "object",
  "properties": {
    "all_collectors_are_exempt": {
      "type": "boolean",
      "example": false
    },
    "amount": {
      "example": 100,
      "format": "int64",
      "type": "integer"
    },
    "collector_account_id": {
      "$ref": "#/components/schemas/EntityId"
    },
    "denominating_token_id": {
      "$ref": "#/components/schemas/EntityId"
    }
  }
}