{ "$schema": "http://json-schema.org/draft-07/schema#", "title": "Rollup", "allOf": [ { "type": "object", "additionalProperties": false, "properties": { "id": { "type": "integer", "description": "Internal TzKT id", "format": "int32" }, "type": { "type": "string", "description": "Type of the account" }, "address": { "type": "string", "description": "Address of the account" }, "alias": { "type": "string", "description": "Name of the account", "nullable": true }, "creator": { "description": "Information about the account, which has deployed the rollup to the blockchain", "oneOf": [ { "$ref": "#/components/schemas/Alias" } ] }, "rollupBonds": { "type": "integer", "description": "Amount of mutez locked as bonds", "format": "int64" }, "activeTokensCount": { "type": "integer", "description": "Number of account tokens with non-zero balances", "format": "int32" }, "tokenBalancesCount": { "type": "integer", "description": "Number of tokens the account ever had", "format": "int32" }, "tokenTransfersCount": { "type": "integer", "description": "Number of token transfers from/to the account", "format": "int32" }, "activeTicketsCount": { "type": "integer", "description": "Number of tickets the account owns.", "format": "int32" }, "ticketBalancesCount": { "type": "integer", "description": "Number of tickets the account ever owned.", "format": "int32" }, "ticketTransfersCount": { "type": "integer", "description": "Number of ticket transfers from/to the account.", "format": "int32" }, "numTransactions": { "type": "integer", "description": "Number of transaction operations related to the account", "format": "int32" }, "txRollupOriginationCount": { "type": "integer", "description": "Number of tx rollup origination operations related to the account", "format": "int32" }, "txRollupSubmitBatchCount": { "type": "integer", "description": "Number of tx rollup submit batch operations related to the account", "format": "int32" }, "txRollupCommitCount": { "type": "integer", "description": "Number of tx rollup commit operations related to the account", "format": "int32" }, "txRollupReturnBondCount": { "type": "integer", "description": "Number of tx rollup return bond operations related to the account", "format": "int32" }, "txRollupFinalizeCommitmentCount": { "type": "integer", "description": "Number of tx rollup finalize commitment operations related to the account", "format": "int32" }, "txRollupRemoveCommitmentCount": { "type": "integer", "description": "Number of tx rollup remove commitment operations related to the account", "format": "int32" }, "txRollupRejectionCount": { "type": "integer", "description": "Number of tx rollup rejection operations related to the account", "format": "int32" }, "txRollupDispatchTicketsCount": { "type": "integer", "description": "Number of tx rollup dispatch tickets operations related to the account", "format": "int32" }, "transferTicketCount": { "type": "integer", "description": "Number of transfer ticket operations related to the account", "format": "int32" }, "firstActivity": { "type": "integer", "description": "Block height at which the ghost contract appeared first time", "format": "int32" }, "firstActivityTime": { "type": "string", "description": "Block datetime at which the ghost contract appeared first time (ISO 8601, e.g. `2020-02-20T02:40:57Z`)", "format": "date-time" }, "lastActivity": { "type": "integer", "description": "Height of the block in which the ghost contract state was changed last time", "format": "int32" }, "lastActivityTime": { "type": "string", "description": "Datetime of the block in which the ghost contract state was changed last time (ISO 8601, e.g. `2020-02-20T02:40:57Z`)", "format": "date-time" }, "extras": { "description": "Off-chain extras", "nullable": true } } } ] }