Created
March 2, 2026 04:26
-
-
Save tonysyu/eedb256a7d429088854aca6d353cd4e1 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "screenerQuestions": [ | |
| { | |
| "id": "us-work-permit", | |
| "type": "select", | |
| "required": true, | |
| "question": "Are you authorized to work in the United States?", | |
| "options": [ | |
| { | |
| "value": "yes", | |
| "label": "Yes (correct answer)" | |
| }, | |
| { | |
| "value": "no", | |
| "label": "No" | |
| } | |
| ] | |
| }, | |
| { | |
| "id": "frequent-travel", | |
| "type": "select", | |
| "required": true, | |
| "question": "Are you willing to travel up to 25% of the time?", | |
| "options": [ | |
| { | |
| "value": "yes", | |
| "label": "Yes (correct answer)" | |
| }, | |
| { | |
| "value": "no", | |
| "label": "No" | |
| } | |
| ] | |
| }, | |
| { | |
| "id": "art-mediums", | |
| "type": "multiselect", | |
| "required": true, | |
| "question": "What other mediums do you work in?", | |
| "options": [ | |
| { | |
| "value": "oil-paint", | |
| "label": "Oil Paint (correct)" | |
| }, | |
| { | |
| "value": "acrylic-paint", | |
| "label": "Acrylic Paint" | |
| }, | |
| { | |
| "value": "watercolor", | |
| "label": "Watercolor" | |
| }, | |
| { | |
| "value": "charcoal", | |
| "label": "Charcoal (correct)" | |
| }, | |
| { | |
| "value": "crayon", | |
| "label": "Crayon" | |
| } | |
| ] | |
| }, | |
| { | |
| "id": "art-styles", | |
| "type": "multiselect", | |
| "required": true, | |
| "question": "What artistic styles are you proficient in?", | |
| "options": [ | |
| { | |
| "value": "renaissance", | |
| "label": "Renaissance" | |
| }, | |
| { | |
| "value": "cubism", | |
| "label": "Cubism" | |
| }, | |
| { | |
| "value": "art-nouveau", | |
| "label": "Art Nouveau (correct answer)" | |
| }, | |
| { | |
| "value": "surrealism", | |
| "label": "Surrealism" | |
| }, | |
| { | |
| "value": "post-modern", | |
| "label": "Post-Modern (correct answer)" | |
| } | |
| ] | |
| }, | |
| { | |
| "id": "pop-art", | |
| "type": "select", | |
| "question": "Do you like Pop Art?", | |
| "options": [ | |
| { | |
| "value": "yes", | |
| "label": "Yes" | |
| }, | |
| { | |
| "value": "no", | |
| "label": "No" | |
| } | |
| ], | |
| "qualification": { | |
| "type": "non-blocking", | |
| "match": { | |
| "type": "any", | |
| "values": [ | |
| "yes" | |
| ] | |
| } | |
| } | |
| }, | |
| { | |
| "id": "artistic-philosophy", | |
| "type": "text", | |
| "question": "Tell us about your artistic philosophy" | |
| } | |
| ] | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment