Optional
dataType?: stringThe database data type that is represented by this property. This is often different from the actual property type, with is a Javascript primitive. For example, for a SMALLINT the dataType would be 'smallint', but the type would be 'integer'.
Optional
hidden?: booleanThis indicates that although the field exists on the db, it should be ignored by squid.
Optional
isComputed?: booleanWhether the property is computed based on other properties or some formula. If true, readonly also needs to be true and this field should not be part of an insert statement.
Optional
isDefaultComputed?: booleanWhether the default value generated by the database. CURRENT_DATE is something generated by the database vs 'Hello' which is a constant.
Optional
primaryKey?: booleanMarks the property as a primary key.
Extended JSON schema for a top-level property, including database-related metadata.