ripple-lib
Version:
Deprecated - consider migrating to xrpl.js: https://xrpl.org/xrpljs2-migration-guide.html
25 lines (24 loc) • 671 B
JSON
{
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "getPaths",
"type": "array",
"items": {
"type": "object",
"properties": {
"source": {
"$ref": "sourceAdjustment",
"description": "Properties of the source of the payment."
},
"destination": {
"$ref": "destinationAdjustment",
"description": "Properties of the destination of the payment."
},
"paths": {
"type": "string",
"description": "The paths of trustlines and orders to use in executing the payment."
}
},
"required": ["source", "destination", "paths"],
"additionalProperties": false
}
}