Properties
| Name | Type | Description |
|---|---|---|
| checkpointCommitments | array | Commitments to checkpoint state |
| digest | object | Checkpoint digest |
| endOfEpochData | object | Present only on the final checkpoint of the epoch. |
| epoch | object | Checkpoint's epoch ID |
| epochRollingGasCostSummary | object | The running total gas costs of all transactions included in the current epoch so far until this checkpoint. |
| networkTotalTransactions | object | Total number of transactions committed since genesis, including those in this checkpoint. |
| previousDigest | object | Digest of the previous checkpoint |
| sequenceNumber | object | Checkpoint sequence number |
| timestampMs | object | Timestamp of the checkpoint - number of milliseconds from the Unix epoch Checkpoint timestamps are monotonic, but not strongly monotonic - subsequent checkpoints can have same timestamp if they origin |
| transactions | array | Transaction digests |
| validatorSignature | object | Validator Signature |
JSON Schema
{
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "https://raw.githubusercontent.com/api-evangelist/sui/main/json-schema/Checkpoint.json",
"title": "Checkpoint",
"description": "Sui Checkpoint schema",
"type": "object",
"required": [
"checkpointCommitments",
"digest",
"epoch",
"epochRollingGasCostSummary",
"networkTotalTransactions",
"sequenceNumber",
"timestampMs",
"transactions",
"validatorSignature"
],
"properties": {
"checkpointCommitments": {
"description": "Commitments to checkpoint state",
"type": "array",
"items": {
"$ref": "#/components/schemas/CheckpointCommitment"
}
},
"digest": {
"description": "Checkpoint digest",
"allOf": [
{
"$ref": "#/components/schemas/CheckpointDigest"
}
]
},
"endOfEpochData": {
"description": "Present only on the final checkpoint of the epoch.",
"anyOf": [
{
"$ref": "#/components/schemas/EndOfEpochData"
},
{
"type": "null"
}
]
},
"epoch": {
"description": "Checkpoint's epoch ID",
"allOf": [
{
"$ref": "#/components/schemas/BigInt_for_uint64"
}
]
},
"epochRollingGasCostSummary": {
"description": "The running total gas costs of all transactions included in the current epoch so far until this checkpoint.",
"allOf": [
{
"$ref": "#/components/schemas/GasCostSummary"
}
]
},
"networkTotalTransactions": {
"description": "Total number of transactions committed since genesis, including those in this checkpoint.",
"allOf": [
{
"$ref": "#/components/schemas/BigInt_for_uint64"
}
]
},
"previousDigest": {
"description": "Digest of the previous checkpoint",
"anyOf": [
{
"$ref": "#/components/schemas/CheckpointDigest"
},
{
"type": "null"
}
]
},
"sequenceNumber": {
"description": "Checkpoint sequence number",
"allOf": [
{
"$ref": "#/components/schemas/BigInt_for_uint64"
}
]
},
"timestampMs": {
"description": "Timestamp of the checkpoint - number of milliseconds from the Unix epoch Checkpoint timestamps are monotonic, but not strongly monotonic - subsequent checkpoints can have same timestamp if they originate from the same underlining consensus commit",
"allOf": [
{
"$ref": "#/components/schemas/BigInt_for_uint64"
}
]
},
"transactions": {
"description": "Transaction digests",
"type": "array",
"items": {
"$ref": "#/components/schemas/TransactionDigest"
}
},
"validatorSignature": {
"description": "Validator Signature",
"allOf": [
{
"$ref": "#/components/schemas/Base64"
}
]
}
}
}
Work with this as data
Every JSON Schema here is available over the APIs.io API and to AI agents over MCP.
MCP server
One button, every client — Claude, Cursor, VS Code and the rest.
https://apis.io/mcp
Tools for schemas
4 MCP tools reach this
find_json_schemasBrowse and filter every JSON Schema in the catalog.apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.resolveTurn a domain, URL or GitHub org into the provider it belongs to.find_cohortsEvery scored population of providers in the catalog.
Call it yourself
curl for this page
This JSON Schema
curl "https://apis.io/api/v1/json-schemas/Checkpoint"
All schemas
curl "https://apis.io/api/v1/json-schemas?limit=25"
Discovery needs no key. Ratings and market analysis are Pro.
Get an API key
Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.
A second provider on the same verified email joins the account you already have.