mirror of
https://github.com/alexgo-io/stacks-blockchain-api.git
synced 2026-01-12 22:43:34 +08:00
* fix: openapi lint validator * fix: balances schema * fix: add title to all entities * fix: some additionalProperties and duplicate names * fix: remove additional properties for rosetta * fix: rosetta tests * style: remove empty description
21 lines
926 B
JSON
21 lines
926 B
JSON
{
|
|
"type": "object",
|
|
"title": "RosettaConstructionParseRequest",
|
|
"description": "Parse is called on both unsigned and signed transactions to understand the intent of the formulated transaction. This is run as a sanity check before signing (after /construction/payloads) and before broadcast (after /construction/combine).",
|
|
"required": ["network_identifier", "signed", "transaction"],
|
|
"additionalProperties": false,
|
|
"properties": {
|
|
"network_identifier": {
|
|
"$ref": "./../../entities/rosetta/rosetta-network-identifier.schema.json"
|
|
},
|
|
"signed": {
|
|
"type": "boolean",
|
|
"description": "Signed is a boolean indicating whether the transaction is signed."
|
|
},
|
|
"transaction": {
|
|
"type": "string",
|
|
"description": "This must be either the unsigned transaction blob returned by /construction/payloads or the signed transaction blob returned by /construction/combine."
|
|
}
|
|
}
|
|
}
|