Advertisement
Guest User

Untitled

a guest
Jun 27th, 2017
212
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 41.17 KB | None | 0 0
  1. [
  2. {
  3. id: "profile-street",
  4. question: "Street",
  5. required: true,
  6. limit: 40,
  7. type: "text"
  8. },
  9. {
  10. id: "profile-street2",
  11. question: "Street 2",
  12. required: false,
  13. limit: 25,
  14. type: "text"
  15. },
  16. {
  17. id: "profile-city",
  18. question: "City",
  19. required: true,
  20. limit: 25,
  21. type: "text"
  22. },
  23. {
  24. id: "profile-countryState",
  25. question: "Country/State",
  26. required: true,
  27. options: [
  28. {
  29. value: "US",
  30. label: "United States"
  31. },
  32. {
  33. value: "CA",
  34. label: "Canada"
  35. }
  36. ],
  37. hierarchicalOptions: [
  38. {
  39. id: "countryState_US",
  40. condition: {
  41. id: "profile-countryState",
  42. value: "US"
  43. },
  44. options: [
  45. {
  46. value: "AL",
  47. label: "Alabama"
  48. },
  49. {
  50. value: "AK",
  51. label: "Alaska"
  52. },
  53. {
  54. value: "AZ",
  55. label: "Arizona"
  56. },
  57. {
  58. value: "AR",
  59. label: "Arkansas"
  60. },
  61. {
  62. value: "CA",
  63. label: "California"
  64. },
  65. {
  66. value: "CO",
  67. label: "Colorado"
  68. },
  69. {
  70. value: "CT",
  71. label: "Connecticut"
  72. },
  73. {
  74. value: "DE",
  75. label: "Delaware"
  76. },
  77. {
  78. value: "DC",
  79. label: "District of Columbia"
  80. },
  81. {
  82. value: "FL",
  83. label: "Florida"
  84. },
  85. {
  86. value: "GA",
  87. label: "Georgia"
  88. },
  89. {
  90. value: "HI",
  91. label: "Hawaii"
  92. },
  93. {
  94. value: "ID",
  95. label: "Idaho"
  96. },
  97. {
  98. value: "IL",
  99. label: "Illinois"
  100. },
  101. {
  102. value: "IN",
  103. label: "Indiana"
  104. },
  105. {
  106. value: "IA",
  107. label: "Iowa"
  108. },
  109. {
  110. value: "KS",
  111. label: "Kansas"
  112. },
  113. {
  114. value: "KY",
  115. label: "Kentucky"
  116. },
  117. {
  118. value: "LA",
  119. label: "Louisiana"
  120. },
  121. {
  122. value: "ME",
  123. label: "Maine"
  124. },
  125. {
  126. value: "MD",
  127. label: "Maryland"
  128. },
  129. {
  130. value: "MA",
  131. label: "Massachusetts"
  132. },
  133. {
  134. value: "MI",
  135. label: "Michigan"
  136. },
  137. {
  138. value: "MN",
  139. label: "Minnesota"
  140. },
  141. {
  142. value: "MS",
  143. label: "Mississippi"
  144. },
  145. {
  146. value: "MO",
  147. label: "Missouri"
  148. },
  149. {
  150. value: "MT",
  151. label: "Montana"
  152. },
  153. {
  154. value: "NE",
  155. label: "Nebraska"
  156. },
  157. {
  158. value: "NV",
  159. label: "Nevada"
  160. },
  161. {
  162. value: "NH",
  163. label: "New Hampshire"
  164. },
  165. {
  166. value: "NJ",
  167. label: "New Jersey"
  168. },
  169. {
  170. value: "NM",
  171. label: "New Mexico"
  172. },
  173. {
  174. value: "NY",
  175. label: "New York"
  176. },
  177. {
  178. value: "NC",
  179. label: "North Carolina"
  180. },
  181. {
  182. value: "ND",
  183. label: "North Dakota"
  184. },
  185. {
  186. value: "OH",
  187. label: "Ohio"
  188. },
  189. {
  190. value: "OK",
  191. label: "Oklahoma"
  192. },
  193. {
  194. value: "OR",
  195. label: "Oregon"
  196. },
  197. {
  198. value: "PA",
  199. label: "Pennsylvania"
  200. },
  201. {
  202. value: "RI",
  203. label: "Rhode Island"
  204. },
  205. {
  206. value: "SC",
  207. label: "South Carolina"
  208. },
  209. {
  210. value: "SD",
  211. label: "South Dakota"
  212. },
  213. {
  214. value: "TN",
  215. label: "Tennessee"
  216. },
  217. {
  218. value: "TX",
  219. label: "Texas"
  220. },
  221. {
  222. value: "UT",
  223. label: "Utah"
  224. },
  225. {
  226. value: "VT",
  227. label: "Vermont"
  228. },
  229. {
  230. value: "VA",
  231. label: "Virginia"
  232. },
  233. {
  234. value: "WA",
  235. label: "Washington"
  236. },
  237. {
  238. value: "WV",
  239. label: "West Virginia"
  240. },
  241. {
  242. value: "WI",
  243. label: "Wisconsin"
  244. },
  245. {
  246. value: "WY",
  247. label: "Wyoming"
  248. },
  249. {
  250. value: "PR",
  251. label: "Puerto Rico"
  252. },
  253. {
  254. value: "NA",
  255. label: "Other"
  256. },
  257. {
  258. value: "GU",
  259. label: "Guam"
  260. },
  261. {
  262. value: "MP",
  263. label: "Northern Marianas Islands"
  264. },
  265. {
  266. value: "VI",
  267. label: "Virgin Islands"
  268. }
  269. ]
  270. },
  271. {
  272. id: "countryState_CA",
  273. condition: {
  274. id: "profile-countryState",
  275. value: "CA"
  276. },
  277. options: [
  278. {
  279. value: "AB",
  280. label: "Alberta"
  281. },
  282. {
  283. value: "BC",
  284. label: "British Columbia"
  285. },
  286. {
  287. value: "MB",
  288. label: "Manitoba"
  289. },
  290. {
  291. value: "NB",
  292. label: "New Brunswick"
  293. },
  294. {
  295. value: "NL",
  296. label: "Newfoundland and Labrador"
  297. },
  298. {
  299. value: "NT",
  300. label: "Northwest Territories"
  301. },
  302. {
  303. value: "NS",
  304. label: "Nova Scotia"
  305. },
  306. {
  307. value: "NU",
  308. label: "Nunavut"
  309. },
  310. {
  311. value: "ON",
  312. label: "Ontario"
  313. },
  314. {
  315. value: "PE",
  316. label: "Prince Edward Island"
  317. },
  318. {
  319. value: "QC",
  320. label: "Quebec"
  321. },
  322. {
  323. value: "SK",
  324. label: "Saskatchewan"
  325. },
  326. {
  327. value: "YT",
  328. label: "Yukon"
  329. }
  330. ]
  331. }
  332. ],
  333. type: "hierarchical"
  334. },
  335. {
  336. id: "profile-zip",
  337. question: "Zip/Postal Code",
  338. required: true,
  339. limit: 6,
  340. type: "text"
  341. },
  342. {
  343. id: "profile-atLeast18",
  344. question: "Are you at least 18 years of age?",
  345. required: true,
  346. options: [
  347. {
  348. value: "1",
  349. label: "Yes"
  350. },
  351. {
  352. value: "0",
  353. label: "No"
  354. }
  355. ],
  356. type: "select"
  357. },
  358. {
  359. id: "profile-permit",
  360. question: "Can you provide a work permit?",
  361. required: true,
  362. condition: {
  363. id: "profile-atLeast18",
  364. value: "0"
  365. },
  366. options: [
  367. {
  368. value: "1",
  369. label: "Yes"
  370. },
  371. {
  372. value: "0",
  373. label: "No"
  374. }
  375. ],
  376. type: "select"
  377. },
  378. {
  379. id: "profile-legalEligible",
  380. question: "Are you legally eligible to work in the country you wish to work in?",
  381. required: true,
  382. options: [
  383. {
  384. value: "1",
  385. label: "Yes"
  386. },
  387. {
  388. value: "0",
  389. label: "No"
  390. }
  391. ],
  392. type: "select"
  393. },
  394. {
  395. id: "profile-transportation",
  396. question: "Do you have reliable transportation?",
  397. required: true,
  398. options: [
  399. {
  400. value: "1",
  401. label: "Yes"
  402. },
  403. {
  404. value: "0",
  405. label: "No"
  406. }
  407. ],
  408. type: "select"
  409. },
  410. {
  411. id: "profile-driversLicense",
  412. question: "Do you have a valid drivers license?",
  413. required: true,
  414. options: [
  415. {
  416. value: "1",
  417. label: "Yes"
  418. },
  419. {
  420. value: "0",
  421. label: "No"
  422. }
  423. ],
  424. type: "select"
  425. },
  426. {
  427. id: "profile-workDistance",
  428. question: "How far are you willing to travel to work?",
  429. required: true,
  430. options: [
  431. {
  432. value: "km",
  433. label: "kilometers"
  434. },
  435. {
  436. value: "m",
  437. label: "miles"
  438. }
  439. ],
  440. hierarchicalOptions: [
  441. {
  442. id: "workDistance_kilometers",
  443. condition: {
  444. id: "profile-workDistance",
  445. value: "km"
  446. },
  447. options: [
  448. {
  449. value: "16.09",
  450. label: "16"
  451. },
  452. {
  453. value: "40.23",
  454. label: "40"
  455. },
  456. {
  457. value: "80.47",
  458. label: "80"
  459. },
  460. {
  461. value: "160.93",
  462. label: "160"
  463. },
  464. {
  465. value: "402.34",
  466. label: "400+"
  467. }
  468. ]
  469. },
  470. {
  471. id: "workDistance_miles",
  472. condition: {
  473. id: "profile-workDistance",
  474. value: "m"
  475. },
  476. options: [
  477. {
  478. value: "10",
  479. label: "10"
  480. },
  481. {
  482. value: "25",
  483. label: "25"
  484. },
  485. {
  486. value: "50",
  487. label: "50"
  488. },
  489. {
  490. value: "100",
  491. label: "100"
  492. },
  493. {
  494. value: "250",
  495. label: "250+"
  496. }
  497. ]
  498. }
  499. ],
  500. type: "hierarchical"
  501. },
  502. {
  503. id: "profile-scheduleType1",
  504. question: "Would you prefer to work Full/Part time or Temporary? First preference",
  505. required: true,
  506. options: [
  507. {
  508. value: "1",
  509. label: "Full time"
  510. },
  511. {
  512. value: "2",
  513. label: "Part time"
  514. },
  515. {
  516. value: "3",
  517. label: "Temporary"
  518. }
  519. ],
  520. type: "select"
  521. },
  522. {
  523. id: "profile-scheduleType2",
  524. question: "Would you prefer to work Full/Part time or Temporary? Second Preference",
  525. required: true,
  526. options: [
  527. {
  528. value: "1",
  529. label: "Full time"
  530. },
  531. {
  532. value: "2",
  533. label: "Part time"
  534. },
  535. {
  536. value: "3",
  537. label: "Temporary"
  538. }
  539. ],
  540. type: "select"
  541. },
  542. {
  543. id: "profile-scheduleShift1",
  544. question: "Would you prefer to work Days, Afternoons or Nights? First preference",
  545. required: true,
  546. options: [
  547. {
  548. value: "1",
  549. label: "Days"
  550. },
  551. {
  552. value: "2",
  553. label: "Afternoons"
  554. },
  555. {
  556. value: "3",
  557. label: "Nights"
  558. }
  559. ],
  560. type: "select"
  561. },
  562. {
  563. id: "profile-scheduleShift2",
  564. question: "Would you prefer to work Days, Afternoons or Nights? Second Preference",
  565. required: true,
  566. options: [
  567. {
  568. value: "1",
  569. label: "Days"
  570. },
  571. {
  572. value: "2",
  573. label: "Afternoons"
  574. },
  575. {
  576. value: "3",
  577. label: "Nights"
  578. }
  579. ],
  580. type: "select"
  581. },
  582. {
  583. id: "profile-availability",
  584. question: "Select which days of the week you are available to work",
  585. required: true,
  586. options: [
  587. {
  588. value: "all",
  589. label: "All"
  590. },
  591. {
  592. value: "mo",
  593. label: "Monday"
  594. },
  595. {
  596. value: "tu",
  597. label: "Tuesday"
  598. },
  599. {
  600. value: "we",
  601. label: "Wednesday"
  602. },
  603. {
  604. value: "th",
  605. label: "Thursday"
  606. },
  607. {
  608. value: "fr",
  609. label: "Friday"
  610. },
  611. {
  612. value: "sa",
  613. label: "Saturday"
  614. },
  615. {
  616. value: "su",
  617. label: "Sunday"
  618. },
  619. {
  620. value: "holidays",
  621. label: "Holidays"
  622. }
  623. ],
  624. type: "multiselect"
  625. },
  626. {
  627. id: "profile-changingSchedule",
  628. question: "Are you willing to work a changing schedule?",
  629. required: true,
  630. options: [
  631. {
  632. value: "1",
  633. label: "Yes"
  634. },
  635. {
  636. value: "3",
  637. label: "No"
  638. },
  639. {
  640. value: "2",
  641. label: "Occasionally"
  642. }
  643. ],
  644. type: "select"
  645. },
  646. {
  647. id: "profile-scheduleStart",
  648. question: "What is the earliest date you can start?",
  649. required: true,
  650. options: [
  651. {
  652. value: "1",
  653. label: "Immediately"
  654. },
  655. {
  656. value: "2",
  657. label: "1-2 weeks"
  658. },
  659. {
  660. value: "3",
  661. label: "Over 3 weeks"
  662. }
  663. ],
  664. type: "select"
  665. },
  666. {
  667. id: "profile-highSchoolFilter",
  668. question: "Did you attend HighSchool?",
  669. required: true,
  670. options: [
  671. {
  672. value: "1",
  673. label: "Yes"
  674. },
  675. {
  676. value: "0",
  677. label: "No"
  678. }
  679. ],
  680. type: "select"
  681. },
  682. {
  683. id: "profile-gradeLevelCompletion",
  684. question: "Select the highest grade level you have completed",
  685. required: true,
  686. condition: {
  687. id: "profile-highSchoolFilter",
  688. value: "1"
  689. },
  690. options: [
  691. {
  692. value: "2",
  693. label: "9th Grade"
  694. },
  695. {
  696. value: "3",
  697. label: "10th Grade"
  698. },
  699. {
  700. value: "4",
  701. label: "11th Grade"
  702. },
  703. {
  704. value: "5",
  705. label: "12th Grade"
  706. }
  707. ],
  708. type: "select"
  709. },
  710. {
  711. id: "profile-diplomaGED",
  712. question: "Do you have a high/secondary school diploma or GED?",
  713. required: true,
  714. options: [
  715. {
  716. value: "1",
  717. label: "Yes"
  718. },
  719. {
  720. value: "0",
  721. label: "No"
  722. }
  723. ],
  724. type: "select"
  725. },
  726. {
  727. id: "profile-highSchoolName",
  728. question: "High/Secondary school name",
  729. required: true,
  730. condition: {
  731. id: "profile-highSchoolFilter",
  732. value: "1"
  733. },
  734. limit: 60,
  735. type: "text"
  736. },
  737. {
  738. id: "profile-highSchoolCity",
  739. question: "School city",
  740. required: true,
  741. condition: {
  742. id: "profile-highSchoolFilter",
  743. value: "1"
  744. },
  745. limit: 25,
  746. type: "text"
  747. },
  748. {
  749. id: "profile-highSchoolState_Country",
  750. question: "School country",
  751. required: true,
  752. condition: {
  753. id: "profile-highSchoolFilter",
  754. value: "1"
  755. },
  756. options: [
  757. {
  758. value: "US",
  759. label: "United States"
  760. },
  761. {
  762. value: "CA",
  763. label: "Canada"
  764. }
  765. ],
  766. type: "select"
  767. },
  768. {
  769. id: "profile-highSchoolState_US",
  770. question: "School state/province",
  771. required: true,
  772. condition: {
  773. id: "profile-highSchoolState_Country",
  774. value: "US"
  775. },
  776. options: [
  777. {
  778. value: "AL",
  779. label: "Alabama"
  780. },
  781. {
  782. value: "AK",
  783. label: "Alaska"
  784. },
  785. {
  786. value: "AZ",
  787. label: "Arizona"
  788. },
  789. {
  790. value: "AR",
  791. label: "Arkansas"
  792. },
  793. {
  794. value: "CA",
  795. label: "California"
  796. },
  797. {
  798. value: "CO",
  799. label: "Colorado"
  800. },
  801. {
  802. value: "CT",
  803. label: "Connecticut"
  804. },
  805. {
  806. value: "DE",
  807. label: "Delaware"
  808. },
  809. {
  810. value: "DC",
  811. label: "District of Columbia"
  812. },
  813. {
  814. value: "FL",
  815. label: "Florida"
  816. },
  817. {
  818. value: "GA",
  819. label: "Georgia"
  820. },
  821. {
  822. value: "HI",
  823. label: "Hawaii"
  824. },
  825. {
  826. value: "ID",
  827. label: "Idaho"
  828. },
  829. {
  830. value: "IL",
  831. label: "Illinois"
  832. },
  833. {
  834. value: "IN",
  835. label: "Indiana"
  836. },
  837. {
  838. value: "IA",
  839. label: "Iowa"
  840. },
  841. {
  842. value: "KS",
  843. label: "Kansas"
  844. },
  845. {
  846. value: "KY",
  847. label: "Kentucky"
  848. },
  849. {
  850. value: "LA",
  851. label: "Louisiana"
  852. },
  853. {
  854. value: "ME",
  855. label: "Maine"
  856. },
  857. {
  858. value: "MD",
  859. label: "Maryland"
  860. },
  861. {
  862. value: "MA",
  863. label: "Massachusetts"
  864. },
  865. {
  866. value: "MI",
  867. label: "Michigan"
  868. },
  869. {
  870. value: "MN",
  871. label: "Minnesota"
  872. },
  873. {
  874. value: "MS",
  875. label: "Mississippi"
  876. },
  877. {
  878. value: "MO",
  879. label: "Missouri"
  880. },
  881. {
  882. value: "MT",
  883. label: "Montana"
  884. },
  885. {
  886. value: "NE",
  887. label: "Nebraska"
  888. },
  889. {
  890. value: "NV",
  891. label: "Nevada"
  892. },
  893. {
  894. value: "NH",
  895. label: "New Hampshire"
  896. },
  897. {
  898. value: "NJ",
  899. label: "New Jersey"
  900. },
  901. {
  902. value: "NM",
  903. label: "New Mexico"
  904. },
  905. {
  906. value: "NY",
  907. label: "New York"
  908. },
  909. {
  910. value: "NC",
  911. label: "North Carolina"
  912. },
  913. {
  914. value: "ND",
  915. label: "North Dakota"
  916. },
  917. {
  918. value: "OH",
  919. label: "Ohio"
  920. },
  921. {
  922. value: "OK",
  923. label: "Oklahoma"
  924. },
  925. {
  926. value: "OR",
  927. label: "Oregon"
  928. },
  929. {
  930. value: "PA",
  931. label: "Pennsylvania"
  932. },
  933. {
  934. value: "RI",
  935. label: "Rhode Island"
  936. },
  937. {
  938. value: "SC",
  939. label: "South Carolina"
  940. },
  941. {
  942. value: "SD",
  943. label: "South Dakota"
  944. },
  945. {
  946. value: "TN",
  947. label: "Tennessee"
  948. },
  949. {
  950. value: "TX",
  951. label: "Texas"
  952. },
  953. {
  954. value: "UT",
  955. label: "Utah"
  956. },
  957. {
  958. value: "VT",
  959. label: "Vermont"
  960. },
  961. {
  962. value: "VA",
  963. label: "Virginia"
  964. },
  965. {
  966. value: "WA",
  967. label: "Washington"
  968. },
  969. {
  970. value: "WV",
  971. label: "West Virginia"
  972. },
  973. {
  974. value: "WI",
  975. label: "Wisconsin"
  976. },
  977. {
  978. value: "WY",
  979. label: "Wyoming"
  980. },
  981. {
  982. value: "PR",
  983. label: "Puerto Rico"
  984. },
  985. {
  986. value: "NA",
  987. label: "Other"
  988. },
  989. {
  990. value: "GU",
  991. label: "Guam"
  992. },
  993. {
  994. value: "MP",
  995. label: "Northern Marianas Islands"
  996. },
  997. {
  998. value: "VI",
  999. label: "Virgin Islands"
  1000. }
  1001. ],
  1002. type: "select"
  1003. },
  1004. {
  1005. id: "profile-highSchoolState_CA",
  1006. question: "School state/province",
  1007. required: true,
  1008. condition: {
  1009. id: "profile-highSchoolState_Country",
  1010. value: "CA"
  1011. },
  1012. options: [
  1013. {
  1014. value: "AB",
  1015. label: "Alberta"
  1016. },
  1017. {
  1018. value: "BC",
  1019. label: "British Columbia"
  1020. },
  1021. {
  1022. value: "MB",
  1023. label: "Manitoba"
  1024. },
  1025. {
  1026. value: "NB",
  1027. label: "New Brunswick"
  1028. },
  1029. {
  1030. value: "NL",
  1031. label: "Newfoundland and Labrador"
  1032. },
  1033. {
  1034. value: "NT",
  1035. label: "Northwest Territories"
  1036. },
  1037. {
  1038. value: "NS",
  1039. label: "Nova Scotia"
  1040. },
  1041. {
  1042. value: "NU",
  1043. label: "Nunavut"
  1044. },
  1045. {
  1046. value: "ON",
  1047. label: "Ontario"
  1048. },
  1049. {
  1050. value: "PE",
  1051. label: "Prince Edward Island"
  1052. },
  1053. {
  1054. value: "QC",
  1055. label: "Quebec"
  1056. },
  1057. {
  1058. value: "SK",
  1059. label: "Saskatchewan"
  1060. },
  1061. {
  1062. value: "YT",
  1063. label: "Yukon"
  1064. }
  1065. ],
  1066. type: "select"
  1067. },
  1068. {
  1069. id: "profile-collegeFilter",
  1070. question: "Did you attend a college/university?",
  1071. required: true,
  1072. options: [
  1073. {
  1074. value: "1",
  1075. label: "Yes"
  1076. },
  1077. {
  1078. value: "0",
  1079. label: "No"
  1080. }
  1081. ],
  1082. type: "select"
  1083. },
  1084. {
  1085. id: "profile-collegeEducation",
  1086. question: "Select the highest level of college/university education",
  1087. required: true,
  1088. condition: {
  1089. id: "profile-collegeFilter",
  1090. value: "1"
  1091. },
  1092. options: [
  1093. {
  1094. value: "2",
  1095. label: "Some College / University"
  1096. },
  1097. {
  1098. value: "3",
  1099. label: "Associates Degree / Certificate"
  1100. },
  1101. {
  1102. value: "4",
  1103. label: "Bachelors Degree"
  1104. },
  1105. {
  1106. value: "5",
  1107. label: "Masters Degree or Higher"
  1108. }
  1109. ],
  1110. type: "select"
  1111. },
  1112. {
  1113. id: "profile-collegeName",
  1114. question: "College/University name",
  1115. required: true,
  1116. condition: {
  1117. id: "profile-collegeFilter",
  1118. value: "1"
  1119. },
  1120. limit: 60,
  1121. type: "text"
  1122. },
  1123. {
  1124. id: "profile-collegeCity",
  1125. question: "College/University city",
  1126. required: true,
  1127. condition: {
  1128. id: "profile-collegeFilter",
  1129. value: "1"
  1130. },
  1131. limit: 25,
  1132. type: "text"
  1133. },
  1134. {
  1135. id: "profile-collegeState_Country",
  1136. question: "College country",
  1137. required: true,
  1138. condition: {
  1139. id: "profile-collegeFilter",
  1140. value: "1"
  1141. },
  1142. options: [
  1143. {
  1144. value: "US",
  1145. label: "United States"
  1146. },
  1147. {
  1148. value: "CA",
  1149. label: "Canada"
  1150. }
  1151. ],
  1152. type: "select"
  1153. },
  1154. {
  1155. id: "profile-collegeState_US",
  1156. question: "College/University state/province",
  1157. required: true,
  1158. condition: {
  1159. id: "profile-collegeState_Country",
  1160. value: "US"
  1161. },
  1162. options: [
  1163. {
  1164. value: "AL",
  1165. label: "Alabama"
  1166. },
  1167. {
  1168. value: "AK",
  1169. label: "Alaska"
  1170. },
  1171. {
  1172. value: "AZ",
  1173. label: "Arizona"
  1174. },
  1175. {
  1176. value: "AR",
  1177. label: "Arkansas"
  1178. },
  1179. {
  1180. value: "CA",
  1181. label: "California"
  1182. },
  1183. {
  1184. value: "CO",
  1185. label: "Colorado"
  1186. },
  1187. {
  1188. value: "CT",
  1189. label: "Connecticut"
  1190. },
  1191. {
  1192. value: "DE",
  1193. label: "Delaware"
  1194. },
  1195. {
  1196. value: "DC",
  1197. label: "District of Columbia"
  1198. },
  1199. {
  1200. value: "FL",
  1201. label: "Florida"
  1202. },
  1203. {
  1204. value: "GA",
  1205. label: "Georgia"
  1206. },
  1207. {
  1208. value: "HI",
  1209. label: "Hawaii"
  1210. },
  1211. {
  1212. value: "ID",
  1213. label: "Idaho"
  1214. },
  1215. {
  1216. value: "IL",
  1217. label: "Illinois"
  1218. },
  1219. {
  1220. value: "IN",
  1221. label: "Indiana"
  1222. },
  1223. {
  1224. value: "IA",
  1225. label: "Iowa"
  1226. },
  1227. {
  1228. value: "KS",
  1229. label: "Kansas"
  1230. },
  1231. {
  1232. value: "KY",
  1233. label: "Kentucky"
  1234. },
  1235. {
  1236. value: "LA",
  1237. label: "Louisiana"
  1238. },
  1239. {
  1240. value: "ME",
  1241. label: "Maine"
  1242. },
  1243. {
  1244. value: "MD",
  1245. label: "Maryland"
  1246. },
  1247. {
  1248. value: "MA",
  1249. label: "Massachusetts"
  1250. },
  1251. {
  1252. value: "MI",
  1253. label: "Michigan"
  1254. },
  1255. {
  1256. value: "MN",
  1257. label: "Minnesota"
  1258. },
  1259. {
  1260. value: "MS",
  1261. label: "Mississippi"
  1262. },
  1263. {
  1264. value: "MO",
  1265. label: "Missouri"
  1266. },
  1267. {
  1268. value: "MT",
  1269. label: "Montana"
  1270. },
  1271. {
  1272. value: "NE",
  1273. label: "Nebraska"
  1274. },
  1275. {
  1276. value: "NV",
  1277. label: "Nevada"
  1278. },
  1279. {
  1280. value: "NH",
  1281. label: "New Hampshire"
  1282. },
  1283. {
  1284. value: "NJ",
  1285. label: "New Jersey"
  1286. },
  1287. {
  1288. value: "NM",
  1289. label: "New Mexico"
  1290. },
  1291. {
  1292. value: "NY",
  1293. label: "New York"
  1294. },
  1295. {
  1296. value: "NC",
  1297. label: "North Carolina"
  1298. },
  1299. {
  1300. value: "ND",
  1301. label: "North Dakota"
  1302. },
  1303. {
  1304. value: "OH",
  1305. label: "Ohio"
  1306. },
  1307. {
  1308. value: "OK",
  1309. label: "Oklahoma"
  1310. },
  1311. {
  1312. value: "OR",
  1313. label: "Oregon"
  1314. },
  1315. {
  1316. value: "PA",
  1317. label: "Pennsylvania"
  1318. },
  1319. {
  1320. value: "RI",
  1321. label: "Rhode Island"
  1322. },
  1323. {
  1324. value: "SC",
  1325. label: "South Carolina"
  1326. },
  1327. {
  1328. value: "SD",
  1329. label: "South Dakota"
  1330. },
  1331. {
  1332. value: "TN",
  1333. label: "Tennessee"
  1334. },
  1335. {
  1336. value: "TX",
  1337. label: "Texas"
  1338. },
  1339. {
  1340. value: "UT",
  1341. label: "Utah"
  1342. },
  1343. {
  1344. value: "VT",
  1345. label: "Vermont"
  1346. },
  1347. {
  1348. value: "VA",
  1349. label: "Virginia"
  1350. },
  1351. {
  1352. value: "WA",
  1353. label: "Washington"
  1354. },
  1355. {
  1356. value: "WV",
  1357. label: "West Virginia"
  1358. },
  1359. {
  1360. value: "WI",
  1361. label: "Wisconsin"
  1362. },
  1363. {
  1364. value: "WY",
  1365. label: "Wyoming"
  1366. },
  1367. {
  1368. value: "PR",
  1369. label: "Puerto Rico"
  1370. },
  1371. {
  1372. value: "NA",
  1373. label: "Other"
  1374. },
  1375. {
  1376. value: "GU",
  1377. label: "Guam"
  1378. },
  1379. {
  1380. value: "MP",
  1381. label: "Northern Marianas Islands"
  1382. },
  1383. {
  1384. value: "VI",
  1385. label: "Virgin Islands"
  1386. }
  1387. ],
  1388. type: "select"
  1389. },
  1390. {
  1391. id: "profile-collegeState_CA",
  1392. question: "College/University state/province",
  1393. required: true,
  1394. condition: {
  1395. id: "profile-collegeState_Country",
  1396. value: "CA"
  1397. },
  1398. options: [
  1399. {
  1400. value: "AB",
  1401. label: "Alberta"
  1402. },
  1403. {
  1404. value: "BC",
  1405. label: "British Columbia"
  1406. },
  1407. {
  1408. value: "MB",
  1409. label: "Manitoba"
  1410. },
  1411. {
  1412. value: "NB",
  1413. label: "New Brunswick"
  1414. },
  1415. {
  1416. value: "NL",
  1417. label: "Newfoundland and Labrador"
  1418. },
  1419. {
  1420. value: "NT",
  1421. label: "Northwest Territories"
  1422. },
  1423. {
  1424. value: "NS",
  1425. label: "Nova Scotia"
  1426. },
  1427. {
  1428. value: "NU",
  1429. label: "Nunavut"
  1430. },
  1431. {
  1432. value: "ON",
  1433. label: "Ontario"
  1434. },
  1435. {
  1436. value: "PE",
  1437. label: "Prince Edward Island"
  1438. },
  1439. {
  1440. value: "QC",
  1441. label: "Quebec"
  1442. },
  1443. {
  1444. value: "SK",
  1445. label: "Saskatchewan"
  1446. },
  1447. {
  1448. value: "YT",
  1449. label: "Yukon"
  1450. }
  1451. ],
  1452. type: "select"
  1453. },
  1454. {
  1455. id: "profile-collegeStudies",
  1456. question: "College/University studies (150 characters max.)",
  1457. required: true,
  1458. condition: {
  1459. id: "profile-collegeFilter",
  1460. value: "1"
  1461. },
  1462. type: "textArea"
  1463. },
  1464. {
  1465. id: "profile-tradeEducation",
  1466. question: "Did you attend a Trade, Career or Vocational School?",
  1467. required: true,
  1468. options: [
  1469. {
  1470. value: "1",
  1471. label: "Yes"
  1472. },
  1473. {
  1474. value: "0",
  1475. label: "No"
  1476. }
  1477. ],
  1478. type: "select"
  1479. },
  1480. {
  1481. id: "profile-tradeSchoolName",
  1482. question: "Trade school name",
  1483. required: true,
  1484. condition: {
  1485. id: "profile-tradeEducation",
  1486. value: "1"
  1487. },
  1488. limit: 60,
  1489. type: "text"
  1490. },
  1491. {
  1492. id: "profile-tradeSchoolCity",
  1493. question: "Trade school city",
  1494. required: true,
  1495. condition: {
  1496. id: "profile-tradeEducation",
  1497. value: "1"
  1498. },
  1499. limit: 25,
  1500. type: "text"
  1501. },
  1502. {
  1503. id: "profile-tradeSchoolState_Country",
  1504. question: "Trade school country",
  1505. required: true,
  1506. condition: {
  1507. id: "profile-tradeEducation",
  1508. value: "1"
  1509. },
  1510. options: [
  1511. {
  1512. value: "US",
  1513. label: "United States"
  1514. },
  1515. {
  1516. value: "CA",
  1517. label: "Canada"
  1518. }
  1519. ],
  1520. type: "select"
  1521. },
  1522. {
  1523. id: "profile-tradeSchoolState_US",
  1524. question: "Trade school state/province",
  1525. required: true,
  1526. condition: {
  1527. id: "profile-tradeSchoolState_Country",
  1528. value: "US"
  1529. },
  1530. options: [
  1531. {
  1532. value: "AL",
  1533. label: "Alabama"
  1534. },
  1535. {
  1536. value: "AK",
  1537. label: "Alaska"
  1538. },
  1539. {
  1540. value: "AZ",
  1541. label: "Arizona"
  1542. },
  1543. {
  1544. value: "AR",
  1545. label: "Arkansas"
  1546. },
  1547. {
  1548. value: "CA",
  1549. label: "California"
  1550. },
  1551. {
  1552. value: "CO",
  1553. label: "Colorado"
  1554. },
  1555. {
  1556. value: "CT",
  1557. label: "Connecticut"
  1558. },
  1559. {
  1560. value: "DE",
  1561. label: "Delaware"
  1562. },
  1563. {
  1564. value: "DC",
  1565. label: "District of Columbia"
  1566. },
  1567. {
  1568. value: "FL",
  1569. label: "Florida"
  1570. },
  1571. {
  1572. value: "GA",
  1573. label: "Georgia"
  1574. },
  1575. {
  1576. value: "HI",
  1577. label: "Hawaii"
  1578. },
  1579. {
  1580. value: "ID",
  1581. label: "Idaho"
  1582. },
  1583. {
  1584. value: "IL",
  1585. label: "Illinois"
  1586. },
  1587. {
  1588. value: "IN",
  1589. label: "Indiana"
  1590. },
  1591. {
  1592. value: "IA",
  1593. label: "Iowa"
  1594. },
  1595. {
  1596. value: "KS",
  1597. label: "Kansas"
  1598. },
  1599. {
  1600. value: "KY",
  1601. label: "Kentucky"
  1602. },
  1603. {
  1604. value: "LA",
  1605. label: "Louisiana"
  1606. },
  1607. {
  1608. value: "ME",
  1609. label: "Maine"
  1610. },
  1611. {
  1612. value: "MD",
  1613. label: "Maryland"
  1614. },
  1615. {
  1616. value: "MA",
  1617. label: "Massachusetts"
  1618. },
  1619. {
  1620. value: "MI",
  1621. label: "Michigan"
  1622. },
  1623. {
  1624. value: "MN",
  1625. label: "Minnesota"
  1626. },
  1627. {
  1628. value: "MS",
  1629. label: "Mississippi"
  1630. },
  1631. {
  1632. value: "MO",
  1633. label: "Missouri"
  1634. },
  1635. {
  1636. value: "MT",
  1637. label: "Montana"
  1638. },
  1639. {
  1640. value: "NE",
  1641. label: "Nebraska"
  1642. },
  1643. {
  1644. value: "NV",
  1645. label: "Nevada"
  1646. },
  1647. {
  1648. value: "NH",
  1649. label: "New Hampshire"
  1650. },
  1651. {
  1652. value: "NJ",
  1653. label: "New Jersey"
  1654. },
  1655. {
  1656. value: "NM",
  1657. label: "New Mexico"
  1658. },
  1659. {
  1660. value: "NY",
  1661. label: "New York"
  1662. },
  1663. {
  1664. value: "NC",
  1665. label: "North Carolina"
  1666. },
  1667. {
  1668. value: "ND",
  1669. label: "North Dakota"
  1670. },
  1671. {
  1672. value: "OH",
  1673. label: "Ohio"
  1674. },
  1675. {
  1676. value: "OK",
  1677. label: "Oklahoma"
  1678. },
  1679. {
  1680. value: "OR",
  1681. label: "Oregon"
  1682. },
  1683. {
  1684. value: "PA",
  1685. label: "Pennsylvania"
  1686. },
  1687. {
  1688. value: "RI",
  1689. label: "Rhode Island"
  1690. },
  1691. {
  1692. value: "SC",
  1693. label: "South Carolina"
  1694. },
  1695. {
  1696. value: "SD",
  1697. label: "South Dakota"
  1698. },
  1699. {
  1700. value: "TN",
  1701. label: "Tennessee"
  1702. },
  1703. {
  1704. value: "TX",
  1705. label: "Texas"
  1706. },
  1707. {
  1708. value: "UT",
  1709. label: "Utah"
  1710. },
  1711. {
  1712. value: "VT",
  1713. label: "Vermont"
  1714. },
  1715. {
  1716. value: "VA",
  1717. label: "Virginia"
  1718. },
  1719. {
  1720. value: "WA",
  1721. label: "Washington"
  1722. },
  1723. {
  1724. value: "WV",
  1725. label: "West Virginia"
  1726. },
  1727. {
  1728. value: "WI",
  1729. label: "Wisconsin"
  1730. },
  1731. {
  1732. value: "WY",
  1733. label: "Wyoming"
  1734. },
  1735. {
  1736. value: "PR",
  1737. label: "Puerto Rico"
  1738. },
  1739. {
  1740. value: "NA",
  1741. label: "Other"
  1742. },
  1743. {
  1744. value: "GU",
  1745. label: "Guam"
  1746. },
  1747. {
  1748. value: "MP",
  1749. label: "Northern Marianas Islands"
  1750. },
  1751. {
  1752. value: "VI",
  1753. label: "Virgin Islands"
  1754. }
  1755. ],
  1756. type: "select"
  1757. },
  1758. {
  1759. id: "profile-tradeSchoolState_CA",
  1760. question: "Trade school state/province",
  1761. required: true,
  1762. condition: {
  1763. id: "profile-tradeSchoolState_Country",
  1764. value: "CA"
  1765. },
  1766. options: [
  1767. {
  1768. value: "AB",
  1769. label: "Alberta"
  1770. },
  1771. {
  1772. value: "BC",
  1773. label: "British Columbia"
  1774. },
  1775. {
  1776. value: "MB",
  1777. label: "Manitoba"
  1778. },
  1779. {
  1780. value: "NB",
  1781. label: "New Brunswick"
  1782. },
  1783. {
  1784. value: "NL",
  1785. label: "Newfoundland and Labrador"
  1786. },
  1787. {
  1788. value: "NT",
  1789. label: "Northwest Territories"
  1790. },
  1791. {
  1792. value: "NS",
  1793. label: "Nova Scotia"
  1794. },
  1795. {
  1796. value: "NU",
  1797. label: "Nunavut"
  1798. },
  1799. {
  1800. value: "ON",
  1801. label: "Ontario"
  1802. },
  1803. {
  1804. value: "PE",
  1805. label: "Prince Edward Island"
  1806. },
  1807. {
  1808. value: "QC",
  1809. label: "Quebec"
  1810. },
  1811. {
  1812. value: "SK",
  1813. label: "Saskatchewan"
  1814. },
  1815. {
  1816. value: "YT",
  1817. label: "Yukon"
  1818. }
  1819. ],
  1820. type: "select"
  1821. },
  1822. {
  1823. id: "profile-tradeSchoolStudies",
  1824. question: "Trade school studies (250 characters max.)",
  1825. required: true,
  1826. condition: {
  1827. id: "profile-tradeEducation",
  1828. value: "1"
  1829. },
  1830. type: "textArea"
  1831. },
  1832. {
  1833. id: "profile-work1",
  1834. question: "Do you have prior work history? (up to five)",
  1835. required: true,
  1836. options: [
  1837. {
  1838. value: "1",
  1839. label: "Yes"
  1840. },
  1841. {
  1842. value: "0",
  1843. label: "No"
  1844. }
  1845. ],
  1846. type: "select"
  1847. },
  1848. {
  1849. id: "profile-workCompanyName1",
  1850. question: "Company name",
  1851. required: true,
  1852. condition: {
  1853. id: "profile-work1",
  1854. value: "1"
  1855. },
  1856. limit: 60,
  1857. type: "text"
  1858. },
  1859. {
  1860. id: "profile-workCompanyCity1",
  1861. question: "Company city",
  1862. required: true,
  1863. condition: {
  1864. id: "profile-work1",
  1865. value: "1"
  1866. },
  1867. limit: 25,
  1868. type: "text"
  1869. },
  1870. {
  1871. id: "profile-workTitle1",
  1872. question: "Last title or position held",
  1873. required: true,
  1874. condition: {
  1875. id: "profile-work1",
  1876. value: "1"
  1877. },
  1878. limit: 100,
  1879. type: "text"
  1880. },
  1881. {
  1882. id: "profile-workWhyLeaving1",
  1883. question: "Why have you left or plan on leaving this company?",
  1884. required: true,
  1885. condition: {
  1886. id: "profile-work1",
  1887. value: "1"
  1888. },
  1889. options: [
  1890. {
  1891. value: "1",
  1892. label: "Conflicting Views"
  1893. },
  1894. {
  1895. value: "2",
  1896. label: "Work Shortage"
  1897. },
  1898. {
  1899. value: "3",
  1900. label: "Fired / Asked to Resign"
  1901. },
  1902. {
  1903. value: "4",
  1904. label: "Position Eliminated"
  1905. },
  1906. {
  1907. value: "5",
  1908. label: "Better Opportunity"
  1909. },
  1910. {
  1911. value: "6",
  1912. label: "Other"
  1913. }
  1914. ],
  1915. type: "select"
  1916. },
  1917. {
  1918. id: "profile-workStartDate1",
  1919. question: "Start date",
  1920. required: true,
  1921. condition: {
  1922. id: "profile-work1",
  1923. value: "1"
  1924. },
  1925. format: "yyyy-MM-dd",
  1926. type: "date"
  1927. },
  1928. {
  1929. id: "profile-workStillWorking1",
  1930. question: "Still employed?",
  1931. required: true,
  1932. condition: {
  1933. id: "profile-work1",
  1934. value: "1"
  1935. },
  1936. options: [
  1937. {
  1938. value: "1",
  1939. label: "Yes"
  1940. },
  1941. {
  1942. value: "0",
  1943. label: "No"
  1944. }
  1945. ],
  1946. type: "select"
  1947. },
  1948. {
  1949. id: "profile-workEndDate1",
  1950. question: "End date",
  1951. required: true,
  1952. condition: {
  1953. id: "profile-workStillWorking1",
  1954. value: "0"
  1955. },
  1956. format: "yyyy-MM-dd",
  1957. type: "date"
  1958. },
  1959. {
  1960. id: "profile-work2",
  1961. question: "Do you have another prior work history? (up to five)",
  1962. required: true,
  1963. condition: {
  1964. id: "profile-work1",
  1965. value: "1"
  1966. },
  1967. options: [
  1968. {
  1969. value: "1",
  1970. label: "Yes"
  1971. },
  1972. {
  1973. value: "0",
  1974. label: "No"
  1975. }
  1976. ],
  1977. type: "select"
  1978. },
  1979. {
  1980. id: "profile-workCompanyName2",
  1981. question: "Company name",
  1982. required: true,
  1983. condition: {
  1984. id: "profile-work2",
  1985. value: "1"
  1986. },
  1987. limit: 60,
  1988. type: "text"
  1989. },
  1990. {
  1991. id: "profile-workCompanyCity2",
  1992. question: "Company city",
  1993. required: true,
  1994. condition: {
  1995. id: "profile-work2",
  1996. value: "1"
  1997. },
  1998. limit: 25,
  1999. type: "text"
  2000. },
  2001. {
  2002. id: "profile-workTitle2",
  2003. question: "Last title or position held",
  2004. required: true,
  2005. condition: {
  2006. id: "profile-work2",
  2007. value: "1"
  2008. },
  2009. limit: 100,
  2010. type: "text"
  2011. },
  2012. {
  2013. id: "profile-workWhyLeaving2",
  2014. question: "Why have you left or plan on leaving this company?",
  2015. required: true,
  2016. condition: {
  2017. id: "profile-work2",
  2018. value: "1"
  2019. },
  2020. options: [
  2021. {
  2022. value: "1",
  2023. label: "Conflicting Views"
  2024. },
  2025. {
  2026. value: "2",
  2027. label: "Work Shortage"
  2028. },
  2029. {
  2030. value: "3",
  2031. label: "Fired / Asked to Resign"
  2032. },
  2033. {
  2034. value: "4",
  2035. label: "Position Eliminated"
  2036. },
  2037. {
  2038. value: "5",
  2039. label: "Better Opportunity"
  2040. },
  2041. {
  2042. value: "6",
  2043. label: "Other"
  2044. }
  2045. ],
  2046. type: "select"
  2047. },
  2048. {
  2049. id: "profile-workStartDate2",
  2050. question: "Start date",
  2051. required: true,
  2052. condition: {
  2053. id: "profile-work2",
  2054. value: "1"
  2055. },
  2056. format: "yyyy-MM-dd",
  2057. type: "date"
  2058. },
  2059. {
  2060. id: "profile-workStillWorking2",
  2061. question: "Still employed?",
  2062. required: true,
  2063. condition: {
  2064. id: "profile-work2",
  2065. value: "1"
  2066. },
  2067. options: [
  2068. {
  2069. value: "1",
  2070. label: "Yes"
  2071. },
  2072. {
  2073. value: "0",
  2074. label: "No"
  2075. }
  2076. ],
  2077. type: "select"
  2078. },
  2079. {
  2080. id: "profile-workEndDate2",
  2081. question: "End date",
  2082. required: true,
  2083. condition: {
  2084. id: "profile-workStillWorking2",
  2085. value: "0"
  2086. },
  2087. format: "yyyy-MM-dd",
  2088. type: "date"
  2089. },
  2090. {
  2091. id: "profile-work3",
  2092. question: "Do you have another prior work history? (up to five)",
  2093. required: true,
  2094. condition: {
  2095. id: "profile-work2",
  2096. value: "1"
  2097. },
  2098. options: [
  2099. {
  2100. value: "1",
  2101. label: "Yes"
  2102. },
  2103. {
  2104. value: "0",
  2105. label: "No"
  2106. }
  2107. ],
  2108. type: "select"
  2109. },
  2110. {
  2111. id: "profile-workCompanyName3",
  2112. question: "Company name",
  2113. required: true,
  2114. condition: {
  2115. id: "profile-work3",
  2116. value: "1"
  2117. },
  2118. limit: 60,
  2119. type: "text"
  2120. },
  2121. {
  2122. id: "profile-workCompanyCity3",
  2123. question: "Company city",
  2124. required: true,
  2125. condition: {
  2126. id: "profile-work3",
  2127. value: "1"
  2128. },
  2129. limit: 25,
  2130. type: "text"
  2131. },
  2132. {
  2133. id: "profile-workTitle3",
  2134. question: "Last title or position held",
  2135. required: true,
  2136. condition: {
  2137. id: "profile-work3",
  2138. value: "1"
  2139. },
  2140. limit: 100,
  2141. type: "text"
  2142. },
  2143. {
  2144. id: "profile-workWhyLeaving3",
  2145. question: "Why have you left or plan on leaving this company?",
  2146. required: true,
  2147. condition: {
  2148. id: "profile-work3",
  2149. value: "1"
  2150. },
  2151. options: [
  2152. {
  2153. value: "1",
  2154. label: "Conflicting Views"
  2155. },
  2156. {
  2157. value: "2",
  2158. label: "Work Shortage"
  2159. },
  2160. {
  2161. value: "3",
  2162. label: "Fired / Asked to Resign"
  2163. },
  2164. {
  2165. value: "4",
  2166. label: "Position Eliminated"
  2167. },
  2168. {
  2169. value: "5",
  2170. label: "Better Opportunity"
  2171. },
  2172. {
  2173. value: "6",
  2174. label: "Other"
  2175. }
  2176. ],
  2177. type: "select"
  2178. },
  2179. {
  2180. id: "profile-workStartDate3",
  2181. question: "Start date",
  2182. required: true,
  2183. condition: {
  2184. id: "profile-work3",
  2185. value: "1"
  2186. },
  2187. format: "yyyy-MM-dd",
  2188. type: "date"
  2189. },
  2190. {
  2191. id: "profile-workStillWorking3",
  2192. question: "Still employed?",
  2193. required: true,
  2194. condition: {
  2195. id: "profile-work3",
  2196. value: "1"
  2197. },
  2198. options: [
  2199. {
  2200. value: "1",
  2201. label: "Yes"
  2202. },
  2203. {
  2204. value: "0",
  2205. label: "No"
  2206. }
  2207. ],
  2208. type: "select"
  2209. },
  2210. {
  2211. id: "profile-workEndDate3",
  2212. question: "End date",
  2213. required: true,
  2214. condition: {
  2215. id: "profile-workStillWorking3",
  2216. value: "0"
  2217. },
  2218. format: "yyyy-MM-dd",
  2219. type: "date"
  2220. },
  2221. {
  2222. id: "profile-reference1",
  2223. question: "Do you have any references? (up to three)",
  2224. required: true,
  2225. options: [
  2226. {
  2227. value: "1",
  2228. label: "Yes"
  2229. },
  2230. {
  2231. value: "0",
  2232. label: "No"
  2233. }
  2234. ],
  2235. type: "select"
  2236. },
  2237. {
  2238. id: "profile-referenceName1",
  2239. question: "Reference name",
  2240. required: true,
  2241. condition: {
  2242. id: "profile-reference1",
  2243. value: "1"
  2244. },
  2245. limit: 60,
  2246. type: "text"
  2247. },
  2248. {
  2249. id: "profile-referencePhone1",
  2250. question: "Reference phone",
  2251. required: true,
  2252. condition: {
  2253. id: "profile-reference1",
  2254. value: "1"
  2255. },
  2256. type: "text"
  2257. },
  2258. {
  2259. id: "profile-referenceEmail1",
  2260. question: "Reference email",
  2261. required: true,
  2262. condition: {
  2263. id: "profile-reference1",
  2264. value: "1"
  2265. },
  2266. limit: 100,
  2267. type: "text"
  2268. },
  2269. {
  2270. id: "profile-referenceRelationship1",
  2271. question: "Reference relationship",
  2272. required: true,
  2273. condition: {
  2274. id: "profile-reference1",
  2275. value: "1"
  2276. },
  2277. options: [
  2278. {
  2279. value: "1",
  2280. label: "Acquaintance / Friend"
  2281. },
  2282. {
  2283. value: "2",
  2284. label: "Co-worker"
  2285. },
  2286. {
  2287. value: "3",
  2288. label: "Supervisor"
  2289. },
  2290. {
  2291. value: "4",
  2292. label: "Other"
  2293. }
  2294. ],
  2295. type: "select"
  2296. },
  2297. {
  2298. id: "profile-reference2",
  2299. question: "Do you have another reference? (up to three)",
  2300. required: true,
  2301. condition: {
  2302. id: "profile-reference1",
  2303. value: "1"
  2304. },
  2305. options: [
  2306. {
  2307. value: "1",
  2308. label: "Yes"
  2309. },
  2310. {
  2311. value: "0",
  2312. label: "No"
  2313. }
  2314. ],
  2315. type: "select"
  2316. },
  2317. {
  2318. id: "profile-referenceName2",
  2319. question: "Reference name",
  2320. required: true,
  2321. condition: {
  2322. id: "profile-reference2",
  2323. value: "1"
  2324. },
  2325. limit: 60,
  2326. type: "text"
  2327. },
  2328. {
  2329. id: "profile-referencePhone2",
  2330. question: "Reference phone",
  2331. required: true,
  2332. condition: {
  2333. id: "profile-reference2",
  2334. value: "1"
  2335. },
  2336. type: "text"
  2337. },
  2338. {
  2339. id: "profile-referenceEmail2",
  2340. question: "Reference email",
  2341. required: true,
  2342. condition: {
  2343. id: "profile-reference2",
  2344. value: "1"
  2345. },
  2346. limit: 100,
  2347. type: "text"
  2348. },
  2349. {
  2350. id: "profile-referenceRelationship2",
  2351. question: "Reference relationship",
  2352. required: true,
  2353. condition: {
  2354. id: "profile-reference2",
  2355. value: "1"
  2356. },
  2357. options: [
  2358. {
  2359. value: "1",
  2360. label: "Acquaintance / Friend"
  2361. },
  2362. {
  2363. value: "2",
  2364. label: "Co-worker"
  2365. },
  2366. {
  2367. value: "3",
  2368. label: "Supervisor"
  2369. },
  2370. {
  2371. value: "4",
  2372. label: "Other"
  2373. }
  2374. ],
  2375. type: "select"
  2376. },
  2377. {
  2378. id: "profile-reference3",
  2379. question: "Do you have another reference? (up to three)",
  2380. required: true,
  2381. condition: {
  2382. id: "profile-reference2",
  2383. value: "1"
  2384. },
  2385. options: [
  2386. {
  2387. value: "1",
  2388. label: "Yes"
  2389. },
  2390. {
  2391. value: "0",
  2392. label: "No"
  2393. }
  2394. ],
  2395. type: "select"
  2396. },
  2397. {
  2398. id: "profile-referenceName3",
  2399. question: "Reference name",
  2400. required: true,
  2401. condition: {
  2402. id: "profile-reference3",
  2403. value: "1"
  2404. },
  2405. limit: 60,
  2406. type: "text"
  2407. },
  2408. {
  2409. id: "profile-referencePhone3",
  2410. question: "Reference phone",
  2411. required: true,
  2412. condition: {
  2413. id: "profile-reference3",
  2414. value: "1"
  2415. },
  2416. type: "text"
  2417. },
  2418. {
  2419. id: "profile-referenceEmail3",
  2420. question: "Reference email",
  2421. required: true,
  2422. condition: {
  2423. id: "profile-reference3",
  2424. value: "1"
  2425. },
  2426. limit: 100,
  2427. type: "text"
  2428. },
  2429. {
  2430. id: "profile-referenceRelationship3",
  2431. question: "Reference relationship",
  2432. required: true,
  2433. condition: {
  2434. id: "profile-reference3",
  2435. value: "1"
  2436. },
  2437. options: [
  2438. {
  2439. value: "1",
  2440. label: "Acquaintance / Friend"
  2441. },
  2442. {
  2443. value: "2",
  2444. label: "Co-worker"
  2445. },
  2446. {
  2447. value: "3",
  2448. label: "Supervisor"
  2449. },
  2450. {
  2451. value: "4",
  2452. label: "Other"
  2453. }
  2454. ],
  2455. type: "select"
  2456. },
  2457. {
  2458. id: "select-10104",
  2459. question: "How many years experience do you have in the position for which you are interested?",
  2460. required: true,
  2461. options: [
  2462. {
  2463. value: "1",
  2464. label: "No Experience"
  2465. },
  2466. {
  2467. value: "2",
  2468. label: "Less than one year"
  2469. },
  2470. {
  2471. value: "3",
  2472. label: "At least 1 to 3 years"
  2473. },
  2474. {
  2475. value: "4",
  2476. label: "At least 4 or more years"
  2477. }
  2478. ],
  2479. type: "select"
  2480. },
  2481. {
  2482. id: "select-10410",
  2483. question: "Excluding vacation or approved time off, how many days have you missed in the past year?",
  2484. required: true,
  2485. options: [
  2486. {
  2487. value: "1",
  2488. label: "None"
  2489. },
  2490. {
  2491. value: "2",
  2492. label: "1 to 2 days"
  2493. },
  2494. {
  2495. value: "3",
  2496. label: "3 to 4 days"
  2497. },
  2498. {
  2499. value: "4",
  2500. label: "5 or more days"
  2501. }
  2502. ],
  2503. type: "select"
  2504. },
  2505. {
  2506. id: "select-10435",
  2507. question: "Do you enjoy working with and serving the public?",
  2508. required: true,
  2509. options: [
  2510. {
  2511. value: "1",
  2512. label: "All the time"
  2513. },
  2514. {
  2515. value: "2",
  2516. label: "Most of the time"
  2517. },
  2518. {
  2519. value: "3",
  2520. label: "Never"
  2521. },
  2522. {
  2523. value: "4",
  2524. label: "Don't Know"
  2525. },
  2526. {
  2527. value: "5",
  2528. label: "No experience"
  2529. }
  2530. ],
  2531. type: "select"
  2532. },
  2533. {
  2534. id: "select-11302",
  2535. question: "What is the highest level of education you have completed?",
  2536. required: true,
  2537. options: [
  2538. {
  2539. value: "1",
  2540. label: "High School"
  2541. },
  2542. {
  2543. value: "2",
  2544. label: "Some College"
  2545. },
  2546. {
  2547. value: "3",
  2548. label: "Associates Degree"
  2549. },
  2550. {
  2551. value: "4",
  2552. label: "Bachelor's Degree"
  2553. },
  2554. {
  2555. value: "5",
  2556. label: "Masters Degree or above"
  2557. }
  2558. ],
  2559. type: "select"
  2560. },
  2561. {
  2562. id: "select-10412",
  2563. question: "How professionally can you handle customer complaints?",
  2564. required: true,
  2565. options: [
  2566. {
  2567. value: "1",
  2568. label: "Very professionally"
  2569. },
  2570. {
  2571. value: "2",
  2572. label: "Moderately"
  2573. },
  2574. {
  2575. value: "3",
  2576. label: "Not very well"
  2577. },
  2578. {
  2579. value: "4",
  2580. label: "No experience"
  2581. }
  2582. ],
  2583. type: "select"
  2584. },
  2585. {
  2586. id: "select-10485",
  2587. question: "How would you define your teamwork abilities?",
  2588. required: true,
  2589. options: [
  2590. {
  2591. value: "1",
  2592. label: "You are a team player"
  2593. },
  2594. {
  2595. value: "2",
  2596. label: "You work best alone"
  2597. },
  2598. {
  2599. value: "3",
  2600. label: "You are a team player and a good leader"
  2601. },
  2602. {
  2603. value: "4",
  2604. label: "You are unsure"
  2605. }
  2606. ],
  2607. type: "select"
  2608. },
  2609. {
  2610. id: "select-10487",
  2611. question: "Do you understand quality and have an eye for detail?",
  2612. required: true,
  2613. options: [
  2614. {
  2615. value: "1",
  2616. label: "Yes"
  2617. },
  2618. {
  2619. value: "2",
  2620. label: "No"
  2621. },
  2622. {
  2623. value: "3",
  2624. label: "Unsure"
  2625. }
  2626. ],
  2627. type: "select"
  2628. },
  2629. {
  2630. id: "select-10492",
  2631. question: "How would you rank your ability to multi-task and follow directions?",
  2632. required: true,
  2633. options: [
  2634. {
  2635. value: "1",
  2636. label: "Exceptional"
  2637. },
  2638. {
  2639. value: "2",
  2640. label: "Good"
  2641. },
  2642. {
  2643. value: "3",
  2644. label: "Average"
  2645. },
  2646. {
  2647. value: "4",
  2648. label: "Poor"
  2649. }
  2650. ],
  2651. type: "select"
  2652. },
  2653. {
  2654. id: "select-10499",
  2655. question: "Have you been involved in a conflict at work that resulted in a verbal or written warning?",
  2656. required: true,
  2657. options: [
  2658. {
  2659. value: "1",
  2660. label: "You have had a verbal warning"
  2661. },
  2662. {
  2663. value: "2",
  2664. label: "You have had a written warning"
  2665. },
  2666. {
  2667. value: "3",
  2668. label: "You have had a verbal and written warning"
  2669. },
  2670. {
  2671. value: "4",
  2672. label: "Never"
  2673. }
  2674. ],
  2675. type: "select"
  2676. },
  2677. {
  2678. id: "select-10669",
  2679. question: "What are your thoughts on working beyond your normal scheduled hours?",
  2680. required: true,
  2681. options: [
  2682. {
  2683. value: "1",
  2684. label: "You work scheduled hours only"
  2685. },
  2686. {
  2687. value: "2",
  2688. label: "Only in extreme situations"
  2689. },
  2690. {
  2691. value: "3",
  2692. label: "Whatever it takes"
  2693. }
  2694. ],
  2695. type: "select"
  2696. },
  2697. {
  2698. id: "select-10670",
  2699. question: "When dealing with difficult guests, you should:",
  2700. required: true,
  2701. options: [
  2702. {
  2703. value: "1",
  2704. label: "Ignore them"
  2705. },
  2706. {
  2707. value: "2",
  2708. label: "Call your supervisor and seek assistance"
  2709. },
  2710. {
  2711. value: "3",
  2712. label: "Explain to the guest why they shouldn't get upset"
  2713. },
  2714. {
  2715. value: "4",
  2716. label: "Politely reassure the guest you will take care of their problem"
  2717. }
  2718. ],
  2719. type: "select"
  2720. },
  2721. {
  2722. id: "select-10671",
  2723. question: "Your last supervisor would describe your organizational skills as:",
  2724. required: true,
  2725. options: [
  2726. {
  2727. value: "1",
  2728. label: "Exceptional"
  2729. },
  2730. {
  2731. value: "2",
  2732. label: "Good"
  2733. },
  2734. {
  2735. value: "3",
  2736. label: "Average"
  2737. },
  2738. {
  2739. value: "4",
  2740. label: "Poor"
  2741. }
  2742. ],
  2743. type: "select"
  2744. },
  2745. {
  2746. id: "select-10672",
  2747. question: "When solving a problem, which best describes you?",
  2748. required: true,
  2749. options: [
  2750. {
  2751. value: "1",
  2752. label: "Contact your supervisor immediately"
  2753. },
  2754. {
  2755. value: "2",
  2756. label: "Try to solve, then employ the assistance of your supervisor"
  2757. },
  2758. {
  2759. value: "3",
  2760. label: "Continue working with it until you get it"
  2761. }
  2762. ],
  2763. type: "select"
  2764. },
  2765. {
  2766. id: "select-10667",
  2767. question: "Which best describes you?",
  2768. required: true,
  2769. options: [
  2770. {
  2771. value: "1",
  2772. label: "You take the initiative"
  2773. },
  2774. {
  2775. value: "2",
  2776. label: "You prefer to be given direction"
  2777. },
  2778. {
  2779. value: "3",
  2780. label: "You often need guidance"
  2781. },
  2782. {
  2783. value: "4",
  2784. label: "You prefer to be told what to do"
  2785. }
  2786. ],
  2787. type: "select"
  2788. },
  2789. {
  2790. id: "select-10502",
  2791. question: "Rate your verbal, written communication and organizational skills?",
  2792. required: true,
  2793. options: [
  2794. {
  2795. value: "1",
  2796. label: "Exceptional"
  2797. },
  2798. {
  2799. value: "2",
  2800. label: "Good"
  2801. },
  2802. {
  2803. value: "3",
  2804. label: "Average"
  2805. },
  2806. {
  2807. value: "4",
  2808. label: "Poor"
  2809. }
  2810. ],
  2811. type: "select"
  2812. },
  2813. {
  2814. id: "select-11655",
  2815. question: "Can you read, write and communicate effectively in English?",
  2816. required: true,
  2817. options: [
  2818. {
  2819. value: "1",
  2820. label: "Yes"
  2821. },
  2822. {
  2823. value: "2",
  2824. label: "No"
  2825. }
  2826. ],
  2827. type: "select"
  2828. },
  2829. {
  2830. id: "select-10723",
  2831. question: "Are you willing to do all the tasks asked of you including clean rest rooms, mopping floors and similar tasks?",
  2832. required: true,
  2833. options: [
  2834. {
  2835. value: "1",
  2836. label: "Yes"
  2837. },
  2838. {
  2839. value: "2",
  2840. label: "No"
  2841. }
  2842. ],
  2843. type: "select"
  2844. },
  2845. {
  2846. id: "select-10726",
  2847. question: "Rate your knowledge with handling customer complaints?",
  2848. required: true,
  2849. options: [
  2850. {
  2851. value: "1",
  2852. label: "No experience"
  2853. },
  2854. {
  2855. value: "2",
  2856. label: "Poor"
  2857. },
  2858. {
  2859. value: "3",
  2860. label: "Average"
  2861. },
  2862. {
  2863. value: "4",
  2864. label: "Good"
  2865. },
  2866. {
  2867. value: "5",
  2868. label: "Exceptional"
  2869. }
  2870. ],
  2871. type: "select"
  2872. },
  2873. {
  2874. id: "select-10481",
  2875. question: "How much experience do you have handling banking and cash deposits?",
  2876. required: true,
  2877. options: [
  2878. {
  2879. value: "1",
  2880. label: "Experienced"
  2881. },
  2882. {
  2883. value: "2",
  2884. label: "Limited Experience"
  2885. },
  2886. {
  2887. value: "3",
  2888. label: "No Experience"
  2889. }
  2890. ],
  2891. type: "select"
  2892. },
  2893. {
  2894. id: "select-10482",
  2895. question: "How would you rate your computer experience using email, internet and word processing?",
  2896. required: true,
  2897. options: [
  2898. {
  2899. value: "1",
  2900. label: "Experienced"
  2901. },
  2902. {
  2903. value: "2",
  2904. label: "Limited Experience"
  2905. },
  2906. {
  2907. value: "3",
  2908. label: "No Experience"
  2909. }
  2910. ],
  2911. type: "select"
  2912. },
  2913. {
  2914. id: "select-10703",
  2915. question: "How much experience do you have handling cash and providing change?",
  2916. required: true,
  2917. options: [
  2918. {
  2919. value: "1",
  2920. label: "No Experience"
  2921. },
  2922. {
  2923. value: "2",
  2924. label: "Minimal experience"
  2925. },
  2926. {
  2927. value: "3",
  2928. label: "Experienced"
  2929. },
  2930. {
  2931. value: "4",
  2932. label: "Very experienced"
  2933. }
  2934. ],
  2935. type: "select"
  2936. },
  2937. {
  2938. id: "select-10759",
  2939. question: "I am willing to do tasks outside of my job description which may include other side duties.",
  2940. required: true,
  2941. options: [
  2942. {
  2943. value: "1",
  2944. label: "Yes"
  2945. },
  2946. {
  2947. value: "2",
  2948. label: "No"
  2949. }
  2950. ],
  2951. type: "select"
  2952. },
  2953. {
  2954. id: "text-13168",
  2955. question: "Please explain any gaps in your employment history?",
  2956. required: true,
  2957. type: "textarea"
  2958. },
  2959. {
  2960. id: "select-13169",
  2961. question: "Have you ever been discharged or forced to resign?",
  2962. required: true,
  2963. options: [
  2964. {
  2965. value: "1",
  2966. label: "Yes"
  2967. },
  2968. {
  2969. value: "2",
  2970. label: "No"
  2971. }
  2972. ],
  2973. type: "select"
  2974. },
  2975. {
  2976. id: "text-13112",
  2977. question: "If yes, please explain.",
  2978. required: true,
  2979. condition: {
  2980. id: "select-13169",
  2981. value: "1"
  2982. },
  2983. type: "textarea"
  2984. },
  2985. {
  2986. id: "select-13170",
  2987. question: "Have you signed any non-competition or non-solicitation agreement with any other employer that might restrict you from working for the company (you may be required to furnish a copy of the agreement)?",
  2988. required: true,
  2989. options: [
  2990. {
  2991. value: "1",
  2992. label: "Yes"
  2993. },
  2994. {
  2995. value: "2",
  2996. label: "No"
  2997. }
  2998. ],
  2999. type: "select"
  3000. },
  3001. {
  3002. id: "text-13112",
  3003. question: "If yes, please explain.",
  3004. required: true,
  3005. condition: {
  3006. id: "select-13170",
  3007. value: "1"
  3008. },
  3009. type: "textarea"
  3010. },
  3011. {
  3012. id: "select-11836",
  3013. question: "Have you served in the United States Military?",
  3014. required: true,
  3015. options: [
  3016. {
  3017. value: "1",
  3018. label: "Yes"
  3019. },
  3020. {
  3021. value: "2",
  3022. label: "No"
  3023. }
  3024. ],
  3025. type: "select"
  3026. },
  3027. {
  3028. id: "text-13172",
  3029. question: "Please explain which branch, to and from dates of service, rank at discharge (if applicable), and type of discharge (if applicable). If discharge is other than honorable, please explain.",
  3030. required: true,
  3031. condition: {
  3032. id: "select-11836",
  3033. value: "1"
  3034. },
  3035. type: "textarea"
  3036. },
  3037. {
  3038. id: "select-12499",
  3039. question: "Were you referred to this company by a current employee?",
  3040. required: true,
  3041. options: [
  3042. {
  3043. value: "1",
  3044. label: "Yes"
  3045. },
  3046. {
  3047. value: "2",
  3048. label: "No"
  3049. }
  3050. ],
  3051. type: "select"
  3052. },
  3053. {
  3054. id: "text-11446",
  3055. question: "If so, who referred you?",
  3056. required: true,
  3057. condition: {
  3058. id: "select-12499",
  3059. value: "1"
  3060. },
  3061. type: "textarea"
  3062. },
  3063. {
  3064. id: "select-16649",
  3065. question: "Do you have a current and valid New York City Fire Safety Director (FSD) Certification?",
  3066. required: true,
  3067. options: [
  3068. {
  3069. value: "1",
  3070. label: "Yes"
  3071. },
  3072. {
  3073. value: "2",
  3074. label: "No"
  3075. }
  3076. ],
  3077. type: "select"
  3078. },
  3079. {
  3080. id: "text-16650",
  3081. question: "If yes, when does it expire?",
  3082. required: true,
  3083. condition: {
  3084. id: "select-16649",
  3085. value: "1"
  3086. },
  3087. type: "textarea"
  3088. },
  3089. {
  3090. id: "select-17057",
  3091. question: "If hired, are you willing take the New York City Fire Safety Director (FSD) training?",
  3092. required: true,
  3093. options: [
  3094. {
  3095. value: "1",
  3096. label: "Yes"
  3097. },
  3098. {
  3099. value: "2",
  3100. label: "No"
  3101. }
  3102. ],
  3103. type: "select"
  3104. },
  3105. {
  3106. id: "profile-confirmation",
  3107. question: "Confirm Application I certify that my answers are true and complete to the best of my knowledge.<br><br>I understand that any misrepresentation, falsification or mission of this application shall be sufficient reason for refusal to hire or, if discovered after employment has begun, dismissal of my employment. I hear by authorize investigation of all matters contained in this application and agree that if results of such investigation are not satisfactory, any offer of employment may be withdrawn, or if applicable, my employment may be terminated immediately. I agree to conform to and adhere to the rules and regulations governing my employment. Further, I understand and agree that this application and any other materials I may receive are not intended to be, nor shall be construed to be a contract of employment, and that my employment and compensation may terminate, with or without cause, and with or without notice, at any time, at the option of either myself or my employer. <br><br>Federal Law prohibits the company from hiring any person unless he/she presents documents which establish identity and eligibility to work in the United States. Therefore, the company will require that each new hire present such documents as a condition of employment. <br><br>The company does not discriminate in hiring employment in accordance with requirements of all applicable local, state, and federal laws, on the basis of race, color, creed, sex, national origin, age, veteran status or physical or mental disability unrelated to job requirement. <br><br>You are neither asked nor required to disclose information about physical or mental disabilities. However if you wish the company to consider arranging a reasonable accommodation due to a physical or mental disability, you may suggest the kind of accommodation you believe would be appropriate for consideration. <br><br>The use, possession, sale of being under the influence of illegal drugs or alcohol while on company time is prohibited.I confirm that the information I have provided is correct.",
  3108. required: true,
  3109. options: [
  3110. {
  3111. value: "1",
  3112. label: "Confirm Application"
  3113. }
  3114. ],
  3115. type: "select"
  3116. }
  3117. ]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement