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-settings.json 672B

123456789101112131415161718192021222324
  1. {
  2. "$schema": "http://json-schema.org/draft-04/schema#",
  3. "title": "getSettingsParameters",
  4. "description": "Parameters for getSettings",
  5. "type": "object",
  6. "properties": {
  7. "address": {
  8. "$ref": "address",
  9. "description": "The address of the account to get the settings of."
  10. },
  11. "options": {
  12. "description": "Options that affect what to return.",
  13. "properties": {
  14. "ledgerVersion": {
  15. "$ref": "ledgerVersion",
  16. "description": "Get the settings as of this historical ledger version."
  17. }
  18. },
  19. "additionalProperties": false
  20. }
  21. },
  22. "required": ["address"],
  23. "additionalProperties": false
  24. }