Aptos · Schema

VersionedEvent

An event from a transaction with a version

BlockchainWeb3MoveLayer 1CryptocurrencyNFTSmart ContractsDeFiTransactionsAccountsGraphQLgRPC

Properties

Name Type Description
version object
guid object
sequence_number object
type object
data object The JSON representation of the event
View JSON Schema on GitHub

JSON Schema

VersionedEvent.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://api-evangelist.github.io/aptos/json-schema/VersionedEvent.json",
  "title": "VersionedEvent",
  "type": "object",
  "description": "An event from a transaction with a version",
  "required": [
    "version",
    "guid",
    "sequence_number",
    "type",
    "data"
  ],
  "properties": {
    "version": {
      "$ref": "#/components/schemas/U64"
    },
    "guid": {
      "$ref": "#/components/schemas/EventGuid"
    },
    "sequence_number": {
      "$ref": "#/components/schemas/U64"
    },
    "type": {
      "$ref": "#/components/schemas/MoveType"
    },
    "data": {
      "description": "The JSON representation of the event"
    }
  }
}