Files
stacks-blockchain-api/docs/api/address/get-address-nft-events.schema.json

29 lines
496 B
JSON

{
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"title": "AddressNftListResponse",
"required": [
"limit",
"offset",
"total",
"nft_events"
],
"properties": {
"limit": {
"type": "integer"
},
"offset": {
"type": "integer"
},
"total": {
"type": "integer"
},
"nft_events": {
"type": "array",
"items": {
"$ref": "../../entities/nft-events/nft-event.schema.json"
}
}
}
}