Advertisement
Guest User

Untitled

a guest
Oct 22nd, 2019
182
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.12 KB | None | 0 0
  1. {
  2. "caption": "Transfer from card to card",
  3. "items": [
  4. [
  5. {
  6. "type": "int",
  7. "caption": "Amount of the transfer",
  8. "parameterId": "param1",
  9. "required": true
  10. },
  11. {
  12. "type": "int",
  13. "caption": "Amount of the transfer",
  14. "parameterId": "param2",
  15. "editable": true,
  16. "required": false
  17. }
  18. ],
  19. [
  20. {
  21. "type": "group",
  22. "caption": "Sender",
  23. "items": [
  24. [
  25. {
  26. "type": "list",
  27. "caption": "Payment system",
  28. "parameterId": "param3",
  29. "values": [
  30. {
  31. "id": 1,
  32. "caption": "Portmone"
  33. },
  34. {
  35. "id": 2,
  36. "caption": "EasyPay"
  37. }
  38. ],
  39. "required": true
  40. },
  41. {
  42. "type": "datetime",
  43. "parameterId": "param4",
  44. "editable": false
  45. }
  46. ],
  47. [
  48. {
  49. "type": "string",
  50. "caption": "Notify the recipient by email",
  51. "parameterId": "param5",
  52. "editable": true,
  53. "required": false
  54. }
  55. ]
  56. ]
  57. }
  58. ],
  59. [
  60. {
  61. "type": "group",
  62. "caption": "City fields",
  63. "items": [
  64. [
  65. {
  66. "type": "list",
  67. "caption": "City",
  68. "parameterId": "param6",
  69. "values": [
  70. {
  71. "id": "Kyiv"
  72. },
  73. {
  74. "id": "London"
  75. }
  76. ],
  77. "editable": true,
  78. "required": false
  79. }
  80. ]
  81. ]
  82. },
  83. {
  84. "type": "group",
  85. "caption": "Country fields",
  86. "items": [
  87. [
  88. {
  89. "type": "string",
  90. "caption": "Country",
  91. "parameterId": "param7",
  92. "editable": true,
  93. "required": false
  94. }
  95. ]
  96. ]
  97. }
  98. ]
  99. ]
  100. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement