Complex Schema
~ $address: {
street: string,
zip:{string, maxLength:5},
city: string
}
~ $person: {
name:string,
age:int,
homeAddress?:$address,
officeAddress?:$address
}
~ $schema: $person
---
Spiderman, 25, {Queens, 50010, New York}, {Bond Street, 50001, New York}Last updated
Was this helpful?
