-
Notifications
You must be signed in to change notification settings - Fork 1
/
questions.json
162 lines (162 loc) · 3.34 KB
/
questions.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
[
{
"id":1,
"type":"text",
"max_length":65535,
"prefix":"",
"text":"First Name",
"required":true,
"choices":null,
"slug": "first_name"
},
{
"id":2,
"type":"text",
"max_length":65535,
"prefix":"",
"text":"Last Name",
"required":true,
"choices":null,
"slug": "last_name"
},
{
"id":3,
"type":"number",
"max_length":65535,
"prefix":"",
"text":"Phone Number",
"required":true,
"choices":null,
"slug": "phone_number"
},
{
"id":6,
"type":"text",
"max_length":65535,
"prefix":"https://devpost.com/",
"text":"Devpost Username",
"required":false,
"choices":null,
"slug": "devpost"
},
{
"id":7,
"type":"text",
"max_length":65535,
"prefix":"https://linkedin.com/in/",
"text":"LinkedIn Username",
"required":false,
"choices":null,
"slug": "linkedin"
},
{
"id":8,
"type":"text",
"max_length":65535,
"prefix":"http://",
"text":"Personal Website",
"required":false,
"choices":null,
"slug": "personal_website"
},
{
"id":9,
"type":"text",
"max_length":65535,
"prefix":"https://github.com/",
"text":"Github Username",
"required":false,
"choices":null,
"slug": "github"
},
{
"id":10,
"type":"text",
"max_length":65535,
"prefix":"",
"text":"What school do you attend?",
"required":true,
"choices":null,
"slug": "school"
},
{
"id":11,
"type":"essay",
"max_length":700,
"prefix":"",
"text":"Tell us about a time you helped another with programming.",
"required":false,
"choices":null,
"slug": "essay_helped"
},
{
"id":12,
"type":"essay",
"max_length":700,
"prefix":"",
"text":"Tell us about a project you’re proud of (hackathon, personal project, job, research, etc).",
"required":false,
"choices":null,
"slug": "essay_project"
},
{
"id":13,
"type":"number",
"max_length":65535,
"prefix":"",
"text":"Graduation Year",
"required":true,
"choices":null,
"slug": "college_grad_year"
},
{
"id":24,
"type":"number",
"max_length":65535,
"prefix":"",
"text":"How old will you be on October 12, 2018?",
"required":true,
"choices":null,
"slug": "age"
},
{
"id":25,
"type":"text",
"max_length":65535,
"prefix":"",
"text":"What gender do you identify as?",
"required":true,
"choices":null,
"slug": "gender"
},
{
"id":26,
"type":"text",
"max_length":65535,
"prefix":"",
"text":"What is your major?",
"required":true,
"choices":null,
"slug": "major"
},
{
"id":27,
"type":"text",
"max_length":65535,
"prefix":"",
"text":"What is your most current level of study?",
"required":true,
"choices":null,
"slug": "current_study_level"
},
{
"id":28,
"type":"text",
"max_length":65535,
"prefix":"",
"text":"What is your race/ethnicity?",
"required":true,
"choices":null,
"slug": "race_ethnicity"
}
]