summaryrefslogtreecommitdiff
path: root/example-config.dhall
blob: ae12897310dc7f241879fe2b9cbdfb50d47ad83f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{ 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"
          ]
    }
  ]
}