text description // A text field for storing descriptionstext user_bio // A text field for user biographiestext address // A text field for storing addresses
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"]}
timestamp created_at // Timestamp for record creationtimestamp last_login // Timestamp for user's last logintimestamp expires_at // Timestamp for expiration date
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
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