summaryrefslogtreecommitdiff
path: root/example-config.dhall
blob: 2dbaf308b975ef8a259b1d4af15402b2f6a859db (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{ title = "Test Survey"
, description = "This is a test survey."
, lang = Lang.en
, pubkey = Some "age1f380w6eaeuydey65mmu88h4kqv50dda96pxlgkal78sufpnngypqnetmuu"
, 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"
          ]
    }
  , { question = "fourth question", name = "question4", space = Answers.Date }
  ]
}