Aptos · Schema

Event

An event from a transaction

BlockchainWeb3MoveLayer 1CryptocurrencyNFTSmart ContractsDeFiTransactionsAccountsGraphQLgRPC

Properties

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

JSON Schema

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