This repository has been archived by the owner on Dec 1, 2017. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathsample-survey.yml
59 lines (59 loc) · 1.56 KB
/
sample-survey.yml
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
title: Ice Cream Survey
intro: This is a sample survey to see how much you _really_ love ice cream.
questions:
-
key: ice-cream
text: Do you like ice cream?
description: Here is a basic choice field
type: exclusive
values:
- Yes
- No
- Sometimes
- decline|Decline to Answer
-
key: flavor
text: What is your favorite flavor?
description: This is an `exclusive-combo` field. That means that if the user picks more than one choice, we record that as a single value of `combination` rather than each distinct choice made.
type: exclusive-combo
values:
- chocolate|Chocolate
- strawberry|Strawberry
- vanilla|Vanilla
- rocky|Rocky Road
- none|None
-
key: toppings
text: What are you favorite toppings?
description: This is a `multiple` field. This counts each choice separately.
type: multiple
values:
- Hot Fudge
- Sprinkles
- Brownies
- Chocolate Chips
- Broccoli
- Heath Bar
-
key: desserts
text: What other desserts do you like?
type: multiple
shuffle: true
values:
- Cupcakes
- Cake
- Candy
- Cookies
- Flan
- Frozen Yogurt
- Kale
- None
-
key: name
text: What is the brand of your favorite ice cream?
description: This is a freeform-text field. Each choice is recorded as-is without any normalization. This means that if a user wrote Apple and another apple, those would be counted separately.
type: freeform
intersections:
-
- flavor
- toppings