{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://cardano.blockfrost.io/schema/epoch_stake_content", "title": "Epoch Stake Content", "type": "array", "items": { "type": "object", "properties": { "stake_address": { "type": "string", "example": "stake1u9l5q5jwgelgagzyt6nuaasefgmn8pd25c8e9qpeprq0tdcp0e3uk", "description": "Stake address" }, "pool_id": { "type": "string", "example": "pool1pu5jlj4q9w9jlxeu370a3c9myx47md5j5m2str0naunn2q3lkdy", "description": "Bech32 prefix of the pool delegated to" }, "amount": { "type": "string", "example": "4440295078", "description": "Amount of active delegated stake in Lovelaces" } }, "required": [ "stake_address", "pool_id", "amount" ] } }