Tezos · Schema
BigMapUpdate
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 was updated |
| timestamp | string | Timestamp of the block where the bigmap was updated |
| bigmap | integer | Bigmap ptr |
| contract | object | Smart contract in which's storage the bigmap is allocated |
| path | string | Path to the bigmap in the contract storage |
| action | string | Action with the bigmap (`allocate`, `add_key`, `update_key`, `remove_key`, `remove`) |
| content | object | Updated key. If the action is `allocate` or `remove` the content will be `null`. |
JSON Schema
{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "BigMapUpdate",
"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 was updated",
"format": "int32"
},
"timestamp": {
"type": "string",
"description": "Timestamp of the block where the bigmap was updated",
"format": "date-time"
},
"bigmap": {
"type": "integer",
"description": "Bigmap ptr",
"format": "int32"
},
"contract": {
"description": "Smart contract in which's storage the bigmap is allocated",
"oneOf": [
{
"$ref": "#/components/schemas/Alias"
}
]
},
"path": {
"type": "string",
"description": "Path to the bigmap in the contract storage"
},
"action": {
"type": "string",
"description": "Action with the bigmap (`allocate`, `add_key`, `update_key`, `remove_key`, `remove`)"
},
"content": {
"description": "Updated key.\nIf the action is `allocate` or `remove` the content will be `null`.",
"nullable": true,
"oneOf": [
{
"$ref": "#/components/schemas/BigMapKeyShort"
}
]
}
}
}