package model import ( "encoding/json" "time" "github.com/google/uuid" ) // RelationInsight is a dual-profile understanding record. type RelationInsight struct { ID uuid.UUID `json:"id"` UserID uuid.UUID `json:"user_id"` ProfileAID uuid.UUID `json:"profile_a_id"` ProfileBID uuid.UUID `json:"profile_b_id"` Summary json.RawMessage `json:"summary"` ReportID *uuid.UUID `json:"report_id,omitempty"` CreatedAt time.Time `json:"created_at"` }