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-transaction.json 1.1KB

12345678910111213141516171819202122232425262728
  1. {
  2. "$schema": "http://json-schema.org/draft-04/schema#",
  3. "title": "getTransactionParameters",
  4. "description": "Parameters for getTransaction",
  5. "type": "object",
  6. "properties": {
  7. "id": {"$ref": "transactionHash"},
  8. "options": {
  9. "description": "Options to limit the ledger versions to search or include raw transaction data.",
  10. "properties": {
  11. "minLedgerVersion": {
  12. "$ref": "ledgerVersion",
  13. "description": "The lowest ledger version to search. This must be an integer greater than 0, or one of the following strings: 'validated', 'closed', 'current'."
  14. },
  15. "maxLedgerVersion": {
  16. "$ref": "ledgerVersion",
  17. "description": "The highest ledger version to search. This must be an integer greater than 0, or one of the following strings: 'validated', 'closed', 'current'."
  18. },
  19. "includeRawTransaction": {
  20. "description": "Include raw transaction data. For advanced users; exercise caution when interpreting this data."
  21. }
  22. },
  23. "additionalProperties": false
  24. }
  25. },
  26. "additionalProperties": false,
  27. "required": ["id"]
  28. }