An event from a transaction with a version
{ "$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" } } }