Hedera · Schema

CryptoAllowance

Distributed LedgerBlockchainDLTHashgraphTransactionsTokensNFTsSmart ContractsEnterprise
View JSON Schema on GitHub

JSON Schema

CryptoAllowance.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/hedera/refs/heads/main/json-schema/CryptoAllowance.json",
  "title": "CryptoAllowance",
  "allOf": [
    {
      "$ref": "#/components/schemas/Allowance"
    },
    {
      "properties": {
        "amount": {
          "description": "The amount remaining of the original amount granted in tinybars.",
          "type": "integer",
          "format": "int64"
        },
        "amount_granted": {
          "description": "The granted amount of the spender's allowance in tinybars.",
          "type": "integer",
          "format": "int64"
        }
      }
    }
  ]
}