Tezos · Schema

StorageRecord

TezosBlockchainTzKTBaking BadCryptocurrencySmart ContractsNFTTokensDelegationsStakingGovernanceFA1.2FA2WebSocket

Properties

Name Type Description
id integer Id of the record that can be used for pagination
level integer Level at which the storage value was taken
timestamp string Timestamp at which the storage value was taken
operation object Operation that caused the storage change
value object New storage value
View JSON Schema on GitHub

JSON Schema

storagerecord.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "StorageRecord",
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "id": {
      "type": "integer",
      "description": "Id of the record that can be used for pagination",
      "format": "int32"
    },
    "level": {
      "type": "integer",
      "description": "Level at which the storage value was taken",
      "format": "int32"
    },
    "timestamp": {
      "type": "string",
      "description": "Timestamp at which the storage value was taken",
      "format": "date-time"
    },
    "operation": {
      "description": "Operation that caused the storage change",
      "oneOf": [
        {
          "$ref": "#/components/schemas/SourceOperation"
        }
      ]
    },
    "value": {
      "description": "New storage value"
    }
  }
}