You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

get-paths.json 671B

123456789101112131415161718192021222324
  1. {
  2. "$schema": "http://json-schema.org/draft-04/schema#",
  3. "title": "getPaths",
  4. "type": "array",
  5. "items": {
  6. "type": "object",
  7. "properties": {
  8. "source": {
  9. "$ref": "sourceAdjustment",
  10. "description": "Properties of the source of the payment."
  11. },
  12. "destination": {
  13. "$ref": "destinationAdjustment",
  14. "description": "Properties of the destination of the payment."
  15. },
  16. "paths": {
  17. "type": "string",
  18. "description": "The paths of trustlines and orders to use in executing the payment."
  19. }
  20. },
  21. "required": ["source", "destination", "paths"],
  22. "additionalProperties": false
  23. }
  24. }