aboutsummaryrefslogtreecommitdiff
path: root/dhall/types/Company.dhall
blob: 70a8865f81782c980fd0869a42087f4e47dca0d9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
let Location = ./Location.dhall

in  { Type =
        { name : Text
        , url : Optional Text
        , tagline : Text
        , location : Location.Type
        , defunct : Bool
        }
    , default =
      { name = ""
      , url = None Text
      , tagline = ""
      , location = Location::{=}
      , defunct = False
      }
    }