Tezos · Schema
BigMapKeyUpdate
TezosBlockchainTzKTBaking BadCryptocurrencySmart ContractsNFTTokensDelegationsStakingGovernanceFA1.2FA2WebSocket
Properties
| Name | Type | Description |
|---|---|---|
| id | integer | Internal Id, can be used for pagination |
| level | integer | Level of the block where the bigmap key was updated |
| timestamp | string | Timestamp of the block where the bigmap key was updated |
| action | string | Action with the key (`add_key`, `update_key`, `remove_key`) |
| value | object | Value in JSON or Micheline format, depending on the `micheline` query parameter. Note, if the action is `remove_key` it will contain the last non-null value. |
JSON Schema
{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "BigMapKeyUpdate",
"type": "object",
"additionalProperties": false,
"properties": {
"id": {
"type": "integer",
"description": "Internal Id, can be used for pagination",
"format": "int32"
},
"level": {
"type": "integer",
"description": "Level of the block where the bigmap key was updated",
"format": "int32"
},
"timestamp": {
"type": "string",
"description": "Timestamp of the block where the bigmap key was updated",
"format": "date-time"
},
"action": {
"type": "string",
"description": "Action with the key (`add_key`, `update_key`, `remove_key`)"
},
"value": {
"description": "Value in JSON or Micheline format, depending on the `micheline` query parameter.\nNote, if the action is `remove_key` it will contain the last non-null value."
}
}
}