Advertisement
Guest User

Untitled

a guest
Dec 14th, 2017
543
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 34.79 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-10101",
  2459. question: "Have you ever worked for this company before?",
  2460. required: true,
  2461. options: [
  2462. {
  2463. value: "1",
  2464. label: "Yes"
  2465. },
  2466. {
  2467. value: "2",
  2468. label: "No"
  2469. }
  2470. ],
  2471. type: "select"
  2472. },
  2473. {
  2474. id: "select-10104",
  2475. question: "How many years experience do you have in the position for which you are interested?",
  2476. required: true,
  2477. options: [
  2478. {
  2479. value: "1",
  2480. label: "No Experience"
  2481. },
  2482. {
  2483. value: "2",
  2484. label: "Less than one year"
  2485. },
  2486. {
  2487. value: "3",
  2488. label: "At least 1 to 3 years"
  2489. },
  2490. {
  2491. value: "4",
  2492. label: "At least 4 or more years"
  2493. }
  2494. ],
  2495. type: "select"
  2496. },
  2497. {
  2498. id: "select-10432",
  2499. question: "Can you perform well in a fast-paced service environment?",
  2500. required: true,
  2501. options: [
  2502. {
  2503. value: "1",
  2504. label: "All the time"
  2505. },
  2506. {
  2507. value: "2",
  2508. label: "Most of the time"
  2509. },
  2510. {
  2511. value: "3",
  2512. label: "Never"
  2513. },
  2514. {
  2515. value: "4",
  2516. label: "Don't Know"
  2517. },
  2518. {
  2519. value: "5",
  2520. label: "No experience"
  2521. }
  2522. ],
  2523. type: "select"
  2524. },
  2525. {
  2526. id: "select-10435",
  2527. question: "Do you enjoy working with and serving the public?",
  2528. required: true,
  2529. options: [
  2530. {
  2531. value: "1",
  2532. label: "All the time"
  2533. },
  2534. {
  2535. value: "2",
  2536. label: "Most of the time"
  2537. },
  2538. {
  2539. value: "3",
  2540. label: "Never"
  2541. },
  2542. {
  2543. value: "4",
  2544. label: "Don't Know"
  2545. },
  2546. {
  2547. value: "5",
  2548. label: "No experience"
  2549. }
  2550. ],
  2551. type: "select"
  2552. },
  2553. {
  2554. id: "select-13662",
  2555. question: "Are you at least 16 years of age?",
  2556. required: true,
  2557. options: [
  2558. {
  2559. value: "1",
  2560. label: "Yes"
  2561. },
  2562. {
  2563. value: "2",
  2564. label: "No"
  2565. }
  2566. ],
  2567. type: "select"
  2568. },
  2569. {
  2570. id: "select-10749",
  2571. question: "Will you consent to pre-employment background checks, pre-employment and/or random drug testing, past employment verification and/or reference checks?",
  2572. required: true,
  2573. options: [
  2574. {
  2575. value: "1",
  2576. label: "Yes"
  2577. },
  2578. {
  2579. value: "2",
  2580. label: "No"
  2581. }
  2582. ],
  2583. type: "select"
  2584. },
  2585. {
  2586. id: "select-10498",
  2587. question: "Have you ever been terminated from a job or asked to resign?",
  2588. required: true,
  2589. options: [
  2590. {
  2591. value: "1",
  2592. label: "Yes"
  2593. },
  2594. {
  2595. value: "2",
  2596. label: "No"
  2597. }
  2598. ],
  2599. type: "select"
  2600. },
  2601. {
  2602. id: "select-10670",
  2603. question: "When dealing with difficult guests, you should:",
  2604. required: true,
  2605. options: [
  2606. {
  2607. value: "1",
  2608. label: "Ignore them"
  2609. },
  2610. {
  2611. value: "2",
  2612. label: "Call your supervisor and seek assistance"
  2613. },
  2614. {
  2615. value: "3",
  2616. label: "Explain to the guest why they shouldn't get upset"
  2617. },
  2618. {
  2619. value: "4",
  2620. label: "Politely reassure the guest you will take care of their problem"
  2621. }
  2622. ],
  2623. type: "select"
  2624. },
  2625. {
  2626. id: "select-10728",
  2627. question: "A guest is angry and swears at you. What would you do?",
  2628. required: true,
  2629. options: [
  2630. {
  2631. value: "1",
  2632. label: "Tell him he is being rude and that he should calm down"
  2633. },
  2634. {
  2635. value: "2",
  2636. label: "Ask a manager to handle the guest"
  2637. },
  2638. {
  2639. value: "3",
  2640. label: "Tell him he is speaking rudely and walk away"
  2641. },
  2642. {
  2643. value: "4",
  2644. label: "Ask another team member to talk to the guest"
  2645. },
  2646. {
  2647. value: "5",
  2648. label: "Listen patiently and apologize"
  2649. }
  2650. ],
  2651. type: "select"
  2652. },
  2653. {
  2654. id: "select-10703",
  2655. question: "How much experience do you have handling cash and providing change?",
  2656. required: true,
  2657. options: [
  2658. {
  2659. value: "1",
  2660. label: "No Experience"
  2661. },
  2662. {
  2663. value: "2",
  2664. label: "Minimal experience"
  2665. },
  2666. {
  2667. value: "3",
  2668. label: "Experienced"
  2669. },
  2670. {
  2671. value: "4",
  2672. label: "Very experienced"
  2673. }
  2674. ],
  2675. type: "select"
  2676. },
  2677. {
  2678. id: "profile-confirmation",
  2679. question: "Confirm Application READ THE FOLLOWING STATEMENTS CAREFULLY BEFORE SIGNING THIS APPLICATION. ONLY APPLICATIONS THAT ARE SIGNED AND DATED ARE CONSIDERED VALID.The information I am presenting in this application is complete, true and correct to the best of my knowledge. I understand that any falsification, misrepresentation, or omissions could result in the denial of my application, withdrawal of any offer of employment, or immediate discharge.I understand that in connection with the application process, Taco Bell and its representatives may contact my former employers, educational institutions, references, and other relevant third parties to obtain additional information related to the information given by me in this application. I also understand that Taco Bell may provide such information to its parent company and affiliates and to other third parties. I hereby request, release, and consent to the release and disclosure of such information. I further release and hold harmless Taco Bell, Taco Bell’s parent company and affiliates, their officers, employees and agents, and any other parties inquiring about, investigating, furnishing, communicating, reviewing, or evaluating such information from any and all potential claims, demands, damages, liabilities, and/or actions of any kind arising from such activities, whether known or unknown to me presently, that I may have, now or in the future.If employed, I agree to conform to the rules and regulations of Taco Bell Corp. and understand that I will be an employee at-will, and my employment may be terminated at any time by me or Taco Bell, with or without notice, for any reason. I understand that only the President of Taco Bell Corp. or the Vice President of Human Resources of Taco Bell Corp. has the authority to enter into any agreement for employment for any specified period of time, or to make any agreement contrary to the foregoing.I confirm that the information I have provided is correct.",
  2680. required: true,
  2681. options: [
  2682. {
  2683. value: "1",
  2684. label: "Confirm Application"
  2685. }
  2686. ],
  2687. type: "select"
  2688. }
  2689. ]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement