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
26
27
|
let Location = ./Location.dhall
let Link = ./Link.dhall
let Job = ./Job.dhall
in { Type =
{ name : Text
, tagline : Text
, location : Location.Type
, buzzwords : List Text
, jobs : List Job.Type
, notablePublications : List Link.Type
}
, default =
{ name = "Xe Iaso"
, tagline = "Archmage of Infrastructure"
, location = Location::{
, city = "Ottawa"
, stateOrProvince = "ON"
, country = "CAN"
}
, buzzwords = [] : List Text
, jobs = [] : List Job.Type
, notablePublications = [] : List Link.Type
}
}
|