aboutsummaryrefslogtreecommitdiff
path: root/dhall/types/Author.dhall
blob: 47a850f757e2e541210ff7124d8e02f8beb36dfa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
let PronounSet = ./PronounSet.dhall

in  { Type =
        { name : Text
        , handle : Text
        , image : Optional Text
        , url : Optional Text
        , sameAs : List Text
        , jobTitle : Text
        , inSystem : Bool
        , pronouns : PronounSet.Type
        }
    , default =
      { name = ""
      , handle = ""
      , image = None Text
      , url = None Text
      , sameAs = [] : List Text
      , jobTitle = ""
      , inSystem = False
      , pronouns = ../pronouns/she.dhall
      }
    }