SCHEMAFULL (the default)
defineTable is SCHEMAFULL by default — fields are constrained to the declared shape.
defineTable("account", { id: s.string(), name: s.string() }) DEFINE TABLE account TYPE NORMAL SCHEMAFULL;
DEFINE FIELD name ON TABLE account TYPE string;