Advertisement
Guest User

Untitled

a guest
Jul 20th, 2018
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.71 KB | None | 0 0
  1. {
  2. "options": [
  3. {
  4. "optionType": "INPUT",
  5. "defaultValue": "",
  6. "name": "url",
  7. "validationData": {
  8. "required": true
  9. }
  10. },
  11. {
  12. "optionType": "SELECT",
  13. "defaultValue": "get",
  14. "name": "method",
  15. "validationData": {
  16. "required": true
  17. },
  18. "additionalInfo": {
  19. "items": [
  20. {
  21. "description": "GET",
  22. "value": "get"
  23. },
  24. {
  25. "description": "POST",
  26. "value": "post"
  27. }
  28. ]
  29. }
  30. },
  31. {
  32. "optionType": "BUTTON",
  33. "defaultValue": "rest",
  34. "additionalInfo": {
  35. "action": "modal"
  36. }
  37. }
  38. ]
  39. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement