{
  "type": "object",
  "title": "RosettaConstructionPayloadResponse",
  "description": "RosettaConstructionPayloadResponse is returned by /construction/payloads. It contains an unsigned transaction blob (that is usually needed to construct the a network transaction from a collection of signatures) and an array of payloads that must be signed by the caller.",
  "required": ["unsigned_transaction", "payloads"],
  "additionalProperties": false,
  "properties": {
    "unsigned_transaction": {
      "type": "string",
      "description": "This is an unsigned transaction blob (that is usually needed to construct the a network transaction from a collection of signatures)"
    },
    "payloads": {
      "type": "array",
      "description": "An array of payloads that must be signed by the caller",
      "items": {
        "$ref": "./../../entities/rosetta/rosetta-signing-payload.schema.json"
      }
    }
  }
}
