{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://cardano.blockfrost.io/schema/account_registration_content", "title": "Account Registration Content", "type": "array", "items": { "type": "object", "properties": { "tx_hash": { "type": "string", "description": "Hash of the transaction containing the (de)registration certificate" }, "action": { "type": "string", "enum": [ "registered", "deregistered" ], "description": "Action in the certificate" }, "deposit": { "type": "string", "nullable": true, "description": "Deposit in Lovelaces paid at this registration. `null` on `deregistered` rows." }, "tx_slot": { "type": "integer", "description": "Slot of the transaction containing the (de)registration certificate" }, "block_time": { "type": "integer", "description": "Block creation time in UNIX time of the transaction containing the (de)registration certificate" }, "block_height": { "type": "integer", "description": "Block height of the transaction containing the (de)registration certificate" } }, "required": [ "tx_hash", "action", "deposit", "tx_slot", "block_time", "block_height" ] }, "example": [ { "tx_hash": "2dd15e0ef6e6a17841cb9541c27724072ce4d4b79b91e58432fbaa32d9572531", "action": "registered", "deposit": "2000000", "tx_slot": 45093580, "block_time": 1646437200, "block_height": 6745358 }, { "tx_hash": "1a0570af966fb355a7160e4f82d5a80b8681b7955f5d44bec0dde628516157f0", "action": "deregistered", "deposit": null, "tx_slot": 48093580, "block_time": 1649033600, "block_height": 7126896 } ] }