mirror of
https://github.com/alexgo-io/stacks-blockchain-api.git
synced 2026-06-14 08:29:57 +08:00
37 lines
1.1 KiB
JSON
37 lines
1.1 KiB
JSON
{
|
|
"$schema": "http://json-schema.org/draft-07/schema",
|
|
"$id": "rosetta-construction-parse-response",
|
|
"type": "object",
|
|
"title": "RosettaConstructionParseResponse",
|
|
"description": "RosettaConstructionParseResponse contains an array of operations that occur in a transaction blob. This should match the array of operations provided to /construction/preprocess and /construction/payloads.",
|
|
"required": ["operations"],
|
|
"properties": {
|
|
"operations": {
|
|
"type": "array",
|
|
"items": {
|
|
"$ref": "./../../entities/rosetta/rosetta-operation.schema.json"
|
|
}
|
|
},
|
|
"signers": {
|
|
"type": "array",
|
|
"description": "[DEPRECATED by account_identifier_signers in v1.4.4] All signers (addresses) of a particular transaction. If the transaction is unsigned, it should be empty.",
|
|
"items": {
|
|
"anyOf": [
|
|
{
|
|
"type": "string"
|
|
}
|
|
]
|
|
}
|
|
},
|
|
"account_identifier_signers": {
|
|
"type": "array",
|
|
"items": {
|
|
"$ref": "./../../entities/rosetta/rosetta-account-identifier.schema.json"
|
|
}
|
|
},
|
|
"metadata": {
|
|
"type": "object"
|
|
}
|
|
}
|
|
}
|