Advertisement
Guest User

Untitled

a guest
Sep 21st, 2019
206
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.05 KB | None | 0 0
  1. {
  2. "description": "Tell us about yourself!",
  3. "type": "object",
  4. "properties":
  5. {
  6. "firstName":
  7. {
  8. "type": "string",
  9. "title": "first name"
  10. },
  11. "lastName":
  12. {
  13. "type": "string",
  14. "title": "last name"
  15. },
  16. "location":
  17. {
  18. "type": "string",
  19. "title": "location",
  20. "description": "your current place of residence"
  21. },
  22. "occupation":
  23. {
  24. "type": "string",
  25. "title": "occupation",
  26. "description": "your current occupation or short job description"
  27. },
  28. "income":
  29. {
  30. "type": "integer",
  31. "title": "income",
  32. "description": "your approximate yearly income in USD"
  33. },
  34. "birthDate":
  35. {
  36. "title": "birthdate",
  37. "type": "string",
  38. "format": "date"
  39. },
  40. "gender":
  41. {
  42. "title": "gender",
  43. "type": "string",
  44. "oneOf":
  45. [
  46. {
  47. "const": "MALE",
  48. "title": "male"
  49. },
  50. {
  51. "const": "FEMALE",
  52. "title": "female"
  53. },
  54. {
  55. "const": "OTHER",
  56. "title": "other"
  57. }
  58. ]
  59. },
  60. "ethnicity":
  61. {
  62. "title": "ethnicity",
  63. "type": "string",
  64. "oneOf":
  65. [
  66. {
  67. "const": "AFRICAN_AMERICAN",
  68. "title": "african-american"
  69. },
  70. {
  71. "const": "CAUCASIAN",
  72. "title": "caucasian"
  73. },
  74. {
  75. "const": "ASIAN",
  76. "title": "asian"
  77. }
  78. ]
  79. },
  80. "religion":
  81. {
  82. "title": "religion",
  83. "type": "string",
  84. "oneOf":
  85. [
  86. {
  87. "const": "CHRISTIAN",
  88. "title": "christian"
  89. },
  90. {
  91. "const": "JEWISH",
  92. "title": "jewish"
  93. },
  94. {
  95. "const": "MUSLIM",
  96. "title": "muslim"
  97. },
  98. {
  99. "const": "ATHIEST",
  100. "title": "athiest"
  101. }
  102. ]
  103. },
  104. "bestTraits":
  105. {
  106. "type": "array",
  107. "title": "best traits",
  108. "description": "a few of your best traits - what makes you special",
  109. "items":
  110. {
  111. "type": "string"
  112. }
  113. },
  114. "interests":
  115. {
  116. "type": "array",
  117. "title": "interests",
  118. "description": "a few of your favorite interests, hobbies, etc.",
  119. "items":
  120. {
  121. "type": "string"
  122. }
  123. },
  124. "heightPreferenceMax":
  125. {
  126. "type": "number",
  127. "title": "minimum preferred height",
  128. "description": "the shortest you'd want your partner to be"
  129. },
  130. "heightPreferenceMin":
  131. {
  132. "type": "number",
  133. "title": "maximum preferred height",
  134. "description": "the tallest you'd want your partner to be"
  135. },
  136. "qualitiesPreference":
  137. {
  138. "type": "array",
  139. "title": "top qualities in a partner",
  140. "description": "a few of the qualities you look for the most in potential partners",
  141. "items":
  142. {
  143. "type": "string"
  144. }
  145. },
  146. "hangups":
  147. {
  148. "type": "array",
  149. "title": "relationship hangups",
  150. "description": "a few hangups, dealbreakers, etc. that tend to spoil your relationships",
  151. "items":
  152. {
  153. "type": "string"
  154. }
  155. },
  156. "relationshipGoals":
  157. {
  158. "type": "array",
  159. "title": "relationship goals",
  160. "description": "your main goals in using somnia amor to find a partner",
  161. "items":
  162. {
  163. "type": "string"
  164. }
  165. },
  166. "genderPreference":
  167. {
  168. "title": "gender preference",
  169. "type": "array",
  170. "description": "your gender preference for matches",
  171. "items":
  172. {
  173. "type": "string",
  174. "oneOf":
  175. [
  176. {
  177. "const": "MALE",
  178. "title": "male"
  179. },
  180. {
  181. "const": "FEMALE",
  182. "title": "female"
  183. },
  184. {
  185. "const": "OTHER",
  186. "title": "other"
  187. }
  188. ]
  189. }
  190. },
  191. "idealMatchEssay":
  192. {
  193. "title": "your ideal partner",
  194. "description": "in one or two sentences, describe your ideal partner",
  195. "type": "string",
  196. "maxLength": 2000
  197. }
  198. }
  199. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement