summaryrefslogtreecommitdiff
path: root/example-config.dhall
blob: 0b5d5ae229d8f89a2f3140b9406cd87eb3affe35 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{ title = "Test Survey"
, description = "This is a test survey."
, pubkey = Some "age1te673wg4decpplhwrtw2x8atglrn59t87q0tllx7n7uhnr7qrg0ss6f36g"
, questions =
  [ { question = "first question", name = "question1", space = Answers.YesOrNo }
  , { question = "second question"
    , name = "question2"
    , space = Answers.Freeform "test"
    }
  , { question = "third question"
    , name = "question3"
    , space =
        Answers.Multiple
          [ "first possible answer"
          , "second possible answer"
          , "third possible answer"
          ]
    }
  ]
}