v0.9.0 - Added support for composite types
Adds composite types to the parser, printer, and Schema Builder
model Gallery {
photos Photo[]
}
type Photo {
width Int
height Int
url String
}
The schema node is { type: "type" }
and the builder method is builder.type("Photo")