Preview:```ts
type FieldsGeneral = {
firstName: string
lastName: string
}
type FieldsEducation = {
university: string
}
type Fields = {
general?: FieldsGeneral // If I make these guys optional, then
education?: FieldsEducation // 23rd line below stops validatin
...```
You can choose specific lines to embed by selecting them before copying the link.