Files
stacks-blockchain-api/docs/api/transaction/get-raw-transaction.schema.json
2021-03-16 13:21:19 +01:00

14 lines
311 B
JSON

{
"$schema": "http://json-schema.org/draft-07/schema#",
"description": "GET raw transaction",
"title": "GetRawTransactionResult",
"type": "object",
"required": ["raw_tx"],
"properties": {
"raw_tx": {
"type":"string",
"description": "A hex encoded serialized transaction"
}
}
}