user_id
: Unique identifier (Primary Key).
join_timestamp
: When the user joined.
age
, location
, other_features
: Optional user attributes.
item_id
: Unique identifier (Primary Key).
item_name
, category
: Product metadata.
start_timestamp
/ end_timestamp
: Item availability.
price
, color
, other_features
: Additional item features.
transaction_id
: Unique identifier (Primary Key).
user_id
: Foreign Key linking to Users.
item_id
: Foreign Key linking to Items.
timestamp
: Purchase date.
total_amount
, payment_method
, other_features
: Transaction metadata.