{ "$schema": "http://json-schema.org/draft-07/schema#", "$id": "https://api-evangelist.github.io/aptos/json-schema/TransactionsBatchSingleSubmissionFailure.json", "title": "TransactionsBatchSingleSubmissionFailure", "type": "object", "description": "Information telling which batch submission transactions failed", "required": [ "error", "transaction_index" ], "properties": { "error": { "$ref": "#/components/schemas/AptosError" }, "transaction_index": { "type": "integer", "format": "uint64", "description": "The index of which transaction failed, same as submission order" } } }