Tezos · Schema
Commitment
TezosBlockchainTzKTBaking BadCryptocurrencySmart ContractsNFTTokensDelegationsStakingGovernanceFA1.2FA2WebSocket
Properties
| Name | Type | Description |
|---|---|---|
| address | string | Blinded address of the account |
| balance | integer | Account balance to be activated |
| activated | boolean | Flag showing whether the account has been activated or not. |
| activationLevel | integer | Level of the block at which the account has been activated. `null` if the account is not activated yet. |
| activationTime | string | Datetime of the block at which the account has been activated (ISO 8601, e.g. `2020-02-20T02:40:57Z`). `null` if the account is not activated yet. |
| activatedAccount | object | Info about activated account. `null` if the account is not activated yet. |
JSON Schema
{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "Commitment",
"type": "object",
"additionalProperties": false,
"properties": {
"address": {
"type": "string",
"description": "Blinded address of the account"
},
"balance": {
"type": "integer",
"description": "Account balance to be activated",
"format": "int64"
},
"activated": {
"type": "boolean",
"description": "Flag showing whether the account has been activated or not."
},
"activationLevel": {
"type": "integer",
"description": "Level of the block at which the account has been activated. `null` if the account is not activated yet.",
"format": "int32",
"nullable": true
},
"activationTime": {
"type": "string",
"description": "Datetime of the block at which the account has been activated (ISO 8601, e.g. `2020-02-20T02:40:57Z`). `null` if the account is not activated yet.",
"format": "date-time",
"nullable": true
},
"activatedAccount": {
"description": "Info about activated account. `null` if the account is not activated yet.",
"nullable": true,
"oneOf": [
{
"$ref": "#/components/schemas/Alias"
}
]
}
}
}