Hedera · Schema

HookStorage

Distributed LedgerBlockchainDLTHashgraphTransactionsTokensNFTsSmart ContractsEnterprise

Properties

Name Type Description
key string
value stringnull
timestamp object
View JSON Schema on GitHub

JSON Schema

HookStorage.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/hedera/refs/heads/main/json-schema/HookStorage.json",
  "title": "HookStorage",
  "type": "object",
  "required": [
    "key",
    "timestamp",
    "value"
  ],
  "properties": {
    "key": {
      "example": "0x00000000000000000000000000000000000000000000000000000000000f9a17",
      "format": "binary",
      "type": "string"
    },
    "value": {
      "example": "0x00000000000000000000000000000000000000000000000000000000000f9a17",
      "format": "binary",
      "type": [
        "string",
        "null"
      ]
    },
    "timestamp": {
      "$ref": "#/components/schemas/Timestamp"
    }
  }
}