A Model
is a placeholder for some choice of one among a selection of Facts
. It is implemented as a sum type in Dhall, with a different Fact
for each 'variant', meaning possible value, of the Model
. For example, a ClaimsModel
can denote Demographic
, or Death
or any of the other Fact
s listed among its possibilities. A Model
should not contain other Model
s. In that sense a Model
is at the top level of a collection of Fact
s, defining all possible Fact
s that might be used as metadata for events in some particular application.