Advertisement
ananungi

patient registration -json

Mar 20th, 2022
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.88 KB | None | 0 0
  1. {
  2. "label": "Gender",
  3. "title": "Participant Demographics",
  4. "subtitle": "What's the participant's gender? (Required)",
  5. "fields": [
  6. {
  7. "name": "gender",
  8. "required": true,
  9. "type": "select",
  10. "options": [
  11. "Male",
  12. "Female",
  13. "Others",
  14. "Prefer not to say"
  15. ]
  16. }
  17. ]
  18. },
  19. {
  20. "label": "Pregnancy Information",
  21. "title": "Participant Demographics",
  22. "subtitle": "Are you pregnant?",
  23. "fields": [
  24. {
  25. "name": "Pregnancy Information",
  26. "label": "Pregnancy Information",
  27. "required": false,
  28. "type": "select",
  29. "options": [
  30. "Yes",
  31. "No"
  32. ]
  33. }
  34. ]
  35. },
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement