class Field {
constructor(type, defaultValue, required) {
this.type = type
this.default = defaultValue
this.required = required
}