Variables
Types of Variables
Value Variable
# Defining value variables
~ record: 123
~ y: yes
~ n: no
~ rgb: [red, green, blue]
---Schema Variable
# Defining schema variables
~ $address: {
street: string,
zip: {string, maxLength: 5},
city: string
}
~ $person: {
name: string,
age: int,
homeAddress?: $address,
officeAddress?: $address
}
---Advantages and Use Cases
Reuse Definitions
Obfuscate Data
Reduce data size
Improves schema readability
Last updated
Was this helpful?
