mirror of
https://github.com/alexgo-io/stacks-blockchain-api.git
synced 2026-05-30 18:13:59 +08:00
29 lines
496 B
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"
|
|
}
|
|
}
|
|
}
|
|
}
|