Hedera · Schema

ConsensusCustomFees

Custom fees assessed for each message submitted to the topic

Distributed LedgerBlockchainDLTHashgraphTransactionsTokensNFTsSmart ContractsEnterprise

Properties

Name Type Description
created_timestamp object
fixed_fees array
View JSON Schema on GitHub

JSON Schema

ConsensusCustomFees.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/hedera/refs/heads/main/json-schema/ConsensusCustomFees.json",
  "title": "ConsensusCustomFees",
  "description": "Custom fees assessed for each message submitted to the topic",
  "type": "object",
  "properties": {
    "created_timestamp": {
      "$ref": "#/components/schemas/Timestamp"
    },
    "fixed_fees": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/FixedCustomFee"
      }
    }
  }
}