Advertisement
Guest User

Untitled

a guest
Jul 17th, 2019
117
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.05 KB | None | 0 0
  1. export const PHQ_9 = {
  2. startingQuestion:
  3. "In the pas two weeks, in what capacity have you experienced any of the following?",
  4. questions: [
  5. {
  6. question: "Little interest or pleasure in doing things",
  7. answers: [
  8. { points: 0, answer: "Not at all" },
  9. { points: 1, answer: "Several days" },
  10. { points: 2, answer: "More than half the days" },
  11. { poitns: 3, answer: "Nearly every day" }
  12. ]
  13. },
  14. {
  15. question: "Feeling down, depressed, or hopeless",
  16. answers: [
  17. { points: 0, answer: "Not at all" },
  18. { points: 1, answer: "Several days" },
  19. { points: 2, answer: "More than half the days" },
  20. { poitns: 3, answer: "Nearly every day" }
  21. ]
  22. },
  23. {
  24. question: "Trouble falling/staying asleep, sleeping too much",
  25. answers: [
  26. { points: 0, answer: "Not at all" },
  27. { points: 1, answer: "Several days" },
  28. { points: 2, answer: "More than half the days" },
  29. { poitns: 3, answer: "Nearly every day" }
  30. ]
  31. },
  32. {
  33. question: "Feeling tired or having little energy",
  34. answers: [
  35. { points: 0, answer: "Not at all" },
  36. { points: 1, answer: "Several days" },
  37. { points: 2, answer: "More than half the days" },
  38. { poitns: 3, answer: "Nearly every day" }
  39. ]
  40. },
  41. {
  42. question: "Poor appetite or overeating",
  43. answers: [
  44. { points: 0, answer: "Not at all" },
  45. { points: 1, answer: "Several days" },
  46. { points: 2, answer: "More than half the days" },
  47. { poitns: 3, answer: "Nearly every day" }
  48. ]
  49. },
  50. {
  51. question:
  52. "Feeling bad about yourself or that you are a failure orhave let yourself or your family down",
  53. answers: [
  54. { points: 0, answer: "Not at all" },
  55. { points: 1, answer: "Several days" },
  56. { points: 2, answer: "More than half the days" },
  57. { poitns: 3, answer: "Nearly every day" }
  58. ]
  59. },
  60. {
  61. question:
  62. "Trouble concentrating on things, such as reading the newspaper or watching television",
  63. answers: [
  64. { points: 0, answer: "Not at all" },
  65. { points: 1, answer: "Several days" },
  66. { points: 2, answer: "More than half the days" },
  67. { poitns: 3, answer: "Nearly every day" }
  68. ]
  69. },
  70. {
  71. question:
  72. "Moving or speaking so slowly that other people could have noticed. Or the opposite; being so fidgety or restless that you have been moving around a lot more than usual.",
  73. answers: [
  74. { points: 0, answer: "Not at all" },
  75. { points: 1, answer: "Several days" },
  76. { points: 2, answer: "More than half the days" },
  77. { poitns: 3, answer: "Nearly every day" }
  78. ]
  79. },
  80. {
  81. question:
  82. "Thoughts that you would be better off dead or of hurting yourself in some way",
  83. answers: [
  84. { points: 0, answer: "Not at all" },
  85. { points: 1, answer: "Several days" },
  86. { points: 2, answer: "More than half the days" },
  87. { poitns: 3, answer: "Nearly every day" }
  88. ]
  89. }
  90. ]
  91. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement