Files
stacks-blockchain-api/docs/api/rosetta/rosetta-construction-submit-request.schema.json
2020-10-02 22:24:40 +02:00

18 lines
528 B
JSON

{
"$schema": "http://json-schema.org/draft-07/schema",
"$id": "rosetta-construction-submit-request",
"type": "object",
"title": "RosettaConstructionSubmitRequest",
"description": "Submit the transaction in blockchain",
"required": ["network_identifier", "signed_transaction"],
"properties": {
"network_identifier": {
"$ref": "./../../entities/rosetta/rosetta-network-identifier.schema.json"
},
"signed_transaction": {
"type": "string",
"description": "Signed transaction"
}
}
}