text description // A text field for storing descriptionstext user_bio // A text field for user biographiestext address // A text field for storing addresses
bool is_active // A boolean field for active statusbool is_verified // A boolean field for verification statusbool has_premium // A boolean field for premium features
timestamp created_at // Timestamp for record creationtimestamp last_login // Timestamp for user's last logintimestamp expires_at // Timestamp for expiration date
decimal price // A decimal field for pricesdecimal temperature // A decimal field for temperature valuesdecimal gpa // A decimal field for grade point average
enum status { // An enum field for status options values = ["pending", "active", "completed"]}enum role { // An enum field for user roles values = ["admin", "user", "guest"]}enum size { // An enum field for size options values = ["small", "medium", "large"]}
uuid session_id // A UUID field for session identificationuuid device_id // A UUID field for device identificationuuid token // A UUID field for unique tokens
json metadata // A JSON field for flexible metadata storagejson preferences // A JSON field for user preferencesjson custom_data // A JSON field for arbitrary data
vector embedding // A vector field for ML embeddingsvector coordinates // A vector field for spatial coordinatesvector features // A vector field for feature vectors
email user_email // An email field for user contactemail support_email // An email field for support contactemail backup_email // An email field for backup contact
password user_password { // A password field for user authentication sensitive = true}password api_key { // A password field for API authentication sensitive = true}
image profile_pic // An image field for profile picturesimage banner // An image field for banner imagesimage thumbnail // An image field for thumbnail images
video tutorial // A video field for tutorial contentvideo promo // A video field for promotional contentvideo recording // A video field for recorded content
attachment document // An attachment field for documentsattachment resume // An attachment field for resumesattachment contract // An attachment field for contracts
geo_point location // A geo point field for single locationsgeo_point store // A geo point field for store locationgeo_point checkpoint // A geo point field for route checkpoints
geo_point_collection locations // A collection of location pointsgeo_point_collection waypoints // Multiple waypoints for a routegeo_point_collection hotspots // Multiple points of interest
geo_polygon area // A polygon field for area definitiongeo_polygon territory // A polygon field for territory boundsgeo_polygon zone // A polygon field for zone definition
geo_polygon_collection regions // Multiple region polygonsgeo_polygon_collection districts // Multiple district areasgeo_polygon_collection zones // Multiple zone definitions