Files
stacks-blockchain-api/docs/api/rosetta/rosetta-mempool-request.schema.json
Asim Mehmood d24bfe8956 fix: mempool schema files renamed: rosetta-mempool-transaction-list-* -> rosetta-mempool-*
For consistency, rename RosettaMempoolTransactionListRequest -> RosettaMempoolRequest
as well.
2020-09-01 08:26:03 -06:00

17 lines
515 B
JSON

{
"$schema": "http://json-schema.org/draft-07/schema",
"type": "object",
"title": "RosettaMempoolRequest",
"description": "Get all Transaction Identifiers in the mempool",
"required": ["network_identifier"],
"properties": {
"network_identifier": {
"description": "The network_identifier specifies which network a particular object is associated with.",
"$ref": "./../../entities/rosetta/rosetta-network-identifier.schema.json"
},
"metadata": {
"type": "object"
}
}
}