blob: f3dbb4b83d88abfa317cdba6de3a5102374312f0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
let Location = ./Location.dhall
let Link = ./Link.dhall
let Job = ./Job.dhall
in { Type =
{ name : Text
, tagline : Text
, location : Location.Type
, buzzwords : List Text
, notablePublications : List Link.Type
}
, default =
{ name = "Xe Iaso"
, tagline = "Senior Technophilosopher"
, location = Location::{
, city = "Ottawa"
, stateOrProvince = "ON"
, country = "CAN"
}
, buzzwords = [] : List Text
, notablePublications = [] : List Link.Type
}
}
|