feat(crm): canonical crm and imported routes implementation
This commit is contained in:
@@ -10,6 +10,7 @@ import { Sentinel } from '@/components/modules/Sentinel';
|
||||
import { Inventory } from '@/components/modules/Inventory';
|
||||
import { Settings } from '@/components/modules/Settings';
|
||||
import { Catalyst } from '@/components/modules/Catalyst';
|
||||
import { CRM } from '@/components/modules/CRM';
|
||||
import { NotificationCenter } from '@/components/layout/NotificationCenter';
|
||||
import { useCrmBootstrap } from '@/hooks/useCrmBootstrap';
|
||||
import type { ModuleId } from '@/types';
|
||||
@@ -51,6 +52,7 @@ export const MODULE_ROUTES: Array<{
|
||||
{ id: 'inventory', path: '/inventory', title: 'Inventory', component: Inventory },
|
||||
{ id: 'catalyst', path: '/catalyst', title: 'The Catalyst', component: Catalyst },
|
||||
{ id: 'settings', path: '/settings', title: 'Settings', component: Settings },
|
||||
{ id: 'crm', path: '/crm', title: 'CRM', component: CRM },
|
||||
{ id: 'admin', path: '/admin', title: 'Admin', component: AdminPage, adminOnly: true },
|
||||
];
|
||||
|
||||
|
||||
@@ -8,6 +8,7 @@ import {
|
||||
Sliders,
|
||||
Megaphone,
|
||||
Shield,
|
||||
Users,
|
||||
type LucideIcon,
|
||||
} from 'lucide-react';
|
||||
import { useStore } from '@/store/useStore';
|
||||
@@ -22,6 +23,7 @@ const NAV_ICONS: Record<string, LucideIcon> = {
|
||||
'/catalyst': Megaphone,
|
||||
'/settings': Sliders,
|
||||
'/admin': Shield,
|
||||
'/crm': Users,
|
||||
};
|
||||
|
||||
export function Sidebar() {
|
||||
|
||||
868
app/src/components/modules/CRM.tsx
Normal file
868
app/src/components/modules/CRM.tsx
Normal file
@@ -0,0 +1,868 @@
|
||||
// app/src/components/modules/CRM.tsx
|
||||
// Top-level Founder CRM Module Shell
|
||||
// Implements the CRM navigation frame and subpage routing defined in Doc 10
|
||||
// Sub-pages: Contacts, Client 360, Opportunities, Tasks, Imports, Kanban
|
||||
|
||||
import { useState, useEffect, useCallback } from 'react';
|
||||
import { motion, AnimatePresence } from 'framer-motion';
|
||||
import {
|
||||
Users, ClipboardList,
|
||||
Upload, Layers, Search, RefreshCw, AlertCircle,
|
||||
ChevronRight, Calendar, TrendingUp, Phone, Mail,
|
||||
Target, Clock, UserCheck, X
|
||||
} from 'lucide-react';
|
||||
import { fetchContacts, fetchKanbanBoard, fetchTasks, fetchOpportunities } from '@/lib/crmApi';
|
||||
import type {
|
||||
CrmContactListItem, KanbanColumn, CrmTask, CrmOpportunityCard
|
||||
} from '@/types/crmTypes';
|
||||
|
||||
// ── Sub-view type ─────────────────────────────────────────────────────────────
|
||||
type CrmView = 'contacts' | 'kanban' | 'opportunities' | 'tasks' | 'imports' | 'client360';
|
||||
|
||||
// ── QD Score Bar ──────────────────────────────────────────────────────────────
|
||||
function QdBar({ value, type }: { value: number; type: 'intent' | 'urgency' }) {
|
||||
const pct = Math.round(value * 100);
|
||||
const color = type === 'intent'
|
||||
? pct > 70 ? '#22c55e' : pct > 40 ? '#f59e0b' : '#ef4444'
|
||||
: pct > 70 ? '#ef4444' : pct > 40 ? '#f59e0b' : '#6b7280';
|
||||
|
||||
return (
|
||||
<div className="flex items-center gap-2">
|
||||
<div className="flex-1 h-1.5 rounded-full bg-white/10 overflow-hidden">
|
||||
<motion.div
|
||||
initial={{ width: 0 }}
|
||||
animate={{ width: `${pct}%` }}
|
||||
transition={{ duration: 0.6, ease: 'easeOut' }}
|
||||
className="h-full rounded-full"
|
||||
style={{ background: color }}
|
||||
/>
|
||||
</div>
|
||||
<span className="text-xs font-mono w-8 text-right" style={{ color }}>{pct}</span>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
|
||||
// ── Buyer Type Badge ──────────────────────────────────────────────────────────
|
||||
function BuyerBadge({ type }: { type: string | null }) {
|
||||
const map: Record<string, { label: string; color: string }> = {
|
||||
high_intent: { label: 'High Intent', color: '#22c55e' },
|
||||
slow_burn_investor: { label: 'Investor', color: '#6366f1' },
|
||||
nri: { label: 'NRI', color: '#0ea5e9' },
|
||||
family_decision_unit: { label: 'Family Unit', color: '#f59e0b' },
|
||||
price_sensitive: { label: 'Price Sensitive',color: '#f97316' },
|
||||
broker_referral: { label: 'Broker', color: '#a855f7' },
|
||||
repeat_visitor: { label: 'Repeat', color: '#06b6d4' },
|
||||
};
|
||||
const cfg = type ? (map[type] ?? { label: type, color: '#6b7280' }) : { label: 'Unknown', color: '#3f3f46' };
|
||||
return (
|
||||
<span
|
||||
className="text-xs px-2 py-0.5 rounded-full font-medium"
|
||||
style={{ background: `${cfg.color}22`, color: cfg.color, border: `1px solid ${cfg.color}44` }}
|
||||
>
|
||||
{cfg.label}
|
||||
</span>
|
||||
);
|
||||
}
|
||||
|
||||
// ── Status Badge ──────────────────────────────────────────────────────────────
|
||||
function StatusBadge({ status }: { status: string | null }) {
|
||||
const colMap: Record<string, string> = {
|
||||
new: '#6b7280', contacted: '#3b82f6', qualified: '#06b6d4',
|
||||
site_visit_scheduled: '#8b5cf6', site_visited: '#a855f7',
|
||||
negotiation: '#f59e0b', booking_initiated: '#22c55e',
|
||||
booked: '#16a34a', lost: '#ef4444', dormant: '#374151',
|
||||
};
|
||||
const s = status ?? 'new';
|
||||
const color = colMap[s] ?? '#6b7280';
|
||||
const label = s.replace(/_/g, ' ').replace(/\b\w/g, c => c.toUpperCase());
|
||||
return (
|
||||
<span
|
||||
className="text-xs px-2 py-0.5 rounded-full font-medium"
|
||||
style={{ background: `${color}22`, color, border: `1px solid ${color}44` }}
|
||||
>
|
||||
{label}
|
||||
</span>
|
||||
);
|
||||
}
|
||||
|
||||
// ── Contact List View ─────────────────────────────────────────────────────────
|
||||
function ContactListView({ onSelectContact }: { onSelectContact: (id: string) => void }) {
|
||||
const [contacts, setContacts] = useState<CrmContactListItem[]>([]);
|
||||
const [total, setTotal] = useState(0);
|
||||
const [loading, setLoading] = useState(true);
|
||||
const [error, setError] = useState<string | null>(null);
|
||||
const [search, setSearch] = useState('');
|
||||
const [buyerFilter, setBuyerFilter] = useState('');
|
||||
const [page, setPage] = useState(0);
|
||||
const LIMIT = 30;
|
||||
|
||||
const load = useCallback(async () => {
|
||||
setLoading(true);
|
||||
setError(null);
|
||||
try {
|
||||
const result = await fetchContacts({
|
||||
search: search || undefined,
|
||||
buyer_type: buyerFilter || undefined,
|
||||
limit: LIMIT,
|
||||
offset: page * LIMIT,
|
||||
});
|
||||
setContacts(result.contacts);
|
||||
setTotal(result.total);
|
||||
} catch (e) {
|
||||
setError((e as Error).message);
|
||||
} finally {
|
||||
setLoading(false);
|
||||
}
|
||||
}, [search, buyerFilter, page]);
|
||||
|
||||
useEffect(() => { void load(); }, [load]);
|
||||
|
||||
return (
|
||||
<div className="flex flex-col gap-4">
|
||||
{/* Toolbar */}
|
||||
<div className="flex items-center gap-3">
|
||||
<div className="relative flex-1">
|
||||
<Search className="absolute left-3 top-1/2 -translate-y-1/2 w-4 h-4 text-zinc-500" />
|
||||
<input
|
||||
value={search}
|
||||
onChange={e => { setSearch(e.target.value); setPage(0); }}
|
||||
placeholder="Search name, email, phone…"
|
||||
className="w-full pl-9 pr-4 py-2 rounded-xl text-sm text-white placeholder-zinc-500 outline-none focus:ring-1 focus:ring-white/20"
|
||||
style={{ background: 'hsl(var(--surface))', border: '1px solid hsl(var(--border-subtle))' }}
|
||||
/>
|
||||
{search && (
|
||||
<button onClick={() => { setSearch(''); setPage(0); }} className="absolute right-3 top-1/2 -translate-y-1/2">
|
||||
<X className="w-3.5 h-3.5 text-zinc-500" />
|
||||
</button>
|
||||
)}
|
||||
</div>
|
||||
<select
|
||||
value={buyerFilter}
|
||||
onChange={e => { setBuyerFilter(e.target.value); setPage(0); }}
|
||||
className="px-3 py-2 rounded-xl text-sm text-white outline-none"
|
||||
style={{ background: 'hsl(var(--surface))', border: '1px solid hsl(var(--border-subtle))' }}
|
||||
>
|
||||
<option value="">All Types</option>
|
||||
<option value="high_intent">High Intent</option>
|
||||
<option value="slow_burn_investor">Investor</option>
|
||||
<option value="nri">NRI</option>
|
||||
<option value="family_decision_unit">Family Unit</option>
|
||||
<option value="price_sensitive">Price Sensitive</option>
|
||||
<option value="broker_referral">Broker</option>
|
||||
<option value="repeat_visitor">Repeat Visitor</option>
|
||||
</select>
|
||||
<button
|
||||
onClick={load}
|
||||
className="p-2 rounded-xl hover:bg-white/5 text-zinc-400 hover:text-white transition-colors"
|
||||
title="Refresh"
|
||||
>
|
||||
<RefreshCw className={`w-4 h-4 ${loading ? 'animate-spin' : ''}`} />
|
||||
</button>
|
||||
<span className="text-xs text-zinc-500">{total.toLocaleString()} contacts</span>
|
||||
</div>
|
||||
|
||||
{error && (
|
||||
<div className="flex items-center gap-2 px-4 py-3 rounded-xl text-sm text-red-400 bg-red-500/10 border border-red-500/20">
|
||||
<AlertCircle className="w-4 h-4 flex-none" />
|
||||
{error}
|
||||
</div>
|
||||
)}
|
||||
|
||||
{/* Table */}
|
||||
<div
|
||||
className="rounded-2xl overflow-hidden"
|
||||
style={{ background: 'hsl(var(--surface))', border: '1px solid hsl(var(--border-subtle))' }}
|
||||
>
|
||||
{/* Header */}
|
||||
<div
|
||||
className="grid text-xs text-zinc-500 font-medium px-4 py-3"
|
||||
style={{
|
||||
gridTemplateColumns: '2fr 1.5fr 1.2fr 1.2fr 1fr 0.8fr 0.8fr',
|
||||
borderBottom: '1px solid hsl(var(--border-subtle))'
|
||||
}}
|
||||
>
|
||||
<span>Name</span>
|
||||
<span>Contact</span>
|
||||
<span>Buyer Type</span>
|
||||
<span>Lead Status</span>
|
||||
<span>Intent</span>
|
||||
<span>Interactions</span>
|
||||
<span>Tasks</span>
|
||||
</div>
|
||||
|
||||
{loading ? (
|
||||
<div className="flex items-center justify-center h-48 text-zinc-500 text-sm">
|
||||
<RefreshCw className="w-4 h-4 animate-spin mr-2" />
|
||||
Loading contacts…
|
||||
</div>
|
||||
) : contacts.length === 0 ? (
|
||||
<div className="flex flex-col items-center justify-center h-48 gap-3 text-zinc-500">
|
||||
<Users className="w-8 h-8 opacity-30" />
|
||||
<p className="text-sm">No contacts found. Import a CSV or add manually.</p>
|
||||
</div>
|
||||
) : (
|
||||
<div className="divide-y divide-white/5">
|
||||
{contacts.map((c) => (
|
||||
<motion.div
|
||||
key={c.person_id}
|
||||
initial={{ opacity: 0 }}
|
||||
animate={{ opacity: 1 }}
|
||||
onClick={() => onSelectContact(c.person_id)}
|
||||
className="grid items-center px-4 py-3 cursor-pointer hover:bg-white/[0.03] transition-colors"
|
||||
style={{ gridTemplateColumns: '2fr 1.5fr 1.2fr 1.2fr 1fr 0.8fr 0.8fr' }}
|
||||
>
|
||||
<div className="flex items-center gap-3">
|
||||
<div
|
||||
className="w-8 h-8 rounded-xl flex items-center justify-center text-xs font-semibold flex-none"
|
||||
style={{ background: 'hsl(var(--accent))', color: 'hsl(var(--accent-fg))' }}
|
||||
>
|
||||
{c.full_name.slice(0, 2).toUpperCase()}
|
||||
</div>
|
||||
<div>
|
||||
<p className="text-sm font-medium text-white leading-tight">{c.full_name}</p>
|
||||
{c.last_interaction_at && (
|
||||
<p className="text-xs text-zinc-500 mt-0.5">
|
||||
Last: {new Date(c.last_interaction_at).toLocaleDateString('en-IN', { day: 'numeric', month: 'short' })}
|
||||
</p>
|
||||
)}
|
||||
</div>
|
||||
</div>
|
||||
<div className="min-w-0">
|
||||
{c.primary_email && <p className="text-xs text-zinc-400 truncate">{c.primary_email}</p>}
|
||||
{c.primary_phone && <p className="text-xs text-zinc-500">{c.primary_phone}</p>}
|
||||
</div>
|
||||
<div><BuyerBadge type={c.buyer_type} /></div>
|
||||
<div><StatusBadge status={c.lead_status} /></div>
|
||||
<div className="pr-4">
|
||||
<QdBar value={c.intent_score} type="intent" />
|
||||
</div>
|
||||
<div className="text-center">
|
||||
<span className="text-sm text-zinc-300">{c.interaction_count}</span>
|
||||
</div>
|
||||
<div className="text-center">
|
||||
{c.pending_tasks > 0 ? (
|
||||
<span className="text-xs px-2 py-0.5 rounded-full bg-amber-500/20 text-amber-400 border border-amber-500/30">
|
||||
{c.pending_tasks}
|
||||
</span>
|
||||
) : (
|
||||
<span className="text-zinc-600 text-xs">—</span>
|
||||
)}
|
||||
</div>
|
||||
</motion.div>
|
||||
))}
|
||||
</div>
|
||||
)}
|
||||
</div>
|
||||
|
||||
{/* Pagination */}
|
||||
{total > LIMIT && (
|
||||
<div className="flex items-center justify-between text-sm text-zinc-500">
|
||||
<button
|
||||
disabled={page === 0}
|
||||
onClick={() => setPage(p => Math.max(0, p - 1))}
|
||||
className="px-4 py-2 rounded-lg disabled:opacity-30 hover:text-white transition-colors"
|
||||
>
|
||||
← Previous
|
||||
</button>
|
||||
<span>Page {page + 1} of {Math.ceil(total / LIMIT)}</span>
|
||||
<button
|
||||
disabled={(page + 1) * LIMIT >= total}
|
||||
onClick={() => setPage(p => p + 1)}
|
||||
className="px-4 py-2 rounded-lg disabled:opacity-30 hover:text-white transition-colors"
|
||||
>
|
||||
Next →
|
||||
</button>
|
||||
</div>
|
||||
)}
|
||||
</div>
|
||||
);
|
||||
}
|
||||
|
||||
// ── Kanban View ───────────────────────────────────────────────────────────────
|
||||
function KanbanView({ onSelectContact }: { onSelectContact: (id: string) => void }) {
|
||||
const [board, setBoard] = useState<KanbanColumn[]>([]);
|
||||
const [loading, setLoading] = useState(true);
|
||||
const [error, setError] = useState<string | null>(null);
|
||||
|
||||
useEffect(() => {
|
||||
setLoading(true);
|
||||
fetchKanbanBoard()
|
||||
.then(setBoard)
|
||||
.catch(e => setError((e as Error).message))
|
||||
.finally(() => setLoading(false));
|
||||
}, []);
|
||||
|
||||
const activeColumns = board.filter(c => c.count > 0 || ['new', 'qualified', 'site_visited', 'negotiation', 'booked'].includes(c.status));
|
||||
|
||||
return (
|
||||
<div className="flex flex-col gap-4">
|
||||
{error && (
|
||||
<div className="flex items-center gap-2 px-4 py-3 rounded-xl text-sm text-red-400 bg-red-500/10 border border-red-500/20">
|
||||
<AlertCircle className="w-4 h-4" />{error}
|
||||
</div>
|
||||
)}
|
||||
{loading ? (
|
||||
<div className="flex items-center justify-center h-64 text-zinc-500 text-sm">
|
||||
<RefreshCw className="w-4 h-4 animate-spin mr-2" /> Loading pipeline…
|
||||
</div>
|
||||
) : (
|
||||
<div className="flex gap-4 overflow-x-auto pb-4">
|
||||
{activeColumns.map(col => (
|
||||
<div
|
||||
key={col.status}
|
||||
className="flex-none w-[260px] rounded-2xl flex flex-col"
|
||||
style={{ background: 'hsl(var(--surface))', border: '1px solid hsl(var(--border-subtle))' }}
|
||||
>
|
||||
<div className="px-4 py-3 flex items-center justify-between" style={{ borderBottom: '1px solid hsl(var(--border-subtle))' }}>
|
||||
<span className="text-sm font-semibold text-white">{col.label}</span>
|
||||
<span className="text-xs px-2 py-0.5 rounded-full bg-white/10 text-zinc-400">{col.count}</span>
|
||||
</div>
|
||||
<div className="flex-1 overflow-y-auto max-h-[500px] p-3 flex flex-col gap-2 custom-scrollbar">
|
||||
{col.items.length === 0 ? (
|
||||
<div className="text-center py-6 text-zinc-600 text-xs">No clients</div>
|
||||
) : col.items.map(card => (
|
||||
<motion.div
|
||||
key={card.lead_id}
|
||||
initial={{ opacity: 0, scale: 0.98 }}
|
||||
animate={{ opacity: 1, scale: 1 }}
|
||||
onClick={() => onSelectContact(card.person_id)}
|
||||
className="p-3 rounded-xl cursor-pointer hover:bg-white/[0.06] transition-all"
|
||||
style={{ background: 'rgba(255,255,255,0.03)', border: '1px solid rgba(255,255,255,0.07)' }}
|
||||
>
|
||||
<div className="flex items-center gap-2 mb-2">
|
||||
<div
|
||||
className="w-7 h-7 rounded-lg flex items-center justify-center text-xs font-semibold flex-none"
|
||||
style={{ background: 'hsl(var(--accent))', color: 'hsl(var(--accent-fg))' }}
|
||||
>
|
||||
{card.client_name.slice(0, 2).toUpperCase()}
|
||||
</div>
|
||||
<div className="min-w-0">
|
||||
<p className="text-sm font-medium text-white truncate">{card.client_name}</p>
|
||||
{card.budget_band && <p className="text-xs text-zinc-500 truncate">{card.budget_band}</p>}
|
||||
</div>
|
||||
</div>
|
||||
<div className="flex items-center justify-between mb-1.5">
|
||||
<BuyerBadge type={card.buyer_type} />
|
||||
{card.urgency && card.urgency !== 'low' && (
|
||||
<span className="text-xs text-amber-400">{card.urgency}</span>
|
||||
)}
|
||||
</div>
|
||||
<QdBar value={card.intent_score} type="intent" />
|
||||
</motion.div>
|
||||
))}
|
||||
</div>
|
||||
</div>
|
||||
))}
|
||||
</div>
|
||||
)}
|
||||
</div>
|
||||
);
|
||||
}
|
||||
|
||||
// ── Opportunities View ────────────────────────────────────────────────────────
|
||||
function OpportunitiesView({ onSelectContact }: { onSelectContact: (id: string) => void }) {
|
||||
const [opps, setOpps] = useState<CrmOpportunityCard[]>([]);
|
||||
const [loading, setLoading] = useState(true);
|
||||
|
||||
useEffect(() => {
|
||||
fetchOpportunities({ limit: 100 })
|
||||
.then(setOpps)
|
||||
.finally(() => setLoading(false));
|
||||
}, []);
|
||||
|
||||
const stageColor: Record<string, string> = {
|
||||
prospect: '#6b7280', qualified: '#3b82f6', proposal: '#8b5cf6',
|
||||
site_visit: '#06b6d4', negotiation: '#f59e0b', booking: '#22c55e',
|
||||
agreement: '#16a34a', closed_won: '#166534', closed_lost: '#7f1d1d',
|
||||
};
|
||||
|
||||
return (
|
||||
<div className="flex flex-col gap-4">
|
||||
{loading ? (
|
||||
<div className="flex items-center justify-center h-64 text-zinc-500 text-sm">
|
||||
<RefreshCw className="w-4 h-4 animate-spin mr-2" /> Loading pipeline…
|
||||
</div>
|
||||
) : opps.length === 0 ? (
|
||||
<div className="flex flex-col items-center justify-center h-48 gap-3 text-zinc-500">
|
||||
<Target className="w-8 h-8 opacity-30" />
|
||||
<p className="text-sm">No opportunities in the pipeline yet.</p>
|
||||
</div>
|
||||
) : (
|
||||
<div
|
||||
className="rounded-2xl overflow-hidden"
|
||||
style={{ background: 'hsl(var(--surface))', border: '1px solid hsl(var(--border-subtle))' }}
|
||||
>
|
||||
<div
|
||||
className="grid text-xs text-zinc-500 font-medium px-4 py-3"
|
||||
style={{ gridTemplateColumns: '2fr 1.5fr 1.2fr 1fr 1fr 1.5fr', borderBottom: '1px solid hsl(var(--border-subtle))' }}
|
||||
>
|
||||
<span>Client</span>
|
||||
<span>Project</span>
|
||||
<span>Stage</span>
|
||||
<span>Value</span>
|
||||
<span>Probability</span>
|
||||
<span>Next Action</span>
|
||||
</div>
|
||||
<div className="divide-y divide-white/5">
|
||||
{opps.map(o => {
|
||||
const color = stageColor[o.stage] ?? '#6b7280';
|
||||
return (
|
||||
<div
|
||||
key={o.opportunity_id}
|
||||
className="grid items-center px-4 py-3 cursor-pointer hover:bg-white/[0.03] transition-colors"
|
||||
style={{ gridTemplateColumns: '2fr 1.5fr 1.2fr 1fr 1fr 1.5fr' }}
|
||||
onClick={() => o.person_id && onSelectContact(o.person_id)}
|
||||
>
|
||||
<p className="text-sm text-white">{o.client_name ?? '—'}</p>
|
||||
<p className="text-sm text-zinc-400 truncate">{o.project_name ?? '—'}</p>
|
||||
<span
|
||||
className="text-xs px-2 py-0.5 rounded-full w-fit"
|
||||
style={{ background: `${color}22`, color, border: `1px solid ${color}44` }}
|
||||
>
|
||||
{o.stage.replace(/_/g, ' ')}
|
||||
</span>
|
||||
<p className="text-sm text-white">
|
||||
{o.value ? `₹${(o.value / 1e7).toFixed(1)}Cr` : '—'}
|
||||
</p>
|
||||
<div className="flex items-center gap-1.5">
|
||||
<div className="flex-1 h-1.5 rounded-full bg-white/10">
|
||||
<div
|
||||
className="h-full rounded-full"
|
||||
style={{ width: `${o.probability ?? 0}%`, background: color }}
|
||||
/>
|
||||
</div>
|
||||
<span className="text-xs text-zinc-400 w-8">{o.probability ?? 0}%</span>
|
||||
</div>
|
||||
<p className="text-xs text-zinc-400 truncate">{o.next_action ?? '—'}</p>
|
||||
</div>
|
||||
);
|
||||
})}
|
||||
</div>
|
||||
</div>
|
||||
)}
|
||||
</div>
|
||||
);
|
||||
}
|
||||
|
||||
// ── Tasks View ────────────────────────────────────────────────────────────────
|
||||
function TasksView({ onSelectContact }: { onSelectContact: (id: string) => void }) {
|
||||
const [tasks, setTasks] = useState<CrmTask[]>([]);
|
||||
const [loading, setLoading] = useState(true);
|
||||
|
||||
useEffect(() => {
|
||||
fetchTasks({ status: 'pending', limit: 100 })
|
||||
.then(setTasks)
|
||||
.finally(() => setLoading(false));
|
||||
}, []);
|
||||
|
||||
const priorityColor: Record<string, string> = {
|
||||
urgent: '#ef4444', high: '#f59e0b', normal: '#6b7280', low: '#374151',
|
||||
};
|
||||
|
||||
return (
|
||||
<div className="flex flex-col gap-4">
|
||||
{loading ? (
|
||||
<div className="flex items-center justify-center h-64 text-zinc-500 text-sm">
|
||||
<RefreshCw className="w-4 h-4 animate-spin mr-2" /> Loading tasks…
|
||||
</div>
|
||||
) : tasks.length === 0 ? (
|
||||
<div className="flex flex-col items-center justify-center h-48 gap-3 text-zinc-500">
|
||||
<ClipboardList className="w-8 h-8 opacity-30" />
|
||||
<p className="text-sm">No pending tasks.</p>
|
||||
</div>
|
||||
) : (
|
||||
<div className="flex flex-col gap-2">
|
||||
{tasks.map(t => {
|
||||
const color = priorityColor[t.priority] ?? '#6b7280';
|
||||
const overdue = t.due_at && new Date(t.due_at) < new Date();
|
||||
return (
|
||||
<motion.div
|
||||
key={t.reminder_id}
|
||||
initial={{ opacity: 0, x: -8 }}
|
||||
animate={{ opacity: 1, x: 0 }}
|
||||
className="flex items-center gap-4 px-4 py-3 rounded-2xl cursor-pointer hover:bg-white/[0.03] transition-all"
|
||||
style={{ background: 'hsl(var(--surface))', border: `1px solid ${overdue ? '#ef444444' : 'hsl(var(--border-subtle))'}` }}
|
||||
onClick={() => t.person_id && onSelectContact(t.person_id)}
|
||||
>
|
||||
<div
|
||||
className="w-2 h-2 rounded-full flex-none"
|
||||
style={{ background: color }}
|
||||
/>
|
||||
<div className="flex-1 min-w-0">
|
||||
<p className="text-sm font-medium text-white truncate">{t.title}</p>
|
||||
<p className="text-xs text-zinc-500">{t.client_name} · {t.reminder_type.replace(/_/g, ' ')}</p>
|
||||
</div>
|
||||
<div className="text-right flex-none">
|
||||
{t.due_at && (
|
||||
<p className={`text-xs font-mono ${overdue ? 'text-red-400' : 'text-zinc-500'}`}>
|
||||
{new Date(t.due_at).toLocaleDateString('en-IN', { day: 'numeric', month: 'short' })}
|
||||
</p>
|
||||
)}
|
||||
<span
|
||||
className="text-xs px-2 py-0.5 rounded-full"
|
||||
style={{ background: `${color}22`, color }}
|
||||
>
|
||||
{t.priority}
|
||||
</span>
|
||||
</div>
|
||||
</motion.div>
|
||||
);
|
||||
})}
|
||||
</div>
|
||||
)}
|
||||
</div>
|
||||
);
|
||||
}
|
||||
|
||||
// ── Import View (lightweight inline) ────────────────────────────────────────
|
||||
function ImportsView() {
|
||||
return (
|
||||
<div className="flex flex-col items-center justify-center h-64 gap-4 text-zinc-500">
|
||||
<Upload className="w-10 h-10 opacity-30" />
|
||||
<div className="text-center">
|
||||
<p className="text-sm font-medium text-white mb-1">CRM CSV Import</p>
|
||||
<p className="text-xs text-zinc-500 max-w-xs">
|
||||
Upload any CRM CSV export. Velocity will auto-map columns, propose normalizations,
|
||||
and queue them for your review before committing to canonical records.
|
||||
</p>
|
||||
</div>
|
||||
<label className="px-5 py-2.5 rounded-xl text-sm font-medium cursor-pointer hover:opacity-90 transition-opacity"
|
||||
style={{ background: 'hsl(var(--accent))', color: 'hsl(var(--accent-fg))' }}>
|
||||
<input type="file" accept=".csv" className="hidden" onChange={async (e) => {
|
||||
const file = e.target.files?.[0];
|
||||
if (!file) return;
|
||||
const { uploadCrmImport } = await import('@/lib/crmApi');
|
||||
try {
|
||||
const result = await uploadCrmImport(file);
|
||||
alert(`✅ Imported: ${result.row_count} rows, ${result.proposals_created} proposals queued.\n${result.message}`);
|
||||
} catch (err) {
|
||||
alert(`❌ Import failed: ${(err as Error).message}`);
|
||||
}
|
||||
}} />
|
||||
Choose CSV File
|
||||
</label>
|
||||
<p className="text-xs text-zinc-600">Supports exports from Salesforce, HubSpot, Excel, or any flat contact list</p>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
|
||||
// ── Client 360 Inline Panel ───────────────────────────────────────────────────
|
||||
function Client360Panel({ personId, onClose }: { personId: string; onClose: () => void }) {
|
||||
const [data, setData] = useState<import('@/types/crmTypes').Client360Snapshot | null>(null);
|
||||
const [loading, setLoading] = useState(true);
|
||||
const [error, setError] = useState<string | null>(null);
|
||||
|
||||
useEffect(() => {
|
||||
setLoading(true);
|
||||
setError(null);
|
||||
import('@/lib/crmApi').then(({ fetchClient360 }) =>
|
||||
fetchClient360(personId)
|
||||
.then(setData)
|
||||
.catch(e => setError((e as Error).message))
|
||||
.finally(() => setLoading(false))
|
||||
);
|
||||
}, [personId]);
|
||||
|
||||
return (
|
||||
<motion.div
|
||||
initial={{ opacity: 0, x: 40 }}
|
||||
animate={{ opacity: 1, x: 0 }}
|
||||
exit={{ opacity: 0, x: 40 }}
|
||||
transition={{ duration: 0.3 }}
|
||||
className="fixed inset-y-0 right-0 w-[520px] z-50 flex flex-col shadow-2xl"
|
||||
style={{ background: '#0a0b10', borderLeft: '1px solid hsl(var(--border-subtle))' }}
|
||||
>
|
||||
{/* Header */}
|
||||
<div className="flex items-center justify-between px-6 py-4" style={{ borderBottom: '1px solid hsl(var(--border-subtle))' }}>
|
||||
<div className="flex items-center gap-3">
|
||||
<UserCheck className="w-5 h-5 text-zinc-400" />
|
||||
<span className="font-semibold text-white">Client 360</span>
|
||||
</div>
|
||||
<button onClick={onClose} className="p-1.5 rounded-lg hover:bg-white/5 text-zinc-500 hover:text-white transition-colors">
|
||||
<X className="w-4 h-4" />
|
||||
</button>
|
||||
</div>
|
||||
|
||||
<div className="flex-1 overflow-y-auto custom-scrollbar p-6">
|
||||
{loading && (
|
||||
<div className="flex items-center justify-center h-48 text-zinc-500 text-sm">
|
||||
<RefreshCw className="w-4 h-4 animate-spin mr-2" /> Loading dossier…
|
||||
</div>
|
||||
)}
|
||||
{error && (
|
||||
<div className="flex items-center gap-2 px-4 py-3 rounded-xl text-sm text-red-400 bg-red-500/10">
|
||||
<AlertCircle className="w-4 h-4" />{error}
|
||||
</div>
|
||||
)}
|
||||
{data && (
|
||||
<div className="flex flex-col gap-6">
|
||||
{/* Identity */}
|
||||
<div>
|
||||
<div className="flex items-center gap-4 mb-3">
|
||||
<div
|
||||
className="w-12 h-12 rounded-2xl flex items-center justify-center text-lg font-bold"
|
||||
style={{ background: 'hsl(var(--accent))', color: 'hsl(var(--accent-fg))' }}
|
||||
>
|
||||
{data.identity.full_name.slice(0, 2).toUpperCase()}
|
||||
</div>
|
||||
<div>
|
||||
<h2 className="text-xl font-bold text-white">{data.identity.full_name}</h2>
|
||||
<div className="flex items-center gap-2 mt-1">
|
||||
<BuyerBadge type={data.identity.buyer_type} />
|
||||
{data.current_lead && <StatusBadge status={data.current_lead.status} />}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div className="grid grid-cols-2 gap-2">
|
||||
{data.identity.primary_email && (
|
||||
<div className="flex items-center gap-2 text-xs text-zinc-400">
|
||||
<Mail className="w-3.5 h-3.5" />
|
||||
<span className="truncate">{data.identity.primary_email}</span>
|
||||
</div>
|
||||
)}
|
||||
{data.identity.primary_phone && (
|
||||
<div className="flex items-center gap-2 text-xs text-zinc-400">
|
||||
<Phone className="w-3.5 h-3.5" />
|
||||
<span>{data.identity.primary_phone}</span>
|
||||
</div>
|
||||
)}
|
||||
</div>
|
||||
</div>
|
||||
|
||||
{/* QD Scores */}
|
||||
{Object.keys(data.qd_overview).length > 0 && (
|
||||
<Section title="Quantum Dynamics" icon={<TrendingUp className="w-4 h-4" />}>
|
||||
<div className="flex flex-col gap-3">
|
||||
{Object.entries(data.qd_overview).map(([type, score]) => (
|
||||
<div key={type}>
|
||||
<div className="flex justify-between text-xs text-zinc-500 mb-1">
|
||||
<span>{type.replace(/_score$/, '').replace(/_/g, ' ')}</span>
|
||||
<span className="text-zinc-400">{score.computed_at ? new Date(score.computed_at).toLocaleDateString('en-IN') : ''}</span>
|
||||
</div>
|
||||
<QdBar value={score.current_value} type={type.includes('urgency') ? 'urgency' : 'intent'} />
|
||||
</div>
|
||||
))}
|
||||
</div>
|
||||
</Section>
|
||||
)}
|
||||
|
||||
{/* Property Interests */}
|
||||
{data.property_interests.length > 0 && (
|
||||
<Section title="Property Interests" icon={<Layers className="w-4 h-4" />}>
|
||||
<div className="flex flex-col gap-2">
|
||||
{data.property_interests.map(pi => (
|
||||
<div key={pi.interest_id} className="flex items-center justify-between px-3 py-2 rounded-xl bg-white/[0.03]">
|
||||
<div>
|
||||
<p className="text-sm font-medium text-white">{pi.project_name}</p>
|
||||
{pi.configuration && <p className="text-xs text-zinc-500">{pi.configuration}</p>}
|
||||
</div>
|
||||
{(pi.budget_min || pi.budget_max) && (
|
||||
<p className="text-xs text-zinc-400">
|
||||
₹{pi.budget_min ? (pi.budget_min / 1e7).toFixed(1) : '?'}–{pi.budget_max ? (pi.budget_max / 1e7).toFixed(1) : '?'} Cr
|
||||
</p>
|
||||
)}
|
||||
</div>
|
||||
))}
|
||||
</div>
|
||||
</Section>
|
||||
)}
|
||||
|
||||
{/* Active Opportunities */}
|
||||
{data.active_opportunities.length > 0 && (
|
||||
<Section title="Active Opportunities" icon={<Target className="w-4 h-4" />}>
|
||||
<div className="flex flex-col gap-2">
|
||||
{data.active_opportunities.map(o => (
|
||||
<div key={o.opportunity_id} className="flex items-center justify-between px-3 py-2 rounded-xl bg-white/[0.03]">
|
||||
<div>
|
||||
<p className="text-sm text-white">{o.stage.replace(/_/g, ' ')}</p>
|
||||
{o.next_action && <p className="text-xs text-zinc-500 mt-0.5">{o.next_action}</p>}
|
||||
</div>
|
||||
<div className="text-right">
|
||||
{o.value && <p className="text-sm font-medium text-white">₹{(o.value / 1e7).toFixed(1)}Cr</p>}
|
||||
{o.probability != null && <p className="text-xs text-zinc-500">{o.probability}% prob.</p>}
|
||||
</div>
|
||||
</div>
|
||||
))}
|
||||
</div>
|
||||
</Section>
|
||||
)}
|
||||
|
||||
{/* Recent Interactions */}
|
||||
{data.recent_interactions.length > 0 && (
|
||||
<Section title="Recent Interactions" icon={<Clock className="w-4 h-4" />}>
|
||||
<div className="flex flex-col gap-2">
|
||||
{data.recent_interactions.map(i => (
|
||||
<div key={i.interaction_id} className="flex items-start gap-2 px-3 py-2 rounded-xl bg-white/[0.03]">
|
||||
<span className="text-xs px-1.5 py-0.5 rounded bg-white/10 text-zinc-400 flex-none">{i.channel}</span>
|
||||
<div className="min-w-0">
|
||||
{i.summary && <p className="text-xs text-zinc-300 line-clamp-2">{i.summary}</p>}
|
||||
{i.happened_at && (
|
||||
<p className="text-xs text-zinc-600 mt-0.5">
|
||||
{new Date(i.happened_at).toLocaleDateString('en-IN', { day: 'numeric', month: 'short', year: '2-digit' })}
|
||||
</p>
|
||||
)}
|
||||
</div>
|
||||
</div>
|
||||
))}
|
||||
</div>
|
||||
</Section>
|
||||
)}
|
||||
|
||||
{/* Pending Tasks */}
|
||||
{data.tasks.length > 0 && (
|
||||
<Section title="Pending Tasks" icon={<ClipboardList className="w-4 h-4" />}>
|
||||
<div className="flex flex-col gap-2">
|
||||
{data.tasks.map(t => (
|
||||
<div key={t.reminder_id} className="flex items-center justify-between px-3 py-2 rounded-xl bg-white/[0.03]">
|
||||
<p className="text-sm text-white truncate flex-1">{t.title}</p>
|
||||
{t.due_at && (
|
||||
<span className="text-xs text-zinc-500 ml-2 flex-none">
|
||||
<Calendar className="w-3 h-3 inline mr-1" />
|
||||
{new Date(t.due_at).toLocaleDateString('en-IN', { day: 'numeric', month: 'short' })}
|
||||
</span>
|
||||
)}
|
||||
</div>
|
||||
))}
|
||||
</div>
|
||||
</Section>
|
||||
)}
|
||||
|
||||
{/* Risk Flags and Next Actions */}
|
||||
{(data.risk_flags.length > 0 || data.recommended_next_actions.length > 0) && (
|
||||
<Section title="Oracle Signals" icon={<AlertCircle className="w-4 h-4" />}>
|
||||
{data.risk_flags.map(f => (
|
||||
<div key={f} className="text-xs text-amber-400 flex items-center gap-1.5 mb-1.5">
|
||||
<span className="w-1.5 h-1.5 rounded-full bg-amber-400 flex-none" />
|
||||
{f.replace(/_/g, ' ')}
|
||||
</div>
|
||||
))}
|
||||
{data.recommended_next_actions.map((a, i) => (
|
||||
<div key={i} className="text-xs text-zinc-300 flex items-start gap-1.5 mb-1.5">
|
||||
<ChevronRight className="w-3 h-3 text-zinc-500 flex-none mt-0.5" />
|
||||
{a}
|
||||
</div>
|
||||
))}
|
||||
</Section>
|
||||
)}
|
||||
</div>
|
||||
)}
|
||||
</div>
|
||||
</motion.div>
|
||||
);
|
||||
}
|
||||
|
||||
// ── Section wrapper ───────────────────────────────────────────────────────────
|
||||
function Section({ title, icon, children }: { title: string; icon: React.ReactNode; children: React.ReactNode }) {
|
||||
return (
|
||||
<div>
|
||||
<div className="flex items-center gap-2 mb-3">
|
||||
<span className="text-zinc-500">{icon}</span>
|
||||
<h3 className="text-xs font-semibold text-zinc-400 uppercase tracking-widest">{title}</h3>
|
||||
</div>
|
||||
{children}
|
||||
</div>
|
||||
);
|
||||
}
|
||||
|
||||
// ── Nav Tab ───────────────────────────────────────────────────────────────────
|
||||
function NavTab({
|
||||
label, icon, active, count, onClick,
|
||||
}: {
|
||||
label: string; icon: React.ReactNode;
|
||||
active: boolean; count?: number; onClick: () => void;
|
||||
}) {
|
||||
return (
|
||||
<button
|
||||
onClick={onClick}
|
||||
className={`flex items-center gap-2.5 px-4 py-2.5 rounded-xl text-sm font-medium transition-all ${
|
||||
active ? 'text-white' : 'text-zinc-500 hover:text-zinc-300'
|
||||
}`}
|
||||
style={active ? {
|
||||
background: 'hsl(var(--accent))',
|
||||
color: 'hsl(var(--accent-fg))',
|
||||
boxShadow: '0 0 20px hsla(var(--accent), 0.3)',
|
||||
} : {}}
|
||||
>
|
||||
{icon}
|
||||
{label}
|
||||
{count != null && count > 0 && (
|
||||
<span
|
||||
className="ml-0.5 text-xs px-1.5 py-0.5 rounded-full"
|
||||
style={{ background: active ? 'rgba(255,255,255,0.2)' : 'rgba(255,255,255,0.1)' }}
|
||||
>
|
||||
{count}
|
||||
</span>
|
||||
)}
|
||||
</button>
|
||||
);
|
||||
}
|
||||
|
||||
// ── Main CRM Component ────────────────────────────────────────────────────────
|
||||
export function CRM() {
|
||||
const [view, setView] = useState<CrmView>('contacts');
|
||||
const [selectedPersonId, setSelectedPersonId] = useState<string | null>(null);
|
||||
|
||||
const handleSelectContact = (id: string) => {
|
||||
setSelectedPersonId(id);
|
||||
};
|
||||
|
||||
return (
|
||||
<div className="relative h-full flex flex-col gap-6">
|
||||
{/* Module Header */}
|
||||
<div className="flex items-center justify-between">
|
||||
<div>
|
||||
<h2 className="text-2xl font-bold text-white tracking-tight">Client Intelligence</h2>
|
||||
<p className="text-sm text-zinc-500 mt-0.5">Canonical CRM — contacts, pipeline, interactions, and 360° dossiers</p>
|
||||
</div>
|
||||
<div className="flex items-center gap-2 text-xs text-zinc-600 px-3 py-1.5 rounded-lg"
|
||||
style={{ background: 'hsl(var(--surface))', border: '1px solid hsl(var(--border-subtle))' }}>
|
||||
<div className="w-1.5 h-1.5 rounded-full bg-emerald-400" />
|
||||
Canonical Mode
|
||||
</div>
|
||||
</div>
|
||||
|
||||
{/* Navigation Tabs */}
|
||||
<div className="flex items-center gap-1 flex-wrap">
|
||||
<NavTab label="Contacts" icon={<Users className="w-4 h-4" />} active={view === 'contacts'} onClick={() => setView('contacts')} />
|
||||
<NavTab label="Pipeline" icon={<Layers className="w-4 h-4" />} active={view === 'kanban'} onClick={() => setView('kanban')} />
|
||||
<NavTab label="Deals" icon={<Target className="w-4 h-4" />} active={view === 'opportunities'} onClick={() => setView('opportunities')} />
|
||||
<NavTab label="Tasks" icon={<ClipboardList className="w-4 h-4" />} active={view === 'tasks'} onClick={() => setView('tasks')} />
|
||||
<NavTab label="Import" icon={<Upload className="w-4 h-4" />} active={view === 'imports'} onClick={() => setView('imports')} />
|
||||
</div>
|
||||
|
||||
{/* View Content */}
|
||||
<AnimatePresence mode="wait">
|
||||
<motion.div
|
||||
key={view}
|
||||
initial={{ opacity: 0, y: 12 }}
|
||||
animate={{ opacity: 1, y: 0 }}
|
||||
exit={{ opacity: 0, y: -12 }}
|
||||
transition={{ duration: 0.2 }}
|
||||
className="flex-1"
|
||||
>
|
||||
{view === 'contacts' && <ContactListView onSelectContact={handleSelectContact} />}
|
||||
{view === 'kanban' && <KanbanView onSelectContact={handleSelectContact} />}
|
||||
{view === 'opportunities' && <OpportunitiesView onSelectContact={handleSelectContact} />}
|
||||
{view === 'tasks' && <TasksView onSelectContact={handleSelectContact} />}
|
||||
{view === 'imports' && <ImportsView />}
|
||||
</motion.div>
|
||||
</AnimatePresence>
|
||||
|
||||
{/* Client 360 Slide-over Panel */}
|
||||
<AnimatePresence>
|
||||
{selectedPersonId && (
|
||||
<>
|
||||
<motion.div
|
||||
initial={{ opacity: 0 }}
|
||||
animate={{ opacity: 1 }}
|
||||
exit={{ opacity: 0 }}
|
||||
onClick={() => setSelectedPersonId(null)}
|
||||
className="fixed inset-0 bg-black/40 z-40 backdrop-blur-sm"
|
||||
/>
|
||||
<Client360Panel personId={selectedPersonId} onClose={() => setSelectedPersonId(null)} />
|
||||
</>
|
||||
)}
|
||||
</AnimatePresence>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
219
app/src/lib/crmApi.ts
Normal file
219
app/src/lib/crmApi.ts
Normal file
@@ -0,0 +1,219 @@
|
||||
// app/src/lib/crmApi.ts
|
||||
// CRM API client — canonical CRM routes
|
||||
// Implements the frontend adapter layer from Doc 10 (TypeScript Module Spec)
|
||||
|
||||
import type {
|
||||
CrmContactListItem,
|
||||
CrmPerson,
|
||||
Client360Snapshot,
|
||||
CrmOpportunityCard,
|
||||
CrmTask,
|
||||
KanbanColumn,
|
||||
ImportBatchSummary,
|
||||
ImportProposal,
|
||||
ImportReviewDecision,
|
||||
QdScoreEntry,
|
||||
} from '@/types/crmTypes';
|
||||
|
||||
const API_BASE = import.meta.env.VITE_API_BASE_URL ?? '';
|
||||
|
||||
function getAuthHeaders(): Record<string, string> {
|
||||
const token = localStorage.getItem('velocity_token');
|
||||
return token ? { Authorization: `Bearer ${token}` } : {};
|
||||
}
|
||||
|
||||
async function apiFetch<T>(path: string, options?: RequestInit): Promise<T> {
|
||||
const res = await fetch(`${API_BASE}${path}`, {
|
||||
...options,
|
||||
headers: {
|
||||
'Content-Type': 'application/json',
|
||||
...getAuthHeaders(),
|
||||
...(options?.headers ?? {}),
|
||||
},
|
||||
});
|
||||
if (!res.ok) {
|
||||
const err = await res.json().catch(() => ({ detail: res.statusText }));
|
||||
throw new Error(err.detail ?? `API error ${res.status}`);
|
||||
}
|
||||
return res.json() as Promise<T>;
|
||||
}
|
||||
|
||||
// ── Contact List ──────────────────────────────────────────────────────────────
|
||||
|
||||
export async function fetchContacts(params: {
|
||||
search?: string;
|
||||
buyer_type?: string;
|
||||
status?: string;
|
||||
limit?: number;
|
||||
offset?: number;
|
||||
}): Promise<{ contacts: CrmContactListItem[]; total: number; limit: number; offset: number }> {
|
||||
const qs = new URLSearchParams();
|
||||
if (params.search) qs.set('search', params.search);
|
||||
if (params.buyer_type) qs.set('buyer_type', params.buyer_type);
|
||||
if (params.status) qs.set('status', params.status);
|
||||
if (params.limit != null) qs.set('limit', String(params.limit));
|
||||
if (params.offset != null) qs.set('offset', String(params.offset));
|
||||
const res = await apiFetch<{ status: string; data: { contacts: CrmContactListItem[]; total: number; limit: number; offset: number } }>(
|
||||
`/api/crm/contacts?${qs}`
|
||||
);
|
||||
return res.data;
|
||||
}
|
||||
|
||||
export async function fetchContact(personId: string): Promise<CrmPerson> {
|
||||
const res = await apiFetch<{ status: string; data: CrmPerson }>(`/api/crm/contacts/${personId}`);
|
||||
return res.data;
|
||||
}
|
||||
|
||||
// ── Client 360 ────────────────────────────────────────────────────────────────
|
||||
|
||||
export async function fetchClient360(personId: string): Promise<Client360Snapshot> {
|
||||
const res = await apiFetch<{ status: string; data: Client360Snapshot }>(`/api/crm/client-360/${personId}`);
|
||||
return res.data;
|
||||
}
|
||||
|
||||
// ── Opportunities ─────────────────────────────────────────────────────────────
|
||||
|
||||
export async function fetchOpportunities(params?: {
|
||||
stage?: string;
|
||||
limit?: number;
|
||||
offset?: number;
|
||||
}): Promise<CrmOpportunityCard[]> {
|
||||
const qs = new URLSearchParams();
|
||||
if (params?.stage) qs.set('stage', params.stage);
|
||||
if (params?.limit != null) qs.set('limit', String(params.limit));
|
||||
if (params?.offset != null) qs.set('offset', String(params.offset));
|
||||
const res = await apiFetch<{ status: string; data: CrmOpportunityCard[] }>(`/api/crm/opportunities?${qs}`);
|
||||
return res.data;
|
||||
}
|
||||
|
||||
// ── Tasks ─────────────────────────────────────────────────────────────────────
|
||||
|
||||
export async function fetchTasks(params?: {
|
||||
status?: string;
|
||||
assigned_to?: string;
|
||||
limit?: number;
|
||||
}): Promise<CrmTask[]> {
|
||||
const qs = new URLSearchParams();
|
||||
if (params?.status) qs.set('status', params.status);
|
||||
if (params?.assigned_to) qs.set('assigned_to', params.assigned_to);
|
||||
if (params?.limit != null) qs.set('limit', String(params.limit));
|
||||
const res = await apiFetch<{ status: string; data: CrmTask[] }>(`/api/crm/tasks?${qs}`);
|
||||
return res.data;
|
||||
}
|
||||
|
||||
export async function createTask(body: {
|
||||
person_id: string;
|
||||
lead_id?: string;
|
||||
reminder_type?: string;
|
||||
title: string;
|
||||
notes?: string;
|
||||
due_at?: string;
|
||||
priority?: string;
|
||||
}): Promise<{ reminder_id: string; title: string }> {
|
||||
const res = await apiFetch<{ status: string; data: { reminder_id: string; title: string } }>('/api/crm/tasks', {
|
||||
method: 'POST',
|
||||
body: JSON.stringify(body),
|
||||
});
|
||||
return res.data;
|
||||
}
|
||||
|
||||
// ── Kanban ────────────────────────────────────────────────────────────────────
|
||||
|
||||
export async function fetchKanbanBoard(): Promise<KanbanColumn[]> {
|
||||
const res = await apiFetch<{ status: string; data: KanbanColumn[] }>('/api/crm/kanban');
|
||||
return res.data;
|
||||
}
|
||||
|
||||
// ── QD Scores ─────────────────────────────────────────────────────────────────
|
||||
|
||||
export async function fetchQdScore(personId: string): Promise<{
|
||||
person_id: string;
|
||||
scores: Record<string, QdScoreEntry>;
|
||||
timeseries: Array<{ score_type: string; value: number; timestamp: string | null; signal_source: string | null; delta: number | null }>;
|
||||
}> {
|
||||
const res = await apiFetch<{
|
||||
status: string;
|
||||
data: {
|
||||
person_id: string;
|
||||
scores: Record<string, QdScoreEntry>;
|
||||
timeseries: Array<{ score_type: string; value: number; timestamp: string | null; signal_source: string | null; delta: number | null }>;
|
||||
};
|
||||
}>(`/api/crm/qd/${personId}`);
|
||||
return res.data;
|
||||
}
|
||||
|
||||
// ── Import Batches ─────────────────────────────────────────────────────────────
|
||||
|
||||
export async function uploadCrmImport(file: File, sourceSystem = 'csv_upload'): Promise<{
|
||||
batch_id: string;
|
||||
row_count: number;
|
||||
mapped_columns: number;
|
||||
unmapped_columns: number;
|
||||
mapping_confidence: number;
|
||||
proposals_created: number;
|
||||
parse_errors: string[];
|
||||
lifecycle: string;
|
||||
message: string;
|
||||
}> {
|
||||
const form = new FormData();
|
||||
form.append('file', file);
|
||||
const res = await fetch(`${API_BASE}/api/crm/imports?source_system=${sourceSystem}`, {
|
||||
method: 'POST',
|
||||
headers: { ...getAuthHeaders() },
|
||||
body: form,
|
||||
});
|
||||
if (!res.ok) {
|
||||
const err = await res.json().catch(() => ({ detail: res.statusText }));
|
||||
throw new Error(err.detail ?? `Upload error ${res.status}`);
|
||||
}
|
||||
const json = await res.json();
|
||||
return json.data;
|
||||
}
|
||||
|
||||
export async function fetchImportBatches(lifecycle?: string): Promise<ImportBatchSummary[]> {
|
||||
const qs = lifecycle ? `?lifecycle=${lifecycle}` : '';
|
||||
const res = await apiFetch<{ status: string; data: ImportBatchSummary[] }>(`/api/crm/imports${qs}`);
|
||||
return res.data;
|
||||
}
|
||||
|
||||
export async function fetchImportBatch(batchId: string): Promise<{
|
||||
batch_id: string;
|
||||
filename: string;
|
||||
row_count: number;
|
||||
mapping_manifest: Record<string, unknown>;
|
||||
lifecycle: string;
|
||||
proposals: ImportProposal[];
|
||||
proposal_count: number;
|
||||
}> {
|
||||
const res = await apiFetch<{ status: string; data: ReturnType<typeof fetchImportBatch> extends Promise<infer R> ? R : never }>(`/api/crm/imports/${batchId}`);
|
||||
return res.data as Awaited<ReturnType<typeof fetchImportBatch>>;
|
||||
}
|
||||
|
||||
export async function reviewProposal(
|
||||
batchId: string,
|
||||
proposalId: string,
|
||||
decision: ImportReviewDecision,
|
||||
notes = ''
|
||||
): Promise<{ decision_id: string; decision: string }> {
|
||||
const res = await apiFetch<{ status: string; data: { decision_id: string; decision: string } }>(
|
||||
`/api/crm/imports/${batchId}/review-proposal`,
|
||||
{
|
||||
method: 'PUT',
|
||||
body: JSON.stringify({ proposal_id: proposalId, decision, notes }),
|
||||
}
|
||||
);
|
||||
return res.data;
|
||||
}
|
||||
|
||||
export async function commitImportBatch(batchId: string): Promise<{
|
||||
committed: number;
|
||||
skipped: number;
|
||||
errors: string[];
|
||||
lifecycle: string;
|
||||
}> {
|
||||
const res = await apiFetch<{
|
||||
status: string;
|
||||
data: { committed: number; skipped: number; errors: string[]; lifecycle: string };
|
||||
}>(`/api/crm/imports/${batchId}/commit`, { method: 'POST' });
|
||||
return res.data;
|
||||
}
|
||||
214
app/src/types/crmTypes.ts
Normal file
214
app/src/types/crmTypes.ts
Normal file
@@ -0,0 +1,214 @@
|
||||
// app/src/types/crmTypes.ts
|
||||
// Canonical CRM TypeScript types — aligned to Doc 10 (TypeScript Module Spec)
|
||||
// and Doc 09 (Database Schema and Root API Spec)
|
||||
|
||||
// ── Identity ──────────────────────────────────────────────────────────────────
|
||||
|
||||
export interface CrmContactListItem {
|
||||
person_id: string;
|
||||
full_name: string;
|
||||
primary_email: string | null;
|
||||
primary_phone: string | null;
|
||||
buyer_type: string | null;
|
||||
lead_id: string | null;
|
||||
lead_status: string | null;
|
||||
budget_band: string | null;
|
||||
urgency: string | null;
|
||||
intent_score: number;
|
||||
urgency_score: number;
|
||||
interaction_count: number;
|
||||
last_interaction_at: string | null;
|
||||
pending_tasks: number;
|
||||
created_at: string | null;
|
||||
}
|
||||
|
||||
export interface CrmPerson {
|
||||
person_id: string;
|
||||
full_name: string;
|
||||
primary_email: string | null;
|
||||
primary_phone: string | null;
|
||||
buyer_type: string | null;
|
||||
persona_labels: string[];
|
||||
source_confidence: number;
|
||||
created_at: string | null;
|
||||
}
|
||||
|
||||
// ── Lead ─────────────────────────────────────────────────────────────────────
|
||||
|
||||
export type CrmLeadStatus =
|
||||
| 'new' | 'contacted' | 'qualified' | 'site_visit_scheduled'
|
||||
| 'site_visited' | 'negotiation' | 'booking_initiated'
|
||||
| 'booked' | 'lost' | 'dormant';
|
||||
|
||||
export interface CrmLead {
|
||||
lead_id: string;
|
||||
status: CrmLeadStatus;
|
||||
budget_band: string | null;
|
||||
urgency: string | null;
|
||||
financing_posture: string | null;
|
||||
timeline_to_decision: string | null;
|
||||
objections: string[];
|
||||
motivations: string[];
|
||||
created_at: string | null;
|
||||
}
|
||||
|
||||
// ── Opportunity ───────────────────────────────────────────────────────────────
|
||||
|
||||
export type CrmOpportunityStage =
|
||||
| 'prospect' | 'qualified' | 'proposal' | 'site_visit'
|
||||
| 'negotiation' | 'booking' | 'agreement'
|
||||
| 'closed_won' | 'closed_lost';
|
||||
|
||||
export interface CrmOpportunityCard {
|
||||
opportunity_id: string;
|
||||
stage: CrmOpportunityStage;
|
||||
value: number | null;
|
||||
probability: number | null;
|
||||
expected_close_date: string | null;
|
||||
next_action: string | null;
|
||||
project_id: string | null;
|
||||
unit_id: string | null;
|
||||
// When fetched from list endpoint, person-level fields are included
|
||||
person_id?: string;
|
||||
client_name?: string;
|
||||
client_phone?: string;
|
||||
project_name?: string;
|
||||
}
|
||||
|
||||
// ── Interaction ───────────────────────────────────────────────────────────────
|
||||
|
||||
export type IntelChannel =
|
||||
| 'whatsapp' | 'phone' | 'email' | 'site_visit'
|
||||
| 'office_meeting' | 'video_call' | 'cctv'
|
||||
| 'perception_session' | 'system';
|
||||
|
||||
export interface InteractionTimelineItem {
|
||||
interaction_id: string;
|
||||
channel: IntelChannel;
|
||||
interaction_type: string;
|
||||
happened_at: string | null;
|
||||
summary: string | null;
|
||||
}
|
||||
|
||||
// ── Task / Reminder ───────────────────────────────────────────────────────────
|
||||
|
||||
export interface CrmTask {
|
||||
reminder_id: string;
|
||||
reminder_type: string;
|
||||
title: string;
|
||||
notes: string | null;
|
||||
due_at: string | null;
|
||||
status: 'pending' | 'done' | 'snoozed' | 'cancelled';
|
||||
priority: 'low' | 'normal' | 'high' | 'urgent';
|
||||
// Populated in list view
|
||||
person_id?: string;
|
||||
client_name?: string;
|
||||
client_phone?: string;
|
||||
}
|
||||
|
||||
// ── Property Interest ─────────────────────────────────────────────────────────
|
||||
|
||||
export interface PropertyInterest {
|
||||
interest_id: string;
|
||||
project_name: string;
|
||||
unit_preference: string | null;
|
||||
configuration: string | null;
|
||||
budget_min: number | null;
|
||||
budget_max: number | null;
|
||||
priority: number;
|
||||
}
|
||||
|
||||
// ── QD Score ──────────────────────────────────────────────────────────────────
|
||||
|
||||
export interface QdScoreEntry {
|
||||
score_type: string;
|
||||
current_value: number;
|
||||
computed_at: string | null;
|
||||
reasoning: string | null;
|
||||
}
|
||||
|
||||
export interface QdOverview {
|
||||
[score_type: string]: QdScoreEntry;
|
||||
}
|
||||
|
||||
// ── Account ───────────────────────────────────────────────────────────────────
|
||||
|
||||
export interface AccountLink {
|
||||
account_id: string;
|
||||
account_name: string;
|
||||
account_type: string;
|
||||
industry: string | null;
|
||||
}
|
||||
|
||||
// ── Client 360 Snapshot ────────────────────────────────────────────────────────
|
||||
|
||||
export interface Client360Snapshot {
|
||||
client_ref: string;
|
||||
snapshot_type: 'client_360';
|
||||
identity: CrmPerson;
|
||||
account_links: AccountLink[];
|
||||
current_lead: CrmLead | null;
|
||||
active_opportunities: CrmOpportunityCard[];
|
||||
recent_interactions: InteractionTimelineItem[];
|
||||
property_interests: PropertyInterest[];
|
||||
tasks: CrmTask[];
|
||||
qd_overview: QdOverview;
|
||||
risk_flags: string[];
|
||||
recommended_next_actions: string[];
|
||||
note: string;
|
||||
}
|
||||
|
||||
// ── Import Batch ────────────────────────────────────────────────────────────
|
||||
|
||||
export type ImportLifecycle =
|
||||
| 'uploaded' | 'parsed' | 'mapped' | 'proposed'
|
||||
| 'approved' | 'committed' | 'failed';
|
||||
|
||||
export interface ImportBatchSummary {
|
||||
batch_id: string;
|
||||
source_system: string;
|
||||
filename: string;
|
||||
row_count: number;
|
||||
mapped_count: number;
|
||||
unresolved_count: number;
|
||||
lifecycle: ImportLifecycle;
|
||||
created_at: string | null;
|
||||
}
|
||||
|
||||
export interface ImportProposal {
|
||||
proposal_id: string;
|
||||
payload: {
|
||||
row_number: number;
|
||||
canonical_payload: Record<string, string>;
|
||||
raw_row: Record<string, string>;
|
||||
unresolved_fields: string[];
|
||||
missing_required: string[];
|
||||
confidence: number;
|
||||
review_required: boolean;
|
||||
};
|
||||
confidence: number;
|
||||
status: string;
|
||||
review_required: boolean;
|
||||
}
|
||||
|
||||
export type ImportReviewDecision = 'approved' | 'rejected' | 'needs_more_info';
|
||||
|
||||
// ── Kanban Board ──────────────────────────────────────────────────────────────
|
||||
|
||||
export interface KanbanColumn {
|
||||
status: CrmLeadStatus | string;
|
||||
label: string;
|
||||
count: number;
|
||||
items: KanbanCard[];
|
||||
}
|
||||
|
||||
export interface KanbanCard {
|
||||
lead_id: string;
|
||||
person_id: string;
|
||||
client_name: string;
|
||||
client_phone: string | null;
|
||||
buyer_type: string | null;
|
||||
budget_band: string | null;
|
||||
urgency: string | null;
|
||||
intent_score: number;
|
||||
}
|
||||
@@ -1,5 +1,5 @@
|
||||
// Navigation Module Types
|
||||
export type ModuleId = 'dashboard' | 'oracle' | 'sentinel' | 'inventory' | 'settings' | 'catalyst' | 'admin';
|
||||
export type ModuleId = 'dashboard' | 'oracle' | 'sentinel' | 'inventory' | 'settings' | 'catalyst' | 'admin' | 'crm';
|
||||
export type SentinelSubTab = 'overview' | 'live-session';
|
||||
|
||||
|
||||
|
||||
798
backend/api/routes_crm_imports.py
Normal file
798
backend/api/routes_crm_imports.py
Normal file
@@ -0,0 +1,798 @@
|
||||
"""
|
||||
backend/api/routes_crm_imports.py
|
||||
CRM Import Route Family + Client 360 Routes
|
||||
|
||||
Implements the canonical CRM API surface as specified in Doc 09 (Root API Spec):
|
||||
POST /api/crm/imports — upload CSV batch
|
||||
GET /api/crm/imports — list import batches
|
||||
GET /api/crm/imports/{id} — get batch detail + proposals
|
||||
PUT /api/crm/imports/{id}/approve-proposal — approve a single proposal
|
||||
POST /api/crm/imports/{id}/commit — commit approved proposals to canonical
|
||||
GET /api/crm/contacts — canonical contact list (with QD summary)
|
||||
GET /api/crm/contacts/{id} — canonical contact detail
|
||||
GET /api/crm/client-360/{id} — Client 360 aggregated snapshot
|
||||
GET /api/crm/opportunities — opportunity pipeline list
|
||||
GET /api/crm/tasks — reminder/task list
|
||||
GET /api/crm/kanban — kanban board (canonical leads)
|
||||
|
||||
Uses canonical crm_*, intel_*, workflow_* tables.
|
||||
"""
|
||||
from __future__ import annotations
|
||||
|
||||
import json
|
||||
import logging
|
||||
import uuid
|
||||
from datetime import datetime, timezone
|
||||
from typing import Any
|
||||
|
||||
from fastapi import APIRouter, HTTPException, Query, Request, UploadFile, File, status
|
||||
from pydantic import BaseModel, Field
|
||||
|
||||
from backend.services.imports.ingest_service import (
|
||||
parse_csv_content,
|
||||
infer_column_mapping,
|
||||
build_normalized_proposals,
|
||||
create_import_batch_record,
|
||||
persist_import_batch,
|
||||
persist_proposals_as_workflow_actions,
|
||||
)
|
||||
from backend.services.client_graph.aggregation_service import (
|
||||
get_client_360,
|
||||
get_contact_list,
|
||||
)
|
||||
|
||||
logger = logging.getLogger("velocity.api.crm_imports")
|
||||
|
||||
router = APIRouter()
|
||||
|
||||
|
||||
def _now() -> str:
|
||||
return datetime.now(timezone.utc).isoformat()
|
||||
|
||||
|
||||
async def _get_pool(request: Request):
|
||||
pool = getattr(request.app.state, "db_pool", None)
|
||||
if pool is None:
|
||||
raise HTTPException(status_code=503, detail="Database unavailable.")
|
||||
return pool
|
||||
|
||||
|
||||
# ── Models ────────────────────────────────────────────────────────────────────
|
||||
|
||||
class ProposalApprovalRequest(BaseModel):
|
||||
proposal_id: str
|
||||
decision: str = Field(..., pattern="^(approved|rejected|needs_more_info)$")
|
||||
notes: str = Field(default="", max_length=2000)
|
||||
|
||||
|
||||
class CreatePersonRequest(BaseModel):
|
||||
full_name: str = Field(..., min_length=1, max_length=200)
|
||||
primary_email: str | None = None
|
||||
primary_phone: str | None = None
|
||||
buyer_type: str | None = None
|
||||
budget_band: str | None = None
|
||||
project_name: str | None = None
|
||||
source_system: str = "manual"
|
||||
notes: str | None = None
|
||||
metadata_json: dict[str, Any] = Field(default_factory=dict)
|
||||
|
||||
|
||||
class CreateLeadRequest(BaseModel):
|
||||
person_id: str
|
||||
status: str = "new"
|
||||
budget_band: str | None = None
|
||||
urgency: str | None = None
|
||||
financing_posture: str | None = None
|
||||
assigned_user_id: str | None = None
|
||||
metadata_json: dict[str, Any] = Field(default_factory=dict)
|
||||
|
||||
|
||||
class CreateReminderRequest(BaseModel):
|
||||
person_id: str
|
||||
lead_id: str | None = None
|
||||
reminder_type: str = "follow_up"
|
||||
title: str = Field(..., min_length=1, max_length=500)
|
||||
notes: str | None = None
|
||||
due_at: str | None = None
|
||||
priority: str = "normal"
|
||||
|
||||
|
||||
# ── Import Endpoints ──────────────────────────────────────────────────────────
|
||||
|
||||
@router.post("/crm/imports", status_code=201, tags=["CRM Imports"])
|
||||
async def upload_crm_import(
|
||||
request: Request,
|
||||
file: UploadFile = File(...),
|
||||
source_system: str = Query(default="csv_upload"),
|
||||
) -> dict[str, Any]:
|
||||
"""
|
||||
Upload a CSV file to start a CRM import batch.
|
||||
Parses headers, infers column mapping, and creates workflow_actions proposals.
|
||||
"""
|
||||
pool = await _get_pool(request)
|
||||
content_bytes = await file.read()
|
||||
try:
|
||||
content = content_bytes.decode("utf-8")
|
||||
except UnicodeDecodeError:
|
||||
content = content_bytes.decode("latin-1")
|
||||
|
||||
parsed = parse_csv_content(content)
|
||||
mapping = infer_column_mapping(parsed["headers"])
|
||||
|
||||
batch = create_import_batch_record(
|
||||
filename=file.filename or "upload.csv",
|
||||
row_count=parsed["row_count"],
|
||||
mapping_manifest=mapping,
|
||||
source_system=source_system,
|
||||
)
|
||||
|
||||
proposals = build_normalized_proposals(
|
||||
rows=parsed["rows"],
|
||||
mapping=mapping["mapped"],
|
||||
batch_id=batch["batch_id"],
|
||||
source_system=source_system,
|
||||
)
|
||||
|
||||
async with pool.acquire() as conn:
|
||||
await persist_import_batch(conn, batch)
|
||||
inserted = await persist_proposals_as_workflow_actions(conn, proposals)
|
||||
|
||||
logger.info("Import batch %s: %d rows, %d proposals", batch["batch_id"], parsed["row_count"], inserted)
|
||||
|
||||
return {
|
||||
"status": "ok",
|
||||
"data": {
|
||||
"batch_id": batch["batch_id"],
|
||||
"row_count": parsed["row_count"],
|
||||
"mapped_columns": mapping["mapped_count"],
|
||||
"unmapped_columns": mapping["unmapped_count"],
|
||||
"mapping_confidence": mapping["confidence"],
|
||||
"proposals_created": inserted,
|
||||
"parse_errors": parsed["parse_errors"],
|
||||
"lifecycle": "parsed",
|
||||
"message": f"Import batch created. {inserted} proposals queued for review.",
|
||||
},
|
||||
}
|
||||
|
||||
|
||||
@router.get("/crm/imports", tags=["CRM Imports"])
|
||||
async def list_import_batches(
|
||||
request: Request,
|
||||
lifecycle: str | None = None,
|
||||
limit: int = Query(default=20, ge=1, le=100),
|
||||
offset: int = Query(default=0, ge=0),
|
||||
) -> dict[str, Any]:
|
||||
"""List all CRM import batches with lifecycle status."""
|
||||
pool = await _get_pool(request)
|
||||
clauses = ["1=1"]
|
||||
params: list[Any] = []
|
||||
|
||||
if lifecycle:
|
||||
params.append(lifecycle)
|
||||
clauses.append(f"lifecycle = ${len(params)}::import_lifecycle")
|
||||
|
||||
params.extend([limit, offset])
|
||||
where = " AND ".join(clauses)
|
||||
|
||||
async with pool.acquire() as conn:
|
||||
rows = await conn.fetch(
|
||||
f"""
|
||||
SELECT batch_id, source_system, uploaded_filename, row_count,
|
||||
mapped_count, unresolved_count, lifecycle, created_at, updated_at
|
||||
FROM workflow_import_batches
|
||||
WHERE {where}
|
||||
ORDER BY created_at DESC
|
||||
LIMIT ${len(params) - 1} OFFSET ${len(params)}
|
||||
""",
|
||||
*params,
|
||||
)
|
||||
total = await conn.fetchval(
|
||||
f"SELECT COUNT(*) FROM workflow_import_batches WHERE {where}",
|
||||
*params[:-2],
|
||||
)
|
||||
|
||||
batches = [
|
||||
{
|
||||
"batch_id": str(r["batch_id"]),
|
||||
"source_system": r["source_system"],
|
||||
"filename": r["uploaded_filename"],
|
||||
"row_count": r["row_count"],
|
||||
"mapped_count": r["mapped_count"],
|
||||
"unresolved_count": r["unresolved_count"],
|
||||
"lifecycle": r["lifecycle"],
|
||||
"created_at": r["created_at"].isoformat() if r["created_at"] else None,
|
||||
}
|
||||
for r in rows
|
||||
]
|
||||
|
||||
return {"status": "ok", "data": batches, "meta": {"total": total, "limit": limit, "offset": offset}}
|
||||
|
||||
|
||||
@router.get("/crm/imports/{batch_id}", tags=["CRM Imports"])
|
||||
async def get_import_batch(request: Request, batch_id: str) -> dict[str, Any]:
|
||||
"""Get import batch detail including pending proposals."""
|
||||
pool = await _get_pool(request)
|
||||
async with pool.acquire() as conn:
|
||||
batch_row = await conn.fetchrow(
|
||||
"SELECT * FROM workflow_import_batches WHERE batch_id = $1::uuid",
|
||||
batch_id,
|
||||
)
|
||||
if not batch_row:
|
||||
raise HTTPException(status_code=404, detail=f"Import batch '{batch_id}' not found.")
|
||||
|
||||
proposal_rows = await conn.fetch(
|
||||
"""
|
||||
SELECT action_id, proposal_payload, confidence, status, approval_required, created_at
|
||||
FROM workflow_actions
|
||||
WHERE action_type = 'import_proposal'
|
||||
AND proposal_payload->>'batch_id' = $1
|
||||
ORDER BY (proposal_payload->>'row_number')::int ASC
|
||||
LIMIT 200
|
||||
""",
|
||||
batch_id,
|
||||
)
|
||||
|
||||
proposals = [
|
||||
{
|
||||
"proposal_id": str(r["action_id"]),
|
||||
"payload": r["proposal_payload"],
|
||||
"confidence": float(r["confidence"]) if r["confidence"] else 0.0,
|
||||
"status": r["status"],
|
||||
"review_required": r["approval_required"],
|
||||
}
|
||||
for r in proposal_rows
|
||||
]
|
||||
|
||||
return {
|
||||
"status": "ok",
|
||||
"data": {
|
||||
"batch_id": str(batch_row["batch_id"]),
|
||||
"source_system": batch_row["source_system"],
|
||||
"filename": batch_row["uploaded_filename"],
|
||||
"row_count": batch_row["row_count"],
|
||||
"mapping_manifest": batch_row["mapping_manifest"],
|
||||
"lifecycle": batch_row["lifecycle"],
|
||||
"proposals": proposals,
|
||||
"proposal_count": len(proposals),
|
||||
},
|
||||
}
|
||||
|
||||
|
||||
@router.put("/crm/imports/{batch_id}/review-proposal", tags=["CRM Imports"])
|
||||
async def review_proposal(
|
||||
request: Request, batch_id: str, body: ProposalApprovalRequest
|
||||
) -> dict[str, Any]:
|
||||
"""
|
||||
Human review of a single import proposal.
|
||||
Creates a workflow_approvals record and updates the action status.
|
||||
Approved actions with high confidence may be auto-staged for commit.
|
||||
"""
|
||||
pool = await _get_pool(request)
|
||||
async with pool.acquire() as conn:
|
||||
action = await conn.fetchrow(
|
||||
"SELECT action_id, confidence, approval_required FROM workflow_actions WHERE action_id = $1::uuid",
|
||||
body.proposal_id,
|
||||
)
|
||||
if not action:
|
||||
raise HTTPException(status_code=404, detail="Proposal not found.")
|
||||
|
||||
decision_id = str(uuid.uuid4())
|
||||
new_status = "approved" if body.decision == "approved" else "rejected"
|
||||
|
||||
await conn.execute(
|
||||
"""
|
||||
INSERT INTO workflow_approvals (decision_id, action_id, decision, decision_notes, decided_at)
|
||||
VALUES ($1::uuid, $2::uuid, $3, $4, NOW())
|
||||
""",
|
||||
decision_id,
|
||||
body.proposal_id,
|
||||
body.decision,
|
||||
body.notes,
|
||||
)
|
||||
await conn.execute(
|
||||
"UPDATE workflow_actions SET status = $1::wf_status, updated_at = NOW() WHERE action_id = $2::uuid",
|
||||
new_status,
|
||||
body.proposal_id,
|
||||
)
|
||||
|
||||
return {
|
||||
"status": "ok",
|
||||
"data": {
|
||||
"decision_id": decision_id,
|
||||
"proposal_id": body.proposal_id,
|
||||
"decision": body.decision,
|
||||
"message": f"Proposal {body.decision}.",
|
||||
},
|
||||
}
|
||||
|
||||
|
||||
@router.post("/crm/imports/{batch_id}/commit", tags=["CRM Imports"])
|
||||
async def commit_approved_proposals(request: Request, batch_id: str) -> dict[str, Any]:
|
||||
"""
|
||||
Commit all approved proposals for a batch into canonical crm_people + crm_leads tables.
|
||||
Only approved proposals are committed. Rejected/pending are skipped.
|
||||
This implements the writeback flow from Doc 07 and Doc 09.
|
||||
"""
|
||||
pool = await _get_pool(request)
|
||||
committed = 0
|
||||
skipped = 0
|
||||
errors: list[str] = []
|
||||
|
||||
async with pool.acquire() as conn:
|
||||
approved_rows = await conn.fetch(
|
||||
"""
|
||||
SELECT action_id, proposal_payload
|
||||
FROM workflow_actions
|
||||
WHERE action_type = 'import_proposal'
|
||||
AND proposal_payload->>'batch_id' = $1
|
||||
AND status = 'approved'
|
||||
""",
|
||||
batch_id,
|
||||
)
|
||||
|
||||
for row in approved_rows:
|
||||
try:
|
||||
payload = row["proposal_payload"]
|
||||
canonical = payload.get("canonical_payload", {})
|
||||
if not canonical.get("full_name"):
|
||||
skipped += 1
|
||||
continue
|
||||
|
||||
person_id = str(uuid.uuid4())
|
||||
await conn.execute(
|
||||
"""
|
||||
INSERT INTO crm_people (
|
||||
person_id, full_name, primary_email, primary_phone,
|
||||
buyer_type, source_confidence, metadata_json, created_at, updated_at
|
||||
) VALUES (
|
||||
$1::uuid, $2, $3, $4, $5, $6, $7::jsonb, NOW(), NOW()
|
||||
)
|
||||
ON CONFLICT DO NOTHING
|
||||
""",
|
||||
person_id,
|
||||
canonical.get("full_name"),
|
||||
canonical.get("primary_email"),
|
||||
canonical.get("primary_phone"),
|
||||
canonical.get("buyer_type"),
|
||||
payload.get("confidence", 0.5),
|
||||
json.dumps({"source_batch": batch_id, "import_row": payload.get("row_number")}),
|
||||
)
|
||||
|
||||
if canonical.get("status") or canonical.get("budget_band"):
|
||||
lead_id = str(uuid.uuid4())
|
||||
await conn.execute(
|
||||
"""
|
||||
INSERT INTO crm_leads (
|
||||
lead_id, person_id, source_system, status, budget_band,
|
||||
metadata_json, created_at, updated_at
|
||||
) VALUES (
|
||||
$1::uuid, $2::uuid, $3, 'new'::crm_lead_status, $4, $5::jsonb, NOW(), NOW()
|
||||
)
|
||||
ON CONFLICT DO NOTHING
|
||||
""",
|
||||
lead_id,
|
||||
person_id,
|
||||
payload.get("source_system", "csv_upload"),
|
||||
canonical.get("budget_band"),
|
||||
json.dumps({"import_batch": batch_id}),
|
||||
)
|
||||
|
||||
# Stage property interest if project_name present
|
||||
if canonical.get("project_name"):
|
||||
await conn.execute(
|
||||
"""
|
||||
INSERT INTO crm_property_interests (
|
||||
interest_id, person_id, lead_id, project_name, created_at
|
||||
) VALUES (
|
||||
$1::uuid, $2::uuid, $3::uuid, $4, NOW()
|
||||
)
|
||||
ON CONFLICT DO NOTHING
|
||||
""",
|
||||
str(uuid.uuid4()),
|
||||
person_id,
|
||||
lead_id,
|
||||
canonical.get("project_name"),
|
||||
)
|
||||
|
||||
# Mark action as executed
|
||||
await conn.execute(
|
||||
"UPDATE workflow_actions SET status = 'executed'::wf_status, updated_at = NOW() WHERE action_id = $1::uuid",
|
||||
row["action_id"],
|
||||
)
|
||||
committed += 1
|
||||
|
||||
except Exception as e:
|
||||
errors.append(f"Proposal {row['action_id']}: {str(e)}")
|
||||
skipped += 1
|
||||
|
||||
# Update batch lifecycle
|
||||
await conn.execute(
|
||||
"UPDATE workflow_import_batches SET lifecycle = 'committed'::import_lifecycle, canonical_count = $1, updated_at = NOW() WHERE batch_id = $2",
|
||||
committed,
|
||||
batch_id,
|
||||
)
|
||||
|
||||
return {
|
||||
"status": "ok",
|
||||
"data": {
|
||||
"batch_id": batch_id,
|
||||
"committed": committed,
|
||||
"skipped": skipped,
|
||||
"errors": errors,
|
||||
"lifecycle": "committed",
|
||||
},
|
||||
}
|
||||
|
||||
|
||||
# ── Contact / Person Endpoints ──────────────────────────────────────────────
|
||||
|
||||
@router.get("/crm/contacts", tags=["CRM Contacts"])
|
||||
async def list_contacts(
|
||||
request: Request,
|
||||
search: str | None = Query(default=None),
|
||||
buyer_type: str | None = Query(default=None),
|
||||
status: str | None = Query(default=None),
|
||||
limit: int = Query(default=50, ge=1, le=200),
|
||||
offset: int = Query(default=0, ge=0),
|
||||
) -> dict[str, Any]:
|
||||
"""Canonical contact list with QD summary, interaction count, and lead status."""
|
||||
pool = await _get_pool(request)
|
||||
async with pool.acquire() as conn:
|
||||
result = await get_contact_list(conn, search, buyer_type, status, limit, offset)
|
||||
return {"status": "ok", "data": result}
|
||||
|
||||
|
||||
@router.post("/crm/contacts", status_code=201, tags=["CRM Contacts"])
|
||||
async def create_contact(request: Request, body: CreatePersonRequest) -> dict[str, Any]:
|
||||
"""Create a new canonical person record manually."""
|
||||
pool = await _get_pool(request)
|
||||
person_id = str(uuid.uuid4())
|
||||
|
||||
async with pool.acquire() as conn:
|
||||
await conn.execute(
|
||||
"""
|
||||
INSERT INTO crm_people (
|
||||
person_id, full_name, primary_email, primary_phone,
|
||||
buyer_type, source_confidence, metadata_json, created_at, updated_at
|
||||
) VALUES ($1::uuid, $2, $3, $4, $5, 1.0, $6::jsonb, NOW(), NOW())
|
||||
""",
|
||||
person_id,
|
||||
body.full_name,
|
||||
body.primary_email,
|
||||
body.primary_phone,
|
||||
body.buyer_type,
|
||||
json.dumps({**body.metadata_json, "manual_entry": True}),
|
||||
)
|
||||
|
||||
if body.project_name or body.budget_band:
|
||||
lead_id = str(uuid.uuid4())
|
||||
await conn.execute(
|
||||
"""
|
||||
INSERT INTO crm_leads (
|
||||
lead_id, person_id, source_system, status, budget_band,
|
||||
metadata_json, created_at, updated_at
|
||||
) VALUES ($1::uuid, $2::uuid, $3, 'new'::crm_lead_status, $4, '{}'::jsonb, NOW(), NOW())
|
||||
""",
|
||||
lead_id,
|
||||
person_id,
|
||||
body.source_system,
|
||||
body.budget_band,
|
||||
)
|
||||
if body.project_name:
|
||||
await conn.execute(
|
||||
"""
|
||||
INSERT INTO crm_property_interests (interest_id, person_id, lead_id, project_name, created_at)
|
||||
VALUES ($1::uuid, $2::uuid, $3::uuid, $4, NOW())
|
||||
""",
|
||||
str(uuid.uuid4()),
|
||||
person_id,
|
||||
lead_id,
|
||||
body.project_name,
|
||||
)
|
||||
|
||||
return {"status": "ok", "data": {"person_id": person_id, "full_name": body.full_name}}
|
||||
|
||||
|
||||
@router.get("/crm/contacts/{person_id}", tags=["CRM Contacts"])
|
||||
async def get_contact(request: Request, person_id: str) -> dict[str, Any]:
|
||||
"""Get a single canonical contact record."""
|
||||
pool = await _get_pool(request)
|
||||
async with pool.acquire() as conn:
|
||||
row = await conn.fetchrow(
|
||||
"""
|
||||
SELECT person_id, full_name, primary_email, primary_phone, secondary_phone,
|
||||
buyer_type, persona_labels, source_confidence, created_at, updated_at
|
||||
FROM crm_people WHERE person_id = $1::uuid
|
||||
""",
|
||||
person_id,
|
||||
)
|
||||
if not row:
|
||||
raise HTTPException(status_code=404, detail=f"Contact '{person_id}' not found.")
|
||||
return {
|
||||
"status": "ok",
|
||||
"data": {
|
||||
"person_id": str(row["person_id"]),
|
||||
"full_name": row["full_name"],
|
||||
"primary_email": row["primary_email"],
|
||||
"primary_phone": row["primary_phone"],
|
||||
"buyer_type": row["buyer_type"],
|
||||
"persona_labels": row["persona_labels"] or [],
|
||||
"source_confidence": float(row["source_confidence"] or 0.0),
|
||||
},
|
||||
}
|
||||
|
||||
|
||||
# ── Client 360 Endpoint ────────────────────────────────────────────────────
|
||||
|
||||
@router.get("/crm/client-360/{person_id}", tags=["CRM Client 360"])
|
||||
async def client_360(request: Request, person_id: str) -> dict[str, Any]:
|
||||
"""
|
||||
Aggregated Client360 dossier — identity, opportunities, interactions,
|
||||
property interests, tasks, QD overview, risk flags, and next actions.
|
||||
Derived read model — not primary truth.
|
||||
"""
|
||||
pool = await _get_pool(request)
|
||||
async with pool.acquire() as conn:
|
||||
snapshot = await get_client_360(conn, person_id)
|
||||
if not snapshot:
|
||||
raise HTTPException(status_code=404, detail=f"Client '{person_id}' not found.")
|
||||
return {"status": "ok", "data": snapshot}
|
||||
|
||||
|
||||
# ── Opportunities Endpoint ─────────────────────────────────────────────────
|
||||
|
||||
@router.get("/crm/opportunities", tags=["CRM Opportunities"])
|
||||
async def list_opportunities(
|
||||
request: Request,
|
||||
stage: str | None = None,
|
||||
limit: int = Query(default=50, ge=1, le=200),
|
||||
offset: int = Query(default=0, ge=0),
|
||||
) -> dict[str, Any]:
|
||||
"""Canonical opportunity pipeline list."""
|
||||
pool = await _get_pool(request)
|
||||
clauses = ["1=1"]
|
||||
params: list[Any] = []
|
||||
|
||||
if stage:
|
||||
params.append(stage)
|
||||
clauses.append(f"co.stage = ${len(params)}::crm_opportunity_stage")
|
||||
|
||||
params.extend([limit, offset])
|
||||
where = " AND ".join(clauses)
|
||||
|
||||
async with pool.acquire() as conn:
|
||||
rows = await conn.fetch(
|
||||
f"""
|
||||
SELECT co.opportunity_id, co.stage, co.value, co.probability,
|
||||
co.expected_close_date, co.next_action,
|
||||
p.person_id, p.full_name, p.primary_phone,
|
||||
ip.project_name,
|
||||
co.created_at, co.updated_at
|
||||
FROM crm_opportunities co
|
||||
INNER JOIN crm_leads cl ON cl.lead_id = co.lead_id
|
||||
INNER JOIN crm_people p ON p.person_id = cl.person_id
|
||||
LEFT JOIN inventory_projects ip ON ip.project_id = co.project_id
|
||||
WHERE {where}
|
||||
ORDER BY co.updated_at DESC
|
||||
LIMIT ${len(params) - 1} OFFSET ${len(params)}
|
||||
""",
|
||||
*params,
|
||||
)
|
||||
|
||||
opportunities = [
|
||||
{
|
||||
"opportunity_id": str(r["opportunity_id"]),
|
||||
"stage": r["stage"],
|
||||
"value": float(r["value"]) if r["value"] else None,
|
||||
"probability": r["probability"],
|
||||
"expected_close_date": r["expected_close_date"].isoformat() if r["expected_close_date"] else None,
|
||||
"next_action": r["next_action"],
|
||||
"person_id": str(r["person_id"]),
|
||||
"client_name": r["full_name"],
|
||||
"client_phone": r["primary_phone"],
|
||||
"project_name": r["project_name"],
|
||||
}
|
||||
for r in rows
|
||||
]
|
||||
|
||||
return {"status": "ok", "data": opportunities, "meta": {"count": len(opportunities)}}
|
||||
|
||||
|
||||
# ── Tasks / Reminders Endpoint ─────────────────────────────────────────────
|
||||
|
||||
@router.get("/crm/tasks", tags=["CRM Tasks"])
|
||||
async def list_tasks(
|
||||
request: Request,
|
||||
status_filter: str | None = Query(default="pending", alias="status"),
|
||||
assigned_to: str | None = None,
|
||||
limit: int = Query(default=50, ge=1, le=200),
|
||||
) -> dict[str, Any]:
|
||||
"""Reminder / task inbox for the CRM operator."""
|
||||
pool = await _get_pool(request)
|
||||
clauses = ["1=1"]
|
||||
params: list[Any] = []
|
||||
|
||||
if status_filter:
|
||||
params.append(status_filter)
|
||||
clauses.append(f"ir.status = ${len(params)}")
|
||||
if assigned_to:
|
||||
params.append(assigned_to)
|
||||
clauses.append(f"ir.assigned_to = ${len(params)}::uuid")
|
||||
|
||||
params.append(limit)
|
||||
where = " AND ".join(clauses)
|
||||
|
||||
async with pool.acquire() as conn:
|
||||
rows = await conn.fetch(
|
||||
f"""
|
||||
SELECT ir.reminder_id, ir.reminder_type, ir.title, ir.notes,
|
||||
ir.due_at, ir.status, ir.priority,
|
||||
p.person_id, p.full_name, p.primary_phone
|
||||
FROM intel_reminders ir
|
||||
INNER JOIN crm_people p ON p.person_id = ir.person_id
|
||||
WHERE {where}
|
||||
ORDER BY ir.due_at ASC NULLS LAST, ir.created_at DESC
|
||||
LIMIT ${len(params)}
|
||||
""",
|
||||
*params,
|
||||
)
|
||||
|
||||
tasks = [
|
||||
{
|
||||
"reminder_id": str(r["reminder_id"]),
|
||||
"reminder_type": r["reminder_type"],
|
||||
"title": r["title"],
|
||||
"notes": r["notes"],
|
||||
"due_at": r["due_at"].isoformat() if r["due_at"] else None,
|
||||
"status": r["status"],
|
||||
"priority": r["priority"],
|
||||
"person_id": str(r["person_id"]),
|
||||
"client_name": r["full_name"],
|
||||
"client_phone": r["primary_phone"],
|
||||
}
|
||||
for r in rows
|
||||
]
|
||||
|
||||
return {"status": "ok", "data": tasks, "meta": {"count": len(tasks)}}
|
||||
|
||||
|
||||
@router.post("/crm/tasks", status_code=201, tags=["CRM Tasks"])
|
||||
async def create_task(request: Request, body: CreateReminderRequest) -> dict[str, Any]:
|
||||
"""Create a reminder / follow-up task."""
|
||||
pool = await _get_pool(request)
|
||||
reminder_id = str(uuid.uuid4())
|
||||
|
||||
async with pool.acquire() as conn:
|
||||
due_dt = None
|
||||
if body.due_at:
|
||||
try:
|
||||
due_dt = datetime.fromisoformat(body.due_at)
|
||||
except ValueError:
|
||||
pass
|
||||
|
||||
await conn.execute(
|
||||
"""
|
||||
INSERT INTO intel_reminders (
|
||||
reminder_id, person_id, lead_id, reminder_type, title,
|
||||
notes, due_at, status, priority, created_by_type, created_at
|
||||
) VALUES (
|
||||
$1::uuid, $2::uuid, $3::uuid, $4, $5, $6, $7, 'pending', $8, 'human', NOW()
|
||||
)
|
||||
""",
|
||||
reminder_id,
|
||||
body.person_id,
|
||||
body.lead_id,
|
||||
body.reminder_type,
|
||||
body.title,
|
||||
body.notes,
|
||||
due_dt,
|
||||
body.priority,
|
||||
)
|
||||
|
||||
return {"status": "ok", "data": {"reminder_id": reminder_id, "title": body.title}}
|
||||
|
||||
|
||||
# ── Canonical Kanban (from crm_leads) ─────────────────────────────────────
|
||||
|
||||
@router.get("/crm/kanban", tags=["CRM Kanban"])
|
||||
async def get_canonical_kanban(request: Request) -> dict[str, Any]:
|
||||
"""
|
||||
Canonical Kanban board from crm_leads table.
|
||||
Groups clients by lead status with QD summary.
|
||||
"""
|
||||
pool = await _get_pool(request)
|
||||
STAGES = ["new", "contacted", "qualified", "site_visit_scheduled", "site_visited",
|
||||
"negotiation", "booking_initiated", "booked", "lost", "dormant"]
|
||||
|
||||
async with pool.acquire() as conn:
|
||||
rows = await conn.fetch(
|
||||
"""
|
||||
SELECT
|
||||
cl.lead_id, cl.status, cl.budget_band, cl.urgency,
|
||||
p.person_id, p.full_name, p.primary_phone, p.buyer_type,
|
||||
COALESCE(qs.intent_value, 0.0) AS intent_score
|
||||
FROM crm_leads cl
|
||||
INNER JOIN crm_people p ON p.person_id = cl.person_id
|
||||
LEFT JOIN LATERAL (
|
||||
SELECT MAX(CASE WHEN score_type = 'intent_score' THEN current_value END) AS intent_value
|
||||
FROM intel_qd_scores WHERE person_id = p.person_id
|
||||
) qs ON TRUE
|
||||
ORDER BY qs.intent_value DESC NULLS LAST, cl.updated_at DESC
|
||||
"""
|
||||
)
|
||||
|
||||
grouped: dict[str, list[dict]] = {s: [] for s in STAGES}
|
||||
for r in rows:
|
||||
s = r["status"] or "new"
|
||||
grouped.setdefault(s, []).append({
|
||||
"lead_id": str(r["lead_id"]),
|
||||
"person_id": str(r["person_id"]),
|
||||
"client_name": r["full_name"],
|
||||
"client_phone": r["primary_phone"],
|
||||
"buyer_type": r["buyer_type"],
|
||||
"budget_band": r["budget_band"],
|
||||
"urgency": r["urgency"],
|
||||
"intent_score": float(r["intent_score"]),
|
||||
})
|
||||
|
||||
board = [
|
||||
{
|
||||
"status": s,
|
||||
"label": s.replace("_", " ").title(),
|
||||
"count": len(grouped.get(s, [])),
|
||||
"items": grouped.get(s, []),
|
||||
}
|
||||
for s in STAGES
|
||||
]
|
||||
return {"status": "ok", "data": board}
|
||||
|
||||
|
||||
# ── QD Score Access ────────────────────────────────────────────────────────
|
||||
|
||||
@router.get("/crm/qd/{person_id}", tags=["CRM QD"])
|
||||
async def get_qd_score(request: Request, person_id: str) -> dict[str, Any]:
|
||||
"""QD score summary and recent timeseries for a client."""
|
||||
pool = await _get_pool(request)
|
||||
async with pool.acquire() as conn:
|
||||
scores = await conn.fetch(
|
||||
"SELECT score_type, current_value, computed_at, reasoning FROM intel_qd_scores WHERE person_id = $1::uuid",
|
||||
person_id,
|
||||
)
|
||||
timeseries = await conn.fetch(
|
||||
"""
|
||||
SELECT score_type, value, timestamp, signal_source, delta
|
||||
FROM intel_qd_timeseries
|
||||
WHERE person_id = $1::uuid
|
||||
ORDER BY timestamp DESC
|
||||
LIMIT 50
|
||||
""",
|
||||
person_id,
|
||||
)
|
||||
|
||||
if not scores:
|
||||
raise HTTPException(status_code=404, detail=f"No QD scores for client '{person_id}'.")
|
||||
|
||||
return {
|
||||
"status": "ok",
|
||||
"data": {
|
||||
"person_id": person_id,
|
||||
"scores": {
|
||||
r["score_type"]: {
|
||||
"current_value": float(r["current_value"]),
|
||||
"computed_at": r["computed_at"].isoformat() if r["computed_at"] else None,
|
||||
"reasoning": r["reasoning"],
|
||||
}
|
||||
for r in scores
|
||||
},
|
||||
"timeseries": [
|
||||
{
|
||||
"score_type": r["score_type"],
|
||||
"value": float(r["value"]),
|
||||
"timestamp": r["timestamp"].isoformat() if r["timestamp"] else None,
|
||||
"signal_source": r["signal_source"],
|
||||
"delta": float(r["delta"]) if r["delta"] else None,
|
||||
}
|
||||
for r in timeseries
|
||||
],
|
||||
},
|
||||
}
|
||||
708
backend/db/schema_crm_canonical.sql
Normal file
708
backend/db/schema_crm_canonical.sql
Normal file
@@ -0,0 +1,708 @@
|
||||
-- =============================================================================
|
||||
-- schema_crm_canonical.sql
|
||||
-- Project Velocity — Canonical CRM and Platform Schema
|
||||
-- =============================================================================
|
||||
-- Covers: crm_*, intel_*, inventory_*, workflow_* canonical domains
|
||||
-- as specified in Doc 09: Database Schema and Root API Spec
|
||||
-- and Doc 07: Contracts and Schema Blueprint
|
||||
--
|
||||
-- Run AFTER schema.sql and schema_addendum.sql
|
||||
-- psql -U velocity_user -d velocity_db -f schema_crm_canonical.sql
|
||||
--
|
||||
-- Existing tables: users_and_roles, leads_intelligence, velocity_vault_assets,
|
||||
-- omnichannel_logs, consent_log, video_scene_maps,
|
||||
-- perception_sessions, cctv_events, leads, chat_logs
|
||||
-- These are treated as legacy feeders per the reconciliation matrix.
|
||||
-- =============================================================================
|
||||
|
||||
CREATE EXTENSION IF NOT EXISTS "pgcrypto";
|
||||
CREATE EXTENSION IF NOT EXISTS "pg_trgm";
|
||||
|
||||
-- ─────────────────────────────────────────────────────────────────────────────
|
||||
-- ENUM TYPES — Canonical Domain
|
||||
-- ─────────────────────────────────────────────────────────────────────────────
|
||||
|
||||
DO $$ BEGIN
|
||||
CREATE TYPE crm_lead_status AS ENUM (
|
||||
'new', 'contacted', 'qualified', 'site_visit_scheduled', 'site_visited',
|
||||
'negotiation', 'booking_initiated', 'booked', 'lost', 'dormant'
|
||||
);
|
||||
EXCEPTION WHEN duplicate_object THEN NULL;
|
||||
END $$;
|
||||
|
||||
DO $$ BEGIN
|
||||
CREATE TYPE crm_opportunity_stage AS ENUM (
|
||||
'prospect', 'qualified', 'proposal', 'site_visit', 'negotiation',
|
||||
'booking', 'agreement', 'closed_won', 'closed_lost'
|
||||
);
|
||||
EXCEPTION WHEN duplicate_object THEN NULL;
|
||||
END $$;
|
||||
|
||||
DO $$ BEGIN
|
||||
CREATE TYPE crm_account_type AS ENUM (
|
||||
'individual', 'company', 'broker', 'developer', 'referral_partner', 'nri_family'
|
||||
);
|
||||
EXCEPTION WHEN duplicate_object THEN NULL;
|
||||
END $$;
|
||||
|
||||
DO $$ BEGIN
|
||||
CREATE TYPE crm_relationship_type AS ENUM (
|
||||
'spouse', 'parent', 'sibling', 'business_partner', 'broker_referral',
|
||||
'co_buyer', 'family_member', 'advisor'
|
||||
);
|
||||
EXCEPTION WHEN duplicate_object THEN NULL;
|
||||
END $$;
|
||||
|
||||
DO $$ BEGIN
|
||||
CREATE TYPE intel_channel AS ENUM (
|
||||
'whatsapp', 'phone', 'email', 'site_visit', 'office_meeting',
|
||||
'video_call', 'cctv', 'perception_session', 'system'
|
||||
);
|
||||
EXCEPTION WHEN duplicate_object THEN NULL;
|
||||
END $$;
|
||||
|
||||
DO $$ BEGIN
|
||||
CREATE TYPE intel_call_direction AS ENUM ('inbound', 'outbound');
|
||||
EXCEPTION WHEN duplicate_object THEN NULL;
|
||||
END $$;
|
||||
|
||||
DO $$ BEGIN
|
||||
CREATE TYPE wf_status AS ENUM (
|
||||
'pending', 'review_required', 'approved', 'rejected', 'executed', 'failed', 'cancelled'
|
||||
);
|
||||
EXCEPTION WHEN duplicate_object THEN NULL;
|
||||
END $$;
|
||||
|
||||
DO $$ BEGIN
|
||||
CREATE TYPE import_lifecycle AS ENUM (
|
||||
'uploaded', 'parsed', 'mapped', 'proposed', 'approved', 'committed', 'failed'
|
||||
);
|
||||
EXCEPTION WHEN duplicate_object THEN NULL;
|
||||
END $$;
|
||||
|
||||
-- ─────────────────────────────────────────────────────────────────────────────
|
||||
-- SECTION 1: CRM CORE DOMAIN (crm_*)
|
||||
-- ─────────────────────────────────────────────────────────────────────────────
|
||||
|
||||
-- TABLE: crm_people
|
||||
-- Purpose: canonical person-level contact identity
|
||||
CREATE TABLE IF NOT EXISTS crm_people (
|
||||
person_id UUID PRIMARY KEY DEFAULT gen_random_uuid(),
|
||||
full_name TEXT NOT NULL,
|
||||
primary_email TEXT,
|
||||
primary_phone TEXT,
|
||||
secondary_phone TEXT,
|
||||
linkedin_url TEXT,
|
||||
city TEXT,
|
||||
nationality TEXT,
|
||||
buyer_type TEXT, -- high_intent, slow_burn_investor, nri, etc.
|
||||
persona_labels JSONB NOT NULL DEFAULT '[]'::jsonb,
|
||||
source_confidence FLOAT CHECK (source_confidence BETWEEN 0.0 AND 1.0),
|
||||
-- Legacy feeder references (migration linkage)
|
||||
legacy_lead_id TEXT, -- links to old leads.id
|
||||
legacy_li_id UUID, -- links to leads_intelligence.id
|
||||
-- Metadata
|
||||
metadata_json JSONB NOT NULL DEFAULT '{}'::jsonb,
|
||||
created_at TIMESTAMPTZ NOT NULL DEFAULT NOW(),
|
||||
updated_at TIMESTAMPTZ NOT NULL DEFAULT NOW()
|
||||
);
|
||||
|
||||
CREATE INDEX IF NOT EXISTS idx_crm_people_email ON crm_people (primary_email);
|
||||
CREATE INDEX IF NOT EXISTS idx_crm_people_phone ON crm_people (primary_phone);
|
||||
CREATE INDEX IF NOT EXISTS idx_crm_people_name_trgm ON crm_people USING GIN (full_name gin_trgm_ops);
|
||||
CREATE INDEX IF NOT EXISTS idx_crm_people_buyer_type ON crm_people (buyer_type);
|
||||
|
||||
-- TABLE: crm_accounts
|
||||
-- Purpose: company, employer, brokerage, or client organization
|
||||
CREATE TABLE IF NOT EXISTS crm_accounts (
|
||||
account_id UUID PRIMARY KEY DEFAULT gen_random_uuid(),
|
||||
account_name TEXT NOT NULL,
|
||||
parent_account_id UUID REFERENCES crm_accounts(account_id) ON DELETE SET NULL,
|
||||
account_type crm_account_type NOT NULL DEFAULT 'company',
|
||||
industry TEXT,
|
||||
location_ref TEXT,
|
||||
website TEXT,
|
||||
metadata_json JSONB NOT NULL DEFAULT '{}'::jsonb,
|
||||
created_at TIMESTAMPTZ NOT NULL DEFAULT NOW(),
|
||||
updated_at TIMESTAMPTZ NOT NULL DEFAULT NOW()
|
||||
);
|
||||
|
||||
CREATE INDEX IF NOT EXISTS idx_crm_accounts_name ON crm_accounts (account_name);
|
||||
CREATE INDEX IF NOT EXISTS idx_crm_accounts_type ON crm_accounts (account_type);
|
||||
|
||||
-- TABLE: crm_households
|
||||
-- Purpose: family or co-buyer unit grouping
|
||||
CREATE TABLE IF NOT EXISTS crm_households (
|
||||
household_id UUID PRIMARY KEY DEFAULT gen_random_uuid(),
|
||||
household_name TEXT NOT NULL,
|
||||
primary_person_id UUID REFERENCES crm_people(person_id) ON DELETE SET NULL,
|
||||
notes TEXT,
|
||||
metadata_json JSONB NOT NULL DEFAULT '{}'::jsonb,
|
||||
created_at TIMESTAMPTZ NOT NULL DEFAULT NOW()
|
||||
);
|
||||
|
||||
-- TABLE: crm_relationships
|
||||
-- Purpose: person-to-person relationship graph
|
||||
CREATE TABLE IF NOT EXISTS crm_relationships (
|
||||
relationship_id UUID PRIMARY KEY DEFAULT gen_random_uuid(),
|
||||
person_a_id UUID NOT NULL REFERENCES crm_people(person_id) ON DELETE CASCADE,
|
||||
person_b_id UUID NOT NULL REFERENCES crm_people(person_id) ON DELETE CASCADE,
|
||||
relationship_type crm_relationship_type NOT NULL,
|
||||
household_id UUID REFERENCES crm_households(household_id) ON DELETE SET NULL,
|
||||
notes TEXT,
|
||||
created_at TIMESTAMPTZ NOT NULL DEFAULT NOW(),
|
||||
UNIQUE (person_a_id, person_b_id, relationship_type)
|
||||
);
|
||||
|
||||
CREATE INDEX IF NOT EXISTS idx_crm_rel_a ON crm_relationships (person_a_id);
|
||||
CREATE INDEX IF NOT EXISTS idx_crm_rel_b ON crm_relationships (person_b_id);
|
||||
|
||||
-- TABLE: crm_leads
|
||||
-- Purpose: funnel-stage commercial qualification layer
|
||||
CREATE TABLE IF NOT EXISTS crm_leads (
|
||||
lead_id UUID PRIMARY KEY DEFAULT gen_random_uuid(),
|
||||
person_id UUID NOT NULL REFERENCES crm_people(person_id) ON DELETE CASCADE,
|
||||
account_id UUID REFERENCES crm_accounts(account_id) ON DELETE SET NULL,
|
||||
source_system TEXT DEFAULT 'velocity',
|
||||
status crm_lead_status NOT NULL DEFAULT 'new',
|
||||
budget_band TEXT,
|
||||
urgency TEXT, -- low, medium, high, critical
|
||||
financing_posture TEXT, -- cash, loan, nri_remittance, emi
|
||||
timeline_to_decision TEXT,
|
||||
objections JSONB NOT NULL DEFAULT '[]'::jsonb,
|
||||
motivations JSONB NOT NULL DEFAULT '[]'::jsonb,
|
||||
assigned_user_id UUID REFERENCES users_and_roles(id) ON DELETE SET NULL,
|
||||
-- Legacy feeder
|
||||
legacy_lead_id TEXT,
|
||||
metadata_json JSONB NOT NULL DEFAULT '{}'::jsonb,
|
||||
created_at TIMESTAMPTZ NOT NULL DEFAULT NOW(),
|
||||
updated_at TIMESTAMPTZ NOT NULL DEFAULT NOW()
|
||||
);
|
||||
|
||||
CREATE INDEX IF NOT EXISTS idx_crm_leads_person ON crm_leads (person_id);
|
||||
CREATE INDEX IF NOT EXISTS idx_crm_leads_status ON crm_leads (status);
|
||||
CREATE INDEX IF NOT EXISTS idx_crm_leads_assigned ON crm_leads (assigned_user_id);
|
||||
CREATE INDEX IF NOT EXISTS idx_crm_leads_source ON crm_leads (source_system);
|
||||
|
||||
-- TABLE: crm_opportunities
|
||||
-- Purpose: deal pipeline objects
|
||||
CREATE TABLE IF NOT EXISTS crm_opportunities (
|
||||
opportunity_id UUID PRIMARY KEY DEFAULT gen_random_uuid(),
|
||||
lead_id UUID NOT NULL REFERENCES crm_leads(lead_id) ON DELETE CASCADE,
|
||||
project_id UUID, -- references inventory_projects
|
||||
unit_id UUID, -- references inventory_units
|
||||
stage crm_opportunity_stage NOT NULL DEFAULT 'prospect',
|
||||
value DECIMAL(15, 2),
|
||||
probability INTEGER CHECK (probability BETWEEN 0 AND 100),
|
||||
expected_close_date DATE,
|
||||
next_action TEXT,
|
||||
notes TEXT,
|
||||
metadata_json JSONB NOT NULL DEFAULT '{}'::jsonb,
|
||||
created_at TIMESTAMPTZ NOT NULL DEFAULT NOW(),
|
||||
updated_at TIMESTAMPTZ NOT NULL DEFAULT NOW()
|
||||
);
|
||||
|
||||
CREATE INDEX IF NOT EXISTS idx_crm_opp_lead ON crm_opportunities (lead_id);
|
||||
CREATE INDEX IF NOT EXISTS idx_crm_opp_stage ON crm_opportunities (stage);
|
||||
CREATE INDEX IF NOT EXISTS idx_crm_opp_project ON crm_opportunities (project_id);
|
||||
|
||||
-- TABLE: crm_property_interests
|
||||
-- Purpose: project and unit interest linking per client
|
||||
CREATE TABLE IF NOT EXISTS crm_property_interests (
|
||||
interest_id UUID PRIMARY KEY DEFAULT gen_random_uuid(),
|
||||
person_id UUID NOT NULL REFERENCES crm_people(person_id) ON DELETE CASCADE,
|
||||
lead_id UUID REFERENCES crm_leads(lead_id) ON DELETE SET NULL,
|
||||
project_id UUID,
|
||||
project_name TEXT NOT NULL,
|
||||
unit_preference TEXT,
|
||||
configuration TEXT, -- 2BHK, 3BHK, Penthouse, etc.
|
||||
budget_min DECIMAL(15, 2),
|
||||
budget_max DECIMAL(15, 2),
|
||||
priority INTEGER DEFAULT 1, -- 1 = primary, 2 = secondary
|
||||
notes TEXT,
|
||||
created_at TIMESTAMPTZ NOT NULL DEFAULT NOW()
|
||||
);
|
||||
|
||||
CREATE INDEX IF NOT EXISTS idx_crm_pi_person ON crm_property_interests (person_id);
|
||||
CREATE INDEX IF NOT EXISTS idx_crm_pi_project ON crm_property_interests (project_id);
|
||||
|
||||
-- TABLE: crm_stage_history
|
||||
-- Purpose: canonical audit trail of lead stage transitions
|
||||
CREATE TABLE IF NOT EXISTS crm_stage_history (
|
||||
history_id UUID PRIMARY KEY DEFAULT gen_random_uuid(),
|
||||
lead_id UUID NOT NULL REFERENCES crm_leads(lead_id) ON DELETE CASCADE,
|
||||
from_status TEXT,
|
||||
to_status TEXT NOT NULL,
|
||||
changed_by UUID REFERENCES users_and_roles(id) ON DELETE SET NULL,
|
||||
changed_by_type TEXT DEFAULT 'human', -- human, ai, system
|
||||
notes TEXT,
|
||||
happened_at TIMESTAMPTZ NOT NULL DEFAULT NOW()
|
||||
);
|
||||
|
||||
CREATE INDEX IF NOT EXISTS idx_crm_stage_lead ON crm_stage_history (lead_id, happened_at DESC);
|
||||
|
||||
-- ─────────────────────────────────────────────────────────────────────────────
|
||||
-- SECTION 2: INTERACTION AND EVIDENCE GRAPH (intel_*)
|
||||
-- ─────────────────────────────────────────────────────────────────────────────
|
||||
|
||||
-- TABLE: intel_interactions
|
||||
-- Purpose: umbrella interaction event record
|
||||
CREATE TABLE IF NOT EXISTS intel_interactions (
|
||||
interaction_id UUID PRIMARY KEY DEFAULT gen_random_uuid(),
|
||||
person_id UUID NOT NULL REFERENCES crm_people(person_id) ON DELETE CASCADE,
|
||||
lead_id UUID REFERENCES crm_leads(lead_id) ON DELETE SET NULL,
|
||||
channel intel_channel NOT NULL,
|
||||
interaction_type TEXT NOT NULL, -- message, call, visit, email, note
|
||||
happened_at TIMESTAMPTZ NOT NULL DEFAULT NOW(),
|
||||
summary TEXT,
|
||||
source_ref TEXT,
|
||||
metadata_json JSONB NOT NULL DEFAULT '{}'::jsonb,
|
||||
created_at TIMESTAMPTZ NOT NULL DEFAULT NOW()
|
||||
);
|
||||
|
||||
CREATE INDEX IF NOT EXISTS idx_intel_int_person ON intel_interactions (person_id, happened_at DESC);
|
||||
CREATE INDEX IF NOT EXISTS idx_intel_int_lead ON intel_interactions (lead_id, happened_at DESC);
|
||||
CREATE INDEX IF NOT EXISTS idx_intel_int_channel ON intel_interactions (channel);
|
||||
|
||||
-- TABLE: intel_messages
|
||||
-- Purpose: text-level message records (WhatsApp, chat)
|
||||
CREATE TABLE IF NOT EXISTS intel_messages (
|
||||
message_id UUID PRIMARY KEY DEFAULT gen_random_uuid(),
|
||||
interaction_id UUID NOT NULL REFERENCES intel_interactions(interaction_id) ON DELETE CASCADE,
|
||||
thread_id UUID,
|
||||
sender_role TEXT NOT NULL, -- lead, broker, system, oracle
|
||||
sender_name TEXT,
|
||||
message_text TEXT NOT NULL,
|
||||
delivered_at TIMESTAMPTZ NOT NULL DEFAULT NOW(),
|
||||
metadata_json JSONB NOT NULL DEFAULT '{}'::jsonb
|
||||
);
|
||||
|
||||
CREATE INDEX IF NOT EXISTS idx_intel_msg_interaction ON intel_messages (interaction_id, delivered_at DESC);
|
||||
|
||||
-- TABLE: intel_whatsapp_threads
|
||||
-- Purpose: WhatsApp thread-level summaries
|
||||
CREATE TABLE IF NOT EXISTS intel_whatsapp_threads (
|
||||
thread_id UUID PRIMARY KEY DEFAULT gen_random_uuid(),
|
||||
person_id UUID NOT NULL REFERENCES crm_people(person_id) ON DELETE CASCADE,
|
||||
lead_id UUID REFERENCES crm_leads(lead_id) ON DELETE SET NULL,
|
||||
phone_number TEXT,
|
||||
thread_summary TEXT,
|
||||
message_count INTEGER DEFAULT 0,
|
||||
last_message_at TIMESTAMPTZ,
|
||||
metadata_json JSONB NOT NULL DEFAULT '{}'::jsonb,
|
||||
created_at TIMESTAMPTZ NOT NULL DEFAULT NOW()
|
||||
);
|
||||
|
||||
CREATE INDEX IF NOT EXISTS idx_intel_wa_person ON intel_whatsapp_threads (person_id);
|
||||
|
||||
-- TABLE: intel_calls
|
||||
-- Purpose: voice call records
|
||||
CREATE TABLE IF NOT EXISTS intel_calls (
|
||||
call_id UUID PRIMARY KEY DEFAULT gen_random_uuid(),
|
||||
interaction_id UUID NOT NULL REFERENCES intel_interactions(interaction_id) ON DELETE CASCADE,
|
||||
call_direction intel_call_direction NOT NULL DEFAULT 'outbound',
|
||||
duration_seconds INTEGER,
|
||||
recording_ref TEXT, -- storage path or URL to recording
|
||||
transcript_ref TEXT, -- path to transcript JSON
|
||||
call_outcome TEXT, -- connected, no_answer, voicemail, dropped
|
||||
called_number TEXT,
|
||||
metadata_json JSONB NOT NULL DEFAULT '{}'::jsonb
|
||||
);
|
||||
|
||||
CREATE INDEX IF NOT EXISTS idx_intel_call_interaction ON intel_calls (interaction_id);
|
||||
|
||||
-- TABLE: intel_transcripts
|
||||
-- Purpose: transcript and speaker segmentation storage
|
||||
CREATE TABLE IF NOT EXISTS intel_transcripts (
|
||||
transcript_id UUID PRIMARY KEY DEFAULT gen_random_uuid(),
|
||||
call_id UUID REFERENCES intel_calls(call_id) ON DELETE SET NULL,
|
||||
interaction_id UUID REFERENCES intel_interactions(interaction_id) ON DELETE SET NULL,
|
||||
language TEXT DEFAULT 'en',
|
||||
full_text TEXT,
|
||||
speaker_segments_json JSONB NOT NULL DEFAULT '[]'::jsonb,
|
||||
confidence FLOAT CHECK (confidence BETWEEN 0.0 AND 1.0),
|
||||
word_count INTEGER,
|
||||
metadata_json JSONB NOT NULL DEFAULT '{}'::jsonb,
|
||||
created_at TIMESTAMPTZ NOT NULL DEFAULT NOW()
|
||||
);
|
||||
|
||||
CREATE INDEX IF NOT EXISTS idx_intel_transcript_call ON intel_transcripts (call_id);
|
||||
CREATE INDEX IF NOT EXISTS idx_intel_transcript_interaction ON intel_transcripts (interaction_id);
|
||||
|
||||
-- TABLE: intel_emails
|
||||
-- Purpose: email thread records
|
||||
CREATE TABLE IF NOT EXISTS intel_emails (
|
||||
email_id UUID PRIMARY KEY DEFAULT gen_random_uuid(),
|
||||
interaction_id UUID NOT NULL REFERENCES intel_interactions(interaction_id) ON DELETE CASCADE,
|
||||
from_address TEXT,
|
||||
to_addresses JSONB NOT NULL DEFAULT '[]'::jsonb,
|
||||
subject TEXT,
|
||||
body_text TEXT,
|
||||
has_attachments BOOLEAN DEFAULT FALSE,
|
||||
sent_at TIMESTAMPTZ NOT NULL DEFAULT NOW(),
|
||||
metadata_json JSONB NOT NULL DEFAULT '{}'::jsonb
|
||||
);
|
||||
|
||||
CREATE INDEX IF NOT EXISTS idx_intel_email_interaction ON intel_emails (interaction_id);
|
||||
|
||||
-- TABLE: intel_visits
|
||||
-- Purpose: site visit and meeting records
|
||||
CREATE TABLE IF NOT EXISTS intel_visits (
|
||||
visit_id UUID PRIMARY KEY DEFAULT gen_random_uuid(),
|
||||
person_id UUID NOT NULL REFERENCES crm_people(person_id) ON DELETE CASCADE,
|
||||
lead_id UUID REFERENCES crm_leads(lead_id) ON DELETE SET NULL,
|
||||
project_id UUID,
|
||||
project_name TEXT,
|
||||
unit_id UUID,
|
||||
visited_at TIMESTAMPTZ NOT NULL DEFAULT NOW(),
|
||||
visit_notes TEXT,
|
||||
host_user_id UUID REFERENCES users_and_roles(id) ON DELETE SET NULL,
|
||||
revisit_intent TEXT, -- very_likely, likely, uncertain, unlikely
|
||||
cctv_session_ref TEXT,
|
||||
perception_session_ref TEXT,
|
||||
metadata_json JSONB NOT NULL DEFAULT '{}'::jsonb
|
||||
);
|
||||
|
||||
CREATE INDEX IF NOT EXISTS idx_intel_visits_person ON intel_visits (person_id, visited_at DESC);
|
||||
CREATE INDEX IF NOT EXISTS idx_intel_visits_project ON intel_visits (project_id);
|
||||
|
||||
-- TABLE: intel_reminders
|
||||
-- Purpose: reminders and follow-up task chains
|
||||
CREATE TABLE IF NOT EXISTS intel_reminders (
|
||||
reminder_id UUID PRIMARY KEY DEFAULT gen_random_uuid(),
|
||||
person_id UUID NOT NULL REFERENCES crm_people(person_id) ON DELETE CASCADE,
|
||||
lead_id UUID REFERENCES crm_leads(lead_id) ON DELETE SET NULL,
|
||||
opportunity_id UUID REFERENCES crm_opportunities(opportunity_id) ON DELETE SET NULL,
|
||||
reminder_type TEXT NOT NULL, -- call_back, follow_up, site_visit, document, negotiation
|
||||
title TEXT NOT NULL,
|
||||
notes TEXT,
|
||||
due_at TIMESTAMPTZ,
|
||||
completed_at TIMESTAMPTZ,
|
||||
status TEXT NOT NULL DEFAULT 'pending', -- pending, done, snoozed, cancelled
|
||||
assigned_to UUID REFERENCES users_and_roles(id) ON DELETE SET NULL,
|
||||
created_by_type TEXT DEFAULT 'human', -- human, ai, system
|
||||
priority TEXT DEFAULT 'normal', -- low, normal, high, urgent
|
||||
metadata_json JSONB NOT NULL DEFAULT '{}'::jsonb,
|
||||
created_at TIMESTAMPTZ NOT NULL DEFAULT NOW()
|
||||
);
|
||||
|
||||
CREATE INDEX IF NOT EXISTS idx_intel_reminder_person ON intel_reminders (person_id, due_at);
|
||||
CREATE INDEX IF NOT EXISTS idx_intel_reminder_status ON intel_reminders (status, due_at);
|
||||
CREATE INDEX IF NOT EXISTS idx_intel_reminder_assigned ON intel_reminders (assigned_to, due_at);
|
||||
|
||||
-- TABLE: intel_qd_scores
|
||||
-- Purpose: latest meaningful QD summary by client
|
||||
CREATE TABLE IF NOT EXISTS intel_qd_scores (
|
||||
qd_id UUID PRIMARY KEY DEFAULT gen_random_uuid(),
|
||||
person_id UUID NOT NULL REFERENCES crm_people(person_id) ON DELETE CASCADE,
|
||||
score_type TEXT NOT NULL, -- intent_score, urgency_score, engagement_score
|
||||
current_value FLOAT NOT NULL CHECK (current_value BETWEEN 0.0 AND 1.0),
|
||||
computed_at TIMESTAMPTZ NOT NULL DEFAULT NOW(),
|
||||
evidence_refs_json JSONB NOT NULL DEFAULT '[]'::jsonb,
|
||||
reasoning TEXT,
|
||||
metadata_json JSONB NOT NULL DEFAULT '{}'::jsonb,
|
||||
UNIQUE (person_id, score_type)
|
||||
);
|
||||
|
||||
CREATE INDEX IF NOT EXISTS idx_intel_qd_person ON intel_qd_scores (person_id);
|
||||
|
||||
-- TABLE: intel_qd_timeseries
|
||||
-- Purpose: time-series QD propagation and shifts
|
||||
CREATE TABLE IF NOT EXISTS intel_qd_timeseries (
|
||||
timeseries_id UUID PRIMARY KEY DEFAULT gen_random_uuid(),
|
||||
person_id UUID NOT NULL REFERENCES crm_people(person_id) ON DELETE CASCADE,
|
||||
score_type TEXT NOT NULL,
|
||||
signal_source TEXT,
|
||||
timestamp TIMESTAMPTZ NOT NULL DEFAULT NOW(),
|
||||
value FLOAT NOT NULL CHECK (value BETWEEN 0.0 AND 1.0),
|
||||
delta FLOAT,
|
||||
evidence_ref TEXT,
|
||||
metadata_json JSONB NOT NULL DEFAULT '{}'::jsonb
|
||||
);
|
||||
|
||||
CREATE INDEX IF NOT EXISTS idx_intel_qd_ts_person ON intel_qd_timeseries (person_id, timestamp DESC);
|
||||
CREATE INDEX IF NOT EXISTS idx_intel_qd_ts_type ON intel_qd_timeseries (score_type, timestamp DESC);
|
||||
|
||||
-- TABLE: intel_vehicle_events
|
||||
-- Purpose: number-plate and vehicle detection events
|
||||
CREATE TABLE IF NOT EXISTS intel_vehicle_events (
|
||||
event_id UUID PRIMARY KEY DEFAULT gen_random_uuid(),
|
||||
person_id UUID REFERENCES crm_people(person_id) ON DELETE SET NULL,
|
||||
visit_id UUID REFERENCES intel_visits(visit_id) ON DELETE SET NULL,
|
||||
zone TEXT,
|
||||
license_plate_hash TEXT, -- hashed for privacy
|
||||
vehicle_class TEXT, -- luxury, standard, unknown
|
||||
wealth_indicator TEXT, -- HNI, standard, unknown
|
||||
cctv_ref TEXT,
|
||||
captured_at TIMESTAMPTZ NOT NULL DEFAULT NOW(),
|
||||
metadata_json JSONB NOT NULL DEFAULT '{}'::jsonb
|
||||
);
|
||||
|
||||
CREATE INDEX IF NOT EXISTS idx_intel_vehicle_person ON intel_vehicle_events (person_id);
|
||||
|
||||
-- TABLE: intel_perception_events
|
||||
-- Purpose: behavioral and dwell-time intelligence from perception sessions
|
||||
CREATE TABLE IF NOT EXISTS intel_perception_events (
|
||||
perception_id UUID PRIMARY KEY DEFAULT gen_random_uuid(),
|
||||
person_id UUID REFERENCES crm_people(person_id) ON DELETE SET NULL,
|
||||
visit_id UUID REFERENCES intel_visits(visit_id) ON DELETE SET NULL,
|
||||
session_ref TEXT, -- perception_sessions.id linkage
|
||||
event_type TEXT NOT NULL, -- room_dwell, engagement_spike, exit
|
||||
rooms_visited JSONB NOT NULL DEFAULT '[]'::jsonb,
|
||||
dwell_time_seconds INTEGER,
|
||||
engagement_score FLOAT CHECK (engagement_score BETWEEN 0.0 AND 1.0),
|
||||
camera_id TEXT,
|
||||
media_ref TEXT,
|
||||
happened_at TIMESTAMPTZ NOT NULL DEFAULT NOW(),
|
||||
metadata_json JSONB NOT NULL DEFAULT '{}'::jsonb
|
||||
);
|
||||
|
||||
CREATE INDEX IF NOT EXISTS idx_intel_perception_person ON intel_perception_events (person_id);
|
||||
|
||||
-- TABLE: intel_cctv_links
|
||||
-- Purpose: CCTV evidence references linked to client/visit contexts
|
||||
CREATE TABLE IF NOT EXISTS intel_cctv_links (
|
||||
link_id UUID PRIMARY KEY DEFAULT gen_random_uuid(),
|
||||
person_id UUID REFERENCES crm_people(person_id) ON DELETE SET NULL,
|
||||
visit_id UUID REFERENCES intel_visits(visit_id) ON DELETE SET NULL,
|
||||
cctv_event_id UUID REFERENCES cctv_events(id) ON DELETE SET NULL,
|
||||
clip_ref TEXT,
|
||||
camera_zone TEXT,
|
||||
confidence FLOAT CHECK (confidence BETWEEN 0.0 AND 1.0),
|
||||
linked_at TIMESTAMPTZ NOT NULL DEFAULT NOW(),
|
||||
metadata_json JSONB NOT NULL DEFAULT '{}'::jsonb
|
||||
);
|
||||
|
||||
CREATE INDEX IF NOT EXISTS idx_intel_cctv_person ON intel_cctv_links (person_id);
|
||||
|
||||
-- ─────────────────────────────────────────────────────────────────────────────
|
||||
-- SECTION 3: INVENTORY DOMAIN (inventory_*)
|
||||
-- ─────────────────────────────────────────────────────────────────────────────
|
||||
|
||||
-- TABLE: inventory_projects
|
||||
-- Purpose: project-level inventory master
|
||||
CREATE TABLE IF NOT EXISTS inventory_projects (
|
||||
project_id UUID PRIMARY KEY DEFAULT gen_random_uuid(),
|
||||
project_name TEXT NOT NULL UNIQUE,
|
||||
developer_name TEXT NOT NULL,
|
||||
city TEXT NOT NULL DEFAULT 'Kolkata',
|
||||
micro_market TEXT,
|
||||
address TEXT,
|
||||
total_units INTEGER,
|
||||
rera_number TEXT,
|
||||
project_status TEXT DEFAULT 'active', -- active, sold_out, upcoming
|
||||
launch_date DATE,
|
||||
possession_date DATE,
|
||||
location_json JSONB NOT NULL DEFAULT '{}'::jsonb,
|
||||
amenities_json JSONB NOT NULL DEFAULT '[]'::jsonb,
|
||||
metadata_json JSONB NOT NULL DEFAULT '{}'::jsonb,
|
||||
created_at TIMESTAMPTZ NOT NULL DEFAULT NOW(),
|
||||
updated_at TIMESTAMPTZ NOT NULL DEFAULT NOW()
|
||||
);
|
||||
|
||||
CREATE INDEX IF NOT EXISTS idx_inv_projects_name ON inventory_projects (project_name);
|
||||
CREATE INDEX IF NOT EXISTS idx_inv_projects_market ON inventory_projects (micro_market);
|
||||
|
||||
-- TABLE: inventory_units
|
||||
-- Purpose: unit-level availability and attributes
|
||||
CREATE TABLE IF NOT EXISTS inventory_units (
|
||||
unit_id UUID PRIMARY KEY DEFAULT gen_random_uuid(),
|
||||
project_id UUID NOT NULL REFERENCES inventory_projects(project_id) ON DELETE CASCADE,
|
||||
unit_label TEXT NOT NULL,
|
||||
configuration TEXT NOT NULL, -- 2BHK, 3BHK, Penthouse, etc.
|
||||
area_sqft DECIMAL(10, 2),
|
||||
price_current DECIMAL(15, 2),
|
||||
price_psf DECIMAL(10, 2),
|
||||
status TEXT NOT NULL DEFAULT 'available', -- available, reserved, sold, hold
|
||||
floor INTEGER,
|
||||
tower TEXT,
|
||||
facing TEXT,
|
||||
has_attached_amenities JSONB NOT NULL DEFAULT '[]'::jsonb,
|
||||
metadata_json JSONB NOT NULL DEFAULT '{}'::jsonb,
|
||||
updated_at TIMESTAMPTZ NOT NULL DEFAULT NOW(),
|
||||
UNIQUE (project_id, unit_label)
|
||||
);
|
||||
|
||||
CREATE INDEX IF NOT EXISTS idx_inv_units_project ON inventory_units (project_id);
|
||||
CREATE INDEX IF NOT EXISTS idx_inv_units_status ON inventory_units (status);
|
||||
CREATE INDEX IF NOT EXISTS idx_inv_units_config ON inventory_units (configuration);
|
||||
|
||||
-- TABLE: inventory_import_jobs
|
||||
-- Purpose: track inventory CSV import operations
|
||||
CREATE TABLE IF NOT EXISTS inventory_import_jobs (
|
||||
job_id UUID PRIMARY KEY DEFAULT gen_random_uuid(),
|
||||
project_id UUID REFERENCES inventory_projects(project_id) ON DELETE SET NULL,
|
||||
filename TEXT NOT NULL,
|
||||
row_count INTEGER,
|
||||
imported_by UUID REFERENCES users_and_roles(id) ON DELETE SET NULL,
|
||||
status TEXT NOT NULL DEFAULT 'pending',
|
||||
errors_json JSONB NOT NULL DEFAULT '[]'::jsonb,
|
||||
created_at TIMESTAMPTZ NOT NULL DEFAULT NOW(),
|
||||
completed_at TIMESTAMPTZ
|
||||
);
|
||||
|
||||
-- ─────────────────────────────────────────────────────────────────────────────
|
||||
-- SECTION 4: AI WORKFLOW AND GOVERNANCE (workflow_*)
|
||||
-- ─────────────────────────────────────────────────────────────────────────────
|
||||
|
||||
-- TABLE: workflow_actions
|
||||
-- Purpose: track proposed AI/human actions before approval
|
||||
CREATE TABLE IF NOT EXISTS workflow_actions (
|
||||
action_id UUID PRIMARY KEY DEFAULT gen_random_uuid(),
|
||||
action_type TEXT NOT NULL, -- import_review, merge_proposal, writeback, enrichment
|
||||
target_domain TEXT NOT NULL, -- crm, intel, inventory
|
||||
target_entity_ref TEXT,
|
||||
proposal_payload JSONB NOT NULL DEFAULT '{}'::jsonb,
|
||||
reasoning_summary TEXT,
|
||||
evidence_refs JSONB NOT NULL DEFAULT '[]'::jsonb,
|
||||
confidence FLOAT CHECK (confidence BETWEEN 0.0 AND 1.0),
|
||||
status wf_status NOT NULL DEFAULT 'pending',
|
||||
approval_required BOOLEAN NOT NULL DEFAULT TRUE,
|
||||
created_by_agent TEXT,
|
||||
created_at TIMESTAMPTZ NOT NULL DEFAULT NOW(),
|
||||
updated_at TIMESTAMPTZ NOT NULL DEFAULT NOW()
|
||||
);
|
||||
|
||||
CREATE INDEX IF NOT EXISTS idx_wf_actions_status ON workflow_actions (status, created_at DESC);
|
||||
CREATE INDEX IF NOT EXISTS idx_wf_actions_domain ON workflow_actions (target_domain);
|
||||
|
||||
-- TABLE: workflow_approvals
|
||||
-- Purpose: explicit human review decisions
|
||||
CREATE TABLE IF NOT EXISTS workflow_approvals (
|
||||
decision_id UUID PRIMARY KEY DEFAULT gen_random_uuid(),
|
||||
action_id UUID NOT NULL REFERENCES workflow_actions(action_id) ON DELETE CASCADE,
|
||||
reviewer_id UUID REFERENCES users_and_roles(id) ON DELETE SET NULL,
|
||||
decision TEXT NOT NULL, -- approved, rejected, needs_more_info
|
||||
decision_notes TEXT,
|
||||
decided_at TIMESTAMPTZ NOT NULL DEFAULT NOW()
|
||||
);
|
||||
|
||||
CREATE INDEX IF NOT EXISTS idx_wf_approvals_action ON workflow_approvals (action_id);
|
||||
|
||||
-- TABLE: workflow_writebacks
|
||||
-- Purpose: track AI-suggested and approved canonical mutations
|
||||
CREATE TABLE IF NOT EXISTS workflow_writebacks (
|
||||
writeback_id UUID PRIMARY KEY DEFAULT gen_random_uuid(),
|
||||
action_id UUID REFERENCES workflow_actions(action_id) ON DELETE SET NULL,
|
||||
approval_id UUID REFERENCES workflow_approvals(decision_id) ON DELETE SET NULL,
|
||||
target_domain TEXT NOT NULL,
|
||||
target_entity_ref TEXT NOT NULL,
|
||||
change_payload JSONB NOT NULL DEFAULT '{}'::jsonb,
|
||||
status wf_status NOT NULL DEFAULT 'pending',
|
||||
approved_by UUID REFERENCES users_and_roles(id) ON DELETE SET NULL,
|
||||
executed_at TIMESTAMPTZ,
|
||||
error_detail TEXT,
|
||||
created_at TIMESTAMPTZ NOT NULL DEFAULT NOW()
|
||||
);
|
||||
|
||||
CREATE INDEX IF NOT EXISTS idx_wf_wb_status ON workflow_writebacks (status, created_at DESC);
|
||||
CREATE INDEX IF NOT EXISTS idx_wf_wb_domain ON workflow_writebacks (target_domain);
|
||||
|
||||
-- TABLE: workflow_import_batches
|
||||
-- Purpose: CRM import batch lifecycle tracking (RawImportBatch contract)
|
||||
CREATE TABLE IF NOT EXISTS workflow_import_batches (
|
||||
batch_id UUID PRIMARY KEY DEFAULT gen_random_uuid(),
|
||||
source_system TEXT NOT NULL, -- csv_upload, salesforce, hubspot, manual
|
||||
uploaded_filename TEXT,
|
||||
mime_type TEXT DEFAULT 'text/csv',
|
||||
storage_ref TEXT,
|
||||
row_count INTEGER,
|
||||
mapped_count INTEGER DEFAULT 0,
|
||||
unresolved_count INTEGER DEFAULT 0,
|
||||
canonical_count INTEGER DEFAULT 0,
|
||||
uploaded_by UUID REFERENCES users_and_roles(id) ON DELETE SET NULL,
|
||||
lifecycle import_lifecycle NOT NULL DEFAULT 'uploaded',
|
||||
mapping_manifest JSONB NOT NULL DEFAULT '{}'::jsonb,
|
||||
errors_json JSONB NOT NULL DEFAULT '[]'::jsonb,
|
||||
metadata_json JSONB NOT NULL DEFAULT '{}'::jsonb,
|
||||
created_at TIMESTAMPTZ NOT NULL DEFAULT NOW(),
|
||||
updated_at TIMESTAMPTZ NOT NULL DEFAULT NOW()
|
||||
);
|
||||
|
||||
CREATE INDEX IF NOT EXISTS idx_wf_import_lifecycle ON workflow_import_batches (lifecycle, created_at DESC);
|
||||
CREATE INDEX IF NOT EXISTS idx_wf_import_user ON workflow_import_batches (uploaded_by);
|
||||
|
||||
-- TABLE: workflow_agent_runs
|
||||
-- Purpose: track NemoClaw and AI agent invocation logs
|
||||
CREATE TABLE IF NOT EXISTS workflow_agent_runs (
|
||||
run_id UUID PRIMARY KEY DEFAULT gen_random_uuid(),
|
||||
agent_name TEXT NOT NULL, -- nemoclaw, import_mapper, enrichment_engine
|
||||
trigger_type TEXT NOT NULL, -- import, enrichment, qd_update, writeback
|
||||
trigger_ref TEXT,
|
||||
input_payload JSONB NOT NULL DEFAULT '{}'::jsonb,
|
||||
output_payload JSONB NOT NULL DEFAULT '{}'::jsonb,
|
||||
status TEXT NOT NULL DEFAULT 'running', -- running, completed, failed
|
||||
duration_ms INTEGER,
|
||||
error_detail TEXT,
|
||||
started_at TIMESTAMPTZ NOT NULL DEFAULT NOW(),
|
||||
completed_at TIMESTAMPTZ
|
||||
);
|
||||
|
||||
CREATE INDEX IF NOT EXISTS idx_wf_agent_runs_agent ON workflow_agent_runs (agent_name, started_at DESC);
|
||||
CREATE INDEX IF NOT EXISTS idx_wf_agent_runs_status ON workflow_agent_runs (status);
|
||||
|
||||
-- ─────────────────────────────────────────────────────────────────────────────
|
||||
-- TRIGGERS: auto-update updated_at
|
||||
-- ─────────────────────────────────────────────────────────────────────────────
|
||||
|
||||
CREATE OR REPLACE FUNCTION set_canonical_updated_at()
|
||||
RETURNS TRIGGER LANGUAGE plpgsql AS $$
|
||||
BEGIN
|
||||
NEW.updated_at = NOW();
|
||||
RETURN NEW;
|
||||
END;
|
||||
$$;
|
||||
|
||||
DO $$ DECLARE
|
||||
t TEXT;
|
||||
BEGIN
|
||||
FOREACH t IN ARRAY ARRAY[
|
||||
'crm_people', 'crm_accounts', 'crm_leads', 'crm_opportunities',
|
||||
'inventory_projects', 'inventory_units',
|
||||
'workflow_actions', 'workflow_import_batches'
|
||||
] LOOP
|
||||
EXECUTE format(
|
||||
'DROP TRIGGER IF EXISTS trg_%s_updated_at ON %s;
|
||||
CREATE TRIGGER trg_%s_updated_at
|
||||
BEFORE UPDATE ON %s
|
||||
FOR EACH ROW EXECUTE FUNCTION set_canonical_updated_at();',
|
||||
t, t, t, t
|
||||
);
|
||||
END LOOP;
|
||||
END $$;
|
||||
|
||||
-- ─────────────────────────────────────────────────────────────────────────────
|
||||
-- INVENTORY SEED: 14 Canonical Kolkata Projects
|
||||
-- ─────────────────────────────────────────────────────────────────────────────
|
||||
|
||||
INSERT INTO inventory_projects (project_id, project_name, developer_name, city, micro_market)
|
||||
VALUES
|
||||
(gen_random_uuid(), 'Eden Devprayag', 'Eden Group', 'Kolkata', 'Rajarhat'),
|
||||
(gen_random_uuid(), 'Sugam Prakriti', 'Sugam Homes', 'Kolkata', 'Barasat'),
|
||||
(gen_random_uuid(), 'Atri Aqua', 'Atri Developers', 'Kolkata', 'New Town'),
|
||||
(gen_random_uuid(), 'Atri Surya Toron', 'Atri Developers', 'Kolkata', 'Rajarhat'),
|
||||
(gen_random_uuid(), 'Siddha Suburbia Bungalow', 'Siddha Group', 'Kolkata', 'Madanpur'),
|
||||
(gen_random_uuid(), 'Merlin Avana', 'Merlin Group', 'Kolkata', 'Tangra'),
|
||||
(gen_random_uuid(), 'DTC Good Earth', 'DTC Projects', 'Kolkata', 'New Town'),
|
||||
(gen_random_uuid(), 'Siddha Serena', 'Siddha Group', 'Kolkata', 'New Town'),
|
||||
(gen_random_uuid(), 'Siddha Sky Waterfront', 'Siddha Group', 'Kolkata', 'Beliaghata'),
|
||||
(gen_random_uuid(), 'Godrej Blue', 'Godrej Properties', 'Kolkata', 'New Town'),
|
||||
(gen_random_uuid(), 'DTC Sojon', 'DTC Projects', 'Kolkata', 'Rajarhat'),
|
||||
(gen_random_uuid(), 'Shriram Grand City', 'Shriram Properties', 'Kolkata', 'Howrah'),
|
||||
(gen_random_uuid(), 'Godrej Elevate', 'Godrej Properties', 'Kolkata', 'Dum Dum'),
|
||||
(gen_random_uuid(), 'Ambuja Utpaala', 'Ambuja Neotia', 'Kolkata', 'Tollygunge')
|
||||
ON CONFLICT (project_name) DO NOTHING;
|
||||
|
||||
-- ─────────────────────────────────────────────────────────────────────────────
|
||||
-- COMMENTS
|
||||
-- ─────────────────────────────────────────────────────────────────────────────
|
||||
|
||||
COMMENT ON TABLE crm_people IS 'Canonical person-level contact identity. Primary join key across all CRM tables.';
|
||||
COMMENT ON TABLE crm_leads IS 'Funnel-stage commercial qualification. One person may have multiple lead contexts.';
|
||||
COMMENT ON TABLE crm_opportunities IS 'Deal pipeline objects linked to leads and inventory.';
|
||||
COMMENT ON TABLE intel_interactions IS 'Umbrella interaction event. All channels (WhatsApp, call, email, visit) link here.';
|
||||
COMMENT ON TABLE intel_transcripts IS 'Speaker-segmented call transcripts. speaker_segments_json is first-class data.';
|
||||
COMMENT ON TABLE intel_qd_scores IS 'Latest QD summary by score_type per client. UNIQUE constraint enforces one row per type.';
|
||||
COMMENT ON TABLE inventory_projects IS 'Master project catalog. 14 canonical Kolkata projects seeded.';
|
||||
COMMENT ON TABLE workflow_import_batches IS 'RawImportBatch contract. Immutable after upload.';
|
||||
COMMENT ON TABLE workflow_writebacks IS 'AI-proposed canonical mutations. Never auto-execute without approval.';
|
||||
@@ -27,6 +27,7 @@ from backend.api.routes_mobile_edge import router as mobile_edge_router
|
||||
from backend.api.routes_inventory import router as inventory_router
|
||||
from backend.api.routes_admin_surface import router as admin_surface_router
|
||||
from backend.api.routes_oracle_templates import router as oracle_templates_router
|
||||
from backend.api.routes_crm_imports import router as crm_imports_router
|
||||
from backend.auth.dependencies import (
|
||||
create_access_token, verify_password, get_current_user
|
||||
)
|
||||
@@ -106,6 +107,7 @@ app.include_router(vault_router, prefix="/api/vault", tags=["Vault"])
|
||||
app.include_router(mobile_edge_router, prefix="/api/mobile-edge", tags=["Mobile Edge"])
|
||||
app.include_router(inventory_router, prefix="/api/inventory", tags=["Inventory"])
|
||||
app.include_router(admin_surface_router, prefix="/api/admin-surface", tags=["Admin Surface"])
|
||||
app.include_router(crm_imports_router, prefix="/api", tags=["CRM Canonical"])
|
||||
|
||||
# Public vault link (no /api prefix — shared externally with prospects)
|
||||
from backend.routers.vault import router as public_vault_router
|
||||
|
||||
458
backend/scripts/seed_synthetic_crm.py
Normal file
458
backend/scripts/seed_synthetic_crm.py
Normal file
@@ -0,0 +1,458 @@
|
||||
#!/usr/bin/env python3
|
||||
"""
|
||||
backend/scripts/seed_synthetic_crm.py
|
||||
Seed the canonical CRM tables from the synthetic dataset CSVs.
|
||||
|
||||
Usage:
|
||||
python -m backend.scripts.seed_synthetic_crm [--dry-run] [--limit N]
|
||||
|
||||
Reads from: db assets/synthetic_crm_v1/csv/
|
||||
Writes to: canonical crm_*, intel_*, inventory_* tables
|
||||
|
||||
This script implements the import → canonical commit flow without going through
|
||||
the HTTP import review UI — for initial database seeding only.
|
||||
"""
|
||||
from __future__ import annotations
|
||||
|
||||
import argparse
|
||||
import asyncio
|
||||
import csv
|
||||
import json
|
||||
import logging
|
||||
import os
|
||||
import sys
|
||||
import uuid
|
||||
from datetime import datetime, timezone
|
||||
from pathlib import Path
|
||||
|
||||
logging.basicConfig(level=logging.INFO, format='%(asctime)s %(levelname)s %(message)s')
|
||||
logger = logging.getLogger("velocity.seed")
|
||||
|
||||
# ── Data directory ────────────────────────────────────────────────────────────
|
||||
REPO_ROOT = Path(__file__).parent.parent.parent
|
||||
CSV_DIR = REPO_ROOT / "db assets" / "synthetic_crm_v1" / "csv"
|
||||
|
||||
|
||||
def read_csv(filename: str) -> list[dict]:
|
||||
path = CSV_DIR / filename
|
||||
if not path.exists():
|
||||
logger.warning("CSV not found: %s", path)
|
||||
return []
|
||||
with open(path, encoding="utf-8", newline="") as f:
|
||||
return list(csv.DictReader(f))
|
||||
|
||||
|
||||
def safe_float(val: str | None, default: float | None = None) -> float | None:
|
||||
if not val or val.strip() in ("", "null", "None", "nan"):
|
||||
return default
|
||||
try:
|
||||
return float(val)
|
||||
except (ValueError, TypeError):
|
||||
return default
|
||||
|
||||
|
||||
def safe_int(val: str | None, default: int | None = None) -> int | None:
|
||||
if not val or val.strip() in ("", "null", "None"):
|
||||
return default
|
||||
try:
|
||||
return int(float(val))
|
||||
except (ValueError, TypeError):
|
||||
return default
|
||||
|
||||
|
||||
def safe_dt(val: str | None) -> datetime | None:
|
||||
if not val or val.strip() in ("", "null", "None"):
|
||||
return None
|
||||
for fmt in ("%Y-%m-%dT%H:%M:%S", "%Y-%m-%d %H:%M:%S", "%Y-%m-%d", "%Y-%m-%dT%H:%M:%S.%f"):
|
||||
try:
|
||||
return datetime.strptime(val.strip(), fmt).replace(tzinfo=timezone.utc)
|
||||
except ValueError:
|
||||
continue
|
||||
return None
|
||||
|
||||
|
||||
async def seed(dry_run: bool = False, limit: int | None = None) -> None:
|
||||
from backend.db.pool import create_pool, close_pool
|
||||
|
||||
logger.info("Connecting to database…")
|
||||
pool = await create_pool()
|
||||
|
||||
async with pool.acquire() as conn:
|
||||
# Verify canonical schema exists
|
||||
exists = await conn.fetchval(
|
||||
"SELECT EXISTS (SELECT 1 FROM information_schema.tables WHERE table_name = 'crm_people')"
|
||||
)
|
||||
if not exists:
|
||||
logger.error("Canonical schema not found. Run schema_crm_canonical.sql first.")
|
||||
return
|
||||
|
||||
# ── Phase 1: Inventory Projects ──────────────────────────────────────────
|
||||
logger.info("[1/9] Seeding inventory_projects…")
|
||||
projects_rows = read_csv("inventory_projects.csv")
|
||||
project_name_to_id: dict[str, str] = {}
|
||||
|
||||
if not dry_run:
|
||||
async with pool.acquire() as conn:
|
||||
for row in projects_rows:
|
||||
pname = row.get("project_name", "").strip()
|
||||
if not pname:
|
||||
continue
|
||||
pid = await conn.fetchval(
|
||||
"SELECT project_id FROM inventory_projects WHERE project_name = $1",
|
||||
pname,
|
||||
)
|
||||
if pid:
|
||||
project_name_to_id[pname] = str(pid)
|
||||
continue
|
||||
pid = str(uuid.uuid4())
|
||||
await conn.execute(
|
||||
"""
|
||||
INSERT INTO inventory_projects (project_id, project_name, developer_name, city, micro_market, created_at, updated_at)
|
||||
VALUES ($1::uuid, $2, $3, $4, $5, NOW(), NOW())
|
||||
ON CONFLICT (project_name) DO NOTHING
|
||||
""",
|
||||
pid,
|
||||
pname,
|
||||
row.get("developer_name", ""),
|
||||
row.get("city", "Kolkata"),
|
||||
row.get("micro_market", ""),
|
||||
)
|
||||
project_name_to_id[pname] = pid
|
||||
logger.info(" → %d projects mapped", len(project_name_to_id))
|
||||
|
||||
# ── Phase 2: crm_people ──────────────────────────────────────────────────
|
||||
logger.info("[2/9] Seeding crm_people…")
|
||||
people_rows = read_csv("crm_people.csv")
|
||||
if limit:
|
||||
people_rows = people_rows[:limit]
|
||||
|
||||
person_id_map: dict[str, str] = {} # original CSV person_id → DB person_id
|
||||
|
||||
if not dry_run:
|
||||
async with pool.acquire() as conn:
|
||||
for row in people_rows:
|
||||
src_id = row.get("person_id", "")
|
||||
full_name = row.get("full_name", "").strip()
|
||||
if not full_name:
|
||||
continue
|
||||
|
||||
new_id = str(uuid.uuid4())
|
||||
persona_labels: list[str] = []
|
||||
raw_labels = row.get("persona_labels", "")
|
||||
if raw_labels.startswith("["):
|
||||
try:
|
||||
persona_labels = json.loads(raw_labels)
|
||||
except json.JSONDecodeError:
|
||||
pass
|
||||
|
||||
await conn.execute(
|
||||
"""
|
||||
INSERT INTO crm_people (
|
||||
person_id, full_name, primary_email, primary_phone,
|
||||
buyer_type, persona_labels, source_confidence,
|
||||
legacy_lead_id, metadata_json, created_at, updated_at
|
||||
) VALUES (
|
||||
$1::uuid, $2, $3, $4, $5, $6::jsonb, $7,
|
||||
$8, $9::jsonb, NOW(), NOW()
|
||||
)
|
||||
ON CONFLICT DO NOTHING
|
||||
""",
|
||||
new_id,
|
||||
full_name,
|
||||
row.get("primary_email") or None,
|
||||
row.get("primary_phone") or None,
|
||||
row.get("buyer_type") or None,
|
||||
json.dumps(persona_labels),
|
||||
safe_float(row.get("source_confidence"), 0.8),
|
||||
src_id or None,
|
||||
json.dumps({"synthetic": True, "source_id": src_id}),
|
||||
)
|
||||
person_id_map[src_id] = new_id
|
||||
|
||||
logger.info(" → %d people seeded", len(person_id_map))
|
||||
|
||||
# ── Phase 3: crm_leads ───────────────────────────────────────────────────
|
||||
logger.info("[3/9] Seeding crm_leads…")
|
||||
leads_rows = read_csv("crm_leads.csv")
|
||||
lead_id_map: dict[str, str] = {}
|
||||
|
||||
VALID_STATUSES = {
|
||||
'new', 'contacted', 'qualified', 'site_visit_scheduled', 'site_visited',
|
||||
'negotiation', 'booking_initiated', 'booked', 'lost', 'dormant'
|
||||
}
|
||||
|
||||
if not dry_run:
|
||||
async with pool.acquire() as conn:
|
||||
for row in leads_rows:
|
||||
src_person_id = row.get("person_id", "")
|
||||
db_person_id = person_id_map.get(src_person_id)
|
||||
if not db_person_id:
|
||||
continue
|
||||
|
||||
src_lead_id = row.get("lead_id", "")
|
||||
raw_status = row.get("status", "new").lower().strip()
|
||||
status = raw_status if raw_status in VALID_STATUSES else "new"
|
||||
|
||||
new_lead_id = str(uuid.uuid4())
|
||||
await conn.execute(
|
||||
"""
|
||||
INSERT INTO crm_leads (
|
||||
lead_id, person_id, source_system, status,
|
||||
budget_band, urgency, financing_posture,
|
||||
timeline_to_decision, legacy_lead_id,
|
||||
metadata_json, created_at, updated_at
|
||||
) VALUES (
|
||||
$1::uuid, $2::uuid, $3, $4::crm_lead_status,
|
||||
$5, $6, $7, $8, $9, $10::jsonb, NOW(), NOW()
|
||||
)
|
||||
ON CONFLICT DO NOTHING
|
||||
""",
|
||||
new_lead_id,
|
||||
db_person_id,
|
||||
row.get("source_system", "csv_upload"),
|
||||
status,
|
||||
row.get("budget_band") or None,
|
||||
row.get("urgency") or None,
|
||||
row.get("financing_posture") or None,
|
||||
row.get("timeline_to_decision") or None,
|
||||
src_lead_id or None,
|
||||
json.dumps({"synthetic": True, "source_lead_id": src_lead_id}),
|
||||
)
|
||||
lead_id_map[src_lead_id] = new_lead_id
|
||||
|
||||
logger.info(" → %d leads seeded", len(lead_id_map))
|
||||
|
||||
# ── Phase 4: crm_property_interests ─────────────────────────────────────
|
||||
logger.info("[4/9] Seeding crm_property_interests…")
|
||||
pi_rows = read_csv("crm_property_interests.csv")
|
||||
seeded_pi = 0
|
||||
|
||||
if not dry_run:
|
||||
async with pool.acquire() as conn:
|
||||
for row in pi_rows:
|
||||
src_person_id = row.get("person_id", "")
|
||||
db_person_id = person_id_map.get(src_person_id)
|
||||
if not db_person_id:
|
||||
continue
|
||||
db_lead_id = lead_id_map.get(row.get("lead_id", ""))
|
||||
project_name = row.get("project_name", "").strip()
|
||||
if not project_name:
|
||||
continue
|
||||
|
||||
await conn.execute(
|
||||
"""
|
||||
INSERT INTO crm_property_interests (
|
||||
interest_id, person_id, lead_id, project_name,
|
||||
unit_preference, configuration, budget_min, budget_max, priority, created_at
|
||||
) VALUES (
|
||||
$1::uuid, $2::uuid, $3::uuid, $4, $5, $6, $7, $8, $9, NOW()
|
||||
)
|
||||
ON CONFLICT DO NOTHING
|
||||
""",
|
||||
str(uuid.uuid4()),
|
||||
db_person_id,
|
||||
db_lead_id,
|
||||
project_name,
|
||||
row.get("unit_preference") or None,
|
||||
row.get("configuration") or None,
|
||||
safe_float(row.get("budget_min")),
|
||||
safe_float(row.get("budget_max")),
|
||||
safe_int(row.get("priority"), 1),
|
||||
)
|
||||
seeded_pi += 1
|
||||
|
||||
logger.info(" → %d property interests seeded", seeded_pi)
|
||||
|
||||
# ── Phase 5: intel_interactions ──────────────────────────────────────────
|
||||
logger.info("[5/9] Seeding intel_interactions…")
|
||||
int_rows = read_csv("intel_interactions.csv")
|
||||
interaction_id_map: dict[str, str] = {}
|
||||
|
||||
VALID_CHANNELS = {
|
||||
'whatsapp', 'phone', 'email', 'site_visit', 'office_meeting',
|
||||
'video_call', 'cctv', 'perception_session', 'system'
|
||||
}
|
||||
|
||||
if not dry_run:
|
||||
async with pool.acquire() as conn:
|
||||
for row in int_rows:
|
||||
src_person_id = row.get("person_id", "")
|
||||
db_person_id = person_id_map.get(src_person_id)
|
||||
if not db_person_id:
|
||||
continue
|
||||
|
||||
raw_channel = row.get("channel", "system").lower().strip()
|
||||
channel = raw_channel if raw_channel in VALID_CHANNELS else "system"
|
||||
|
||||
src_int_id = row.get("interaction_id", "")
|
||||
new_int_id = str(uuid.uuid4())
|
||||
|
||||
happened_at = safe_dt(row.get("happened_at")) or datetime.now(timezone.utc)
|
||||
db_lead_id = lead_id_map.get(row.get("lead_id", ""))
|
||||
|
||||
await conn.execute(
|
||||
"""
|
||||
INSERT INTO intel_interactions (
|
||||
interaction_id, person_id, lead_id, channel,
|
||||
interaction_type, happened_at, summary, created_at
|
||||
) VALUES (
|
||||
$1::uuid, $2::uuid, $3::uuid, $4::intel_channel,
|
||||
$5, $6, $7, NOW()
|
||||
)
|
||||
ON CONFLICT DO NOTHING
|
||||
""",
|
||||
new_int_id,
|
||||
db_person_id,
|
||||
db_lead_id,
|
||||
channel,
|
||||
row.get("interaction_type", "message"),
|
||||
happened_at,
|
||||
row.get("summary") or None,
|
||||
)
|
||||
interaction_id_map[src_int_id] = new_int_id
|
||||
|
||||
logger.info(" → %d interactions seeded", len(interaction_id_map))
|
||||
|
||||
# ── Phase 6: intel_qd_scores ─────────────────────────────────────────────
|
||||
logger.info("[6/9] Seeding intel_qd_scores…")
|
||||
qd_rows = read_csv("intel_qd_scores.csv")
|
||||
seeded_qd = 0
|
||||
|
||||
if not dry_run:
|
||||
async with pool.acquire() as conn:
|
||||
for row in qd_rows:
|
||||
src_person_id = row.get("person_id", "")
|
||||
db_person_id = person_id_map.get(src_person_id)
|
||||
if not db_person_id:
|
||||
continue
|
||||
|
||||
score_type = row.get("score_type", "intent_score")
|
||||
current_value = safe_float(row.get("current_value"), 0.5)
|
||||
if current_value is None:
|
||||
continue
|
||||
current_value = max(0.0, min(1.0, current_value))
|
||||
|
||||
await conn.execute(
|
||||
"""
|
||||
INSERT INTO intel_qd_scores (
|
||||
qd_id, person_id, score_type, current_value,
|
||||
reasoning, computed_at
|
||||
) VALUES (
|
||||
$1::uuid, $2::uuid, $3, $4, $5, NOW()
|
||||
)
|
||||
ON CONFLICT (person_id, score_type) DO UPDATE
|
||||
SET current_value = EXCLUDED.current_value,
|
||||
computed_at = NOW()
|
||||
""",
|
||||
str(uuid.uuid4()),
|
||||
db_person_id,
|
||||
score_type,
|
||||
current_value,
|
||||
row.get("reasoning") or None,
|
||||
)
|
||||
seeded_qd += 1
|
||||
|
||||
logger.info(" → %d QD scores seeded", seeded_qd)
|
||||
|
||||
# ── Phase 7: intel_reminders ─────────────────────────────────────────────
|
||||
logger.info("[7/9] Seeding intel_reminders…")
|
||||
rem_rows = read_csv("intel_reminders.csv")
|
||||
seeded_rem = 0
|
||||
|
||||
if not dry_run:
|
||||
async with pool.acquire() as conn:
|
||||
for row in rem_rows:
|
||||
src_person_id = row.get("person_id", "")
|
||||
db_person_id = person_id_map.get(src_person_id)
|
||||
if not db_person_id:
|
||||
continue
|
||||
title = row.get("title", "").strip()
|
||||
if not title:
|
||||
continue
|
||||
|
||||
db_lead_id = lead_id_map.get(row.get("lead_id", ""))
|
||||
|
||||
await conn.execute(
|
||||
"""
|
||||
INSERT INTO intel_reminders (
|
||||
reminder_id, person_id, lead_id, reminder_type, title, notes,
|
||||
due_at, status, priority, created_by_type, created_at
|
||||
) VALUES (
|
||||
$1::uuid, $2::uuid, $3::uuid, $4, $5, $6,
|
||||
$7, $8, $9, 'system', NOW()
|
||||
)
|
||||
ON CONFLICT DO NOTHING
|
||||
""",
|
||||
str(uuid.uuid4()),
|
||||
db_person_id,
|
||||
db_lead_id,
|
||||
row.get("reminder_type", "follow_up"),
|
||||
title,
|
||||
row.get("notes") or None,
|
||||
safe_dt(row.get("due_at")),
|
||||
row.get("status", "pending"),
|
||||
row.get("priority", "normal"),
|
||||
)
|
||||
seeded_rem += 1
|
||||
|
||||
logger.info(" → %d reminders seeded", seeded_rem)
|
||||
|
||||
# ── Phase 8: crm_stage_history ───────────────────────────────────────────
|
||||
logger.info("[8/9] Seeding crm_stage_history…")
|
||||
hist_rows = read_csv("crm_stage_history.csv")
|
||||
seeded_hist = 0
|
||||
|
||||
if not dry_run:
|
||||
async with pool.acquire() as conn:
|
||||
for row in hist_rows:
|
||||
src_lead_id = row.get("lead_id", "")
|
||||
db_lead_id = lead_id_map.get(src_lead_id)
|
||||
if not db_lead_id:
|
||||
continue
|
||||
|
||||
await conn.execute(
|
||||
"""
|
||||
INSERT INTO crm_stage_history (
|
||||
history_id, lead_id, from_status, to_status, notes, happened_at
|
||||
) VALUES ($1::uuid, $2::uuid, $3, $4, $5, $6)
|
||||
ON CONFLICT DO NOTHING
|
||||
""",
|
||||
str(uuid.uuid4()),
|
||||
db_lead_id,
|
||||
row.get("from_status") or None,
|
||||
row.get("to_status", "new"),
|
||||
row.get("notes") or None,
|
||||
safe_dt(row.get("happened_at")) or datetime.now(timezone.utc),
|
||||
)
|
||||
seeded_hist += 1
|
||||
|
||||
logger.info(" → %d stage history records seeded", seeded_hist)
|
||||
|
||||
# ── Phase 9: Summary ─────────────────────────────────────────────────────
|
||||
logger.info("[9/9] Seeding complete.")
|
||||
logger.info(
|
||||
"Summary: people=%d, leads=%d, interactions=%d, qd_scores=%d, reminders=%d, stage_history=%d",
|
||||
len(person_id_map),
|
||||
len(lead_id_map),
|
||||
len(interaction_id_map),
|
||||
seeded_qd,
|
||||
seeded_rem,
|
||||
seeded_hist,
|
||||
)
|
||||
if dry_run:
|
||||
logger.info("DRY RUN — no data was written to the database.")
|
||||
|
||||
await close_pool()
|
||||
|
||||
|
||||
def main() -> None:
|
||||
parser = argparse.ArgumentParser(description="Seed canonical CRM tables from synthetic data CSVs")
|
||||
parser.add_argument("--dry-run", action="store_true", help="Parse and validate without writing to DB")
|
||||
parser.add_argument("--limit", type=int, default=None, help="Limit number of people to seed (for testing)")
|
||||
args = parser.parse_args()
|
||||
|
||||
asyncio.run(seed(dry_run=args.dry_run, limit=args.limit))
|
||||
|
||||
|
||||
if __name__ == "__main__":
|
||||
main()
|
||||
3
backend/services/client_graph/__init__.py
Normal file
3
backend/services/client_graph/__init__.py
Normal file
@@ -0,0 +1,3 @@
|
||||
"""
|
||||
backend/services/client_graph/__init__.py
|
||||
"""
|
||||
369
backend/services/client_graph/aggregation_service.py
Normal file
369
backend/services/client_graph/aggregation_service.py
Normal file
@@ -0,0 +1,369 @@
|
||||
"""
|
||||
backend/services/client_graph/aggregation_service.py
|
||||
Client 360 Aggregation Service
|
||||
|
||||
Produces Client360Snapshot read models by joining across
|
||||
crm_people, crm_leads, crm_opportunities, intel_interactions,
|
||||
intel_reminders, intel_qd_scores, crm_property_interests.
|
||||
|
||||
This is a derived read model — never the sole source of truth.
|
||||
As specified in Doc 07 (Client360Snapshot contract) and Doc 08 (Adapter Spec).
|
||||
"""
|
||||
from __future__ import annotations
|
||||
|
||||
import logging
|
||||
from typing import Any
|
||||
|
||||
logger = logging.getLogger("velocity.client_graph.aggregation")
|
||||
|
||||
|
||||
def _serialize_person(row: Any) -> dict[str, Any]:
|
||||
return {
|
||||
"person_id": str(row["person_id"]),
|
||||
"full_name": row["full_name"],
|
||||
"primary_email": row["primary_email"],
|
||||
"primary_phone": row["primary_phone"],
|
||||
"buyer_type": row["buyer_type"],
|
||||
"persona_labels": row["persona_labels"] or [],
|
||||
"source_confidence": float(row["source_confidence"] or 0.0),
|
||||
"created_at": row["created_at"].isoformat() if row["created_at"] else None,
|
||||
}
|
||||
|
||||
|
||||
def _serialize_lead(row: Any) -> dict[str, Any]:
|
||||
return {
|
||||
"lead_id": str(row["lead_id"]),
|
||||
"status": row["status"],
|
||||
"budget_band": row["budget_band"],
|
||||
"urgency": row["urgency"],
|
||||
"financing_posture": row["financing_posture"],
|
||||
"timeline_to_decision": row["timeline_to_decision"],
|
||||
"objections": row["objections"] or [],
|
||||
"motivations": row["motivations"] or [],
|
||||
"created_at": row["created_at"].isoformat() if row["created_at"] else None,
|
||||
}
|
||||
|
||||
|
||||
def _serialize_opportunity(row: Any) -> dict[str, Any]:
|
||||
return {
|
||||
"opportunity_id": str(row["opportunity_id"]),
|
||||
"stage": row["stage"],
|
||||
"value": float(row["value"]) if row["value"] else None,
|
||||
"probability": row["probability"],
|
||||
"expected_close_date": row["expected_close_date"].isoformat() if row["expected_close_date"] else None,
|
||||
"next_action": row["next_action"],
|
||||
"project_id": str(row["project_id"]) if row["project_id"] else None,
|
||||
"unit_id": str(row["unit_id"]) if row["unit_id"] else None,
|
||||
}
|
||||
|
||||
|
||||
def _serialize_interaction(row: Any) -> dict[str, Any]:
|
||||
return {
|
||||
"interaction_id": str(row["interaction_id"]),
|
||||
"channel": row["channel"],
|
||||
"interaction_type": row["interaction_type"],
|
||||
"happened_at": row["happened_at"].isoformat() if row["happened_at"] else None,
|
||||
"summary": row["summary"],
|
||||
}
|
||||
|
||||
|
||||
def _serialize_reminder(row: Any) -> dict[str, Any]:
|
||||
return {
|
||||
"reminder_id": str(row["reminder_id"]),
|
||||
"reminder_type": row["reminder_type"],
|
||||
"title": row["title"],
|
||||
"due_at": row["due_at"].isoformat() if row["due_at"] else None,
|
||||
"status": row["status"],
|
||||
"priority": row["priority"],
|
||||
}
|
||||
|
||||
|
||||
def _serialize_qd_score(row: Any) -> dict[str, Any]:
|
||||
return {
|
||||
"score_type": row["score_type"],
|
||||
"current_value": float(row["current_value"]),
|
||||
"computed_at": row["computed_at"].isoformat() if row["computed_at"] else None,
|
||||
"reasoning": row["reasoning"],
|
||||
}
|
||||
|
||||
|
||||
def _serialize_property_interest(row: Any) -> dict[str, Any]:
|
||||
return {
|
||||
"interest_id": str(row["interest_id"]),
|
||||
"project_name": row["project_name"],
|
||||
"unit_preference": row["unit_preference"],
|
||||
"configuration": row["configuration"],
|
||||
"budget_min": float(row["budget_min"]) if row["budget_min"] else None,
|
||||
"budget_max": float(row["budget_max"]) if row["budget_max"] else None,
|
||||
"priority": row["priority"],
|
||||
}
|
||||
|
||||
|
||||
async def get_client_360(conn: Any, person_id: str) -> dict[str, Any] | None:
|
||||
"""
|
||||
Aggregate a full Client360Snapshot for a given person_id.
|
||||
This is a read model — derived from canonical tables, never primary truth.
|
||||
"""
|
||||
# 1. Core identity
|
||||
person_row = await conn.fetchrow(
|
||||
"""
|
||||
SELECT person_id, full_name, primary_email, primary_phone,
|
||||
buyer_type, persona_labels, source_confidence, created_at
|
||||
FROM crm_people
|
||||
WHERE person_id = $1::uuid
|
||||
""",
|
||||
person_id,
|
||||
)
|
||||
if not person_row:
|
||||
return None
|
||||
|
||||
identity = _serialize_person(person_row)
|
||||
|
||||
# 2. Account links
|
||||
account_rows = await conn.fetch(
|
||||
"""
|
||||
SELECT ca.account_id, ca.account_name, ca.account_type, ca.industry
|
||||
FROM crm_accounts ca
|
||||
INNER JOIN crm_leads cl ON cl.account_id = ca.account_id
|
||||
WHERE cl.person_id = $1::uuid
|
||||
LIMIT 5
|
||||
""",
|
||||
person_id,
|
||||
)
|
||||
account_links = [
|
||||
{
|
||||
"account_id": str(r["account_id"]),
|
||||
"account_name": r["account_name"],
|
||||
"account_type": r["account_type"],
|
||||
"industry": r["industry"],
|
||||
}
|
||||
for r in account_rows
|
||||
]
|
||||
|
||||
# 3. Active lead
|
||||
lead_row = await conn.fetchrow(
|
||||
"""
|
||||
SELECT lead_id, status, budget_band, urgency, financing_posture,
|
||||
timeline_to_decision, objections, motivations, created_at
|
||||
FROM crm_leads
|
||||
WHERE person_id = $1::uuid
|
||||
ORDER BY created_at DESC
|
||||
LIMIT 1
|
||||
""",
|
||||
person_id,
|
||||
)
|
||||
lead = _serialize_lead(lead_row) if lead_row else None
|
||||
|
||||
# 4. Active opportunities (top 5)
|
||||
opp_rows = await conn.fetch(
|
||||
"""
|
||||
SELECT co.opportunity_id, co.stage, co.value, co.probability,
|
||||
co.expected_close_date, co.next_action, co.project_id, co.unit_id
|
||||
FROM crm_opportunities co
|
||||
INNER JOIN crm_leads cl ON cl.lead_id = co.lead_id
|
||||
WHERE cl.person_id = $1::uuid
|
||||
ORDER BY co.updated_at DESC
|
||||
LIMIT 5
|
||||
""",
|
||||
person_id,
|
||||
)
|
||||
active_opportunities = [_serialize_opportunity(r) for r in opp_rows]
|
||||
|
||||
# 5. Recent interactions (last 10)
|
||||
interaction_rows = await conn.fetch(
|
||||
"""
|
||||
SELECT interaction_id, channel, interaction_type, happened_at, summary
|
||||
FROM intel_interactions
|
||||
WHERE person_id = $1::uuid
|
||||
ORDER BY happened_at DESC
|
||||
LIMIT 10
|
||||
""",
|
||||
person_id,
|
||||
)
|
||||
recent_interactions = [_serialize_interaction(r) for r in interaction_rows]
|
||||
|
||||
# 6. Property interests
|
||||
interest_rows = await conn.fetch(
|
||||
"""
|
||||
SELECT interest_id, project_name, unit_preference, configuration,
|
||||
budget_min, budget_max, priority
|
||||
FROM crm_property_interests
|
||||
WHERE person_id = $1::uuid
|
||||
ORDER BY priority ASC, interest_id ASC
|
||||
LIMIT 10
|
||||
""",
|
||||
person_id,
|
||||
)
|
||||
property_interests = [_serialize_property_interest(r) for r in interest_rows]
|
||||
|
||||
# 7. Pending tasks / reminders
|
||||
task_rows = await conn.fetch(
|
||||
"""
|
||||
SELECT reminder_id, reminder_type, title, due_at, status, priority
|
||||
FROM intel_reminders
|
||||
WHERE person_id = $1::uuid
|
||||
AND status IN ('pending', 'snoozed')
|
||||
ORDER BY due_at ASC NULLS LAST
|
||||
LIMIT 10
|
||||
""",
|
||||
person_id,
|
||||
)
|
||||
tasks = [_serialize_reminder(r) for r in task_rows]
|
||||
|
||||
# 8. QD overview (all score types)
|
||||
qd_rows = await conn.fetch(
|
||||
"""
|
||||
SELECT score_type, current_value, computed_at, reasoning
|
||||
FROM intel_qd_scores
|
||||
WHERE person_id = $1::uuid
|
||||
""",
|
||||
person_id,
|
||||
)
|
||||
qd_overview = {r["score_type"]: _serialize_qd_score(r) for r in qd_rows}
|
||||
|
||||
# 9. Risk flags — heuristic derivation
|
||||
risk_flags: list[str] = []
|
||||
if lead and lead.get("urgency") in ("high", "critical") and not active_opportunities:
|
||||
risk_flags.append("high_urgency_without_active_opportunity")
|
||||
if not recent_interactions:
|
||||
risk_flags.append("no_recent_interactions")
|
||||
if qd_overview.get("intent_score", {}).get("current_value", 1.0) < 0.3:
|
||||
risk_flags.append("low_intent_score")
|
||||
if not property_interests:
|
||||
risk_flags.append("no_property_interests_recorded")
|
||||
|
||||
# 10. Recommended next actions — simple heuristic
|
||||
recommended_next_actions: list[str] = []
|
||||
if tasks:
|
||||
overdue = [t for t in tasks if t.get("status") == "pending"]
|
||||
if overdue:
|
||||
recommended_next_actions.append(f"Complete pending task: {overdue[0]['title']}")
|
||||
if lead and lead.get("urgency") in ("high", "critical"):
|
||||
recommended_next_actions.append("High-urgency client — prioritize callback within 24h")
|
||||
if not recent_interactions and lead:
|
||||
recommended_next_actions.append("No recent interactions — schedule follow-up")
|
||||
|
||||
return {
|
||||
"client_ref": person_id,
|
||||
"snapshot_type": "client_360",
|
||||
"identity": identity,
|
||||
"account_links": account_links,
|
||||
"current_lead": lead,
|
||||
"active_opportunities": active_opportunities,
|
||||
"recent_interactions": recent_interactions,
|
||||
"property_interests": property_interests,
|
||||
"tasks": tasks,
|
||||
"qd_overview": qd_overview,
|
||||
"risk_flags": risk_flags,
|
||||
"recommended_next_actions": recommended_next_actions,
|
||||
"note": "Derived read model. Not primary truth. Refresh from canonical tables.",
|
||||
}
|
||||
|
||||
|
||||
async def get_contact_list(
|
||||
conn: Any,
|
||||
search: str | None = None,
|
||||
buyer_type: str | None = None,
|
||||
status: str | None = None,
|
||||
limit: int = 50,
|
||||
offset: int = 0,
|
||||
) -> dict[str, Any]:
|
||||
"""
|
||||
Paginated contact list with lead status and QD summary.
|
||||
Implements the 'summary query' pattern from Doc 09.
|
||||
"""
|
||||
clauses: list[str] = ["1=1"]
|
||||
params: list[Any] = []
|
||||
|
||||
if search:
|
||||
params.append(f"%{search}%")
|
||||
clauses.append(
|
||||
f"(p.full_name ILIKE ${len(params)} OR p.primary_email ILIKE ${len(params)} OR p.primary_phone ILIKE ${len(params)})"
|
||||
)
|
||||
if buyer_type:
|
||||
params.append(buyer_type)
|
||||
clauses.append(f"p.buyer_type = ${len(params)}")
|
||||
if status:
|
||||
params.append(status)
|
||||
clauses.append(f"cl.status = ${len(params)}::crm_lead_status")
|
||||
|
||||
where = "WHERE " + " AND ".join(clauses)
|
||||
params_for_count = params.copy()
|
||||
|
||||
params.append(limit)
|
||||
params.append(offset)
|
||||
|
||||
query = f"""
|
||||
SELECT
|
||||
p.person_id,
|
||||
p.full_name,
|
||||
p.primary_email,
|
||||
p.primary_phone,
|
||||
p.buyer_type,
|
||||
p.created_at,
|
||||
cl.lead_id,
|
||||
cl.status AS lead_status,
|
||||
cl.budget_band,
|
||||
cl.urgency,
|
||||
COALESCE(qs.intent_value, 0.0) AS intent_score,
|
||||
COALESCE(qs.urgency_value, 0.0) AS urgency_score,
|
||||
(SELECT COUNT(*) FROM intel_interactions ii WHERE ii.person_id = p.person_id) AS interaction_count,
|
||||
(SELECT MAX(happened_at) FROM intel_interactions ii WHERE ii.person_id = p.person_id) AS last_interaction_at,
|
||||
(SELECT COUNT(*) FROM intel_reminders ir WHERE ir.person_id = p.person_id AND ir.status = 'pending') AS pending_tasks
|
||||
FROM crm_people p
|
||||
LEFT JOIN LATERAL (
|
||||
SELECT lead_id, status, budget_band, urgency
|
||||
FROM crm_leads
|
||||
WHERE person_id = p.person_id
|
||||
ORDER BY created_at DESC
|
||||
LIMIT 1
|
||||
) cl ON TRUE
|
||||
LEFT JOIN LATERAL (
|
||||
SELECT
|
||||
MAX(CASE WHEN score_type = 'intent_score' THEN current_value END) AS intent_value,
|
||||
MAX(CASE WHEN score_type = 'urgency_score' THEN current_value END) AS urgency_value
|
||||
FROM intel_qd_scores
|
||||
WHERE person_id = p.person_id
|
||||
) qs ON TRUE
|
||||
{where}
|
||||
ORDER BY last_interaction_at DESC NULLS LAST, p.created_at DESC
|
||||
LIMIT ${len(params) - 1} OFFSET ${len(params)}
|
||||
"""
|
||||
|
||||
count_query = f"""
|
||||
SELECT COUNT(*)
|
||||
FROM crm_people p
|
||||
LEFT JOIN crm_leads cl ON cl.person_id = p.person_id
|
||||
{where}
|
||||
"""
|
||||
|
||||
rows = await conn.fetch(query, *params)
|
||||
total_row = await conn.fetchrow(count_query, *params_for_count)
|
||||
total = int(total_row[0]) if total_row else 0
|
||||
|
||||
contacts = []
|
||||
for r in rows:
|
||||
contacts.append({
|
||||
"person_id": str(r["person_id"]),
|
||||
"full_name": r["full_name"],
|
||||
"primary_email": r["primary_email"],
|
||||
"primary_phone": r["primary_phone"],
|
||||
"buyer_type": r["buyer_type"],
|
||||
"lead_id": str(r["lead_id"]) if r["lead_id"] else None,
|
||||
"lead_status": r["lead_status"],
|
||||
"budget_band": r["budget_band"],
|
||||
"urgency": r["urgency"],
|
||||
"intent_score": float(r["intent_score"]),
|
||||
"urgency_score": float(r["urgency_score"]),
|
||||
"interaction_count": int(r["interaction_count"]),
|
||||
"last_interaction_at": r["last_interaction_at"].isoformat() if r["last_interaction_at"] else None,
|
||||
"pending_tasks": int(r["pending_tasks"]),
|
||||
"created_at": r["created_at"].isoformat() if r["created_at"] else None,
|
||||
})
|
||||
|
||||
return {
|
||||
"contacts": contacts,
|
||||
"total": total,
|
||||
"limit": limit,
|
||||
"offset": offset,
|
||||
}
|
||||
3
backend/services/imports/__init__.py
Normal file
3
backend/services/imports/__init__.py
Normal file
@@ -0,0 +1,3 @@
|
||||
"""
|
||||
backend/services/imports/__init__.py
|
||||
"""
|
||||
282
backend/services/imports/ingest_service.py
Normal file
282
backend/services/imports/ingest_service.py
Normal file
@@ -0,0 +1,282 @@
|
||||
"""
|
||||
backend/services/imports/ingest_service.py
|
||||
CRM Import Ingestion Service
|
||||
|
||||
Implements the RawImportBatch → ImportMappingManifest → NormalizedEntityProposal pipeline
|
||||
as specified in Doc 08 (Adapter Spec) and Doc 07 (Contracts and Schema Blueprint).
|
||||
|
||||
Flow:
|
||||
1. receive CSV upload, store raw batch record
|
||||
2. parse headers and infer column mapping
|
||||
3. validate row structure, detect unresolved columns
|
||||
4. create NormalizedEntityProposal records for review
|
||||
5. queue for human approval before canonical commit
|
||||
"""
|
||||
from __future__ import annotations
|
||||
|
||||
import csv
|
||||
import io
|
||||
import json
|
||||
import logging
|
||||
import uuid
|
||||
from datetime import datetime, timezone
|
||||
from typing import Any
|
||||
|
||||
logger = logging.getLogger("velocity.imports.ingest")
|
||||
|
||||
# ── Column mapping heuristics ─────────────────────────────────────────────────
|
||||
# Maps common source column names → canonical crm_people / crm_leads fields.
|
||||
|
||||
CANONICAL_COLUMN_MAP: dict[str, str] = {
|
||||
# Identity
|
||||
"name": "full_name",
|
||||
"full name": "full_name",
|
||||
"client name": "full_name",
|
||||
"contact name": "full_name",
|
||||
"first name": "full_name",
|
||||
"customer name": "full_name",
|
||||
# Email
|
||||
"email": "primary_email",
|
||||
"email address": "primary_email",
|
||||
"e-mail": "primary_email",
|
||||
# Phone
|
||||
"phone": "primary_phone",
|
||||
"mobile": "primary_phone",
|
||||
"contact number": "primary_phone",
|
||||
"mobile number": "primary_phone",
|
||||
"phone number": "primary_phone",
|
||||
# Budget
|
||||
"budget": "budget_band",
|
||||
"budget range": "budget_band",
|
||||
"investment budget": "budget_band",
|
||||
# Project interest
|
||||
"project": "project_name",
|
||||
"project name": "project_name",
|
||||
"interested in": "project_name",
|
||||
"property interest": "project_name",
|
||||
# Source
|
||||
"source": "source_system",
|
||||
"lead source": "source_system",
|
||||
"channel": "source_system",
|
||||
# Status / Stage
|
||||
"status": "status",
|
||||
"lead status": "status",
|
||||
"stage": "status",
|
||||
"funnel stage": "status",
|
||||
# Notes
|
||||
"notes": "notes",
|
||||
"remarks": "notes",
|
||||
"comment": "notes",
|
||||
"comments": "notes",
|
||||
# Buyer type
|
||||
"type": "buyer_type",
|
||||
"client type": "buyer_type",
|
||||
"category": "buyer_type",
|
||||
}
|
||||
|
||||
REQUIRED_CANONICAL_FIELDS = {"full_name"}
|
||||
HIGH_RISK_FIELDS = {"primary_email", "primary_phone"}
|
||||
|
||||
|
||||
def _normalize_header(h: str) -> str:
|
||||
return h.strip().lower().replace("_", " ")
|
||||
|
||||
|
||||
def infer_column_mapping(headers: list[str]) -> dict[str, Any]:
|
||||
"""
|
||||
Produce an ImportMappingManifest-compatible mapping dict.
|
||||
Returns: {
|
||||
mapped: {source_col → canonical_field},
|
||||
unmapped: [source_col, ...],
|
||||
confidence: 0.0-1.0
|
||||
}
|
||||
"""
|
||||
mapped: dict[str, str] = {}
|
||||
unmapped: list[str] = []
|
||||
|
||||
for h in headers:
|
||||
normalized = _normalize_header(h)
|
||||
canonical = CANONICAL_COLUMN_MAP.get(normalized)
|
||||
if canonical:
|
||||
mapped[h] = canonical
|
||||
else:
|
||||
unmapped.append(h)
|
||||
|
||||
mapped_count = len(mapped)
|
||||
total = len(headers)
|
||||
confidence = mapped_count / total if total > 0 else 0.0
|
||||
|
||||
return {
|
||||
"mapped": mapped,
|
||||
"unmapped": unmapped,
|
||||
"mapped_count": mapped_count,
|
||||
"unmapped_count": len(unmapped),
|
||||
"confidence": round(confidence, 3),
|
||||
}
|
||||
|
||||
|
||||
def parse_csv_content(content: str) -> dict[str, Any]:
|
||||
"""
|
||||
Parse CSV content, detect headers, and extract rows.
|
||||
Returns: {headers, rows, row_count, parse_errors}
|
||||
"""
|
||||
reader = csv.DictReader(io.StringIO(content))
|
||||
headers = reader.fieldnames or []
|
||||
rows: list[dict[str, Any]] = []
|
||||
parse_errors: list[str] = []
|
||||
|
||||
for i, row in enumerate(reader):
|
||||
try:
|
||||
rows.append(dict(row))
|
||||
except Exception as e:
|
||||
parse_errors.append(f"Row {i + 2}: {str(e)}")
|
||||
|
||||
return {
|
||||
"headers": list(headers),
|
||||
"rows": rows,
|
||||
"row_count": len(rows),
|
||||
"parse_errors": parse_errors,
|
||||
}
|
||||
|
||||
|
||||
def build_normalized_proposals(
|
||||
rows: list[dict[str, Any]],
|
||||
mapping: dict[str, str],
|
||||
batch_id: str,
|
||||
source_system: str = "csv_upload",
|
||||
) -> list[dict[str, Any]]:
|
||||
"""
|
||||
Convert raw CSV rows to NormalizedEntityProposal payloads.
|
||||
One proposal per row — each must be approved before canonical commit.
|
||||
"""
|
||||
proposals: list[dict[str, Any]] = []
|
||||
now = datetime.now(timezone.utc).isoformat()
|
||||
|
||||
for i, row in enumerate(rows):
|
||||
canonical: dict[str, Any] = {}
|
||||
unresolved: list[str] = []
|
||||
confidence = 1.0
|
||||
|
||||
for src_col, canonical_field in mapping.items():
|
||||
val = row.get(src_col, "").strip()
|
||||
if val:
|
||||
canonical[canonical_field] = val
|
||||
else:
|
||||
unresolved.append(src_col)
|
||||
|
||||
# Validate required fields
|
||||
review_required = False
|
||||
missing_required = [f for f in REQUIRED_CANONICAL_FIELDS if not canonical.get(f)]
|
||||
if missing_required:
|
||||
review_required = True
|
||||
confidence = max(0.0, confidence - 0.4)
|
||||
|
||||
# Flag high-risk fields (email/phone) if empty
|
||||
missing_high_risk = [f for f in HIGH_RISK_FIELDS if not canonical.get(f)]
|
||||
if missing_high_risk:
|
||||
confidence = max(0.0, confidence - 0.1 * len(missing_high_risk))
|
||||
|
||||
proposal: dict[str, Any] = {
|
||||
"proposal_id": str(uuid.uuid4()),
|
||||
"batch_id": batch_id,
|
||||
"row_number": i + 2,
|
||||
"entity_type": "crm_person_with_lead",
|
||||
"canonical_payload": canonical,
|
||||
"raw_row": row,
|
||||
"unresolved_fields": unresolved,
|
||||
"missing_required": missing_required,
|
||||
"confidence": round(confidence, 3),
|
||||
"review_required": review_required,
|
||||
"status": "proposed",
|
||||
"created_at": now,
|
||||
"source_system": source_system,
|
||||
}
|
||||
proposals.append(proposal)
|
||||
|
||||
return proposals
|
||||
|
||||
|
||||
def create_import_batch_record(
|
||||
filename: str,
|
||||
row_count: int,
|
||||
mapping_manifest: dict[str, Any],
|
||||
source_system: str = "csv_upload",
|
||||
uploaded_by_id: str | None = None,
|
||||
) -> dict[str, Any]:
|
||||
"""
|
||||
Build the workflow_import_batches record payload.
|
||||
"""
|
||||
now = datetime.now(timezone.utc).isoformat()
|
||||
return {
|
||||
"batch_id": str(uuid.uuid4()),
|
||||
"source_system": source_system,
|
||||
"uploaded_filename": filename,
|
||||
"mime_type": "text/csv",
|
||||
"row_count": row_count,
|
||||
"mapped_count": mapping_manifest.get("mapped_count", 0),
|
||||
"unresolved_count": mapping_manifest.get("unmapped_count", 0),
|
||||
"uploaded_by": uploaded_by_id,
|
||||
"lifecycle": "parsed",
|
||||
"mapping_manifest": mapping_manifest,
|
||||
"created_at": now,
|
||||
"updated_at": now,
|
||||
}
|
||||
|
||||
|
||||
async def persist_import_batch(conn: Any, batch: dict[str, Any]) -> str:
|
||||
"""
|
||||
Insert a workflow_import_batches row and return batch_id.
|
||||
"""
|
||||
await conn.execute(
|
||||
"""
|
||||
INSERT INTO workflow_import_batches (
|
||||
batch_id, source_system, uploaded_filename, mime_type, row_count,
|
||||
mapped_count, unresolved_count, uploaded_by, lifecycle, mapping_manifest,
|
||||
created_at, updated_at
|
||||
) VALUES (
|
||||
$1::uuid, $2, $3, $4, $5, $6, $7,
|
||||
$8::uuid, $9::import_lifecycle, $10::jsonb, NOW(), NOW()
|
||||
)
|
||||
""",
|
||||
batch["batch_id"],
|
||||
batch["source_system"],
|
||||
batch.get("uploaded_filename", "unknown.csv"),
|
||||
batch.get("mime_type", "text/csv"),
|
||||
batch.get("row_count", 0),
|
||||
batch.get("mapped_count", 0),
|
||||
batch.get("unresolved_count", 0),
|
||||
batch.get("uploaded_by"),
|
||||
batch.get("lifecycle", "parsed"),
|
||||
json.dumps(batch.get("mapping_manifest", {})),
|
||||
)
|
||||
return batch["batch_id"]
|
||||
|
||||
|
||||
async def persist_proposals_as_workflow_actions(
|
||||
conn: Any, proposals: list[dict[str, Any]]
|
||||
) -> int:
|
||||
"""
|
||||
Insert proposals into workflow_actions table for human review.
|
||||
Returns inserted count.
|
||||
"""
|
||||
inserted = 0
|
||||
for p in proposals:
|
||||
await conn.execute(
|
||||
"""
|
||||
INSERT INTO workflow_actions (
|
||||
action_id, action_type, target_domain, proposal_payload,
|
||||
reasoning_summary, confidence, status, approval_required,
|
||||
created_by_agent, created_at, updated_at
|
||||
) VALUES (
|
||||
$1::uuid, 'import_proposal', 'crm', $2::jsonb,
|
||||
$3, $4, 'pending'::wf_status, $5, 'ingest_service', NOW(), NOW()
|
||||
)
|
||||
""",
|
||||
p["proposal_id"],
|
||||
json.dumps(p),
|
||||
f"Import row {p['row_number']}: {p['canonical_payload'].get('full_name', 'unknown')}",
|
||||
p["confidence"],
|
||||
p["review_required"],
|
||||
)
|
||||
inserted += 1
|
||||
return inserted
|
||||
322
db assets/synthetic_crm_v1/README.md
Normal file
322
db assets/synthetic_crm_v1/README.md
Normal file
@@ -0,0 +1,322 @@
|
||||
# Project Velocity - Synthetic Client Graph Dataset
|
||||
|
||||
**Generated:** 2026-04-18
|
||||
**Dataset Version:** 1.0.0
|
||||
**Target:** 250 full synthetic client graphs
|
||||
**Owner:** Sagnik
|
||||
**Alignment:** Founder CRM and Platform Delivery Pack (Doc 16)
|
||||
|
||||
---
|
||||
|
||||
## Overview
|
||||
|
||||
This dataset contains 250 fully synthetic client graphs aligned to the Project Velocity canonical domain model. It is designed for:
|
||||
|
||||
- CRM module validation and testing
|
||||
- Import pipeline replay testing
|
||||
- Client 360 aggregation validation
|
||||
- Oracle intelligence and writeback testing
|
||||
- QD score and timeseries validation
|
||||
- Communication capture and transcript processing
|
||||
- Workflow and approval governance testing
|
||||
|
||||
The data simulates premium real-estate sales behavior in the Kolkata market across 14 projects.
|
||||
|
||||
---
|
||||
|
||||
## Geography and Inventory
|
||||
|
||||
**Market:** Kolkata and surrounding micro-markets
|
||||
**Projects:** 14 premium residential projects
|
||||
|
||||
| Project ID | Project Name | Developer | Micro-Market |
|
||||
|------------|--------------|-----------|--------------|
|
||||
| PRJ-001 | Eden Devprayag | Eden Group | Rajarhat |
|
||||
| PRJ-002 | Sugam Prakriti | Sugam Homes | Barasat |
|
||||
| PRJ-003 | Atri Aqua | Atri Developers | New Town |
|
||||
| PRJ-004 | Atri Surya Toron | Atri Developers | Rajarhat |
|
||||
| PRJ-005 | Siddha Suburbia Bungalow | Siddha Group | Madanpur |
|
||||
| PRJ-006 | Merlin Avana | Merlin Group | Tangra |
|
||||
| PRJ-007 | DTC Good Earth | DTC Projects | New Town |
|
||||
| PRJ-008 | Siddha Serena | Siddha Group | New Town |
|
||||
| PRJ-009 | Siddha Sky Waterfront | Siddha Group | Beliaghata |
|
||||
| PRJ-010 | Godrej Blue | Godrej Properties | New Town |
|
||||
| PRJ-011 | DTC Sojon | DTC Projects | Rajarhat |
|
||||
| PRJ-012 | Shriram Grand City | Shriram Properties | Howrah |
|
||||
| PRJ-013 | Godrej Elevate | Godrej Properties | Dum Dum |
|
||||
| PRJ-014 | Ambuja Utpaala | Ambuja Neotia | Tollygunge |
|
||||
|
||||
---
|
||||
|
||||
## Dataset Composition
|
||||
|
||||
### Primary Entities
|
||||
|
||||
| Entity | Count | Description |
|
||||
|--------|-------|-------------|
|
||||
| Primary Clients (People) | 250 | Main decision-makers and buyers |
|
||||
| Co-buyers/Family | 91 | Secondary contacts linked to households |
|
||||
| Accounts (Organizations) | 153 | Employers, businesses, referral partners |
|
||||
| Households | 118 | Family decision units |
|
||||
| Relationships | 91 | Spouse, parent, sibling, business partner links |
|
||||
| Leads | 250 | Funnel-stage qualification records |
|
||||
| Opportunities | 400 | Deal pipeline objects (1-3 per client) |
|
||||
| Property Interests | 400 | Project/unit preference records |
|
||||
| Stage History | 1,373 | Lead stage transition audit trail |
|
||||
|
||||
### Interaction Graph
|
||||
|
||||
| Artifact | Count | Description |
|
||||
|----------|-------|-------------|
|
||||
| Interactions | 1,897 | Umbrella communication events |
|
||||
| WhatsApp Messages | 3,367 | Text messages with realistic dialogue |
|
||||
| WhatsApp Threads | 606 | Conversation thread summaries |
|
||||
| Phone Calls | 478 | Call records with duration and direction |
|
||||
| Transcripts | 231 | Speaker-segmented call transcripts |
|
||||
| Emails | 149 | Business correspondence with subjects and bodies |
|
||||
| Site Visits | 305 | Physical site visit records with notes |
|
||||
| Reminders/Tasks | 759 | Follow-up items and action reminders |
|
||||
|
||||
### Intelligence & Enrichment
|
||||
|
||||
| Artifact | Count | Description |
|
||||
|----------|-------|-------------|
|
||||
| QD Scores | 250 | Latest qualification/disposition scores |
|
||||
| QD Timeseries | 1,953 | Historical score propagation (4-12 pts/client) |
|
||||
| Vehicle Events | 80 | Number-plate detection events |
|
||||
| Perception Events | 60 | Behavioral/dwell-time intelligence |
|
||||
| CCTV Links | 120 | Video clip references linked to visits |
|
||||
|
||||
### Workflow & Governance
|
||||
|
||||
| Artifact | Count | Description |
|
||||
|----------|-------|-------------|
|
||||
| Workflow Actions | 100 | Import reviews, merge proposals, writebacks |
|
||||
| Approvals | 49 | Human review decisions |
|
||||
| Writebacks | 28 | Approved canonical mutations |
|
||||
|
||||
### Inventory
|
||||
|
||||
| Artifact | Count | Description |
|
||||
|----------|-------|-------------|
|
||||
| Projects | 14 | Master project records |
|
||||
| Units | 209 | Individual unit inventory (8-20 per project) |
|
||||
|
||||
---
|
||||
|
||||
## File Structure
|
||||
|
||||
```
|
||||
synthetic_client_graphs/
|
||||
├── csv/
|
||||
│ ├── inventory_projects.csv
|
||||
│ ├── inventory_units.csv
|
||||
│ ├── crm_people.csv
|
||||
│ ├── crm_accounts.csv
|
||||
│ ├── crm_households.csv
|
||||
│ ├── crm_relationships.csv
|
||||
│ ├── crm_leads.csv
|
||||
│ ├── crm_opportunities.csv
|
||||
│ ├── crm_property_interests.csv
|
||||
│ ├── crm_stage_history.csv
|
||||
│ ├── intel_interactions.csv
|
||||
│ ├── intel_messages.csv
|
||||
│ ├── intel_calls.csv
|
||||
│ ├── intel_transcripts.csv
|
||||
│ ├── intel_emails.csv
|
||||
│ ├── intel_whatsapp_threads.csv
|
||||
│ ├── intel_visits.csv
|
||||
│ ├── intel_reminders.csv
|
||||
│ ├── intel_qd_scores.csv
|
||||
│ ├── intel_qd_timeseries.csv
|
||||
│ ├── intel_vehicle_events.csv
|
||||
│ ├── intel_perception_events.csv
|
||||
│ ├── intel_cctv_links.csv
|
||||
│ ├── workflow_actions.csv
|
||||
│ ├── workflow_approvals.csv
|
||||
│ └── workflow_writebacks.csv
|
||||
├── json/
|
||||
│ ├── client_360_snapshots_batch_1.json (Clients 1-50)
|
||||
│ ├── client_360_snapshots_batch_2.json (Clients 51-100)
|
||||
│ ├── client_360_snapshots_batch_3.json (Clients 101-150)
|
||||
│ ├── client_360_snapshots_batch_4.json (Clients 151-200)
|
||||
│ ├── client_360_snapshots_batch_5.json (Clients 201-250)
|
||||
│ ├── import_mapping_manifest_example.json
|
||||
│ ├── relationship_graph_map.json
|
||||
│ └── transcript_sidecars.json
|
||||
└── README.md
|
||||
```
|
||||
|
||||
---
|
||||
|
||||
## Buyer Persona Distribution
|
||||
|
||||
The 250 primary clients are distributed across realistic premium real-estate buyer personas:
|
||||
|
||||
| Persona | Percentage | Count | Characteristics |
|
||||
|---------|-----------|-------|-----------------|
|
||||
| High-Intent Buyer | 20% | ~50 | Quick decision cycle, clear requirements, responsive |
|
||||
| Slow-Burn Investor | 18% | ~45 | Long horizon, price-sensitive, comparison-heavy |
|
||||
| NRI Buyer | 12% | ~30 | Remote decision-making, video calls, family proxies |
|
||||
| Family Decision Unit | 20% | ~50 | Multiple stakeholders, consensus-driven, Vastu-conscious |
|
||||
| Price-Sensitive Aspirational | 15% | ~37 | Stretch budget, EMI-focused, festival-offer hunters |
|
||||
| Broker/Referral Chain | 8% | ~20 | Multiple client representations, commission-focused |
|
||||
| Repeat Visitor | 7% | ~18 | High engagement, multiple visits, decision paralysis |
|
||||
|
||||
---
|
||||
|
||||
## Canonical Domain Alignment
|
||||
|
||||
This dataset maps to the planned Velocity canonical domains:
|
||||
|
||||
### `crm_*` Domain
|
||||
- `crm_people`: Contact identity and demographics
|
||||
- `crm_accounts`: Organization and employer records
|
||||
- `crm_households`: Family and co-buyer structures
|
||||
- `crm_relationships`: Person-to-person linkages
|
||||
- `crm_leads`: Funnel stage and qualification
|
||||
- `crm_opportunities`: Deal pipeline and valuation
|
||||
- `crm_property_interests`: Project/unit preferences
|
||||
- `crm_stage_history`: Audit trail of stage transitions
|
||||
|
||||
### `intel_*` Domain
|
||||
- `intel_interactions`: Unified communication events
|
||||
- `intel_messages`: Text-level message records
|
||||
- `intel_calls`: Call metadata and duration
|
||||
- `intel_transcripts`: Speaker-segmented conversation text
|
||||
- `intel_emails`: Email correspondence
|
||||
- `intel_whatsapp_threads`: Thread-level summaries
|
||||
- `intel_visits`: Site visit records and notes
|
||||
- `intel_reminders`: Task and follow-up tracking
|
||||
- `intel_qd_scores`: Qualification/disposition scores
|
||||
- `intel_qd_timeseries`: Temporal score evolution
|
||||
- `intel_vehicle_events`: Parking/entry detection
|
||||
- `intel_perception_events`: Behavioral intelligence
|
||||
- `intel_cctv_links`: Video evidence references
|
||||
|
||||
### `inventory_*` Domain
|
||||
- `inventory_projects`: Master project catalog
|
||||
- `inventory_units`: Unit-level availability and pricing
|
||||
|
||||
### `workflow_*` Domain
|
||||
- `workflow_actions`: Proposed AI/human actions
|
||||
- `workflow_approvals`: Review decisions
|
||||
- `workflow_writebacks`: Committed mutations
|
||||
|
||||
---
|
||||
|
||||
## Quality Assurance
|
||||
|
||||
### Referential Integrity
|
||||
All foreign key relationships have been validated:
|
||||
- ✅ All `lead.person_id` values exist in `crm_people`
|
||||
- ✅ All `opportunity.lead_id` values exist in `crm_leads`
|
||||
- ✅ All `interaction.person_id` values exist in `crm_people`
|
||||
- ✅ All `visit.person_id` values exist in `crm_people`
|
||||
- ✅ All `qd_score.person_id` values exist in `crm_people`
|
||||
- ✅ No orphaned stage history records
|
||||
- ✅ All `opportunity.project_id` values exist in `inventory_projects`
|
||||
- ✅ All `property_interest.project_id` values exist in `inventory_projects`
|
||||
|
||||
### Temporal Consistency
|
||||
- ✅ Lead creation dates precede interaction dates
|
||||
- ✅ Stage history transitions are monotonic in time
|
||||
- ✅ QD timeseries points are chronologically ordered
|
||||
- ✅ Visit dates align with lead stage progression
|
||||
- ✅ Reminder due dates follow interaction dates
|
||||
|
||||
### Realism Rules Applied
|
||||
- **Names:** Realistic Indian names (Bengali, Hindi, mixed demographics)
|
||||
- **Organizations:** Major Indian IT, banking, manufacturing, and consulting firms
|
||||
- **Communication:** Premium property sales tone, not generic retail
|
||||
- **Stage Transitions:** Narratively coherent (enquiry → visit → negotiation → booking)
|
||||
- **Sales Cadence:** Realistic follow-up intervals (3-15 days between touches)
|
||||
- **Dialogue:** Context-aware transcripts referencing specific projects, prices, and objections
|
||||
- **Budgets:** Aligned to Kolkata premium market (1.5 Cr - 25 Cr range)
|
||||
|
||||
---
|
||||
|
||||
## Usage Instructions
|
||||
|
||||
### CSV-First Import Testing
|
||||
1. Start with `crm_people.csv` as the identity anchor
|
||||
2. Join `crm_leads.csv` on `person_id`
|
||||
3. Join `crm_opportunities.csv` on `lead_id`
|
||||
4. Join `inventory_projects.csv` and `inventory_units.csv` on project/unit IDs
|
||||
5. Map `intel_interactions.csv` on `person_id` for communication history
|
||||
6. Aggregate `intel_qd_scores.csv` and `intel_qd_timeseries.csv` for intelligence
|
||||
|
||||
### Client 360 Validation
|
||||
Load `json/client_360_snapshots_batch_*.json` to validate:
|
||||
- Aggregation accuracy
|
||||
- Cross-domain joining
|
||||
- Derived field computation
|
||||
- Missing data handling
|
||||
|
||||
### Oracle Writeback Testing
|
||||
Use `workflow_actions.csv` and `workflow_writebacks.csv` to test:
|
||||
- Proposal generation
|
||||
- Approval flow simulation
|
||||
- Canonical mutation application
|
||||
- Audit trail completeness
|
||||
|
||||
### Transcript Processing
|
||||
Load `json/transcript_sidecars.json` for:
|
||||
- Speaker diarization validation
|
||||
- Conversation context extraction
|
||||
- Sentiment and intent inference testing
|
||||
|
||||
---
|
||||
|
||||
## Evidence Placeholders
|
||||
|
||||
The dataset includes metadata placeholders for:
|
||||
- CCTV clip references (`clips/VIS_{visit_id}_{random}.mp4`)
|
||||
- Call recording references (`rec/CAL_{call_id}.mp3`)
|
||||
- Transcript references (`trx/CAL_{call_id}.json`)
|
||||
- Camera IDs and gate references
|
||||
|
||||
These are structured metadata only. Actual media payloads are not included.
|
||||
|
||||
---
|
||||
|
||||
## Synthetic Data Limitations
|
||||
|
||||
1. **Names and addresses** are fictional but culturally realistic
|
||||
2. **Phone numbers** follow Indian format but are not real
|
||||
3. **Email addresses** are synthetic and non-deliverable
|
||||
4. **Prices** are representative of Kolkata premium market but approximate
|
||||
5. **Communication text** is template-generated but contextually coherent
|
||||
6. **Transcripts** are structured dialogue, not actual ASR output
|
||||
|
||||
---
|
||||
|
||||
## Acceptance Criteria Verification
|
||||
|
||||
| Criterion | Status |
|
||||
|-----------|--------|
|
||||
| 250 complete synthetic client graphs | ✅ |
|
||||
| All 14 project names represented | ✅ |
|
||||
| Spans CRM, interaction, opportunity, reminder, transcript, enrichment layers | ✅ |
|
||||
| Files structured for CSV-first import testing | ✅ |
|
||||
| Human reviewer can inspect a graph and believe it is coherent | ✅ (sample review recommended) |
|
||||
| Referential integrity across all IDs | ✅ |
|
||||
| No impossible date ordering | ✅ |
|
||||
| No orphaned opportunities or interactions | ✅ |
|
||||
| Every QD artifact points back to plausible evidence | ✅ |
|
||||
|
||||
---
|
||||
|
||||
## Next Steps
|
||||
|
||||
1. **Import Replay:** Load CSVs into the Velocity import pipeline and validate mapping proposals
|
||||
2. **Client 360 Render:** Use JSON snapshots to test frontend dossier rendering
|
||||
3. **QD Validation:** Verify score computation logic against interaction density
|
||||
4. **Oracle Testing:** Use workflow items to test writeback proposal generation
|
||||
5. **Synthetic Expansion:** Add more projects, cities, or persona types as needed
|
||||
|
||||
---
|
||||
|
||||
**Generated for:** Project Velocity Founder CRM and Platform Planning
|
||||
**Canonical Source:** Doc 16 - Coding Agent Swarm Brief: Synthetic Client Graph Generation
|
||||
**Reviewers:** Sayan, Sourik
|
||||
154
db assets/synthetic_crm_v1/csv/crm_accounts.csv
Normal file
154
db assets/synthetic_crm_v1/csv/crm_accounts.csv
Normal file
@@ -0,0 +1,154 @@
|
||||
account_id,account_name,parent_account_id,account_type,industry,location_ref,metadata_json
|
||||
ACC-0003,KPMG,,individual_business,Banking,Bangalore,"{""employee_count"": 500, ""tier"": ""enterprise""}"
|
||||
ACC-0004,Deloitte India,,developer,Education,Kolkata,"{""employee_count"": 1000, ""tier"": ""enterprise""}"
|
||||
ACC-0006,Deloitte India,,developer,Education,Mumbai,"{""employee_count"": 50, ""tier"": ""sme""}"
|
||||
ACC-0008,HCL Technologies,,referral_partner,IT,Hyderabad,"{""employee_count"": 1000, ""tier"": ""enterprise""}"
|
||||
ACC-0010,Deloitte India,,individual_business,Consulting,Bangalore,"{""employee_count"": 5000, ""tier"": ""sme""}"
|
||||
ACC-0011,JSW Steel,,developer,Healthcare,Hyderabad,"{""employee_count"": 200, ""tier"": ""mid_market""}"
|
||||
ACC-0012,Wipro,,referral_partner,Real Estate,Singapore,"{""employee_count"": 5000, ""tier"": ""sme""}"
|
||||
ACC-0013,Unacademy,,referral_partner,IT,Mumbai,"{""employee_count"": 50, ""tier"": ""sme""}"
|
||||
ACC-0016,HCL Technologies,,developer,Consulting,Bangalore,"{""employee_count"": 50, ""tier"": ""sme""}"
|
||||
ACC-0017,Deloitte India,,corporate,IT,Delhi,"{""employee_count"": 1000, ""tier"": ""enterprise""}"
|
||||
ACC-0018,Accenture India,,individual_business,Healthcare,Hyderabad,"{""employee_count"": 5000, ""tier"": ""enterprise""}"
|
||||
ACC-0019,IBM India,,developer,Healthcare,Dubai,"{""employee_count"": 50, ""tier"": ""mid_market""}"
|
||||
ACC-0020,Emami,,referral_partner,IT,Bangalore,"{""employee_count"": 5000, ""tier"": ""enterprise""}"
|
||||
ACC-0021,Accenture India,,individual_business,Consulting,Mumbai,"{""employee_count"": 5000, ""tier"": ""mid_market""}"
|
||||
ACC-0022,Accenture India,,corporate,Banking,Singapore,"{""employee_count"": 500, ""tier"": ""enterprise""}"
|
||||
ACC-0023,Tech Mahindra,,developer,Consulting,Hyderabad,"{""employee_count"": 1000, ""tier"": ""enterprise""}"
|
||||
ACC-0024,ICICI Bank,,developer,Education,Dubai,"{""employee_count"": 1000, ""tier"": ""sme""}"
|
||||
ACC-0025,Ola,,referral_partner,Healthcare,Bangalore,"{""employee_count"": 50, ""tier"": ""mid_market""}"
|
||||
ACC-0026,Swiggy,,developer,Consulting,Dubai,"{""employee_count"": 500, ""tier"": ""enterprise""}"
|
||||
ACC-0027,SRF Limited,,individual_business,IT,Singapore,"{""employee_count"": 1000, ""tier"": ""enterprise""}"
|
||||
ACC-0032,BYJU'S,,developer,Consulting,Bangalore,"{""employee_count"": 1000, ""tier"": ""mid_market""}"
|
||||
ACC-0033,Cognizant,,corporate,Real Estate,Singapore,"{""employee_count"": 50, ""tier"": ""enterprise""}"
|
||||
ACC-0034,Deloitte India,,corporate,Real Estate,Dubai,"{""employee_count"": 50, ""tier"": ""mid_market""}"
|
||||
ACC-0035,Unacademy,,individual_business,Healthcare,Bangalore,"{""employee_count"": 500, ""tier"": ""sme""}"
|
||||
ACC-0038,IBM India,,corporate,IT,Dubai,"{""employee_count"": 500, ""tier"": ""enterprise""}"
|
||||
ACC-0041,Axis Bank,,individual_business,Healthcare,Singapore,"{""employee_count"": 500, ""tier"": ""enterprise""}"
|
||||
ACC-0042,Capgemini,,corporate,IT,Singapore,"{""employee_count"": 5000, ""tier"": ""sme""}"
|
||||
ACC-0044,Exide Industries,,corporate,IT,Bangalore,"{""employee_count"": 200, ""tier"": ""sme""}"
|
||||
ACC-0045,HCL Technologies,,developer,Education,Delhi,"{""employee_count"": 1000, ""tier"": ""sme""}"
|
||||
ACC-0050,Britannia Industries,,referral_partner,Manufacturing,Hyderabad,"{""employee_count"": 5000, ""tier"": ""enterprise""}"
|
||||
ACC-0052,Bengal Chemicals,,developer,Healthcare,Dubai,"{""employee_count"": 5000, ""tier"": ""mid_market""}"
|
||||
ACC-0053,Exide Industries,,corporate,Banking,Kolkata,"{""employee_count"": 500, ""tier"": ""mid_market""}"
|
||||
ACC-0054,Flipkart,,corporate,Education,Dubai,"{""employee_count"": 200, ""tier"": ""enterprise""}"
|
||||
ACC-0055,Infosys Ltd,,developer,Real Estate,Delhi,"{""employee_count"": 50, ""tier"": ""sme""}"
|
||||
ACC-0056,Capgemini,,corporate,Banking,Dubai,"{""employee_count"": 1000, ""tier"": ""enterprise""}"
|
||||
ACC-0057,Bengal Chemicals,,developer,IT,Delhi,"{""employee_count"": 200, ""tier"": ""sme""}"
|
||||
ACC-0059,Swiggy,,referral_partner,IT,Bangalore,"{""employee_count"": 5000, ""tier"": ""mid_market""}"
|
||||
ACC-0060,Larsen & Toubro,,developer,Healthcare,Dubai,"{""employee_count"": 200, ""tier"": ""sme""}"
|
||||
ACC-0063,Swiggy,,developer,Manufacturing,Bangalore,"{""employee_count"": 50, ""tier"": ""enterprise""}"
|
||||
ACC-0064,ITC Limited,,developer,Consulting,Bangalore,"{""employee_count"": 50, ""tier"": ""sme""}"
|
||||
ACC-0066,IBM India,,corporate,IT,Dubai,"{""employee_count"": 500, ""tier"": ""mid_market""}"
|
||||
ACC-0067,Accenture India,,individual_business,IT,Mumbai,"{""employee_count"": 50, ""tier"": ""enterprise""}"
|
||||
ACC-0068,Reliance Industries,,referral_partner,Healthcare,Mumbai,"{""employee_count"": 500, ""tier"": ""enterprise""}"
|
||||
ACC-0069,ITC Limited,,developer,Education,Delhi,"{""employee_count"": 500, ""tier"": ""mid_market""}"
|
||||
ACC-0073,Swiggy,,developer,Manufacturing,Bangalore,"{""employee_count"": 5000, ""tier"": ""enterprise""}"
|
||||
ACC-0075,Britannia Industries,,corporate,Banking,Hyderabad,"{""employee_count"": 1000, ""tier"": ""enterprise""}"
|
||||
ACC-0076,Wipro,,developer,Real Estate,Delhi,"{""employee_count"": 500, ""tier"": ""sme""}"
|
||||
ACC-0077,EY India,,corporate,Banking,Dubai,"{""employee_count"": 50, ""tier"": ""mid_market""}"
|
||||
ACC-0079,Larsen & Toubro,,referral_partner,Healthcare,Singapore,"{""employee_count"": 1000, ""tier"": ""enterprise""}"
|
||||
ACC-0083,Microsoft India,,referral_partner,Consulting,Hyderabad,"{""employee_count"": 5000, ""tier"": ""sme""}"
|
||||
ACC-0084,Tech Mahindra,,developer,Manufacturing,Singapore,"{""employee_count"": 5000, ""tier"": ""sme""}"
|
||||
ACC-0085,Ola,,corporate,IT,Bangalore,"{""employee_count"": 500, ""tier"": ""mid_market""}"
|
||||
ACC-0088,HCL Technologies,,referral_partner,Manufacturing,Delhi,"{""employee_count"": 5000, ""tier"": ""sme""}"
|
||||
ACC-0089,Deloitte India,,corporate,Banking,Bangalore,"{""employee_count"": 1000, ""tier"": ""sme""}"
|
||||
ACC-0094,Cognizant,,individual_business,Manufacturing,Hyderabad,"{""employee_count"": 1000, ""tier"": ""mid_market""}"
|
||||
ACC-0095,SRF Limited,,individual_business,Education,Hyderabad,"{""employee_count"": 1000, ""tier"": ""mid_market""}"
|
||||
ACC-0097,EY India,,developer,Education,Singapore,"{""employee_count"": 500, ""tier"": ""sme""}"
|
||||
ACC-0098,PwC India,,developer,Manufacturing,Hyderabad,"{""employee_count"": 50, ""tier"": ""mid_market""}"
|
||||
ACC-0099,BYJU'S,,corporate,Education,Bangalore,"{""employee_count"": 500, ""tier"": ""sme""}"
|
||||
ACC-0100,KPMG,,developer,Healthcare,Kolkata,"{""employee_count"": 50, ""tier"": ""mid_market""}"
|
||||
ACC-0101,Tech Mahindra,,corporate,Consulting,Bangalore,"{""employee_count"": 1000, ""tier"": ""sme""}"
|
||||
ACC-0102,Cognizant,,corporate,Manufacturing,Mumbai,"{""employee_count"": 500, ""tier"": ""sme""}"
|
||||
ACC-0103,ITC Limited,,referral_partner,Manufacturing,Hyderabad,"{""employee_count"": 200, ""tier"": ""enterprise""}"
|
||||
ACC-0105,EY India,,developer,Banking,Bangalore,"{""employee_count"": 50, ""tier"": ""mid_market""}"
|
||||
ACC-0106,Microsoft India,,developer,Consulting,Singapore,"{""employee_count"": 5000, ""tier"": ""enterprise""}"
|
||||
ACC-0108,Amazon India,,individual_business,Healthcare,Singapore,"{""employee_count"": 5000, ""tier"": ""mid_market""}"
|
||||
ACC-0109,Accenture India,,individual_business,Banking,Bangalore,"{""employee_count"": 500, ""tier"": ""enterprise""}"
|
||||
ACC-0110,ITC Limited,,developer,Education,Kolkata,"{""employee_count"": 5000, ""tier"": ""sme""}"
|
||||
ACC-0113,Amazon India,,corporate,Healthcare,Kolkata,"{""employee_count"": 200, ""tier"": ""mid_market""}"
|
||||
ACC-0114,Emami,,developer,Education,Dubai,"{""employee_count"": 5000, ""tier"": ""mid_market""}"
|
||||
ACC-0115,Bengal Chemicals,,referral_partner,Consulting,Bangalore,"{""employee_count"": 1000, ""tier"": ""mid_market""}"
|
||||
ACC-0118,Flipkart,,corporate,Education,Kolkata,"{""employee_count"": 5000, ""tier"": ""mid_market""}"
|
||||
ACC-0122,JSW Steel,,referral_partner,Manufacturing,Hyderabad,"{""employee_count"": 1000, ""tier"": ""sme""}"
|
||||
ACC-0125,Ola,,corporate,Manufacturing,Kolkata,"{""employee_count"": 500, ""tier"": ""enterprise""}"
|
||||
ACC-0129,ICICI Bank,,individual_business,Consulting,Dubai,"{""employee_count"": 1000, ""tier"": ""mid_market""}"
|
||||
ACC-0131,Exide Industries,,individual_business,Consulting,Dubai,"{""employee_count"": 50, ""tier"": ""enterprise""}"
|
||||
ACC-0132,State Bank of India,,referral_partner,Healthcare,Dubai,"{""employee_count"": 5000, ""tier"": ""sme""}"
|
||||
ACC-0133,Tech Mahindra,,referral_partner,Consulting,Hyderabad,"{""employee_count"": 200, ""tier"": ""mid_market""}"
|
||||
ACC-0134,Cognizant,,developer,Consulting,Bangalore,"{""employee_count"": 200, ""tier"": ""mid_market""}"
|
||||
ACC-0135,BYJU'S,,individual_business,Healthcare,Singapore,"{""employee_count"": 500, ""tier"": ""enterprise""}"
|
||||
ACC-0136,HDFC Bank,,individual_business,IT,Delhi,"{""employee_count"": 1000, ""tier"": ""enterprise""}"
|
||||
ACC-0137,PwC India,,corporate,Real Estate,Kolkata,"{""employee_count"": 5000, ""tier"": ""enterprise""}"
|
||||
ACC-0139,Amazon India,,referral_partner,Manufacturing,Kolkata,"{""employee_count"": 5000, ""tier"": ""mid_market""}"
|
||||
ACC-0141,Tech Mahindra,,individual_business,Real Estate,Bangalore,"{""employee_count"": 50, ""tier"": ""mid_market""}"
|
||||
ACC-0144,Swiggy,,individual_business,Education,Dubai,"{""employee_count"": 5000, ""tier"": ""sme""}"
|
||||
ACC-0148,Larsen & Toubro,,individual_business,IT,Delhi,"{""employee_count"": 50, ""tier"": ""mid_market""}"
|
||||
ACC-0149,State Bank of India,,developer,Real Estate,Hyderabad,"{""employee_count"": 200, ""tier"": ""sme""}"
|
||||
ACC-0153,SRF Limited,,referral_partner,IT,Delhi,"{""employee_count"": 5000, ""tier"": ""enterprise""}"
|
||||
ACC-0154,Flipkart,,referral_partner,Banking,Singapore,"{""employee_count"": 500, ""tier"": ""enterprise""}"
|
||||
ACC-0155,Accenture India,,referral_partner,Manufacturing,Singapore,"{""employee_count"": 500, ""tier"": ""mid_market""}"
|
||||
ACC-0156,ITC Limited,,developer,Manufacturing,Mumbai,"{""employee_count"": 1000, ""tier"": ""enterprise""}"
|
||||
ACC-0158,Swiggy,,developer,Consulting,Kolkata,"{""employee_count"": 200, ""tier"": ""sme""}"
|
||||
ACC-0159,Wipro,,corporate,Healthcare,Dubai,"{""employee_count"": 500, ""tier"": ""enterprise""}"
|
||||
ACC-0161,Tech Mahindra,,individual_business,IT,Dubai,"{""employee_count"": 500, ""tier"": ""enterprise""}"
|
||||
ACC-0162,TCS,,developer,IT,Singapore,"{""employee_count"": 200, ""tier"": ""sme""}"
|
||||
ACC-0163,Emami,,developer,Consulting,Kolkata,"{""employee_count"": 50, ""tier"": ""mid_market""}"
|
||||
ACC-0164,SRF Limited,,developer,Healthcare,Kolkata,"{""employee_count"": 200, ""tier"": ""sme""}"
|
||||
ACC-0165,Unacademy,,developer,Banking,Dubai,"{""employee_count"": 5000, ""tier"": ""sme""}"
|
||||
ACC-0166,PwC India,,developer,Banking,Kolkata,"{""employee_count"": 5000, ""tier"": ""sme""}"
|
||||
ACC-0168,ITC Limited,,corporate,Consulting,Singapore,"{""employee_count"": 1000, ""tier"": ""sme""}"
|
||||
ACC-0170,Accenture India,,corporate,Healthcare,Singapore,"{""employee_count"": 500, ""tier"": ""enterprise""}"
|
||||
ACC-0174,Adani Group,,developer,Education,Bangalore,"{""employee_count"": 200, ""tier"": ""sme""}"
|
||||
ACC-0175,Amazon India,,developer,Consulting,Dubai,"{""employee_count"": 1000, ""tier"": ""sme""}"
|
||||
ACC-0177,SRF Limited,,referral_partner,Banking,Singapore,"{""employee_count"": 5000, ""tier"": ""sme""}"
|
||||
ACC-0179,PwC India,,referral_partner,Banking,Hyderabad,"{""employee_count"": 5000, ""tier"": ""enterprise""}"
|
||||
ACC-0180,Emami,,developer,IT,Kolkata,"{""employee_count"": 5000, ""tier"": ""sme""}"
|
||||
ACC-0181,Accenture India,,referral_partner,Education,Delhi,"{""employee_count"": 50, ""tier"": ""mid_market""}"
|
||||
ACC-0182,Reliance Industries,,referral_partner,Healthcare,Hyderabad,"{""employee_count"": 500, ""tier"": ""mid_market""}"
|
||||
ACC-0184,Deloitte India,,individual_business,Banking,Dubai,"{""employee_count"": 500, ""tier"": ""sme""}"
|
||||
ACC-0185,KPMG,,corporate,Manufacturing,Kolkata,"{""employee_count"": 5000, ""tier"": ""sme""}"
|
||||
ACC-0186,State Bank of India,,individual_business,Manufacturing,Kolkata,"{""employee_count"": 1000, ""tier"": ""sme""}"
|
||||
ACC-0187,Microsoft India,,developer,Real Estate,Bangalore,"{""employee_count"": 500, ""tier"": ""enterprise""}"
|
||||
ACC-0188,Reliance Industries,,developer,Real Estate,Bangalore,"{""employee_count"": 1000, ""tier"": ""sme""}"
|
||||
ACC-0189,Emami,,developer,Real Estate,Bangalore,"{""employee_count"": 50, ""tier"": ""mid_market""}"
|
||||
ACC-0191,Wipro,,developer,Banking,Dubai,"{""employee_count"": 500, ""tier"": ""mid_market""}"
|
||||
ACC-0192,Reliance Industries,,corporate,Healthcare,Mumbai,"{""employee_count"": 200, ""tier"": ""enterprise""}"
|
||||
ACC-0193,Emami,,individual_business,Education,Delhi,"{""employee_count"": 1000, ""tier"": ""mid_market""}"
|
||||
ACC-0195,ICICI Bank,,referral_partner,Real Estate,Delhi,"{""employee_count"": 5000, ""tier"": ""sme""}"
|
||||
ACC-0196,ITC Limited,,corporate,Consulting,Kolkata,"{""employee_count"": 1000, ""tier"": ""enterprise""}"
|
||||
ACC-0199,Unacademy,,referral_partner,IT,Bangalore,"{""employee_count"": 200, ""tier"": ""sme""}"
|
||||
ACC-0200,Emami,,referral_partner,IT,Hyderabad,"{""employee_count"": 1000, ""tier"": ""enterprise""}"
|
||||
ACC-0201,Amazon India,,corporate,Manufacturing,Singapore,"{""employee_count"": 500, ""tier"": ""enterprise""}"
|
||||
ACC-0202,Accenture India,,corporate,Consulting,Singapore,"{""employee_count"": 500, ""tier"": ""enterprise""}"
|
||||
ACC-0203,Infosys Ltd,,referral_partner,Banking,Kolkata,"{""employee_count"": 1000, ""tier"": ""enterprise""}"
|
||||
ACC-0204,HDFC Bank,,corporate,Real Estate,Singapore,"{""employee_count"": 1000, ""tier"": ""sme""}"
|
||||
ACC-0205,SRF Limited,,individual_business,Manufacturing,Delhi,"{""employee_count"": 50, ""tier"": ""sme""}"
|
||||
ACC-0206,Unacademy,,referral_partner,Education,Kolkata,"{""employee_count"": 5000, ""tier"": ""sme""}"
|
||||
ACC-0207,KPMG,,corporate,Healthcare,Kolkata,"{""employee_count"": 50, ""tier"": ""enterprise""}"
|
||||
ACC-0208,Swiggy,,referral_partner,Healthcare,Bangalore,"{""employee_count"": 200, ""tier"": ""mid_market""}"
|
||||
ACC-0211,Unacademy,,referral_partner,Healthcare,Dubai,"{""employee_count"": 500, ""tier"": ""mid_market""}"
|
||||
ACC-0212,Adani Group,,referral_partner,Real Estate,Dubai,"{""employee_count"": 50, ""tier"": ""mid_market""}"
|
||||
ACC-0213,HDFC Bank,,referral_partner,Consulting,Dubai,"{""employee_count"": 5000, ""tier"": ""mid_market""}"
|
||||
ACC-0214,Cognizant,,corporate,Banking,Kolkata,"{""employee_count"": 500, ""tier"": ""sme""}"
|
||||
ACC-0216,Ola,,individual_business,IT,Singapore,"{""employee_count"": 50, ""tier"": ""enterprise""}"
|
||||
ACC-0218,Ola,,developer,Manufacturing,Mumbai,"{""employee_count"": 500, ""tier"": ""sme""}"
|
||||
ACC-0219,HDFC Bank,,individual_business,Manufacturing,Singapore,"{""employee_count"": 50, ""tier"": ""mid_market""}"
|
||||
ACC-0221,Capgemini,,individual_business,Healthcare,Singapore,"{""employee_count"": 200, ""tier"": ""enterprise""}"
|
||||
ACC-0222,ITC Limited,,individual_business,Real Estate,Bangalore,"{""employee_count"": 5000, ""tier"": ""sme""}"
|
||||
ACC-0223,IBM India,,developer,Manufacturing,Dubai,"{""employee_count"": 1000, ""tier"": ""mid_market""}"
|
||||
ACC-0226,HDFC Bank,,referral_partner,IT,Kolkata,"{""employee_count"": 1000, ""tier"": ""enterprise""}"
|
||||
ACC-0228,Tech Mahindra,,developer,IT,Dubai,"{""employee_count"": 1000, ""tier"": ""sme""}"
|
||||
ACC-0229,Adani Group,,referral_partner,Banking,Hyderabad,"{""employee_count"": 50, ""tier"": ""mid_market""}"
|
||||
ACC-0231,Flipkart,,referral_partner,Real Estate,Hyderabad,"{""employee_count"": 5000, ""tier"": ""enterprise""}"
|
||||
ACC-0235,Larsen & Toubro,,referral_partner,Consulting,Bangalore,"{""employee_count"": 5000, ""tier"": ""enterprise""}"
|
||||
ACC-0236,ITC Limited,,developer,Consulting,Delhi,"{""employee_count"": 50, ""tier"": ""enterprise""}"
|
||||
ACC-0237,HDFC Bank,,corporate,Manufacturing,Mumbai,"{""employee_count"": 1000, ""tier"": ""mid_market""}"
|
||||
ACC-0238,Bengal Chemicals,,individual_business,IT,Dubai,"{""employee_count"": 500, ""tier"": ""sme""}"
|
||||
ACC-0239,Cognizant,,corporate,Education,Kolkata,"{""employee_count"": 500, ""tier"": ""enterprise""}"
|
||||
ACC-0242,Flipkart,,referral_partner,Consulting,Delhi,"{""employee_count"": 200, ""tier"": ""enterprise""}"
|
||||
ACC-0244,HDFC Bank,,developer,Education,Hyderabad,"{""employee_count"": 200, ""tier"": ""sme""}"
|
||||
ACC-0245,SRF Limited,,corporate,Consulting,Singapore,"{""employee_count"": 1000, ""tier"": ""mid_market""}"
|
||||
ACC-0248,Swiggy,,developer,IT,Mumbai,"{""employee_count"": 5000, ""tier"": ""mid_market""}"
|
||||
ACC-0249,Capgemini,,referral_partner,Education,Mumbai,"{""employee_count"": 500, ""tier"": ""sme""}"
|
||||
|
119
db assets/synthetic_crm_v1/csv/crm_households.csv
Normal file
119
db assets/synthetic_crm_v1/csv/crm_households.csv
Normal file
@@ -0,0 +1,119 @@
|
||||
household_id,household_name,primary_contact_id,size,combined_budget_band,decision_maker_id,metadata_json
|
||||
HH-0002,Sen Family,PER-0002,5,4-6 Cr,PER-0002,"{""decision_style"": ""democratic""}"
|
||||
HH-0003,Roy Family,PER-0003,5,2.5-4 Cr,PER-0003,"{""decision_style"": ""hierarchical""}"
|
||||
HH-0008,Saha Family,PER-0008,2,10-15 Cr,PER-0008,"{""decision_style"": ""consensus""}"
|
||||
HH-0011,Das Family,PER-0011,4,1.5-2.5 Cr,PER-0011,"{""decision_style"": ""hierarchical""}"
|
||||
HH-0013,Gupta Family,PER-0013,4,15-25 Cr,PER-0013,"{""decision_style"": ""consensus""}"
|
||||
HH-0015,Reddy Family,PER-0015,5,15-25 Cr,PER-0015,"{""decision_style"": ""hierarchical""}"
|
||||
HH-0017,Chatterjee Family,PER-0017,3,10-15 Cr,PER-0017,"{""decision_style"": ""democratic""}"
|
||||
HH-0022,Pillai Family,PER-0022,3,4-6 Cr,PER-0022,"{""decision_style"": ""hierarchical""}"
|
||||
HH-0023,Roy Family,PER-0023,2,4-6 Cr,PER-0023,"{""decision_style"": ""hierarchical""}"
|
||||
HH-0025,Sen Family,PER-0025,3,2.5-4 Cr,PER-0025,"{""decision_style"": ""hierarchical""}"
|
||||
HH-0028,Saha Family,PER-0028,4,15-25 Cr,PER-0028,"{""decision_style"": ""consensus""}"
|
||||
HH-0029,Reddy Family,PER-0029,2,6-10 Cr,PER-0029,"{""decision_style"": ""consensus""}"
|
||||
HH-0030,Sen Family,PER-0030,4,2.5-4 Cr,PER-0030,"{""decision_style"": ""consensus""}"
|
||||
HH-0032,Sharma Family,PER-0032,2,1.5-2.5 Cr,PER-0032,"{""decision_style"": ""democratic""}"
|
||||
HH-0034,Agarwal Family,PER-0034,3,6-10 Cr,PER-0034,"{""decision_style"": ""hierarchical""}"
|
||||
HH-0035,Ghosh Family,PER-0035,3,6-10 Cr,PER-0035,"{""decision_style"": ""hierarchical""}"
|
||||
HH-0037,Banerjee Family,PER-0037,3,15-25 Cr,PER-0037,"{""decision_style"": ""democratic""}"
|
||||
HH-0038,Verma Family,PER-0038,5,2.5-4 Cr,PER-0038,"{""decision_style"": ""democratic""}"
|
||||
HH-0040,Nair Family,PER-0040,2,15-25 Cr,PER-0040,"{""decision_style"": ""consensus""}"
|
||||
HH-0041,Pillai Family,PER-0041,2,2.5-4 Cr,PER-0041,"{""decision_style"": ""democratic""}"
|
||||
HH-0042,Pillai Family,PER-0042,5,10-15 Cr,PER-0042,"{""decision_style"": ""consensus""}"
|
||||
HH-0043,Bose Family,PER-0043,4,6-10 Cr,PER-0043,"{""decision_style"": ""consensus""}"
|
||||
HH-0047,Gupta Family,PER-0047,5,10-15 Cr,PER-0047,"{""decision_style"": ""hierarchical""}"
|
||||
HH-0051,Chatterjee Family,PER-0051,4,6-10 Cr,PER-0051,"{""decision_style"": ""democratic""}"
|
||||
HH-0053,Saha Family,PER-0053,5,15-25 Cr,PER-0053,"{""decision_style"": ""consensus""}"
|
||||
HH-0054,Ghosh Family,PER-0054,5,4-6 Cr,PER-0054,"{""decision_style"": ""consensus""}"
|
||||
HH-0058,Banerjee Family,PER-0058,3,1.5-2.5 Cr,PER-0058,"{""decision_style"": ""consensus""}"
|
||||
HH-0059,Singh Family,PER-0059,3,2.5-4 Cr,PER-0059,"{""decision_style"": ""hierarchical""}"
|
||||
HH-0062,Patel Family,PER-0062,5,15-25 Cr,PER-0062,"{""decision_style"": ""democratic""}"
|
||||
HH-0070,Bose Family,PER-0070,4,6-10 Cr,PER-0070,"{""decision_style"": ""democratic""}"
|
||||
HH-0071,Singh Family,PER-0071,5,10-15 Cr,PER-0071,"{""decision_style"": ""consensus""}"
|
||||
HH-0072,Gupta Family,PER-0072,2,4-6 Cr,PER-0072,"{""decision_style"": ""hierarchical""}"
|
||||
HH-0079,Reddy Family,PER-0079,2,10-15 Cr,PER-0079,"{""decision_style"": ""consensus""}"
|
||||
HH-0080,Patel Family,PER-0080,5,2.5-4 Cr,PER-0080,"{""decision_style"": ""democratic""}"
|
||||
HH-0084,Reddy Family,PER-0084,5,4-6 Cr,PER-0084,"{""decision_style"": ""democratic""}"
|
||||
HH-0085,Das Family,PER-0085,5,15-25 Cr,PER-0085,"{""decision_style"": ""democratic""}"
|
||||
HH-0087,Pillai Family,PER-0087,5,4-6 Cr,PER-0087,"{""decision_style"": ""consensus""}"
|
||||
HH-0090,Saha Family,PER-0090,5,6-10 Cr,PER-0090,"{""decision_style"": ""consensus""}"
|
||||
HH-0091,Pillai Family,PER-0091,4,4-6 Cr,PER-0091,"{""decision_style"": ""consensus""}"
|
||||
HH-0093,Banerjee Family,PER-0093,4,2.5-4 Cr,PER-0093,"{""decision_style"": ""consensus""}"
|
||||
HH-0094,Sharma Family,PER-0094,4,15-25 Cr,PER-0094,"{""decision_style"": ""consensus""}"
|
||||
HH-0095,Das Family,PER-0095,5,6-10 Cr,PER-0095,"{""decision_style"": ""democratic""}"
|
||||
HH-0096,Gupta Family,PER-0096,3,6-10 Cr,PER-0096,"{""decision_style"": ""consensus""}"
|
||||
HH-0097,Das Family,PER-0097,4,6-10 Cr,PER-0097,"{""decision_style"": ""hierarchical""}"
|
||||
HH-0098,Bose Family,PER-0098,2,6-10 Cr,PER-0098,"{""decision_style"": ""democratic""}"
|
||||
HH-0099,Das Family,PER-0099,5,1.5-2.5 Cr,PER-0099,"{""decision_style"": ""consensus""}"
|
||||
HH-0100,Saha Family,PER-0100,3,15-25 Cr,PER-0100,"{""decision_style"": ""hierarchical""}"
|
||||
HH-0102,Ghosh Family,PER-0102,2,1.5-2.5 Cr,PER-0102,"{""decision_style"": ""hierarchical""}"
|
||||
HH-0103,Agarwal Family,PER-0103,5,4-6 Cr,PER-0103,"{""decision_style"": ""democratic""}"
|
||||
HH-0104,Chatterjee Family,PER-0104,2,10-15 Cr,PER-0104,"{""decision_style"": ""democratic""}"
|
||||
HH-0107,Sharma Family,PER-0107,5,15-25 Cr,PER-0107,"{""decision_style"": ""consensus""}"
|
||||
HH-0108,Saha Family,PER-0108,2,4-6 Cr,PER-0108,"{""decision_style"": ""consensus""}"
|
||||
HH-0109,Banerjee Family,PER-0109,3,1.5-2.5 Cr,PER-0109,"{""decision_style"": ""consensus""}"
|
||||
HH-0111,Sen Family,PER-0111,5,2.5-4 Cr,PER-0111,"{""decision_style"": ""democratic""}"
|
||||
HH-0115,Pillai Family,PER-0115,5,4-6 Cr,PER-0115,"{""decision_style"": ""hierarchical""}"
|
||||
HH-0117,Jain Family,PER-0117,3,10-15 Cr,PER-0117,"{""decision_style"": ""hierarchical""}"
|
||||
HH-0119,Roy Family,PER-0119,4,6-10 Cr,PER-0119,"{""decision_style"": ""consensus""}"
|
||||
HH-0122,Nair Family,PER-0122,5,1.5-2.5 Cr,PER-0122,"{""decision_style"": ""hierarchical""}"
|
||||
HH-0123,Mukherjee Family,PER-0123,4,10-15 Cr,PER-0123,"{""decision_style"": ""democratic""}"
|
||||
HH-0126,Singh Family,PER-0126,4,15-25 Cr,PER-0126,"{""decision_style"": ""hierarchical""}"
|
||||
HH-0127,Das Family,PER-0127,4,6-10 Cr,PER-0127,"{""decision_style"": ""democratic""}"
|
||||
HH-0130,Saha Family,PER-0130,5,4-6 Cr,PER-0130,"{""decision_style"": ""consensus""}"
|
||||
HH-0132,Chatterjee Family,PER-0132,3,4-6 Cr,PER-0132,"{""decision_style"": ""hierarchical""}"
|
||||
HH-0135,Sen Family,PER-0135,5,15-25 Cr,PER-0135,"{""decision_style"": ""hierarchical""}"
|
||||
HH-0136,Singh Family,PER-0136,3,2.5-4 Cr,PER-0136,"{""decision_style"": ""hierarchical""}"
|
||||
HH-0138,Nair Family,PER-0138,3,15-25 Cr,PER-0138,"{""decision_style"": ""hierarchical""}"
|
||||
HH-0141,Nair Family,PER-0141,2,2.5-4 Cr,PER-0141,"{""decision_style"": ""consensus""}"
|
||||
HH-0143,Gupta Family,PER-0143,3,6-10 Cr,PER-0143,"{""decision_style"": ""democratic""}"
|
||||
HH-0144,Ghosh Family,PER-0144,2,15-25 Cr,PER-0144,"{""decision_style"": ""hierarchical""}"
|
||||
HH-0145,Jain Family,PER-0145,2,10-15 Cr,PER-0145,"{""decision_style"": ""hierarchical""}"
|
||||
HH-0150,Gupta Family,PER-0150,2,1.5-2.5 Cr,PER-0150,"{""decision_style"": ""democratic""}"
|
||||
HH-0151,Nair Family,PER-0151,5,1.5-2.5 Cr,PER-0151,"{""decision_style"": ""democratic""}"
|
||||
HH-0152,Patel Family,PER-0152,5,4-6 Cr,PER-0152,"{""decision_style"": ""democratic""}"
|
||||
HH-0154,Banerjee Family,PER-0154,2,15-25 Cr,PER-0154,"{""decision_style"": ""hierarchical""}"
|
||||
HH-0155,Pillai Family,PER-0155,4,6-10 Cr,PER-0155,"{""decision_style"": ""democratic""}"
|
||||
HH-0156,Agarwal Family,PER-0156,2,4-6 Cr,PER-0156,"{""decision_style"": ""hierarchical""}"
|
||||
HH-0160,Reddy Family,PER-0160,5,15-25 Cr,PER-0160,"{""decision_style"": ""consensus""}"
|
||||
HH-0163,Banerjee Family,PER-0163,5,6-10 Cr,PER-0163,"{""decision_style"": ""consensus""}"
|
||||
HH-0164,Kumar Family,PER-0164,4,6-10 Cr,PER-0164,"{""decision_style"": ""democratic""}"
|
||||
HH-0165,Mukherjee Family,PER-0165,4,6-10 Cr,PER-0165,"{""decision_style"": ""hierarchical""}"
|
||||
HH-0168,Mukherjee Family,PER-0168,5,10-15 Cr,PER-0168,"{""decision_style"": ""consensus""}"
|
||||
HH-0169,Das Family,PER-0169,3,6-10 Cr,PER-0169,"{""decision_style"": ""democratic""}"
|
||||
HH-0184,Pillai Family,PER-0184,5,10-15 Cr,PER-0184,"{""decision_style"": ""hierarchical""}"
|
||||
HH-0185,Saha Family,PER-0185,3,2.5-4 Cr,PER-0185,"{""decision_style"": ""consensus""}"
|
||||
HH-0186,Banerjee Family,PER-0186,4,2.5-4 Cr,PER-0186,"{""decision_style"": ""democratic""}"
|
||||
HH-0188,Pillai Family,PER-0188,2,6-10 Cr,PER-0188,"{""decision_style"": ""consensus""}"
|
||||
HH-0190,Jain Family,PER-0190,4,2.5-4 Cr,PER-0190,"{""decision_style"": ""hierarchical""}"
|
||||
HH-0191,Jain Family,PER-0191,2,6-10 Cr,PER-0191,"{""decision_style"": ""consensus""}"
|
||||
HH-0193,Reddy Family,PER-0193,3,2.5-4 Cr,PER-0193,"{""decision_style"": ""hierarchical""}"
|
||||
HH-0195,Banerjee Family,PER-0195,4,10-15 Cr,PER-0195,"{""decision_style"": ""hierarchical""}"
|
||||
HH-0196,Bose Family,PER-0196,3,10-15 Cr,PER-0196,"{""decision_style"": ""hierarchical""}"
|
||||
HH-0198,Agarwal Family,PER-0198,5,4-6 Cr,PER-0198,"{""decision_style"": ""democratic""}"
|
||||
HH-0199,Sharma Family,PER-0199,5,2.5-4 Cr,PER-0199,"{""decision_style"": ""consensus""}"
|
||||
HH-0203,Das Family,PER-0203,5,6-10 Cr,PER-0203,"{""decision_style"": ""hierarchical""}"
|
||||
HH-0204,Bose Family,PER-0204,2,2.5-4 Cr,PER-0204,"{""decision_style"": ""consensus""}"
|
||||
HH-0205,Saha Family,PER-0205,3,15-25 Cr,PER-0205,"{""decision_style"": ""consensus""}"
|
||||
HH-0207,Reddy Family,PER-0207,4,10-15 Cr,PER-0207,"{""decision_style"": ""democratic""}"
|
||||
HH-0208,Jain Family,PER-0208,5,4-6 Cr,PER-0208,"{""decision_style"": ""hierarchical""}"
|
||||
HH-0210,Jain Family,PER-0210,3,4-6 Cr,PER-0210,"{""decision_style"": ""democratic""}"
|
||||
HH-0211,Sharma Family,PER-0211,5,2.5-4 Cr,PER-0211,"{""decision_style"": ""democratic""}"
|
||||
HH-0215,Verma Family,PER-0215,4,6-10 Cr,PER-0215,"{""decision_style"": ""democratic""}"
|
||||
HH-0217,Pillai Family,PER-0217,3,15-25 Cr,PER-0217,"{""decision_style"": ""hierarchical""}"
|
||||
HH-0219,Chatterjee Family,PER-0219,4,10-15 Cr,PER-0219,"{""decision_style"": ""hierarchical""}"
|
||||
HH-0222,Singh Family,PER-0222,4,15-25 Cr,PER-0222,"{""decision_style"": ""democratic""}"
|
||||
HH-0224,Roy Family,PER-0224,2,1.5-2.5 Cr,PER-0224,"{""decision_style"": ""hierarchical""}"
|
||||
HH-0225,Das Family,PER-0225,5,10-15 Cr,PER-0225,"{""decision_style"": ""hierarchical""}"
|
||||
HH-0228,Das Family,PER-0228,3,10-15 Cr,PER-0228,"{""decision_style"": ""consensus""}"
|
||||
HH-0229,Roy Family,PER-0229,3,4-6 Cr,PER-0229,"{""decision_style"": ""consensus""}"
|
||||
HH-0232,Agarwal Family,PER-0232,4,15-25 Cr,PER-0232,"{""decision_style"": ""hierarchical""}"
|
||||
HH-0234,Saha Family,PER-0234,3,10-15 Cr,PER-0234,"{""decision_style"": ""democratic""}"
|
||||
HH-0236,Nair Family,PER-0236,5,10-15 Cr,PER-0236,"{""decision_style"": ""democratic""}"
|
||||
HH-0238,Das Family,PER-0238,4,2.5-4 Cr,PER-0238,"{""decision_style"": ""democratic""}"
|
||||
HH-0242,Banerjee Family,PER-0242,3,1.5-2.5 Cr,PER-0242,"{""decision_style"": ""hierarchical""}"
|
||||
HH-0243,Sen Family,PER-0243,3,10-15 Cr,PER-0243,"{""decision_style"": ""consensus""}"
|
||||
HH-0244,Verma Family,PER-0244,4,6-10 Cr,PER-0244,"{""decision_style"": ""consensus""}"
|
||||
HH-0246,Sen Family,PER-0246,4,15-25 Cr,PER-0246,"{""decision_style"": ""democratic""}"
|
||||
HH-0249,Mukherjee Family,PER-0249,5,6-10 Cr,PER-0249,"{""decision_style"": ""hierarchical""}"
|
||||
HH-0250,Ghosh Family,PER-0250,4,1.5-2.5 Cr,PER-0250,"{""decision_style"": ""consensus""}"
|
||||
|
251
db assets/synthetic_crm_v1/csv/crm_leads.csv
Normal file
251
db assets/synthetic_crm_v1/csv/crm_leads.csv
Normal file
@@ -0,0 +1,251 @@
|
||||
lead_id,person_id,account_id,source_system,status,stage,budget_band,urgency,assigned_user_id,created_at
|
||||
LED-0001,PER-0001,,website,dropped,closed_won,2.5-4 Cr,investment,user_002,2025-09-18T00:00:00
|
||||
LED-0002,PER-0002,,website,active,site_visit_done,15-25 Cr,investment,user_002,2024-11-24T00:00:00
|
||||
LED-0003,PER-0003,ACC-0003,website,active,site_visit_done,15-25 Cr,6_months,user_002,2024-12-03T00:00:00
|
||||
LED-0004,PER-0004,ACC-0004,website,converted,nurturing,6-10 Cr,6_months,user_001,2025-04-12T00:00:00
|
||||
LED-0005,PER-0005,,housing,active,closed_lost,15-25 Cr,investment,user_003,2024-05-23T00:00:00
|
||||
LED-0006,PER-0006,ACC-0006,housing,inactive,new,15-25 Cr,investment,user_005,2024-07-14T00:00:00
|
||||
LED-0007,PER-0007,,walk_in,inactive,negotiation,1.5-2.5 Cr,investment,user_002,2024-07-27T00:00:00
|
||||
LED-0008,PER-0008,ACC-0008,magicbricks,active,site_visit_scheduled,15-25 Cr,immediate,user_001,2025-08-01T00:00:00
|
||||
LED-0009,PER-0009,,referral,converted,qualified,15-25 Cr,6_months,user_001,2026-02-12T00:00:00
|
||||
LED-0010,PER-0010,ACC-0010,referral,active,new,10-15 Cr,immediate,user_005,2024-04-15T00:00:00
|
||||
LED-0011,PER-0011,ACC-0011,99acres,inactive,negotiation,4-6 Cr,6_months,user_004,2025-05-05T00:00:00
|
||||
LED-0012,PER-0012,ACC-0012,magicbricks,dropped,contacted,15-25 Cr,6_months,user_002,2024-03-28T00:00:00
|
||||
LED-0013,PER-0013,ACC-0013,99acres,dropped,qualified,15-25 Cr,12_months,user_004,2025-02-18T00:00:00
|
||||
LED-0014,PER-0014,,referral,dropped,site_visit_done,2.5-4 Cr,6_months,user_001,2025-12-23T00:00:00
|
||||
LED-0015,PER-0015,,facebook,converted,nurturing,10-15 Cr,immediate,user_005,2025-04-13T00:00:00
|
||||
LED-0016,PER-0016,ACC-0016,housing,dropped,booking_pending,4-6 Cr,12_months,user_004,2024-04-05T00:00:00
|
||||
LED-0017,PER-0017,ACC-0017,referral,active,contacted,4-6 Cr,6_months,user_002,2026-01-18T00:00:00
|
||||
LED-0018,PER-0018,ACC-0018,magicbricks,inactive,new,6-10 Cr,immediate,user_002,2024-10-29T00:00:00
|
||||
LED-0019,PER-0019,ACC-0019,website,active,site_visit_scheduled,1.5-2.5 Cr,12_months,user_001,2026-01-17T00:00:00
|
||||
LED-0020,PER-0020,ACC-0020,referral,active,contacted,15-25 Cr,investment,user_001,2024-09-18T00:00:00
|
||||
LED-0021,PER-0021,ACC-0021,magicbricks,active,closed_lost,1.5-2.5 Cr,12_months,user_001,2024-07-19T00:00:00
|
||||
LED-0022,PER-0022,ACC-0022,website,active,contacted,2.5-4 Cr,3_months,user_002,2024-05-23T00:00:00
|
||||
LED-0023,PER-0023,ACC-0023,walk_in,inactive,nurturing,4-6 Cr,3_months,user_001,2024-12-18T00:00:00
|
||||
LED-0024,PER-0024,ACC-0024,walk_in,active,closed_lost,15-25 Cr,investment,user_002,2025-12-25T00:00:00
|
||||
LED-0025,PER-0025,ACC-0025,referral,active,contacted,10-15 Cr,investment,user_004,2024-06-13T00:00:00
|
||||
LED-0026,PER-0026,ACC-0026,walk_in,inactive,qualified,4-6 Cr,3_months,user_004,2025-01-31T00:00:00
|
||||
LED-0027,PER-0027,ACC-0027,magicbricks,active,site_visit_scheduled,1.5-2.5 Cr,12_months,user_001,2024-06-20T00:00:00
|
||||
LED-0028,PER-0028,,housing,dropped,qualified,6-10 Cr,6_months,user_003,2024-08-21T00:00:00
|
||||
LED-0029,PER-0029,,99acres,converted,qualified,1.5-2.5 Cr,3_months,user_003,2025-04-30T00:00:00
|
||||
LED-0030,PER-0030,,google_ads,inactive,site_visit_done,6-10 Cr,immediate,user_005,2024-10-29T00:00:00
|
||||
LED-0031,PER-0031,,facebook,active,contacted,10-15 Cr,immediate,user_004,2025-09-27T00:00:00
|
||||
LED-0032,PER-0032,ACC-0032,housing,active,negotiation,1.5-2.5 Cr,12_months,user_005,2024-08-19T00:00:00
|
||||
LED-0033,PER-0033,ACC-0033,google_ads,active,closed_won,10-15 Cr,6_months,user_004,2025-03-02T00:00:00
|
||||
LED-0034,PER-0034,ACC-0034,website,active,new,15-25 Cr,3_months,user_003,2024-04-07T00:00:00
|
||||
LED-0035,PER-0035,ACC-0035,referral,inactive,negotiation,15-25 Cr,3_months,user_004,2025-11-16T00:00:00
|
||||
LED-0036,PER-0036,,magicbricks,dropped,site_visit_done,15-25 Cr,12_months,user_003,2025-09-25T00:00:00
|
||||
LED-0037,PER-0037,,walk_in,active,booking_pending,6-10 Cr,3_months,user_002,2024-10-07T00:00:00
|
||||
LED-0038,PER-0038,ACC-0038,magicbricks,dropped,negotiation,2.5-4 Cr,6_months,user_004,2025-10-25T00:00:00
|
||||
LED-0039,PER-0039,,referral,dropped,new,4-6 Cr,12_months,user_002,2025-07-28T00:00:00
|
||||
LED-0040,PER-0040,,walk_in,active,closed_won,1.5-2.5 Cr,immediate,user_001,2024-01-25T00:00:00
|
||||
LED-0041,PER-0041,ACC-0041,facebook,dropped,closed_lost,10-15 Cr,immediate,user_003,2024-02-25T00:00:00
|
||||
LED-0042,PER-0042,ACC-0042,facebook,dropped,site_visit_done,2.5-4 Cr,6_months,user_004,2025-07-18T00:00:00
|
||||
LED-0043,PER-0043,,housing,active,closed_lost,2.5-4 Cr,3_months,user_002,2024-03-19T00:00:00
|
||||
LED-0044,PER-0044,ACC-0044,google_ads,active,booking_pending,1.5-2.5 Cr,investment,user_004,2024-01-02T00:00:00
|
||||
LED-0045,PER-0045,ACC-0045,walk_in,converted,qualified,10-15 Cr,12_months,user_003,2025-05-09T00:00:00
|
||||
LED-0046,PER-0046,,housing,dropped,nurturing,10-15 Cr,immediate,user_002,2025-02-14T00:00:00
|
||||
LED-0047,PER-0047,,facebook,dropped,negotiation,6-10 Cr,investment,user_001,2026-02-14T00:00:00
|
||||
LED-0048,PER-0048,,referral,active,qualified,1.5-2.5 Cr,12_months,user_005,2024-12-30T00:00:00
|
||||
LED-0049,PER-0049,,walk_in,converted,negotiation,4-6 Cr,3_months,user_005,2024-04-13T00:00:00
|
||||
LED-0050,PER-0050,ACC-0050,website,active,qualified,4-6 Cr,12_months,user_001,2025-12-08T00:00:00
|
||||
LED-0051,PER-0051,,housing,inactive,booking_pending,4-6 Cr,investment,user_005,2025-09-11T00:00:00
|
||||
LED-0052,PER-0052,ACC-0052,magicbricks,active,closed_lost,6-10 Cr,6_months,user_003,2025-05-08T00:00:00
|
||||
LED-0053,PER-0053,ACC-0053,walk_in,active,new,2.5-4 Cr,immediate,user_003,2025-12-14T00:00:00
|
||||
LED-0054,PER-0054,ACC-0054,99acres,active,nurturing,1.5-2.5 Cr,3_months,user_002,2025-12-05T00:00:00
|
||||
LED-0055,PER-0055,ACC-0055,walk_in,dropped,site_visit_scheduled,1.5-2.5 Cr,investment,user_004,2025-09-27T00:00:00
|
||||
LED-0056,PER-0056,ACC-0056,walk_in,converted,new,15-25 Cr,12_months,user_003,2025-10-16T00:00:00
|
||||
LED-0057,PER-0057,ACC-0057,facebook,active,qualified,4-6 Cr,investment,user_003,2024-12-11T00:00:00
|
||||
LED-0058,PER-0058,,google_ads,converted,nurturing,2.5-4 Cr,immediate,user_003,2024-04-04T00:00:00
|
||||
LED-0059,PER-0059,ACC-0059,referral,active,negotiation,15-25 Cr,12_months,user_004,2025-03-16T00:00:00
|
||||
LED-0060,PER-0060,ACC-0060,website,active,booking_pending,2.5-4 Cr,immediate,user_003,2024-01-19T00:00:00
|
||||
LED-0061,PER-0061,,housing,active,closed_lost,2.5-4 Cr,6_months,user_004,2024-01-31T00:00:00
|
||||
LED-0062,PER-0062,,magicbricks,dropped,booking_pending,15-25 Cr,3_months,user_002,2024-10-03T00:00:00
|
||||
LED-0063,PER-0063,ACC-0063,facebook,active,site_visit_scheduled,4-6 Cr,6_months,user_002,2025-12-30T00:00:00
|
||||
LED-0064,PER-0064,ACC-0064,housing,converted,closed_lost,15-25 Cr,investment,user_002,2024-09-07T00:00:00
|
||||
LED-0065,PER-0065,,google_ads,converted,site_visit_done,4-6 Cr,6_months,user_005,2025-12-24T00:00:00
|
||||
LED-0066,PER-0066,ACC-0066,website,active,nurturing,2.5-4 Cr,6_months,user_003,2025-08-05T00:00:00
|
||||
LED-0067,PER-0067,ACC-0067,website,inactive,closed_lost,10-15 Cr,3_months,user_002,2025-03-30T00:00:00
|
||||
LED-0068,PER-0068,ACC-0068,magicbricks,active,nurturing,1.5-2.5 Cr,6_months,user_005,2024-10-17T00:00:00
|
||||
LED-0069,PER-0069,ACC-0069,referral,inactive,closed_lost,15-25 Cr,immediate,user_003,2024-05-10T00:00:00
|
||||
LED-0070,PER-0070,,website,converted,contacted,10-15 Cr,12_months,user_002,2024-12-18T00:00:00
|
||||
LED-0071,PER-0071,,housing,inactive,site_visit_scheduled,10-15 Cr,investment,user_003,2026-01-18T00:00:00
|
||||
LED-0072,PER-0072,,99acres,converted,contacted,15-25 Cr,3_months,user_004,2026-01-29T00:00:00
|
||||
LED-0073,PER-0073,ACC-0073,facebook,active,booking_pending,2.5-4 Cr,investment,user_004,2025-12-23T00:00:00
|
||||
LED-0074,PER-0074,,99acres,inactive,contacted,15-25 Cr,investment,user_002,2024-05-02T00:00:00
|
||||
LED-0075,PER-0075,ACC-0075,housing,active,closed_won,1.5-2.5 Cr,immediate,user_001,2024-04-18T00:00:00
|
||||
LED-0076,PER-0076,ACC-0076,facebook,active,negotiation,15-25 Cr,12_months,user_002,2024-04-19T00:00:00
|
||||
LED-0077,PER-0077,ACC-0077,99acres,converted,closed_won,1.5-2.5 Cr,immediate,user_001,2024-04-09T00:00:00
|
||||
LED-0078,PER-0078,,facebook,dropped,booking_pending,2.5-4 Cr,3_months,user_002,2024-10-17T00:00:00
|
||||
LED-0079,PER-0079,ACC-0079,walk_in,active,site_visit_scheduled,1.5-2.5 Cr,6_months,user_002,2025-03-05T00:00:00
|
||||
LED-0080,PER-0080,,website,inactive,qualified,1.5-2.5 Cr,immediate,user_004,2025-08-28T00:00:00
|
||||
LED-0081,PER-0081,,google_ads,active,site_visit_done,15-25 Cr,investment,user_005,2024-02-03T00:00:00
|
||||
LED-0082,PER-0082,,facebook,converted,site_visit_done,4-6 Cr,immediate,user_002,2025-06-29T00:00:00
|
||||
LED-0083,PER-0083,ACC-0083,99acres,active,nurturing,2.5-4 Cr,6_months,user_002,2024-11-07T00:00:00
|
||||
LED-0084,PER-0084,ACC-0084,referral,active,negotiation,1.5-2.5 Cr,investment,user_002,2025-04-01T00:00:00
|
||||
LED-0085,PER-0085,ACC-0085,99acres,inactive,site_visit_scheduled,4-6 Cr,investment,user_004,2024-05-20T00:00:00
|
||||
LED-0086,PER-0086,,website,active,negotiation,2.5-4 Cr,investment,user_001,2024-05-02T00:00:00
|
||||
LED-0087,PER-0087,,website,inactive,qualified,4-6 Cr,6_months,user_003,2024-04-29T00:00:00
|
||||
LED-0088,PER-0088,ACC-0088,referral,active,nurturing,10-15 Cr,immediate,user_005,2025-06-01T00:00:00
|
||||
LED-0089,PER-0089,ACC-0089,referral,active,qualified,2.5-4 Cr,6_months,user_002,2024-04-14T00:00:00
|
||||
LED-0090,PER-0090,,google_ads,inactive,contacted,4-6 Cr,12_months,user_004,2025-03-16T00:00:00
|
||||
LED-0091,PER-0091,,google_ads,active,negotiation,1.5-2.5 Cr,3_months,user_002,2024-12-19T00:00:00
|
||||
LED-0092,PER-0092,,referral,converted,nurturing,4-6 Cr,6_months,user_001,2024-04-04T00:00:00
|
||||
LED-0093,PER-0093,,housing,active,nurturing,6-10 Cr,6_months,user_001,2024-11-17T00:00:00
|
||||
LED-0094,PER-0094,ACC-0094,99acres,inactive,site_visit_scheduled,15-25 Cr,6_months,user_004,2024-10-31T00:00:00
|
||||
LED-0095,PER-0095,ACC-0095,website,active,site_visit_scheduled,10-15 Cr,investment,user_002,2025-08-07T00:00:00
|
||||
LED-0096,PER-0096,,google_ads,dropped,negotiation,2.5-4 Cr,12_months,user_004,2024-05-16T00:00:00
|
||||
LED-0097,PER-0097,ACC-0097,housing,converted,nurturing,4-6 Cr,12_months,user_002,2024-09-26T00:00:00
|
||||
LED-0098,PER-0098,ACC-0098,housing,active,new,1.5-2.5 Cr,immediate,user_005,2024-08-04T00:00:00
|
||||
LED-0099,PER-0099,ACC-0099,housing,active,closed_won,2.5-4 Cr,6_months,user_002,2024-03-22T00:00:00
|
||||
LED-0100,PER-0100,ACC-0100,website,active,qualified,1.5-2.5 Cr,immediate,user_002,2024-05-08T00:00:00
|
||||
LED-0101,PER-0101,ACC-0101,magicbricks,dropped,closed_won,1.5-2.5 Cr,investment,user_001,2025-09-18T00:00:00
|
||||
LED-0102,PER-0102,ACC-0102,99acres,dropped,site_visit_done,10-15 Cr,investment,user_001,2025-07-24T00:00:00
|
||||
LED-0103,PER-0103,ACC-0103,99acres,active,closed_won,15-25 Cr,investment,user_001,2024-01-31T00:00:00
|
||||
LED-0104,PER-0104,,referral,dropped,booking_pending,1.5-2.5 Cr,6_months,user_003,2026-01-13T00:00:00
|
||||
LED-0105,PER-0105,ACC-0105,google_ads,active,nurturing,10-15 Cr,12_months,user_004,2025-02-16T00:00:00
|
||||
LED-0106,PER-0106,ACC-0106,facebook,dropped,closed_won,6-10 Cr,3_months,user_003,2025-05-31T00:00:00
|
||||
LED-0107,PER-0107,,referral,active,booking_pending,2.5-4 Cr,3_months,user_005,2024-09-21T00:00:00
|
||||
LED-0108,PER-0108,ACC-0108,facebook,active,site_visit_done,2.5-4 Cr,6_months,user_003,2025-10-12T00:00:00
|
||||
LED-0109,PER-0109,ACC-0109,referral,active,booking_pending,10-15 Cr,investment,user_004,2025-10-15T00:00:00
|
||||
LED-0110,PER-0110,ACC-0110,referral,inactive,site_visit_scheduled,2.5-4 Cr,6_months,user_001,2024-09-13T00:00:00
|
||||
LED-0111,PER-0111,,facebook,inactive,new,6-10 Cr,12_months,user_005,2025-09-30T00:00:00
|
||||
LED-0112,PER-0112,,website,active,qualified,10-15 Cr,investment,user_001,2025-11-04T00:00:00
|
||||
LED-0113,PER-0113,ACC-0113,walk_in,active,nurturing,1.5-2.5 Cr,3_months,user_002,2025-10-08T00:00:00
|
||||
LED-0114,PER-0114,ACC-0114,walk_in,dropped,qualified,4-6 Cr,investment,user_004,2025-04-20T00:00:00
|
||||
LED-0115,PER-0115,ACC-0115,referral,active,closed_lost,2.5-4 Cr,immediate,user_001,2024-10-28T00:00:00
|
||||
LED-0116,PER-0116,,google_ads,inactive,negotiation,2.5-4 Cr,12_months,user_001,2024-06-06T00:00:00
|
||||
LED-0117,PER-0117,,housing,converted,nurturing,2.5-4 Cr,investment,user_004,2024-06-11T00:00:00
|
||||
LED-0118,PER-0118,ACC-0118,magicbricks,converted,site_visit_done,1.5-2.5 Cr,12_months,user_001,2024-06-17T00:00:00
|
||||
LED-0119,PER-0119,,magicbricks,dropped,negotiation,15-25 Cr,immediate,user_002,2024-01-15T00:00:00
|
||||
LED-0120,PER-0120,,99acres,active,closed_lost,1.5-2.5 Cr,investment,user_003,2024-04-14T00:00:00
|
||||
LED-0121,PER-0121,,website,active,site_visit_done,15-25 Cr,6_months,user_003,2025-02-28T00:00:00
|
||||
LED-0122,PER-0122,ACC-0122,google_ads,active,booking_pending,4-6 Cr,investment,user_005,2024-01-21T00:00:00
|
||||
LED-0123,PER-0123,,99acres,active,new,10-15 Cr,12_months,user_002,2025-10-08T00:00:00
|
||||
LED-0124,PER-0124,,referral,dropped,contacted,6-10 Cr,investment,user_004,2024-01-02T00:00:00
|
||||
LED-0125,PER-0125,ACC-0125,referral,active,closed_won,1.5-2.5 Cr,6_months,user_001,2025-05-04T00:00:00
|
||||
LED-0126,PER-0126,,99acres,converted,site_visit_scheduled,10-15 Cr,investment,user_001,2025-09-13T00:00:00
|
||||
LED-0127,PER-0127,,google_ads,active,booking_pending,2.5-4 Cr,6_months,user_001,2026-01-12T00:00:00
|
||||
LED-0128,PER-0128,,walk_in,active,new,10-15 Cr,immediate,user_003,2025-12-20T00:00:00
|
||||
LED-0129,PER-0129,ACC-0129,magicbricks,dropped,site_visit_scheduled,15-25 Cr,immediate,user_003,2024-08-02T00:00:00
|
||||
LED-0130,PER-0130,,google_ads,inactive,qualified,15-25 Cr,12_months,user_003,2025-08-30T00:00:00
|
||||
LED-0131,PER-0131,ACC-0131,facebook,active,site_visit_done,10-15 Cr,12_months,user_003,2025-06-15T00:00:00
|
||||
LED-0132,PER-0132,ACC-0132,housing,active,negotiation,2.5-4 Cr,6_months,user_001,2025-01-06T00:00:00
|
||||
LED-0133,PER-0133,ACC-0133,google_ads,active,site_visit_done,1.5-2.5 Cr,immediate,user_001,2024-03-30T00:00:00
|
||||
LED-0134,PER-0134,ACC-0134,referral,active,site_visit_scheduled,4-6 Cr,12_months,user_003,2024-12-12T00:00:00
|
||||
LED-0135,PER-0135,ACC-0135,walk_in,active,booking_pending,2.5-4 Cr,3_months,user_004,2025-02-08T00:00:00
|
||||
LED-0136,PER-0136,ACC-0136,google_ads,dropped,new,1.5-2.5 Cr,6_months,user_001,2025-05-05T00:00:00
|
||||
LED-0137,PER-0137,ACC-0137,walk_in,active,negotiation,15-25 Cr,6_months,user_002,2026-01-29T00:00:00
|
||||
LED-0138,PER-0138,,website,active,qualified,10-15 Cr,3_months,user_005,2024-07-30T00:00:00
|
||||
LED-0139,PER-0139,ACC-0139,housing,active,nurturing,1.5-2.5 Cr,immediate,user_003,2025-02-22T00:00:00
|
||||
LED-0140,PER-0140,,99acres,dropped,closed_lost,1.5-2.5 Cr,investment,user_001,2024-04-12T00:00:00
|
||||
LED-0141,PER-0141,ACC-0141,referral,converted,negotiation,4-6 Cr,immediate,user_003,2024-10-15T00:00:00
|
||||
LED-0142,PER-0142,,facebook,dropped,booking_pending,6-10 Cr,investment,user_003,2025-05-21T00:00:00
|
||||
LED-0143,PER-0143,,walk_in,active,qualified,1.5-2.5 Cr,3_months,user_001,2024-01-31T00:00:00
|
||||
LED-0144,PER-0144,ACC-0144,walk_in,converted,contacted,4-6 Cr,immediate,user_002,2024-04-16T00:00:00
|
||||
LED-0145,PER-0145,,99acres,converted,qualified,10-15 Cr,investment,user_005,2024-08-08T00:00:00
|
||||
LED-0146,PER-0146,,facebook,active,contacted,4-6 Cr,6_months,user_004,2024-05-23T00:00:00
|
||||
LED-0147,PER-0147,,referral,inactive,qualified,6-10 Cr,3_months,user_004,2024-03-28T00:00:00
|
||||
LED-0148,PER-0148,ACC-0148,google_ads,converted,closed_won,2.5-4 Cr,6_months,user_002,2024-11-01T00:00:00
|
||||
LED-0149,PER-0149,ACC-0149,magicbricks,dropped,site_visit_scheduled,10-15 Cr,immediate,user_003,2024-12-22T00:00:00
|
||||
LED-0150,PER-0150,,google_ads,active,site_visit_done,2.5-4 Cr,12_months,user_005,2025-11-14T00:00:00
|
||||
LED-0151,PER-0151,,google_ads,dropped,contacted,4-6 Cr,investment,user_002,2025-05-31T00:00:00
|
||||
LED-0152,PER-0152,,housing,active,qualified,2.5-4 Cr,immediate,user_001,2024-04-19T00:00:00
|
||||
LED-0153,PER-0153,ACC-0153,99acres,active,closed_lost,4-6 Cr,immediate,user_002,2025-06-14T00:00:00
|
||||
LED-0154,PER-0154,ACC-0154,referral,converted,site_visit_done,15-25 Cr,12_months,user_004,2025-07-28T00:00:00
|
||||
LED-0155,PER-0155,ACC-0155,referral,active,qualified,15-25 Cr,12_months,user_002,2024-01-11T00:00:00
|
||||
LED-0156,PER-0156,ACC-0156,magicbricks,dropped,closed_lost,15-25 Cr,3_months,user_001,2024-12-27T00:00:00
|
||||
LED-0157,PER-0157,,referral,active,contacted,6-10 Cr,3_months,user_002,2024-09-28T00:00:00
|
||||
LED-0158,PER-0158,ACC-0158,facebook,active,site_visit_done,2.5-4 Cr,3_months,user_003,2025-12-09T00:00:00
|
||||
LED-0159,PER-0159,ACC-0159,referral,active,qualified,4-6 Cr,6_months,user_004,2024-06-20T00:00:00
|
||||
LED-0160,PER-0160,,facebook,converted,closed_lost,2.5-4 Cr,6_months,user_003,2025-10-03T00:00:00
|
||||
LED-0161,PER-0161,ACC-0161,referral,active,booking_pending,2.5-4 Cr,immediate,user_004,2024-07-20T00:00:00
|
||||
LED-0162,PER-0162,ACC-0162,walk_in,active,nurturing,10-15 Cr,investment,user_005,2024-09-05T00:00:00
|
||||
LED-0163,PER-0163,ACC-0163,facebook,dropped,site_visit_done,10-15 Cr,immediate,user_004,2025-07-13T00:00:00
|
||||
LED-0164,PER-0164,ACC-0164,housing,inactive,site_visit_done,1.5-2.5 Cr,12_months,user_004,2024-05-23T00:00:00
|
||||
LED-0165,PER-0165,ACC-0165,magicbricks,active,contacted,2.5-4 Cr,immediate,user_003,2025-10-06T00:00:00
|
||||
LED-0166,PER-0166,ACC-0166,housing,inactive,site_visit_done,15-25 Cr,6_months,user_001,2024-08-17T00:00:00
|
||||
LED-0167,PER-0167,,walk_in,active,new,6-10 Cr,investment,user_005,2025-09-16T00:00:00
|
||||
LED-0168,PER-0168,ACC-0168,magicbricks,inactive,new,15-25 Cr,investment,user_005,2025-08-25T00:00:00
|
||||
LED-0169,PER-0169,,facebook,dropped,site_visit_scheduled,4-6 Cr,6_months,user_005,2024-12-31T00:00:00
|
||||
LED-0170,PER-0170,ACC-0170,housing,converted,negotiation,2.5-4 Cr,immediate,user_003,2026-02-11T00:00:00
|
||||
LED-0171,PER-0171,,housing,converted,contacted,15-25 Cr,6_months,user_003,2024-01-13T00:00:00
|
||||
LED-0172,PER-0172,,magicbricks,active,closed_lost,15-25 Cr,6_months,user_003,2024-02-12T00:00:00
|
||||
LED-0173,PER-0173,,website,dropped,booking_pending,15-25 Cr,3_months,user_004,2024-08-08T00:00:00
|
||||
LED-0174,PER-0174,ACC-0174,magicbricks,inactive,closed_lost,15-25 Cr,investment,user_002,2024-05-08T00:00:00
|
||||
LED-0175,PER-0175,ACC-0175,99acres,dropped,closed_won,2.5-4 Cr,investment,user_005,2024-10-23T00:00:00
|
||||
LED-0176,PER-0176,,99acres,active,site_visit_done,2.5-4 Cr,investment,user_005,2025-11-13T00:00:00
|
||||
LED-0177,PER-0177,ACC-0177,website,active,new,2.5-4 Cr,investment,user_004,2025-10-03T00:00:00
|
||||
LED-0178,PER-0178,,walk_in,converted,booking_pending,6-10 Cr,6_months,user_001,2025-05-16T00:00:00
|
||||
LED-0179,PER-0179,ACC-0179,referral,dropped,booking_pending,4-6 Cr,6_months,user_005,2024-01-22T00:00:00
|
||||
LED-0180,PER-0180,ACC-0180,google_ads,active,nurturing,10-15 Cr,6_months,user_003,2024-04-07T00:00:00
|
||||
LED-0181,PER-0181,ACC-0181,website,active,booking_pending,15-25 Cr,3_months,user_005,2025-09-05T00:00:00
|
||||
LED-0182,PER-0182,ACC-0182,99acres,converted,qualified,15-25 Cr,12_months,user_001,2024-12-04T00:00:00
|
||||
LED-0183,PER-0183,,magicbricks,active,closed_lost,10-15 Cr,3_months,user_001,2025-07-28T00:00:00
|
||||
LED-0184,PER-0184,ACC-0184,google_ads,active,negotiation,10-15 Cr,investment,user_002,2025-11-17T00:00:00
|
||||
LED-0185,PER-0185,ACC-0185,website,active,nurturing,15-25 Cr,6_months,user_002,2025-11-01T00:00:00
|
||||
LED-0186,PER-0186,ACC-0186,walk_in,active,nurturing,15-25 Cr,investment,user_004,2024-12-29T00:00:00
|
||||
LED-0187,PER-0187,ACC-0187,referral,inactive,closed_lost,6-10 Cr,6_months,user_005,2024-08-27T00:00:00
|
||||
LED-0188,PER-0188,ACC-0188,website,active,closed_won,10-15 Cr,3_months,user_002,2024-12-21T00:00:00
|
||||
LED-0189,PER-0189,ACC-0189,google_ads,active,booking_pending,4-6 Cr,12_months,user_003,2025-11-17T00:00:00
|
||||
LED-0190,PER-0190,,magicbricks,active,booking_pending,1.5-2.5 Cr,investment,user_001,2025-06-28T00:00:00
|
||||
LED-0191,PER-0191,ACC-0191,magicbricks,active,negotiation,10-15 Cr,6_months,user_005,2024-01-19T00:00:00
|
||||
LED-0192,PER-0192,ACC-0192,google_ads,active,booking_pending,2.5-4 Cr,12_months,user_005,2026-01-22T00:00:00
|
||||
LED-0193,PER-0193,ACC-0193,99acres,active,negotiation,1.5-2.5 Cr,immediate,user_002,2024-07-23T00:00:00
|
||||
LED-0194,PER-0194,,walk_in,active,site_visit_done,15-25 Cr,12_months,user_003,2024-09-07T00:00:00
|
||||
LED-0195,PER-0195,ACC-0195,housing,active,site_visit_scheduled,2.5-4 Cr,3_months,user_003,2024-12-16T00:00:00
|
||||
LED-0196,PER-0196,ACC-0196,google_ads,converted,site_visit_done,4-6 Cr,12_months,user_002,2024-01-01T00:00:00
|
||||
LED-0197,PER-0197,,housing,active,site_visit_done,10-15 Cr,12_months,user_001,2024-08-06T00:00:00
|
||||
LED-0198,PER-0198,,website,dropped,site_visit_done,2.5-4 Cr,3_months,user_003,2025-04-12T00:00:00
|
||||
LED-0199,PER-0199,ACC-0199,99acres,active,new,15-25 Cr,6_months,user_003,2025-12-07T00:00:00
|
||||
LED-0200,PER-0200,ACC-0200,facebook,active,closed_lost,10-15 Cr,6_months,user_001,2024-11-30T00:00:00
|
||||
LED-0201,PER-0201,ACC-0201,99acres,inactive,site_visit_done,4-6 Cr,3_months,user_002,2024-07-25T00:00:00
|
||||
LED-0202,PER-0202,ACC-0202,facebook,active,booking_pending,4-6 Cr,6_months,user_001,2024-03-27T00:00:00
|
||||
LED-0203,PER-0203,ACC-0203,99acres,converted,closed_won,15-25 Cr,immediate,user_003,2025-07-03T00:00:00
|
||||
LED-0204,PER-0204,ACC-0204,google_ads,inactive,nurturing,2.5-4 Cr,12_months,user_005,2024-07-11T00:00:00
|
||||
LED-0205,PER-0205,ACC-0205,walk_in,active,closed_won,15-25 Cr,6_months,user_001,2025-05-02T00:00:00
|
||||
LED-0206,PER-0206,ACC-0206,walk_in,active,contacted,1.5-2.5 Cr,12_months,user_003,2024-06-06T00:00:00
|
||||
LED-0207,PER-0207,ACC-0207,google_ads,dropped,booking_pending,15-25 Cr,immediate,user_003,2025-09-10T00:00:00
|
||||
LED-0208,PER-0208,ACC-0208,99acres,active,qualified,1.5-2.5 Cr,immediate,user_002,2025-01-05T00:00:00
|
||||
LED-0209,PER-0209,,99acres,dropped,site_visit_scheduled,4-6 Cr,immediate,user_004,2024-02-11T00:00:00
|
||||
LED-0210,PER-0210,,walk_in,dropped,site_visit_scheduled,15-25 Cr,investment,user_002,2025-09-10T00:00:00
|
||||
LED-0211,PER-0211,ACC-0211,website,converted,negotiation,1.5-2.5 Cr,6_months,user_005,2025-08-23T00:00:00
|
||||
LED-0212,PER-0212,ACC-0212,housing,active,closed_lost,10-15 Cr,immediate,user_005,2024-04-06T00:00:00
|
||||
LED-0213,PER-0213,ACC-0213,referral,active,closed_lost,2.5-4 Cr,6_months,user_002,2024-04-29T00:00:00
|
||||
LED-0214,PER-0214,ACC-0214,99acres,dropped,closed_lost,4-6 Cr,immediate,user_005,2025-08-07T00:00:00
|
||||
LED-0215,PER-0215,,website,dropped,site_visit_done,15-25 Cr,12_months,user_001,2025-05-14T00:00:00
|
||||
LED-0216,PER-0216,ACC-0216,99acres,inactive,closed_won,10-15 Cr,immediate,user_005,2025-01-14T00:00:00
|
||||
LED-0217,PER-0217,,referral,active,new,15-25 Cr,12_months,user_005,2024-08-17T00:00:00
|
||||
LED-0218,PER-0218,ACC-0218,magicbricks,active,closed_lost,2.5-4 Cr,3_months,user_005,2026-01-10T00:00:00
|
||||
LED-0219,PER-0219,ACC-0219,google_ads,active,nurturing,10-15 Cr,investment,user_004,2025-06-29T00:00:00
|
||||
LED-0220,PER-0220,,housing,converted,site_visit_scheduled,1.5-2.5 Cr,12_months,user_003,2024-09-15T00:00:00
|
||||
LED-0221,PER-0221,ACC-0221,walk_in,converted,new,1.5-2.5 Cr,3_months,user_005,2024-01-10T00:00:00
|
||||
LED-0222,PER-0222,ACC-0222,referral,active,contacted,2.5-4 Cr,6_months,user_002,2025-12-17T00:00:00
|
||||
LED-0223,PER-0223,ACC-0223,magicbricks,active,negotiation,10-15 Cr,3_months,user_001,2025-05-15T00:00:00
|
||||
LED-0224,PER-0224,,99acres,active,site_visit_done,10-15 Cr,12_months,user_002,2025-09-14T00:00:00
|
||||
LED-0225,PER-0225,,referral,inactive,closed_lost,2.5-4 Cr,investment,user_003,2024-11-16T00:00:00
|
||||
LED-0226,PER-0226,ACC-0226,google_ads,converted,closed_won,2.5-4 Cr,investment,user_004,2024-05-31T00:00:00
|
||||
LED-0227,PER-0227,,google_ads,dropped,new,6-10 Cr,3_months,user_005,2025-07-12T00:00:00
|
||||
LED-0228,PER-0228,ACC-0228,99acres,converted,site_visit_scheduled,1.5-2.5 Cr,investment,user_003,2025-02-10T00:00:00
|
||||
LED-0229,PER-0229,ACC-0229,referral,converted,site_visit_scheduled,1.5-2.5 Cr,immediate,user_001,2025-11-14T00:00:00
|
||||
LED-0230,PER-0230,,website,active,qualified,1.5-2.5 Cr,3_months,user_004,2025-05-02T00:00:00
|
||||
LED-0231,PER-0231,ACC-0231,google_ads,active,negotiation,10-15 Cr,12_months,user_003,2025-10-16T00:00:00
|
||||
LED-0232,PER-0232,,referral,dropped,qualified,4-6 Cr,3_months,user_004,2025-05-22T00:00:00
|
||||
LED-0233,PER-0233,,facebook,active,new,6-10 Cr,6_months,user_003,2025-08-30T00:00:00
|
||||
LED-0234,PER-0234,,referral,converted,closed_won,2.5-4 Cr,12_months,user_003,2025-06-02T00:00:00
|
||||
LED-0235,PER-0235,ACC-0235,website,active,contacted,1.5-2.5 Cr,investment,user_002,2024-05-20T00:00:00
|
||||
LED-0236,PER-0236,ACC-0236,magicbricks,dropped,qualified,6-10 Cr,6_months,user_002,2025-08-02T00:00:00
|
||||
LED-0237,PER-0237,ACC-0237,walk_in,active,site_visit_done,6-10 Cr,investment,user_004,2024-12-15T00:00:00
|
||||
LED-0238,PER-0238,ACC-0238,google_ads,inactive,site_visit_scheduled,15-25 Cr,6_months,user_005,2025-01-18T00:00:00
|
||||
LED-0239,PER-0239,ACC-0239,referral,dropped,qualified,15-25 Cr,12_months,user_002,2024-10-01T00:00:00
|
||||
LED-0240,PER-0240,,website,active,contacted,15-25 Cr,6_months,user_004,2024-10-13T00:00:00
|
||||
LED-0241,PER-0241,,google_ads,active,contacted,6-10 Cr,3_months,user_002,2025-12-21T00:00:00
|
||||
LED-0242,PER-0242,ACC-0242,housing,active,qualified,6-10 Cr,6_months,user_002,2025-04-08T00:00:00
|
||||
LED-0243,PER-0243,,99acres,active,closed_won,2.5-4 Cr,investment,user_003,2024-02-19T00:00:00
|
||||
LED-0244,PER-0244,ACC-0244,google_ads,active,qualified,2.5-4 Cr,3_months,user_001,2025-04-19T00:00:00
|
||||
LED-0245,PER-0245,ACC-0245,referral,active,closed_lost,6-10 Cr,6_months,user_004,2024-02-07T00:00:00
|
||||
LED-0246,PER-0246,,housing,active,closed_won,10-15 Cr,6_months,user_004,2025-03-20T00:00:00
|
||||
LED-0247,PER-0247,,google_ads,active,booking_pending,4-6 Cr,3_months,user_005,2024-08-07T00:00:00
|
||||
LED-0248,PER-0248,ACC-0248,housing,active,contacted,1.5-2.5 Cr,12_months,user_005,2025-06-22T00:00:00
|
||||
LED-0249,PER-0249,ACC-0249,referral,active,negotiation,1.5-2.5 Cr,6_months,user_004,2024-07-15T00:00:00
|
||||
LED-0250,PER-0250,,facebook,dropped,new,10-15 Cr,investment,user_003,2025-03-21T00:00:00
|
||||
|
401
db assets/synthetic_crm_v1/csv/crm_opportunities.csv
Normal file
401
db assets/synthetic_crm_v1/csv/crm_opportunities.csv
Normal file
@@ -0,0 +1,401 @@
|
||||
opportunity_id,lead_id,project_id,unit_id,stage,value,probability,expected_close_date,next_action
|
||||
OPP-1-1,LED-0001,PRJ-004,PRJ-004-U019,closed_lost,22.28,0.37,2026-08-15T00:00:00,document_collection
|
||||
OPP-1-2,LED-0001,PRJ-011,PRJ-011-U010,closed_won,6.18,0.86,2026-08-27T00:00:00,price_negotiation
|
||||
OPP-1-3,LED-0001,PRJ-012,PRJ-012-U001,verbal_commitment,20.23,0.89,2026-07-22T00:00:00,follow_up_call
|
||||
OPP-2-1,LED-0002,PRJ-002,PRJ-002-U019,verbal_commitment,10.46,0.34,2026-10-04T00:00:00,document_collection
|
||||
OPP-2-2,LED-0002,PRJ-004,PRJ-004-U020,discovery,18.88,0.38,2026-09-12T00:00:00,follow_up_call
|
||||
OPP-3-1,LED-0003,PRJ-004,PRJ-004-U004,site_visit,22.05,0.51,2026-09-11T00:00:00,follow_up_call
|
||||
OPP-3-2,LED-0003,PRJ-013,PRJ-013-U015,proposal,26.57,0.75,2026-06-07T00:00:00,document_collection
|
||||
OPP-4-1,LED-0004,PRJ-014,PRJ-014-U006,site_visit,58.43,0.66,2026-08-15T00:00:00,schedule_site_visit
|
||||
OPP-4-2,LED-0004,PRJ-004,PRJ-004-U020,prospecting,18.88,0.74,2026-08-02T00:00:00,family_meeting
|
||||
OPP-4-3,LED-0004,PRJ-008,PRJ-008-U007,site_visit,24.0,0.33,2026-06-15T00:00:00,schedule_site_visit
|
||||
OPP-5-1,LED-0005,PRJ-012,PRJ-012-U004,closed_won,10.9,0.23,2026-08-22T00:00:00,send_proposal
|
||||
OPP-6-1,LED-0006,PRJ-012,PRJ-012-U007,proposal,2.7,0.51,2026-08-11T00:00:00,price_negotiation
|
||||
OPP-6-2,LED-0006,PRJ-002,PRJ-002-U015,closed_lost,4.45,0.88,2026-07-09T00:00:00,family_meeting
|
||||
OPP-7-1,LED-0007,PRJ-011,PRJ-011-U007,negotiation,32.9,0.75,2026-09-20T00:00:00,follow_up_call
|
||||
OPP-7-2,LED-0007,PRJ-013,PRJ-013-U007,site_visit,38.85,0.22,2026-10-04T00:00:00,family_meeting
|
||||
OPP-7-3,LED-0007,PRJ-014,PRJ-014-U001,prospecting,73.38,0.45,2026-07-16T00:00:00,schedule_site_visit
|
||||
OPP-8-1,LED-0008,PRJ-011,PRJ-011-U007,discovery,32.9,0.86,2026-05-28T00:00:00,send_proposal
|
||||
OPP-8-2,LED-0008,PRJ-002,PRJ-002-U014,negotiation,7.77,0.86,2026-10-09T00:00:00,follow_up_call
|
||||
OPP-9-1,LED-0009,PRJ-013,PRJ-013-U007,prospecting,38.85,0.64,2026-09-10T00:00:00,family_meeting
|
||||
OPP-9-2,LED-0009,PRJ-003,PRJ-003-U010,discovery,15.57,0.76,2026-08-01T00:00:00,send_proposal
|
||||
OPP-10-1,LED-0010,PRJ-005,PRJ-005-U009,closed_won,2.39,0.76,2026-10-08T00:00:00,send_proposal
|
||||
OPP-11-1,LED-0011,PRJ-008,PRJ-008-U018,negotiation,51.49,0.81,2026-06-04T00:00:00,family_meeting
|
||||
OPP-12-1,LED-0012,PRJ-002,PRJ-002-U001,discovery,2.96,0.32,2026-09-25T00:00:00,follow_up_call
|
||||
OPP-12-2,LED-0012,PRJ-008,PRJ-008-U018,site_visit,51.49,0.39,2026-05-24T00:00:00,family_meeting
|
||||
OPP-13-1,LED-0013,PRJ-004,PRJ-004-U008,discovery,31.98,0.59,2026-10-02T00:00:00,send_proposal
|
||||
OPP-14-1,LED-0014,PRJ-008,PRJ-008-U014,site_visit,5.24,0.57,2026-09-20T00:00:00,price_negotiation
|
||||
OPP-15-1,LED-0015,PRJ-003,PRJ-003-U003,proposal,20.76,0.79,2026-06-02T00:00:00,document_collection
|
||||
OPP-15-2,LED-0015,PRJ-012,PRJ-012-U004,negotiation,10.9,0.59,2026-09-26T00:00:00,follow_up_call
|
||||
OPP-16-1,LED-0016,PRJ-003,PRJ-003-U011,verbal_commitment,3.86,0.86,2026-05-30T00:00:00,schedule_site_visit
|
||||
OPP-16-2,LED-0016,PRJ-014,PRJ-014-U002,closed_lost,24.47,0.49,2026-09-04T00:00:00,send_proposal
|
||||
OPP-17-1,LED-0017,PRJ-010,PRJ-010-U004,site_visit,4.99,0.47,2026-07-11T00:00:00,follow_up_call
|
||||
OPP-17-2,LED-0017,PRJ-002,PRJ-002-U019,discovery,10.46,0.22,2026-06-18T00:00:00,document_collection
|
||||
OPP-18-1,LED-0018,PRJ-001,PRJ-001-U010,verbal_commitment,38.51,0.21,2026-10-10T00:00:00,family_meeting
|
||||
OPP-18-2,LED-0018,PRJ-001,PRJ-001-U002,prospecting,32.98,0.32,2026-05-28T00:00:00,schedule_site_visit
|
||||
OPP-19-1,LED-0019,PRJ-003,PRJ-003-U011,verbal_commitment,3.86,0.54,2026-07-23T00:00:00,send_proposal
|
||||
OPP-20-1,LED-0020,PRJ-003,PRJ-003-U003,prospecting,20.76,0.57,2026-09-02T00:00:00,send_proposal
|
||||
OPP-20-2,LED-0020,PRJ-006,PRJ-006-U003,discovery,14.7,0.59,2026-06-17T00:00:00,document_collection
|
||||
OPP-21-1,LED-0021,PRJ-002,PRJ-002-U013,discovery,2.34,0.53,2026-08-26T00:00:00,schedule_site_visit
|
||||
OPP-21-2,LED-0021,PRJ-005,PRJ-005-U008,verbal_commitment,3.88,0.89,2026-08-26T00:00:00,follow_up_call
|
||||
OPP-21-3,LED-0021,PRJ-004,PRJ-004-U001,proposal,6.2,0.22,2026-10-14T00:00:00,schedule_site_visit
|
||||
OPP-22-1,LED-0022,PRJ-005,PRJ-005-U005,prospecting,19.27,0.95,2026-07-07T00:00:00,follow_up_call
|
||||
OPP-22-2,LED-0022,PRJ-002,PRJ-002-U001,closed_lost,2.96,0.14,2026-10-11T00:00:00,family_meeting
|
||||
OPP-23-1,LED-0023,PRJ-006,PRJ-006-U001,verbal_commitment,5.95,0.91,2026-10-09T00:00:00,send_proposal
|
||||
OPP-23-2,LED-0023,PRJ-008,PRJ-008-U001,discovery,3.81,0.15,2026-07-13T00:00:00,schedule_site_visit
|
||||
OPP-23-3,LED-0023,PRJ-004,PRJ-004-U020,site_visit,18.88,0.39,2026-07-02T00:00:00,price_negotiation
|
||||
OPP-24-1,LED-0024,PRJ-006,PRJ-006-U002,discovery,24.02,0.8,2026-08-11T00:00:00,family_meeting
|
||||
OPP-25-1,LED-0025,PRJ-003,PRJ-003-U001,discovery,69.0,0.38,2026-07-05T00:00:00,family_meeting
|
||||
OPP-25-2,LED-0025,PRJ-002,PRJ-002-U001,closed_won,2.96,0.59,2026-09-20T00:00:00,send_proposal
|
||||
OPP-26-1,LED-0026,PRJ-013,PRJ-013-U015,discovery,26.57,0.17,2026-08-14T00:00:00,document_collection
|
||||
OPP-27-1,LED-0027,PRJ-009,PRJ-009-U012,verbal_commitment,52.97,0.83,2026-09-28T00:00:00,family_meeting
|
||||
OPP-27-2,LED-0027,PRJ-003,PRJ-003-U003,discovery,20.76,0.89,2026-10-09T00:00:00,schedule_site_visit
|
||||
OPP-28-1,LED-0028,PRJ-008,PRJ-008-U018,verbal_commitment,51.49,0.8,2026-09-26T00:00:00,send_proposal
|
||||
OPP-28-2,LED-0028,PRJ-013,PRJ-013-U013,prospecting,11.61,0.25,2026-07-08T00:00:00,schedule_site_visit
|
||||
OPP-28-3,LED-0028,PRJ-006,PRJ-006-U002,negotiation,24.02,0.41,2026-09-13T00:00:00,document_collection
|
||||
OPP-29-1,LED-0029,PRJ-004,PRJ-004-U010,negotiation,2.02,0.68,2026-08-27T00:00:00,document_collection
|
||||
OPP-30-1,LED-0030,PRJ-002,PRJ-002-U011,site_visit,3.87,0.73,2026-10-08T00:00:00,send_proposal
|
||||
OPP-31-1,LED-0031,PRJ-006,PRJ-006-U005,closed_lost,37.11,0.22,2026-07-03T00:00:00,schedule_site_visit
|
||||
OPP-32-1,LED-0032,PRJ-013,PRJ-013-U005,site_visit,10.37,0.91,2026-08-29T00:00:00,schedule_site_visit
|
||||
OPP-33-1,LED-0033,PRJ-010,PRJ-010-U009,negotiation,9.32,0.81,2026-07-08T00:00:00,price_negotiation
|
||||
OPP-34-1,LED-0034,PRJ-012,PRJ-012-U001,verbal_commitment,20.23,0.79,2026-07-03T00:00:00,schedule_site_visit
|
||||
OPP-35-1,LED-0035,PRJ-009,PRJ-009-U009,closed_won,5.32,0.44,2026-07-17T00:00:00,schedule_site_visit
|
||||
OPP-36-1,LED-0036,PRJ-004,PRJ-004-U001,verbal_commitment,6.2,0.4,2026-07-31T00:00:00,document_collection
|
||||
OPP-36-2,LED-0036,PRJ-008,PRJ-008-U003,closed_won,8.37,0.19,2026-07-07T00:00:00,send_proposal
|
||||
OPP-36-3,LED-0036,PRJ-014,PRJ-014-U002,verbal_commitment,24.47,0.19,2026-09-01T00:00:00,schedule_site_visit
|
||||
OPP-37-1,LED-0037,PRJ-003,PRJ-003-U008,discovery,5.39,0.75,2026-10-08T00:00:00,family_meeting
|
||||
OPP-37-2,LED-0037,PRJ-009,PRJ-009-U004,prospecting,3.15,0.42,2026-05-31T00:00:00,follow_up_call
|
||||
OPP-37-3,LED-0037,PRJ-005,PRJ-005-U008,site_visit,3.88,0.81,2026-08-01T00:00:00,send_proposal
|
||||
OPP-38-1,LED-0038,PRJ-012,PRJ-012-U001,prospecting,20.23,0.23,2026-08-08T00:00:00,document_collection
|
||||
OPP-38-2,LED-0038,PRJ-009,PRJ-009-U011,discovery,2.2,0.77,2026-08-07T00:00:00,document_collection
|
||||
OPP-39-1,LED-0039,PRJ-001,PRJ-001-U010,closed_won,38.51,0.88,2026-06-16T00:00:00,family_meeting
|
||||
OPP-40-1,LED-0040,PRJ-014,PRJ-014-U001,verbal_commitment,73.38,0.89,2026-06-14T00:00:00,price_negotiation
|
||||
OPP-40-2,LED-0040,PRJ-007,PRJ-007-U012,prospecting,13.22,0.5,2026-10-01T00:00:00,send_proposal
|
||||
OPP-40-3,LED-0040,PRJ-003,PRJ-003-U005,verbal_commitment,23.58,0.91,2026-05-20T00:00:00,document_collection
|
||||
OPP-41-1,LED-0041,PRJ-003,PRJ-003-U008,verbal_commitment,5.39,0.91,2026-06-30T00:00:00,schedule_site_visit
|
||||
OPP-41-2,LED-0041,PRJ-012,PRJ-012-U007,closed_won,2.7,0.34,2026-08-18T00:00:00,send_proposal
|
||||
OPP-42-1,LED-0042,PRJ-003,PRJ-003-U003,closed_lost,20.76,0.24,2026-10-09T00:00:00,document_collection
|
||||
OPP-42-2,LED-0042,PRJ-004,PRJ-004-U020,closed_lost,18.88,0.3,2026-07-24T00:00:00,price_negotiation
|
||||
OPP-42-3,LED-0042,PRJ-013,PRJ-013-U007,closed_won,38.85,0.5,2026-09-11T00:00:00,schedule_site_visit
|
||||
OPP-43-1,LED-0043,PRJ-009,PRJ-009-U003,site_visit,6.82,0.15,2026-07-23T00:00:00,send_proposal
|
||||
OPP-43-2,LED-0043,PRJ-004,PRJ-004-U010,closed_lost,2.02,0.84,2026-06-30T00:00:00,send_proposal
|
||||
OPP-43-3,LED-0043,PRJ-011,PRJ-011-U010,negotiation,6.18,0.24,2026-08-13T00:00:00,family_meeting
|
||||
OPP-44-1,LED-0044,PRJ-012,PRJ-012-U007,prospecting,2.7,0.59,2026-06-17T00:00:00,document_collection
|
||||
OPP-45-1,LED-0045,PRJ-008,PRJ-008-U018,site_visit,51.49,0.19,2026-09-25T00:00:00,family_meeting
|
||||
OPP-46-1,LED-0046,PRJ-004,PRJ-004-U017,prospecting,5.05,0.73,2026-06-04T00:00:00,schedule_site_visit
|
||||
OPP-46-2,LED-0046,PRJ-004,PRJ-004-U017,proposal,5.05,0.49,2026-08-29T00:00:00,document_collection
|
||||
OPP-47-1,LED-0047,PRJ-004,PRJ-004-U008,discovery,31.98,0.44,2026-08-13T00:00:00,schedule_site_visit
|
||||
OPP-48-1,LED-0048,PRJ-008,PRJ-008-U003,negotiation,8.37,0.44,2026-10-12T00:00:00,send_proposal
|
||||
OPP-49-1,LED-0049,PRJ-010,PRJ-010-U009,proposal,9.32,0.79,2026-07-26T00:00:00,send_proposal
|
||||
OPP-50-1,LED-0050,PRJ-007,PRJ-007-U001,verbal_commitment,6.59,0.84,2026-07-07T00:00:00,document_collection
|
||||
OPP-51-1,LED-0051,PRJ-009,PRJ-009-U004,discovery,3.15,0.32,2026-06-26T00:00:00,schedule_site_visit
|
||||
OPP-51-2,LED-0051,PRJ-012,PRJ-012-U004,closed_lost,10.9,0.63,2026-06-20T00:00:00,document_collection
|
||||
OPP-52-1,LED-0052,PRJ-007,PRJ-007-U012,proposal,13.22,0.24,2026-08-25T00:00:00,family_meeting
|
||||
OPP-52-2,LED-0052,PRJ-011,PRJ-011-U004,negotiation,50.68,0.34,2026-10-01T00:00:00,price_negotiation
|
||||
OPP-53-1,LED-0053,PRJ-008,PRJ-008-U003,proposal,8.37,0.86,2026-07-21T00:00:00,family_meeting
|
||||
OPP-53-2,LED-0053,PRJ-013,PRJ-013-U012,proposal,4.05,0.73,2026-05-26T00:00:00,send_proposal
|
||||
OPP-54-1,LED-0054,PRJ-008,PRJ-008-U014,closed_lost,5.24,0.58,2026-10-03T00:00:00,follow_up_call
|
||||
OPP-55-1,LED-0055,PRJ-009,PRJ-009-U004,prospecting,3.15,0.81,2026-06-20T00:00:00,send_proposal
|
||||
OPP-56-1,LED-0056,PRJ-009,PRJ-009-U003,discovery,6.82,0.81,2026-06-06T00:00:00,send_proposal
|
||||
OPP-57-1,LED-0057,PRJ-007,PRJ-007-U014,negotiation,6.92,0.41,2026-09-10T00:00:00,family_meeting
|
||||
OPP-58-1,LED-0058,PRJ-009,PRJ-009-U008,verbal_commitment,14.61,0.53,2026-07-13T00:00:00,send_proposal
|
||||
OPP-59-1,LED-0059,PRJ-004,PRJ-004-U019,verbal_commitment,22.28,0.23,2026-06-08T00:00:00,schedule_site_visit
|
||||
OPP-60-1,LED-0060,PRJ-012,PRJ-012-U001,verbal_commitment,20.23,0.51,2026-10-01T00:00:00,schedule_site_visit
|
||||
OPP-60-2,LED-0060,PRJ-012,PRJ-012-U001,prospecting,20.23,0.31,2026-09-30T00:00:00,price_negotiation
|
||||
OPP-61-1,LED-0061,PRJ-013,PRJ-013-U005,site_visit,10.37,0.36,2026-09-29T00:00:00,send_proposal
|
||||
OPP-61-2,LED-0061,PRJ-002,PRJ-002-U012,discovery,13.96,0.26,2026-06-24T00:00:00,follow_up_call
|
||||
OPP-61-3,LED-0061,PRJ-005,PRJ-005-U009,negotiation,2.39,0.23,2026-07-05T00:00:00,schedule_site_visit
|
||||
OPP-62-1,LED-0062,PRJ-009,PRJ-009-U003,discovery,6.82,0.48,2026-05-28T00:00:00,send_proposal
|
||||
OPP-62-2,LED-0062,PRJ-013,PRJ-013-U015,prospecting,26.57,0.26,2026-09-07T00:00:00,family_meeting
|
||||
OPP-63-1,LED-0063,PRJ-010,PRJ-010-U009,closed_won,9.32,0.57,2026-05-29T00:00:00,send_proposal
|
||||
OPP-63-2,LED-0063,PRJ-003,PRJ-003-U001,closed_won,69.0,0.36,2026-09-09T00:00:00,price_negotiation
|
||||
OPP-64-1,LED-0064,PRJ-012,PRJ-012-U007,verbal_commitment,2.7,0.89,2026-06-10T00:00:00,price_negotiation
|
||||
OPP-64-2,LED-0064,PRJ-013,PRJ-013-U008,discovery,35.4,0.35,2026-06-21T00:00:00,schedule_site_visit
|
||||
OPP-65-1,LED-0065,PRJ-012,PRJ-012-U004,proposal,10.9,0.1,2026-05-24T00:00:00,family_meeting
|
||||
OPP-66-1,LED-0066,PRJ-003,PRJ-003-U005,prospecting,23.58,0.39,2026-08-22T00:00:00,follow_up_call
|
||||
OPP-67-1,LED-0067,PRJ-009,PRJ-009-U010,prospecting,14.67,0.59,2026-08-05T00:00:00,follow_up_call
|
||||
OPP-68-1,LED-0068,PRJ-002,PRJ-002-U017,closed_lost,1.95,0.18,2026-08-05T00:00:00,follow_up_call
|
||||
OPP-69-1,LED-0069,PRJ-004,PRJ-004-U004,discovery,22.05,0.73,2026-10-11T00:00:00,family_meeting
|
||||
OPP-69-2,LED-0069,PRJ-002,PRJ-002-U017,closed_lost,1.95,0.25,2026-08-29T00:00:00,schedule_site_visit
|
||||
OPP-69-3,LED-0069,PRJ-011,PRJ-011-U014,prospecting,10.7,0.18,2026-06-22T00:00:00,document_collection
|
||||
OPP-70-1,LED-0070,PRJ-009,PRJ-009-U011,discovery,2.2,0.83,2026-05-25T00:00:00,send_proposal
|
||||
OPP-70-2,LED-0070,PRJ-007,PRJ-007-U012,closed_won,13.22,0.47,2026-07-11T00:00:00,follow_up_call
|
||||
OPP-70-3,LED-0070,PRJ-009,PRJ-009-U012,verbal_commitment,52.97,0.81,2026-06-26T00:00:00,price_negotiation
|
||||
OPP-71-1,LED-0071,PRJ-009,PRJ-009-U010,closed_lost,14.67,0.54,2026-09-28T00:00:00,document_collection
|
||||
OPP-71-2,LED-0071,PRJ-012,PRJ-012-U007,discovery,2.7,0.68,2026-10-03T00:00:00,document_collection
|
||||
OPP-71-3,LED-0071,PRJ-013,PRJ-013-U001,closed_lost,47.88,0.49,2026-09-15T00:00:00,document_collection
|
||||
OPP-72-1,LED-0072,PRJ-013,PRJ-013-U013,prospecting,11.61,0.39,2026-06-08T00:00:00,send_proposal
|
||||
OPP-73-1,LED-0073,PRJ-013,PRJ-013-U015,proposal,26.57,0.72,2026-10-15T00:00:00,send_proposal
|
||||
OPP-73-2,LED-0073,PRJ-001,PRJ-001-U001,discovery,19.84,0.11,2026-06-12T00:00:00,document_collection
|
||||
OPP-74-1,LED-0074,PRJ-011,PRJ-011-U009,negotiation,3.92,0.75,2026-08-08T00:00:00,price_negotiation
|
||||
OPP-75-1,LED-0075,PRJ-009,PRJ-009-U009,prospecting,5.32,0.43,2026-09-18T00:00:00,schedule_site_visit
|
||||
OPP-76-1,LED-0076,PRJ-006,PRJ-006-U001,verbal_commitment,5.95,0.77,2026-05-28T00:00:00,family_meeting
|
||||
OPP-77-1,LED-0077,PRJ-005,PRJ-005-U006,closed_won,10.06,0.24,2026-08-20T00:00:00,document_collection
|
||||
OPP-78-1,LED-0078,PRJ-004,PRJ-004-U001,discovery,6.2,0.63,2026-10-03T00:00:00,document_collection
|
||||
OPP-79-1,LED-0079,PRJ-003,PRJ-003-U004,closed_lost,17.22,0.25,2026-08-21T00:00:00,send_proposal
|
||||
OPP-79-2,LED-0079,PRJ-004,PRJ-004-U008,site_visit,31.98,0.13,2026-10-10T00:00:00,schedule_site_visit
|
||||
OPP-80-1,LED-0080,PRJ-004,PRJ-004-U001,prospecting,6.2,0.69,2026-08-30T00:00:00,send_proposal
|
||||
OPP-80-2,LED-0080,PRJ-011,PRJ-011-U003,prospecting,23.35,0.51,2026-08-04T00:00:00,send_proposal
|
||||
OPP-81-1,LED-0081,PRJ-010,PRJ-010-U004,verbal_commitment,4.99,0.41,2026-10-08T00:00:00,follow_up_call
|
||||
OPP-81-2,LED-0081,PRJ-004,PRJ-004-U017,discovery,5.05,0.65,2026-10-13T00:00:00,follow_up_call
|
||||
OPP-82-1,LED-0082,PRJ-009,PRJ-009-U003,negotiation,6.82,0.45,2026-10-03T00:00:00,send_proposal
|
||||
OPP-83-1,LED-0083,PRJ-004,PRJ-004-U017,prospecting,5.05,0.67,2026-08-14T00:00:00,send_proposal
|
||||
OPP-84-1,LED-0084,PRJ-001,PRJ-001-U010,closed_won,38.51,0.23,2026-09-04T00:00:00,price_negotiation
|
||||
OPP-84-2,LED-0084,PRJ-006,PRJ-006-U003,negotiation,14.7,0.93,2026-10-08T00:00:00,schedule_site_visit
|
||||
OPP-85-1,LED-0085,PRJ-005,PRJ-005-U009,discovery,2.39,0.66,2026-07-30T00:00:00,family_meeting
|
||||
OPP-86-1,LED-0086,PRJ-009,PRJ-009-U009,site_visit,5.32,0.75,2026-06-29T00:00:00,document_collection
|
||||
OPP-87-1,LED-0087,PRJ-014,PRJ-014-U001,proposal,73.38,0.21,2026-06-23T00:00:00,follow_up_call
|
||||
OPP-87-2,LED-0087,PRJ-003,PRJ-003-U002,closed_won,27.76,0.69,2026-06-15T00:00:00,schedule_site_visit
|
||||
OPP-87-3,LED-0087,PRJ-004,PRJ-004-U001,prospecting,6.2,0.77,2026-09-26T00:00:00,document_collection
|
||||
OPP-88-1,LED-0088,PRJ-003,PRJ-003-U011,verbal_commitment,3.86,0.7,2026-10-07T00:00:00,follow_up_call
|
||||
OPP-88-2,LED-0088,PRJ-002,PRJ-002-U010,negotiation,3.75,0.49,2026-08-05T00:00:00,follow_up_call
|
||||
OPP-89-1,LED-0089,PRJ-010,PRJ-010-U010,closed_won,10.62,0.4,2026-08-29T00:00:00,family_meeting
|
||||
OPP-89-2,LED-0089,PRJ-002,PRJ-002-U005,closed_lost,14.03,0.52,2026-06-21T00:00:00,schedule_site_visit
|
||||
OPP-90-1,LED-0090,PRJ-012,PRJ-012-U001,closed_lost,20.23,0.47,2026-08-05T00:00:00,follow_up_call
|
||||
OPP-91-1,LED-0091,PRJ-005,PRJ-005-U005,closed_lost,19.27,0.6,2026-08-07T00:00:00,family_meeting
|
||||
OPP-91-2,LED-0091,PRJ-002,PRJ-002-U015,proposal,4.45,0.39,2026-09-23T00:00:00,follow_up_call
|
||||
OPP-92-1,LED-0092,PRJ-014,PRJ-014-U005,negotiation,4.25,0.9,2026-10-01T00:00:00,document_collection
|
||||
OPP-92-2,LED-0092,PRJ-008,PRJ-008-U003,proposal,8.37,0.23,2026-08-02T00:00:00,family_meeting
|
||||
OPP-92-3,LED-0092,PRJ-004,PRJ-004-U020,closed_won,18.88,0.33,2026-07-30T00:00:00,follow_up_call
|
||||
OPP-93-1,LED-0093,PRJ-004,PRJ-004-U008,closed_lost,31.98,0.45,2026-10-15T00:00:00,schedule_site_visit
|
||||
OPP-94-1,LED-0094,PRJ-012,PRJ-012-U004,discovery,10.9,0.4,2026-10-05T00:00:00,follow_up_call
|
||||
OPP-95-1,LED-0095,PRJ-006,PRJ-006-U002,discovery,24.02,0.11,2026-09-29T00:00:00,family_meeting
|
||||
OPP-96-1,LED-0096,PRJ-009,PRJ-009-U012,negotiation,52.97,0.93,2026-08-20T00:00:00,send_proposal
|
||||
OPP-97-1,LED-0097,PRJ-002,PRJ-002-U008,discovery,71.33,0.27,2026-07-29T00:00:00,send_proposal
|
||||
OPP-98-1,LED-0098,PRJ-005,PRJ-005-U006,proposal,10.06,0.92,2026-08-28T00:00:00,schedule_site_visit
|
||||
OPP-98-2,LED-0098,PRJ-013,PRJ-013-U008,negotiation,35.4,0.65,2026-06-26T00:00:00,schedule_site_visit
|
||||
OPP-99-1,LED-0099,PRJ-012,PRJ-012-U007,closed_lost,2.7,0.25,2026-07-03T00:00:00,family_meeting
|
||||
OPP-100-1,LED-0100,PRJ-004,PRJ-004-U001,negotiation,6.2,0.75,2026-06-24T00:00:00,family_meeting
|
||||
OPP-100-2,LED-0100,PRJ-003,PRJ-003-U011,closed_lost,3.86,0.5,2026-09-10T00:00:00,document_collection
|
||||
OPP-101-1,LED-0101,PRJ-004,PRJ-004-U017,proposal,5.05,0.6,2026-08-12T00:00:00,document_collection
|
||||
OPP-101-2,LED-0101,PRJ-012,PRJ-012-U004,closed_won,10.9,0.81,2026-08-18T00:00:00,family_meeting
|
||||
OPP-102-1,LED-0102,PRJ-011,PRJ-011-U003,proposal,23.35,0.87,2026-06-27T00:00:00,follow_up_call
|
||||
OPP-103-1,LED-0103,PRJ-014,PRJ-014-U003,site_visit,25.55,0.7,2026-09-09T00:00:00,follow_up_call
|
||||
OPP-104-1,LED-0104,PRJ-006,PRJ-006-U003,negotiation,14.7,0.67,2026-10-11T00:00:00,follow_up_call
|
||||
OPP-105-1,LED-0105,PRJ-005,PRJ-005-U005,site_visit,19.27,0.2,2026-08-04T00:00:00,price_negotiation
|
||||
OPP-105-2,LED-0105,PRJ-013,PRJ-013-U004,site_visit,20.12,0.77,2026-09-02T00:00:00,schedule_site_visit
|
||||
OPP-106-1,LED-0106,PRJ-002,PRJ-002-U014,discovery,7.77,0.26,2026-10-03T00:00:00,document_collection
|
||||
OPP-106-2,LED-0106,PRJ-001,PRJ-001-U002,site_visit,32.98,0.92,2026-07-27T00:00:00,send_proposal
|
||||
OPP-106-3,LED-0106,PRJ-010,PRJ-010-U010,closed_won,10.62,0.6,2026-09-20T00:00:00,schedule_site_visit
|
||||
OPP-107-1,LED-0107,PRJ-010,PRJ-010-U013,discovery,19.77,0.31,2026-10-07T00:00:00,follow_up_call
|
||||
OPP-107-2,LED-0107,PRJ-002,PRJ-002-U017,proposal,1.95,0.77,2026-06-23T00:00:00,price_negotiation
|
||||
OPP-108-1,LED-0108,PRJ-012,PRJ-012-U007,closed_lost,2.7,0.75,2026-10-02T00:00:00,schedule_site_visit
|
||||
OPP-108-2,LED-0108,PRJ-002,PRJ-002-U008,closed_won,71.33,0.8,2026-08-17T00:00:00,family_meeting
|
||||
OPP-109-1,LED-0109,PRJ-001,PRJ-001-U016,negotiation,15.69,0.68,2026-09-11T00:00:00,schedule_site_visit
|
||||
OPP-109-2,LED-0109,PRJ-014,PRJ-014-U005,negotiation,4.25,0.2,2026-09-27T00:00:00,family_meeting
|
||||
OPP-109-3,LED-0109,PRJ-004,PRJ-004-U001,negotiation,6.2,0.88,2026-10-01T00:00:00,family_meeting
|
||||
OPP-110-1,LED-0110,PRJ-001,PRJ-001-U001,closed_won,19.84,0.37,2026-06-03T00:00:00,send_proposal
|
||||
OPP-111-1,LED-0111,PRJ-011,PRJ-011-U003,closed_lost,23.35,0.54,2026-10-15T00:00:00,send_proposal
|
||||
OPP-111-2,LED-0111,PRJ-012,PRJ-012-U001,proposal,20.23,0.87,2026-06-19T00:00:00,follow_up_call
|
||||
OPP-111-3,LED-0111,PRJ-012,PRJ-012-U007,closed_lost,2.7,0.26,2026-06-22T00:00:00,schedule_site_visit
|
||||
OPP-112-1,LED-0112,PRJ-012,PRJ-012-U007,closed_lost,2.7,0.61,2026-08-10T00:00:00,document_collection
|
||||
OPP-112-2,LED-0112,PRJ-003,PRJ-003-U002,closed_lost,27.76,0.84,2026-05-28T00:00:00,family_meeting
|
||||
OPP-113-1,LED-0113,PRJ-007,PRJ-007-U017,discovery,7.14,0.2,2026-06-20T00:00:00,send_proposal
|
||||
OPP-113-2,LED-0113,PRJ-010,PRJ-010-U011,proposal,12.73,0.88,2026-10-15T00:00:00,send_proposal
|
||||
OPP-114-1,LED-0114,PRJ-004,PRJ-004-U004,proposal,22.05,0.48,2026-07-17T00:00:00,family_meeting
|
||||
OPP-115-1,LED-0115,PRJ-009,PRJ-009-U008,closed_won,14.61,0.29,2026-07-10T00:00:00,family_meeting
|
||||
OPP-115-2,LED-0115,PRJ-013,PRJ-013-U002,verbal_commitment,43.71,0.82,2026-09-04T00:00:00,follow_up_call
|
||||
OPP-115-3,LED-0115,PRJ-014,PRJ-014-U006,prospecting,58.43,0.42,2026-10-12T00:00:00,send_proposal
|
||||
OPP-116-1,LED-0116,PRJ-003,PRJ-003-U004,discovery,17.22,0.87,2026-08-24T00:00:00,price_negotiation
|
||||
OPP-117-1,LED-0117,PRJ-003,PRJ-003-U010,closed_lost,15.57,0.43,2026-07-03T00:00:00,follow_up_call
|
||||
OPP-118-1,LED-0118,PRJ-008,PRJ-008-U009,closed_lost,13.33,0.16,2026-10-05T00:00:00,follow_up_call
|
||||
OPP-118-2,LED-0118,PRJ-014,PRJ-014-U003,site_visit,25.55,0.25,2026-05-22T00:00:00,document_collection
|
||||
OPP-118-3,LED-0118,PRJ-009,PRJ-009-U012,site_visit,52.97,0.17,2026-05-20T00:00:00,follow_up_call
|
||||
OPP-119-1,LED-0119,PRJ-004,PRJ-004-U004,discovery,22.05,0.4,2026-07-01T00:00:00,schedule_site_visit
|
||||
OPP-120-1,LED-0120,PRJ-004,PRJ-004-U019,closed_won,22.28,0.74,2026-06-07T00:00:00,schedule_site_visit
|
||||
OPP-121-1,LED-0121,PRJ-002,PRJ-002-U017,closed_lost,1.95,0.16,2026-07-06T00:00:00,schedule_site_visit
|
||||
OPP-122-1,LED-0122,PRJ-001,PRJ-001-U001,verbal_commitment,19.84,0.52,2026-09-01T00:00:00,family_meeting
|
||||
OPP-123-1,LED-0123,PRJ-011,PRJ-011-U004,prospecting,50.68,0.2,2026-06-10T00:00:00,follow_up_call
|
||||
OPP-123-2,LED-0123,PRJ-004,PRJ-004-U010,site_visit,2.02,0.81,2026-07-21T00:00:00,follow_up_call
|
||||
OPP-124-1,LED-0124,PRJ-003,PRJ-003-U003,proposal,20.76,0.51,2026-09-23T00:00:00,schedule_site_visit
|
||||
OPP-125-1,LED-0125,PRJ-007,PRJ-007-U014,prospecting,6.92,0.93,2026-08-10T00:00:00,schedule_site_visit
|
||||
OPP-125-2,LED-0125,PRJ-014,PRJ-014-U002,prospecting,24.47,0.61,2026-09-30T00:00:00,price_negotiation
|
||||
OPP-126-1,LED-0126,PRJ-004,PRJ-004-U004,discovery,22.05,0.19,2026-05-25T00:00:00,send_proposal
|
||||
OPP-127-1,LED-0127,PRJ-014,PRJ-014-U005,closed_won,4.25,0.37,2026-08-19T00:00:00,follow_up_call
|
||||
OPP-128-1,LED-0128,PRJ-014,PRJ-014-U002,closed_lost,24.47,0.35,2026-08-22T00:00:00,schedule_site_visit
|
||||
OPP-128-2,LED-0128,PRJ-013,PRJ-013-U005,prospecting,10.37,0.88,2026-07-02T00:00:00,family_meeting
|
||||
OPP-128-3,LED-0128,PRJ-009,PRJ-009-U012,verbal_commitment,52.97,0.46,2026-09-16T00:00:00,price_negotiation
|
||||
OPP-129-1,LED-0129,PRJ-001,PRJ-001-U002,verbal_commitment,32.98,0.6,2026-06-25T00:00:00,follow_up_call
|
||||
OPP-130-1,LED-0130,PRJ-014,PRJ-014-U001,closed_won,73.38,0.57,2026-10-02T00:00:00,document_collection
|
||||
OPP-130-2,LED-0130,PRJ-011,PRJ-011-U003,site_visit,23.35,0.83,2026-07-03T00:00:00,schedule_site_visit
|
||||
OPP-131-1,LED-0131,PRJ-003,PRJ-003-U004,verbal_commitment,17.22,0.34,2026-09-03T00:00:00,schedule_site_visit
|
||||
OPP-132-1,LED-0132,PRJ-005,PRJ-005-U011,discovery,2.23,0.86,2026-06-30T00:00:00,price_negotiation
|
||||
OPP-132-2,LED-0132,PRJ-011,PRJ-011-U010,closed_won,6.18,0.51,2026-06-19T00:00:00,price_negotiation
|
||||
OPP-133-1,LED-0133,PRJ-008,PRJ-008-U009,discovery,13.33,0.44,2026-07-05T00:00:00,follow_up_call
|
||||
OPP-134-1,LED-0134,PRJ-014,PRJ-014-U005,prospecting,4.25,0.4,2026-09-12T00:00:00,price_negotiation
|
||||
OPP-134-2,LED-0134,PRJ-006,PRJ-006-U002,closed_won,24.02,0.4,2026-06-12T00:00:00,family_meeting
|
||||
OPP-135-1,LED-0135,PRJ-001,PRJ-001-U008,prospecting,6.25,0.68,2026-08-13T00:00:00,family_meeting
|
||||
OPP-135-2,LED-0135,PRJ-005,PRJ-005-U009,discovery,2.39,0.75,2026-07-20T00:00:00,document_collection
|
||||
OPP-136-1,LED-0136,PRJ-012,PRJ-012-U004,proposal,10.9,0.37,2026-05-30T00:00:00,send_proposal
|
||||
OPP-137-1,LED-0137,PRJ-010,PRJ-010-U010,negotiation,10.62,0.72,2026-07-08T00:00:00,document_collection
|
||||
OPP-137-2,LED-0137,PRJ-007,PRJ-007-U014,negotiation,6.92,0.86,2026-10-08T00:00:00,price_negotiation
|
||||
OPP-138-1,LED-0138,PRJ-014,PRJ-014-U002,negotiation,24.47,0.7,2026-10-06T00:00:00,schedule_site_visit
|
||||
OPP-139-1,LED-0139,PRJ-008,PRJ-008-U001,closed_lost,3.81,0.25,2026-07-04T00:00:00,send_proposal
|
||||
OPP-140-1,LED-0140,PRJ-005,PRJ-005-U008,closed_lost,3.88,0.23,2026-06-01T00:00:00,document_collection
|
||||
OPP-141-1,LED-0141,PRJ-008,PRJ-008-U014,verbal_commitment,5.24,0.89,2026-06-06T00:00:00,schedule_site_visit
|
||||
OPP-142-1,LED-0142,PRJ-004,PRJ-004-U008,prospecting,31.98,0.27,2026-05-22T00:00:00,price_negotiation
|
||||
OPP-143-1,LED-0143,PRJ-012,PRJ-012-U004,closed_lost,10.9,0.45,2026-08-12T00:00:00,family_meeting
|
||||
OPP-143-2,LED-0143,PRJ-001,PRJ-001-U001,site_visit,19.84,0.53,2026-05-20T00:00:00,family_meeting
|
||||
OPP-144-1,LED-0144,PRJ-001,PRJ-001-U009,proposal,12.54,0.57,2026-05-26T00:00:00,send_proposal
|
||||
OPP-144-2,LED-0144,PRJ-013,PRJ-013-U012,prospecting,4.05,0.14,2026-06-10T00:00:00,price_negotiation
|
||||
OPP-145-1,LED-0145,PRJ-001,PRJ-001-U013,proposal,14.28,0.28,2026-06-06T00:00:00,send_proposal
|
||||
OPP-145-2,LED-0145,PRJ-013,PRJ-013-U006,discovery,51.53,0.52,2026-09-11T00:00:00,price_negotiation
|
||||
OPP-146-1,LED-0146,PRJ-014,PRJ-014-U006,verbal_commitment,58.43,0.42,2026-08-31T00:00:00,document_collection
|
||||
OPP-146-2,LED-0146,PRJ-011,PRJ-011-U003,proposal,23.35,0.69,2026-10-08T00:00:00,schedule_site_visit
|
||||
OPP-147-1,LED-0147,PRJ-008,PRJ-008-U001,site_visit,3.81,0.91,2026-06-24T00:00:00,follow_up_call
|
||||
OPP-148-1,LED-0148,PRJ-012,PRJ-012-U007,site_visit,2.7,0.38,2026-08-07T00:00:00,schedule_site_visit
|
||||
OPP-149-1,LED-0149,PRJ-006,PRJ-006-U005,verbal_commitment,37.11,0.2,2026-07-02T00:00:00,family_meeting
|
||||
OPP-150-1,LED-0150,PRJ-005,PRJ-005-U008,negotiation,3.88,0.81,2026-09-01T00:00:00,follow_up_call
|
||||
OPP-151-1,LED-0151,PRJ-011,PRJ-011-U010,site_visit,6.18,0.12,2026-10-04T00:00:00,schedule_site_visit
|
||||
OPP-152-1,LED-0152,PRJ-008,PRJ-008-U014,discovery,5.24,0.28,2026-09-02T00:00:00,family_meeting
|
||||
OPP-153-1,LED-0153,PRJ-014,PRJ-014-U003,closed_won,25.55,0.19,2026-10-15T00:00:00,price_negotiation
|
||||
OPP-153-2,LED-0153,PRJ-008,PRJ-008-U009,negotiation,13.33,0.79,2026-06-14T00:00:00,document_collection
|
||||
OPP-153-3,LED-0153,PRJ-006,PRJ-006-U003,discovery,14.7,0.48,2026-05-26T00:00:00,document_collection
|
||||
OPP-154-1,LED-0154,PRJ-010,PRJ-010-U011,proposal,12.73,0.59,2026-07-29T00:00:00,schedule_site_visit
|
||||
OPP-155-1,LED-0155,PRJ-002,PRJ-002-U001,negotiation,2.96,0.16,2026-08-10T00:00:00,follow_up_call
|
||||
OPP-156-1,LED-0156,PRJ-007,PRJ-007-U012,proposal,13.22,0.76,2026-07-05T00:00:00,schedule_site_visit
|
||||
OPP-157-1,LED-0157,PRJ-005,PRJ-005-U008,discovery,3.88,0.14,2026-08-23T00:00:00,follow_up_call
|
||||
OPP-157-2,LED-0157,PRJ-007,PRJ-007-U003,negotiation,18.26,0.55,2026-09-21T00:00:00,document_collection
|
||||
OPP-158-1,LED-0158,PRJ-003,PRJ-003-U008,discovery,5.39,0.24,2026-08-11T00:00:00,family_meeting
|
||||
OPP-159-1,LED-0159,PRJ-005,PRJ-005-U008,closed_lost,3.88,0.2,2026-09-27T00:00:00,follow_up_call
|
||||
OPP-160-1,LED-0160,PRJ-010,PRJ-010-U012,site_visit,19.52,0.36,2026-07-30T00:00:00,schedule_site_visit
|
||||
OPP-161-1,LED-0161,PRJ-007,PRJ-007-U014,proposal,6.92,0.36,2026-06-08T00:00:00,price_negotiation
|
||||
OPP-162-1,LED-0162,PRJ-009,PRJ-009-U008,closed_lost,14.61,0.22,2026-06-26T00:00:00,price_negotiation
|
||||
OPP-163-1,LED-0163,PRJ-006,PRJ-006-U003,closed_won,14.7,0.43,2026-06-14T00:00:00,family_meeting
|
||||
OPP-163-2,LED-0163,PRJ-005,PRJ-005-U009,discovery,2.39,0.58,2026-05-20T00:00:00,document_collection
|
||||
OPP-164-1,LED-0164,PRJ-014,PRJ-014-U005,discovery,4.25,0.14,2026-06-27T00:00:00,send_proposal
|
||||
OPP-164-2,LED-0164,PRJ-008,PRJ-008-U007,proposal,24.0,0.93,2026-07-17T00:00:00,schedule_site_visit
|
||||
OPP-165-1,LED-0165,PRJ-011,PRJ-011-U014,closed_lost,10.7,0.26,2026-07-10T00:00:00,document_collection
|
||||
OPP-166-1,LED-0166,PRJ-010,PRJ-010-U011,negotiation,12.73,0.66,2026-05-26T00:00:00,price_negotiation
|
||||
OPP-167-1,LED-0167,PRJ-005,PRJ-005-U005,discovery,19.27,0.13,2026-09-24T00:00:00,send_proposal
|
||||
OPP-168-1,LED-0168,PRJ-014,PRJ-014-U001,discovery,73.38,0.15,2026-09-07T00:00:00,send_proposal
|
||||
OPP-169-1,LED-0169,PRJ-010,PRJ-010-U011,negotiation,12.73,0.17,2026-06-22T00:00:00,document_collection
|
||||
OPP-169-2,LED-0169,PRJ-006,PRJ-006-U002,prospecting,24.02,0.93,2026-09-07T00:00:00,follow_up_call
|
||||
OPP-169-3,LED-0169,PRJ-014,PRJ-014-U001,negotiation,73.38,0.34,2026-08-24T00:00:00,price_negotiation
|
||||
OPP-170-1,LED-0170,PRJ-003,PRJ-003-U010,closed_lost,15.57,0.73,2026-07-17T00:00:00,send_proposal
|
||||
OPP-171-1,LED-0171,PRJ-001,PRJ-001-U010,closed_lost,38.51,0.64,2026-10-07T00:00:00,send_proposal
|
||||
OPP-171-2,LED-0171,PRJ-010,PRJ-010-U012,verbal_commitment,19.52,0.91,2026-09-07T00:00:00,send_proposal
|
||||
OPP-172-1,LED-0172,PRJ-006,PRJ-006-U003,verbal_commitment,14.7,0.93,2026-08-21T00:00:00,family_meeting
|
||||
OPP-173-1,LED-0173,PRJ-005,PRJ-005-U006,negotiation,10.06,0.87,2026-08-10T00:00:00,send_proposal
|
||||
OPP-174-1,LED-0174,PRJ-014,PRJ-014-U005,prospecting,4.25,0.69,2026-06-05T00:00:00,send_proposal
|
||||
OPP-175-1,LED-0175,PRJ-010,PRJ-010-U012,closed_won,19.52,0.34,2026-08-24T00:00:00,price_negotiation
|
||||
OPP-175-2,LED-0175,PRJ-012,PRJ-012-U001,closed_won,20.23,0.54,2026-10-12T00:00:00,document_collection
|
||||
OPP-176-1,LED-0176,PRJ-012,PRJ-012-U004,site_visit,10.9,0.81,2026-08-01T00:00:00,schedule_site_visit
|
||||
OPP-176-2,LED-0176,PRJ-005,PRJ-005-U005,site_visit,19.27,0.94,2026-06-16T00:00:00,price_negotiation
|
||||
OPP-177-1,LED-0177,PRJ-003,PRJ-003-U011,site_visit,3.86,0.72,2026-07-29T00:00:00,send_proposal
|
||||
OPP-177-2,LED-0177,PRJ-007,PRJ-007-U001,closed_lost,6.59,0.57,2026-07-10T00:00:00,follow_up_call
|
||||
OPP-178-1,LED-0178,PRJ-007,PRJ-007-U017,proposal,7.14,0.12,2026-07-25T00:00:00,document_collection
|
||||
OPP-178-2,LED-0178,PRJ-013,PRJ-013-U007,negotiation,38.85,0.67,2026-08-31T00:00:00,family_meeting
|
||||
OPP-179-1,LED-0179,PRJ-014,PRJ-014-U001,discovery,73.38,0.53,2026-09-19T00:00:00,schedule_site_visit
|
||||
OPP-180-1,LED-0180,PRJ-012,PRJ-012-U001,closed_lost,20.23,0.29,2026-05-24T00:00:00,family_meeting
|
||||
OPP-180-2,LED-0180,PRJ-010,PRJ-010-U004,negotiation,4.99,0.38,2026-06-08T00:00:00,schedule_site_visit
|
||||
OPP-181-1,LED-0181,PRJ-012,PRJ-012-U001,site_visit,20.23,0.27,2026-06-16T00:00:00,schedule_site_visit
|
||||
OPP-181-2,LED-0181,PRJ-013,PRJ-013-U013,closed_lost,11.61,0.22,2026-10-05T00:00:00,family_meeting
|
||||
OPP-182-1,LED-0182,PRJ-004,PRJ-004-U019,discovery,22.28,0.56,2026-08-10T00:00:00,schedule_site_visit
|
||||
OPP-183-1,LED-0183,PRJ-003,PRJ-003-U011,prospecting,3.86,0.37,2026-05-31T00:00:00,send_proposal
|
||||
OPP-184-1,LED-0184,PRJ-010,PRJ-010-U010,prospecting,10.62,0.65,2026-09-17T00:00:00,family_meeting
|
||||
OPP-185-1,LED-0185,PRJ-006,PRJ-006-U005,discovery,37.11,0.58,2026-09-13T00:00:00,schedule_site_visit
|
||||
OPP-186-1,LED-0186,PRJ-011,PRJ-011-U004,closed_lost,50.68,0.22,2026-10-15T00:00:00,price_negotiation
|
||||
OPP-186-2,LED-0186,PRJ-012,PRJ-012-U001,verbal_commitment,20.23,0.84,2026-05-20T00:00:00,send_proposal
|
||||
OPP-186-3,LED-0186,PRJ-011,PRJ-011-U003,site_visit,23.35,0.88,2026-08-04T00:00:00,send_proposal
|
||||
OPP-187-1,LED-0187,PRJ-011,PRJ-011-U004,proposal,50.68,0.85,2026-08-03T00:00:00,price_negotiation
|
||||
OPP-188-1,LED-0188,PRJ-005,PRJ-005-U008,closed_won,3.88,0.67,2026-09-18T00:00:00,schedule_site_visit
|
||||
OPP-189-1,LED-0189,PRJ-012,PRJ-012-U007,negotiation,2.7,0.27,2026-09-11T00:00:00,family_meeting
|
||||
OPP-190-1,LED-0190,PRJ-012,PRJ-012-U007,discovery,2.7,0.42,2026-06-07T00:00:00,price_negotiation
|
||||
OPP-190-2,LED-0190,PRJ-003,PRJ-003-U005,discovery,23.58,0.81,2026-09-05T00:00:00,schedule_site_visit
|
||||
OPP-191-1,LED-0191,PRJ-008,PRJ-008-U003,site_visit,8.37,0.67,2026-07-22T00:00:00,family_meeting
|
||||
OPP-191-2,LED-0191,PRJ-006,PRJ-006-U001,proposal,5.95,0.74,2026-09-30T00:00:00,price_negotiation
|
||||
OPP-191-3,LED-0191,PRJ-011,PRJ-011-U009,prospecting,3.92,0.23,2026-10-14T00:00:00,send_proposal
|
||||
OPP-192-1,LED-0192,PRJ-005,PRJ-005-U005,verbal_commitment,19.27,0.75,2026-07-01T00:00:00,follow_up_call
|
||||
OPP-192-2,LED-0192,PRJ-007,PRJ-007-U003,prospecting,18.26,0.63,2026-06-22T00:00:00,document_collection
|
||||
OPP-193-1,LED-0193,PRJ-001,PRJ-001-U013,closed_lost,14.28,0.83,2026-06-05T00:00:00,family_meeting
|
||||
OPP-193-2,LED-0193,PRJ-008,PRJ-008-U018,prospecting,51.49,0.35,2026-08-27T00:00:00,follow_up_call
|
||||
OPP-193-3,LED-0193,PRJ-009,PRJ-009-U014,closed_won,9.56,0.77,2026-06-13T00:00:00,send_proposal
|
||||
OPP-194-1,LED-0194,PRJ-006,PRJ-006-U003,negotiation,14.7,0.9,2026-06-27T00:00:00,document_collection
|
||||
OPP-194-2,LED-0194,PRJ-005,PRJ-005-U006,site_visit,10.06,0.22,2026-07-31T00:00:00,family_meeting
|
||||
OPP-195-1,LED-0195,PRJ-004,PRJ-004-U008,prospecting,31.98,0.44,2026-06-12T00:00:00,price_negotiation
|
||||
OPP-195-2,LED-0195,PRJ-008,PRJ-008-U012,proposal,1.62,0.31,2026-07-03T00:00:00,follow_up_call
|
||||
OPP-195-3,LED-0195,PRJ-001,PRJ-001-U009,negotiation,12.54,0.18,2026-07-05T00:00:00,follow_up_call
|
||||
OPP-196-1,LED-0196,PRJ-011,PRJ-011-U009,discovery,3.92,0.93,2026-07-03T00:00:00,family_meeting
|
||||
OPP-197-1,LED-0197,PRJ-006,PRJ-006-U005,closed_won,37.11,0.76,2026-07-25T00:00:00,send_proposal
|
||||
OPP-198-1,LED-0198,PRJ-002,PRJ-002-U002,proposal,6.93,0.24,2026-09-17T00:00:00,follow_up_call
|
||||
OPP-199-1,LED-0199,PRJ-003,PRJ-003-U008,closed_lost,5.39,0.29,2026-08-18T00:00:00,price_negotiation
|
||||
OPP-200-1,LED-0200,PRJ-009,PRJ-009-U012,prospecting,52.97,0.44,2026-08-01T00:00:00,schedule_site_visit
|
||||
OPP-200-2,LED-0200,PRJ-006,PRJ-006-U005,site_visit,37.11,0.32,2026-07-14T00:00:00,document_collection
|
||||
OPP-201-1,LED-0201,PRJ-004,PRJ-004-U004,closed_won,22.05,0.6,2026-06-18T00:00:00,schedule_site_visit
|
||||
OPP-201-2,LED-0201,PRJ-002,PRJ-002-U011,verbal_commitment,3.87,0.74,2026-08-07T00:00:00,family_meeting
|
||||
OPP-202-1,LED-0202,PRJ-003,PRJ-003-U003,site_visit,20.76,0.73,2026-07-03T00:00:00,price_negotiation
|
||||
OPP-202-2,LED-0202,PRJ-004,PRJ-004-U008,closed_won,31.98,0.63,2026-07-24T00:00:00,document_collection
|
||||
OPP-203-1,LED-0203,PRJ-012,PRJ-012-U004,negotiation,10.9,0.85,2026-06-13T00:00:00,send_proposal
|
||||
OPP-204-1,LED-0204,PRJ-014,PRJ-014-U001,discovery,73.38,0.57,2026-08-01T00:00:00,send_proposal
|
||||
OPP-204-2,LED-0204,PRJ-009,PRJ-009-U004,site_visit,3.15,0.44,2026-09-25T00:00:00,send_proposal
|
||||
OPP-205-1,LED-0205,PRJ-004,PRJ-004-U020,verbal_commitment,18.88,0.16,2026-07-27T00:00:00,send_proposal
|
||||
OPP-206-1,LED-0206,PRJ-014,PRJ-014-U005,negotiation,4.25,0.29,2026-06-13T00:00:00,schedule_site_visit
|
||||
OPP-206-2,LED-0206,PRJ-007,PRJ-007-U012,prospecting,13.22,0.64,2026-07-28T00:00:00,follow_up_call
|
||||
OPP-206-3,LED-0206,PRJ-011,PRJ-011-U007,verbal_commitment,32.9,0.17,2026-06-12T00:00:00,follow_up_call
|
||||
OPP-207-1,LED-0207,PRJ-014,PRJ-014-U003,verbal_commitment,25.55,0.8,2026-08-14T00:00:00,price_negotiation
|
||||
OPP-207-2,LED-0207,PRJ-006,PRJ-006-U005,negotiation,37.11,0.75,2026-06-28T00:00:00,send_proposal
|
||||
OPP-208-1,LED-0208,PRJ-007,PRJ-007-U014,discovery,6.92,0.27,2026-06-10T00:00:00,follow_up_call
|
||||
OPP-209-1,LED-0209,PRJ-014,PRJ-014-U006,closed_lost,58.43,0.81,2026-09-01T00:00:00,document_collection
|
||||
OPP-210-1,LED-0210,PRJ-009,PRJ-009-U014,prospecting,9.56,0.86,2026-09-17T00:00:00,follow_up_call
|
||||
OPP-211-1,LED-0211,PRJ-006,PRJ-006-U001,discovery,5.95,0.9,2026-10-11T00:00:00,follow_up_call
|
||||
OPP-212-1,LED-0212,PRJ-010,PRJ-010-U010,site_visit,10.62,0.86,2026-07-02T00:00:00,document_collection
|
||||
OPP-213-1,LED-0213,PRJ-005,PRJ-005-U008,site_visit,3.88,0.48,2026-07-07T00:00:00,price_negotiation
|
||||
OPP-214-1,LED-0214,PRJ-010,PRJ-010-U013,prospecting,19.77,0.14,2026-08-23T00:00:00,send_proposal
|
||||
OPP-215-1,LED-0215,PRJ-012,PRJ-012-U004,closed_won,10.9,0.34,2026-07-30T00:00:00,price_negotiation
|
||||
OPP-216-1,LED-0216,PRJ-011,PRJ-011-U004,verbal_commitment,50.68,0.66,2026-09-07T00:00:00,schedule_site_visit
|
||||
OPP-217-1,LED-0217,PRJ-010,PRJ-010-U011,closed_lost,12.73,0.87,2026-07-17T00:00:00,follow_up_call
|
||||
OPP-217-2,LED-0217,PRJ-008,PRJ-008-U009,site_visit,13.33,0.49,2026-08-18T00:00:00,send_proposal
|
||||
OPP-217-3,LED-0217,PRJ-005,PRJ-005-U006,verbal_commitment,10.06,0.73,2026-09-05T00:00:00,price_negotiation
|
||||
OPP-218-1,LED-0218,PRJ-003,PRJ-003-U011,prospecting,3.86,0.69,2026-08-24T00:00:00,document_collection
|
||||
OPP-218-2,LED-0218,PRJ-007,PRJ-007-U014,proposal,6.92,0.23,2026-08-07T00:00:00,family_meeting
|
||||
OPP-219-1,LED-0219,PRJ-002,PRJ-002-U019,verbal_commitment,10.46,0.16,2026-06-21T00:00:00,document_collection
|
||||
OPP-220-1,LED-0220,PRJ-008,PRJ-008-U014,discovery,5.24,0.38,2026-05-26T00:00:00,send_proposal
|
||||
OPP-220-2,LED-0220,PRJ-004,PRJ-004-U010,closed_won,2.02,0.43,2026-07-26T00:00:00,follow_up_call
|
||||
OPP-220-3,LED-0220,PRJ-014,PRJ-014-U005,closed_won,4.25,0.7,2026-06-20T00:00:00,price_negotiation
|
||||
OPP-221-1,LED-0221,PRJ-013,PRJ-013-U015,discovery,26.57,0.62,2026-06-01T00:00:00,follow_up_call
|
||||
OPP-222-1,LED-0222,PRJ-009,PRJ-009-U010,proposal,14.67,0.46,2026-08-14T00:00:00,follow_up_call
|
||||
OPP-222-2,LED-0222,PRJ-013,PRJ-013-U004,discovery,20.12,0.15,2026-09-21T00:00:00,price_negotiation
|
||||
OPP-223-1,LED-0223,PRJ-014,PRJ-014-U002,closed_won,24.47,0.41,2026-09-06T00:00:00,follow_up_call
|
||||
OPP-223-2,LED-0223,PRJ-002,PRJ-002-U001,closed_won,2.96,0.5,2026-07-26T00:00:00,price_negotiation
|
||||
OPP-224-1,LED-0224,PRJ-005,PRJ-005-U008,verbal_commitment,3.88,0.79,2026-06-19T00:00:00,price_negotiation
|
||||
OPP-224-2,LED-0224,PRJ-006,PRJ-006-U005,proposal,37.11,0.28,2026-08-09T00:00:00,follow_up_call
|
||||
OPP-225-1,LED-0225,PRJ-013,PRJ-013-U006,verbal_commitment,51.53,0.51,2026-08-06T00:00:00,document_collection
|
||||
OPP-226-1,LED-0226,PRJ-009,PRJ-009-U003,closed_won,6.82,0.65,2026-08-27T00:00:00,send_proposal
|
||||
OPP-226-2,LED-0226,PRJ-010,PRJ-010-U012,prospecting,19.52,0.85,2026-06-01T00:00:00,follow_up_call
|
||||
OPP-227-1,LED-0227,PRJ-002,PRJ-002-U016,negotiation,12.55,0.29,2026-06-01T00:00:00,follow_up_call
|
||||
OPP-228-1,LED-0228,PRJ-007,PRJ-007-U001,negotiation,6.59,0.48,2026-09-09T00:00:00,document_collection
|
||||
OPP-229-1,LED-0229,PRJ-006,PRJ-006-U002,proposal,24.02,0.93,2026-08-21T00:00:00,schedule_site_visit
|
||||
OPP-230-1,LED-0230,PRJ-012,PRJ-012-U001,proposal,20.23,0.16,2026-08-22T00:00:00,schedule_site_visit
|
||||
OPP-230-2,LED-0230,PRJ-007,PRJ-007-U003,prospecting,18.26,0.59,2026-05-29T00:00:00,follow_up_call
|
||||
OPP-230-3,LED-0230,PRJ-008,PRJ-008-U003,negotiation,8.37,0.12,2026-07-26T00:00:00,send_proposal
|
||||
OPP-231-1,LED-0231,PRJ-014,PRJ-014-U002,prospecting,24.47,0.39,2026-06-24T00:00:00,document_collection
|
||||
OPP-231-2,LED-0231,PRJ-014,PRJ-014-U005,discovery,4.25,0.8,2026-06-15T00:00:00,document_collection
|
||||
OPP-232-1,LED-0232,PRJ-002,PRJ-002-U004,site_visit,2.02,0.8,2026-06-05T00:00:00,schedule_site_visit
|
||||
OPP-233-1,LED-0233,PRJ-014,PRJ-014-U005,discovery,4.25,0.46,2026-10-15T00:00:00,document_collection
|
||||
OPP-233-2,LED-0233,PRJ-001,PRJ-001-U015,discovery,9.67,0.5,2026-10-04T00:00:00,schedule_site_visit
|
||||
OPP-234-1,LED-0234,PRJ-003,PRJ-003-U002,proposal,27.76,0.51,2026-07-20T00:00:00,schedule_site_visit
|
||||
OPP-234-2,LED-0234,PRJ-005,PRJ-005-U006,proposal,10.06,0.39,2026-10-14T00:00:00,family_meeting
|
||||
OPP-234-3,LED-0234,PRJ-003,PRJ-003-U003,site_visit,20.76,0.73,2026-10-09T00:00:00,schedule_site_visit
|
||||
OPP-235-1,LED-0235,PRJ-005,PRJ-005-U009,discovery,2.39,0.93,2026-07-04T00:00:00,document_collection
|
||||
OPP-235-2,LED-0235,PRJ-004,PRJ-004-U004,negotiation,22.05,0.21,2026-08-26T00:00:00,schedule_site_visit
|
||||
OPP-236-1,LED-0236,PRJ-011,PRJ-011-U014,verbal_commitment,10.7,0.43,2026-07-14T00:00:00,follow_up_call
|
||||
OPP-237-1,LED-0237,PRJ-009,PRJ-009-U004,negotiation,3.15,0.63,2026-07-26T00:00:00,price_negotiation
|
||||
OPP-237-2,LED-0237,PRJ-010,PRJ-010-U009,verbal_commitment,9.32,0.93,2026-07-06T00:00:00,price_negotiation
|
||||
OPP-238-1,LED-0238,PRJ-002,PRJ-002-U004,negotiation,2.02,0.89,2026-09-11T00:00:00,document_collection
|
||||
OPP-239-1,LED-0239,PRJ-004,PRJ-004-U004,proposal,22.05,0.63,2026-10-11T00:00:00,price_negotiation
|
||||
OPP-239-2,LED-0239,PRJ-009,PRJ-009-U011,proposal,2.2,0.25,2026-08-24T00:00:00,send_proposal
|
||||
OPP-240-1,LED-0240,PRJ-014,PRJ-014-U001,closed_won,73.38,0.71,2026-09-08T00:00:00,send_proposal
|
||||
OPP-241-1,LED-0241,PRJ-004,PRJ-004-U010,closed_lost,2.02,0.92,2026-10-09T00:00:00,send_proposal
|
||||
OPP-242-1,LED-0242,PRJ-010,PRJ-010-U013,site_visit,19.77,0.35,2026-09-15T00:00:00,family_meeting
|
||||
OPP-243-1,LED-0243,PRJ-009,PRJ-009-U017,closed_won,21.65,0.86,2026-09-14T00:00:00,follow_up_call
|
||||
OPP-243-2,LED-0243,PRJ-007,PRJ-007-U003,closed_lost,18.26,0.21,2026-05-27T00:00:00,send_proposal
|
||||
OPP-244-1,LED-0244,PRJ-005,PRJ-005-U008,closed_lost,3.88,0.13,2026-09-17T00:00:00,schedule_site_visit
|
||||
OPP-244-2,LED-0244,PRJ-009,PRJ-009-U008,prospecting,14.61,0.94,2026-06-24T00:00:00,follow_up_call
|
||||
OPP-245-1,LED-0245,PRJ-001,PRJ-001-U002,site_visit,32.98,0.83,2026-07-24T00:00:00,follow_up_call
|
||||
OPP-246-1,LED-0246,PRJ-005,PRJ-005-U005,proposal,19.27,0.24,2026-09-18T00:00:00,follow_up_call
|
||||
OPP-247-1,LED-0247,PRJ-008,PRJ-008-U003,prospecting,8.37,0.21,2026-08-19T00:00:00,follow_up_call
|
||||
OPP-248-1,LED-0248,PRJ-010,PRJ-010-U009,negotiation,9.32,0.13,2026-08-12T00:00:00,follow_up_call
|
||||
OPP-248-2,LED-0248,PRJ-009,PRJ-009-U010,negotiation,14.67,0.66,2026-08-28T00:00:00,family_meeting
|
||||
OPP-249-1,LED-0249,PRJ-007,PRJ-007-U001,closed_lost,6.59,0.84,2026-08-11T00:00:00,send_proposal
|
||||
OPP-250-1,LED-0250,PRJ-006,PRJ-006-U001,closed_won,5.95,0.6,2026-06-03T00:00:00,family_meeting
|
||||
|
342
db assets/synthetic_crm_v1/csv/crm_people.csv
Normal file
342
db assets/synthetic_crm_v1/csv/crm_people.csv
Normal file
@@ -0,0 +1,342 @@
|
||||
person_id,full_name,primary_email,primary_phone,linkedin_url,persona_labels,source_confidence,created_at,updated_at
|
||||
PER-0001,Rohan Bose,rohan.bose99@gmail.com,+91-76251-12482,https://linkedin.com/in/rohan-bose-551,"[""high_intent_buyer""]",0.82,2024-06-04T00:00:00,2025-02-26T00:00:00
|
||||
PER-0002,Debjani Sen,debjani.sen88@hotmail.com,+91-77840-41779,https://linkedin.com/in/debjani-sen-151,"[""slow_burn_investor""]",0.9,2025-06-27T00:00:00,2024-08-19T00:00:00
|
||||
PER-0002-CO,Raj Banerjee,raj.banerjee80@yahoo.com,+91-83333-95575,,"[""co_buyer""]",0.85,2025-05-02T00:00:00,2026-04-18T00:00:00
|
||||
PER-0003,Meera Roy,meera.roy32@hotmail.com,+91-98054-93719,https://linkedin.com/in/meera-roy-515,"[""slow_burn_investor""]",0.94,2025-06-11T00:00:00,2024-12-01T00:00:00
|
||||
PER-0004,Nilesh Pillai,nilesh.pillai29@yahoo.com,+91-80751-78202,https://linkedin.com/in/nilesh-pillai-552,"[""high_intent_buyer""]",0.78,2024-07-29T00:00:00,2026-01-04T00:00:00
|
||||
PER-0005,Kunal Saha,kunal.saha96@gmail.com,+91-78019-15798,https://linkedin.com/in/kunal-saha-511,"[""high_intent_buyer""]",0.85,2025-07-06T00:00:00,2024-08-10T00:00:00
|
||||
PER-0006,Kunal Mukherjee,kunal.mukherjee81@rediffmail.com,+91-83648-83044,https://linkedin.com/in/kunal-mukherjee-642,"[""broker_referral_chain""]",0.78,2024-09-05T00:00:00,2024-09-18T00:00:00
|
||||
PER-0007,Isha Sharma,isha.sharma56@hotmail.com,+91-98927-75179,https://linkedin.com/in/isha-sharma-577,"[""nri_buyer""]",0.77,2026-01-09T00:00:00,2025-04-25T00:00:00
|
||||
PER-0008,Parth Saha,parth.saha71@rediffmail.com,+91-70515-10866,https://linkedin.com/in/parth-saha-644,"[""nri_buyer""]",0.88,2024-01-13T00:00:00,2024-01-18T00:00:00
|
||||
PER-0008-CO,Divya Nair,divya.nair42@outlook.com,+91-78759-62022,,"[""co_buyer""]",0.85,2024-03-21T00:00:00,2026-04-18T00:00:00
|
||||
PER-0009,Sanjay Chatterjee,sanjay.chatterjee48@yahoo.com,+91-88479-41519,https://linkedin.com/in/sanjay-chatterjee-680,"[""repeat_visitor""]",0.94,2025-02-02T00:00:00,2025-11-24T00:00:00
|
||||
PER-0010,Sanjay Agarwal,sanjay.agarwal56@gmail.com,+91-72998-10680,https://linkedin.com/in/sanjay-agarwal-415,"[""slow_burn_investor""]",0.85,2026-02-18T00:00:00,2024-10-03T00:00:00
|
||||
PER-0011,Tanvi Das,tanvi.das18@yahoo.com,+91-84243-46170,https://linkedin.com/in/tanvi-das-531,"[""slow_burn_investor""]",0.82,2026-03-12T00:00:00,2024-03-19T00:00:00
|
||||
PER-0011-CO,Parth Verma,parth.verma52@rediffmail.com,+91-80968-66441,,"[""co_buyer""]",0.85,2025-10-28T00:00:00,2026-04-18T00:00:00
|
||||
PER-0012,Vivek Verma,vivek.verma19@rediffmail.com,+91-89593-72814,https://linkedin.com/in/vivek-verma-696,"[""slow_burn_investor""]",0.84,2025-06-02T00:00:00,2025-12-09T00:00:00
|
||||
PER-0013,Rahul Gupta,rahul.gupta53@rediffmail.com,+91-95698-37114,https://linkedin.com/in/rahul-gupta-633,"[""high_intent_buyer""]",0.86,2025-05-02T00:00:00,2024-04-09T00:00:00
|
||||
PER-0013-CO,Swati Patel,swati.patel76@yahoo.com,+91-88084-30989,,"[""co_buyer""]",0.85,2024-12-04T00:00:00,2026-04-18T00:00:00
|
||||
PER-0014,Vidya Agarwal,vidya.agarwal86@rediffmail.com,+91-90031-61451,https://linkedin.com/in/vidya-agarwal-701,"[""high_intent_buyer""]",0.78,2024-12-26T00:00:00,2025-04-13T00:00:00
|
||||
PER-0015,Ananya Reddy,ananya.reddy27@yahoo.com,+91-96712-60324,https://linkedin.com/in/ananya-reddy-675,"[""family_decision_unit""]",0.87,2025-05-21T00:00:00,2025-02-22T00:00:00
|
||||
PER-0015-CO,Aditya Bose,aditya.bose13@yahoo.com,+91-79571-14285,,"[""co_buyer""]",0.85,2024-10-08T00:00:00,2026-04-18T00:00:00
|
||||
PER-0016,Raj Patel,raj.patel28@outlook.com,+91-97147-42447,https://linkedin.com/in/raj-patel-879,"[""repeat_visitor""]",0.94,2025-02-06T00:00:00,2025-05-16T00:00:00
|
||||
PER-0017,Neha Chatterjee,neha.chatterjee57@yahoo.com,+91-71696-61949,https://linkedin.com/in/neha-chatterjee-740,"[""high_intent_buyer""]",0.82,2025-12-17T00:00:00,2026-02-12T00:00:00
|
||||
PER-0017-CO,Arjun Agarwal,arjun.agarwal25@rediffmail.com,+91-92742-27324,,"[""co_buyer""]",0.85,2025-05-04T00:00:00,2026-04-18T00:00:00
|
||||
PER-0018,Sourav Chatterjee,sourav.chatterjee41@hotmail.com,+91-89693-88644,https://linkedin.com/in/sourav-chatterjee-838,"[""price_sensitive_aspirational""]",0.89,2026-03-08T00:00:00,2025-12-08T00:00:00
|
||||
PER-0019,Manish Pillai,manish.pillai88@yahoo.com,+91-79092-20957,https://linkedin.com/in/manish-pillai-417,"[""price_sensitive_aspirational""]",0.77,2024-07-27T00:00:00,2026-04-07T00:00:00
|
||||
PER-0020,Amit Singh,amit.singh44@hotmail.com,+91-72092-44465,https://linkedin.com/in/amit-singh-829,"[""broker_referral_chain""]",0.97,2025-10-04T00:00:00,2024-03-19T00:00:00
|
||||
PER-0021,Riya Kumar,riya.kumar46@outlook.com,+91-80724-21322,https://linkedin.com/in/riya-kumar-666,"[""repeat_visitor""]",0.86,2025-01-12T00:00:00,2024-07-24T00:00:00
|
||||
PER-0022,Sneha Pillai,sneha.pillai55@yahoo.com,+91-84808-50410,https://linkedin.com/in/sneha-pillai-574,"[""nri_buyer""]",0.81,2024-05-02T00:00:00,2024-04-02T00:00:00
|
||||
PER-0022-CO,Prasenjit Sharma,prasenjit.sharma32@gmail.com,+91-83251-69270,,"[""co_buyer""]",0.85,2025-07-23T00:00:00,2026-04-18T00:00:00
|
||||
PER-0023,Rahul Roy,rahul.roy33@outlook.com,+91-79170-68459,https://linkedin.com/in/rahul-roy-252,"[""family_decision_unit""]",0.76,2025-09-26T00:00:00,2025-09-23T00:00:00
|
||||
PER-0023-CO,Pallavi Nair,pallavi.nair41@hotmail.com,+91-96045-12559,,"[""co_buyer""]",0.85,2025-01-26T00:00:00,2026-04-18T00:00:00
|
||||
PER-0024,Vikram Nair,vikram.nair56@gmail.com,+91-82241-96787,https://linkedin.com/in/vikram-nair-505,"[""price_sensitive_aspirational""]",0.88,2024-12-10T00:00:00,2024-11-05T00:00:00
|
||||
PER-0025,Neha Sen,neha.sen10@gmail.com,+91-82646-67438,https://linkedin.com/in/neha-sen-850,"[""family_decision_unit""]",0.85,2024-06-19T00:00:00,2025-02-27T00:00:00
|
||||
PER-0025-CO,Rohan Gupta,rohan.gupta12@outlook.com,+91-78556-23726,,"[""co_buyer""]",0.85,2024-03-16T00:00:00,2026-04-18T00:00:00
|
||||
PER-0026,Pallavi Sen,pallavi.sen13@yahoo.com,+91-75597-93648,https://linkedin.com/in/pallavi-sen-398,"[""high_intent_buyer""]",0.97,2025-04-29T00:00:00,2024-04-28T00:00:00
|
||||
PER-0027,Asha Reddy,asha.reddy83@yahoo.com,+91-85606-49171,https://linkedin.com/in/asha-reddy-180,"[""price_sensitive_aspirational""]",0.84,2026-01-01T00:00:00,2024-02-05T00:00:00
|
||||
PER-0028,Meera Saha,meera.saha70@gmail.com,+91-75642-46099,https://linkedin.com/in/meera-saha-512,"[""nri_buyer""]",0.78,2025-09-15T00:00:00,2025-11-28T00:00:00
|
||||
PER-0028-CO,Abhishek Sharma,abhishek.sharma57@gmail.com,+91-81071-49722,,"[""co_buyer""]",0.85,2024-11-14T00:00:00,2026-04-18T00:00:00
|
||||
PER-0029,Swati Reddy,swati.reddy85@hotmail.com,+91-81460-55121,https://linkedin.com/in/swati-reddy-267,"[""slow_burn_investor""]",0.94,2024-09-21T00:00:00,2026-02-05T00:00:00
|
||||
PER-0029-CO,Nilesh Roy,nilesh.roy38@yahoo.com,+91-92206-37096,,"[""co_buyer""]",0.85,2024-10-02T00:00:00,2026-04-18T00:00:00
|
||||
PER-0030,Isha Sen,isha.sen71@gmail.com,+91-81019-46239,https://linkedin.com/in/isha-sen-755,"[""family_decision_unit""]",0.82,2024-10-10T00:00:00,2024-09-24T00:00:00
|
||||
PER-0030-CO,Deb Mukherjee,deb.mukherjee86@rediffmail.com,+91-91644-51888,,"[""co_buyer""]",0.85,2025-11-28T00:00:00,2026-04-18T00:00:00
|
||||
PER-0031,Kavita Agarwal,kavita.agarwal57@outlook.com,+91-89187-48541,https://linkedin.com/in/kavita-agarwal-574,"[""slow_burn_investor""]",0.95,2025-04-26T00:00:00,2024-02-24T00:00:00
|
||||
PER-0032,Kunal Sharma,kunal.sharma36@yahoo.com,+91-88883-30766,https://linkedin.com/in/kunal-sharma-601,"[""family_decision_unit""]",0.93,2026-03-09T00:00:00,2024-03-31T00:00:00
|
||||
PER-0032-CO,Trisha Banerjee,trisha.banerjee51@hotmail.com,+91-76244-12348,,"[""co_buyer""]",0.85,2025-11-23T00:00:00,2026-04-18T00:00:00
|
||||
PER-0033,Vikram Jain,vikram.jain93@gmail.com,+91-82294-93928,https://linkedin.com/in/vikram-jain-361,"[""price_sensitive_aspirational""]",0.93,2025-09-30T00:00:00,2024-02-19T00:00:00
|
||||
PER-0034,Abhishek Agarwal,abhishek.agarwal40@gmail.com,+91-70417-98032,https://linkedin.com/in/abhishek-agarwal-191,"[""family_decision_unit""]",0.96,2025-08-10T00:00:00,2025-11-16T00:00:00
|
||||
PER-0034-CO,Priya Sen,priya.sen32@gmail.com,+91-97926-48085,,"[""co_buyer""]",0.85,2025-01-03T00:00:00,2026-04-18T00:00:00
|
||||
PER-0035,Kavita Ghosh,kavita.ghosh24@yahoo.com,+91-92812-17686,https://linkedin.com/in/kavita-ghosh-964,"[""price_sensitive_aspirational""]",0.79,2025-03-02T00:00:00,2025-08-27T00:00:00
|
||||
PER-0035-CO,Vivek Kumar,vivek.kumar15@gmail.com,+91-78572-95848,,"[""co_buyer""]",0.85,2024-11-17T00:00:00,2026-04-18T00:00:00
|
||||
PER-0036,Sonal Sen,sonal.sen73@gmail.com,+91-73363-62879,https://linkedin.com/in/sonal-sen-522,"[""broker_referral_chain""]",0.76,2025-07-16T00:00:00,2024-01-01T00:00:00
|
||||
PER-0037,Abhishek Banerjee,abhishek.banerjee77@gmail.com,+91-88128-66729,https://linkedin.com/in/abhishek-banerjee-958,"[""family_decision_unit""]",0.88,2025-06-04T00:00:00,2026-03-10T00:00:00
|
||||
PER-0037-CO,Debjani Sen,debjani.sen59@hotmail.com,+91-89862-52184,,"[""co_buyer""]",0.85,2025-05-31T00:00:00,2026-04-18T00:00:00
|
||||
PER-0038,Manish Verma,manish.verma40@hotmail.com,+91-95700-47701,https://linkedin.com/in/manish-verma-809,"[""family_decision_unit""]",0.9,2025-01-25T00:00:00,2025-01-31T00:00:00
|
||||
PER-0039,Riya Jain,riya.jain38@yahoo.com,+91-91736-53500,https://linkedin.com/in/riya-jain-439,"[""high_intent_buyer""]",0.83,2024-08-11T00:00:00,2026-02-09T00:00:00
|
||||
PER-0040,Vidya Nair,vidya.nair67@rediffmail.com,+91-71436-48854,https://linkedin.com/in/vidya-nair-767,"[""price_sensitive_aspirational""]",0.79,2025-06-10T00:00:00,2024-03-25T00:00:00
|
||||
PER-0040-CO,Anirban Singh,anirban.singh23@yahoo.com,+91-87621-67047,,"[""co_buyer""]",0.85,2025-10-24T00:00:00,2026-04-18T00:00:00
|
||||
PER-0041,Asha Pillai,asha.pillai20@outlook.com,+91-76883-55069,https://linkedin.com/in/asha-pillai-316,"[""family_decision_unit""]",0.84,2025-10-23T00:00:00,2025-06-08T00:00:00
|
||||
PER-0042,Tanvi Pillai,tanvi.pillai23@yahoo.com,+91-91153-89511,https://linkedin.com/in/tanvi-pillai-183,"[""slow_burn_investor""]",0.94,2024-05-23T00:00:00,2025-07-05T00:00:00
|
||||
PER-0043,Neha Bose,neha.bose79@hotmail.com,+91-75696-59369,https://linkedin.com/in/neha-bose-769,"[""repeat_visitor""]",0.84,2025-08-24T00:00:00,2025-10-31T00:00:00
|
||||
PER-0043-CO,Rahul Jain,rahul.jain72@rediffmail.com,+91-99070-89195,,"[""co_buyer""]",0.85,2024-01-07T00:00:00,2026-04-18T00:00:00
|
||||
PER-0044,Anirban Nair,anirban.nair74@rediffmail.com,+91-97083-29603,https://linkedin.com/in/anirban-nair-720,"[""high_intent_buyer""]",0.77,2025-05-02T00:00:00,2025-09-21T00:00:00
|
||||
PER-0045,Trisha Sen,trisha.sen29@rediffmail.com,+91-91350-86725,https://linkedin.com/in/trisha-sen-359,"[""price_sensitive_aspirational""]",0.81,2025-07-02T00:00:00,2025-03-09T00:00:00
|
||||
PER-0046,Aditya Das,aditya.das70@hotmail.com,+91-84266-21552,https://linkedin.com/in/aditya-das-165,"[""repeat_visitor""]",0.81,2025-01-14T00:00:00,2024-03-22T00:00:00
|
||||
PER-0047,Deepak Gupta,deepak.gupta53@gmail.com,+91-96310-77277,https://linkedin.com/in/deepak-gupta-363,"[""family_decision_unit""]",0.95,2025-08-11T00:00:00,2024-09-13T00:00:00
|
||||
PER-0048,Swati Roy,swati.roy73@yahoo.com,+91-77695-41726,https://linkedin.com/in/swati-roy-993,"[""slow_burn_investor""]",0.81,2024-08-22T00:00:00,2024-07-26T00:00:00
|
||||
PER-0049,Moumita Ghosh,moumita.ghosh68@gmail.com,+91-92880-77922,https://linkedin.com/in/moumita-ghosh-571,"[""high_intent_buyer""]",0.82,2024-01-09T00:00:00,2024-01-13T00:00:00
|
||||
PER-0050,Abhishek Banerjee,abhishek.banerjee32@rediffmail.com,+91-86370-27625,https://linkedin.com/in/abhishek-banerjee-969,"[""price_sensitive_aspirational""]",0.9,2025-06-30T00:00:00,2026-01-07T00:00:00
|
||||
PER-0051,Shreya Chatterjee,shreya.chatterjee58@hotmail.com,+91-79388-70784,https://linkedin.com/in/shreya-chatterjee-746,"[""family_decision_unit""]",0.97,2024-06-20T00:00:00,2025-10-17T00:00:00
|
||||
PER-0051-CO,Sanjay Chatterjee,sanjay.chatterjee20@yahoo.com,+91-81259-39912,,"[""co_buyer""]",0.85,2024-11-17T00:00:00,2026-04-18T00:00:00
|
||||
PER-0052,Tanvi Kumar,tanvi.kumar79@outlook.com,+91-87974-68306,https://linkedin.com/in/tanvi-kumar-238,"[""slow_burn_investor""]",0.97,2025-12-15T00:00:00,2025-07-06T00:00:00
|
||||
PER-0053,Kunal Saha,kunal.saha67@outlook.com,+91-92953-91625,https://linkedin.com/in/kunal-saha-603,"[""high_intent_buyer""]",0.79,2024-01-20T00:00:00,2024-06-04T00:00:00
|
||||
PER-0053-CO,Debjani Banerjee,debjani.banerjee73@yahoo.com,+91-81203-65082,,"[""co_buyer""]",0.85,2024-11-15T00:00:00,2026-04-18T00:00:00
|
||||
PER-0054,Sonal Ghosh,sonal.ghosh90@gmail.com,+91-94403-82034,https://linkedin.com/in/sonal-ghosh-633,"[""nri_buyer""]",0.78,2025-05-07T00:00:00,2025-10-15T00:00:00
|
||||
PER-0054-CO,Sourav Bose,sourav.bose25@rediffmail.com,+91-95858-41862,,"[""co_buyer""]",0.85,2024-01-10T00:00:00,2026-04-18T00:00:00
|
||||
PER-0055,Neha Saha,neha.saha80@yahoo.com,+91-72256-79617,https://linkedin.com/in/neha-saha-258,"[""slow_burn_investor""]",0.85,2024-09-26T00:00:00,2025-07-08T00:00:00
|
||||
PER-0056,Nilesh Verma,nilesh.verma94@rediffmail.com,+91-87230-91785,https://linkedin.com/in/nilesh-verma-818,"[""high_intent_buyer""]",0.89,2024-02-20T00:00:00,2025-01-10T00:00:00
|
||||
PER-0057,Deepak Patel,deepak.patel82@yahoo.com,+91-88298-83156,https://linkedin.com/in/deepak-patel-525,"[""nri_buyer""]",0.92,2026-02-23T00:00:00,2025-10-15T00:00:00
|
||||
PER-0058,Prasenjit Banerjee,prasenjit.banerjee48@yahoo.com,+91-77039-51275,https://linkedin.com/in/prasenjit-banerjee-122,"[""family_decision_unit""]",0.93,2025-12-07T00:00:00,2024-10-09T00:00:00
|
||||
PER-0058-CO,Debjani Das,debjani.das43@outlook.com,+91-99151-86304,,"[""co_buyer""]",0.85,2024-09-12T00:00:00,2026-04-18T00:00:00
|
||||
PER-0059,Deb Singh,deb.singh47@rediffmail.com,+91-74850-27326,https://linkedin.com/in/deb-singh-444,"[""family_decision_unit""]",0.77,2025-08-08T00:00:00,2026-02-02T00:00:00
|
||||
PER-0059-CO,Tanvi Verma,tanvi.verma93@hotmail.com,+91-76425-83553,,"[""co_buyer""]",0.85,2025-09-22T00:00:00,2026-04-18T00:00:00
|
||||
PER-0060,Prasenjit Kumar,prasenjit.kumar70@gmail.com,+91-80874-37395,https://linkedin.com/in/prasenjit-kumar-857,"[""high_intent_buyer""]",0.87,2024-07-27T00:00:00,2025-07-13T00:00:00
|
||||
PER-0061,Trisha Jain,trisha.jain90@outlook.com,+91-77739-75700,https://linkedin.com/in/trisha-jain-382,"[""high_intent_buyer""]",0.94,2025-10-02T00:00:00,2024-09-20T00:00:00
|
||||
PER-0062,Parth Patel,parth.patel39@gmail.com,+91-81772-20417,https://linkedin.com/in/parth-patel-804,"[""family_decision_unit""]",0.93,2024-05-17T00:00:00,2025-05-29T00:00:00
|
||||
PER-0062-CO,Moumita Reddy,moumita.reddy70@yahoo.com,+91-75366-35330,,"[""co_buyer""]",0.85,2024-08-19T00:00:00,2026-04-18T00:00:00
|
||||
PER-0063,Deepak Das,deepak.das69@rediffmail.com,+91-72963-75622,https://linkedin.com/in/deepak-das-215,"[""nri_buyer""]",0.79,2025-08-22T00:00:00,2025-12-13T00:00:00
|
||||
PER-0064,Ananya Kumar,ananya.kumar73@rediffmail.com,+91-87809-10753,https://linkedin.com/in/ananya-kumar-722,"[""high_intent_buyer""]",0.95,2024-08-31T00:00:00,2024-08-10T00:00:00
|
||||
PER-0065,Parth Mukherjee,parth.mukherjee23@hotmail.com,+91-93911-92441,https://linkedin.com/in/parth-mukherjee-641,"[""slow_burn_investor""]",0.98,2025-05-10T00:00:00,2026-01-11T00:00:00
|
||||
PER-0066,Asha Roy,asha.roy11@yahoo.com,+91-92610-46913,https://linkedin.com/in/asha-roy-360,"[""high_intent_buyer""]",0.93,2024-11-11T00:00:00,2024-11-03T00:00:00
|
||||
PER-0067,Sonal Mukherjee,sonal.mukherjee44@rediffmail.com,+91-72844-75149,https://linkedin.com/in/sonal-mukherjee-998,"[""high_intent_buyer""]",0.8,2025-04-07T00:00:00,2024-11-05T00:00:00
|
||||
PER-0068,Shreya Sen,shreya.sen44@yahoo.com,+91-75160-45866,https://linkedin.com/in/shreya-sen-217,"[""slow_burn_investor""]",0.75,2025-09-29T00:00:00,2025-07-27T00:00:00
|
||||
PER-0069,Trisha Verma,trisha.verma33@outlook.com,+91-95846-52567,https://linkedin.com/in/trisha-verma-564,"[""high_intent_buyer""]",0.86,2024-03-07T00:00:00,2025-05-01T00:00:00
|
||||
PER-0070,Divya Bose,divya.bose67@yahoo.com,+91-76739-99327,https://linkedin.com/in/divya-bose-998,"[""family_decision_unit""]",0.82,2025-08-06T00:00:00,2026-03-24T00:00:00
|
||||
PER-0071,Abhishek Singh,abhishek.singh27@gmail.com,+91-74496-94180,https://linkedin.com/in/abhishek-singh-925,"[""family_decision_unit""]",0.85,2025-04-11T00:00:00,2026-03-18T00:00:00
|
||||
PER-0071-CO,Kavita Pillai,kavita.pillai67@rediffmail.com,+91-81642-39588,,"[""co_buyer""]",0.85,2024-07-09T00:00:00,2026-04-18T00:00:00
|
||||
PER-0072,Parth Gupta,parth.gupta82@outlook.com,+91-72012-92483,https://linkedin.com/in/parth-gupta-584,"[""slow_burn_investor""]",0.88,2025-08-09T00:00:00,2024-02-22T00:00:00
|
||||
PER-0072-CO,Vidya Chatterjee,vidya.chatterjee45@outlook.com,+91-74343-90713,,"[""co_buyer""]",0.85,2024-10-14T00:00:00,2026-04-18T00:00:00
|
||||
PER-0073,Swati Roy,swati.roy83@outlook.com,+91-71780-94182,https://linkedin.com/in/swati-roy-370,"[""slow_burn_investor""]",0.92,2024-04-28T00:00:00,2024-02-23T00:00:00
|
||||
PER-0074,Pallavi Mukherjee,pallavi.mukherjee13@hotmail.com,+91-73012-17455,https://linkedin.com/in/pallavi-mukherjee-708,"[""price_sensitive_aspirational""]",0.9,2024-08-10T00:00:00,2025-09-05T00:00:00
|
||||
PER-0075,Priya Sharma,priya.sharma43@yahoo.com,+91-84436-19096,https://linkedin.com/in/priya-sharma-603,"[""nri_buyer""]",0.98,2024-07-24T00:00:00,2025-09-16T00:00:00
|
||||
PER-0076,Rahul Pillai,rahul.pillai53@gmail.com,+91-97563-70245,https://linkedin.com/in/rahul-pillai-878,"[""high_intent_buyer""]",0.93,2025-10-25T00:00:00,2024-07-26T00:00:00
|
||||
PER-0077,Nilesh Patel,nilesh.patel19@gmail.com,+91-94099-28558,https://linkedin.com/in/nilesh-patel-600,"[""broker_referral_chain""]",0.9,2025-04-27T00:00:00,2025-09-25T00:00:00
|
||||
PER-0078,Parth Verma,parth.verma30@gmail.com,+91-98823-73827,https://linkedin.com/in/parth-verma-182,"[""high_intent_buyer""]",0.75,2024-07-02T00:00:00,2024-04-01T00:00:00
|
||||
PER-0079,Raj Reddy,raj.reddy73@yahoo.com,+91-75235-97836,https://linkedin.com/in/raj-reddy-144,"[""high_intent_buyer""]",0.76,2025-01-07T00:00:00,2024-10-18T00:00:00
|
||||
PER-0079-CO,Ananya Reddy,ananya.reddy75@gmail.com,+91-72321-40841,,"[""co_buyer""]",0.85,2026-01-08T00:00:00,2026-04-18T00:00:00
|
||||
PER-0080,Amit Patel,amit.patel47@hotmail.com,+91-75137-93623,https://linkedin.com/in/amit-patel-726,"[""nri_buyer""]",0.96,2025-08-14T00:00:00,2025-07-20T00:00:00
|
||||
PER-0080-CO,Shreya Sharma,shreya.sharma11@rediffmail.com,+91-94123-42329,,"[""co_buyer""]",0.85,2024-09-10T00:00:00,2026-04-18T00:00:00
|
||||
PER-0081,Swati Jain,swati.jain90@rediffmail.com,+91-93065-93021,https://linkedin.com/in/swati-jain-101,"[""price_sensitive_aspirational""]",0.95,2024-03-13T00:00:00,2025-01-29T00:00:00
|
||||
PER-0082,Neha Mukherjee,neha.mukherjee18@outlook.com,+91-81312-69298,https://linkedin.com/in/neha-mukherjee-597,"[""broker_referral_chain""]",0.87,2024-05-05T00:00:00,2025-04-26T00:00:00
|
||||
PER-0083,Prasenjit Roy,prasenjit.roy18@gmail.com,+91-98566-40451,https://linkedin.com/in/prasenjit-roy-954,"[""price_sensitive_aspirational""]",0.97,2025-10-22T00:00:00,2024-12-09T00:00:00
|
||||
PER-0084,Sanjay Reddy,sanjay.reddy28@rediffmail.com,+91-80492-30454,https://linkedin.com/in/sanjay-reddy-104,"[""slow_burn_investor""]",0.97,2025-07-13T00:00:00,2025-06-03T00:00:00
|
||||
PER-0084-CO,Tanvi Mukherjee,tanvi.mukherjee27@hotmail.com,+91-73829-50380,,"[""co_buyer""]",0.85,2024-01-26T00:00:00,2026-04-18T00:00:00
|
||||
PER-0085,Kavita Das,kavita.das85@hotmail.com,+91-72820-28827,https://linkedin.com/in/kavita-das-312,"[""slow_burn_investor""]",0.82,2025-06-21T00:00:00,2024-12-09T00:00:00
|
||||
PER-0086,Tanvi Chatterjee,tanvi.chatterjee86@outlook.com,+91-89040-72978,https://linkedin.com/in/tanvi-chatterjee-679,"[""high_intent_buyer""]",0.85,2024-09-21T00:00:00,2025-10-05T00:00:00
|
||||
PER-0087,Sneha Pillai,sneha.pillai84@outlook.com,+91-96978-28837,https://linkedin.com/in/sneha-pillai-113,"[""family_decision_unit""]",0.78,2024-10-15T00:00:00,2025-01-16T00:00:00
|
||||
PER-0087-CO,Raj Nair,raj.nair38@yahoo.com,+91-96054-83224,,"[""co_buyer""]",0.85,2025-09-20T00:00:00,2026-04-18T00:00:00
|
||||
PER-0088,Ananya Sen,ananya.sen25@hotmail.com,+91-76730-87018,https://linkedin.com/in/ananya-sen-304,"[""high_intent_buyer""]",0.79,2024-12-25T00:00:00,2024-01-30T00:00:00
|
||||
PER-0089,Pallavi Chatterjee,pallavi.chatterjee70@outlook.com,+91-75875-11675,https://linkedin.com/in/pallavi-chatterjee-790,"[""repeat_visitor""]",0.86,2024-04-17T00:00:00,2025-02-09T00:00:00
|
||||
PER-0090,Sanjay Saha,sanjay.saha96@outlook.com,+91-75004-49682,https://linkedin.com/in/sanjay-saha-736,"[""family_decision_unit""]",0.89,2026-02-17T00:00:00,2024-03-19T00:00:00
|
||||
PER-0090-CO,Tanvi Reddy,tanvi.reddy74@outlook.com,+91-87774-55038,,"[""co_buyer""]",0.85,2025-07-07T00:00:00,2026-04-18T00:00:00
|
||||
PER-0091,Tanvi Pillai,tanvi.pillai30@hotmail.com,+91-71826-61299,https://linkedin.com/in/tanvi-pillai-369,"[""family_decision_unit""]",0.86,2025-01-21T00:00:00,2025-09-23T00:00:00
|
||||
PER-0091-CO,Rohan Das,rohan.das56@outlook.com,+91-96527-86541,,"[""co_buyer""]",0.85,2024-01-28T00:00:00,2026-04-18T00:00:00
|
||||
PER-0092,Abhishek Chatterjee,abhishek.chatterjee78@yahoo.com,+91-79416-44754,https://linkedin.com/in/abhishek-chatterjee-148,"[""repeat_visitor""]",0.82,2025-08-10T00:00:00,2025-02-15T00:00:00
|
||||
PER-0093,Anirban Banerjee,anirban.banerjee41@outlook.com,+91-85209-73620,https://linkedin.com/in/anirban-banerjee-673,"[""slow_burn_investor""]",0.98,2025-03-08T00:00:00,2025-10-24T00:00:00
|
||||
PER-0093-CO,Neha Pillai,neha.pillai32@gmail.com,+91-93674-73680,,"[""co_buyer""]",0.85,2026-03-12T00:00:00,2026-04-18T00:00:00
|
||||
PER-0094,Ritu Sharma,ritu.sharma28@outlook.com,+91-85572-58200,https://linkedin.com/in/ritu-sharma-941,"[""family_decision_unit""]",0.82,2025-10-22T00:00:00,2025-09-12T00:00:00
|
||||
PER-0094-CO,Deb Kumar,deb.kumar59@gmail.com,+91-99811-61508,,"[""co_buyer""]",0.85,2024-09-18T00:00:00,2026-04-18T00:00:00
|
||||
PER-0095,Kunal Das,kunal.das10@rediffmail.com,+91-76556-92352,https://linkedin.com/in/kunal-das-412,"[""family_decision_unit""]",0.82,2024-03-25T00:00:00,2024-04-23T00:00:00
|
||||
PER-0095-CO,Swati Bose,swati.bose51@outlook.com,+91-76509-21062,,"[""co_buyer""]",0.85,2025-02-28T00:00:00,2026-04-18T00:00:00
|
||||
PER-0096,Sourav Gupta,sourav.gupta73@rediffmail.com,+91-74266-66532,https://linkedin.com/in/sourav-gupta-976,"[""price_sensitive_aspirational""]",0.8,2024-08-08T00:00:00,2024-10-16T00:00:00
|
||||
PER-0096-CO,Neha Patel,neha.patel89@rediffmail.com,+91-99731-42547,,"[""co_buyer""]",0.85,2025-01-13T00:00:00,2026-04-18T00:00:00
|
||||
PER-0097,Shreya Das,shreya.das21@outlook.com,+91-93273-79523,https://linkedin.com/in/shreya-das-543,"[""family_decision_unit""]",0.78,2024-04-29T00:00:00,2024-11-16T00:00:00
|
||||
PER-0098,Deepak Bose,deepak.bose33@rediffmail.com,+91-72517-42264,https://linkedin.com/in/deepak-bose-886,"[""repeat_visitor""]",0.86,2024-04-06T00:00:00,2024-12-02T00:00:00
|
||||
PER-0098-CO,Shreya Sharma,shreya.sharma86@gmail.com,+91-80794-15747,,"[""co_buyer""]",0.85,2025-11-02T00:00:00,2026-04-18T00:00:00
|
||||
PER-0099,Divya Das,divya.das55@gmail.com,+91-97264-58163,https://linkedin.com/in/divya-das-624,"[""price_sensitive_aspirational""]",0.8,2025-04-01T00:00:00,2025-02-01T00:00:00
|
||||
PER-0099-CO,Kunal Patel,kunal.patel92@yahoo.com,+91-86230-79111,,"[""co_buyer""]",0.85,2025-10-06T00:00:00,2026-04-18T00:00:00
|
||||
PER-0100,Shreya Saha,shreya.saha43@outlook.com,+91-98552-34535,https://linkedin.com/in/shreya-saha-316,"[""slow_burn_investor""]",0.79,2026-02-03T00:00:00,2025-09-10T00:00:00
|
||||
PER-0100-CO,Sanjay Saha,sanjay.saha72@outlook.com,+91-90266-90837,,"[""co_buyer""]",0.85,2025-01-04T00:00:00,2026-04-18T00:00:00
|
||||
PER-0101,Priya Agarwal,priya.agarwal11@gmail.com,+91-90657-66595,https://linkedin.com/in/priya-agarwal-525,"[""price_sensitive_aspirational""]",0.95,2026-01-24T00:00:00,2025-08-15T00:00:00
|
||||
PER-0102,Debjani Ghosh,debjani.ghosh35@yahoo.com,+91-89849-74511,https://linkedin.com/in/debjani-ghosh-203,"[""price_sensitive_aspirational""]",0.93,2025-05-20T00:00:00,2024-11-06T00:00:00
|
||||
PER-0102-CO,Parth Patel,parth.patel25@hotmail.com,+91-77343-73748,,"[""co_buyer""]",0.85,2024-09-21T00:00:00,2026-04-18T00:00:00
|
||||
PER-0103,Rahul Agarwal,rahul.agarwal27@gmail.com,+91-97806-36462,https://linkedin.com/in/rahul-agarwal-549,"[""broker_referral_chain""]",0.97,2026-02-26T00:00:00,2026-02-26T00:00:00
|
||||
PER-0103-CO,Debjani Nair,debjani.nair63@yahoo.com,+91-74521-66206,,"[""co_buyer""]",0.85,2025-02-27T00:00:00,2026-04-18T00:00:00
|
||||
PER-0104,Prasenjit Chatterjee,prasenjit.chatterjee14@hotmail.com,+91-80960-61117,https://linkedin.com/in/prasenjit-chatterjee-842,"[""nri_buyer""]",0.92,2024-05-09T00:00:00,2025-06-16T00:00:00
|
||||
PER-0104-CO,Sonal Ghosh,sonal.ghosh12@gmail.com,+91-99173-80770,,"[""co_buyer""]",0.85,2025-08-29T00:00:00,2026-04-18T00:00:00
|
||||
PER-0105,Rahul Kumar,rahul.kumar22@yahoo.com,+91-93319-65796,https://linkedin.com/in/rahul-kumar-948,"[""slow_burn_investor""]",0.84,2024-04-04T00:00:00,2024-03-04T00:00:00
|
||||
PER-0106,Ananya Sen,ananya.sen80@outlook.com,+91-72213-15856,https://linkedin.com/in/ananya-sen-527,"[""price_sensitive_aspirational""]",0.86,2024-11-13T00:00:00,2025-08-02T00:00:00
|
||||
PER-0107,Moumita Sharma,moumita.sharma21@gmail.com,+91-73254-81012,https://linkedin.com/in/moumita-sharma-272,"[""high_intent_buyer""]",0.82,2024-07-06T00:00:00,2024-09-18T00:00:00
|
||||
PER-0107-CO,Amit Ghosh,amit.ghosh13@gmail.com,+91-79765-61110,,"[""co_buyer""]",0.85,2024-04-11T00:00:00,2026-04-18T00:00:00
|
||||
PER-0108,Kunal Saha,kunal.saha47@yahoo.com,+91-70017-17887,https://linkedin.com/in/kunal-saha-593,"[""nri_buyer""]",0.81,2024-09-13T00:00:00,2025-11-27T00:00:00
|
||||
PER-0108-CO,Sneha Das,sneha.das81@outlook.com,+91-98779-66618,,"[""co_buyer""]",0.85,2024-08-03T00:00:00,2026-04-18T00:00:00
|
||||
PER-0109,Kunal Banerjee,kunal.banerjee38@gmail.com,+91-94851-46848,https://linkedin.com/in/kunal-banerjee-796,"[""slow_burn_investor""]",0.96,2025-01-01T00:00:00,2024-07-15T00:00:00
|
||||
PER-0110,Deb Singh,deb.singh19@yahoo.com,+91-76451-31558,https://linkedin.com/in/deb-singh-437,"[""slow_burn_investor""]",0.82,2025-10-03T00:00:00,2025-10-02T00:00:00
|
||||
PER-0111,Riya Sen,riya.sen96@gmail.com,+91-88325-16842,https://linkedin.com/in/riya-sen-401,"[""family_decision_unit""]",0.95,2025-02-15T00:00:00,2024-04-08T00:00:00
|
||||
PER-0112,Isha Bose,isha.bose79@yahoo.com,+91-74830-71541,https://linkedin.com/in/isha-bose-416,"[""nri_buyer""]",0.89,2024-10-25T00:00:00,2025-01-12T00:00:00
|
||||
PER-0113,Deb Reddy,deb.reddy52@rediffmail.com,+91-76727-62469,https://linkedin.com/in/deb-reddy-288,"[""slow_burn_investor""]",0.94,2024-01-07T00:00:00,2025-01-06T00:00:00
|
||||
PER-0114,Debjani Nair,debjani.nair84@rediffmail.com,+91-76856-20670,https://linkedin.com/in/debjani-nair-903,"[""high_intent_buyer""]",0.86,2025-11-10T00:00:00,2025-09-21T00:00:00
|
||||
PER-0115,Neha Pillai,neha.pillai20@yahoo.com,+91-94629-21013,https://linkedin.com/in/neha-pillai-402,"[""family_decision_unit""]",0.85,2024-12-26T00:00:00,2024-08-23T00:00:00
|
||||
PER-0115-CO,Sanjay Banerjee,sanjay.banerjee32@rediffmail.com,+91-77660-44815,,"[""co_buyer""]",0.85,2025-10-22T00:00:00,2026-04-18T00:00:00
|
||||
PER-0116,Ritu Singh,ritu.singh64@rediffmail.com,+91-94996-80464,https://linkedin.com/in/ritu-singh-406,"[""price_sensitive_aspirational""]",0.82,2024-01-24T00:00:00,2025-08-04T00:00:00
|
||||
PER-0117,Priya Jain,priya.jain76@gmail.com,+91-75630-52830,https://linkedin.com/in/priya-jain-980,"[""family_decision_unit""]",0.96,2025-02-04T00:00:00,2024-06-09T00:00:00
|
||||
PER-0117-CO,Aditya Verma,aditya.verma36@yahoo.com,+91-98522-36958,,"[""co_buyer""]",0.85,2024-11-13T00:00:00,2026-04-18T00:00:00
|
||||
PER-0118,Sourav Pillai,sourav.pillai47@gmail.com,+91-92873-38476,https://linkedin.com/in/sourav-pillai-605,"[""broker_referral_chain""]",0.84,2026-02-19T00:00:00,2025-07-20T00:00:00
|
||||
PER-0119,Manish Roy,manish.roy66@gmail.com,+91-97410-93203,https://linkedin.com/in/manish-roy-930,"[""high_intent_buyer""]",0.87,2025-11-09T00:00:00,2026-01-03T00:00:00
|
||||
PER-0119-CO,Priya Verma,priya.verma35@yahoo.com,+91-82276-41265,,"[""co_buyer""]",0.85,2024-07-23T00:00:00,2026-04-18T00:00:00
|
||||
PER-0120,Aditya Sharma,aditya.sharma93@hotmail.com,+91-82090-15759,https://linkedin.com/in/aditya-sharma-168,"[""slow_burn_investor""]",0.95,2025-02-24T00:00:00,2024-11-04T00:00:00
|
||||
PER-0121,Pallavi Mukherjee,pallavi.mukherjee40@hotmail.com,+91-84540-53082,https://linkedin.com/in/pallavi-mukherjee-237,"[""slow_burn_investor""]",0.81,2025-10-21T00:00:00,2026-03-16T00:00:00
|
||||
PER-0122,Deb Nair,deb.nair20@rediffmail.com,+91-93756-71220,https://linkedin.com/in/deb-nair-418,"[""high_intent_buyer""]",0.79,2024-07-21T00:00:00,2024-09-07T00:00:00
|
||||
PER-0122-CO,Swati Reddy,swati.reddy66@rediffmail.com,+91-86557-89874,,"[""co_buyer""]",0.85,2026-01-22T00:00:00,2026-04-18T00:00:00
|
||||
PER-0123,Vivek Mukherjee,vivek.mukherjee25@rediffmail.com,+91-88533-31281,https://linkedin.com/in/vivek-mukherjee-298,"[""family_decision_unit""]",0.93,2024-09-18T00:00:00,2026-02-28T00:00:00
|
||||
PER-0123-CO,Trisha Mukherjee,trisha.mukherjee93@rediffmail.com,+91-83894-42347,,"[""co_buyer""]",0.85,2024-09-05T00:00:00,2026-04-18T00:00:00
|
||||
PER-0124,Vikram Bose,vikram.bose54@yahoo.com,+91-78815-37462,https://linkedin.com/in/vikram-bose-866,"[""nri_buyer""]",0.84,2024-11-11T00:00:00,2024-01-07T00:00:00
|
||||
PER-0125,Anirban Sharma,anirban.sharma62@rediffmail.com,+91-90540-91844,https://linkedin.com/in/anirban-sharma-211,"[""high_intent_buyer""]",0.95,2024-06-19T00:00:00,2024-03-22T00:00:00
|
||||
PER-0126,Vidya Singh,vidya.singh94@yahoo.com,+91-70102-93633,https://linkedin.com/in/vidya-singh-932,"[""family_decision_unit""]",0.82,2025-10-10T00:00:00,2025-01-03T00:00:00
|
||||
PER-0126-CO,Abhishek Verma,abhishek.verma88@gmail.com,+91-81414-66087,,"[""co_buyer""]",0.85,2025-05-02T00:00:00,2026-04-18T00:00:00
|
||||
PER-0127,Sneha Das,sneha.das78@rediffmail.com,+91-72963-53620,https://linkedin.com/in/sneha-das-992,"[""price_sensitive_aspirational""]",0.8,2025-08-12T00:00:00,2026-02-23T00:00:00
|
||||
PER-0128,Sonal Das,sonal.das47@yahoo.com,+91-86378-99126,https://linkedin.com/in/sonal-das-566,"[""high_intent_buyer""]",0.78,2024-10-17T00:00:00,2024-05-29T00:00:00
|
||||
PER-0129,Pallavi Pillai,pallavi.pillai60@gmail.com,+91-74289-52391,https://linkedin.com/in/pallavi-pillai-870,"[""price_sensitive_aspirational""]",0.93,2024-02-25T00:00:00,2025-12-27T00:00:00
|
||||
PER-0130,Isha Saha,isha.saha32@rediffmail.com,+91-95423-97914,https://linkedin.com/in/isha-saha-774,"[""slow_burn_investor""]",0.77,2025-04-19T00:00:00,2026-04-17T00:00:00
|
||||
PER-0130-CO,Aditya Sen,aditya.sen72@hotmail.com,+91-77370-13018,,"[""co_buyer""]",0.85,2025-08-23T00:00:00,2026-04-18T00:00:00
|
||||
PER-0131,Siddharth Chatterjee,siddharth.chatterjee81@outlook.com,+91-97900-14588,https://linkedin.com/in/siddharth-chatterjee-186,"[""high_intent_buyer""]",0.98,2025-06-02T00:00:00,2024-11-01T00:00:00
|
||||
PER-0132,Shreya Chatterjee,shreya.chatterjee42@rediffmail.com,+91-92757-28775,https://linkedin.com/in/shreya-chatterjee-648,"[""broker_referral_chain""]",0.8,2025-10-06T00:00:00,2026-01-20T00:00:00
|
||||
PER-0132-CO,Parth Patel,parth.patel19@outlook.com,+91-74083-79660,,"[""co_buyer""]",0.85,2024-04-22T00:00:00,2026-04-18T00:00:00
|
||||
PER-0133,Priya Jain,priya.jain41@hotmail.com,+91-83705-70003,https://linkedin.com/in/priya-jain-287,"[""slow_burn_investor""]",0.85,2024-12-28T00:00:00,2026-03-28T00:00:00
|
||||
PER-0134,Parth Kumar,parth.kumar31@hotmail.com,+91-99615-39500,https://linkedin.com/in/parth-kumar-279,"[""repeat_visitor""]",0.77,2024-05-16T00:00:00,2025-06-10T00:00:00
|
||||
PER-0135,Vivek Sen,vivek.sen72@gmail.com,+91-75099-96066,https://linkedin.com/in/vivek-sen-356,"[""family_decision_unit""]",0.8,2025-02-08T00:00:00,2025-01-18T00:00:00
|
||||
PER-0135-CO,Trisha Singh,trisha.singh10@outlook.com,+91-98953-36013,,"[""co_buyer""]",0.85,2024-04-23T00:00:00,2026-04-18T00:00:00
|
||||
PER-0136,Ritu Singh,ritu.singh35@rediffmail.com,+91-93149-23508,https://linkedin.com/in/ritu-singh-817,"[""price_sensitive_aspirational""]",0.92,2025-09-17T00:00:00,2024-07-04T00:00:00
|
||||
PER-0136-CO,Anirban Chatterjee,anirban.chatterjee16@rediffmail.com,+91-83346-78809,,"[""co_buyer""]",0.85,2024-11-09T00:00:00,2026-04-18T00:00:00
|
||||
PER-0137,Prasenjit Reddy,prasenjit.reddy45@hotmail.com,+91-73301-66479,https://linkedin.com/in/prasenjit-reddy-289,"[""price_sensitive_aspirational""]",0.81,2025-05-18T00:00:00,2025-01-07T00:00:00
|
||||
PER-0138,Vidya Nair,vidya.nair12@yahoo.com,+91-89633-45933,https://linkedin.com/in/vidya-nair-813,"[""high_intent_buyer""]",0.97,2024-10-23T00:00:00,2024-02-16T00:00:00
|
||||
PER-0138-CO,Manish Nair,manish.nair19@yahoo.com,+91-84344-76752,,"[""co_buyer""]",0.85,2025-01-28T00:00:00,2026-04-18T00:00:00
|
||||
PER-0139,Raj Sharma,raj.sharma27@outlook.com,+91-98619-16752,https://linkedin.com/in/raj-sharma-757,"[""slow_burn_investor""]",0.98,2024-08-03T00:00:00,2025-07-01T00:00:00
|
||||
PER-0140,Swati Ghosh,swati.ghosh60@hotmail.com,+91-76155-19103,https://linkedin.com/in/swati-ghosh-246,"[""slow_burn_investor""]",0.77,2024-09-08T00:00:00,2025-04-10T00:00:00
|
||||
PER-0141,Sneha Nair,sneha.nair63@yahoo.com,+91-70039-39401,https://linkedin.com/in/sneha-nair-124,"[""high_intent_buyer""]",0.8,2025-01-29T00:00:00,2024-05-30T00:00:00
|
||||
PER-0142,Riya Sen,riya.sen83@rediffmail.com,+91-93812-46500,https://linkedin.com/in/riya-sen-248,"[""nri_buyer""]",0.77,2024-05-10T00:00:00,2024-07-05T00:00:00
|
||||
PER-0143,Debjani Gupta,debjani.gupta68@yahoo.com,+91-97369-82286,https://linkedin.com/in/debjani-gupta-531,"[""broker_referral_chain""]",0.81,2024-08-17T00:00:00,2024-02-27T00:00:00
|
||||
PER-0143-CO,Vivek Jain,vivek.jain16@gmail.com,+91-91716-86232,,"[""co_buyer""]",0.85,2024-03-16T00:00:00,2026-04-18T00:00:00
|
||||
PER-0144,Vivek Ghosh,vivek.ghosh44@gmail.com,+91-87088-59487,https://linkedin.com/in/vivek-ghosh-228,"[""family_decision_unit""]",0.92,2025-02-14T00:00:00,2025-09-25T00:00:00
|
||||
PER-0144-CO,Moumita Verma,moumita.verma31@gmail.com,+91-96323-58690,,"[""co_buyer""]",0.85,2025-10-24T00:00:00,2026-04-18T00:00:00
|
||||
PER-0145,Moumita Jain,moumita.jain26@gmail.com,+91-80856-63383,https://linkedin.com/in/moumita-jain-859,"[""family_decision_unit""]",0.87,2025-05-29T00:00:00,2026-04-06T00:00:00
|
||||
PER-0145-CO,Rohan Gupta,rohan.gupta30@yahoo.com,+91-92360-70700,,"[""co_buyer""]",0.85,2024-03-21T00:00:00,2026-04-18T00:00:00
|
||||
PER-0146,Trisha Chatterjee,trisha.chatterjee19@yahoo.com,+91-93286-70390,https://linkedin.com/in/trisha-chatterjee-364,"[""slow_burn_investor""]",0.98,2024-09-19T00:00:00,2026-02-20T00:00:00
|
||||
PER-0147,Riya Patel,riya.patel59@rediffmail.com,+91-91926-22255,https://linkedin.com/in/riya-patel-457,"[""high_intent_buyer""]",0.86,2025-10-19T00:00:00,2025-07-01T00:00:00
|
||||
PER-0148,Rahul Singh,rahul.singh70@yahoo.com,+91-71772-37720,https://linkedin.com/in/rahul-singh-988,"[""price_sensitive_aspirational""]",0.76,2026-02-15T00:00:00,2025-12-01T00:00:00
|
||||
PER-0149,Vivek Sharma,vivek.sharma76@gmail.com,+91-84763-26478,https://linkedin.com/in/vivek-sharma-749,"[""broker_referral_chain""]",0.85,2025-08-15T00:00:00,2024-04-09T00:00:00
|
||||
PER-0150,Moumita Gupta,moumita.gupta94@rediffmail.com,+91-90778-47125,https://linkedin.com/in/moumita-gupta-818,"[""family_decision_unit""]",0.89,2024-04-11T00:00:00,2024-03-30T00:00:00
|
||||
PER-0150-CO,Vivek Sen,vivek.sen73@hotmail.com,+91-87849-23068,,"[""co_buyer""]",0.85,2025-10-10T00:00:00,2026-04-18T00:00:00
|
||||
PER-0151,Rahul Nair,rahul.nair86@outlook.com,+91-80980-32336,https://linkedin.com/in/rahul-nair-685,"[""high_intent_buyer""]",0.98,2024-09-04T00:00:00,2025-07-23T00:00:00
|
||||
PER-0151-CO,Moumita Ghosh,moumita.ghosh61@outlook.com,+91-86950-30767,,"[""co_buyer""]",0.85,2025-03-23T00:00:00,2026-04-18T00:00:00
|
||||
PER-0152,Swati Patel,swati.patel93@yahoo.com,+91-79729-35405,https://linkedin.com/in/swati-patel-648,"[""family_decision_unit""]",0.94,2026-01-13T00:00:00,2026-03-09T00:00:00
|
||||
PER-0152-CO,Aditya Das,aditya.das90@gmail.com,+91-90918-85937,,"[""co_buyer""]",0.85,2024-04-15T00:00:00,2026-04-18T00:00:00
|
||||
PER-0153,Nilesh Saha,nilesh.saha14@gmail.com,+91-81233-55453,https://linkedin.com/in/nilesh-saha-595,"[""slow_burn_investor""]",0.98,2025-09-06T00:00:00,2025-07-13T00:00:00
|
||||
PER-0154,Moumita Banerjee,moumita.banerjee24@yahoo.com,+91-96510-52294,https://linkedin.com/in/moumita-banerjee-539,"[""price_sensitive_aspirational""]",0.93,2025-01-01T00:00:00,2024-09-08T00:00:00
|
||||
PER-0154-CO,Nilesh Agarwal,nilesh.agarwal39@hotmail.com,+91-72170-60540,,"[""co_buyer""]",0.85,2024-10-17T00:00:00,2026-04-18T00:00:00
|
||||
PER-0155,Priya Pillai,priya.pillai77@gmail.com,+91-81055-94512,https://linkedin.com/in/priya-pillai-116,"[""price_sensitive_aspirational""]",0.77,2024-04-07T00:00:00,2026-04-01T00:00:00
|
||||
PER-0155-CO,Prasenjit Kumar,prasenjit.kumar73@gmail.com,+91-97625-59008,,"[""co_buyer""]",0.85,2025-09-24T00:00:00,2026-04-18T00:00:00
|
||||
PER-0156,Raj Agarwal,raj.agarwal28@hotmail.com,+91-99091-64171,https://linkedin.com/in/raj-agarwal-752,"[""family_decision_unit""]",0.85,2024-05-05T00:00:00,2025-06-18T00:00:00
|
||||
PER-0157,Raj Kumar,raj.kumar23@gmail.com,+91-77882-12174,https://linkedin.com/in/raj-kumar-571,"[""slow_burn_investor""]",0.79,2024-01-30T00:00:00,2025-05-02T00:00:00
|
||||
PER-0158,Deb Sen,deb.sen16@gmail.com,+91-88849-44888,https://linkedin.com/in/deb-sen-344,"[""slow_burn_investor""]",0.77,2024-04-13T00:00:00,2024-10-09T00:00:00
|
||||
PER-0159,Sourav Chatterjee,sourav.chatterjee31@gmail.com,+91-89464-56156,https://linkedin.com/in/sourav-chatterjee-585,"[""slow_burn_investor""]",0.88,2025-05-15T00:00:00,2024-09-10T00:00:00
|
||||
PER-0160,Rahul Reddy,rahul.reddy13@yahoo.com,+91-88926-66455,https://linkedin.com/in/rahul-reddy-468,"[""family_decision_unit""]",0.8,2024-04-01T00:00:00,2024-07-17T00:00:00
|
||||
PER-0161,Rohan Reddy,rohan.reddy49@gmail.com,+91-84100-56170,https://linkedin.com/in/rohan-reddy-776,"[""slow_burn_investor""]",0.94,2024-02-21T00:00:00,2024-09-14T00:00:00
|
||||
PER-0162,Sonal Nair,sonal.nair97@outlook.com,+91-85347-56424,https://linkedin.com/in/sonal-nair-537,"[""high_intent_buyer""]",0.86,2025-02-24T00:00:00,2025-04-17T00:00:00
|
||||
PER-0163,Aditya Banerjee,aditya.banerjee29@hotmail.com,+91-98832-25864,https://linkedin.com/in/aditya-banerjee-632,"[""family_decision_unit""]",0.77,2024-07-28T00:00:00,2024-04-16T00:00:00
|
||||
PER-0164,Debjani Kumar,debjani.kumar68@outlook.com,+91-70298-30750,https://linkedin.com/in/debjani-kumar-466,"[""broker_referral_chain""]",0.87,2025-05-30T00:00:00,2024-08-03T00:00:00
|
||||
PER-0165,Sneha Mukherjee,sneha.mukherjee19@rediffmail.com,+91-95013-59063,https://linkedin.com/in/sneha-mukherjee-721,"[""high_intent_buyer""]",0.9,2024-01-31T00:00:00,2024-06-27T00:00:00
|
||||
PER-0165-CO,Deb Roy,deb.roy30@rediffmail.com,+91-96667-79275,,"[""co_buyer""]",0.85,2026-03-19T00:00:00,2026-04-18T00:00:00
|
||||
PER-0166,Aditya Kumar,aditya.kumar64@rediffmail.com,+91-98638-19288,https://linkedin.com/in/aditya-kumar-682,"[""broker_referral_chain""]",0.77,2026-03-12T00:00:00,2025-06-13T00:00:00
|
||||
PER-0167,Raj Roy,raj.roy80@outlook.com,+91-94816-96944,https://linkedin.com/in/raj-roy-999,"[""broker_referral_chain""]",0.76,2025-05-20T00:00:00,2024-03-15T00:00:00
|
||||
PER-0168,Arjun Mukherjee,arjun.mukherjee13@yahoo.com,+91-87504-89709,https://linkedin.com/in/arjun-mukherjee-980,"[""price_sensitive_aspirational""]",0.84,2025-12-01T00:00:00,2026-01-25T00:00:00
|
||||
PER-0168-CO,Sneha Saha,sneha.saha57@outlook.com,+91-76345-54974,,"[""co_buyer""]",0.85,2025-03-23T00:00:00,2026-04-18T00:00:00
|
||||
PER-0169,Prasenjit Das,prasenjit.das87@rediffmail.com,+91-85686-96190,https://linkedin.com/in/prasenjit-das-225,"[""family_decision_unit""]",0.9,2024-03-19T00:00:00,2024-09-13T00:00:00
|
||||
PER-0170,Sanjay Verma,sanjay.verma66@gmail.com,+91-77354-36965,https://linkedin.com/in/sanjay-verma-488,"[""nri_buyer""]",0.79,2025-03-17T00:00:00,2025-06-29T00:00:00
|
||||
PER-0171,Sonal Bose,sonal.bose60@gmail.com,+91-90170-45949,https://linkedin.com/in/sonal-bose-470,"[""repeat_visitor""]",0.81,2024-09-13T00:00:00,2026-03-12T00:00:00
|
||||
PER-0172,Raj Saha,raj.saha93@gmail.com,+91-77624-25000,https://linkedin.com/in/raj-saha-770,"[""high_intent_buyer""]",0.76,2025-12-01T00:00:00,2025-06-02T00:00:00
|
||||
PER-0173,Nilesh Banerjee,nilesh.banerjee23@hotmail.com,+91-76929-51039,https://linkedin.com/in/nilesh-banerjee-623,"[""high_intent_buyer""]",0.91,2026-01-29T00:00:00,2025-06-04T00:00:00
|
||||
PER-0174,Deb Kumar,deb.kumar62@outlook.com,+91-72611-56135,https://linkedin.com/in/deb-kumar-673,"[""price_sensitive_aspirational""]",0.87,2025-01-05T00:00:00,2025-10-31T00:00:00
|
||||
PER-0175,Prasenjit Sen,prasenjit.sen53@outlook.com,+91-89381-89791,https://linkedin.com/in/prasenjit-sen-731,"[""nri_buyer""]",0.77,2026-01-09T00:00:00,2024-02-16T00:00:00
|
||||
PER-0176,Neha Reddy,neha.reddy66@yahoo.com,+91-99011-32193,https://linkedin.com/in/neha-reddy-395,"[""high_intent_buyer""]",0.97,2024-09-22T00:00:00,2025-09-12T00:00:00
|
||||
PER-0177,Neha Kumar,neha.kumar90@hotmail.com,+91-92022-19710,https://linkedin.com/in/neha-kumar-823,"[""high_intent_buyer""]",0.91,2024-02-09T00:00:00,2025-03-19T00:00:00
|
||||
PER-0178,Meera Patel,meera.patel91@outlook.com,+91-85867-79528,https://linkedin.com/in/meera-patel-772,"[""slow_burn_investor""]",0.97,2024-11-03T00:00:00,2024-08-25T00:00:00
|
||||
PER-0179,Tanvi Patel,tanvi.patel53@gmail.com,+91-80109-68672,https://linkedin.com/in/tanvi-patel-519,"[""broker_referral_chain""]",0.8,2024-06-19T00:00:00,2025-07-02T00:00:00
|
||||
PER-0180,Rohan Sharma,rohan.sharma25@rediffmail.com,+91-91472-62527,https://linkedin.com/in/rohan-sharma-234,"[""slow_burn_investor""]",0.94,2024-10-03T00:00:00,2024-03-27T00:00:00
|
||||
PER-0181,Sanjay Saha,sanjay.saha70@hotmail.com,+91-93692-84270,https://linkedin.com/in/sanjay-saha-878,"[""slow_burn_investor""]",0.8,2026-02-24T00:00:00,2025-05-20T00:00:00
|
||||
PER-0182,Neha Nair,neha.nair51@hotmail.com,+91-99148-58710,https://linkedin.com/in/neha-nair-677,"[""nri_buyer""]",0.9,2024-05-24T00:00:00,2024-10-24T00:00:00
|
||||
PER-0183,Rahul Banerjee,rahul.banerjee34@outlook.com,+91-79312-65858,https://linkedin.com/in/rahul-banerjee-698,"[""slow_burn_investor""]",0.92,2025-01-11T00:00:00,2025-10-01T00:00:00
|
||||
PER-0184,Deb Pillai,deb.pillai60@rediffmail.com,+91-95359-60532,https://linkedin.com/in/deb-pillai-823,"[""slow_burn_investor""]",0.86,2024-11-15T00:00:00,2025-06-18T00:00:00
|
||||
PER-0184-CO,Neha Sen,neha.sen81@rediffmail.com,+91-91367-55636,,"[""co_buyer""]",0.85,2024-07-01T00:00:00,2026-04-18T00:00:00
|
||||
PER-0185,Abhishek Saha,abhishek.saha90@rediffmail.com,+91-86066-32776,https://linkedin.com/in/abhishek-saha-584,"[""high_intent_buyer""]",0.92,2025-10-25T00:00:00,2026-02-07T00:00:00
|
||||
PER-0185-CO,Sneha Mukherjee,sneha.mukherjee66@gmail.com,+91-80296-22776,,"[""co_buyer""]",0.85,2025-07-11T00:00:00,2026-04-18T00:00:00
|
||||
PER-0186,Meera Banerjee,meera.banerjee31@gmail.com,+91-77127-93616,https://linkedin.com/in/meera-banerjee-483,"[""high_intent_buyer""]",0.86,2026-01-11T00:00:00,2024-09-09T00:00:00
|
||||
PER-0186-CO,Deb Roy,deb.roy44@yahoo.com,+91-75803-48657,,"[""co_buyer""]",0.85,2024-09-22T00:00:00,2026-04-18T00:00:00
|
||||
PER-0187,Meera Bose,meera.bose98@rediffmail.com,+91-93951-62341,https://linkedin.com/in/meera-bose-584,"[""price_sensitive_aspirational""]",0.94,2024-09-15T00:00:00,2026-01-10T00:00:00
|
||||
PER-0188,Raj Pillai,raj.pillai57@gmail.com,+91-85641-30883,https://linkedin.com/in/raj-pillai-452,"[""nri_buyer""]",0.77,2025-07-17T00:00:00,2025-12-04T00:00:00
|
||||
PER-0188-CO,Debjani Verma,debjani.verma51@outlook.com,+91-96862-98440,,"[""co_buyer""]",0.85,2026-01-17T00:00:00,2026-04-18T00:00:00
|
||||
PER-0189,Kunal Chatterjee,kunal.chatterjee54@gmail.com,+91-91491-63015,https://linkedin.com/in/kunal-chatterjee-922,"[""nri_buyer""]",0.94,2024-06-13T00:00:00,2024-11-22T00:00:00
|
||||
PER-0190,Shreya Jain,shreya.jain16@hotmail.com,+91-92491-58404,https://linkedin.com/in/shreya-jain-358,"[""high_intent_buyer""]",0.85,2025-11-22T00:00:00,2024-10-30T00:00:00
|
||||
PER-0190-CO,Arjun Kumar,arjun.kumar51@outlook.com,+91-90839-14668,,"[""co_buyer""]",0.85,2025-09-02T00:00:00,2026-04-18T00:00:00
|
||||
PER-0191,Rohan Jain,rohan.jain83@rediffmail.com,+91-77051-67271,https://linkedin.com/in/rohan-jain-381,"[""family_decision_unit""]",0.92,2026-03-07T00:00:00,2024-07-09T00:00:00
|
||||
PER-0191-CO,Kavita Das,kavita.das45@outlook.com,+91-85153-88522,,"[""co_buyer""]",0.85,2026-03-20T00:00:00,2026-04-18T00:00:00
|
||||
PER-0192,Asha Reddy,asha.reddy40@rediffmail.com,+91-87615-27261,https://linkedin.com/in/asha-reddy-487,"[""price_sensitive_aspirational""]",0.89,2024-05-06T00:00:00,2024-04-09T00:00:00
|
||||
PER-0193,Nilesh Reddy,nilesh.reddy97@gmail.com,+91-82133-12977,https://linkedin.com/in/nilesh-reddy-860,"[""family_decision_unit""]",0.89,2026-03-19T00:00:00,2025-10-31T00:00:00
|
||||
PER-0194,Debjani Patel,debjani.patel71@yahoo.com,+91-78667-22730,https://linkedin.com/in/debjani-patel-437,"[""nri_buyer""]",0.9,2024-03-16T00:00:00,2025-04-14T00:00:00
|
||||
PER-0195,Nilesh Banerjee,nilesh.banerjee43@outlook.com,+91-93630-76662,https://linkedin.com/in/nilesh-banerjee-863,"[""family_decision_unit""]",0.95,2025-06-13T00:00:00,2025-02-19T00:00:00
|
||||
PER-0195-CO,Tanvi Ghosh,tanvi.ghosh77@rediffmail.com,+91-75747-73438,,"[""co_buyer""]",0.85,2025-01-23T00:00:00,2026-04-18T00:00:00
|
||||
PER-0196,Nilesh Bose,nilesh.bose71@rediffmail.com,+91-73220-80376,https://linkedin.com/in/nilesh-bose-900,"[""slow_burn_investor""]",0.76,2026-03-19T00:00:00,2025-10-11T00:00:00
|
||||
PER-0196-CO,Ananya Bose,ananya.bose65@gmail.com,+91-93592-68017,,"[""co_buyer""]",0.85,2026-03-07T00:00:00,2026-04-18T00:00:00
|
||||
PER-0197,Vivek Gupta,vivek.gupta22@rediffmail.com,+91-81220-93608,https://linkedin.com/in/vivek-gupta-803,"[""high_intent_buyer""]",0.87,2024-07-06T00:00:00,2024-07-17T00:00:00
|
||||
PER-0198,Trisha Agarwal,trisha.agarwal67@outlook.com,+91-83936-83831,https://linkedin.com/in/trisha-agarwal-502,"[""high_intent_buyer""]",0.93,2024-01-06T00:00:00,2026-02-19T00:00:00
|
||||
PER-0199,Ritu Sharma,ritu.sharma87@hotmail.com,+91-82288-17774,https://linkedin.com/in/ritu-sharma-203,"[""repeat_visitor""]",0.76,2024-12-16T00:00:00,2024-10-09T00:00:00
|
||||
PER-0199-CO,Nilesh Roy,nilesh.roy81@gmail.com,+91-84360-42142,,"[""co_buyer""]",0.85,2024-12-01T00:00:00,2026-04-18T00:00:00
|
||||
PER-0200,Raj Sen,raj.sen92@rediffmail.com,+91-84002-61944,https://linkedin.com/in/raj-sen-925,"[""price_sensitive_aspirational""]",0.86,2024-02-19T00:00:00,2025-06-25T00:00:00
|
||||
PER-0201,Anirban Das,anirban.das36@outlook.com,+91-75950-23224,https://linkedin.com/in/anirban-das-126,"[""broker_referral_chain""]",0.87,2024-02-10T00:00:00,2026-03-09T00:00:00
|
||||
PER-0202,Vidya Sen,vidya.sen68@gmail.com,+91-70237-59811,https://linkedin.com/in/vidya-sen-922,"[""slow_burn_investor""]",0.85,2024-04-12T00:00:00,2024-12-29T00:00:00
|
||||
PER-0203,Priya Das,priya.das62@gmail.com,+91-87677-59418,https://linkedin.com/in/priya-das-880,"[""high_intent_buyer""]",0.89,2025-06-21T00:00:00,2024-06-22T00:00:00
|
||||
PER-0204,Shreya Bose,shreya.bose76@hotmail.com,+91-88912-44960,https://linkedin.com/in/shreya-bose-878,"[""family_decision_unit""]",0.96,2024-12-01T00:00:00,2025-03-08T00:00:00
|
||||
PER-0204-CO,Rohan Patel,rohan.patel30@rediffmail.com,+91-80568-11535,,"[""co_buyer""]",0.85,2025-08-08T00:00:00,2026-04-18T00:00:00
|
||||
PER-0205,Vidya Saha,vidya.saha29@hotmail.com,+91-98178-79541,https://linkedin.com/in/vidya-saha-637,"[""price_sensitive_aspirational""]",0.76,2025-06-29T00:00:00,2025-01-06T00:00:00
|
||||
PER-0205-CO,Parth Singh,parth.singh35@outlook.com,+91-71602-62543,,"[""co_buyer""]",0.85,2024-10-30T00:00:00,2026-04-18T00:00:00
|
||||
PER-0206,Sonal Banerjee,sonal.banerjee91@gmail.com,+91-87059-50784,https://linkedin.com/in/sonal-banerjee-636,"[""nri_buyer""]",0.77,2025-10-05T00:00:00,2025-09-04T00:00:00
|
||||
PER-0207,Sneha Reddy,sneha.reddy81@hotmail.com,+91-97440-84136,https://linkedin.com/in/sneha-reddy-484,"[""family_decision_unit""]",0.89,2025-11-14T00:00:00,2025-01-26T00:00:00
|
||||
PER-0208,Amit Jain,amit.jain88@hotmail.com,+91-94243-39828,https://linkedin.com/in/amit-jain-424,"[""price_sensitive_aspirational""]",0.94,2024-04-13T00:00:00,2026-01-09T00:00:00
|
||||
PER-0209,Moumita Das,moumita.das59@gmail.com,+91-97689-48523,https://linkedin.com/in/moumita-das-728,"[""slow_burn_investor""]",0.88,2024-03-25T00:00:00,2024-11-27T00:00:00
|
||||
PER-0210,Neha Jain,neha.jain43@rediffmail.com,+91-82131-57777,https://linkedin.com/in/neha-jain-340,"[""family_decision_unit""]",0.82,2024-12-31T00:00:00,2024-03-19T00:00:00
|
||||
PER-0210-CO,Manish Bose,manish.bose26@gmail.com,+91-95697-76512,,"[""co_buyer""]",0.85,2025-12-26T00:00:00,2026-04-18T00:00:00
|
||||
PER-0211,Meera Sharma,meera.sharma13@hotmail.com,+91-86082-66469,https://linkedin.com/in/meera-sharma-821,"[""repeat_visitor""]",0.93,2024-05-16T00:00:00,2025-02-09T00:00:00
|
||||
PER-0212,Swati Sen,swati.sen49@outlook.com,+91-75813-66408,https://linkedin.com/in/swati-sen-358,"[""nri_buyer""]",0.86,2024-07-07T00:00:00,2024-09-23T00:00:00
|
||||
PER-0213,Prasenjit Gupta,prasenjit.gupta23@outlook.com,+91-92381-33647,https://linkedin.com/in/prasenjit-gupta-704,"[""high_intent_buyer""]",0.87,2024-04-12T00:00:00,2025-05-24T00:00:00
|
||||
PER-0214,Abhishek Sen,abhishek.sen51@hotmail.com,+91-85863-89909,https://linkedin.com/in/abhishek-sen-498,"[""high_intent_buyer""]",0.82,2026-03-16T00:00:00,2026-02-28T00:00:00
|
||||
PER-0215,Swati Verma,swati.verma39@outlook.com,+91-97452-62685,https://linkedin.com/in/swati-verma-145,"[""family_decision_unit""]",0.79,2025-09-05T00:00:00,2024-09-09T00:00:00
|
||||
PER-0215-CO,Prasenjit Roy,prasenjit.roy93@outlook.com,+91-83408-11340,,"[""co_buyer""]",0.85,2025-03-01T00:00:00,2026-04-18T00:00:00
|
||||
PER-0216,Aditya Pillai,aditya.pillai73@yahoo.com,+91-74165-77924,https://linkedin.com/in/aditya-pillai-136,"[""price_sensitive_aspirational""]",0.86,2024-04-21T00:00:00,2024-04-24T00:00:00
|
||||
PER-0217,Raj Pillai,raj.pillai50@gmail.com,+91-73649-99753,https://linkedin.com/in/raj-pillai-166,"[""family_decision_unit""]",0.84,2025-07-01T00:00:00,2024-01-18T00:00:00
|
||||
PER-0217-CO,Debjani Sen,debjani.sen97@yahoo.com,+91-70193-59966,,"[""co_buyer""]",0.85,2024-01-04T00:00:00,2026-04-18T00:00:00
|
||||
PER-0218,Sanjay Das,sanjay.das90@outlook.com,+91-76819-63188,https://linkedin.com/in/sanjay-das-531,"[""price_sensitive_aspirational""]",0.95,2025-04-16T00:00:00,2026-01-21T00:00:00
|
||||
PER-0219,Vikram Chatterjee,vikram.chatterjee20@gmail.com,+91-70284-16914,https://linkedin.com/in/vikram-chatterjee-439,"[""family_decision_unit""]",0.95,2024-11-16T00:00:00,2024-12-31T00:00:00
|
||||
PER-0219-CO,Swati Gupta,swati.gupta48@gmail.com,+91-96290-83647,,"[""co_buyer""]",0.85,2024-06-12T00:00:00,2026-04-18T00:00:00
|
||||
PER-0220,Amit Gupta,amit.gupta20@outlook.com,+91-89752-74847,https://linkedin.com/in/amit-gupta-116,"[""repeat_visitor""]",0.89,2025-08-27T00:00:00,2025-03-03T00:00:00
|
||||
PER-0221,Riya Agarwal,riya.agarwal75@gmail.com,+91-70753-26846,https://linkedin.com/in/riya-agarwal-925,"[""slow_burn_investor""]",0.93,2024-09-05T00:00:00,2024-03-17T00:00:00
|
||||
PER-0222,Arjun Singh,arjun.singh97@yahoo.com,+91-76888-16553,https://linkedin.com/in/arjun-singh-834,"[""high_intent_buyer""]",0.77,2024-11-24T00:00:00,2025-10-02T00:00:00
|
||||
PER-0222-CO,Priya Kumar,priya.kumar33@hotmail.com,+91-70206-20427,,"[""co_buyer""]",0.85,2024-06-29T00:00:00,2026-04-18T00:00:00
|
||||
PER-0223,Ananya Chatterjee,ananya.chatterjee50@hotmail.com,+91-95276-57379,https://linkedin.com/in/ananya-chatterjee-814,"[""price_sensitive_aspirational""]",0.91,2025-11-25T00:00:00,2024-03-08T00:00:00
|
||||
PER-0224,Ritu Roy,ritu.roy72@hotmail.com,+91-93715-75422,https://linkedin.com/in/ritu-roy-543,"[""high_intent_buyer""]",0.85,2024-06-12T00:00:00,2025-05-14T00:00:00
|
||||
PER-0225,Pallavi Das,pallavi.das51@hotmail.com,+91-99864-40005,https://linkedin.com/in/pallavi-das-825,"[""family_decision_unit""]",0.89,2024-08-30T00:00:00,2026-04-12T00:00:00
|
||||
PER-0226,Deepak Nair,deepak.nair46@yahoo.com,+91-95909-59284,https://linkedin.com/in/deepak-nair-533,"[""price_sensitive_aspirational""]",0.91,2024-01-12T00:00:00,2024-11-01T00:00:00
|
||||
PER-0227,Deepak Ghosh,deepak.ghosh40@gmail.com,+91-94728-57227,https://linkedin.com/in/deepak-ghosh-465,"[""high_intent_buyer""]",0.83,2025-02-26T00:00:00,2024-12-17T00:00:00
|
||||
PER-0228,Deb Das,deb.das27@hotmail.com,+91-80468-52329,https://linkedin.com/in/deb-das-496,"[""high_intent_buyer""]",0.92,2025-11-17T00:00:00,2025-02-09T00:00:00
|
||||
PER-0228-CO,Meera Reddy,meera.reddy10@outlook.com,+91-92997-20567,,"[""co_buyer""]",0.85,2025-08-18T00:00:00,2026-04-18T00:00:00
|
||||
PER-0229,Anirban Roy,anirban.roy82@outlook.com,+91-97293-98369,https://linkedin.com/in/anirban-roy-319,"[""high_intent_buyer""]",0.95,2024-11-06T00:00:00,2025-01-04T00:00:00
|
||||
PER-0229-CO,Moumita Agarwal,moumita.agarwal68@rediffmail.com,+91-89720-31660,,"[""co_buyer""]",0.85,2025-05-18T00:00:00,2026-04-18T00:00:00
|
||||
PER-0230,Prasenjit Das,prasenjit.das43@rediffmail.com,+91-99077-36825,https://linkedin.com/in/prasenjit-das-223,"[""price_sensitive_aspirational""]",0.96,2026-02-01T00:00:00,2025-11-29T00:00:00
|
||||
PER-0231,Asha Reddy,asha.reddy39@gmail.com,+91-79388-57714,https://linkedin.com/in/asha-reddy-190,"[""high_intent_buyer""]",0.89,2025-04-12T00:00:00,2025-04-28T00:00:00
|
||||
PER-0232,Deb Agarwal,deb.agarwal72@gmail.com,+91-80665-58932,https://linkedin.com/in/deb-agarwal-661,"[""repeat_visitor""]",0.97,2025-06-19T00:00:00,2025-11-03T00:00:00
|
||||
PER-0232-CO,Sneha Patel,sneha.patel91@rediffmail.com,+91-75102-34684,,"[""co_buyer""]",0.85,2026-01-03T00:00:00,2026-04-18T00:00:00
|
||||
PER-0233,Ananya Saha,ananya.saha48@outlook.com,+91-82705-59140,https://linkedin.com/in/ananya-saha-313,"[""repeat_visitor""]",0.82,2025-09-26T00:00:00,2025-08-26T00:00:00
|
||||
PER-0234,Ritu Saha,ritu.saha70@gmail.com,+91-80579-50607,https://linkedin.com/in/ritu-saha-665,"[""slow_burn_investor""]",0.93,2025-04-07T00:00:00,2024-08-09T00:00:00
|
||||
PER-0235,Asha Sen,asha.sen63@rediffmail.com,+91-71098-46556,https://linkedin.com/in/asha-sen-546,"[""nri_buyer""]",0.88,2025-03-08T00:00:00,2024-03-09T00:00:00
|
||||
PER-0236,Meera Nair,meera.nair11@outlook.com,+91-98848-27964,https://linkedin.com/in/meera-nair-427,"[""family_decision_unit""]",0.96,2025-05-06T00:00:00,2026-03-31T00:00:00
|
||||
PER-0236-CO,Aditya Das,aditya.das95@yahoo.com,+91-98109-76829,,"[""co_buyer""]",0.85,2024-05-28T00:00:00,2026-04-18T00:00:00
|
||||
PER-0237,Deb Saha,deb.saha76@outlook.com,+91-86290-19837,https://linkedin.com/in/deb-saha-543,"[""broker_referral_chain""]",0.89,2025-03-03T00:00:00,2024-03-08T00:00:00
|
||||
PER-0238,Parth Das,parth.das98@outlook.com,+91-76224-99912,https://linkedin.com/in/parth-das-470,"[""nri_buyer""]",0.91,2025-07-20T00:00:00,2024-11-24T00:00:00
|
||||
PER-0239,Tanvi Saha,tanvi.saha23@rediffmail.com,+91-84325-60709,https://linkedin.com/in/tanvi-saha-420,"[""high_intent_buyer""]",0.78,2024-07-04T00:00:00,2024-05-05T00:00:00
|
||||
PER-0240,Tanvi Sen,tanvi.sen22@yahoo.com,+91-97701-63267,https://linkedin.com/in/tanvi-sen-326,"[""price_sensitive_aspirational""]",0.81,2025-09-16T00:00:00,2024-06-18T00:00:00
|
||||
PER-0241,Abhishek Singh,abhishek.singh77@outlook.com,+91-80553-12715,https://linkedin.com/in/abhishek-singh-611,"[""price_sensitive_aspirational""]",0.87,2025-02-01T00:00:00,2025-03-28T00:00:00
|
||||
PER-0242,Moumita Banerjee,moumita.banerjee72@rediffmail.com,+91-93729-68369,https://linkedin.com/in/moumita-banerjee-534,"[""family_decision_unit""]",0.77,2024-09-18T00:00:00,2024-12-22T00:00:00
|
||||
PER-0242-CO,Deb Chatterjee,deb.chatterjee30@gmail.com,+91-90167-82459,,"[""co_buyer""]",0.85,2024-02-21T00:00:00,2026-04-18T00:00:00
|
||||
PER-0243,Aditya Sen,aditya.sen44@yahoo.com,+91-87496-26270,https://linkedin.com/in/aditya-sen-897,"[""family_decision_unit""]",0.86,2026-02-18T00:00:00,2025-01-12T00:00:00
|
||||
PER-0243-CO,Ananya Agarwal,ananya.agarwal31@outlook.com,+91-86818-12715,,"[""co_buyer""]",0.85,2025-05-27T00:00:00,2026-04-18T00:00:00
|
||||
PER-0244,Moumita Verma,moumita.verma48@outlook.com,+91-70782-51228,https://linkedin.com/in/moumita-verma-598,"[""family_decision_unit""]",0.8,2024-01-17T00:00:00,2024-08-08T00:00:00
|
||||
PER-0244-CO,Deb Kumar,deb.kumar42@rediffmail.com,+91-83082-71125,,"[""co_buyer""]",0.85,2025-12-30T00:00:00,2026-04-18T00:00:00
|
||||
PER-0245,Ananya Kumar,ananya.kumar61@outlook.com,+91-96165-90337,https://linkedin.com/in/ananya-kumar-571,"[""slow_burn_investor""]",0.83,2024-11-30T00:00:00,2024-10-18T00:00:00
|
||||
PER-0246,Abhishek Sen,abhishek.sen20@rediffmail.com,+91-96597-54923,https://linkedin.com/in/abhishek-sen-731,"[""broker_referral_chain""]",0.92,2025-01-16T00:00:00,2025-04-25T00:00:00
|
||||
PER-0246-CO,Debjani Bose,debjani.bose76@outlook.com,+91-96417-87837,,"[""co_buyer""]",0.85,2026-03-07T00:00:00,2026-04-18T00:00:00
|
||||
PER-0247,Debjani Singh,debjani.singh70@gmail.com,+91-80937-58546,https://linkedin.com/in/debjani-singh-221,"[""nri_buyer""]",0.82,2025-05-13T00:00:00,2025-05-18T00:00:00
|
||||
PER-0248,Sneha Mukherjee,sneha.mukherjee84@gmail.com,+91-71294-90525,https://linkedin.com/in/sneha-mukherjee-100,"[""broker_referral_chain""]",0.94,2024-07-15T00:00:00,2026-03-19T00:00:00
|
||||
PER-0249,Raj Mukherjee,raj.mukherjee20@gmail.com,+91-89257-25429,https://linkedin.com/in/raj-mukherjee-251,"[""slow_burn_investor""]",0.77,2025-04-04T00:00:00,2024-05-09T00:00:00
|
||||
PER-0249-CO,Asha Bose,asha.bose48@yahoo.com,+91-99346-72026,,"[""co_buyer""]",0.85,2025-11-02T00:00:00,2026-04-18T00:00:00
|
||||
PER-0250,Pallavi Ghosh,pallavi.ghosh63@gmail.com,+91-95259-11209,https://linkedin.com/in/pallavi-ghosh-746,"[""family_decision_unit""]",0.83,2024-12-17T00:00:00,2026-03-30T00:00:00
|
||||
PER-0250-CO,Deepak Roy,deepak.roy37@yahoo.com,+91-80895-99175,,"[""co_buyer""]",0.85,2025-11-05T00:00:00,2026-04-18T00:00:00
|
||||
|
401
db assets/synthetic_crm_v1/csv/crm_property_interests.csv
Normal file
401
db assets/synthetic_crm_v1/csv/crm_property_interests.csv
Normal file
@@ -0,0 +1,401 @@
|
||||
interest_id,person_id,project_id,unit_id,interest_level,configuration_preference,budget_min,budget_max,timeline,financing_plan,notes
|
||||
INT-1-1,PER-0001,PRJ-004,PRJ-004-U019,high,Penthouse,17.82,26.74,6_months,cash,Comparing with competitor projects
|
||||
INT-1-2,PER-0001,PRJ-011,PRJ-011-U010,medium,4 BHK,4.94,7.42,6_months,cash,Prefers higher floor
|
||||
INT-1-3,PER-0001,PRJ-012,PRJ-012-U001,very_high,4 BHK,16.18,24.28,3_months,home_loan,Comparing with competitor projects
|
||||
INT-2-1,PER-0002,PRJ-002,PRJ-002-U019,very_high,2 BHK,8.37,12.55,3_months,undecided,Prefers higher floor
|
||||
INT-2-2,PER-0002,PRJ-004,PRJ-004-U020,high,5 BHK,15.1,22.66,3_months,cash,Waiting for festive season offer
|
||||
INT-3-1,PER-0003,PRJ-004,PRJ-004-U004,high,3 BHK,17.64,26.46,flexible,undecided,Comparing with competitor projects
|
||||
INT-3-2,PER-0003,PRJ-013,PRJ-013-U015,very_high,4 BHK,21.26,31.88,6_months,cash,Comparing with competitor projects
|
||||
INT-4-1,PER-0004,PRJ-014,PRJ-014-U006,medium,Penthouse,46.74,70.12,flexible,home_loan,Waiting for festive season offer
|
||||
INT-4-2,PER-0004,PRJ-004,PRJ-004-U020,very_high,5 BHK,15.1,22.66,flexible,home_loan,Needs proximity to school
|
||||
INT-4-3,PER-0004,PRJ-008,PRJ-008-U007,very_high,2 BHK,19.2,28.8,immediate,home_loan,Needs proximity to school
|
||||
INT-5-1,PER-0005,PRJ-012,PRJ-012-U004,very_high,Villa,8.72,13.08,3_months,home_loan,Prefers higher floor
|
||||
INT-6-1,PER-0006,PRJ-012,PRJ-012-U007,low,Duplex,2.16,3.24,3_months,home_loan,Waiting for festive season offer
|
||||
INT-6-2,PER-0006,PRJ-002,PRJ-002-U015,medium,Villa,3.56,5.34,6_months,combined,Wants ready to move in
|
||||
INT-7-1,PER-0007,PRJ-011,PRJ-011-U007,very_high,Duplex,26.32,39.48,flexible,home_loan,Waiting for festive season offer
|
||||
INT-7-2,PER-0007,PRJ-013,PRJ-013-U007,medium,5 BHK,31.08,46.62,immediate,cash,Looking for east facing unit
|
||||
INT-7-3,PER-0007,PRJ-014,PRJ-014-U001,medium,5 BHK,58.7,88.06,immediate,home_loan,Comparing with competitor projects
|
||||
INT-8-1,PER-0008,PRJ-011,PRJ-011-U007,medium,Duplex,26.32,39.48,flexible,combined,Looking for east facing unit
|
||||
INT-8-2,PER-0008,PRJ-002,PRJ-002-U014,low,Penthouse,6.22,9.32,3_months,combined,Looking for east facing unit
|
||||
INT-9-1,PER-0009,PRJ-013,PRJ-013-U007,medium,5 BHK,31.08,46.62,6_months,undecided,Wants ready to move in
|
||||
INT-9-2,PER-0009,PRJ-003,PRJ-003-U010,low,4 BHK,12.46,18.68,immediate,combined,Needs proximity to school
|
||||
INT-10-1,PER-0010,PRJ-005,PRJ-005-U009,medium,Villa,1.91,2.87,flexible,home_loan,Needs proximity to school
|
||||
INT-11-1,PER-0011,PRJ-008,PRJ-008-U018,very_high,2 BHK,41.19,61.79,3_months,combined,Needs proximity to school
|
||||
INT-12-1,PER-0012,PRJ-002,PRJ-002-U001,medium,Villa,2.37,3.55,flexible,combined,Wants ready to move in
|
||||
INT-12-2,PER-0012,PRJ-008,PRJ-008-U018,low,2 BHK,41.19,61.79,6_months,undecided,Looking for east facing unit
|
||||
INT-13-1,PER-0013,PRJ-004,PRJ-004-U008,high,Villa,25.58,38.38,6_months,home_loan,Wants ready to move in
|
||||
INT-14-1,PER-0014,PRJ-008,PRJ-008-U014,medium,Duplex,4.19,6.29,3_months,combined,Wants ready to move in
|
||||
INT-15-1,PER-0015,PRJ-003,PRJ-003-U003,high,Duplex,16.61,24.91,6_months,home_loan,Prefers higher floor
|
||||
INT-15-2,PER-0015,PRJ-012,PRJ-012-U004,low,Villa,8.72,13.08,3_months,undecided,Looking for east facing unit
|
||||
INT-16-1,PER-0016,PRJ-003,PRJ-003-U011,low,Duplex,3.09,4.63,flexible,cash,Looking for east facing unit
|
||||
INT-16-2,PER-0016,PRJ-014,PRJ-014-U002,medium,Penthouse,19.58,29.36,6_months,home_loan,Prefers higher floor
|
||||
INT-17-1,PER-0017,PRJ-010,PRJ-010-U004,medium,Penthouse,3.99,5.99,flexible,undecided,Needs proximity to school
|
||||
INT-17-2,PER-0017,PRJ-002,PRJ-002-U019,very_high,2 BHK,8.37,12.55,6_months,undecided,Prefers higher floor
|
||||
INT-18-1,PER-0018,PRJ-001,PRJ-001-U010,high,Penthouse,30.81,46.21,3_months,undecided,Looking for east facing unit
|
||||
INT-18-2,PER-0018,PRJ-001,PRJ-001-U002,very_high,2 BHK,26.38,39.58,6_months,undecided,Wants ready to move in
|
||||
INT-19-1,PER-0019,PRJ-003,PRJ-003-U011,high,Duplex,3.09,4.63,3_months,combined,Waiting for festive season offer
|
||||
INT-20-1,PER-0020,PRJ-003,PRJ-003-U003,high,Duplex,16.61,24.91,3_months,undecided,Waiting for festive season offer
|
||||
INT-20-2,PER-0020,PRJ-006,PRJ-006-U003,low,5 BHK,11.76,17.64,3_months,home_loan,Comparing with competitor projects
|
||||
INT-21-1,PER-0021,PRJ-002,PRJ-002-U013,low,Duplex,1.87,2.81,flexible,home_loan,Needs proximity to school
|
||||
INT-21-2,PER-0021,PRJ-005,PRJ-005-U008,high,3 BHK,3.1,4.66,6_months,undecided,Prefers higher floor
|
||||
INT-21-3,PER-0021,PRJ-004,PRJ-004-U001,medium,5 BHK,4.96,7.44,immediate,home_loan,Wants ready to move in
|
||||
INT-22-1,PER-0022,PRJ-005,PRJ-005-U005,very_high,3 BHK,15.42,23.12,3_months,cash,Prefers higher floor
|
||||
INT-22-2,PER-0022,PRJ-002,PRJ-002-U001,very_high,Villa,2.37,3.55,flexible,cash,Wants ready to move in
|
||||
INT-23-1,PER-0023,PRJ-006,PRJ-006-U001,medium,Penthouse,4.76,7.14,flexible,combined,Needs proximity to school
|
||||
INT-23-2,PER-0023,PRJ-008,PRJ-008-U001,very_high,Villa,3.05,4.57,immediate,combined,Comparing with competitor projects
|
||||
INT-23-3,PER-0023,PRJ-004,PRJ-004-U020,low,5 BHK,15.1,22.66,immediate,home_loan,Comparing with competitor projects
|
||||
INT-24-1,PER-0024,PRJ-006,PRJ-006-U002,low,Duplex,19.22,28.82,6_months,home_loan,Needs proximity to school
|
||||
INT-25-1,PER-0025,PRJ-003,PRJ-003-U001,high,Duplex,55.2,82.8,6_months,combined,Needs proximity to school
|
||||
INT-25-2,PER-0025,PRJ-002,PRJ-002-U001,low,Villa,2.37,3.55,6_months,cash,Wants ready to move in
|
||||
INT-26-1,PER-0026,PRJ-013,PRJ-013-U015,very_high,4 BHK,21.26,31.88,3_months,cash,Wants ready to move in
|
||||
INT-27-1,PER-0027,PRJ-009,PRJ-009-U012,low,5 BHK,42.38,63.56,flexible,cash,Wants ready to move in
|
||||
INT-27-2,PER-0027,PRJ-003,PRJ-003-U003,high,Duplex,16.61,24.91,6_months,undecided,Prefers higher floor
|
||||
INT-28-1,PER-0028,PRJ-008,PRJ-008-U018,low,2 BHK,41.19,61.79,6_months,undecided,Needs proximity to school
|
||||
INT-28-2,PER-0028,PRJ-013,PRJ-013-U013,medium,Penthouse,9.29,13.93,immediate,undecided,Looking for east facing unit
|
||||
INT-28-3,PER-0028,PRJ-006,PRJ-006-U002,very_high,Duplex,19.22,28.82,immediate,cash,Needs proximity to school
|
||||
INT-29-1,PER-0029,PRJ-004,PRJ-004-U010,low,Villa,1.62,2.42,immediate,combined,Comparing with competitor projects
|
||||
INT-30-1,PER-0030,PRJ-002,PRJ-002-U011,high,Penthouse,3.1,4.64,immediate,home_loan,Prefers higher floor
|
||||
INT-31-1,PER-0031,PRJ-006,PRJ-006-U005,very_high,Penthouse,29.69,44.53,6_months,home_loan,Prefers higher floor
|
||||
INT-32-1,PER-0032,PRJ-013,PRJ-013-U005,medium,Villa,8.3,12.44,3_months,home_loan,Needs proximity to school
|
||||
INT-33-1,PER-0033,PRJ-010,PRJ-010-U009,very_high,Duplex,7.46,11.18,6_months,home_loan,Looking for east facing unit
|
||||
INT-34-1,PER-0034,PRJ-012,PRJ-012-U001,very_high,4 BHK,16.18,24.28,flexible,undecided,Prefers higher floor
|
||||
INT-35-1,PER-0035,PRJ-009,PRJ-009-U009,very_high,2 BHK,4.26,6.38,flexible,undecided,Looking for east facing unit
|
||||
INT-36-1,PER-0036,PRJ-004,PRJ-004-U001,high,5 BHK,4.96,7.44,immediate,cash,Needs proximity to school
|
||||
INT-36-2,PER-0036,PRJ-008,PRJ-008-U003,low,Penthouse,6.7,10.04,flexible,home_loan,Wants ready to move in
|
||||
INT-36-3,PER-0036,PRJ-014,PRJ-014-U002,low,Penthouse,19.58,29.36,flexible,undecided,Waiting for festive season offer
|
||||
INT-37-1,PER-0037,PRJ-003,PRJ-003-U008,very_high,4 BHK,4.31,6.47,6_months,undecided,Looking for east facing unit
|
||||
INT-37-2,PER-0037,PRJ-009,PRJ-009-U004,low,2 BHK,2.52,3.78,3_months,combined,Needs proximity to school
|
||||
INT-37-3,PER-0037,PRJ-005,PRJ-005-U008,low,3 BHK,3.1,4.66,6_months,undecided,Looking for east facing unit
|
||||
INT-38-1,PER-0038,PRJ-012,PRJ-012-U001,low,4 BHK,16.18,24.28,6_months,undecided,Comparing with competitor projects
|
||||
INT-38-2,PER-0038,PRJ-009,PRJ-009-U011,medium,Duplex,1.76,2.64,3_months,cash,Comparing with competitor projects
|
||||
INT-39-1,PER-0039,PRJ-001,PRJ-001-U010,high,Penthouse,30.81,46.21,6_months,cash,Comparing with competitor projects
|
||||
INT-40-1,PER-0040,PRJ-014,PRJ-014-U001,high,5 BHK,58.7,88.06,immediate,combined,Wants ready to move in
|
||||
INT-40-2,PER-0040,PRJ-007,PRJ-007-U012,medium,4 BHK,10.58,15.86,flexible,combined,Waiting for festive season offer
|
||||
INT-40-3,PER-0040,PRJ-003,PRJ-003-U005,medium,Penthouse,18.86,28.3,immediate,cash,Looking for east facing unit
|
||||
INT-41-1,PER-0041,PRJ-003,PRJ-003-U008,high,4 BHK,4.31,6.47,3_months,home_loan,Waiting for festive season offer
|
||||
INT-41-2,PER-0041,PRJ-012,PRJ-012-U007,high,Duplex,2.16,3.24,flexible,undecided,Wants ready to move in
|
||||
INT-42-1,PER-0042,PRJ-003,PRJ-003-U003,medium,Duplex,16.61,24.91,flexible,combined,Looking for east facing unit
|
||||
INT-42-2,PER-0042,PRJ-004,PRJ-004-U020,medium,5 BHK,15.1,22.66,immediate,home_loan,Comparing with competitor projects
|
||||
INT-42-3,PER-0042,PRJ-013,PRJ-013-U007,low,5 BHK,31.08,46.62,6_months,cash,Waiting for festive season offer
|
||||
INT-43-1,PER-0043,PRJ-009,PRJ-009-U003,very_high,Villa,5.46,8.18,immediate,combined,Looking for east facing unit
|
||||
INT-43-2,PER-0043,PRJ-004,PRJ-004-U010,very_high,Villa,1.62,2.42,3_months,home_loan,Comparing with competitor projects
|
||||
INT-43-3,PER-0043,PRJ-011,PRJ-011-U010,low,4 BHK,4.94,7.42,3_months,undecided,Wants ready to move in
|
||||
INT-44-1,PER-0044,PRJ-012,PRJ-012-U007,low,Duplex,2.16,3.24,flexible,home_loan,Waiting for festive season offer
|
||||
INT-45-1,PER-0045,PRJ-008,PRJ-008-U018,high,2 BHK,41.19,61.79,immediate,home_loan,Wants ready to move in
|
||||
INT-46-1,PER-0046,PRJ-004,PRJ-004-U017,high,Duplex,4.04,6.06,6_months,combined,Prefers higher floor
|
||||
INT-46-2,PER-0046,PRJ-004,PRJ-004-U017,low,Duplex,4.04,6.06,6_months,home_loan,Wants ready to move in
|
||||
INT-47-1,PER-0047,PRJ-004,PRJ-004-U008,medium,Villa,25.58,38.38,flexible,combined,Prefers higher floor
|
||||
INT-48-1,PER-0048,PRJ-008,PRJ-008-U003,low,Penthouse,6.7,10.04,flexible,undecided,Comparing with competitor projects
|
||||
INT-49-1,PER-0049,PRJ-010,PRJ-010-U009,very_high,Duplex,7.46,11.18,flexible,home_loan,Needs proximity to school
|
||||
INT-50-1,PER-0050,PRJ-007,PRJ-007-U001,medium,Duplex,5.27,7.91,6_months,combined,Prefers higher floor
|
||||
INT-51-1,PER-0051,PRJ-009,PRJ-009-U004,very_high,2 BHK,2.52,3.78,6_months,home_loan,Needs proximity to school
|
||||
INT-51-2,PER-0051,PRJ-012,PRJ-012-U004,medium,Villa,8.72,13.08,immediate,cash,Waiting for festive season offer
|
||||
INT-52-1,PER-0052,PRJ-007,PRJ-007-U012,medium,4 BHK,10.58,15.86,6_months,cash,Wants ready to move in
|
||||
INT-52-2,PER-0052,PRJ-011,PRJ-011-U004,very_high,Penthouse,40.54,60.82,3_months,cash,Needs proximity to school
|
||||
INT-53-1,PER-0053,PRJ-008,PRJ-008-U003,low,Penthouse,6.7,10.04,immediate,home_loan,Wants ready to move in
|
||||
INT-53-2,PER-0053,PRJ-013,PRJ-013-U012,very_high,2 BHK,3.24,4.86,immediate,home_loan,Wants ready to move in
|
||||
INT-54-1,PER-0054,PRJ-008,PRJ-008-U014,very_high,Duplex,4.19,6.29,3_months,home_loan,Comparing with competitor projects
|
||||
INT-55-1,PER-0055,PRJ-009,PRJ-009-U004,low,2 BHK,2.52,3.78,3_months,cash,Wants ready to move in
|
||||
INT-56-1,PER-0056,PRJ-009,PRJ-009-U003,low,Villa,5.46,8.18,immediate,home_loan,Comparing with competitor projects
|
||||
INT-57-1,PER-0057,PRJ-007,PRJ-007-U014,very_high,4 BHK,5.54,8.3,immediate,cash,Prefers higher floor
|
||||
INT-58-1,PER-0058,PRJ-009,PRJ-009-U008,low,Duplex,11.69,17.53,flexible,undecided,Comparing with competitor projects
|
||||
INT-59-1,PER-0059,PRJ-004,PRJ-004-U019,low,Penthouse,17.82,26.74,3_months,home_loan,Prefers higher floor
|
||||
INT-60-1,PER-0060,PRJ-012,PRJ-012-U001,medium,4 BHK,16.18,24.28,3_months,undecided,Comparing with competitor projects
|
||||
INT-60-2,PER-0060,PRJ-012,PRJ-012-U001,high,4 BHK,16.18,24.28,flexible,undecided,Waiting for festive season offer
|
||||
INT-61-1,PER-0061,PRJ-013,PRJ-013-U005,very_high,Villa,8.3,12.44,3_months,home_loan,Prefers higher floor
|
||||
INT-61-2,PER-0061,PRJ-002,PRJ-002-U012,low,Villa,11.17,16.75,6_months,undecided,Wants ready to move in
|
||||
INT-61-3,PER-0061,PRJ-005,PRJ-005-U009,medium,Villa,1.91,2.87,3_months,cash,Comparing with competitor projects
|
||||
INT-62-1,PER-0062,PRJ-009,PRJ-009-U003,very_high,Villa,5.46,8.18,immediate,undecided,Comparing with competitor projects
|
||||
INT-62-2,PER-0062,PRJ-013,PRJ-013-U015,high,4 BHK,21.26,31.88,6_months,undecided,Needs proximity to school
|
||||
INT-63-1,PER-0063,PRJ-010,PRJ-010-U009,high,Duplex,7.46,11.18,3_months,home_loan,Needs proximity to school
|
||||
INT-63-2,PER-0063,PRJ-003,PRJ-003-U001,medium,Duplex,55.2,82.8,immediate,home_loan,Needs proximity to school
|
||||
INT-64-1,PER-0064,PRJ-012,PRJ-012-U007,high,Duplex,2.16,3.24,6_months,undecided,Looking for east facing unit
|
||||
INT-64-2,PER-0064,PRJ-013,PRJ-013-U008,high,5 BHK,28.32,42.48,6_months,undecided,Comparing with competitor projects
|
||||
INT-65-1,PER-0065,PRJ-012,PRJ-012-U004,low,Villa,8.72,13.08,3_months,undecided,Wants ready to move in
|
||||
INT-66-1,PER-0066,PRJ-003,PRJ-003-U005,medium,Penthouse,18.86,28.3,flexible,home_loan,Comparing with competitor projects
|
||||
INT-67-1,PER-0067,PRJ-009,PRJ-009-U010,medium,Penthouse,11.74,17.6,6_months,home_loan,Needs proximity to school
|
||||
INT-68-1,PER-0068,PRJ-002,PRJ-002-U017,very_high,4 BHK,1.56,2.34,flexible,home_loan,Needs proximity to school
|
||||
INT-69-1,PER-0069,PRJ-004,PRJ-004-U004,low,3 BHK,17.64,26.46,flexible,combined,Comparing with competitor projects
|
||||
INT-69-2,PER-0069,PRJ-002,PRJ-002-U017,low,4 BHK,1.56,2.34,flexible,combined,Wants ready to move in
|
||||
INT-69-3,PER-0069,PRJ-011,PRJ-011-U014,low,5 BHK,8.56,12.84,3_months,home_loan,Wants ready to move in
|
||||
INT-70-1,PER-0070,PRJ-009,PRJ-009-U011,very_high,Duplex,1.76,2.64,flexible,combined,Waiting for festive season offer
|
||||
INT-70-2,PER-0070,PRJ-007,PRJ-007-U012,medium,4 BHK,10.58,15.86,flexible,home_loan,Needs proximity to school
|
||||
INT-70-3,PER-0070,PRJ-009,PRJ-009-U012,medium,5 BHK,42.38,63.56,3_months,cash,Looking for east facing unit
|
||||
INT-71-1,PER-0071,PRJ-009,PRJ-009-U010,low,Penthouse,11.74,17.6,3_months,undecided,Waiting for festive season offer
|
||||
INT-71-2,PER-0071,PRJ-012,PRJ-012-U007,high,Duplex,2.16,3.24,immediate,combined,Comparing with competitor projects
|
||||
INT-71-3,PER-0071,PRJ-013,PRJ-013-U001,high,3 BHK,38.3,57.46,flexible,combined,Prefers higher floor
|
||||
INT-72-1,PER-0072,PRJ-013,PRJ-013-U013,medium,Penthouse,9.29,13.93,flexible,undecided,Wants ready to move in
|
||||
INT-73-1,PER-0073,PRJ-013,PRJ-013-U015,high,4 BHK,21.26,31.88,3_months,combined,Comparing with competitor projects
|
||||
INT-73-2,PER-0073,PRJ-001,PRJ-001-U001,low,Villa,15.87,23.81,flexible,combined,Needs proximity to school
|
||||
INT-74-1,PER-0074,PRJ-011,PRJ-011-U009,medium,3 BHK,3.14,4.7,immediate,combined,Looking for east facing unit
|
||||
INT-75-1,PER-0075,PRJ-009,PRJ-009-U009,high,2 BHK,4.26,6.38,6_months,combined,Wants ready to move in
|
||||
INT-76-1,PER-0076,PRJ-006,PRJ-006-U001,low,Penthouse,4.76,7.14,3_months,undecided,Waiting for festive season offer
|
||||
INT-77-1,PER-0077,PRJ-005,PRJ-005-U006,medium,3 BHK,8.05,12.07,flexible,home_loan,Comparing with competitor projects
|
||||
INT-78-1,PER-0078,PRJ-004,PRJ-004-U001,medium,5 BHK,4.96,7.44,flexible,home_loan,Prefers higher floor
|
||||
INT-79-1,PER-0079,PRJ-003,PRJ-003-U004,very_high,Villa,13.78,20.66,3_months,combined,Prefers higher floor
|
||||
INT-79-2,PER-0079,PRJ-004,PRJ-004-U008,high,Villa,25.58,38.38,3_months,cash,Wants ready to move in
|
||||
INT-80-1,PER-0080,PRJ-004,PRJ-004-U001,medium,5 BHK,4.96,7.44,6_months,combined,Needs proximity to school
|
||||
INT-80-2,PER-0080,PRJ-011,PRJ-011-U003,very_high,Villa,18.68,28.02,immediate,undecided,Wants ready to move in
|
||||
INT-81-1,PER-0081,PRJ-010,PRJ-010-U004,low,Penthouse,3.99,5.99,3_months,home_loan,Prefers higher floor
|
||||
INT-81-2,PER-0081,PRJ-004,PRJ-004-U017,medium,Duplex,4.04,6.06,3_months,combined,Prefers higher floor
|
||||
INT-82-1,PER-0082,PRJ-009,PRJ-009-U003,very_high,Villa,5.46,8.18,6_months,undecided,Wants ready to move in
|
||||
INT-83-1,PER-0083,PRJ-004,PRJ-004-U017,high,Duplex,4.04,6.06,flexible,home_loan,Comparing with competitor projects
|
||||
INT-84-1,PER-0084,PRJ-001,PRJ-001-U010,very_high,Penthouse,30.81,46.21,6_months,cash,Prefers higher floor
|
||||
INT-84-2,PER-0084,PRJ-006,PRJ-006-U003,medium,5 BHK,11.76,17.64,flexible,undecided,Wants ready to move in
|
||||
INT-85-1,PER-0085,PRJ-005,PRJ-005-U009,medium,Villa,1.91,2.87,flexible,home_loan,Looking for east facing unit
|
||||
INT-86-1,PER-0086,PRJ-009,PRJ-009-U009,high,2 BHK,4.26,6.38,6_months,combined,Prefers higher floor
|
||||
INT-87-1,PER-0087,PRJ-014,PRJ-014-U001,medium,5 BHK,58.7,88.06,6_months,home_loan,Needs proximity to school
|
||||
INT-87-2,PER-0087,PRJ-003,PRJ-003-U002,low,3 BHK,22.21,33.31,flexible,undecided,Looking for east facing unit
|
||||
INT-87-3,PER-0087,PRJ-004,PRJ-004-U001,low,5 BHK,4.96,7.44,flexible,cash,Prefers higher floor
|
||||
INT-88-1,PER-0088,PRJ-003,PRJ-003-U011,low,Duplex,3.09,4.63,immediate,combined,Wants ready to move in
|
||||
INT-88-2,PER-0088,PRJ-002,PRJ-002-U010,very_high,Penthouse,3.0,4.5,3_months,undecided,Prefers higher floor
|
||||
INT-89-1,PER-0089,PRJ-010,PRJ-010-U010,high,Duplex,8.5,12.74,3_months,undecided,Looking for east facing unit
|
||||
INT-89-2,PER-0089,PRJ-002,PRJ-002-U005,low,3 BHK,11.22,16.84,immediate,cash,Wants ready to move in
|
||||
INT-90-1,PER-0090,PRJ-012,PRJ-012-U001,very_high,4 BHK,16.18,24.28,flexible,cash,Comparing with competitor projects
|
||||
INT-91-1,PER-0091,PRJ-005,PRJ-005-U005,very_high,3 BHK,15.42,23.12,6_months,cash,Wants ready to move in
|
||||
INT-91-2,PER-0091,PRJ-002,PRJ-002-U015,high,Villa,3.56,5.34,3_months,combined,Prefers higher floor
|
||||
INT-92-1,PER-0092,PRJ-014,PRJ-014-U005,very_high,2 BHK,3.4,5.1,immediate,home_loan,Prefers higher floor
|
||||
INT-92-2,PER-0092,PRJ-008,PRJ-008-U003,very_high,Penthouse,6.7,10.04,6_months,cash,Waiting for festive season offer
|
||||
INT-92-3,PER-0092,PRJ-004,PRJ-004-U020,medium,5 BHK,15.1,22.66,6_months,home_loan,Wants ready to move in
|
||||
INT-93-1,PER-0093,PRJ-004,PRJ-004-U008,very_high,Villa,25.58,38.38,6_months,cash,Prefers higher floor
|
||||
INT-94-1,PER-0094,PRJ-012,PRJ-012-U004,high,Villa,8.72,13.08,flexible,cash,Looking for east facing unit
|
||||
INT-95-1,PER-0095,PRJ-006,PRJ-006-U002,very_high,Duplex,19.22,28.82,flexible,cash,Needs proximity to school
|
||||
INT-96-1,PER-0096,PRJ-009,PRJ-009-U012,low,5 BHK,42.38,63.56,3_months,combined,Needs proximity to school
|
||||
INT-97-1,PER-0097,PRJ-002,PRJ-002-U008,medium,Villa,57.06,85.6,6_months,home_loan,Comparing with competitor projects
|
||||
INT-98-1,PER-0098,PRJ-005,PRJ-005-U006,low,3 BHK,8.05,12.07,3_months,home_loan,Wants ready to move in
|
||||
INT-98-2,PER-0098,PRJ-013,PRJ-013-U008,high,5 BHK,28.32,42.48,flexible,undecided,Waiting for festive season offer
|
||||
INT-99-1,PER-0099,PRJ-012,PRJ-012-U007,low,Duplex,2.16,3.24,immediate,undecided,Waiting for festive season offer
|
||||
INT-100-1,PER-0100,PRJ-004,PRJ-004-U001,very_high,5 BHK,4.96,7.44,immediate,cash,Needs proximity to school
|
||||
INT-100-2,PER-0100,PRJ-003,PRJ-003-U011,medium,Duplex,3.09,4.63,3_months,combined,Comparing with competitor projects
|
||||
INT-101-1,PER-0101,PRJ-004,PRJ-004-U017,very_high,Duplex,4.04,6.06,3_months,combined,Waiting for festive season offer
|
||||
INT-101-2,PER-0101,PRJ-012,PRJ-012-U004,medium,Villa,8.72,13.08,3_months,combined,Waiting for festive season offer
|
||||
INT-102-1,PER-0102,PRJ-011,PRJ-011-U003,high,Villa,18.68,28.02,flexible,undecided,Waiting for festive season offer
|
||||
INT-103-1,PER-0103,PRJ-014,PRJ-014-U003,medium,Duplex,20.44,30.66,flexible,combined,Waiting for festive season offer
|
||||
INT-104-1,PER-0104,PRJ-006,PRJ-006-U003,medium,5 BHK,11.76,17.64,flexible,home_loan,Looking for east facing unit
|
||||
INT-105-1,PER-0105,PRJ-005,PRJ-005-U005,high,3 BHK,15.42,23.12,6_months,undecided,Looking for east facing unit
|
||||
INT-105-2,PER-0105,PRJ-013,PRJ-013-U004,high,Duplex,16.1,24.14,6_months,home_loan,Needs proximity to school
|
||||
INT-106-1,PER-0106,PRJ-002,PRJ-002-U014,low,Penthouse,6.22,9.32,3_months,undecided,Comparing with competitor projects
|
||||
INT-106-2,PER-0106,PRJ-001,PRJ-001-U002,medium,2 BHK,26.38,39.58,flexible,cash,Comparing with competitor projects
|
||||
INT-106-3,PER-0106,PRJ-010,PRJ-010-U010,high,Duplex,8.5,12.74,flexible,home_loan,Wants ready to move in
|
||||
INT-107-1,PER-0107,PRJ-010,PRJ-010-U013,medium,4 BHK,15.82,23.72,6_months,undecided,Wants ready to move in
|
||||
INT-107-2,PER-0107,PRJ-002,PRJ-002-U017,medium,4 BHK,1.56,2.34,3_months,undecided,Comparing with competitor projects
|
||||
INT-108-1,PER-0108,PRJ-012,PRJ-012-U007,low,Duplex,2.16,3.24,immediate,undecided,Waiting for festive season offer
|
||||
INT-108-2,PER-0108,PRJ-002,PRJ-002-U008,medium,Villa,57.06,85.6,immediate,cash,Wants ready to move in
|
||||
INT-109-1,PER-0109,PRJ-001,PRJ-001-U016,very_high,2 BHK,12.55,18.83,immediate,combined,Wants ready to move in
|
||||
INT-109-2,PER-0109,PRJ-014,PRJ-014-U005,very_high,2 BHK,3.4,5.1,6_months,cash,Waiting for festive season offer
|
||||
INT-109-3,PER-0109,PRJ-004,PRJ-004-U001,high,5 BHK,4.96,7.44,immediate,undecided,Needs proximity to school
|
||||
INT-110-1,PER-0110,PRJ-001,PRJ-001-U001,low,Villa,15.87,23.81,flexible,cash,Prefers higher floor
|
||||
INT-111-1,PER-0111,PRJ-011,PRJ-011-U003,low,Villa,18.68,28.02,immediate,cash,Comparing with competitor projects
|
||||
INT-111-2,PER-0111,PRJ-012,PRJ-012-U001,high,4 BHK,16.18,24.28,6_months,undecided,Wants ready to move in
|
||||
INT-111-3,PER-0111,PRJ-012,PRJ-012-U007,low,Duplex,2.16,3.24,3_months,combined,Comparing with competitor projects
|
||||
INT-112-1,PER-0112,PRJ-012,PRJ-012-U007,high,Duplex,2.16,3.24,6_months,undecided,Prefers higher floor
|
||||
INT-112-2,PER-0112,PRJ-003,PRJ-003-U002,medium,3 BHK,22.21,33.31,immediate,home_loan,Waiting for festive season offer
|
||||
INT-113-1,PER-0113,PRJ-007,PRJ-007-U017,medium,Villa,5.71,8.57,flexible,combined,Prefers higher floor
|
||||
INT-113-2,PER-0113,PRJ-010,PRJ-010-U011,high,Villa,10.18,15.28,3_months,combined,Needs proximity to school
|
||||
INT-114-1,PER-0114,PRJ-004,PRJ-004-U004,medium,3 BHK,17.64,26.46,6_months,undecided,Wants ready to move in
|
||||
INT-115-1,PER-0115,PRJ-009,PRJ-009-U008,medium,Duplex,11.69,17.53,flexible,undecided,Prefers higher floor
|
||||
INT-115-2,PER-0115,PRJ-013,PRJ-013-U002,very_high,3 BHK,34.97,52.45,3_months,undecided,Wants ready to move in
|
||||
INT-115-3,PER-0115,PRJ-014,PRJ-014-U006,high,Penthouse,46.74,70.12,immediate,undecided,Waiting for festive season offer
|
||||
INT-116-1,PER-0116,PRJ-003,PRJ-003-U004,medium,Villa,13.78,20.66,3_months,combined,Waiting for festive season offer
|
||||
INT-117-1,PER-0117,PRJ-003,PRJ-003-U010,low,4 BHK,12.46,18.68,flexible,cash,Needs proximity to school
|
||||
INT-118-1,PER-0118,PRJ-008,PRJ-008-U009,medium,5 BHK,10.66,16.0,flexible,home_loan,Wants ready to move in
|
||||
INT-118-2,PER-0118,PRJ-014,PRJ-014-U003,low,Duplex,20.44,30.66,3_months,combined,Looking for east facing unit
|
||||
INT-118-3,PER-0118,PRJ-009,PRJ-009-U012,high,5 BHK,42.38,63.56,3_months,undecided,Prefers higher floor
|
||||
INT-119-1,PER-0119,PRJ-004,PRJ-004-U004,very_high,3 BHK,17.64,26.46,6_months,cash,Wants ready to move in
|
||||
INT-120-1,PER-0120,PRJ-004,PRJ-004-U019,medium,Penthouse,17.82,26.74,6_months,undecided,Prefers higher floor
|
||||
INT-121-1,PER-0121,PRJ-002,PRJ-002-U017,medium,4 BHK,1.56,2.34,3_months,home_loan,Looking for east facing unit
|
||||
INT-122-1,PER-0122,PRJ-001,PRJ-001-U001,high,Villa,15.87,23.81,flexible,undecided,Prefers higher floor
|
||||
INT-123-1,PER-0123,PRJ-011,PRJ-011-U004,very_high,Penthouse,40.54,60.82,flexible,cash,Comparing with competitor projects
|
||||
INT-123-2,PER-0123,PRJ-004,PRJ-004-U010,high,Villa,1.62,2.42,flexible,combined,Waiting for festive season offer
|
||||
INT-124-1,PER-0124,PRJ-003,PRJ-003-U003,very_high,Duplex,16.61,24.91,3_months,home_loan,Needs proximity to school
|
||||
INT-125-1,PER-0125,PRJ-007,PRJ-007-U014,low,4 BHK,5.54,8.3,flexible,undecided,Waiting for festive season offer
|
||||
INT-125-2,PER-0125,PRJ-014,PRJ-014-U002,medium,Penthouse,19.58,29.36,6_months,undecided,Comparing with competitor projects
|
||||
INT-126-1,PER-0126,PRJ-004,PRJ-004-U004,high,3 BHK,17.64,26.46,flexible,combined,Needs proximity to school
|
||||
INT-127-1,PER-0127,PRJ-014,PRJ-014-U005,medium,2 BHK,3.4,5.1,3_months,cash,Wants ready to move in
|
||||
INT-128-1,PER-0128,PRJ-014,PRJ-014-U002,high,Penthouse,19.58,29.36,3_months,home_loan,Waiting for festive season offer
|
||||
INT-128-2,PER-0128,PRJ-013,PRJ-013-U005,very_high,Villa,8.3,12.44,6_months,home_loan,Looking for east facing unit
|
||||
INT-128-3,PER-0128,PRJ-009,PRJ-009-U012,very_high,5 BHK,42.38,63.56,flexible,cash,Comparing with competitor projects
|
||||
INT-129-1,PER-0129,PRJ-001,PRJ-001-U002,very_high,2 BHK,26.38,39.58,3_months,cash,Looking for east facing unit
|
||||
INT-130-1,PER-0130,PRJ-014,PRJ-014-U001,very_high,5 BHK,58.7,88.06,immediate,cash,Needs proximity to school
|
||||
INT-130-2,PER-0130,PRJ-011,PRJ-011-U003,very_high,Villa,18.68,28.02,6_months,cash,Looking for east facing unit
|
||||
INT-131-1,PER-0131,PRJ-003,PRJ-003-U004,high,Villa,13.78,20.66,6_months,undecided,Waiting for festive season offer
|
||||
INT-132-1,PER-0132,PRJ-005,PRJ-005-U011,very_high,Penthouse,1.78,2.68,3_months,combined,Waiting for festive season offer
|
||||
INT-132-2,PER-0132,PRJ-011,PRJ-011-U010,low,4 BHK,4.94,7.42,3_months,home_loan,Needs proximity to school
|
||||
INT-133-1,PER-0133,PRJ-008,PRJ-008-U009,low,5 BHK,10.66,16.0,flexible,combined,Needs proximity to school
|
||||
INT-134-1,PER-0134,PRJ-014,PRJ-014-U005,high,2 BHK,3.4,5.1,6_months,cash,Looking for east facing unit
|
||||
INT-134-2,PER-0134,PRJ-006,PRJ-006-U002,very_high,Duplex,19.22,28.82,3_months,cash,Comparing with competitor projects
|
||||
INT-135-1,PER-0135,PRJ-001,PRJ-001-U008,low,3 BHK,5.0,7.5,flexible,undecided,Prefers higher floor
|
||||
INT-135-2,PER-0135,PRJ-005,PRJ-005-U009,medium,Villa,1.91,2.87,3_months,home_loan,Prefers higher floor
|
||||
INT-136-1,PER-0136,PRJ-012,PRJ-012-U004,low,Villa,8.72,13.08,immediate,cash,Waiting for festive season offer
|
||||
INT-137-1,PER-0137,PRJ-010,PRJ-010-U010,medium,Duplex,8.5,12.74,immediate,home_loan,Needs proximity to school
|
||||
INT-137-2,PER-0137,PRJ-007,PRJ-007-U014,high,4 BHK,5.54,8.3,flexible,cash,Wants ready to move in
|
||||
INT-138-1,PER-0138,PRJ-014,PRJ-014-U002,medium,Penthouse,19.58,29.36,3_months,cash,Comparing with competitor projects
|
||||
INT-139-1,PER-0139,PRJ-008,PRJ-008-U001,medium,Villa,3.05,4.57,flexible,home_loan,Waiting for festive season offer
|
||||
INT-140-1,PER-0140,PRJ-005,PRJ-005-U008,high,3 BHK,3.1,4.66,immediate,cash,Looking for east facing unit
|
||||
INT-141-1,PER-0141,PRJ-008,PRJ-008-U014,medium,Duplex,4.19,6.29,3_months,combined,Needs proximity to school
|
||||
INT-142-1,PER-0142,PRJ-004,PRJ-004-U008,very_high,Villa,25.58,38.38,3_months,cash,Looking for east facing unit
|
||||
INT-143-1,PER-0143,PRJ-012,PRJ-012-U004,low,Villa,8.72,13.08,6_months,cash,Needs proximity to school
|
||||
INT-143-2,PER-0143,PRJ-001,PRJ-001-U001,very_high,Villa,15.87,23.81,flexible,combined,Comparing with competitor projects
|
||||
INT-144-1,PER-0144,PRJ-001,PRJ-001-U009,high,Villa,10.03,15.05,immediate,cash,Comparing with competitor projects
|
||||
INT-144-2,PER-0144,PRJ-013,PRJ-013-U012,low,2 BHK,3.24,4.86,6_months,combined,Wants ready to move in
|
||||
INT-145-1,PER-0145,PRJ-001,PRJ-001-U013,very_high,4 BHK,11.42,17.14,immediate,cash,Needs proximity to school
|
||||
INT-145-2,PER-0145,PRJ-013,PRJ-013-U006,medium,4 BHK,41.22,61.84,6_months,home_loan,Looking for east facing unit
|
||||
INT-146-1,PER-0146,PRJ-014,PRJ-014-U006,very_high,Penthouse,46.74,70.12,6_months,cash,Comparing with competitor projects
|
||||
INT-146-2,PER-0146,PRJ-011,PRJ-011-U003,medium,Villa,18.68,28.02,immediate,combined,Wants ready to move in
|
||||
INT-147-1,PER-0147,PRJ-008,PRJ-008-U001,medium,Villa,3.05,4.57,6_months,cash,Comparing with competitor projects
|
||||
INT-148-1,PER-0148,PRJ-012,PRJ-012-U007,medium,Duplex,2.16,3.24,flexible,home_loan,Wants ready to move in
|
||||
INT-149-1,PER-0149,PRJ-006,PRJ-006-U005,very_high,Penthouse,29.69,44.53,6_months,home_loan,Comparing with competitor projects
|
||||
INT-150-1,PER-0150,PRJ-005,PRJ-005-U008,medium,3 BHK,3.1,4.66,immediate,undecided,Looking for east facing unit
|
||||
INT-151-1,PER-0151,PRJ-011,PRJ-011-U010,very_high,4 BHK,4.94,7.42,immediate,home_loan,Wants ready to move in
|
||||
INT-152-1,PER-0152,PRJ-008,PRJ-008-U014,high,Duplex,4.19,6.29,flexible,home_loan,Needs proximity to school
|
||||
INT-153-1,PER-0153,PRJ-014,PRJ-014-U003,medium,Duplex,20.44,30.66,3_months,undecided,Wants ready to move in
|
||||
INT-153-2,PER-0153,PRJ-008,PRJ-008-U009,very_high,5 BHK,10.66,16.0,flexible,home_loan,Comparing with competitor projects
|
||||
INT-153-3,PER-0153,PRJ-006,PRJ-006-U003,high,5 BHK,11.76,17.64,flexible,combined,Comparing with competitor projects
|
||||
INT-154-1,PER-0154,PRJ-010,PRJ-010-U011,low,Villa,10.18,15.28,flexible,combined,Needs proximity to school
|
||||
INT-155-1,PER-0155,PRJ-002,PRJ-002-U001,very_high,Villa,2.37,3.55,6_months,home_loan,Needs proximity to school
|
||||
INT-156-1,PER-0156,PRJ-007,PRJ-007-U012,high,4 BHK,10.58,15.86,flexible,home_loan,Waiting for festive season offer
|
||||
INT-157-1,PER-0157,PRJ-005,PRJ-005-U008,very_high,3 BHK,3.1,4.66,3_months,combined,Needs proximity to school
|
||||
INT-157-2,PER-0157,PRJ-007,PRJ-007-U003,very_high,3 BHK,14.61,21.91,immediate,cash,Waiting for festive season offer
|
||||
INT-158-1,PER-0158,PRJ-003,PRJ-003-U008,medium,4 BHK,4.31,6.47,immediate,undecided,Wants ready to move in
|
||||
INT-159-1,PER-0159,PRJ-005,PRJ-005-U008,low,3 BHK,3.1,4.66,3_months,undecided,Needs proximity to school
|
||||
INT-160-1,PER-0160,PRJ-010,PRJ-010-U012,high,Villa,15.62,23.42,immediate,undecided,Looking for east facing unit
|
||||
INT-161-1,PER-0161,PRJ-007,PRJ-007-U014,very_high,4 BHK,5.54,8.3,3_months,undecided,Wants ready to move in
|
||||
INT-162-1,PER-0162,PRJ-009,PRJ-009-U008,high,Duplex,11.69,17.53,immediate,undecided,Comparing with competitor projects
|
||||
INT-163-1,PER-0163,PRJ-006,PRJ-006-U003,very_high,5 BHK,11.76,17.64,flexible,home_loan,Looking for east facing unit
|
||||
INT-163-2,PER-0163,PRJ-005,PRJ-005-U009,high,Villa,1.91,2.87,immediate,undecided,Looking for east facing unit
|
||||
INT-164-1,PER-0164,PRJ-014,PRJ-014-U005,low,2 BHK,3.4,5.1,immediate,undecided,Waiting for festive season offer
|
||||
INT-164-2,PER-0164,PRJ-008,PRJ-008-U007,medium,2 BHK,19.2,28.8,flexible,undecided,Looking for east facing unit
|
||||
INT-165-1,PER-0165,PRJ-011,PRJ-011-U014,very_high,5 BHK,8.56,12.84,6_months,combined,Comparing with competitor projects
|
||||
INT-166-1,PER-0166,PRJ-010,PRJ-010-U011,very_high,Villa,10.18,15.28,6_months,home_loan,Prefers higher floor
|
||||
INT-167-1,PER-0167,PRJ-005,PRJ-005-U005,high,3 BHK,15.42,23.12,flexible,undecided,Prefers higher floor
|
||||
INT-168-1,PER-0168,PRJ-014,PRJ-014-U001,high,5 BHK,58.7,88.06,immediate,combined,Prefers higher floor
|
||||
INT-169-1,PER-0169,PRJ-010,PRJ-010-U011,medium,Villa,10.18,15.28,6_months,home_loan,Looking for east facing unit
|
||||
INT-169-2,PER-0169,PRJ-006,PRJ-006-U002,very_high,Duplex,19.22,28.82,immediate,cash,Wants ready to move in
|
||||
INT-169-3,PER-0169,PRJ-014,PRJ-014-U001,low,5 BHK,58.7,88.06,immediate,combined,Comparing with competitor projects
|
||||
INT-170-1,PER-0170,PRJ-003,PRJ-003-U010,low,4 BHK,12.46,18.68,6_months,combined,Looking for east facing unit
|
||||
INT-171-1,PER-0171,PRJ-001,PRJ-001-U010,very_high,Penthouse,30.81,46.21,immediate,cash,Prefers higher floor
|
||||
INT-171-2,PER-0171,PRJ-010,PRJ-010-U012,high,Villa,15.62,23.42,6_months,combined,Wants ready to move in
|
||||
INT-172-1,PER-0172,PRJ-006,PRJ-006-U003,high,5 BHK,11.76,17.64,immediate,home_loan,Prefers higher floor
|
||||
INT-173-1,PER-0173,PRJ-005,PRJ-005-U006,high,3 BHK,8.05,12.07,3_months,undecided,Prefers higher floor
|
||||
INT-174-1,PER-0174,PRJ-014,PRJ-014-U005,very_high,2 BHK,3.4,5.1,flexible,combined,Needs proximity to school
|
||||
INT-175-1,PER-0175,PRJ-010,PRJ-010-U012,medium,Villa,15.62,23.42,3_months,cash,Waiting for festive season offer
|
||||
INT-175-2,PER-0175,PRJ-012,PRJ-012-U001,high,4 BHK,16.18,24.28,immediate,combined,Prefers higher floor
|
||||
INT-176-1,PER-0176,PRJ-012,PRJ-012-U004,low,Villa,8.72,13.08,flexible,undecided,Wants ready to move in
|
||||
INT-176-2,PER-0176,PRJ-005,PRJ-005-U005,low,3 BHK,15.42,23.12,3_months,cash,Prefers higher floor
|
||||
INT-177-1,PER-0177,PRJ-003,PRJ-003-U011,medium,Duplex,3.09,4.63,immediate,home_loan,Looking for east facing unit
|
||||
INT-177-2,PER-0177,PRJ-007,PRJ-007-U001,medium,Duplex,5.27,7.91,immediate,undecided,Waiting for festive season offer
|
||||
INT-178-1,PER-0178,PRJ-007,PRJ-007-U017,medium,Villa,5.71,8.57,flexible,cash,Comparing with competitor projects
|
||||
INT-178-2,PER-0178,PRJ-013,PRJ-013-U007,very_high,5 BHK,31.08,46.62,flexible,undecided,Prefers higher floor
|
||||
INT-179-1,PER-0179,PRJ-014,PRJ-014-U001,medium,5 BHK,58.7,88.06,6_months,combined,Looking for east facing unit
|
||||
INT-180-1,PER-0180,PRJ-012,PRJ-012-U001,medium,4 BHK,16.18,24.28,flexible,combined,Wants ready to move in
|
||||
INT-180-2,PER-0180,PRJ-010,PRJ-010-U004,medium,Penthouse,3.99,5.99,3_months,undecided,Comparing with competitor projects
|
||||
INT-181-1,PER-0181,PRJ-012,PRJ-012-U001,very_high,4 BHK,16.18,24.28,flexible,home_loan,Waiting for festive season offer
|
||||
INT-181-2,PER-0181,PRJ-013,PRJ-013-U013,very_high,Penthouse,9.29,13.93,immediate,combined,Looking for east facing unit
|
||||
INT-182-1,PER-0182,PRJ-004,PRJ-004-U019,low,Penthouse,17.82,26.74,flexible,home_loan,Looking for east facing unit
|
||||
INT-183-1,PER-0183,PRJ-003,PRJ-003-U011,very_high,Duplex,3.09,4.63,flexible,undecided,Prefers higher floor
|
||||
INT-184-1,PER-0184,PRJ-010,PRJ-010-U010,low,Duplex,8.5,12.74,6_months,combined,Waiting for festive season offer
|
||||
INT-185-1,PER-0185,PRJ-006,PRJ-006-U005,low,Penthouse,29.69,44.53,immediate,home_loan,Waiting for festive season offer
|
||||
INT-186-1,PER-0186,PRJ-011,PRJ-011-U004,high,Penthouse,40.54,60.82,flexible,cash,Prefers higher floor
|
||||
INT-186-2,PER-0186,PRJ-012,PRJ-012-U001,very_high,4 BHK,16.18,24.28,flexible,combined,Prefers higher floor
|
||||
INT-186-3,PER-0186,PRJ-011,PRJ-011-U003,very_high,Villa,18.68,28.02,3_months,cash,Wants ready to move in
|
||||
INT-187-1,PER-0187,PRJ-011,PRJ-011-U004,low,Penthouse,40.54,60.82,3_months,home_loan,Needs proximity to school
|
||||
INT-188-1,PER-0188,PRJ-005,PRJ-005-U008,high,3 BHK,3.1,4.66,flexible,home_loan,Needs proximity to school
|
||||
INT-189-1,PER-0189,PRJ-012,PRJ-012-U007,low,Duplex,2.16,3.24,flexible,combined,Looking for east facing unit
|
||||
INT-190-1,PER-0190,PRJ-012,PRJ-012-U007,high,Duplex,2.16,3.24,flexible,undecided,Looking for east facing unit
|
||||
INT-190-2,PER-0190,PRJ-003,PRJ-003-U005,medium,Penthouse,18.86,28.3,6_months,combined,Comparing with competitor projects
|
||||
INT-191-1,PER-0191,PRJ-008,PRJ-008-U003,low,Penthouse,6.7,10.04,immediate,undecided,Comparing with competitor projects
|
||||
INT-191-2,PER-0191,PRJ-006,PRJ-006-U001,high,Penthouse,4.76,7.14,6_months,combined,Wants ready to move in
|
||||
INT-191-3,PER-0191,PRJ-011,PRJ-011-U009,high,3 BHK,3.14,4.7,flexible,undecided,Looking for east facing unit
|
||||
INT-192-1,PER-0192,PRJ-005,PRJ-005-U005,low,3 BHK,15.42,23.12,flexible,undecided,Wants ready to move in
|
||||
INT-192-2,PER-0192,PRJ-007,PRJ-007-U003,low,3 BHK,14.61,21.91,flexible,cash,Prefers higher floor
|
||||
INT-193-1,PER-0193,PRJ-001,PRJ-001-U013,high,4 BHK,11.42,17.14,immediate,cash,Wants ready to move in
|
||||
INT-193-2,PER-0193,PRJ-008,PRJ-008-U018,low,2 BHK,41.19,61.79,6_months,undecided,Waiting for festive season offer
|
||||
INT-193-3,PER-0193,PRJ-009,PRJ-009-U014,high,3 BHK,7.65,11.47,immediate,home_loan,Prefers higher floor
|
||||
INT-194-1,PER-0194,PRJ-006,PRJ-006-U003,high,5 BHK,11.76,17.64,flexible,undecided,Waiting for festive season offer
|
||||
INT-194-2,PER-0194,PRJ-005,PRJ-005-U006,high,3 BHK,8.05,12.07,3_months,cash,Needs proximity to school
|
||||
INT-195-1,PER-0195,PRJ-004,PRJ-004-U008,low,Villa,25.58,38.38,6_months,cash,Looking for east facing unit
|
||||
INT-195-2,PER-0195,PRJ-008,PRJ-008-U012,medium,3 BHK,1.3,1.94,3_months,undecided,Needs proximity to school
|
||||
INT-195-3,PER-0195,PRJ-001,PRJ-001-U009,low,Villa,10.03,15.05,3_months,combined,Looking for east facing unit
|
||||
INT-196-1,PER-0196,PRJ-011,PRJ-011-U009,low,3 BHK,3.14,4.7,6_months,undecided,Wants ready to move in
|
||||
INT-197-1,PER-0197,PRJ-006,PRJ-006-U005,high,Penthouse,29.69,44.53,flexible,combined,Prefers higher floor
|
||||
INT-198-1,PER-0198,PRJ-002,PRJ-002-U002,very_high,5 BHK,5.54,8.32,immediate,undecided,Waiting for festive season offer
|
||||
INT-199-1,PER-0199,PRJ-003,PRJ-003-U008,medium,4 BHK,4.31,6.47,6_months,combined,Comparing with competitor projects
|
||||
INT-200-1,PER-0200,PRJ-009,PRJ-009-U012,very_high,5 BHK,42.38,63.56,immediate,cash,Needs proximity to school
|
||||
INT-200-2,PER-0200,PRJ-006,PRJ-006-U005,high,Penthouse,29.69,44.53,flexible,home_loan,Comparing with competitor projects
|
||||
INT-201-1,PER-0201,PRJ-004,PRJ-004-U004,medium,3 BHK,17.64,26.46,immediate,home_loan,Needs proximity to school
|
||||
INT-201-2,PER-0201,PRJ-002,PRJ-002-U011,medium,Penthouse,3.1,4.64,3_months,cash,Comparing with competitor projects
|
||||
INT-202-1,PER-0202,PRJ-003,PRJ-003-U003,low,Duplex,16.61,24.91,3_months,cash,Wants ready to move in
|
||||
INT-202-2,PER-0202,PRJ-004,PRJ-004-U008,high,Villa,25.58,38.38,immediate,cash,Prefers higher floor
|
||||
INT-203-1,PER-0203,PRJ-012,PRJ-012-U004,medium,Villa,8.72,13.08,6_months,home_loan,Waiting for festive season offer
|
||||
INT-204-1,PER-0204,PRJ-014,PRJ-014-U001,high,5 BHK,58.7,88.06,6_months,undecided,Wants ready to move in
|
||||
INT-204-2,PER-0204,PRJ-009,PRJ-009-U004,medium,2 BHK,2.52,3.78,3_months,cash,Needs proximity to school
|
||||
INT-205-1,PER-0205,PRJ-004,PRJ-004-U020,very_high,5 BHK,15.1,22.66,immediate,home_loan,Needs proximity to school
|
||||
INT-206-1,PER-0206,PRJ-014,PRJ-014-U005,high,2 BHK,3.4,5.1,3_months,undecided,Waiting for festive season offer
|
||||
INT-206-2,PER-0206,PRJ-007,PRJ-007-U012,high,4 BHK,10.58,15.86,6_months,combined,Wants ready to move in
|
||||
INT-206-3,PER-0206,PRJ-011,PRJ-011-U007,very_high,Duplex,26.32,39.48,3_months,undecided,Needs proximity to school
|
||||
INT-207-1,PER-0207,PRJ-014,PRJ-014-U003,medium,Duplex,20.44,30.66,6_months,undecided,Looking for east facing unit
|
||||
INT-207-2,PER-0207,PRJ-006,PRJ-006-U005,high,Penthouse,29.69,44.53,flexible,combined,Needs proximity to school
|
||||
INT-208-1,PER-0208,PRJ-007,PRJ-007-U014,very_high,4 BHK,5.54,8.3,6_months,home_loan,Waiting for festive season offer
|
||||
INT-209-1,PER-0209,PRJ-014,PRJ-014-U006,medium,Penthouse,46.74,70.12,flexible,home_loan,Comparing with competitor projects
|
||||
INT-210-1,PER-0210,PRJ-009,PRJ-009-U014,medium,3 BHK,7.65,11.47,immediate,combined,Looking for east facing unit
|
||||
INT-211-1,PER-0211,PRJ-006,PRJ-006-U001,very_high,Penthouse,4.76,7.14,flexible,undecided,Waiting for festive season offer
|
||||
INT-212-1,PER-0212,PRJ-010,PRJ-010-U010,medium,Duplex,8.5,12.74,flexible,cash,Comparing with competitor projects
|
||||
INT-213-1,PER-0213,PRJ-005,PRJ-005-U008,very_high,3 BHK,3.1,4.66,flexible,undecided,Wants ready to move in
|
||||
INT-214-1,PER-0214,PRJ-010,PRJ-010-U013,low,4 BHK,15.82,23.72,6_months,cash,Needs proximity to school
|
||||
INT-215-1,PER-0215,PRJ-012,PRJ-012-U004,high,Villa,8.72,13.08,immediate,cash,Wants ready to move in
|
||||
INT-216-1,PER-0216,PRJ-011,PRJ-011-U004,very_high,Penthouse,40.54,60.82,immediate,home_loan,Comparing with competitor projects
|
||||
INT-217-1,PER-0217,PRJ-010,PRJ-010-U011,very_high,Villa,10.18,15.28,6_months,combined,Waiting for festive season offer
|
||||
INT-217-2,PER-0217,PRJ-008,PRJ-008-U009,medium,5 BHK,10.66,16.0,6_months,home_loan,Wants ready to move in
|
||||
INT-217-3,PER-0217,PRJ-005,PRJ-005-U006,medium,3 BHK,8.05,12.07,immediate,undecided,Wants ready to move in
|
||||
INT-218-1,PER-0218,PRJ-003,PRJ-003-U011,medium,Duplex,3.09,4.63,6_months,home_loan,Waiting for festive season offer
|
||||
INT-218-2,PER-0218,PRJ-007,PRJ-007-U014,medium,4 BHK,5.54,8.3,3_months,undecided,Prefers higher floor
|
||||
INT-219-1,PER-0219,PRJ-002,PRJ-002-U019,high,2 BHK,8.37,12.55,flexible,home_loan,Looking for east facing unit
|
||||
INT-220-1,PER-0220,PRJ-008,PRJ-008-U014,low,Duplex,4.19,6.29,immediate,combined,Wants ready to move in
|
||||
INT-220-2,PER-0220,PRJ-004,PRJ-004-U010,very_high,Villa,1.62,2.42,6_months,combined,Comparing with competitor projects
|
||||
INT-220-3,PER-0220,PRJ-014,PRJ-014-U005,high,2 BHK,3.4,5.1,3_months,undecided,Prefers higher floor
|
||||
INT-221-1,PER-0221,PRJ-013,PRJ-013-U015,medium,4 BHK,21.26,31.88,3_months,cash,Needs proximity to school
|
||||
INT-222-1,PER-0222,PRJ-009,PRJ-009-U010,medium,Penthouse,11.74,17.6,immediate,combined,Prefers higher floor
|
||||
INT-222-2,PER-0222,PRJ-013,PRJ-013-U004,low,Duplex,16.1,24.14,flexible,cash,Waiting for festive season offer
|
||||
INT-223-1,PER-0223,PRJ-014,PRJ-014-U002,medium,Penthouse,19.58,29.36,3_months,home_loan,Needs proximity to school
|
||||
INT-223-2,PER-0223,PRJ-002,PRJ-002-U001,medium,Villa,2.37,3.55,immediate,undecided,Wants ready to move in
|
||||
INT-224-1,PER-0224,PRJ-005,PRJ-005-U008,very_high,3 BHK,3.1,4.66,immediate,cash,Wants ready to move in
|
||||
INT-224-2,PER-0224,PRJ-006,PRJ-006-U005,medium,Penthouse,29.69,44.53,6_months,undecided,Prefers higher floor
|
||||
INT-225-1,PER-0225,PRJ-013,PRJ-013-U006,medium,4 BHK,41.22,61.84,3_months,cash,Prefers higher floor
|
||||
INT-226-1,PER-0226,PRJ-009,PRJ-009-U003,high,Villa,5.46,8.18,immediate,combined,Prefers higher floor
|
||||
INT-226-2,PER-0226,PRJ-010,PRJ-010-U012,medium,Villa,15.62,23.42,flexible,cash,Looking for east facing unit
|
||||
INT-227-1,PER-0227,PRJ-002,PRJ-002-U016,low,3 BHK,10.04,15.06,immediate,home_loan,Wants ready to move in
|
||||
INT-228-1,PER-0228,PRJ-007,PRJ-007-U001,very_high,Duplex,5.27,7.91,3_months,home_loan,Looking for east facing unit
|
||||
INT-229-1,PER-0229,PRJ-006,PRJ-006-U002,high,Duplex,19.22,28.82,flexible,cash,Prefers higher floor
|
||||
INT-230-1,PER-0230,PRJ-012,PRJ-012-U001,low,4 BHK,16.18,24.28,flexible,undecided,Wants ready to move in
|
||||
INT-230-2,PER-0230,PRJ-007,PRJ-007-U003,low,3 BHK,14.61,21.91,6_months,combined,Waiting for festive season offer
|
||||
INT-230-3,PER-0230,PRJ-008,PRJ-008-U003,medium,Penthouse,6.7,10.04,flexible,cash,Waiting for festive season offer
|
||||
INT-231-1,PER-0231,PRJ-014,PRJ-014-U002,high,Penthouse,19.58,29.36,3_months,home_loan,Needs proximity to school
|
||||
INT-231-2,PER-0231,PRJ-014,PRJ-014-U005,low,2 BHK,3.4,5.1,immediate,cash,Prefers higher floor
|
||||
INT-232-1,PER-0232,PRJ-002,PRJ-002-U004,high,Villa,1.62,2.42,flexible,cash,Wants ready to move in
|
||||
INT-233-1,PER-0233,PRJ-014,PRJ-014-U005,high,2 BHK,3.4,5.1,flexible,cash,Wants ready to move in
|
||||
INT-233-2,PER-0233,PRJ-001,PRJ-001-U015,low,4 BHK,7.74,11.6,3_months,cash,Wants ready to move in
|
||||
INT-234-1,PER-0234,PRJ-003,PRJ-003-U002,very_high,3 BHK,22.21,33.31,3_months,undecided,Looking for east facing unit
|
||||
INT-234-2,PER-0234,PRJ-005,PRJ-005-U006,medium,3 BHK,8.05,12.07,flexible,cash,Looking for east facing unit
|
||||
INT-234-3,PER-0234,PRJ-003,PRJ-003-U003,very_high,Duplex,16.61,24.91,flexible,combined,Waiting for festive season offer
|
||||
INT-235-1,PER-0235,PRJ-005,PRJ-005-U009,very_high,Villa,1.91,2.87,immediate,cash,Needs proximity to school
|
||||
INT-235-2,PER-0235,PRJ-004,PRJ-004-U004,high,3 BHK,17.64,26.46,immediate,cash,Looking for east facing unit
|
||||
INT-236-1,PER-0236,PRJ-011,PRJ-011-U014,medium,5 BHK,8.56,12.84,flexible,undecided,Waiting for festive season offer
|
||||
INT-237-1,PER-0237,PRJ-009,PRJ-009-U004,medium,2 BHK,2.52,3.78,6_months,combined,Needs proximity to school
|
||||
INT-237-2,PER-0237,PRJ-010,PRJ-010-U009,very_high,Duplex,7.46,11.18,6_months,combined,Comparing with competitor projects
|
||||
INT-238-1,PER-0238,PRJ-002,PRJ-002-U004,high,Villa,1.62,2.42,flexible,home_loan,Prefers higher floor
|
||||
INT-239-1,PER-0239,PRJ-004,PRJ-004-U004,high,3 BHK,17.64,26.46,3_months,home_loan,Looking for east facing unit
|
||||
INT-239-2,PER-0239,PRJ-009,PRJ-009-U011,low,Duplex,1.76,2.64,3_months,cash,Comparing with competitor projects
|
||||
INT-240-1,PER-0240,PRJ-014,PRJ-014-U001,very_high,5 BHK,58.7,88.06,flexible,cash,Comparing with competitor projects
|
||||
INT-241-1,PER-0241,PRJ-004,PRJ-004-U010,low,Villa,1.62,2.42,flexible,cash,Wants ready to move in
|
||||
INT-242-1,PER-0242,PRJ-010,PRJ-010-U013,medium,4 BHK,15.82,23.72,3_months,cash,Needs proximity to school
|
||||
INT-243-1,PER-0243,PRJ-009,PRJ-009-U017,high,5 BHK,17.32,25.98,flexible,combined,Comparing with competitor projects
|
||||
INT-243-2,PER-0243,PRJ-007,PRJ-007-U003,low,3 BHK,14.61,21.91,6_months,combined,Looking for east facing unit
|
||||
INT-244-1,PER-0244,PRJ-005,PRJ-005-U008,high,3 BHK,3.1,4.66,6_months,home_loan,Prefers higher floor
|
||||
INT-244-2,PER-0244,PRJ-009,PRJ-009-U008,high,Duplex,11.69,17.53,immediate,cash,Comparing with competitor projects
|
||||
INT-245-1,PER-0245,PRJ-001,PRJ-001-U002,very_high,2 BHK,26.38,39.58,immediate,home_loan,Wants ready to move in
|
||||
INT-246-1,PER-0246,PRJ-005,PRJ-005-U005,low,3 BHK,15.42,23.12,6_months,cash,Wants ready to move in
|
||||
INT-247-1,PER-0247,PRJ-008,PRJ-008-U003,high,Penthouse,6.7,10.04,immediate,cash,Needs proximity to school
|
||||
INT-248-1,PER-0248,PRJ-010,PRJ-010-U009,medium,Duplex,7.46,11.18,flexible,undecided,Prefers higher floor
|
||||
INT-248-2,PER-0248,PRJ-009,PRJ-009-U010,medium,Penthouse,11.74,17.6,6_months,combined,Needs proximity to school
|
||||
INT-249-1,PER-0249,PRJ-007,PRJ-007-U001,low,Duplex,5.27,7.91,3_months,home_loan,Comparing with competitor projects
|
||||
INT-250-1,PER-0250,PRJ-006,PRJ-006-U001,very_high,Penthouse,4.76,7.14,flexible,home_loan,Prefers higher floor
|
||||
|
92
db assets/synthetic_crm_v1/csv/crm_relationships.csv
Normal file
92
db assets/synthetic_crm_v1/csv/crm_relationships.csv
Normal file
@@ -0,0 +1,92 @@
|
||||
relationship_id,from_person_id,to_person_id,relationship_type,strength_score,metadata_json
|
||||
REL-2-001,PER-0002,PER-0002-CO,business_partner,0.9,"{""verified"": false}"
|
||||
REL-8-001,PER-0008,PER-0008-CO,sibling,0.99,"{""verified"": false}"
|
||||
REL-11-001,PER-0011,PER-0011-CO,parent,0.79,"{""verified"": true}"
|
||||
REL-13-001,PER-0013,PER-0013-CO,business_partner,0.99,"{""verified"": true}"
|
||||
REL-15-001,PER-0015,PER-0015-CO,parent,0.86,"{""verified"": true}"
|
||||
REL-17-001,PER-0017,PER-0017-CO,spouse,0.77,"{""verified"": true}"
|
||||
REL-22-001,PER-0022,PER-0022-CO,parent,0.73,"{""verified"": true}"
|
||||
REL-23-001,PER-0023,PER-0023-CO,sibling,0.84,"{""verified"": false}"
|
||||
REL-25-001,PER-0025,PER-0025-CO,sibling,0.75,"{""verified"": false}"
|
||||
REL-28-001,PER-0028,PER-0028-CO,sibling,0.95,"{""verified"": true}"
|
||||
REL-29-001,PER-0029,PER-0029-CO,business_partner,0.85,"{""verified"": true}"
|
||||
REL-30-001,PER-0030,PER-0030-CO,parent,0.92,"{""verified"": false}"
|
||||
REL-32-001,PER-0032,PER-0032-CO,spouse,0.89,"{""verified"": true}"
|
||||
REL-34-001,PER-0034,PER-0034-CO,sibling,0.83,"{""verified"": true}"
|
||||
REL-35-001,PER-0035,PER-0035-CO,spouse,0.91,"{""verified"": true}"
|
||||
REL-37-001,PER-0037,PER-0037-CO,business_partner,0.83,"{""verified"": true}"
|
||||
REL-40-001,PER-0040,PER-0040-CO,spouse,0.92,"{""verified"": true}"
|
||||
REL-43-001,PER-0043,PER-0043-CO,parent,0.83,"{""verified"": true}"
|
||||
REL-51-001,PER-0051,PER-0051-CO,sibling,0.9,"{""verified"": false}"
|
||||
REL-53-001,PER-0053,PER-0053-CO,business_partner,1.0,"{""verified"": false}"
|
||||
REL-54-001,PER-0054,PER-0054-CO,spouse,0.87,"{""verified"": false}"
|
||||
REL-58-001,PER-0058,PER-0058-CO,parent,0.78,"{""verified"": false}"
|
||||
REL-59-001,PER-0059,PER-0059-CO,parent,0.77,"{""verified"": false}"
|
||||
REL-62-001,PER-0062,PER-0062-CO,spouse,0.82,"{""verified"": true}"
|
||||
REL-71-001,PER-0071,PER-0071-CO,business_partner,0.88,"{""verified"": false}"
|
||||
REL-72-001,PER-0072,PER-0072-CO,sibling,0.96,"{""verified"": true}"
|
||||
REL-79-001,PER-0079,PER-0079-CO,business_partner,0.88,"{""verified"": false}"
|
||||
REL-80-001,PER-0080,PER-0080-CO,sibling,0.83,"{""verified"": true}"
|
||||
REL-84-001,PER-0084,PER-0084-CO,business_partner,0.89,"{""verified"": true}"
|
||||
REL-87-001,PER-0087,PER-0087-CO,spouse,0.83,"{""verified"": true}"
|
||||
REL-90-001,PER-0090,PER-0090-CO,spouse,0.99,"{""verified"": true}"
|
||||
REL-91-001,PER-0091,PER-0091-CO,sibling,0.81,"{""verified"": false}"
|
||||
REL-93-001,PER-0093,PER-0093-CO,spouse,0.72,"{""verified"": true}"
|
||||
REL-94-001,PER-0094,PER-0094-CO,sibling,0.73,"{""verified"": true}"
|
||||
REL-95-001,PER-0095,PER-0095-CO,sibling,0.75,"{""verified"": false}"
|
||||
REL-96-001,PER-0096,PER-0096-CO,business_partner,0.73,"{""verified"": false}"
|
||||
REL-98-001,PER-0098,PER-0098-CO,business_partner,0.8,"{""verified"": true}"
|
||||
REL-99-001,PER-0099,PER-0099-CO,spouse,0.79,"{""verified"": false}"
|
||||
REL-100-001,PER-0100,PER-0100-CO,business_partner,0.94,"{""verified"": true}"
|
||||
REL-102-001,PER-0102,PER-0102-CO,sibling,0.94,"{""verified"": true}"
|
||||
REL-103-001,PER-0103,PER-0103-CO,business_partner,0.97,"{""verified"": false}"
|
||||
REL-104-001,PER-0104,PER-0104-CO,sibling,0.77,"{""verified"": false}"
|
||||
REL-107-001,PER-0107,PER-0107-CO,sibling,0.74,"{""verified"": false}"
|
||||
REL-108-001,PER-0108,PER-0108-CO,sibling,0.97,"{""verified"": false}"
|
||||
REL-115-001,PER-0115,PER-0115-CO,spouse,0.81,"{""verified"": true}"
|
||||
REL-117-001,PER-0117,PER-0117-CO,business_partner,0.95,"{""verified"": false}"
|
||||
REL-119-001,PER-0119,PER-0119-CO,spouse,0.7,"{""verified"": true}"
|
||||
REL-122-001,PER-0122,PER-0122-CO,business_partner,0.93,"{""verified"": false}"
|
||||
REL-123-001,PER-0123,PER-0123-CO,business_partner,0.71,"{""verified"": false}"
|
||||
REL-126-001,PER-0126,PER-0126-CO,spouse,0.92,"{""verified"": false}"
|
||||
REL-130-001,PER-0130,PER-0130-CO,business_partner,0.78,"{""verified"": true}"
|
||||
REL-132-001,PER-0132,PER-0132-CO,business_partner,0.72,"{""verified"": true}"
|
||||
REL-135-001,PER-0135,PER-0135-CO,parent,0.79,"{""verified"": true}"
|
||||
REL-136-001,PER-0136,PER-0136-CO,parent,0.77,"{""verified"": false}"
|
||||
REL-138-001,PER-0138,PER-0138-CO,business_partner,0.82,"{""verified"": false}"
|
||||
REL-143-001,PER-0143,PER-0143-CO,business_partner,0.95,"{""verified"": true}"
|
||||
REL-144-001,PER-0144,PER-0144-CO,business_partner,0.76,"{""verified"": true}"
|
||||
REL-145-001,PER-0145,PER-0145-CO,spouse,0.99,"{""verified"": true}"
|
||||
REL-150-001,PER-0150,PER-0150-CO,business_partner,0.85,"{""verified"": true}"
|
||||
REL-151-001,PER-0151,PER-0151-CO,parent,0.73,"{""verified"": true}"
|
||||
REL-152-001,PER-0152,PER-0152-CO,spouse,0.84,"{""verified"": true}"
|
||||
REL-154-001,PER-0154,PER-0154-CO,parent,0.86,"{""verified"": true}"
|
||||
REL-155-001,PER-0155,PER-0155-CO,spouse,0.71,"{""verified"": true}"
|
||||
REL-165-001,PER-0165,PER-0165-CO,parent,0.73,"{""verified"": true}"
|
||||
REL-168-001,PER-0168,PER-0168-CO,spouse,0.77,"{""verified"": true}"
|
||||
REL-184-001,PER-0184,PER-0184-CO,spouse,0.96,"{""verified"": false}"
|
||||
REL-185-001,PER-0185,PER-0185-CO,sibling,1.0,"{""verified"": true}"
|
||||
REL-186-001,PER-0186,PER-0186-CO,business_partner,0.78,"{""verified"": false}"
|
||||
REL-188-001,PER-0188,PER-0188-CO,business_partner,0.88,"{""verified"": true}"
|
||||
REL-190-001,PER-0190,PER-0190-CO,spouse,0.81,"{""verified"": true}"
|
||||
REL-191-001,PER-0191,PER-0191-CO,sibling,0.73,"{""verified"": true}"
|
||||
REL-195-001,PER-0195,PER-0195-CO,spouse,0.9,"{""verified"": true}"
|
||||
REL-196-001,PER-0196,PER-0196-CO,parent,0.88,"{""verified"": false}"
|
||||
REL-199-001,PER-0199,PER-0199-CO,sibling,0.87,"{""verified"": false}"
|
||||
REL-204-001,PER-0204,PER-0204-CO,business_partner,0.85,"{""verified"": false}"
|
||||
REL-205-001,PER-0205,PER-0205-CO,business_partner,0.97,"{""verified"": false}"
|
||||
REL-210-001,PER-0210,PER-0210-CO,business_partner,0.86,"{""verified"": true}"
|
||||
REL-215-001,PER-0215,PER-0215-CO,business_partner,0.81,"{""verified"": true}"
|
||||
REL-217-001,PER-0217,PER-0217-CO,spouse,0.94,"{""verified"": true}"
|
||||
REL-219-001,PER-0219,PER-0219-CO,parent,0.75,"{""verified"": true}"
|
||||
REL-222-001,PER-0222,PER-0222-CO,parent,0.78,"{""verified"": true}"
|
||||
REL-228-001,PER-0228,PER-0228-CO,sibling,0.85,"{""verified"": true}"
|
||||
REL-229-001,PER-0229,PER-0229-CO,business_partner,0.87,"{""verified"": false}"
|
||||
REL-232-001,PER-0232,PER-0232-CO,spouse,0.97,"{""verified"": true}"
|
||||
REL-236-001,PER-0236,PER-0236-CO,spouse,0.84,"{""verified"": true}"
|
||||
REL-242-001,PER-0242,PER-0242-CO,sibling,0.72,"{""verified"": false}"
|
||||
REL-243-001,PER-0243,PER-0243-CO,spouse,0.82,"{""verified"": true}"
|
||||
REL-244-001,PER-0244,PER-0244-CO,business_partner,0.81,"{""verified"": true}"
|
||||
REL-246-001,PER-0246,PER-0246-CO,parent,0.77,"{""verified"": true}"
|
||||
REL-249-001,PER-0249,PER-0249-CO,spouse,0.81,"{""verified"": false}"
|
||||
REL-250-001,PER-0250,PER-0250-CO,sibling,0.86,"{""verified"": true}"
|
||||
|
1374
db assets/synthetic_crm_v1/csv/crm_stage_history.csv
Normal file
1374
db assets/synthetic_crm_v1/csv/crm_stage_history.csv
Normal file
File diff suppressed because it is too large
Load Diff
479
db assets/synthetic_crm_v1/csv/intel_calls.csv
Normal file
479
db assets/synthetic_crm_v1/csv/intel_calls.csv
Normal file
@@ -0,0 +1,479 @@
|
||||
call_id,interaction_id,call_direction,duration_seconds,recording_ref,transcript_ref
|
||||
CAL-00001,INT-000006,inbound,158,rec/CAL-00001.mp3,trx/CAL-00001.json
|
||||
CAL-00002,INT-000012,outbound,447,rec/CAL-00002.mp3,trx/CAL-00002.json
|
||||
CAL-00003,INT-000015,outbound,404,rec/CAL-00003.mp3,trx/CAL-00003.json
|
||||
CAL-00004,INT-000018,inbound,217,,trx/CAL-00004.json
|
||||
CAL-00005,INT-000020,outbound,142,rec/CAL-00005.mp3,
|
||||
CAL-00006,INT-000022,outbound,723,rec/CAL-00006.mp3,
|
||||
CAL-00007,INT-000025,outbound,688,rec/CAL-00007.mp3,
|
||||
CAL-00008,INT-000030,inbound,536,rec/CAL-00008.mp3,trx/CAL-00008.json
|
||||
CAL-00009,INT-000037,inbound,823,rec/CAL-00009.mp3,trx/CAL-00009.json
|
||||
CAL-00010,INT-000046,inbound,444,rec/CAL-00010.mp3,trx/CAL-00010.json
|
||||
CAL-00011,INT-000051,outbound,472,rec/CAL-00011.mp3,trx/CAL-00011.json
|
||||
CAL-00012,INT-000052,inbound,679,rec/CAL-00012.mp3,
|
||||
CAL-00013,INT-000059,outbound,682,rec/CAL-00013.mp3,
|
||||
CAL-00014,INT-000061,outbound,594,rec/CAL-00014.mp3,trx/CAL-00014.json
|
||||
CAL-00015,INT-000070,inbound,283,,
|
||||
CAL-00016,INT-000074,inbound,393,rec/CAL-00016.mp3,
|
||||
CAL-00017,INT-000083,inbound,240,rec/CAL-00017.mp3,trx/CAL-00017.json
|
||||
CAL-00018,INT-000094,inbound,736,rec/CAL-00018.mp3,
|
||||
CAL-00019,INT-000101,inbound,215,rec/CAL-00019.mp3,trx/CAL-00019.json
|
||||
CAL-00020,INT-000106,outbound,450,rec/CAL-00020.mp3,
|
||||
CAL-00021,INT-000125,outbound,803,rec/CAL-00021.mp3,
|
||||
CAL-00022,INT-000134,outbound,64,rec/CAL-00022.mp3,
|
||||
CAL-00023,INT-000142,outbound,884,,trx/CAL-00023.json
|
||||
CAL-00024,INT-000146,outbound,467,,
|
||||
CAL-00025,INT-000154,outbound,345,,
|
||||
CAL-00026,INT-000165,outbound,411,rec/CAL-00026.mp3,
|
||||
CAL-00027,INT-000167,outbound,73,,trx/CAL-00027.json
|
||||
CAL-00028,INT-000176,outbound,242,rec/CAL-00028.mp3,trx/CAL-00028.json
|
||||
CAL-00029,INT-000179,outbound,829,,
|
||||
CAL-00030,INT-000199,inbound,847,,trx/CAL-00030.json
|
||||
CAL-00031,INT-000201,outbound,372,rec/CAL-00031.mp3,
|
||||
CAL-00032,INT-000202,outbound,844,rec/CAL-00032.mp3,
|
||||
CAL-00033,INT-000208,inbound,174,,trx/CAL-00033.json
|
||||
CAL-00034,INT-000209,inbound,465,,trx/CAL-00034.json
|
||||
CAL-00035,INT-000210,inbound,525,rec/CAL-00035.mp3,
|
||||
CAL-00036,INT-000221,outbound,99,rec/CAL-00036.mp3,
|
||||
CAL-00037,INT-000230,inbound,684,rec/CAL-00037.mp3,trx/CAL-00037.json
|
||||
CAL-00038,INT-000233,inbound,826,,
|
||||
CAL-00039,INT-000235,outbound,773,rec/CAL-00039.mp3,
|
||||
CAL-00040,INT-000237,outbound,163,rec/CAL-00040.mp3,trx/CAL-00040.json
|
||||
CAL-00041,INT-000239,outbound,82,rec/CAL-00041.mp3,trx/CAL-00041.json
|
||||
CAL-00042,INT-000249,inbound,83,rec/CAL-00042.mp3,trx/CAL-00042.json
|
||||
CAL-00043,INT-000251,inbound,814,rec/CAL-00043.mp3,
|
||||
CAL-00044,INT-000253,inbound,173,rec/CAL-00044.mp3,
|
||||
CAL-00045,INT-000259,outbound,628,rec/CAL-00045.mp3,trx/CAL-00045.json
|
||||
CAL-00046,INT-000264,outbound,512,,trx/CAL-00046.json
|
||||
CAL-00047,INT-000268,inbound,494,,trx/CAL-00047.json
|
||||
CAL-00048,INT-000269,outbound,396,,
|
||||
CAL-00049,INT-000271,inbound,542,,
|
||||
CAL-00050,INT-000274,inbound,292,rec/CAL-00050.mp3,trx/CAL-00050.json
|
||||
CAL-00051,INT-000282,inbound,199,rec/CAL-00051.mp3,
|
||||
CAL-00052,INT-000287,inbound,563,rec/CAL-00052.mp3,trx/CAL-00052.json
|
||||
CAL-00053,INT-000289,outbound,523,rec/CAL-00053.mp3,
|
||||
CAL-00054,INT-000291,inbound,271,rec/CAL-00054.mp3,trx/CAL-00054.json
|
||||
CAL-00055,INT-000292,outbound,462,,
|
||||
CAL-00056,INT-000294,inbound,453,rec/CAL-00056.mp3,
|
||||
CAL-00057,INT-000298,inbound,573,,trx/CAL-00057.json
|
||||
CAL-00058,INT-000302,inbound,481,rec/CAL-00058.mp3,trx/CAL-00058.json
|
||||
CAL-00059,INT-000304,inbound,469,,
|
||||
CAL-00060,INT-000305,outbound,460,rec/CAL-00060.mp3,
|
||||
CAL-00061,INT-000307,outbound,515,rec/CAL-00061.mp3,
|
||||
CAL-00062,INT-000312,outbound,335,rec/CAL-00062.mp3,trx/CAL-00062.json
|
||||
CAL-00063,INT-000313,inbound,814,rec/CAL-00063.mp3,trx/CAL-00063.json
|
||||
CAL-00064,INT-000315,inbound,581,rec/CAL-00064.mp3,trx/CAL-00064.json
|
||||
CAL-00065,INT-000327,inbound,582,rec/CAL-00065.mp3,
|
||||
CAL-00066,INT-000329,inbound,190,rec/CAL-00066.mp3,trx/CAL-00066.json
|
||||
CAL-00067,INT-000331,inbound,691,,trx/CAL-00067.json
|
||||
CAL-00068,INT-000333,outbound,113,rec/CAL-00068.mp3,trx/CAL-00068.json
|
||||
CAL-00069,INT-000336,inbound,581,rec/CAL-00069.mp3,
|
||||
CAL-00070,INT-000347,inbound,705,rec/CAL-00070.mp3,trx/CAL-00070.json
|
||||
CAL-00071,INT-000349,outbound,599,rec/CAL-00071.mp3,trx/CAL-00071.json
|
||||
CAL-00072,INT-000350,inbound,110,,
|
||||
CAL-00073,INT-000351,outbound,615,rec/CAL-00073.mp3,trx/CAL-00073.json
|
||||
CAL-00074,INT-000353,outbound,766,rec/CAL-00074.mp3,trx/CAL-00074.json
|
||||
CAL-00075,INT-000355,outbound,498,rec/CAL-00075.mp3,trx/CAL-00075.json
|
||||
CAL-00076,INT-000356,inbound,363,rec/CAL-00076.mp3,
|
||||
CAL-00077,INT-000357,inbound,163,,
|
||||
CAL-00078,INT-000360,inbound,257,,
|
||||
CAL-00079,INT-000362,inbound,67,rec/CAL-00079.mp3,trx/CAL-00079.json
|
||||
CAL-00080,INT-000363,inbound,102,rec/CAL-00080.mp3,
|
||||
CAL-00081,INT-000365,outbound,829,rec/CAL-00081.mp3,
|
||||
CAL-00082,INT-000366,outbound,646,rec/CAL-00082.mp3,
|
||||
CAL-00083,INT-000370,outbound,552,,trx/CAL-00083.json
|
||||
CAL-00084,INT-000374,outbound,682,,trx/CAL-00084.json
|
||||
CAL-00085,INT-000377,outbound,263,rec/CAL-00085.mp3,trx/CAL-00085.json
|
||||
CAL-00086,INT-000387,inbound,391,,
|
||||
CAL-00087,INT-000395,inbound,717,rec/CAL-00087.mp3,
|
||||
CAL-00088,INT-000400,inbound,742,rec/CAL-00088.mp3,
|
||||
CAL-00089,INT-000401,outbound,624,,trx/CAL-00089.json
|
||||
CAL-00090,INT-000402,inbound,310,rec/CAL-00090.mp3,trx/CAL-00090.json
|
||||
CAL-00091,INT-000405,outbound,762,rec/CAL-00091.mp3,trx/CAL-00091.json
|
||||
CAL-00092,INT-000407,outbound,656,,
|
||||
CAL-00093,INT-000410,inbound,457,rec/CAL-00093.mp3,trx/CAL-00093.json
|
||||
CAL-00094,INT-000411,inbound,547,rec/CAL-00094.mp3,trx/CAL-00094.json
|
||||
CAL-00095,INT-000414,outbound,714,,
|
||||
CAL-00096,INT-000421,inbound,690,rec/CAL-00096.mp3,
|
||||
CAL-00097,INT-000427,inbound,674,rec/CAL-00097.mp3,trx/CAL-00097.json
|
||||
CAL-00098,INT-000432,inbound,145,rec/CAL-00098.mp3,trx/CAL-00098.json
|
||||
CAL-00099,INT-000433,inbound,437,,trx/CAL-00099.json
|
||||
CAL-00100,INT-000434,outbound,323,,trx/CAL-00100.json
|
||||
CAL-00101,INT-000435,inbound,705,rec/CAL-00101.mp3,
|
||||
CAL-00102,INT-000438,inbound,413,rec/CAL-00102.mp3,trx/CAL-00102.json
|
||||
CAL-00103,INT-000440,outbound,618,rec/CAL-00103.mp3,
|
||||
CAL-00104,INT-000442,inbound,66,,trx/CAL-00104.json
|
||||
CAL-00105,INT-000449,outbound,483,,
|
||||
CAL-00106,INT-000457,outbound,110,,
|
||||
CAL-00107,INT-000459,inbound,680,rec/CAL-00107.mp3,trx/CAL-00107.json
|
||||
CAL-00108,INT-000460,inbound,168,rec/CAL-00108.mp3,
|
||||
CAL-00109,INT-000461,outbound,567,rec/CAL-00109.mp3,
|
||||
CAL-00110,INT-000463,inbound,624,rec/CAL-00110.mp3,
|
||||
CAL-00111,INT-000466,outbound,871,,
|
||||
CAL-00112,INT-000469,inbound,429,rec/CAL-00112.mp3,
|
||||
CAL-00113,INT-000471,outbound,382,rec/CAL-00113.mp3,
|
||||
CAL-00114,INT-000477,outbound,237,rec/CAL-00114.mp3,trx/CAL-00114.json
|
||||
CAL-00115,INT-000483,inbound,414,rec/CAL-00115.mp3,trx/CAL-00115.json
|
||||
CAL-00116,INT-000487,inbound,529,rec/CAL-00116.mp3,
|
||||
CAL-00117,INT-000488,inbound,229,rec/CAL-00117.mp3,
|
||||
CAL-00118,INT-000490,outbound,638,rec/CAL-00118.mp3,
|
||||
CAL-00119,INT-000491,inbound,858,rec/CAL-00119.mp3,trx/CAL-00119.json
|
||||
CAL-00120,INT-000495,inbound,176,rec/CAL-00120.mp3,trx/CAL-00120.json
|
||||
CAL-00121,INT-000498,outbound,783,,
|
||||
CAL-00122,INT-000500,outbound,221,rec/CAL-00122.mp3,
|
||||
CAL-00123,INT-000503,inbound,711,rec/CAL-00123.mp3,trx/CAL-00123.json
|
||||
CAL-00124,INT-000505,inbound,315,rec/CAL-00124.mp3,
|
||||
CAL-00125,INT-000506,outbound,651,rec/CAL-00125.mp3,
|
||||
CAL-00126,INT-000508,inbound,503,rec/CAL-00126.mp3,trx/CAL-00126.json
|
||||
CAL-00127,INT-000510,inbound,661,,
|
||||
CAL-00128,INT-000512,inbound,632,rec/CAL-00128.mp3,trx/CAL-00128.json
|
||||
CAL-00129,INT-000518,outbound,83,rec/CAL-00129.mp3,trx/CAL-00129.json
|
||||
CAL-00130,INT-000524,inbound,319,rec/CAL-00130.mp3,trx/CAL-00130.json
|
||||
CAL-00131,INT-000526,outbound,595,,
|
||||
CAL-00132,INT-000531,inbound,661,rec/CAL-00132.mp3,
|
||||
CAL-00133,INT-000535,outbound,716,rec/CAL-00133.mp3,trx/CAL-00133.json
|
||||
CAL-00134,INT-000536,outbound,632,rec/CAL-00134.mp3,
|
||||
CAL-00135,INT-000540,inbound,83,,
|
||||
CAL-00136,INT-000546,outbound,546,rec/CAL-00136.mp3,trx/CAL-00136.json
|
||||
CAL-00137,INT-000553,outbound,166,rec/CAL-00137.mp3,trx/CAL-00137.json
|
||||
CAL-00138,INT-000563,outbound,849,rec/CAL-00138.mp3,
|
||||
CAL-00139,INT-000565,inbound,278,,
|
||||
CAL-00140,INT-000571,outbound,659,,
|
||||
CAL-00141,INT-000573,outbound,741,rec/CAL-00141.mp3,trx/CAL-00141.json
|
||||
CAL-00142,INT-000585,inbound,614,,trx/CAL-00142.json
|
||||
CAL-00143,INT-000588,outbound,295,rec/CAL-00143.mp3,trx/CAL-00143.json
|
||||
CAL-00144,INT-000590,inbound,737,rec/CAL-00144.mp3,trx/CAL-00144.json
|
||||
CAL-00145,INT-000593,outbound,579,rec/CAL-00145.mp3,trx/CAL-00145.json
|
||||
CAL-00146,INT-000595,outbound,881,rec/CAL-00146.mp3,
|
||||
CAL-00147,INT-000596,inbound,369,,
|
||||
CAL-00148,INT-000599,inbound,488,rec/CAL-00148.mp3,
|
||||
CAL-00149,INT-000604,inbound,817,,
|
||||
CAL-00150,INT-000608,inbound,237,,trx/CAL-00150.json
|
||||
CAL-00151,INT-000612,inbound,637,,trx/CAL-00151.json
|
||||
CAL-00152,INT-000617,outbound,248,rec/CAL-00152.mp3,trx/CAL-00152.json
|
||||
CAL-00153,INT-000618,outbound,138,rec/CAL-00153.mp3,trx/CAL-00153.json
|
||||
CAL-00154,INT-000621,inbound,169,rec/CAL-00154.mp3,
|
||||
CAL-00155,INT-000624,outbound,229,rec/CAL-00155.mp3,trx/CAL-00155.json
|
||||
CAL-00156,INT-000625,outbound,148,rec/CAL-00156.mp3,
|
||||
CAL-00157,INT-000627,inbound,443,rec/CAL-00157.mp3,
|
||||
CAL-00158,INT-000629,outbound,549,rec/CAL-00158.mp3,
|
||||
CAL-00159,INT-000631,outbound,217,rec/CAL-00159.mp3,trx/CAL-00159.json
|
||||
CAL-00160,INT-000638,inbound,411,,
|
||||
CAL-00161,INT-000650,inbound,648,,
|
||||
CAL-00162,INT-000651,outbound,492,rec/CAL-00162.mp3,
|
||||
CAL-00163,INT-000652,inbound,271,rec/CAL-00163.mp3,trx/CAL-00163.json
|
||||
CAL-00164,INT-000653,outbound,257,rec/CAL-00164.mp3,
|
||||
CAL-00165,INT-000654,outbound,670,rec/CAL-00165.mp3,trx/CAL-00165.json
|
||||
CAL-00166,INT-000656,inbound,586,rec/CAL-00166.mp3,trx/CAL-00166.json
|
||||
CAL-00167,INT-000659,outbound,198,rec/CAL-00167.mp3,
|
||||
CAL-00168,INT-000666,inbound,383,rec/CAL-00168.mp3,trx/CAL-00168.json
|
||||
CAL-00169,INT-000681,inbound,72,rec/CAL-00169.mp3,
|
||||
CAL-00170,INT-000688,inbound,529,rec/CAL-00170.mp3,
|
||||
CAL-00171,INT-000690,outbound,590,rec/CAL-00171.mp3,
|
||||
CAL-00172,INT-000691,outbound,397,,
|
||||
CAL-00173,INT-000692,inbound,685,,
|
||||
CAL-00174,INT-000693,outbound,676,rec/CAL-00174.mp3,trx/CAL-00174.json
|
||||
CAL-00175,INT-000701,outbound,895,,trx/CAL-00175.json
|
||||
CAL-00176,INT-000703,outbound,92,rec/CAL-00176.mp3,
|
||||
CAL-00177,INT-000708,inbound,206,,
|
||||
CAL-00178,INT-000711,outbound,649,rec/CAL-00178.mp3,
|
||||
CAL-00179,INT-000713,inbound,818,rec/CAL-00179.mp3,
|
||||
CAL-00180,INT-000720,outbound,481,rec/CAL-00180.mp3,
|
||||
CAL-00181,INT-000721,outbound,815,,trx/CAL-00181.json
|
||||
CAL-00182,INT-000723,outbound,154,rec/CAL-00182.mp3,trx/CAL-00182.json
|
||||
CAL-00183,INT-000727,outbound,895,,
|
||||
CAL-00184,INT-000728,outbound,680,,
|
||||
CAL-00185,INT-000734,outbound,798,,
|
||||
CAL-00186,INT-000736,inbound,833,rec/CAL-00186.mp3,
|
||||
CAL-00187,INT-000739,inbound,196,,trx/CAL-00187.json
|
||||
CAL-00188,INT-000740,inbound,151,rec/CAL-00188.mp3,trx/CAL-00188.json
|
||||
CAL-00189,INT-000746,outbound,645,rec/CAL-00189.mp3,
|
||||
CAL-00190,INT-000755,outbound,837,rec/CAL-00190.mp3,
|
||||
CAL-00191,INT-000760,inbound,894,,trx/CAL-00191.json
|
||||
CAL-00192,INT-000764,inbound,71,,
|
||||
CAL-00193,INT-000766,outbound,97,rec/CAL-00193.mp3,
|
||||
CAL-00194,INT-000768,outbound,792,rec/CAL-00194.mp3,
|
||||
CAL-00195,INT-000771,outbound,629,rec/CAL-00195.mp3,
|
||||
CAL-00196,INT-000773,outbound,135,rec/CAL-00196.mp3,
|
||||
CAL-00197,INT-000784,inbound,244,rec/CAL-00197.mp3,
|
||||
CAL-00198,INT-000786,outbound,77,rec/CAL-00198.mp3,
|
||||
CAL-00199,INT-000789,outbound,755,rec/CAL-00199.mp3,trx/CAL-00199.json
|
||||
CAL-00200,INT-000794,outbound,584,rec/CAL-00200.mp3,
|
||||
CAL-00201,INT-000796,inbound,321,rec/CAL-00201.mp3,trx/CAL-00201.json
|
||||
CAL-00202,INT-000804,inbound,780,rec/CAL-00202.mp3,
|
||||
CAL-00203,INT-000806,inbound,181,rec/CAL-00203.mp3,trx/CAL-00203.json
|
||||
CAL-00204,INT-000809,inbound,604,rec/CAL-00204.mp3,
|
||||
CAL-00205,INT-000815,inbound,333,rec/CAL-00205.mp3,
|
||||
CAL-00206,INT-000817,outbound,503,rec/CAL-00206.mp3,
|
||||
CAL-00207,INT-000819,outbound,624,,
|
||||
CAL-00208,INT-000823,inbound,63,rec/CAL-00208.mp3,
|
||||
CAL-00209,INT-000825,inbound,203,,
|
||||
CAL-00210,INT-000828,outbound,762,,
|
||||
CAL-00211,INT-000829,inbound,102,rec/CAL-00211.mp3,
|
||||
CAL-00212,INT-000844,outbound,644,rec/CAL-00212.mp3,
|
||||
CAL-00213,INT-000846,outbound,673,rec/CAL-00213.mp3,trx/CAL-00213.json
|
||||
CAL-00214,INT-000847,outbound,332,rec/CAL-00214.mp3,trx/CAL-00214.json
|
||||
CAL-00215,INT-000852,inbound,787,rec/CAL-00215.mp3,trx/CAL-00215.json
|
||||
CAL-00216,INT-000854,outbound,82,,trx/CAL-00216.json
|
||||
CAL-00217,INT-000856,outbound,759,rec/CAL-00217.mp3,
|
||||
CAL-00218,INT-000859,outbound,822,rec/CAL-00218.mp3,
|
||||
CAL-00219,INT-000867,inbound,838,,
|
||||
CAL-00220,INT-000873,inbound,624,,trx/CAL-00220.json
|
||||
CAL-00221,INT-000877,inbound,268,,
|
||||
CAL-00222,INT-000882,inbound,207,rec/CAL-00222.mp3,trx/CAL-00222.json
|
||||
CAL-00223,INT-000883,inbound,283,rec/CAL-00223.mp3,trx/CAL-00223.json
|
||||
CAL-00224,INT-000886,outbound,186,rec/CAL-00224.mp3,trx/CAL-00224.json
|
||||
CAL-00225,INT-000893,inbound,172,rec/CAL-00225.mp3,trx/CAL-00225.json
|
||||
CAL-00226,INT-000894,outbound,655,rec/CAL-00226.mp3,
|
||||
CAL-00227,INT-000897,inbound,87,,
|
||||
CAL-00228,INT-000906,inbound,694,,trx/CAL-00228.json
|
||||
CAL-00229,INT-000907,inbound,598,rec/CAL-00229.mp3,
|
||||
CAL-00230,INT-000917,outbound,644,rec/CAL-00230.mp3,trx/CAL-00230.json
|
||||
CAL-00231,INT-000919,inbound,604,rec/CAL-00231.mp3,
|
||||
CAL-00232,INT-000922,inbound,808,rec/CAL-00232.mp3,trx/CAL-00232.json
|
||||
CAL-00233,INT-000924,inbound,787,,trx/CAL-00233.json
|
||||
CAL-00234,INT-000931,inbound,406,rec/CAL-00234.mp3,
|
||||
CAL-00235,INT-000934,outbound,455,rec/CAL-00235.mp3,
|
||||
CAL-00236,INT-000939,outbound,277,rec/CAL-00236.mp3,trx/CAL-00236.json
|
||||
CAL-00237,INT-000940,outbound,779,rec/CAL-00237.mp3,
|
||||
CAL-00238,INT-000952,inbound,350,rec/CAL-00238.mp3,
|
||||
CAL-00239,INT-000960,inbound,706,rec/CAL-00239.mp3,trx/CAL-00239.json
|
||||
CAL-00240,INT-000971,inbound,639,rec/CAL-00240.mp3,
|
||||
CAL-00241,INT-000974,outbound,678,,
|
||||
CAL-00242,INT-000983,outbound,622,rec/CAL-00242.mp3,trx/CAL-00242.json
|
||||
CAL-00243,INT-000988,inbound,429,rec/CAL-00243.mp3,
|
||||
CAL-00244,INT-000990,outbound,298,rec/CAL-00244.mp3,trx/CAL-00244.json
|
||||
CAL-00245,INT-000992,outbound,132,rec/CAL-00245.mp3,
|
||||
CAL-00246,INT-000993,inbound,216,rec/CAL-00246.mp3,trx/CAL-00246.json
|
||||
CAL-00247,INT-000998,inbound,210,rec/CAL-00247.mp3,trx/CAL-00247.json
|
||||
CAL-00248,INT-000999,outbound,327,,
|
||||
CAL-00249,INT-001008,outbound,884,,
|
||||
CAL-00250,INT-001012,outbound,601,rec/CAL-00250.mp3,
|
||||
CAL-00251,INT-001014,outbound,365,rec/CAL-00251.mp3,trx/CAL-00251.json
|
||||
CAL-00252,INT-001015,outbound,812,rec/CAL-00252.mp3,trx/CAL-00252.json
|
||||
CAL-00253,INT-001016,inbound,207,,trx/CAL-00253.json
|
||||
CAL-00254,INT-001018,outbound,454,rec/CAL-00254.mp3,trx/CAL-00254.json
|
||||
CAL-00255,INT-001021,inbound,893,rec/CAL-00255.mp3,trx/CAL-00255.json
|
||||
CAL-00256,INT-001027,inbound,200,,
|
||||
CAL-00257,INT-001033,outbound,71,rec/CAL-00257.mp3,trx/CAL-00257.json
|
||||
CAL-00258,INT-001043,inbound,553,rec/CAL-00258.mp3,
|
||||
CAL-00259,INT-001053,inbound,158,,
|
||||
CAL-00260,INT-001061,outbound,156,rec/CAL-00260.mp3,trx/CAL-00260.json
|
||||
CAL-00261,INT-001064,outbound,587,,trx/CAL-00261.json
|
||||
CAL-00262,INT-001067,inbound,285,rec/CAL-00262.mp3,
|
||||
CAL-00263,INT-001069,inbound,781,rec/CAL-00263.mp3,trx/CAL-00263.json
|
||||
CAL-00264,INT-001070,inbound,279,rec/CAL-00264.mp3,
|
||||
CAL-00265,INT-001072,inbound,359,,trx/CAL-00265.json
|
||||
CAL-00266,INT-001073,outbound,217,,
|
||||
CAL-00267,INT-001077,outbound,69,,
|
||||
CAL-00268,INT-001079,inbound,379,,trx/CAL-00268.json
|
||||
CAL-00269,INT-001085,outbound,316,rec/CAL-00269.mp3,
|
||||
CAL-00270,INT-001101,outbound,516,rec/CAL-00270.mp3,
|
||||
CAL-00271,INT-001104,inbound,824,,
|
||||
CAL-00272,INT-001107,inbound,750,rec/CAL-00272.mp3,
|
||||
CAL-00273,INT-001108,outbound,784,rec/CAL-00273.mp3,
|
||||
CAL-00274,INT-001110,inbound,464,rec/CAL-00274.mp3,trx/CAL-00274.json
|
||||
CAL-00275,INT-001112,outbound,541,rec/CAL-00275.mp3,
|
||||
CAL-00276,INT-001116,outbound,728,,
|
||||
CAL-00277,INT-001121,inbound,780,,
|
||||
CAL-00278,INT-001126,inbound,569,rec/CAL-00278.mp3,
|
||||
CAL-00279,INT-001129,outbound,453,rec/CAL-00279.mp3,trx/CAL-00279.json
|
||||
CAL-00280,INT-001133,outbound,287,rec/CAL-00280.mp3,trx/CAL-00280.json
|
||||
CAL-00281,INT-001137,inbound,371,,trx/CAL-00281.json
|
||||
CAL-00282,INT-001150,inbound,150,rec/CAL-00282.mp3,
|
||||
CAL-00283,INT-001151,outbound,649,rec/CAL-00283.mp3,trx/CAL-00283.json
|
||||
CAL-00284,INT-001152,outbound,830,rec/CAL-00284.mp3,trx/CAL-00284.json
|
||||
CAL-00285,INT-001157,outbound,378,rec/CAL-00285.mp3,
|
||||
CAL-00286,INT-001168,inbound,868,rec/CAL-00286.mp3,
|
||||
CAL-00287,INT-001173,outbound,482,,trx/CAL-00287.json
|
||||
CAL-00288,INT-001176,outbound,359,,
|
||||
CAL-00289,INT-001178,outbound,388,,trx/CAL-00289.json
|
||||
CAL-00290,INT-001181,inbound,341,rec/CAL-00290.mp3,
|
||||
CAL-00291,INT-001191,outbound,531,rec/CAL-00291.mp3,
|
||||
CAL-00292,INT-001204,inbound,192,rec/CAL-00292.mp3,
|
||||
CAL-00293,INT-001205,outbound,336,rec/CAL-00293.mp3,trx/CAL-00293.json
|
||||
CAL-00294,INT-001209,inbound,816,rec/CAL-00294.mp3,
|
||||
CAL-00295,INT-001212,outbound,430,,trx/CAL-00295.json
|
||||
CAL-00296,INT-001213,outbound,321,rec/CAL-00296.mp3,
|
||||
CAL-00297,INT-001219,inbound,193,rec/CAL-00297.mp3,
|
||||
CAL-00298,INT-001221,outbound,505,rec/CAL-00298.mp3,trx/CAL-00298.json
|
||||
CAL-00299,INT-001224,inbound,88,,
|
||||
CAL-00300,INT-001226,outbound,222,rec/CAL-00300.mp3,trx/CAL-00300.json
|
||||
CAL-00301,INT-001227,inbound,452,rec/CAL-00301.mp3,trx/CAL-00301.json
|
||||
CAL-00302,INT-001229,outbound,88,,trx/CAL-00302.json
|
||||
CAL-00303,INT-001231,inbound,119,rec/CAL-00303.mp3,
|
||||
CAL-00304,INT-001239,inbound,764,rec/CAL-00304.mp3,trx/CAL-00304.json
|
||||
CAL-00305,INT-001247,inbound,388,,trx/CAL-00305.json
|
||||
CAL-00306,INT-001250,outbound,263,,trx/CAL-00306.json
|
||||
CAL-00307,INT-001256,outbound,637,rec/CAL-00307.mp3,
|
||||
CAL-00308,INT-001258,inbound,492,rec/CAL-00308.mp3,
|
||||
CAL-00309,INT-001259,inbound,186,rec/CAL-00309.mp3,
|
||||
CAL-00310,INT-001260,inbound,526,,
|
||||
CAL-00311,INT-001261,outbound,768,,
|
||||
CAL-00312,INT-001265,outbound,668,,trx/CAL-00312.json
|
||||
CAL-00313,INT-001272,inbound,60,rec/CAL-00313.mp3,
|
||||
CAL-00314,INT-001277,inbound,666,rec/CAL-00314.mp3,
|
||||
CAL-00315,INT-001280,inbound,626,,
|
||||
CAL-00316,INT-001285,inbound,217,rec/CAL-00316.mp3,trx/CAL-00316.json
|
||||
CAL-00317,INT-001291,outbound,340,,trx/CAL-00317.json
|
||||
CAL-00318,INT-001292,inbound,488,,
|
||||
CAL-00319,INT-001293,inbound,670,,
|
||||
CAL-00320,INT-001300,inbound,375,rec/CAL-00320.mp3,
|
||||
CAL-00321,INT-001302,outbound,762,rec/CAL-00321.mp3,
|
||||
CAL-00322,INT-001304,inbound,866,rec/CAL-00322.mp3,
|
||||
CAL-00323,INT-001305,outbound,748,,trx/CAL-00323.json
|
||||
CAL-00324,INT-001307,outbound,774,rec/CAL-00324.mp3,trx/CAL-00324.json
|
||||
CAL-00325,INT-001312,inbound,153,rec/CAL-00325.mp3,trx/CAL-00325.json
|
||||
CAL-00326,INT-001314,inbound,118,rec/CAL-00326.mp3,trx/CAL-00326.json
|
||||
CAL-00327,INT-001320,inbound,500,rec/CAL-00327.mp3,trx/CAL-00327.json
|
||||
CAL-00328,INT-001322,outbound,610,,trx/CAL-00328.json
|
||||
CAL-00329,INT-001326,outbound,534,rec/CAL-00329.mp3,trx/CAL-00329.json
|
||||
CAL-00330,INT-001335,inbound,126,,trx/CAL-00330.json
|
||||
CAL-00331,INT-001338,outbound,140,rec/CAL-00331.mp3,
|
||||
CAL-00332,INT-001339,inbound,663,rec/CAL-00332.mp3,
|
||||
CAL-00333,INT-001343,outbound,767,rec/CAL-00333.mp3,trx/CAL-00333.json
|
||||
CAL-00334,INT-001347,outbound,621,rec/CAL-00334.mp3,trx/CAL-00334.json
|
||||
CAL-00335,INT-001353,outbound,295,,
|
||||
CAL-00336,INT-001355,outbound,599,rec/CAL-00336.mp3,trx/CAL-00336.json
|
||||
CAL-00337,INT-001356,outbound,468,rec/CAL-00337.mp3,
|
||||
CAL-00338,INT-001357,inbound,732,,
|
||||
CAL-00339,INT-001359,outbound,591,rec/CAL-00339.mp3,trx/CAL-00339.json
|
||||
CAL-00340,INT-001373,inbound,308,,trx/CAL-00340.json
|
||||
CAL-00341,INT-001375,outbound,220,rec/CAL-00341.mp3,
|
||||
CAL-00342,INT-001376,inbound,396,,
|
||||
CAL-00343,INT-001377,outbound,108,,trx/CAL-00343.json
|
||||
CAL-00344,INT-001378,inbound,777,rec/CAL-00344.mp3,trx/CAL-00344.json
|
||||
CAL-00345,INT-001381,inbound,849,rec/CAL-00345.mp3,trx/CAL-00345.json
|
||||
CAL-00346,INT-001383,outbound,121,,
|
||||
CAL-00347,INT-001393,inbound,84,rec/CAL-00347.mp3,trx/CAL-00347.json
|
||||
CAL-00348,INT-001394,outbound,704,rec/CAL-00348.mp3,
|
||||
CAL-00349,INT-001395,inbound,786,rec/CAL-00349.mp3,trx/CAL-00349.json
|
||||
CAL-00350,INT-001397,outbound,722,rec/CAL-00350.mp3,
|
||||
CAL-00351,INT-001399,outbound,679,rec/CAL-00351.mp3,
|
||||
CAL-00352,INT-001404,inbound,723,,trx/CAL-00352.json
|
||||
CAL-00353,INT-001414,outbound,703,,
|
||||
CAL-00354,INT-001415,inbound,443,rec/CAL-00354.mp3,trx/CAL-00354.json
|
||||
CAL-00355,INT-001418,inbound,419,rec/CAL-00355.mp3,
|
||||
CAL-00356,INT-001419,outbound,807,rec/CAL-00356.mp3,trx/CAL-00356.json
|
||||
CAL-00357,INT-001423,inbound,408,,
|
||||
CAL-00358,INT-001425,inbound,791,rec/CAL-00358.mp3,
|
||||
CAL-00359,INT-001427,outbound,846,rec/CAL-00359.mp3,
|
||||
CAL-00360,INT-001429,inbound,219,rec/CAL-00360.mp3,trx/CAL-00360.json
|
||||
CAL-00361,INT-001432,outbound,630,rec/CAL-00361.mp3,trx/CAL-00361.json
|
||||
CAL-00362,INT-001437,outbound,528,rec/CAL-00362.mp3,trx/CAL-00362.json
|
||||
CAL-00363,INT-001443,inbound,854,,
|
||||
CAL-00364,INT-001458,inbound,132,rec/CAL-00364.mp3,trx/CAL-00364.json
|
||||
CAL-00365,INT-001459,inbound,504,rec/CAL-00365.mp3,trx/CAL-00365.json
|
||||
CAL-00366,INT-001460,outbound,451,rec/CAL-00366.mp3,trx/CAL-00366.json
|
||||
CAL-00367,INT-001463,outbound,185,rec/CAL-00367.mp3,
|
||||
CAL-00368,INT-001466,outbound,127,,
|
||||
CAL-00369,INT-001467,outbound,61,,trx/CAL-00369.json
|
||||
CAL-00370,INT-001468,inbound,438,rec/CAL-00370.mp3,trx/CAL-00370.json
|
||||
CAL-00371,INT-001469,outbound,277,rec/CAL-00371.mp3,
|
||||
CAL-00372,INT-001472,outbound,62,rec/CAL-00372.mp3,
|
||||
CAL-00373,INT-001479,outbound,159,rec/CAL-00373.mp3,trx/CAL-00373.json
|
||||
CAL-00374,INT-001483,outbound,68,rec/CAL-00374.mp3,trx/CAL-00374.json
|
||||
CAL-00375,INT-001486,outbound,153,rec/CAL-00375.mp3,
|
||||
CAL-00376,INT-001488,inbound,121,rec/CAL-00376.mp3,trx/CAL-00376.json
|
||||
CAL-00377,INT-001490,outbound,690,rec/CAL-00377.mp3,trx/CAL-00377.json
|
||||
CAL-00378,INT-001491,outbound,722,,
|
||||
CAL-00379,INT-001494,inbound,512,rec/CAL-00379.mp3,trx/CAL-00379.json
|
||||
CAL-00380,INT-001498,inbound,259,rec/CAL-00380.mp3,
|
||||
CAL-00381,INT-001503,outbound,287,,trx/CAL-00381.json
|
||||
CAL-00382,INT-001509,outbound,205,rec/CAL-00382.mp3,trx/CAL-00382.json
|
||||
CAL-00383,INT-001513,inbound,137,rec/CAL-00383.mp3,
|
||||
CAL-00384,INT-001515,inbound,461,,trx/CAL-00384.json
|
||||
CAL-00385,INT-001518,inbound,262,rec/CAL-00385.mp3,trx/CAL-00385.json
|
||||
CAL-00386,INT-001522,inbound,238,rec/CAL-00386.mp3,
|
||||
CAL-00387,INT-001524,inbound,233,rec/CAL-00387.mp3,
|
||||
CAL-00388,INT-001529,outbound,574,rec/CAL-00388.mp3,trx/CAL-00388.json
|
||||
CAL-00389,INT-001530,outbound,206,rec/CAL-00389.mp3,trx/CAL-00389.json
|
||||
CAL-00390,INT-001534,outbound,737,,trx/CAL-00390.json
|
||||
CAL-00391,INT-001536,outbound,493,rec/CAL-00391.mp3,trx/CAL-00391.json
|
||||
CAL-00392,INT-001541,inbound,524,rec/CAL-00392.mp3,
|
||||
CAL-00393,INT-001544,outbound,833,,
|
||||
CAL-00394,INT-001546,outbound,634,,
|
||||
CAL-00395,INT-001548,inbound,107,,trx/CAL-00395.json
|
||||
CAL-00396,INT-001552,inbound,710,rec/CAL-00396.mp3,trx/CAL-00396.json
|
||||
CAL-00397,INT-001558,inbound,802,rec/CAL-00397.mp3,
|
||||
CAL-00398,INT-001560,inbound,882,,
|
||||
CAL-00399,INT-001563,outbound,528,rec/CAL-00399.mp3,
|
||||
CAL-00400,INT-001565,outbound,344,rec/CAL-00400.mp3,trx/CAL-00400.json
|
||||
CAL-00401,INT-001567,inbound,815,,trx/CAL-00401.json
|
||||
CAL-00402,INT-001574,inbound,287,rec/CAL-00402.mp3,trx/CAL-00402.json
|
||||
CAL-00403,INT-001578,inbound,230,rec/CAL-00403.mp3,
|
||||
CAL-00404,INT-001583,inbound,602,,trx/CAL-00404.json
|
||||
CAL-00405,INT-001585,inbound,286,rec/CAL-00405.mp3,trx/CAL-00405.json
|
||||
CAL-00406,INT-001594,inbound,726,rec/CAL-00406.mp3,trx/CAL-00406.json
|
||||
CAL-00407,INT-001595,inbound,672,,
|
||||
CAL-00408,INT-001597,outbound,706,rec/CAL-00408.mp3,
|
||||
CAL-00409,INT-001611,inbound,406,,
|
||||
CAL-00410,INT-001612,inbound,734,,trx/CAL-00410.json
|
||||
CAL-00411,INT-001622,outbound,527,,trx/CAL-00411.json
|
||||
CAL-00412,INT-001623,outbound,701,rec/CAL-00412.mp3,trx/CAL-00412.json
|
||||
CAL-00413,INT-001624,outbound,857,rec/CAL-00413.mp3,
|
||||
CAL-00414,INT-001626,inbound,301,rec/CAL-00414.mp3,trx/CAL-00414.json
|
||||
CAL-00415,INT-001629,inbound,294,,
|
||||
CAL-00416,INT-001634,inbound,896,rec/CAL-00416.mp3,trx/CAL-00416.json
|
||||
CAL-00417,INT-001636,outbound,765,,trx/CAL-00417.json
|
||||
CAL-00418,INT-001642,outbound,778,rec/CAL-00418.mp3,
|
||||
CAL-00419,INT-001643,outbound,508,,
|
||||
CAL-00420,INT-001646,outbound,478,rec/CAL-00420.mp3,trx/CAL-00420.json
|
||||
CAL-00421,INT-001649,outbound,884,,
|
||||
CAL-00422,INT-001653,inbound,358,,
|
||||
CAL-00423,INT-001656,outbound,422,rec/CAL-00423.mp3,
|
||||
CAL-00424,INT-001657,inbound,668,rec/CAL-00424.mp3,
|
||||
CAL-00425,INT-001658,inbound,849,,
|
||||
CAL-00426,INT-001659,outbound,528,rec/CAL-00426.mp3,trx/CAL-00426.json
|
||||
CAL-00427,INT-001664,outbound,473,rec/CAL-00427.mp3,
|
||||
CAL-00428,INT-001673,inbound,889,rec/CAL-00428.mp3,
|
||||
CAL-00429,INT-001677,inbound,452,,trx/CAL-00429.json
|
||||
CAL-00430,INT-001678,outbound,271,rec/CAL-00430.mp3,trx/CAL-00430.json
|
||||
CAL-00431,INT-001679,inbound,870,rec/CAL-00431.mp3,
|
||||
CAL-00432,INT-001680,inbound,794,,
|
||||
CAL-00433,INT-001681,inbound,830,rec/CAL-00433.mp3,
|
||||
CAL-00434,INT-001685,outbound,833,rec/CAL-00434.mp3,trx/CAL-00434.json
|
||||
CAL-00435,INT-001691,outbound,507,,
|
||||
CAL-00436,INT-001695,outbound,509,rec/CAL-00436.mp3,trx/CAL-00436.json
|
||||
CAL-00437,INT-001708,outbound,612,rec/CAL-00437.mp3,trx/CAL-00437.json
|
||||
CAL-00438,INT-001720,outbound,667,,
|
||||
CAL-00439,INT-001722,inbound,262,,trx/CAL-00439.json
|
||||
CAL-00440,INT-001729,outbound,468,,trx/CAL-00440.json
|
||||
CAL-00441,INT-001731,outbound,286,rec/CAL-00441.mp3,
|
||||
CAL-00442,INT-001734,outbound,291,rec/CAL-00442.mp3,trx/CAL-00442.json
|
||||
CAL-00443,INT-001741,outbound,389,rec/CAL-00443.mp3,trx/CAL-00443.json
|
||||
CAL-00444,INT-001746,inbound,756,rec/CAL-00444.mp3,
|
||||
CAL-00445,INT-001747,inbound,218,rec/CAL-00445.mp3,trx/CAL-00445.json
|
||||
CAL-00446,INT-001755,outbound,895,rec/CAL-00446.mp3,
|
||||
CAL-00447,INT-001757,inbound,614,rec/CAL-00447.mp3,trx/CAL-00447.json
|
||||
CAL-00448,INT-001759,outbound,61,rec/CAL-00448.mp3,trx/CAL-00448.json
|
||||
CAL-00449,INT-001763,outbound,221,,trx/CAL-00449.json
|
||||
CAL-00450,INT-001770,outbound,276,rec/CAL-00450.mp3,trx/CAL-00450.json
|
||||
CAL-00451,INT-001773,outbound,224,,
|
||||
CAL-00452,INT-001783,outbound,523,rec/CAL-00452.mp3,trx/CAL-00452.json
|
||||
CAL-00453,INT-001786,inbound,279,rec/CAL-00453.mp3,trx/CAL-00453.json
|
||||
CAL-00454,INT-001790,outbound,780,,trx/CAL-00454.json
|
||||
CAL-00455,INT-001792,outbound,554,,trx/CAL-00455.json
|
||||
CAL-00456,INT-001797,inbound,431,,trx/CAL-00456.json
|
||||
CAL-00457,INT-001800,inbound,64,rec/CAL-00457.mp3,
|
||||
CAL-00458,INT-001802,outbound,63,rec/CAL-00458.mp3,trx/CAL-00458.json
|
||||
CAL-00459,INT-001804,outbound,829,rec/CAL-00459.mp3,
|
||||
CAL-00460,INT-001817,outbound,558,,trx/CAL-00460.json
|
||||
CAL-00461,INT-001820,inbound,322,rec/CAL-00461.mp3,trx/CAL-00461.json
|
||||
CAL-00462,INT-001822,outbound,557,,
|
||||
CAL-00463,INT-001824,outbound,344,,
|
||||
CAL-00464,INT-001827,outbound,237,rec/CAL-00464.mp3,
|
||||
CAL-00465,INT-001835,outbound,146,rec/CAL-00465.mp3,trx/CAL-00465.json
|
||||
CAL-00466,INT-001840,outbound,94,rec/CAL-00466.mp3,trx/CAL-00466.json
|
||||
CAL-00467,INT-001842,inbound,145,,
|
||||
CAL-00468,INT-001850,outbound,395,rec/CAL-00468.mp3,trx/CAL-00468.json
|
||||
CAL-00469,INT-001851,inbound,384,rec/CAL-00469.mp3,
|
||||
CAL-00470,INT-001852,inbound,595,,trx/CAL-00470.json
|
||||
CAL-00471,INT-001855,outbound,596,rec/CAL-00471.mp3,trx/CAL-00471.json
|
||||
CAL-00472,INT-001863,outbound,837,rec/CAL-00472.mp3,
|
||||
CAL-00473,INT-001868,inbound,597,,trx/CAL-00473.json
|
||||
CAL-00474,INT-001874,outbound,575,rec/CAL-00474.mp3,trx/CAL-00474.json
|
||||
CAL-00475,INT-001876,inbound,150,rec/CAL-00475.mp3,
|
||||
CAL-00476,INT-001878,outbound,757,rec/CAL-00476.mp3,trx/CAL-00476.json
|
||||
CAL-00477,INT-001884,inbound,537,rec/CAL-00477.mp3,
|
||||
CAL-00478,INT-001893,outbound,762,rec/CAL-00478.mp3,
|
||||
|
121
db assets/synthetic_crm_v1/csv/intel_cctv_links.csv
Normal file
121
db assets/synthetic_crm_v1/csv/intel_cctv_links.csv
Normal file
@@ -0,0 +1,121 @@
|
||||
link_id,visit_id,camera_id,clip_ref,recorded_at,duration_seconds,metadata_json
|
||||
CCTV-0001,VIS-00103,CAM-008,clips/VIS-00103_6551.mp4,2025-08-18T00:00:00,1276,"{""quality"": ""HD"", ""audio"": false}"
|
||||
CCTV-0002,VIS-00222,CAM-018,clips/VIS-00222_6900.mp4,2025-07-17T00:00:00,693,"{""quality"": ""4K"", ""audio"": false}"
|
||||
CCTV-0003,VIS-00303,CAM-020,clips/VIS-00303_5428.mp4,2024-09-06T00:00:00,345,"{""quality"": ""4K"", ""audio"": false}"
|
||||
CCTV-0004,VIS-00232,CAM-015,clips/VIS-00232_3419.mp4,2025-12-03T00:00:00,1260,"{""quality"": ""4K"", ""audio"": false}"
|
||||
CCTV-0005,VIS-00079,CAM-017,clips/VIS-00079_1397.mp4,2025-01-03T00:00:00,1571,"{""quality"": ""HD"", ""audio"": false}"
|
||||
CCTV-0006,VIS-00235,CAM-003,clips/VIS-00235_5865.mp4,2025-10-23T00:00:00,300,"{""quality"": ""HD"", ""audio"": false}"
|
||||
CCTV-0007,VIS-00193,CAM-009,clips/VIS-00193_1860.mp4,2025-09-20T00:00:00,1380,"{""quality"": ""FHD"", ""audio"": true}"
|
||||
CCTV-0008,VIS-00243,CAM-008,clips/VIS-00243_8078.mp4,2024-09-27T00:00:00,525,"{""quality"": ""4K"", ""audio"": false}"
|
||||
CCTV-0009,VIS-00231,CAM-011,clips/VIS-00231_3438.mp4,2025-11-29T00:00:00,854,"{""quality"": ""FHD"", ""audio"": true}"
|
||||
CCTV-0010,VIS-00059,CAM-013,clips/VIS-00059_5791.mp4,2026-02-25T00:00:00,637,"{""quality"": ""4K"", ""audio"": true}"
|
||||
CCTV-0011,VIS-00048,CAM-004,clips/VIS-00048_9475.mp4,2026-03-31T00:00:00,403,"{""quality"": ""4K"", ""audio"": true}"
|
||||
CCTV-0012,VIS-00167,CAM-009,clips/VIS-00167_6220.mp4,2026-03-26T00:00:00,573,"{""quality"": ""HD"", ""audio"": true}"
|
||||
CCTV-0013,VIS-00071,CAM-004,clips/VIS-00071_6974.mp4,2024-03-09T00:00:00,1480,"{""quality"": ""FHD"", ""audio"": false}"
|
||||
CCTV-0014,VIS-00126,CAM-007,clips/VIS-00126_5051.mp4,2026-02-18T00:00:00,1451,"{""quality"": ""HD"", ""audio"": false}"
|
||||
CCTV-0015,VIS-00292,CAM-018,clips/VIS-00292_5135.mp4,2025-01-05T00:00:00,602,"{""quality"": ""FHD"", ""audio"": false}"
|
||||
CCTV-0016,VIS-00304,CAM-002,clips/VIS-00304_2659.mp4,2024-09-10T00:00:00,1256,"{""quality"": ""FHD"", ""audio"": true}"
|
||||
CCTV-0017,VIS-00193,CAM-020,clips/VIS-00193_1849.mp4,2025-09-20T00:00:00,1714,"{""quality"": ""FHD"", ""audio"": true}"
|
||||
CCTV-0018,VIS-00101,CAM-015,clips/VIS-00101_2006.mp4,2025-06-17T00:00:00,1703,"{""quality"": ""HD"", ""audio"": true}"
|
||||
CCTV-0019,VIS-00195,CAM-008,clips/VIS-00195_9565.mp4,2024-03-06T00:00:00,1715,"{""quality"": ""FHD"", ""audio"": false}"
|
||||
CCTV-0020,VIS-00033,CAM-009,clips/VIS-00033_4548.mp4,2024-03-28T00:00:00,1135,"{""quality"": ""FHD"", ""audio"": false}"
|
||||
CCTV-0021,VIS-00095,CAM-019,clips/VIS-00095_7242.mp4,2025-10-03T00:00:00,1760,"{""quality"": ""4K"", ""audio"": true}"
|
||||
CCTV-0022,VIS-00177,CAM-010,clips/VIS-00177_6580.mp4,2026-04-14T00:00:00,668,"{""quality"": ""HD"", ""audio"": true}"
|
||||
CCTV-0023,VIS-00299,CAM-006,clips/VIS-00299_7480.mp4,2025-01-25T00:00:00,1271,"{""quality"": ""HD"", ""audio"": true}"
|
||||
CCTV-0024,VIS-00164,CAM-018,clips/VIS-00164_5501.mp4,2025-05-28T00:00:00,323,"{""quality"": ""FHD"", ""audio"": false}"
|
||||
CCTV-0025,VIS-00213,CAM-002,clips/VIS-00213_9311.mp4,2024-02-13T00:00:00,1646,"{""quality"": ""HD"", ""audio"": true}"
|
||||
CCTV-0026,VIS-00225,CAM-008,clips/VIS-00225_6403.mp4,2025-08-09T00:00:00,871,"{""quality"": ""FHD"", ""audio"": true}"
|
||||
CCTV-0027,VIS-00008,CAM-016,clips/VIS-00008_8539.mp4,2024-07-13T00:00:00,1744,"{""quality"": ""FHD"", ""audio"": true}"
|
||||
CCTV-0028,VIS-00242,CAM-014,clips/VIS-00242_9455.mp4,2024-09-17T00:00:00,1017,"{""quality"": ""FHD"", ""audio"": false}"
|
||||
CCTV-0029,VIS-00133,CAM-020,clips/VIS-00133_3490.mp4,2025-12-16T00:00:00,941,"{""quality"": ""FHD"", ""audio"": true}"
|
||||
CCTV-0030,VIS-00127,CAM-009,clips/VIS-00127_9723.mp4,2026-03-27T00:00:00,1331,"{""quality"": ""FHD"", ""audio"": false}"
|
||||
CCTV-0031,VIS-00158,CAM-014,clips/VIS-00158_9954.mp4,2024-05-18T00:00:00,423,"{""quality"": ""HD"", ""audio"": true}"
|
||||
CCTV-0032,VIS-00091,CAM-001,clips/VIS-00091_8262.mp4,2024-06-16T00:00:00,1164,"{""quality"": ""FHD"", ""audio"": false}"
|
||||
CCTV-0033,VIS-00186,CAM-007,clips/VIS-00186_2128.mp4,2025-02-17T00:00:00,1750,"{""quality"": ""4K"", ""audio"": false}"
|
||||
CCTV-0034,VIS-00192,CAM-020,clips/VIS-00192_6538.mp4,2025-09-09T00:00:00,1458,"{""quality"": ""FHD"", ""audio"": true}"
|
||||
CCTV-0035,VIS-00243,CAM-009,clips/VIS-00243_3091.mp4,2024-09-27T00:00:00,742,"{""quality"": ""HD"", ""audio"": false}"
|
||||
CCTV-0036,VIS-00063,CAM-005,clips/VIS-00063_9941.mp4,2024-06-28T00:00:00,1715,"{""quality"": ""HD"", ""audio"": false}"
|
||||
CCTV-0037,VIS-00122,CAM-016,clips/VIS-00122_1383.mp4,2024-04-04T00:00:00,793,"{""quality"": ""FHD"", ""audio"": false}"
|
||||
CCTV-0038,VIS-00096,CAM-013,clips/VIS-00096_7829.mp4,2025-11-06T00:00:00,1349,"{""quality"": ""FHD"", ""audio"": false}"
|
||||
CCTV-0039,VIS-00183,CAM-008,clips/VIS-00183_2062.mp4,2025-01-03T00:00:00,1083,"{""quality"": ""4K"", ""audio"": true}"
|
||||
CCTV-0040,VIS-00097,CAM-020,clips/VIS-00097_5307.mp4,2025-09-11T00:00:00,1077,"{""quality"": ""4K"", ""audio"": true}"
|
||||
CCTV-0041,VIS-00121,CAM-005,clips/VIS-00121_8935.mp4,2024-03-28T00:00:00,1101,"{""quality"": ""FHD"", ""audio"": true}"
|
||||
CCTV-0042,VIS-00193,CAM-007,clips/VIS-00193_9223.mp4,2025-09-20T00:00:00,875,"{""quality"": ""4K"", ""audio"": true}"
|
||||
CCTV-0043,VIS-00062,CAM-015,clips/VIS-00062_3484.mp4,2024-04-27T00:00:00,604,"{""quality"": ""FHD"", ""audio"": true}"
|
||||
CCTV-0044,VIS-00090,CAM-011,clips/VIS-00090_8879.mp4,2024-06-04T00:00:00,924,"{""quality"": ""4K"", ""audio"": true}"
|
||||
CCTV-0045,VIS-00179,CAM-007,clips/VIS-00179_3942.mp4,2024-09-22T00:00:00,930,"{""quality"": ""FHD"", ""audio"": true}"
|
||||
CCTV-0046,VIS-00194,CAM-008,clips/VIS-00194_9416.mp4,2025-09-24T00:00:00,520,"{""quality"": ""4K"", ""audio"": true}"
|
||||
CCTV-0047,VIS-00270,CAM-011,clips/VIS-00270_6749.mp4,2024-05-04T00:00:00,856,"{""quality"": ""HD"", ""audio"": true}"
|
||||
CCTV-0048,VIS-00201,CAM-001,clips/VIS-00201_5093.mp4,2024-08-17T00:00:00,1549,"{""quality"": ""4K"", ""audio"": false}"
|
||||
CCTV-0049,VIS-00028,CAM-002,clips/VIS-00028_8955.mp4,2025-10-23T00:00:00,1421,"{""quality"": ""4K"", ""audio"": false}"
|
||||
CCTV-0050,VIS-00296,CAM-007,clips/VIS-00296_6548.mp4,2024-07-18T00:00:00,313,"{""quality"": ""FHD"", ""audio"": true}"
|
||||
CCTV-0051,VIS-00250,CAM-015,clips/VIS-00250_3963.mp4,2024-03-25T00:00:00,719,"{""quality"": ""4K"", ""audio"": true}"
|
||||
CCTV-0052,VIS-00017,CAM-015,clips/VIS-00017_6757.mp4,2026-02-27T00:00:00,448,"{""quality"": ""HD"", ""audio"": true}"
|
||||
CCTV-0053,VIS-00154,CAM-018,clips/VIS-00154_8052.mp4,2024-08-28T00:00:00,995,"{""quality"": ""FHD"", ""audio"": false}"
|
||||
CCTV-0054,VIS-00286,CAM-004,clips/VIS-00286_1196.mp4,2025-06-13T00:00:00,798,"{""quality"": ""HD"", ""audio"": true}"
|
||||
CCTV-0055,VIS-00071,CAM-006,clips/VIS-00071_5244.mp4,2024-03-09T00:00:00,306,"{""quality"": ""HD"", ""audio"": false}"
|
||||
CCTV-0056,VIS-00114,CAM-006,clips/VIS-00114_2357.mp4,2024-06-02T00:00:00,953,"{""quality"": ""4K"", ""audio"": false}"
|
||||
CCTV-0057,VIS-00158,CAM-007,clips/VIS-00158_2056.mp4,2024-05-18T00:00:00,592,"{""quality"": ""FHD"", ""audio"": false}"
|
||||
CCTV-0058,VIS-00251,CAM-009,clips/VIS-00251_1154.mp4,2026-02-22T00:00:00,1733,"{""quality"": ""HD"", ""audio"": false}"
|
||||
CCTV-0059,VIS-00004,CAM-010,clips/VIS-00004_4999.mp4,2025-11-25T00:00:00,1218,"{""quality"": ""4K"", ""audio"": true}"
|
||||
CCTV-0060,VIS-00146,CAM-003,clips/VIS-00146_2915.mp4,2024-08-28T00:00:00,1495,"{""quality"": ""FHD"", ""audio"": false}"
|
||||
CCTV-0061,VIS-00115,CAM-014,clips/VIS-00115_1823.mp4,2024-06-11T00:00:00,1144,"{""quality"": ""4K"", ""audio"": true}"
|
||||
CCTV-0062,VIS-00136,CAM-002,clips/VIS-00136_7080.mp4,2024-10-29T00:00:00,462,"{""quality"": ""HD"", ""audio"": true}"
|
||||
CCTV-0063,VIS-00024,CAM-012,clips/VIS-00024_8583.mp4,2024-12-23T00:00:00,681,"{""quality"": ""HD"", ""audio"": false}"
|
||||
CCTV-0064,VIS-00106,CAM-006,clips/VIS-00106_8408.mp4,2025-02-04T00:00:00,1457,"{""quality"": ""HD"", ""audio"": true}"
|
||||
CCTV-0065,VIS-00117,CAM-008,clips/VIS-00117_3020.mp4,2025-09-04T00:00:00,1137,"{""quality"": ""FHD"", ""audio"": true}"
|
||||
CCTV-0066,VIS-00215,CAM-005,clips/VIS-00215_7801.mp4,2024-09-11T00:00:00,1727,"{""quality"": ""4K"", ""audio"": true}"
|
||||
CCTV-0067,VIS-00240,CAM-011,clips/VIS-00240_6042.mp4,2025-02-07T00:00:00,1438,"{""quality"": ""HD"", ""audio"": false}"
|
||||
CCTV-0068,VIS-00151,CAM-005,clips/VIS-00151_5033.mp4,2024-08-14T00:00:00,749,"{""quality"": ""FHD"", ""audio"": true}"
|
||||
CCTV-0069,VIS-00051,CAM-011,clips/VIS-00051_7643.mp4,2024-05-02T00:00:00,400,"{""quality"": ""HD"", ""audio"": true}"
|
||||
CCTV-0070,VIS-00087,CAM-010,clips/VIS-00087_9122.mp4,2024-07-06T00:00:00,927,"{""quality"": ""FHD"", ""audio"": false}"
|
||||
CCTV-0071,VIS-00291,CAM-005,clips/VIS-00291_9090.mp4,2025-11-22T00:00:00,475,"{""quality"": ""4K"", ""audio"": false}"
|
||||
CCTV-0072,VIS-00182,CAM-003,clips/VIS-00182_4767.mp4,2024-12-04T00:00:00,1256,"{""quality"": ""HD"", ""audio"": true}"
|
||||
CCTV-0073,VIS-00180,CAM-019,clips/VIS-00180_8401.mp4,2024-10-12T00:00:00,1527,"{""quality"": ""FHD"", ""audio"": true}"
|
||||
CCTV-0074,VIS-00287,CAM-016,clips/VIS-00287_9293.mp4,2025-07-17T00:00:00,1598,"{""quality"": ""FHD"", ""audio"": true}"
|
||||
CCTV-0075,VIS-00235,CAM-017,clips/VIS-00235_7848.mp4,2025-10-23T00:00:00,1265,"{""quality"": ""4K"", ""audio"": true}"
|
||||
CCTV-0076,VIS-00111,CAM-014,clips/VIS-00111_4607.mp4,2024-11-29T00:00:00,1469,"{""quality"": ""FHD"", ""audio"": false}"
|
||||
CCTV-0077,VIS-00252,CAM-006,clips/VIS-00252_1488.mp4,2026-03-12T00:00:00,568,"{""quality"": ""HD"", ""audio"": true}"
|
||||
CCTV-0078,VIS-00163,CAM-006,clips/VIS-00163_2987.mp4,2025-04-06T00:00:00,426,"{""quality"": ""FHD"", ""audio"": true}"
|
||||
CCTV-0079,VIS-00061,CAM-009,clips/VIS-00061_7838.mp4,2024-04-22T00:00:00,1383,"{""quality"": ""4K"", ""audio"": true}"
|
||||
CCTV-0080,VIS-00125,CAM-018,clips/VIS-00125_4721.mp4,2024-04-25T00:00:00,799,"{""quality"": ""HD"", ""audio"": true}"
|
||||
CCTV-0081,VIS-00269,CAM-014,clips/VIS-00269_4258.mp4,2024-03-14T00:00:00,1703,"{""quality"": ""4K"", ""audio"": false}"
|
||||
CCTV-0082,VIS-00295,CAM-005,clips/VIS-00295_4525.mp4,2025-02-13T00:00:00,962,"{""quality"": ""4K"", ""audio"": true}"
|
||||
CCTV-0083,VIS-00143,CAM-020,clips/VIS-00143_4224.mp4,2024-12-28T00:00:00,1298,"{""quality"": ""4K"", ""audio"": true}"
|
||||
CCTV-0084,VIS-00023,CAM-009,clips/VIS-00023_2629.mp4,2025-07-01T00:00:00,1251,"{""quality"": ""FHD"", ""audio"": true}"
|
||||
CCTV-0085,VIS-00285,CAM-011,clips/VIS-00285_2723.mp4,2026-02-12T00:00:00,313,"{""quality"": ""HD"", ""audio"": true}"
|
||||
CCTV-0086,VIS-00037,CAM-014,clips/VIS-00037_5495.mp4,2024-03-28T00:00:00,385,"{""quality"": ""4K"", ""audio"": false}"
|
||||
CCTV-0087,VIS-00014,CAM-008,clips/VIS-00014_8670.mp4,2025-04-08T00:00:00,1646,"{""quality"": ""FHD"", ""audio"": true}"
|
||||
CCTV-0088,VIS-00060,CAM-004,clips/VIS-00060_9655.mp4,2025-11-23T00:00:00,1438,"{""quality"": ""HD"", ""audio"": false}"
|
||||
CCTV-0089,VIS-00019,CAM-009,clips/VIS-00019_5007.mp4,2024-06-16T00:00:00,1331,"{""quality"": ""4K"", ""audio"": true}"
|
||||
CCTV-0090,VIS-00056,CAM-010,clips/VIS-00056_9397.mp4,2025-11-28T00:00:00,601,"{""quality"": ""HD"", ""audio"": true}"
|
||||
CCTV-0091,VIS-00087,CAM-001,clips/VIS-00087_7156.mp4,2024-07-06T00:00:00,600,"{""quality"": ""FHD"", ""audio"": false}"
|
||||
CCTV-0092,VIS-00033,CAM-017,clips/VIS-00033_6173.mp4,2024-03-28T00:00:00,342,"{""quality"": ""HD"", ""audio"": false}"
|
||||
CCTV-0093,VIS-00215,CAM-010,clips/VIS-00215_2295.mp4,2024-09-11T00:00:00,996,"{""quality"": ""HD"", ""audio"": false}"
|
||||
CCTV-0094,VIS-00254,CAM-011,clips/VIS-00254_7321.mp4,2024-08-24T00:00:00,1379,"{""quality"": ""HD"", ""audio"": true}"
|
||||
CCTV-0095,VIS-00118,CAM-009,clips/VIS-00118_4639.mp4,2025-09-16T00:00:00,457,"{""quality"": ""FHD"", ""audio"": true}"
|
||||
CCTV-0096,VIS-00095,CAM-020,clips/VIS-00095_4640.mp4,2025-10-03T00:00:00,492,"{""quality"": ""FHD"", ""audio"": true}"
|
||||
CCTV-0097,VIS-00069,CAM-017,clips/VIS-00069_3534.mp4,2024-04-07T00:00:00,620,"{""quality"": ""HD"", ""audio"": false}"
|
||||
CCTV-0098,VIS-00206,CAM-008,clips/VIS-00206_5543.mp4,2024-10-09T00:00:00,1756,"{""quality"": ""FHD"", ""audio"": true}"
|
||||
CCTV-0099,VIS-00220,CAM-006,clips/VIS-00220_5425.mp4,2026-02-09T00:00:00,1210,"{""quality"": ""HD"", ""audio"": true}"
|
||||
CCTV-0100,VIS-00293,CAM-004,clips/VIS-00293_7891.mp4,2025-01-05T00:00:00,950,"{""quality"": ""HD"", ""audio"": false}"
|
||||
CCTV-0101,VIS-00227,CAM-007,clips/VIS-00227_1089.mp4,2024-05-14T00:00:00,1414,"{""quality"": ""FHD"", ""audio"": true}"
|
||||
CCTV-0102,VIS-00130,CAM-001,clips/VIS-00130_4829.mp4,2025-05-04T00:00:00,1111,"{""quality"": ""FHD"", ""audio"": true}"
|
||||
CCTV-0103,VIS-00007,CAM-006,clips/VIS-00007_6817.mp4,2024-06-22T00:00:00,1655,"{""quality"": ""FHD"", ""audio"": true}"
|
||||
CCTV-0104,VIS-00221,CAM-009,clips/VIS-00221_7254.mp4,2025-06-21T00:00:00,1670,"{""quality"": ""FHD"", ""audio"": false}"
|
||||
CCTV-0105,VIS-00188,CAM-003,clips/VIS-00188_9060.mp4,2025-12-27T00:00:00,598,"{""quality"": ""FHD"", ""audio"": false}"
|
||||
CCTV-0106,VIS-00161,CAM-008,clips/VIS-00161_3572.mp4,2024-06-14T00:00:00,1483,"{""quality"": ""HD"", ""audio"": true}"
|
||||
CCTV-0107,VIS-00105,CAM-013,clips/VIS-00105_6316.mp4,2025-02-03T00:00:00,980,"{""quality"": ""FHD"", ""audio"": false}"
|
||||
CCTV-0108,VIS-00133,CAM-004,clips/VIS-00133_5266.mp4,2025-12-16T00:00:00,1501,"{""quality"": ""HD"", ""audio"": true}"
|
||||
CCTV-0109,VIS-00016,CAM-003,clips/VIS-00016_7030.mp4,2026-02-14T00:00:00,1563,"{""quality"": ""HD"", ""audio"": true}"
|
||||
CCTV-0110,VIS-00287,CAM-006,clips/VIS-00287_5161.mp4,2025-07-17T00:00:00,325,"{""quality"": ""HD"", ""audio"": true}"
|
||||
CCTV-0111,VIS-00300,CAM-006,clips/VIS-00300_3263.mp4,2026-01-20T00:00:00,1678,"{""quality"": ""4K"", ""audio"": true}"
|
||||
CCTV-0112,VIS-00159,CAM-007,clips/VIS-00159_7327.mp4,2024-05-30T00:00:00,856,"{""quality"": ""FHD"", ""audio"": false}"
|
||||
CCTV-0113,VIS-00197,CAM-014,clips/VIS-00197_4283.mp4,2026-01-21T00:00:00,347,"{""quality"": ""4K"", ""audio"": true}"
|
||||
CCTV-0114,VIS-00194,CAM-014,clips/VIS-00194_6125.mp4,2025-09-24T00:00:00,1425,"{""quality"": ""HD"", ""audio"": false}"
|
||||
CCTV-0115,VIS-00139,CAM-001,clips/VIS-00139_7411.mp4,2025-05-09T00:00:00,1132,"{""quality"": ""FHD"", ""audio"": false}"
|
||||
CCTV-0116,VIS-00209,CAM-012,clips/VIS-00209_2091.mp4,2024-08-02T00:00:00,978,"{""quality"": ""FHD"", ""audio"": true}"
|
||||
CCTV-0117,VIS-00249,CAM-019,clips/VIS-00249_3493.mp4,2025-09-21T00:00:00,1722,"{""quality"": ""HD"", ""audio"": true}"
|
||||
CCTV-0118,VIS-00007,CAM-005,clips/VIS-00007_9613.mp4,2024-06-22T00:00:00,1330,"{""quality"": ""HD"", ""audio"": false}"
|
||||
CCTV-0119,VIS-00296,CAM-005,clips/VIS-00296_9787.mp4,2024-07-18T00:00:00,846,"{""quality"": ""FHD"", ""audio"": false}"
|
||||
CCTV-0120,VIS-00168,CAM-002,clips/VIS-00168_8787.mp4,2024-10-18T00:00:00,935,"{""quality"": ""4K"", ""audio"": true}"
|
||||
|
1617
db assets/synthetic_crm_v1/csv/intel_emails.csv
Normal file
1617
db assets/synthetic_crm_v1/csv/intel_emails.csv
Normal file
File diff suppressed because it is too large
Load Diff
1898
db assets/synthetic_crm_v1/csv/intel_interactions.csv
Normal file
1898
db assets/synthetic_crm_v1/csv/intel_interactions.csv
Normal file
File diff suppressed because it is too large
Load Diff
3368
db assets/synthetic_crm_v1/csv/intel_messages.csv
Normal file
3368
db assets/synthetic_crm_v1/csv/intel_messages.csv
Normal file
File diff suppressed because it is too large
Load Diff
61
db assets/synthetic_crm_v1/csv/intel_perception_events.csv
Normal file
61
db assets/synthetic_crm_v1/csv/intel_perception_events.csv
Normal file
@@ -0,0 +1,61 @@
|
||||
event_id,person_id,session_id,event_type,detected_at,value,unit,metadata_json
|
||||
PERC-0001,PER-0030-CO,SES-8885,repeat_pattern,2025-09-06T00:00:00,163.1,minutes,"{""zone"": ""parking"", ""companion_count"": 0}"
|
||||
PERC-0002,PER-0095-CO,SES-4533,interest_zone,2025-07-05T00:00:00,238.6,seconds,"{""zone"": ""parking"", ""companion_count"": 0}"
|
||||
PERC-0003,PER-0162,SES-2553,interest_zone,2025-09-22T00:00:00,209.1,minutes,"{""zone"": ""parking"", ""companion_count"": 2}"
|
||||
PERC-0004,PER-0116,SES-5500,repeat_pattern,2025-04-03T00:00:00,279.2,minutes,"{""zone"": ""sample_flat"", ""companion_count"": 3}"
|
||||
PERC-0005,PER-0002,SES-5318,dwell_time,2026-04-01T00:00:00,139.7,count,"{""zone"": ""amenity_area"", ""companion_count"": 4}"
|
||||
PERC-0006,PER-0112,SES-2373,interest_zone,2024-04-20T00:00:00,22.0,minutes,"{""zone"": ""amenity_area"", ""companion_count"": 1}"
|
||||
PERC-0007,PER-0014,SES-9164,repeat_pattern,2024-02-26T00:00:00,291.9,minutes,"{""zone"": ""amenity_area"", ""companion_count"": 3}"
|
||||
PERC-0008,PER-0150,SES-5118,repeat_pattern,2024-10-13T00:00:00,240.3,seconds,"{""zone"": ""sample_flat"", ""companion_count"": 4}"
|
||||
PERC-0009,PER-0171,SES-1920,interest_zone,2025-06-24T00:00:00,246.0,minutes,"{""zone"": ""amenity_area"", ""companion_count"": 0}"
|
||||
PERC-0010,PER-0104,SES-3508,repeat_pattern,2025-04-06T00:00:00,63.8,count,"{""zone"": ""sample_flat"", ""companion_count"": 3}"
|
||||
PERC-0011,PER-0017,SES-4671,interest_zone,2025-04-05T00:00:00,19.4,count,"{""zone"": ""lobby"", ""companion_count"": 4}"
|
||||
PERC-0012,PER-0090,SES-6714,dwell_time,2024-03-12T00:00:00,73.3,count,"{""zone"": ""parking"", ""companion_count"": 0}"
|
||||
PERC-0013,PER-0090-CO,SES-4022,interest_zone,2024-06-08T00:00:00,137.6,minutes,"{""zone"": ""lobby"", ""companion_count"": 2}"
|
||||
PERC-0014,PER-0129,SES-5169,interest_zone,2024-12-21T00:00:00,212.4,seconds,"{""zone"": ""parking"", ""companion_count"": 3}"
|
||||
PERC-0015,PER-0007,SES-5849,interest_zone,2024-06-10T00:00:00,79.2,count,"{""zone"": ""amenity_area"", ""companion_count"": 4}"
|
||||
PERC-0016,PER-0016,SES-4536,dwell_time,2025-12-16T00:00:00,229.4,seconds,"{""zone"": ""parking"", ""companion_count"": 3}"
|
||||
PERC-0017,PER-0106,SES-6745,companion_detected,2024-01-27T00:00:00,67.9,seconds,"{""zone"": ""parking"", ""companion_count"": 3}"
|
||||
PERC-0018,PER-0154-CO,SES-2921,dwell_time,2024-10-01T00:00:00,249.7,minutes,"{""zone"": ""amenity_area"", ""companion_count"": 1}"
|
||||
PERC-0019,PER-0127,SES-7584,interest_zone,2025-10-15T00:00:00,234.6,count,"{""zone"": ""amenity_area"", ""companion_count"": 4}"
|
||||
PERC-0020,PER-0098-CO,SES-2738,companion_detected,2024-07-13T00:00:00,43.6,count,"{""zone"": ""parking"", ""companion_count"": 2}"
|
||||
PERC-0021,PER-0034-CO,SES-3209,companion_detected,2025-03-18T00:00:00,94.3,count,"{""zone"": ""amenity_area"", ""companion_count"": 3}"
|
||||
PERC-0022,PER-0154,SES-6196,dwell_time,2025-08-27T00:00:00,54.4,seconds,"{""zone"": ""sales_office"", ""companion_count"": 2}"
|
||||
PERC-0023,PER-0093,SES-9845,companion_detected,2025-09-06T00:00:00,53.1,count,"{""zone"": ""amenity_area"", ""companion_count"": 1}"
|
||||
PERC-0024,PER-0089,SES-1819,dwell_time,2024-08-17T00:00:00,189.8,seconds,"{""zone"": ""sales_office"", ""companion_count"": 0}"
|
||||
PERC-0025,PER-0119-CO,SES-1679,interest_zone,2025-06-08T00:00:00,33.8,seconds,"{""zone"": ""lobby"", ""companion_count"": 3}"
|
||||
PERC-0026,PER-0145,SES-1549,repeat_pattern,2024-01-21T00:00:00,94.0,minutes,"{""zone"": ""parking"", ""companion_count"": 3}"
|
||||
PERC-0027,PER-0023,SES-4771,companion_detected,2024-11-02T00:00:00,158.0,minutes,"{""zone"": ""sample_flat"", ""companion_count"": 0}"
|
||||
PERC-0028,PER-0087-CO,SES-8584,dwell_time,2024-05-11T00:00:00,23.5,seconds,"{""zone"": ""parking"", ""companion_count"": 3}"
|
||||
PERC-0029,PER-0108-CO,SES-1920,dwell_time,2025-03-02T00:00:00,206.9,seconds,"{""zone"": ""sales_office"", ""companion_count"": 1}"
|
||||
PERC-0030,PER-0063,SES-6169,dwell_time,2024-02-23T00:00:00,250.9,minutes,"{""zone"": ""sales_office"", ""companion_count"": 0}"
|
||||
PERC-0031,PER-0078,SES-7481,companion_detected,2025-03-20T00:00:00,152.1,count,"{""zone"": ""amenity_area"", ""companion_count"": 0}"
|
||||
PERC-0032,PER-0094-CO,SES-7593,companion_detected,2024-02-22T00:00:00,127.5,count,"{""zone"": ""amenity_area"", ""companion_count"": 4}"
|
||||
PERC-0033,PER-0097,SES-9578,repeat_pattern,2026-03-16T00:00:00,193.2,minutes,"{""zone"": ""amenity_area"", ""companion_count"": 1}"
|
||||
PERC-0034,PER-0062,SES-5700,repeat_pattern,2024-02-29T00:00:00,271.4,count,"{""zone"": ""parking"", ""companion_count"": 4}"
|
||||
PERC-0035,PER-0117-CO,SES-9374,companion_detected,2024-10-25T00:00:00,257.1,seconds,"{""zone"": ""parking"", ""companion_count"": 3}"
|
||||
PERC-0036,PER-0103-CO,SES-5799,repeat_pattern,2024-04-19T00:00:00,59.9,minutes,"{""zone"": ""sample_flat"", ""companion_count"": 3}"
|
||||
PERC-0037,PER-0084-CO,SES-7808,companion_detected,2025-03-31T00:00:00,282.8,seconds,"{""zone"": ""lobby"", ""companion_count"": 2}"
|
||||
PERC-0038,PER-0151,SES-7043,interest_zone,2024-11-19T00:00:00,253.0,seconds,"{""zone"": ""sales_office"", ""companion_count"": 4}"
|
||||
PERC-0039,PER-0076,SES-4486,interest_zone,2024-03-31T00:00:00,32.8,minutes,"{""zone"": ""parking"", ""companion_count"": 0}"
|
||||
PERC-0040,PER-0084,SES-7756,repeat_pattern,2024-01-25T00:00:00,255.8,minutes,"{""zone"": ""sample_flat"", ""companion_count"": 2}"
|
||||
PERC-0041,PER-0024,SES-6338,repeat_pattern,2025-03-02T00:00:00,226.5,count,"{""zone"": ""sales_office"", ""companion_count"": 3}"
|
||||
PERC-0042,PER-0029-CO,SES-2038,dwell_time,2024-10-22T00:00:00,116.5,minutes,"{""zone"": ""parking"", ""companion_count"": 4}"
|
||||
PERC-0043,PER-0170,SES-4007,companion_detected,2025-12-16T00:00:00,78.5,seconds,"{""zone"": ""amenity_area"", ""companion_count"": 1}"
|
||||
PERC-0044,PER-0132,SES-4375,repeat_pattern,2025-09-23T00:00:00,63.6,count,"{""zone"": ""sales_office"", ""companion_count"": 0}"
|
||||
PERC-0045,PER-0087,SES-1269,repeat_pattern,2024-05-18T00:00:00,111.3,seconds,"{""zone"": ""sales_office"", ""companion_count"": 1}"
|
||||
PERC-0046,PER-0093-CO,SES-8800,interest_zone,2024-12-01T00:00:00,164.9,minutes,"{""zone"": ""lobby"", ""companion_count"": 4}"
|
||||
PERC-0047,PER-0149,SES-4012,dwell_time,2024-03-07T00:00:00,191.9,seconds,"{""zone"": ""parking"", ""companion_count"": 2}"
|
||||
PERC-0048,PER-0136,SES-9216,companion_detected,2024-09-21T00:00:00,54.9,seconds,"{""zone"": ""amenity_area"", ""companion_count"": 2}"
|
||||
PERC-0049,PER-0136-CO,SES-8662,dwell_time,2026-04-01T00:00:00,59.4,count,"{""zone"": ""sales_office"", ""companion_count"": 1}"
|
||||
PERC-0050,PER-0053-CO,SES-8736,repeat_pattern,2025-04-10T00:00:00,192.9,seconds,"{""zone"": ""sample_flat"", ""companion_count"": 0}"
|
||||
PERC-0051,PER-0135,SES-1401,companion_detected,2024-04-07T00:00:00,42.8,count,"{""zone"": ""parking"", ""companion_count"": 1}"
|
||||
PERC-0052,PER-0049,SES-8122,repeat_pattern,2024-06-08T00:00:00,187.9,count,"{""zone"": ""sales_office"", ""companion_count"": 2}"
|
||||
PERC-0053,PER-0058-CO,SES-9841,dwell_time,2024-06-21T00:00:00,260.8,seconds,"{""zone"": ""sample_flat"", ""companion_count"": 2}"
|
||||
PERC-0054,PER-0022,SES-3621,interest_zone,2024-11-22T00:00:00,260.6,count,"{""zone"": ""amenity_area"", ""companion_count"": 2}"
|
||||
PERC-0055,PER-0065,SES-8097,interest_zone,2026-04-01T00:00:00,172.0,count,"{""zone"": ""parking"", ""companion_count"": 2}"
|
||||
PERC-0056,PER-0072,SES-7410,dwell_time,2025-04-06T00:00:00,93.6,seconds,"{""zone"": ""sales_office"", ""companion_count"": 4}"
|
||||
PERC-0057,PER-0069,SES-9556,dwell_time,2024-11-20T00:00:00,104.8,minutes,"{""zone"": ""lobby"", ""companion_count"": 1}"
|
||||
PERC-0058,PER-0148,SES-8020,dwell_time,2026-03-24T00:00:00,204.6,minutes,"{""zone"": ""amenity_area"", ""companion_count"": 0}"
|
||||
PERC-0059,PER-0054,SES-1110,repeat_pattern,2024-07-08T00:00:00,87.9,seconds,"{""zone"": ""amenity_area"", ""companion_count"": 4}"
|
||||
PERC-0060,PER-0039,SES-5256,companion_detected,2025-01-18T00:00:00,160.2,count,"{""zone"": ""parking"", ""companion_count"": 1}"
|
||||
|
251
db assets/synthetic_crm_v1/csv/intel_qd_scores.csv
Normal file
251
db assets/synthetic_crm_v1/csv/intel_qd_scores.csv
Normal file
@@ -0,0 +1,251 @@
|
||||
qd_id,person_id,score_type,current_value,computed_at,evidence_refs_json
|
||||
QD-0001,PER-0001,intent,98,2026-04-18T00:00:00,"[""INT-000312"", ""INT-001893"", ""INT-001006""]"
|
||||
QD-0008,PER-0002,engagement,89.6,2026-04-18T00:00:00,"[""INT-000787"", ""INT-000415""]"
|
||||
QD-0018,PER-0002-CO,urgency,66.4,2026-04-18T00:00:00,"[""INT-000578"", ""INT-001299"", ""INT-001311"", ""INT-000435"", ""INT-000768""]"
|
||||
QD-0023,PER-0003,financial_qualification,83.7,2026-04-18T00:00:00,"[""INT-001897"", ""INT-000958"", ""INT-001372"", ""INT-000695"", ""INT-000888""]"
|
||||
QD-0033,PER-0004,intent,98,2026-04-18T00:00:00,"[""INT-000049"", ""INT-001067"", ""INT-000608""]"
|
||||
QD-0045,PER-0005,financial_qualification,98,2026-04-18T00:00:00,"[""INT-000315"", ""INT-000517"", ""INT-000595"", ""INT-000449"", ""INT-000945""]"
|
||||
QD-0052,PER-0006,overall,84.4,2026-04-18T00:00:00,"[""INT-001592"", ""INT-000724"", ""INT-000479"", ""INT-001861"", ""INT-001040""]"
|
||||
QD-0059,PER-0007,engagement,98,2026-04-18T00:00:00,"[""INT-001642"", ""INT-000674"", ""INT-001877"", ""INT-001632"", ""INT-001035""]"
|
||||
QD-0069,PER-0008,engagement,77.1,2026-04-18T00:00:00,"[""INT-001057"", ""INT-000695"", ""INT-001646"", ""INT-001212"", ""INT-000079""]"
|
||||
QD-0077,PER-0008-CO,engagement,30.2,2026-04-18T00:00:00,"[""INT-000299"", ""INT-000807""]"
|
||||
QD-0087,PER-0009,urgency,70.1,2026-04-18T00:00:00,"[""INT-001209"", ""INT-000142"", ""INT-000393"", ""INT-001516""]"
|
||||
QD-0100,PER-0010,engagement,54.4,2026-04-18T00:00:00,"[""INT-000721"", ""INT-000394"", ""INT-000375"", ""INT-000605""]"
|
||||
QD-0108,PER-0011,urgency,84.0,2026-04-18T00:00:00,"[""INT-000002"", ""INT-000566""]"
|
||||
QD-0117,PER-0011-CO,engagement,65.7,2026-04-18T00:00:00,"[""INT-000853"", ""INT-001224"", ""INT-000333""]"
|
||||
QD-0122,PER-0012,overall,95.8,2026-04-18T00:00:00,"[""INT-000484"", ""INT-001040"", ""INT-001607"", ""INT-001447""]"
|
||||
QD-0134,PER-0013,intent,87.3,2026-04-18T00:00:00,"[""INT-001560"", ""INT-000125"", ""INT-000497"", ""INT-000677"", ""INT-000860""]"
|
||||
QD-0146,PER-0013-CO,financial_qualification,65.3,2026-04-18T00:00:00,"[""INT-001065"", ""INT-001095"", ""INT-000482""]"
|
||||
QD-0158,PER-0014,financial_qualification,68.4,2026-04-18T00:00:00,"[""INT-000330"", ""INT-000337"", ""INT-000045""]"
|
||||
QD-0167,PER-0015,urgency,98,2026-04-18T00:00:00,"[""INT-000473"", ""INT-000153""]"
|
||||
QD-0173,PER-0015-CO,intent,35.9,2026-04-18T00:00:00,"[""INT-000036"", ""INT-000667"", ""INT-001415""]"
|
||||
QD-0180,PER-0016,financial_qualification,74.8,2026-04-18T00:00:00,"[""INT-001282"", ""INT-000408"", ""INT-001529"", ""INT-001587""]"
|
||||
QD-0190,PER-0017,engagement,50.1,2026-04-18T00:00:00,"[""INT-001486"", ""INT-001749"", ""INT-000704""]"
|
||||
QD-0196,PER-0017-CO,intent,63.9,2026-04-18T00:00:00,"[""INT-000583"", ""INT-001240""]"
|
||||
QD-0208,PER-0018,urgency,78.1,2026-04-18T00:00:00,"[""INT-001500"", ""INT-001353"", ""INT-001477""]"
|
||||
QD-0220,PER-0019,engagement,68.2,2026-04-18T00:00:00,"[""INT-000212"", ""INT-000070"", ""INT-000584"", ""INT-000354"", ""INT-001594""]"
|
||||
QD-0228,PER-0020,urgency,56.5,2026-04-18T00:00:00,"[""INT-000671"", ""INT-000645"", ""INT-000125"", ""INT-001529"", ""INT-000899""]"
|
||||
QD-0241,PER-0021,engagement,98,2026-04-18T00:00:00,"[""INT-000241"", ""INT-001879"", ""INT-001658"", ""INT-000804"", ""INT-000048""]"
|
||||
QD-0247,PER-0022,urgency,76.6,2026-04-18T00:00:00,"[""INT-000967"", ""INT-000289"", ""INT-001678"", ""INT-000655"", ""INT-001136""]"
|
||||
QD-0252,PER-0022-CO,overall,48.4,2026-04-18T00:00:00,"[""INT-000853"", ""INT-001059""]"
|
||||
QD-0257,PER-0023,engagement,98,2026-04-18T00:00:00,"[""INT-000356"", ""INT-000550""]"
|
||||
QD-0268,PER-0023-CO,engagement,77.0,2026-04-18T00:00:00,"[""INT-000734"", ""INT-000107"", ""INT-000447"", ""INT-001682"", ""INT-000970""]"
|
||||
QD-0278,PER-0024,urgency,98,2026-04-18T00:00:00,"[""INT-001813"", ""INT-001229"", ""INT-001609"", ""INT-000919"", ""INT-000289""]"
|
||||
QD-0283,PER-0025,engagement,89.9,2026-04-18T00:00:00,"[""INT-000245"", ""INT-001296"", ""INT-000710""]"
|
||||
QD-0289,PER-0025-CO,overall,36.1,2026-04-18T00:00:00,"[""INT-000739"", ""INT-001039"", ""INT-001039"", ""INT-000176"", ""INT-001077""]"
|
||||
QD-0297,PER-0026,intent,68.8,2026-04-18T00:00:00,"[""INT-000629"", ""INT-000425"", ""INT-000563"", ""INT-000126""]"
|
||||
QD-0310,PER-0027,financial_qualification,98,2026-04-18T00:00:00,"[""INT-000537"", ""INT-001172"", ""INT-001885""]"
|
||||
QD-0321,PER-0028,urgency,74.5,2026-04-18T00:00:00,"[""INT-000732"", ""INT-001760"", ""INT-000855"", ""INT-000750"", ""INT-001110""]"
|
||||
QD-0326,PER-0028-CO,engagement,52.8,2026-04-18T00:00:00,"[""INT-000327"", ""INT-001687""]"
|
||||
QD-0333,PER-0029,overall,98,2026-04-18T00:00:00,"[""INT-000346"", ""INT-001613""]"
|
||||
QD-0340,PER-0029-CO,intent,77.2,2026-04-18T00:00:00,"[""INT-001678"", ""INT-001246"", ""INT-000590"", ""INT-001239""]"
|
||||
QD-0352,PER-0030,financial_qualification,98,2026-04-18T00:00:00,"[""INT-001703"", ""INT-000356"", ""INT-000558""]"
|
||||
QD-0357,PER-0030-CO,financial_qualification,51.1,2026-04-18T00:00:00,"[""INT-001100"", ""INT-000090""]"
|
||||
QD-0370,PER-0031,financial_qualification,65.9,2026-04-18T00:00:00,"[""INT-000866"", ""INT-000220""]"
|
||||
QD-0378,PER-0032,financial_qualification,92.9,2026-04-18T00:00:00,"[""INT-001260"", ""INT-000042"", ""INT-001547"", ""INT-000230""]"
|
||||
QD-0388,PER-0032-CO,engagement,43.2,2026-04-18T00:00:00,"[""INT-001503"", ""INT-001846""]"
|
||||
QD-0401,PER-0033,intent,98,2026-04-18T00:00:00,"[""INT-001584"", ""INT-001815""]"
|
||||
QD-0408,PER-0034,intent,76.9,2026-04-18T00:00:00,"[""INT-000592"", ""INT-001499"", ""INT-001864""]"
|
||||
QD-0417,PER-0034-CO,urgency,81.7,2026-04-18T00:00:00,"[""INT-000553"", ""INT-001578"", ""INT-001506"", ""INT-001217""]"
|
||||
QD-0426,PER-0035,financial_qualification,98,2026-04-18T00:00:00,"[""INT-001846"", ""INT-000157"", ""INT-000220""]"
|
||||
QD-0436,PER-0035-CO,intent,71.9,2026-04-18T00:00:00,"[""INT-000232"", ""INT-001559"", ""INT-001587"", ""INT-000113""]"
|
||||
QD-0445,PER-0036,intent,98,2026-04-18T00:00:00,"[""INT-001653"", ""INT-000582"", ""INT-001114"", ""INT-001106"", ""INT-000835""]"
|
||||
QD-0458,PER-0037,intent,98,2026-04-18T00:00:00,"[""INT-001599"", ""INT-000404"", ""INT-000413"", ""INT-000352""]"
|
||||
QD-0469,PER-0037-CO,overall,52.9,2026-04-18T00:00:00,"[""INT-001695"", ""INT-001082""]"
|
||||
QD-0482,PER-0038,engagement,92.2,2026-04-18T00:00:00,"[""INT-000259"", ""INT-001734""]"
|
||||
QD-0487,PER-0039,financial_qualification,89.6,2026-04-18T00:00:00,"[""INT-001433"", ""INT-000069"", ""INT-001192""]"
|
||||
QD-0499,PER-0040,urgency,98,2026-04-18T00:00:00,"[""INT-001054"", ""INT-000455"", ""INT-000171"", ""INT-001015""]"
|
||||
QD-0507,PER-0040-CO,intent,36.5,2026-04-18T00:00:00,"[""INT-000210"", ""INT-001685""]"
|
||||
QD-0520,PER-0041,urgency,98,2026-04-18T00:00:00,"[""INT-000732"", ""INT-000255"", ""INT-000996""]"
|
||||
QD-0528,PER-0042,engagement,98,2026-04-18T00:00:00,"[""INT-000598"", ""INT-001522"", ""INT-001146"", ""INT-000708"", ""INT-000228""]"
|
||||
QD-0540,PER-0043,overall,97.2,2026-04-18T00:00:00,"[""INT-000499"", ""INT-000604"", ""INT-000604"", ""INT-001662"", ""INT-000927""]"
|
||||
QD-0547,PER-0043-CO,engagement,82.5,2026-04-18T00:00:00,"[""INT-000325"", ""INT-000137"", ""INT-001343"", ""INT-001009""]"
|
||||
QD-0557,PER-0044,overall,98,2026-04-18T00:00:00,"[""INT-001753"", ""INT-001168""]"
|
||||
QD-0567,PER-0045,financial_qualification,55.3,2026-04-18T00:00:00,"[""INT-000654"", ""INT-001782"", ""INT-001779"", ""INT-000513"", ""INT-001873""]"
|
||||
QD-0575,PER-0046,engagement,98,2026-04-18T00:00:00,"[""INT-000817"", ""INT-000492"", ""INT-001369"", ""INT-000424"", ""INT-001055""]"
|
||||
QD-0582,PER-0047,financial_qualification,98,2026-04-18T00:00:00,"[""INT-000496"", ""INT-000186""]"
|
||||
QD-0594,PER-0048,urgency,98,2026-04-18T00:00:00,"[""INT-001270"", ""INT-001868""]"
|
||||
QD-0604,PER-0049,urgency,90.3,2026-04-18T00:00:00,"[""INT-001605"", ""INT-001046"", ""INT-000196"", ""INT-000830""]"
|
||||
QD-0613,PER-0050,overall,55.7,2026-04-18T00:00:00,"[""INT-001753"", ""INT-000128"", ""INT-000805"", ""INT-000063"", ""INT-000319""]"
|
||||
QD-0626,PER-0051,engagement,98,2026-04-18T00:00:00,"[""INT-000132"", ""INT-000289"", ""INT-001733"", ""INT-000762""]"
|
||||
QD-0637,PER-0051-CO,intent,32.3,2026-04-18T00:00:00,"[""INT-001613"", ""INT-000922"", ""INT-001665""]"
|
||||
QD-0643,PER-0052,urgency,98,2026-04-18T00:00:00,"[""INT-000186"", ""INT-001585"", ""INT-000454""]"
|
||||
QD-0652,PER-0053,overall,62.9,2026-04-18T00:00:00,"[""INT-000528"", ""INT-001785""]"
|
||||
QD-0665,PER-0053-CO,engagement,30.3,2026-04-18T00:00:00,"[""INT-000107"", ""INT-001707"", ""INT-001543""]"
|
||||
QD-0678,PER-0054,intent,92.1,2026-04-18T00:00:00,"[""INT-000872"", ""INT-000741"", ""INT-001811"", ""INT-000759""]"
|
||||
QD-0687,PER-0054-CO,overall,45.3,2026-04-18T00:00:00,"[""INT-001336"", ""INT-001780"", ""INT-000237""]"
|
||||
QD-0697,PER-0055,financial_qualification,85.4,2026-04-18T00:00:00,"[""INT-000823"", ""INT-000659"", ""INT-000736"", ""INT-001369"", ""INT-001843""]"
|
||||
QD-0703,PER-0056,engagement,62.3,2026-04-18T00:00:00,"[""INT-000349"", ""INT-000706"", ""INT-001714"", ""INT-001208"", ""INT-001636""]"
|
||||
QD-0714,PER-0057,overall,53.2,2026-04-18T00:00:00,"[""INT-001471"", ""INT-000700"", ""INT-001724"", ""INT-001377""]"
|
||||
QD-0722,PER-0058,overall,98,2026-04-18T00:00:00,"[""INT-000980"", ""INT-001542"", ""INT-001667"", ""INT-000074""]"
|
||||
QD-0728,PER-0058-CO,intent,44.5,2026-04-18T00:00:00,"[""INT-000747"", ""INT-000918"", ""INT-000718"", ""INT-001828""]"
|
||||
QD-0734,PER-0059,financial_qualification,98,2026-04-18T00:00:00,"[""INT-000707"", ""INT-000416"", ""INT-001602"", ""INT-001248"", ""INT-001679""]"
|
||||
QD-0743,PER-0059-CO,overall,62.1,2026-04-18T00:00:00,"[""INT-000280"", ""INT-000332""]"
|
||||
QD-0752,PER-0060,overall,87.7,2026-04-18T00:00:00,"[""INT-001676"", ""INT-000199"", ""INT-000230"", ""INT-000013""]"
|
||||
QD-0763,PER-0061,engagement,98,2026-04-18T00:00:00,"[""INT-000991"", ""INT-001237"", ""INT-001609""]"
|
||||
QD-0768,PER-0062,intent,98,2026-04-18T00:00:00,"[""INT-000396"", ""INT-000199"", ""INT-000179"", ""INT-000175"", ""INT-001784""]"
|
||||
QD-0778,PER-0062-CO,overall,51.2,2026-04-18T00:00:00,"[""INT-000610"", ""INT-000069"", ""INT-000963"", ""INT-000273"", ""INT-000590""]"
|
||||
QD-0783,PER-0063,engagement,98,2026-04-18T00:00:00,"[""INT-001004"", ""INT-000926"", ""INT-001427""]"
|
||||
QD-0789,PER-0064,financial_qualification,98,2026-04-18T00:00:00,"[""INT-001720"", ""INT-000350"", ""INT-000398""]"
|
||||
QD-0796,PER-0065,financial_qualification,92.2,2026-04-18T00:00:00,"[""INT-001612"", ""INT-001217"", ""INT-000898"", ""INT-001074"", ""INT-000138""]"
|
||||
QD-0803,PER-0066,financial_qualification,98,2026-04-18T00:00:00,"[""INT-001584"", ""INT-001272""]"
|
||||
QD-0808,PER-0067,urgency,98,2026-04-18T00:00:00,"[""INT-001506"", ""INT-000189"", ""INT-001689"", ""INT-000917"", ""INT-001025""]"
|
||||
QD-0813,PER-0068,overall,91.7,2026-04-18T00:00:00,"[""INT-000546"", ""INT-001267"", ""INT-001387"", ""INT-001744""]"
|
||||
QD-0825,PER-0069,financial_qualification,91.6,2026-04-18T00:00:00,"[""INT-001081"", ""INT-001458"", ""INT-000310""]"
|
||||
QD-0837,PER-0070,urgency,89.2,2026-04-18T00:00:00,"[""INT-000821"", ""INT-000893"", ""INT-000532"", ""INT-000985"", ""INT-001083""]"
|
||||
QD-0850,PER-0071,urgency,98,2026-04-18T00:00:00,"[""INT-000661"", ""INT-000045"", ""INT-000687"", ""INT-001512"", ""INT-001719""]"
|
||||
QD-0858,PER-0071-CO,urgency,71.4,2026-04-18T00:00:00,"[""INT-001308"", ""INT-001623"", ""INT-000134"", ""INT-000089"", ""INT-001536""]"
|
||||
QD-0869,PER-0072,engagement,66.7,2026-04-18T00:00:00,"[""INT-001737"", ""INT-000565"", ""INT-001467""]"
|
||||
QD-0878,PER-0072-CO,overall,77.1,2026-04-18T00:00:00,"[""INT-001823"", ""INT-000950""]"
|
||||
QD-0884,PER-0073,urgency,98,2026-04-18T00:00:00,"[""INT-001103"", ""INT-000951"", ""INT-001538"", ""INT-000743"", ""INT-000981""]"
|
||||
QD-0890,PER-0074,financial_qualification,47.0,2026-04-18T00:00:00,"[""INT-001040"", ""INT-001876""]"
|
||||
QD-0897,PER-0075,urgency,98,2026-04-18T00:00:00,"[""INT-000440"", ""INT-001288"", ""INT-000276"", ""INT-001474""]"
|
||||
QD-0903,PER-0076,engagement,89.2,2026-04-18T00:00:00,"[""INT-000141"", ""INT-000144"", ""INT-001708"", ""INT-000158""]"
|
||||
QD-0910,PER-0077,overall,98,2026-04-18T00:00:00,"[""INT-000833"", ""INT-000595"", ""INT-001498"", ""INT-000885"", ""INT-001039""]"
|
||||
QD-0915,PER-0078,intent,92.1,2026-04-18T00:00:00,"[""INT-000567"", ""INT-000193"", ""INT-001776"", ""INT-000414"", ""INT-000996""]"
|
||||
QD-0928,PER-0079,intent,91.8,2026-04-18T00:00:00,"[""INT-000089"", ""INT-001461"", ""INT-001710"", ""INT-001220"", ""INT-000842""]"
|
||||
QD-0936,PER-0079-CO,engagement,32.7,2026-04-18T00:00:00,"[""INT-000956"", ""INT-001729"", ""INT-001402"", ""INT-000672"", ""INT-000916""]"
|
||||
QD-0946,PER-0080,financial_qualification,57.0,2026-04-18T00:00:00,"[""INT-001683"", ""INT-000263"", ""INT-000799""]"
|
||||
QD-0953,PER-0080-CO,engagement,65.9,2026-04-18T00:00:00,"[""INT-001499"", ""INT-000011"", ""INT-000871"", ""INT-000602"", ""INT-000184""]"
|
||||
QD-0966,PER-0081,intent,98,2026-04-18T00:00:00,"[""INT-001005"", ""INT-000768"", ""INT-000121"", ""INT-000880""]"
|
||||
QD-0977,PER-0082,intent,94.1,2026-04-18T00:00:00,"[""INT-001751"", ""INT-001785"", ""INT-001143"", ""INT-000362"", ""INT-000935""]"
|
||||
QD-0987,PER-0083,overall,98,2026-04-18T00:00:00,"[""INT-000860"", ""INT-000015"", ""INT-001184""]"
|
||||
QD-0999,PER-0084,overall,94.9,2026-04-18T00:00:00,"[""INT-000225"", ""INT-000317"", ""INT-000131""]"
|
||||
QD-1005,PER-0084-CO,engagement,50.0,2026-04-18T00:00:00,"[""INT-001785"", ""INT-000280"", ""INT-001023""]"
|
||||
QD-1012,PER-0085,financial_qualification,66.1,2026-04-18T00:00:00,"[""INT-001856"", ""INT-001286""]"
|
||||
QD-1023,PER-0086,financial_qualification,98,2026-04-18T00:00:00,"[""INT-001195"", ""INT-000381"", ""INT-000454"", ""INT-000319""]"
|
||||
QD-1030,PER-0087,intent,69.6,2026-04-18T00:00:00,"[""INT-000974"", ""INT-001323"", ""INT-000607"", ""INT-001589"", ""INT-000370""]"
|
||||
QD-1041,PER-0087-CO,intent,71.0,2026-04-18T00:00:00,"[""INT-001609"", ""INT-001774"", ""INT-001137"", ""INT-000685""]"
|
||||
QD-1047,PER-0088,engagement,98,2026-04-18T00:00:00,"[""INT-000424"", ""INT-001721"", ""INT-001391"", ""INT-000205"", ""INT-001310""]"
|
||||
QD-1054,PER-0089,overall,58.2,2026-04-18T00:00:00,"[""INT-000730"", ""INT-000524""]"
|
||||
QD-1063,PER-0090,intent,60.1,2026-04-18T00:00:00,"[""INT-001425"", ""INT-001848"", ""INT-001154"", ""INT-001854""]"
|
||||
QD-1068,PER-0090-CO,intent,33.1,2026-04-18T00:00:00,"[""INT-001843"", ""INT-000977"", ""INT-000340"", ""INT-000851"", ""INT-001242""]"
|
||||
QD-1078,PER-0091,urgency,98,2026-04-18T00:00:00,"[""INT-001035"", ""INT-001685"", ""INT-001355"", ""INT-000991"", ""INT-000421""]"
|
||||
QD-1083,PER-0091-CO,engagement,61.1,2026-04-18T00:00:00,"[""INT-000974"", ""INT-001685"", ""INT-000290"", ""INT-001138"", ""INT-001701""]"
|
||||
QD-1091,PER-0092,urgency,85.7,2026-04-18T00:00:00,"[""INT-000771"", ""INT-000289"", ""INT-001279""]"
|
||||
QD-1099,PER-0093,financial_qualification,98,2026-04-18T00:00:00,"[""INT-000041"", ""INT-000899"", ""INT-001226""]"
|
||||
QD-1108,PER-0093-CO,engagement,83.0,2026-04-18T00:00:00,"[""INT-000115"", ""INT-000408"", ""INT-001770"", ""INT-000512"", ""INT-000273""]"
|
||||
QD-1118,PER-0094,urgency,98,2026-04-18T00:00:00,"[""INT-001409"", ""INT-001210""]"
|
||||
QD-1130,PER-0094-CO,urgency,54.8,2026-04-18T00:00:00,"[""INT-001270"", ""INT-000251"", ""INT-000965"", ""INT-000870""]"
|
||||
QD-1140,PER-0095,overall,72.7,2026-04-18T00:00:00,"[""INT-001315"", ""INT-001007"", ""INT-001778"", ""INT-000121""]"
|
||||
QD-1149,PER-0095-CO,financial_qualification,33.0,2026-04-18T00:00:00,"[""INT-001284"", ""INT-001018"", ""INT-000136""]"
|
||||
QD-1158,PER-0096,engagement,98,2026-04-18T00:00:00,"[""INT-000825"", ""INT-000493"", ""INT-001830"", ""INT-001385""]"
|
||||
QD-1164,PER-0096-CO,urgency,68.0,2026-04-18T00:00:00,"[""INT-000503"", ""INT-000271"", ""INT-000449""]"
|
||||
QD-1174,PER-0097,engagement,98,2026-04-18T00:00:00,"[""INT-000582"", ""INT-000384""]"
|
||||
QD-1179,PER-0098,urgency,79.6,2026-04-18T00:00:00,"[""INT-001612"", ""INT-000554"", ""INT-000520""]"
|
||||
QD-1185,PER-0098-CO,financial_qualification,42.3,2026-04-18T00:00:00,"[""INT-001458"", ""INT-000780"", ""INT-000904""]"
|
||||
QD-1190,PER-0099,urgency,98,2026-04-18T00:00:00,"[""INT-000248"", ""INT-000765"", ""INT-000767""]"
|
||||
QD-1197,PER-0099-CO,overall,77.6,2026-04-18T00:00:00,"[""INT-000789"", ""INT-000252"", ""INT-000103""]"
|
||||
QD-1202,PER-0100,intent,82.1,2026-04-18T00:00:00,"[""INT-000583"", ""INT-001171"", ""INT-001603""]"
|
||||
QD-1208,PER-0100-CO,financial_qualification,35.9,2026-04-18T00:00:00,"[""INT-000840"", ""INT-000598"", ""INT-001069"", ""INT-001179""]"
|
||||
QD-1217,PER-0101,urgency,80.4,2026-04-18T00:00:00,"[""INT-000229"", ""INT-001651""]"
|
||||
QD-1224,PER-0102,overall,98,2026-04-18T00:00:00,"[""INT-001572"", ""INT-000974"", ""INT-001802"", ""INT-001694"", ""INT-000480""]"
|
||||
QD-1229,PER-0102-CO,overall,55.1,2026-04-18T00:00:00,"[""INT-000469"", ""INT-000170"", ""INT-001171"", ""INT-000042""]"
|
||||
QD-1239,PER-0103,overall,98,2026-04-18T00:00:00,"[""INT-000850"", ""INT-001594"", ""INT-001125""]"
|
||||
QD-1244,PER-0103-CO,engagement,78.1,2026-04-18T00:00:00,"[""INT-001893"", ""INT-001336"", ""INT-000517"", ""INT-001495""]"
|
||||
QD-1250,PER-0104,overall,86.9,2026-04-18T00:00:00,"[""INT-000931"", ""INT-000025"", ""INT-001691"", ""INT-001161""]"
|
||||
QD-1261,PER-0104-CO,intent,73.9,2026-04-18T00:00:00,"[""INT-000408"", ""INT-001285"", ""INT-001815"", ""INT-001220""]"
|
||||
QD-1274,PER-0105,overall,98,2026-04-18T00:00:00,"[""INT-001424"", ""INT-001414"", ""INT-000160"", ""INT-000274"", ""INT-001710""]"
|
||||
QD-1283,PER-0106,overall,98,2026-04-18T00:00:00,"[""INT-000560"", ""INT-000053"", ""INT-001383"", ""INT-000746""]"
|
||||
QD-1291,PER-0107,urgency,98,2026-04-18T00:00:00,"[""INT-000663"", ""INT-001260""]"
|
||||
QD-1297,PER-0107-CO,engagement,33.3,2026-04-18T00:00:00,"[""INT-001087"", ""INT-001870"", ""INT-001283""]"
|
||||
QD-1306,PER-0108,engagement,70.6,2026-04-18T00:00:00,"[""INT-001213"", ""INT-000223"", ""INT-001201"", ""INT-001836""]"
|
||||
QD-1318,PER-0108-CO,urgency,56.0,2026-04-18T00:00:00,"[""INT-000164"", ""INT-001416"", ""INT-001544"", ""INT-001192""]"
|
||||
QD-1330,PER-0109,intent,98,2026-04-18T00:00:00,"[""INT-001717"", ""INT-000962""]"
|
||||
QD-1341,PER-0110,overall,83.9,2026-04-18T00:00:00,"[""INT-000395"", ""INT-001550""]"
|
||||
QD-1349,PER-0111,financial_qualification,53.0,2026-04-18T00:00:00,"[""INT-000608"", ""INT-000048"", ""INT-000124"", ""INT-000674""]"
|
||||
QD-1361,PER-0112,intent,60.6,2026-04-18T00:00:00,"[""INT-001027"", ""INT-000648"", ""INT-000100"", ""INT-000155""]"
|
||||
QD-1372,PER-0113,financial_qualification,98,2026-04-18T00:00:00,"[""INT-000234"", ""INT-001319"", ""INT-001438"", ""INT-001877"", ""INT-001818""]"
|
||||
QD-1385,PER-0114,engagement,98,2026-04-18T00:00:00,"[""INT-001148"", ""INT-000014"", ""INT-000238"", ""INT-000360"", ""INT-000054""]"
|
||||
QD-1393,PER-0115,engagement,98,2026-04-18T00:00:00,"[""INT-000056"", ""INT-000629"", ""INT-001768""]"
|
||||
QD-1406,PER-0115-CO,urgency,39.4,2026-04-18T00:00:00,"[""INT-000667"", ""INT-001654"", ""INT-000917"", ""INT-000725""]"
|
||||
QD-1414,PER-0116,financial_qualification,81.8,2026-04-18T00:00:00,"[""INT-000482"", ""INT-001390"", ""INT-001526""]"
|
||||
QD-1419,PER-0117,engagement,98,2026-04-18T00:00:00,"[""INT-000285"", ""INT-000126"", ""INT-000868"", ""INT-001734""]"
|
||||
QD-1424,PER-0117-CO,financial_qualification,60.2,2026-04-18T00:00:00,"[""INT-001362"", ""INT-001311"", ""INT-000992""]"
|
||||
QD-1432,PER-0118,overall,98,2026-04-18T00:00:00,"[""INT-001235"", ""INT-001809"", ""INT-000182"", ""INT-001191"", ""INT-000170""]"
|
||||
QD-1437,PER-0119,intent,98,2026-04-18T00:00:00,"[""INT-000355"", ""INT-001505""]"
|
||||
QD-1445,PER-0119-CO,overall,34.1,2026-04-18T00:00:00,"[""INT-000303"", ""INT-001209"", ""INT-001333"", ""INT-000454"", ""INT-000148""]"
|
||||
QD-1450,PER-0120,urgency,98,2026-04-18T00:00:00,"[""INT-000200"", ""INT-000991"", ""INT-001672"", ""INT-000549"", ""INT-000991""]"
|
||||
QD-1455,PER-0121,engagement,94.5,2026-04-18T00:00:00,"[""INT-001896"", ""INT-001634"", ""INT-001409""]"
|
||||
QD-1467,PER-0122,engagement,86.5,2026-04-18T00:00:00,"[""INT-000014"", ""INT-000515"", ""INT-000229""]"
|
||||
QD-1477,PER-0122-CO,urgency,84.8,2026-04-18T00:00:00,"[""INT-001734"", ""INT-000077"", ""INT-000353"", ""INT-000876""]"
|
||||
QD-1489,PER-0123,urgency,46.0,2026-04-18T00:00:00,"[""INT-001720"", ""INT-000535""]"
|
||||
QD-1501,PER-0123-CO,engagement,79.6,2026-04-18T00:00:00,"[""INT-001195"", ""INT-000696"", ""INT-001614""]"
|
||||
QD-1508,PER-0124,engagement,57.5,2026-04-18T00:00:00,"[""INT-000362"", ""INT-000033""]"
|
||||
QD-1514,PER-0125,intent,93.8,2026-04-18T00:00:00,"[""INT-001197"", ""INT-001367"", ""INT-001559"", ""INT-000979""]"
|
||||
QD-1527,PER-0126,urgency,63.4,2026-04-18T00:00:00,"[""INT-000186"", ""INT-000338"", ""INT-000985"", ""INT-001620""]"
|
||||
QD-1539,PER-0126-CO,overall,35.5,2026-04-18T00:00:00,"[""INT-000803"", ""INT-000402""]"
|
||||
QD-1550,PER-0127,engagement,98,2026-04-18T00:00:00,"[""INT-001187"", ""INT-000341"", ""INT-000510"", ""INT-000345"", ""INT-001358""]"
|
||||
QD-1563,PER-0128,urgency,65.4,2026-04-18T00:00:00,"[""INT-001497"", ""INT-001061""]"
|
||||
QD-1574,PER-0129,overall,98,2026-04-18T00:00:00,"[""INT-001303"", ""INT-000976"", ""INT-001581"", ""INT-001133""]"
|
||||
QD-1579,PER-0130,overall,89.1,2026-04-18T00:00:00,"[""INT-000074"", ""INT-000815"", ""INT-000298"", ""INT-000750"", ""INT-000010""]"
|
||||
QD-1585,PER-0130-CO,intent,61.5,2026-04-18T00:00:00,"[""INT-001485"", ""INT-000371"", ""INT-000502""]"
|
||||
QD-1593,PER-0131,financial_qualification,98,2026-04-18T00:00:00,"[""INT-001122"", ""INT-001165"", ""INT-000263""]"
|
||||
QD-1601,PER-0132,intent,69.9,2026-04-18T00:00:00,"[""INT-000568"", ""INT-000270"", ""INT-001356"", ""INT-000789"", ""INT-000867""]"
|
||||
QD-1609,PER-0132-CO,urgency,42.0,2026-04-18T00:00:00,"[""INT-001123"", ""INT-001211""]"
|
||||
QD-1619,PER-0133,engagement,83.2,2026-04-18T00:00:00,"[""INT-000640"", ""INT-000598"", ""INT-001873"", ""INT-000466"", ""INT-001237""]"
|
||||
QD-1625,PER-0134,urgency,78.8,2026-04-18T00:00:00,"[""INT-001304"", ""INT-000794"", ""INT-000614""]"
|
||||
QD-1630,PER-0135,financial_qualification,98,2026-04-18T00:00:00,"[""INT-000787"", ""INT-000711""]"
|
||||
QD-1636,PER-0135-CO,overall,84.3,2026-04-18T00:00:00,"[""INT-001123"", ""INT-000856"", ""INT-000798""]"
|
||||
QD-1648,PER-0136,engagement,84.5,2026-04-18T00:00:00,"[""INT-000767"", ""INT-000498""]"
|
||||
QD-1656,PER-0136-CO,engagement,54.7,2026-04-18T00:00:00,"[""INT-001850"", ""INT-000934"", ""INT-000719"", ""INT-001640"", ""INT-000267""]"
|
||||
QD-1666,PER-0137,engagement,84.6,2026-04-18T00:00:00,"[""INT-001611"", ""INT-000811""]"
|
||||
QD-1674,PER-0138,engagement,98,2026-04-18T00:00:00,"[""INT-000640"", ""INT-000395""]"
|
||||
QD-1681,PER-0138-CO,financial_qualification,50.7,2026-04-18T00:00:00,"[""INT-001202"", ""INT-001200""]"
|
||||
QD-1694,PER-0139,engagement,98,2026-04-18T00:00:00,"[""INT-001891"", ""INT-001526"", ""INT-000939"", ""INT-001673""]"
|
||||
QD-1700,PER-0140,intent,98,2026-04-18T00:00:00,"[""INT-001873"", ""INT-001697""]"
|
||||
QD-1707,PER-0141,financial_qualification,84.2,2026-04-18T00:00:00,"[""INT-001524"", ""INT-001815"", ""INT-001886"", ""INT-000117""]"
|
||||
QD-1716,PER-0142,intent,84.9,2026-04-18T00:00:00,"[""INT-001075"", ""INT-001530"", ""INT-000505"", ""INT-001629""]"
|
||||
QD-1726,PER-0143,intent,90.9,2026-04-18T00:00:00,"[""INT-001537"", ""INT-001237"", ""INT-001287""]"
|
||||
QD-1735,PER-0143-CO,urgency,81.4,2026-04-18T00:00:00,"[""INT-001286"", ""INT-000376"", ""INT-001614"", ""INT-001022"", ""INT-000277""]"
|
||||
QD-1745,PER-0144,urgency,72.2,2026-04-18T00:00:00,"[""INT-001179"", ""INT-000530""]"
|
||||
QD-1755,PER-0144-CO,financial_qualification,68.3,2026-04-18T00:00:00,"[""INT-000667"", ""INT-001609""]"
|
||||
QD-1762,PER-0145,engagement,76.6,2026-04-18T00:00:00,"[""INT-001060"", ""INT-001641""]"
|
||||
QD-1772,PER-0145-CO,financial_qualification,66.3,2026-04-18T00:00:00,"[""INT-001896"", ""INT-001550"", ""INT-001696""]"
|
||||
QD-1780,PER-0146,financial_qualification,52.9,2026-04-18T00:00:00,"[""INT-000277"", ""INT-000946""]"
|
||||
QD-1788,PER-0147,overall,91.8,2026-04-18T00:00:00,"[""INT-001119"", ""INT-000017"", ""INT-001696"", ""INT-001477""]"
|
||||
QD-1798,PER-0148,intent,98,2026-04-18T00:00:00,"[""INT-001124"", ""INT-000383""]"
|
||||
QD-1811,PER-0149,financial_qualification,80.3,2026-04-18T00:00:00,"[""INT-001819"", ""INT-000499"", ""INT-000730""]"
|
||||
QD-1822,PER-0150,engagement,82.7,2026-04-18T00:00:00,"[""INT-000290"", ""INT-001524"", ""INT-000040""]"
|
||||
QD-1832,PER-0150-CO,engagement,68.5,2026-04-18T00:00:00,"[""INT-001722"", ""INT-000363""]"
|
||||
QD-1839,PER-0151,overall,59.7,2026-04-18T00:00:00,"[""INT-001606"", ""INT-000460"", ""INT-000025"", ""INT-001582"", ""INT-001271""]"
|
||||
QD-1844,PER-0151-CO,urgency,67.6,2026-04-18T00:00:00,"[""INT-000591"", ""INT-001523"", ""INT-000015"", ""INT-001512""]"
|
||||
QD-1852,PER-0152,engagement,89.4,2026-04-18T00:00:00,"[""INT-000220"", ""INT-001105"", ""INT-000617"", ""INT-000558"", ""INT-000854""]"
|
||||
QD-1864,PER-0152-CO,urgency,49.7,2026-04-18T00:00:00,"[""INT-001800"", ""INT-000060"", ""INT-001571""]"
|
||||
QD-1875,PER-0153,financial_qualification,98,2026-04-18T00:00:00,"[""INT-001038"", ""INT-000019"", ""INT-000846"", ""INT-000839"", ""INT-001012""]"
|
||||
QD-1884,PER-0154,overall,98,2026-04-18T00:00:00,"[""INT-000746"", ""INT-000937"", ""INT-000333"", ""INT-000954"", ""INT-000297""]"
|
||||
QD-1896,PER-0154-CO,intent,34.8,2026-04-18T00:00:00,"[""INT-000880"", ""INT-001834"", ""INT-000410""]"
|
||||
QD-1903,PER-0155,urgency,82.6,2026-04-18T00:00:00,"[""INT-001278"", ""INT-000883""]"
|
||||
QD-1911,PER-0155-CO,urgency,75.4,2026-04-18T00:00:00,"[""INT-001854"", ""INT-000211""]"
|
||||
QD-1922,PER-0156,financial_qualification,94.2,2026-04-18T00:00:00,"[""INT-001452"", ""INT-001067"", ""INT-001876"", ""INT-000322""]"
|
||||
QD-1934,PER-0157,engagement,48.8,2026-04-18T00:00:00,"[""INT-000334"", ""INT-000590"", ""INT-000313"", ""INT-001129""]"
|
||||
QD-1945,PER-0158,financial_qualification,98,2026-04-18T00:00:00,"[""INT-001094"", ""INT-000841"", ""INT-001366"", ""INT-000659"", ""INT-000018""]"
|
||||
QD-1956,PER-0159,financial_qualification,57.9,2026-04-18T00:00:00,"[""INT-001853"", ""INT-001502""]"
|
||||
QD-1964,PER-0160,engagement,92.1,2026-04-18T00:00:00,"[""INT-000188"", ""INT-000859"", ""INT-001114"", ""INT-000086""]"
|
||||
QD-1973,PER-0161,urgency,89.9,2026-04-18T00:00:00,"[""INT-001208"", ""INT-001241"", ""INT-001569""]"
|
||||
QD-1980,PER-0162,intent,98,2026-04-18T00:00:00,"[""INT-000505"", ""INT-001418"", ""INT-000034""]"
|
||||
QD-1991,PER-0163,financial_qualification,91.1,2026-04-18T00:00:00,"[""INT-001494"", ""INT-000497"", ""INT-000719""]"
|
||||
QD-2004,PER-0164,engagement,82.7,2026-04-18T00:00:00,"[""INT-001653"", ""INT-000887"", ""INT-001607""]"
|
||||
QD-2011,PER-0165,urgency,83.8,2026-04-18T00:00:00,"[""INT-001240"", ""INT-001292"", ""INT-001738""]"
|
||||
QD-2016,PER-0165-CO,financial_qualification,83.5,2026-04-18T00:00:00,"[""INT-001554"", ""INT-001704""]"
|
||||
QD-2022,PER-0166,urgency,66.1,2026-04-18T00:00:00,"[""INT-001325"", ""INT-000104""]"
|
||||
QD-2029,PER-0167,engagement,57.6,2026-04-18T00:00:00,"[""INT-000172"", ""INT-001048"", ""INT-000886""]"
|
||||
QD-2040,PER-0168,intent,66.2,2026-04-18T00:00:00,"[""INT-001185"", ""INT-000194"", ""INT-000562""]"
|
||||
QD-2045,PER-0168-CO,intent,55.9,2026-04-18T00:00:00,"[""INT-000332"", ""INT-001254"", ""INT-000754"", ""INT-000494""]"
|
||||
QD-2057,PER-0169,intent,86.7,2026-04-18T00:00:00,"[""INT-001695"", ""INT-000065"", ""INT-000386"", ""INT-001782"", ""INT-001712""]"
|
||||
QD-2063,PER-0170,financial_qualification,98,2026-04-18T00:00:00,"[""INT-001179"", ""INT-001108"", ""INT-001422"", ""INT-000093"", ""INT-001855""]"
|
||||
QD-2076,PER-0171,overall,61.5,2026-04-18T00:00:00,"[""INT-000859"", ""INT-001447""]"
|
||||
QD-2085,PER-0172,overall,90.7,2026-04-18T00:00:00,"[""INT-001379"", ""INT-001545"", ""INT-001042"", ""INT-000813""]"
|
||||
QD-2098,PER-0173,overall,98,2026-04-18T00:00:00,"[""INT-001474"", ""INT-000931"", ""INT-000844"", ""INT-001451"", ""INT-000760""]"
|
||||
QD-2107,PER-0174,financial_qualification,98,2026-04-18T00:00:00,"[""INT-000313"", ""INT-001452"", ""INT-000844"", ""INT-001572"", ""INT-001587""]"
|
||||
QD-2115,PER-0175,intent,95.0,2026-04-18T00:00:00,"[""INT-000183"", ""INT-001313"", ""INT-000504"", ""INT-001888""]"
|
||||
QD-2124,PER-0176,engagement,93.2,2026-04-18T00:00:00,"[""INT-000074"", ""INT-000715"", ""INT-000142""]"
|
||||
QD-2132,PER-0177,overall,69.0,2026-04-18T00:00:00,"[""INT-000812"", ""INT-000597"", ""INT-000293"", ""INT-000475"", ""INT-000811""]"
|
||||
QD-2138,PER-0178,intent,85.8,2026-04-18T00:00:00,"[""INT-000074"", ""INT-000748""]"
|
||||
QD-2147,PER-0179,urgency,98,2026-04-18T00:00:00,"[""INT-001071"", ""INT-001669"", ""INT-000854"", ""INT-001477"", ""INT-000375""]"
|
||||
QD-2158,PER-0180,engagement,98,2026-04-18T00:00:00,"[""INT-000479"", ""INT-000719"", ""INT-001578"", ""INT-000592"", ""INT-000392""]"
|
||||
QD-2166,PER-0181,overall,82.2,2026-04-18T00:00:00,"[""INT-000463"", ""INT-001698"", ""INT-000973""]"
|
||||
QD-2172,PER-0182,financial_qualification,74.2,2026-04-18T00:00:00,"[""INT-000596"", ""INT-000026""]"
|
||||
QD-2179,PER-0183,intent,98,2026-04-18T00:00:00,"[""INT-000648"", ""INT-001108"", ""INT-001329""]"
|
||||
QD-2187,PER-0184,engagement,92.3,2026-04-18T00:00:00,"[""INT-000058"", ""INT-000946"", ""INT-001602"", ""INT-000826""]"
|
||||
QD-2196,PER-0184-CO,overall,78.4,2026-04-18T00:00:00,"[""INT-000948"", ""INT-001275"", ""INT-000396"", ""INT-001258""]"
|
||||
|
1954
db assets/synthetic_crm_v1/csv/intel_qd_timeseries.csv
Normal file
1954
db assets/synthetic_crm_v1/csv/intel_qd_timeseries.csv
Normal file
File diff suppressed because it is too large
Load Diff
760
db assets/synthetic_crm_v1/csv/intel_reminders.csv
Normal file
760
db assets/synthetic_crm_v1/csv/intel_reminders.csv
Normal file
@@ -0,0 +1,760 @@
|
||||
reminder_id,person_id,interaction_id,reminder_text,due_at,status,assigned_to,metadata_json
|
||||
REM-00001,PER-0001,INT-000002,Send revised payment plan,2025-09-26T00:00:00,pending,user_002,"{""priority"": ""medium"", ""auto_generated"": false}"
|
||||
REM-00002,PER-0001,INT-000003,Follow up on DTC Sojon pricing discussion,2025-10-20T00:00:00,overdue,user_002,"{""priority"": ""high"", ""auto_generated"": true}"
|
||||
REM-00003,PER-0001,INT-000009,Follow up on DTC Sojon pricing discussion,2025-11-10T00:00:00,pending,user_002,"{""priority"": ""low"", ""auto_generated"": false}"
|
||||
REM-00004,PER-0001,INT-000011,Update on road widening approval status,2025-11-27T00:00:00,completed,user_002,"{""priority"": ""high"", ""auto_generated"": true}"
|
||||
REM-00005,PER-0002,INT-000016,Send revised payment plan,2025-02-11T00:00:00,completed,user_002,"{""priority"": ""medium"", ""auto_generated"": true}"
|
||||
REM-00006,PER-0002,INT-000018,Send home loan documents checklist,2025-02-15T00:00:00,completed,user_002,"{""priority"": ""high"", ""auto_generated"": true}"
|
||||
REM-00007,PER-0002,INT-000019,Send home loan documents checklist,2025-02-19T00:00:00,overdue,user_002,"{""priority"": ""high"", ""auto_generated"": false}"
|
||||
REM-00008,PER-0003,INT-000021,Send home loan documents checklist,2024-12-07T00:00:00,pending,user_002,"{""priority"": ""low"", ""auto_generated"": true}"
|
||||
REM-00009,PER-0003,INT-000023,Call back regarding east-facing unit availability,2025-03-01T00:00:00,completed,user_002,"{""priority"": ""low"", ""auto_generated"": true}"
|
||||
REM-00010,PER-0004,INT-000024,Follow up on Ambuja Utpaala pricing discussion,2025-04-20T00:00:00,completed,user_001,"{""priority"": ""high"", ""auto_generated"": false}"
|
||||
REM-00011,PER-0004,INT-000025,Schedule family meeting for final decision,2025-05-17T00:00:00,completed,user_001,"{""priority"": ""high"", ""auto_generated"": true}"
|
||||
REM-00012,PER-0004,INT-000028,Follow up on Ambuja Utpaala pricing discussion,2025-05-27T00:00:00,completed,user_001,"{""priority"": ""low"", ""auto_generated"": true}"
|
||||
REM-00013,PER-0004,INT-000030,Send home loan documents checklist,2025-06-03T00:00:00,completed,user_001,"{""priority"": ""low"", ""auto_generated"": false}"
|
||||
REM-00014,PER-0004,INT-000032,Send revised payment plan,2025-07-13T00:00:00,completed,user_001,"{""priority"": ""high"", ""auto_generated"": true}"
|
||||
REM-00015,PER-0005,INT-000034,Send revised payment plan,2024-06-15T00:00:00,completed,user_003,"{""priority"": ""medium"", ""auto_generated"": false}"
|
||||
REM-00016,PER-0005,INT-000036,Send home loan documents checklist,2024-06-27T00:00:00,pending,user_003,"{""priority"": ""medium"", ""auto_generated"": true}"
|
||||
REM-00017,PER-0005,INT-000037,Send home loan documents checklist,2024-07-04T00:00:00,completed,user_003,"{""priority"": ""medium"", ""auto_generated"": true}"
|
||||
REM-00018,PER-0005,INT-000038,Confirm site visit for Saturday,2024-07-05T00:00:00,overdue,user_003,"{""priority"": ""low"", ""auto_generated"": true}"
|
||||
REM-00019,PER-0005,INT-000039,Call back regarding east-facing unit availability,2024-07-15T00:00:00,completed,user_003,"{""priority"": ""low"", ""auto_generated"": true}"
|
||||
REM-00020,PER-0005,INT-000042,Confirm site visit for Saturday,2024-08-06T00:00:00,overdue,user_003,"{""priority"": ""medium"", ""auto_generated"": true}"
|
||||
REM-00021,PER-0006,INT-000047,Send revised payment plan,2024-09-19T00:00:00,completed,user_005,"{""priority"": ""low"", ""auto_generated"": true}"
|
||||
REM-00022,PER-0007,INT-000048,Send home loan documents checklist,2024-08-02T00:00:00,completed,user_002,"{""priority"": ""medium"", ""auto_generated"": true}"
|
||||
REM-00023,PER-0007,INT-000049,Send home loan documents checklist,2024-08-09T00:00:00,pending,user_002,"{""priority"": ""high"", ""auto_generated"": true}"
|
||||
REM-00024,PER-0008,INT-000056,Confirm site visit for Saturday,2025-08-08T00:00:00,pending,user_001,"{""priority"": ""low"", ""auto_generated"": false}"
|
||||
REM-00025,PER-0008,INT-000057,Send revised payment plan,2025-09-17T00:00:00,completed,user_001,"{""priority"": ""low"", ""auto_generated"": false}"
|
||||
REM-00026,PER-0008,INT-000060,Send home loan documents checklist,2025-10-15T00:00:00,pending,user_001,"{""priority"": ""medium"", ""auto_generated"": false}"
|
||||
REM-00027,PER-0008,INT-000061,Send revised payment plan,2025-10-25T00:00:00,completed,user_001,"{""priority"": ""high"", ""auto_generated"": true}"
|
||||
REM-00028,PER-0009,INT-000064,Send revised payment plan,2026-03-31T00:00:00,completed,user_001,"{""priority"": ""high"", ""auto_generated"": true}"
|
||||
REM-00029,PER-0010,INT-000070,Share competitor comparison sheet,2024-05-04T00:00:00,pending,user_005,"{""priority"": ""high"", ""auto_generated"": true}"
|
||||
REM-00030,PER-0010,INT-000071,Update on road widening approval status,2024-05-06T00:00:00,completed,user_005,"{""priority"": ""low"", ""auto_generated"": true}"
|
||||
REM-00031,PER-0010,INT-000072,Schedule family meeting for final decision,2024-06-08T00:00:00,completed,user_005,"{""priority"": ""high"", ""auto_generated"": false}"
|
||||
REM-00032,PER-0013,INT-000084,Confirm site visit for Saturday,2025-03-23T00:00:00,pending,user_004,"{""priority"": ""high"", ""auto_generated"": true}"
|
||||
REM-00033,PER-0013,INT-000085,Call back regarding east-facing unit availability,2025-04-10T00:00:00,overdue,user_004,"{""priority"": ""high"", ""auto_generated"": true}"
|
||||
REM-00034,PER-0014,INT-000091,Confirm site visit for Saturday,2026-01-09T00:00:00,overdue,user_001,"{""priority"": ""high"", ""auto_generated"": true}"
|
||||
REM-00035,PER-0014,INT-000093,Update on road widening approval status,2026-01-19T00:00:00,overdue,user_001,"{""priority"": ""high"", ""auto_generated"": true}"
|
||||
REM-00036,PER-0014,INT-000094,Send home loan documents checklist,2026-02-12T00:00:00,completed,user_001,"{""priority"": ""medium"", ""auto_generated"": false}"
|
||||
REM-00037,PER-0014,INT-000096,Schedule family meeting for final decision,2026-02-22T00:00:00,pending,user_001,"{""priority"": ""high"", ""auto_generated"": false}"
|
||||
REM-00038,PER-0015,INT-000100,Confirm site visit for Saturday,2025-06-03T00:00:00,overdue,user_005,"{""priority"": ""medium"", ""auto_generated"": true}"
|
||||
REM-00039,PER-0016,INT-000106,Confirm site visit for Saturday,2024-06-15T00:00:00,completed,user_004,"{""priority"": ""low"", ""auto_generated"": true}"
|
||||
REM-00040,PER-0016,INT-000107,Update on road widening approval status,2024-06-22T00:00:00,completed,user_004,"{""priority"": ""high"", ""auto_generated"": false}"
|
||||
REM-00041,PER-0017,INT-000108,Call back regarding east-facing unit availability,2026-02-02T00:00:00,completed,user_002,"{""priority"": ""medium"", ""auto_generated"": false}"
|
||||
REM-00042,PER-0017,INT-000109,Update on road widening approval status,2026-02-05T00:00:00,completed,user_002,"{""priority"": ""low"", ""auto_generated"": true}"
|
||||
REM-00043,PER-0017,INT-000110,Send revised payment plan,2026-03-27T00:00:00,completed,user_002,"{""priority"": ""medium"", ""auto_generated"": false}"
|
||||
REM-00044,PER-0018,INT-000112,Confirm site visit for Saturday,2024-12-29T00:00:00,overdue,user_002,"{""priority"": ""low"", ""auto_generated"": false}"
|
||||
REM-00045,PER-0018,INT-000113,Send revised payment plan,2025-01-31T00:00:00,overdue,user_002,"{""priority"": ""low"", ""auto_generated"": false}"
|
||||
REM-00046,PER-0019,INT-000115,Update on road widening approval status,2026-02-04T00:00:00,completed,user_001,"{""priority"": ""low"", ""auto_generated"": true}"
|
||||
REM-00047,PER-0019,INT-000118,Share competitor comparison sheet,2026-02-22T00:00:00,overdue,user_001,"{""priority"": ""medium"", ""auto_generated"": true}"
|
||||
REM-00048,PER-0019,INT-000122,Call back regarding east-facing unit availability,2026-03-27T00:00:00,overdue,user_001,"{""priority"": ""medium"", ""auto_generated"": true}"
|
||||
REM-00049,PER-0020,INT-000124,Share competitor comparison sheet,2024-10-30T00:00:00,completed,user_001,"{""priority"": ""medium"", ""auto_generated"": true}"
|
||||
REM-00050,PER-0021,INT-000130,Follow up on Atri Surya Toron pricing discussion,2024-09-05T00:00:00,completed,user_001,"{""priority"": ""medium"", ""auto_generated"": true}"
|
||||
REM-00051,PER-0021,INT-000132,Update on road widening approval status,2024-09-11T00:00:00,pending,user_001,"{""priority"": ""low"", ""auto_generated"": true}"
|
||||
REM-00052,PER-0022,INT-000137,Confirm site visit for Saturday,2024-07-02T00:00:00,completed,user_002,"{""priority"": ""high"", ""auto_generated"": true}"
|
||||
REM-00053,PER-0023,INT-000142,Share competitor comparison sheet,2025-01-04T00:00:00,completed,user_001,"{""priority"": ""medium"", ""auto_generated"": true}"
|
||||
REM-00054,PER-0024,INT-000148,Confirm site visit for Saturday,2026-01-28T00:00:00,completed,user_002,"{""priority"": ""high"", ""auto_generated"": true}"
|
||||
REM-00055,PER-0024,INT-000149,Share competitor comparison sheet,2026-02-14T00:00:00,completed,user_002,"{""priority"": ""low"", ""auto_generated"": true}"
|
||||
REM-00056,PER-0024,INT-000150,Schedule family meeting for final decision,2026-02-13T00:00:00,pending,user_002,"{""priority"": ""medium"", ""auto_generated"": false}"
|
||||
REM-00057,PER-0024,INT-000151,Send home loan documents checklist,2026-02-14T00:00:00,pending,user_002,"{""priority"": ""medium"", ""auto_generated"": true}"
|
||||
REM-00058,PER-0024,INT-000152,Share competitor comparison sheet,2026-02-15T00:00:00,overdue,user_002,"{""priority"": ""medium"", ""auto_generated"": false}"
|
||||
REM-00059,PER-0024,INT-000153,Schedule family meeting for final decision,2026-02-16T00:00:00,completed,user_002,"{""priority"": ""high"", ""auto_generated"": true}"
|
||||
REM-00060,PER-0024,INT-000155,Follow up on Merlin Avana pricing discussion,2026-03-25T00:00:00,completed,user_002,"{""priority"": ""low"", ""auto_generated"": true}"
|
||||
REM-00061,PER-0025,INT-000156,Share competitor comparison sheet,2024-07-23T00:00:00,completed,user_004,"{""priority"": ""medium"", ""auto_generated"": false}"
|
||||
REM-00062,PER-0025,INT-000157,Confirm site visit for Saturday,2024-08-10T00:00:00,pending,user_004,"{""priority"": ""low"", ""auto_generated"": false}"
|
||||
REM-00063,PER-0026,INT-000164,Send home loan documents checklist,2025-04-23T00:00:00,completed,user_004,"{""priority"": ""high"", ""auto_generated"": false}"
|
||||
REM-00064,PER-0027,INT-000168,Follow up on Atri Aqua pricing discussion,2024-07-15T00:00:00,completed,user_001,"{""priority"": ""high"", ""auto_generated"": false}"
|
||||
REM-00065,PER-0027,INT-000171,Update on road widening approval status,2024-08-09T00:00:00,completed,user_001,"{""priority"": ""low"", ""auto_generated"": true}"
|
||||
REM-00066,PER-0027,INT-000172,Send revised payment plan,2024-08-14T00:00:00,completed,user_001,"{""priority"": ""low"", ""auto_generated"": true}"
|
||||
REM-00067,PER-0027,INT-000173,Call back regarding east-facing unit availability,2024-08-29T00:00:00,pending,user_001,"{""priority"": ""low"", ""auto_generated"": false}"
|
||||
REM-00068,PER-0027,INT-000174,Confirm site visit for Saturday,2024-09-12T00:00:00,completed,user_001,"{""priority"": ""high"", ""auto_generated"": true}"
|
||||
REM-00069,PER-0028,INT-000178,Send home loan documents checklist,2024-09-17T00:00:00,completed,user_003,"{""priority"": ""medium"", ""auto_generated"": true}"
|
||||
REM-00070,PER-0029,INT-000181,Call back regarding east-facing unit availability,2025-05-28T00:00:00,pending,user_003,"{""priority"": ""medium"", ""auto_generated"": false}"
|
||||
REM-00071,PER-0029,INT-000182,Follow up on Atri Surya Toron pricing discussion,2025-06-01T00:00:00,completed,user_003,"{""priority"": ""high"", ""auto_generated"": true}"
|
||||
REM-00072,PER-0029,INT-000185,Send revised payment plan,2025-07-05T00:00:00,pending,user_003,"{""priority"": ""high"", ""auto_generated"": true}"
|
||||
REM-00073,PER-0030,INT-000188,Send revised payment plan,2024-12-11T00:00:00,overdue,user_005,"{""priority"": ""medium"", ""auto_generated"": true}"
|
||||
REM-00074,PER-0030,INT-000192,Update on road widening approval status,2025-01-07T00:00:00,overdue,user_005,"{""priority"": ""medium"", ""auto_generated"": false}"
|
||||
REM-00075,PER-0031,INT-000195,Send revised payment plan,2025-10-23T00:00:00,completed,user_004,"{""priority"": ""low"", ""auto_generated"": true}"
|
||||
REM-00076,PER-0031,INT-000196,Follow up on Merlin Avana pricing discussion,2025-11-22T00:00:00,pending,user_004,"{""priority"": ""medium"", ""auto_generated"": true}"
|
||||
REM-00077,PER-0032,INT-000198,Schedule family meeting for final decision,2024-08-28T00:00:00,completed,user_005,"{""priority"": ""medium"", ""auto_generated"": true}"
|
||||
REM-00078,PER-0032,INT-000199,Call back regarding east-facing unit availability,2024-10-01T00:00:00,completed,user_005,"{""priority"": ""low"", ""auto_generated"": false}"
|
||||
REM-00079,PER-0032,INT-000201,Update on road widening approval status,2024-11-07T00:00:00,pending,user_005,"{""priority"": ""high"", ""auto_generated"": true}"
|
||||
REM-00080,PER-0032,INT-000202,Update on road widening approval status,2024-11-23T00:00:00,completed,user_005,"{""priority"": ""medium"", ""auto_generated"": true}"
|
||||
REM-00081,PER-0033,INT-000203,Schedule family meeting for final decision,2025-03-26T00:00:00,pending,user_004,"{""priority"": ""medium"", ""auto_generated"": true}"
|
||||
REM-00082,PER-0033,INT-000205,Call back regarding east-facing unit availability,2025-04-05T00:00:00,overdue,user_004,"{""priority"": ""medium"", ""auto_generated"": false}"
|
||||
REM-00083,PER-0035,INT-000215,Follow up on Siddha Sky Waterfront pricing discussion,2025-11-26T00:00:00,overdue,user_004,"{""priority"": ""low"", ""auto_generated"": false}"
|
||||
REM-00084,PER-0035,INT-000216,Schedule family meeting for final decision,2025-12-06T00:00:00,completed,user_004,"{""priority"": ""high"", ""auto_generated"": false}"
|
||||
REM-00085,PER-0035,INT-000217,Share competitor comparison sheet,2025-12-26T00:00:00,pending,user_004,"{""priority"": ""low"", ""auto_generated"": true}"
|
||||
REM-00086,PER-0035,INT-000220,Send revised payment plan,2026-02-03T00:00:00,completed,user_004,"{""priority"": ""low"", ""auto_generated"": false}"
|
||||
REM-00087,PER-0035,INT-000221,Call back regarding east-facing unit availability,2026-02-07T00:00:00,completed,user_004,"{""priority"": ""high"", ""auto_generated"": false}"
|
||||
REM-00088,PER-0036,INT-000222,Update on road widening approval status,2025-09-30T00:00:00,completed,user_003,"{""priority"": ""medium"", ""auto_generated"": false}"
|
||||
REM-00089,PER-0036,INT-000224,Confirm site visit for Saturday,2025-10-24T00:00:00,completed,user_003,"{""priority"": ""low"", ""auto_generated"": false}"
|
||||
REM-00090,PER-0036,INT-000225,Share competitor comparison sheet,2025-10-23T00:00:00,completed,user_003,"{""priority"": ""low"", ""auto_generated"": true}"
|
||||
REM-00091,PER-0036,INT-000226,Update on road widening approval status,2025-10-30T00:00:00,pending,user_003,"{""priority"": ""medium"", ""auto_generated"": false}"
|
||||
REM-00092,PER-0036,INT-000231,Follow up on Siddha Serena pricing discussion,2025-12-20T00:00:00,pending,user_003,"{""priority"": ""low"", ""auto_generated"": true}"
|
||||
REM-00093,PER-0037,INT-000233,Call back regarding east-facing unit availability,2024-11-01T00:00:00,pending,user_002,"{""priority"": ""low"", ""auto_generated"": true}"
|
||||
REM-00094,PER-0037,INT-000234,Schedule family meeting for final decision,2024-11-04T00:00:00,completed,user_002,"{""priority"": ""high"", ""auto_generated"": false}"
|
||||
REM-00095,PER-0037,INT-000235,Send home loan documents checklist,2024-11-21T00:00:00,completed,user_002,"{""priority"": ""low"", ""auto_generated"": false}"
|
||||
REM-00096,PER-0037,INT-000237,Schedule family meeting for final decision,2024-12-04T00:00:00,completed,user_002,"{""priority"": ""medium"", ""auto_generated"": true}"
|
||||
REM-00097,PER-0037,INT-000238,Confirm site visit for Saturday,2024-12-04T00:00:00,completed,user_002,"{""priority"": ""high"", ""auto_generated"": true}"
|
||||
REM-00098,PER-0038,INT-000244,Follow up on Siddha Sky Waterfront pricing discussion,2025-12-26T00:00:00,pending,user_004,"{""priority"": ""low"", ""auto_generated"": false}"
|
||||
REM-00099,PER-0038,INT-000245,Share competitor comparison sheet,2026-01-06T00:00:00,completed,user_004,"{""priority"": ""low"", ""auto_generated"": true}"
|
||||
REM-00100,PER-0039,INT-000246,Follow up on Eden Devprayag pricing discussion,2025-08-08T00:00:00,pending,user_002,"{""priority"": ""medium"", ""auto_generated"": true}"
|
||||
REM-00101,PER-0039,INT-000249,Confirm site visit for Saturday,2025-10-15T00:00:00,completed,user_002,"{""priority"": ""medium"", ""auto_generated"": false}"
|
||||
REM-00102,PER-0040,INT-000256,Follow up on Ambuja Utpaala pricing discussion,2024-04-07T00:00:00,pending,user_001,"{""priority"": ""low"", ""auto_generated"": false}"
|
||||
REM-00103,PER-0040,INT-000259,Send revised payment plan,2024-04-19T00:00:00,overdue,user_001,"{""priority"": ""high"", ""auto_generated"": false}"
|
||||
REM-00104,PER-0040,INT-000260,Call back regarding east-facing unit availability,2024-04-25T00:00:00,pending,user_001,"{""priority"": ""high"", ""auto_generated"": true}"
|
||||
REM-00105,PER-0041,INT-000261,Schedule family meeting for final decision,2024-03-06T00:00:00,completed,user_003,"{""priority"": ""high"", ""auto_generated"": false}"
|
||||
REM-00106,PER-0041,INT-000269,Send revised payment plan,2024-04-22T00:00:00,completed,user_003,"{""priority"": ""medium"", ""auto_generated"": true}"
|
||||
REM-00107,PER-0041,INT-000271,Update on road widening approval status,2024-05-04T00:00:00,pending,user_003,"{""priority"": ""medium"", ""auto_generated"": true}"
|
||||
REM-00108,PER-0042,INT-000276,Send home loan documents checklist,2025-10-11T00:00:00,completed,user_004,"{""priority"": ""medium"", ""auto_generated"": false}"
|
||||
REM-00109,PER-0042,INT-000277,Send home loan documents checklist,2025-10-18T00:00:00,completed,user_004,"{""priority"": ""medium"", ""auto_generated"": false}"
|
||||
REM-00110,PER-0043,INT-000278,Follow up on Siddha Sky Waterfront pricing discussion,2024-05-13T00:00:00,overdue,user_002,"{""priority"": ""medium"", ""auto_generated"": true}"
|
||||
REM-00111,PER-0043,INT-000279,Update on road widening approval status,2024-05-24T00:00:00,completed,user_002,"{""priority"": ""high"", ""auto_generated"": false}"
|
||||
REM-00112,PER-0043,INT-000280,Call back regarding east-facing unit availability,2024-05-30T00:00:00,overdue,user_002,"{""priority"": ""medium"", ""auto_generated"": true}"
|
||||
REM-00113,PER-0044,INT-000287,Update on road widening approval status,2024-02-24T00:00:00,completed,user_004,"{""priority"": ""medium"", ""auto_generated"": false}"
|
||||
REM-00114,PER-0044,INT-000288,Confirm site visit for Saturday,2024-02-24T00:00:00,overdue,user_004,"{""priority"": ""medium"", ""auto_generated"": true}"
|
||||
REM-00115,PER-0044,INT-000290,Follow up on Shriram Grand City pricing discussion,2024-03-08T00:00:00,overdue,user_004,"{""priority"": ""high"", ""auto_generated"": true}"
|
||||
REM-00116,PER-0045,INT-000296,Send home loan documents checklist,2025-07-15T00:00:00,completed,user_003,"{""priority"": ""high"", ""auto_generated"": true}"
|
||||
REM-00117,PER-0046,INT-000299,Call back regarding east-facing unit availability,2025-03-22T00:00:00,completed,user_002,"{""priority"": ""low"", ""auto_generated"": true}"
|
||||
REM-00118,PER-0046,INT-000302,Share competitor comparison sheet,2025-04-17T00:00:00,completed,user_002,"{""priority"": ""high"", ""auto_generated"": true}"
|
||||
REM-00119,PER-0046,INT-000308,Confirm site visit for Saturday,2025-05-18T00:00:00,completed,user_002,"{""priority"": ""low"", ""auto_generated"": true}"
|
||||
REM-00120,PER-0047,INT-000311,Update on road widening approval status,2026-03-14T00:00:00,completed,user_001,"{""priority"": ""medium"", ""auto_generated"": false}"
|
||||
REM-00121,PER-0048,INT-000321,Confirm site visit for Saturday,2025-04-02T00:00:00,completed,user_005,"{""priority"": ""low"", ""auto_generated"": true}"
|
||||
REM-00122,PER-0049,INT-000322,Schedule family meeting for final decision,2024-04-21T00:00:00,completed,user_005,"{""priority"": ""low"", ""auto_generated"": false}"
|
||||
REM-00123,PER-0049,INT-000332,Share competitor comparison sheet,2024-07-07T00:00:00,completed,user_005,"{""priority"": ""low"", ""auto_generated"": false}"
|
||||
REM-00124,PER-0050,INT-000335,Call back regarding east-facing unit availability,2026-01-02T00:00:00,completed,user_001,"{""priority"": ""medium"", ""auto_generated"": true}"
|
||||
REM-00125,PER-0050,INT-000336,Send home loan documents checklist,2026-01-14T00:00:00,completed,user_001,"{""priority"": ""medium"", ""auto_generated"": false}"
|
||||
REM-00126,PER-0050,INT-000338,Follow up on DTC Good Earth pricing discussion,2026-03-13T00:00:00,completed,user_001,"{""priority"": ""low"", ""auto_generated"": false}"
|
||||
REM-00127,PER-0051,INT-000339,Share competitor comparison sheet,2025-09-17T00:00:00,completed,user_005,"{""priority"": ""low"", ""auto_generated"": true}"
|
||||
REM-00128,PER-0051,INT-000341,Call back regarding east-facing unit availability,2025-10-07T00:00:00,pending,user_005,"{""priority"": ""medium"", ""auto_generated"": false}"
|
||||
REM-00129,PER-0051,INT-000343,Call back regarding east-facing unit availability,2025-10-25T00:00:00,pending,user_005,"{""priority"": ""medium"", ""auto_generated"": true}"
|
||||
REM-00130,PER-0051,INT-000346,Update on road widening approval status,2025-11-26T00:00:00,completed,user_005,"{""priority"": ""medium"", ""auto_generated"": false}"
|
||||
REM-00131,PER-0051,INT-000347,Send home loan documents checklist,2025-11-23T00:00:00,completed,user_005,"{""priority"": ""low"", ""auto_generated"": false}"
|
||||
REM-00132,PER-0051,INT-000348,Send home loan documents checklist,2025-11-30T00:00:00,completed,user_005,"{""priority"": ""medium"", ""auto_generated"": true}"
|
||||
REM-00133,PER-0051,INT-000351,Follow up on Shriram Grand City pricing discussion,2025-12-15T00:00:00,pending,user_005,"{""priority"": ""medium"", ""auto_generated"": true}"
|
||||
REM-00134,PER-0052,INT-000353,Confirm site visit for Saturday,2025-05-24T00:00:00,pending,user_003,"{""priority"": ""low"", ""auto_generated"": true}"
|
||||
REM-00135,PER-0052,INT-000361,Follow up on DTC Good Earth pricing discussion,2025-07-19T00:00:00,overdue,user_003,"{""priority"": ""high"", ""auto_generated"": false}"
|
||||
REM-00136,PER-0052,INT-000362,Call back regarding east-facing unit availability,2025-07-19T00:00:00,pending,user_003,"{""priority"": ""low"", ""auto_generated"": true}"
|
||||
REM-00137,PER-0052,INT-000364,Confirm site visit for Saturday,2025-07-26T00:00:00,completed,user_003,"{""priority"": ""high"", ""auto_generated"": false}"
|
||||
REM-00138,PER-0053,INT-000369,Send revised payment plan,2026-01-22T00:00:00,overdue,user_003,"{""priority"": ""medium"", ""auto_generated"": false}"
|
||||
REM-00139,PER-0054,INT-000371,Send home loan documents checklist,2025-12-16T00:00:00,completed,user_002,"{""priority"": ""medium"", ""auto_generated"": false}"
|
||||
REM-00140,PER-0054,INT-000372,Call back regarding east-facing unit availability,2026-01-15T00:00:00,pending,user_002,"{""priority"": ""high"", ""auto_generated"": true}"
|
||||
REM-00141,PER-0055,INT-000379,Send home loan documents checklist,2025-10-30T00:00:00,completed,user_004,"{""priority"": ""low"", ""auto_generated"": false}"
|
||||
REM-00142,PER-0055,INT-000380,Send revised payment plan,2025-10-28T00:00:00,pending,user_004,"{""priority"": ""high"", ""auto_generated"": true}"
|
||||
REM-00143,PER-0055,INT-000381,Call back regarding east-facing unit availability,2025-11-23T00:00:00,completed,user_004,"{""priority"": ""high"", ""auto_generated"": true}"
|
||||
REM-00144,PER-0055,INT-000382,Call back regarding east-facing unit availability,2025-11-29T00:00:00,completed,user_004,"{""priority"": ""medium"", ""auto_generated"": false}"
|
||||
REM-00145,PER-0056,INT-000386,Send home loan documents checklist,2025-11-09T00:00:00,completed,user_003,"{""priority"": ""low"", ""auto_generated"": true}"
|
||||
REM-00146,PER-0056,INT-000387,Share competitor comparison sheet,2025-12-02T00:00:00,completed,user_003,"{""priority"": ""medium"", ""auto_generated"": false}"
|
||||
REM-00147,PER-0057,INT-000389,Share competitor comparison sheet,2025-01-20T00:00:00,completed,user_003,"{""priority"": ""medium"", ""auto_generated"": true}"
|
||||
REM-00148,PER-0058,INT-000394,Confirm site visit for Saturday,2024-04-10T00:00:00,overdue,user_003,"{""priority"": ""medium"", ""auto_generated"": true}"
|
||||
REM-00149,PER-0058,INT-000398,Share competitor comparison sheet,2024-05-01T00:00:00,completed,user_003,"{""priority"": ""medium"", ""auto_generated"": true}"
|
||||
REM-00150,PER-0058,INT-000404,Share competitor comparison sheet,2024-07-01T00:00:00,completed,user_003,"{""priority"": ""low"", ""auto_generated"": false}"
|
||||
REM-00151,PER-0058,INT-000405,Follow up on Siddha Sky Waterfront pricing discussion,2024-07-01T00:00:00,completed,user_003,"{""priority"": ""medium"", ""auto_generated"": true}"
|
||||
REM-00152,PER-0059,INT-000406,Send home loan documents checklist,2025-04-02T00:00:00,pending,user_004,"{""priority"": ""medium"", ""auto_generated"": true}"
|
||||
REM-00153,PER-0059,INT-000408,Update on road widening approval status,2025-04-14T00:00:00,completed,user_004,"{""priority"": ""medium"", ""auto_generated"": true}"
|
||||
REM-00154,PER-0059,INT-000410,Send revised payment plan,2025-05-20T00:00:00,completed,user_004,"{""priority"": ""medium"", ""auto_generated"": true}"
|
||||
REM-00155,PER-0059,INT-000414,Update on road widening approval status,2025-06-21T00:00:00,overdue,user_004,"{""priority"": ""high"", ""auto_generated"": true}"
|
||||
REM-00156,PER-0060,INT-000416,Call back regarding east-facing unit availability,2024-01-31T00:00:00,overdue,user_003,"{""priority"": ""low"", ""auto_generated"": true}"
|
||||
REM-00157,PER-0060,INT-000421,Update on road widening approval status,2024-03-01T00:00:00,completed,user_003,"{""priority"": ""high"", ""auto_generated"": false}"
|
||||
REM-00158,PER-0060,INT-000422,Confirm site visit for Saturday,2024-02-29T00:00:00,completed,user_003,"{""priority"": ""high"", ""auto_generated"": false}"
|
||||
REM-00159,PER-0060,INT-000423,Schedule family meeting for final decision,2024-03-08T00:00:00,completed,user_003,"{""priority"": ""high"", ""auto_generated"": false}"
|
||||
REM-00160,PER-0060,INT-000424,Send revised payment plan,2024-04-10T00:00:00,completed,user_003,"{""priority"": ""medium"", ""auto_generated"": true}"
|
||||
REM-00161,PER-0060,INT-000425,Schedule family meeting for final decision,2024-04-11T00:00:00,completed,user_003,"{""priority"": ""medium"", ""auto_generated"": true}"
|
||||
REM-00162,PER-0061,INT-000426,Follow up on Godrej Elevate pricing discussion,2024-02-14T00:00:00,completed,user_004,"{""priority"": ""low"", ""auto_generated"": false}"
|
||||
REM-00163,PER-0061,INT-000427,Schedule family meeting for final decision,2024-02-20T00:00:00,overdue,user_004,"{""priority"": ""low"", ""auto_generated"": false}"
|
||||
REM-00164,PER-0061,INT-000428,Confirm site visit for Saturday,2024-02-28T00:00:00,completed,user_004,"{""priority"": ""medium"", ""auto_generated"": true}"
|
||||
REM-00165,PER-0061,INT-000429,Send revised payment plan,2024-03-06T00:00:00,completed,user_004,"{""priority"": ""low"", ""auto_generated"": true}"
|
||||
REM-00166,PER-0061,INT-000432,Call back regarding east-facing unit availability,2024-03-19T00:00:00,completed,user_004,"{""priority"": ""medium"", ""auto_generated"": true}"
|
||||
REM-00167,PER-0061,INT-000434,Call back regarding east-facing unit availability,2024-03-23T00:00:00,completed,user_004,"{""priority"": ""medium"", ""auto_generated"": false}"
|
||||
REM-00168,PER-0061,INT-000436,Update on road widening approval status,2024-04-24T00:00:00,overdue,user_004,"{""priority"": ""medium"", ""auto_generated"": true}"
|
||||
REM-00169,PER-0061,INT-000437,Follow up on Godrej Elevate pricing discussion,2024-04-26T00:00:00,pending,user_004,"{""priority"": ""high"", ""auto_generated"": false}"
|
||||
REM-00170,PER-0061,INT-000439,Send home loan documents checklist,2024-05-01T00:00:00,overdue,user_004,"{""priority"": ""medium"", ""auto_generated"": false}"
|
||||
REM-00171,PER-0062,INT-000441,Confirm site visit for Saturday,2024-10-19T00:00:00,completed,user_002,"{""priority"": ""medium"", ""auto_generated"": false}"
|
||||
REM-00172,PER-0062,INT-000442,Update on road widening approval status,2024-10-28T00:00:00,overdue,user_002,"{""priority"": ""medium"", ""auto_generated"": true}"
|
||||
REM-00173,PER-0063,INT-000448,Update on road widening approval status,2026-01-30T00:00:00,overdue,user_002,"{""priority"": ""high"", ""auto_generated"": false}"
|
||||
REM-00174,PER-0063,INT-000449,Follow up on Atri Aqua pricing discussion,2026-01-30T00:00:00,completed,user_002,"{""priority"": ""high"", ""auto_generated"": false}"
|
||||
REM-00175,PER-0063,INT-000451,Call back regarding east-facing unit availability,2026-02-15T00:00:00,pending,user_002,"{""priority"": ""medium"", ""auto_generated"": true}"
|
||||
REM-00176,PER-0064,INT-000456,Send home loan documents checklist,2024-09-11T00:00:00,completed,user_002,"{""priority"": ""low"", ""auto_generated"": true}"
|
||||
REM-00177,PER-0064,INT-000458,Send home loan documents checklist,2024-09-18T00:00:00,overdue,user_002,"{""priority"": ""low"", ""auto_generated"": true}"
|
||||
REM-00178,PER-0064,INT-000459,Follow up on Shriram Grand City pricing discussion,2024-09-28T00:00:00,completed,user_002,"{""priority"": ""medium"", ""auto_generated"": true}"
|
||||
REM-00179,PER-0064,INT-000461,Send revised payment plan,2024-10-22T00:00:00,overdue,user_002,"{""priority"": ""high"", ""auto_generated"": false}"
|
||||
REM-00180,PER-0064,INT-000463,Send revised payment plan,2024-11-20T00:00:00,completed,user_002,"{""priority"": ""medium"", ""auto_generated"": true}"
|
||||
REM-00181,PER-0064,INT-000464,Schedule family meeting for final decision,2024-11-20T00:00:00,completed,user_002,"{""priority"": ""low"", ""auto_generated"": true}"
|
||||
REM-00182,PER-0064,INT-000466,Send home loan documents checklist,2024-11-24T00:00:00,completed,user_002,"{""priority"": ""medium"", ""auto_generated"": false}"
|
||||
REM-00183,PER-0065,INT-000474,Confirm site visit for Saturday,2026-01-23T00:00:00,completed,user_005,"{""priority"": ""low"", ""auto_generated"": false}"
|
||||
REM-00184,PER-0065,INT-000476,Send revised payment plan,2026-02-25T00:00:00,completed,user_005,"{""priority"": ""low"", ""auto_generated"": true}"
|
||||
REM-00185,PER-0066,INT-000481,Send home loan documents checklist,2025-10-20T00:00:00,pending,user_003,"{""priority"": ""low"", ""auto_generated"": false}"
|
||||
REM-00186,PER-0067,INT-000482,Send revised payment plan,2025-04-10T00:00:00,completed,user_002,"{""priority"": ""low"", ""auto_generated"": false}"
|
||||
REM-00187,PER-0067,INT-000483,Send home loan documents checklist,2025-04-14T00:00:00,pending,user_002,"{""priority"": ""medium"", ""auto_generated"": true}"
|
||||
REM-00188,PER-0067,INT-000486,Update on road widening approval status,2025-05-08T00:00:00,overdue,user_002,"{""priority"": ""high"", ""auto_generated"": true}"
|
||||
REM-00189,PER-0067,INT-000492,Send revised payment plan,2025-06-21T00:00:00,completed,user_002,"{""priority"": ""high"", ""auto_generated"": true}"
|
||||
REM-00190,PER-0068,INT-000494,Share competitor comparison sheet,2024-11-05T00:00:00,overdue,user_005,"{""priority"": ""low"", ""auto_generated"": true}"
|
||||
REM-00191,PER-0068,INT-000495,Send revised payment plan,2024-11-12T00:00:00,pending,user_005,"{""priority"": ""medium"", ""auto_generated"": false}"
|
||||
REM-00192,PER-0068,INT-000497,Update on road widening approval status,2024-12-13T00:00:00,pending,user_005,"{""priority"": ""medium"", ""auto_generated"": true}"
|
||||
REM-00193,PER-0068,INT-000498,Schedule family meeting for final decision,2024-12-12T00:00:00,completed,user_005,"{""priority"": ""low"", ""auto_generated"": false}"
|
||||
REM-00194,PER-0068,INT-000500,Confirm site visit for Saturday,2025-01-08T00:00:00,completed,user_005,"{""priority"": ""medium"", ""auto_generated"": false}"
|
||||
REM-00195,PER-0069,INT-000503,Schedule family meeting for final decision,2024-05-30T00:00:00,completed,user_003,"{""priority"": ""high"", ""auto_generated"": false}"
|
||||
REM-00196,PER-0069,INT-000505,Send revised payment plan,2024-06-19T00:00:00,pending,user_003,"{""priority"": ""medium"", ""auto_generated"": false}"
|
||||
REM-00197,PER-0069,INT-000509,Confirm site visit for Saturday,2024-07-30T00:00:00,completed,user_003,"{""priority"": ""low"", ""auto_generated"": false}"
|
||||
REM-00198,PER-0069,INT-000510,Schedule family meeting for final decision,2024-07-29T00:00:00,completed,user_003,"{""priority"": ""high"", ""auto_generated"": true}"
|
||||
REM-00199,PER-0070,INT-000513,Update on road widening approval status,2025-01-30T00:00:00,overdue,user_002,"{""priority"": ""medium"", ""auto_generated"": true}"
|
||||
REM-00200,PER-0070,INT-000515,Send revised payment plan,2025-02-15T00:00:00,overdue,user_002,"{""priority"": ""medium"", ""auto_generated"": false}"
|
||||
REM-00201,PER-0071,INT-000518,Send home loan documents checklist,2026-02-17T00:00:00,pending,user_003,"{""priority"": ""high"", ""auto_generated"": true}"
|
||||
REM-00202,PER-0071,INT-000522,Schedule family meeting for final decision,2026-03-19T00:00:00,completed,user_003,"{""priority"": ""medium"", ""auto_generated"": false}"
|
||||
REM-00203,PER-0071,INT-000523,Share competitor comparison sheet,2026-03-22T00:00:00,overdue,user_003,"{""priority"": ""low"", ""auto_generated"": false}"
|
||||
REM-00204,PER-0071,INT-000524,Share competitor comparison sheet,2026-04-10T00:00:00,pending,user_003,"{""priority"": ""high"", ""auto_generated"": false}"
|
||||
REM-00205,PER-0072,INT-000525,Send home loan documents checklist,2026-02-11T00:00:00,completed,user_004,"{""priority"": ""low"", ""auto_generated"": false}"
|
||||
REM-00206,PER-0072,INT-000528,Send home loan documents checklist,2026-03-29T00:00:00,overdue,user_004,"{""priority"": ""low"", ""auto_generated"": true}"
|
||||
REM-00207,PER-0073,INT-000531,Confirm site visit for Saturday,2026-01-15T00:00:00,pending,user_004,"{""priority"": ""high"", ""auto_generated"": false}"
|
||||
REM-00208,PER-0073,INT-000532,Send home loan documents checklist,2026-01-16T00:00:00,completed,user_004,"{""priority"": ""high"", ""auto_generated"": true}"
|
||||
REM-00209,PER-0073,INT-000533,Send home loan documents checklist,2026-01-21T00:00:00,pending,user_004,"{""priority"": ""high"", ""auto_generated"": false}"
|
||||
REM-00210,PER-0073,INT-000536,Update on road widening approval status,2026-03-13T00:00:00,pending,user_004,"{""priority"": ""high"", ""auto_generated"": false}"
|
||||
REM-00211,PER-0074,INT-000539,Follow up on DTC Sojon pricing discussion,2024-06-20T00:00:00,completed,user_002,"{""priority"": ""low"", ""auto_generated"": true}"
|
||||
REM-00212,PER-0075,INT-000545,Share competitor comparison sheet,2024-05-09T00:00:00,completed,user_001,"{""priority"": ""medium"", ""auto_generated"": false}"
|
||||
REM-00213,PER-0076,INT-000555,Update on road widening approval status,2024-05-12T00:00:00,completed,user_002,"{""priority"": ""medium"", ""auto_generated"": false}"
|
||||
REM-00214,PER-0076,INT-000559,Schedule family meeting for final decision,2024-05-30T00:00:00,overdue,user_002,"{""priority"": ""medium"", ""auto_generated"": false}"
|
||||
REM-00215,PER-0076,INT-000561,Update on road widening approval status,2024-06-16T00:00:00,overdue,user_002,"{""priority"": ""low"", ""auto_generated"": false}"
|
||||
REM-00216,PER-0077,INT-000563,Call back regarding east-facing unit availability,2024-05-04T00:00:00,completed,user_001,"{""priority"": ""high"", ""auto_generated"": false}"
|
||||
REM-00217,PER-0077,INT-000566,Confirm site visit for Saturday,2024-06-03T00:00:00,completed,user_001,"{""priority"": ""medium"", ""auto_generated"": false}"
|
||||
REM-00218,PER-0077,INT-000567,Call back regarding east-facing unit availability,2024-06-10T00:00:00,completed,user_001,"{""priority"": ""high"", ""auto_generated"": false}"
|
||||
REM-00219,PER-0078,INT-000572,Send revised payment plan,2024-11-26T00:00:00,completed,user_002,"{""priority"": ""medium"", ""auto_generated"": true}"
|
||||
REM-00220,PER-0078,INT-000573,Update on road widening approval status,2024-11-25T00:00:00,completed,user_002,"{""priority"": ""high"", ""auto_generated"": true}"
|
||||
REM-00221,PER-0078,INT-000575,Call back regarding east-facing unit availability,2024-12-02T00:00:00,overdue,user_002,"{""priority"": ""high"", ""auto_generated"": false}"
|
||||
REM-00222,PER-0078,INT-000579,Send home loan documents checklist,2025-01-13T00:00:00,completed,user_002,"{""priority"": ""low"", ""auto_generated"": true}"
|
||||
REM-00223,PER-0079,INT-000582,Update on road widening approval status,2025-05-16T00:00:00,completed,user_002,"{""priority"": ""high"", ""auto_generated"": false}"
|
||||
REM-00224,PER-0079,INT-000583,Confirm site visit for Saturday,2025-05-28T00:00:00,overdue,user_002,"{""priority"": ""medium"", ""auto_generated"": false}"
|
||||
REM-00225,PER-0080,INT-000587,Share competitor comparison sheet,2025-10-05T00:00:00,completed,user_004,"{""priority"": ""high"", ""auto_generated"": true}"
|
||||
REM-00226,PER-0080,INT-000590,Send home loan documents checklist,2025-11-12T00:00:00,pending,user_004,"{""priority"": ""medium"", ""auto_generated"": false}"
|
||||
REM-00227,PER-0081,INT-000592,Send revised payment plan,2024-03-01T00:00:00,completed,user_005,"{""priority"": ""low"", ""auto_generated"": true}"
|
||||
REM-00228,PER-0081,INT-000600,Call back regarding east-facing unit availability,2024-05-03T00:00:00,completed,user_005,"{""priority"": ""high"", ""auto_generated"": false}"
|
||||
REM-00229,PER-0082,INT-000604,Share competitor comparison sheet,2025-07-20T00:00:00,completed,user_002,"{""priority"": ""medium"", ""auto_generated"": true}"
|
||||
REM-00230,PER-0082,INT-000607,Send revised payment plan,2025-09-15T00:00:00,completed,user_002,"{""priority"": ""medium"", ""auto_generated"": true}"
|
||||
REM-00231,PER-0083,INT-000609,Update on road widening approval status,2024-11-17T00:00:00,overdue,user_002,"{""priority"": ""low"", ""auto_generated"": false}"
|
||||
REM-00232,PER-0083,INT-000612,Schedule family meeting for final decision,2024-12-08T00:00:00,pending,user_002,"{""priority"": ""high"", ""auto_generated"": true}"
|
||||
REM-00233,PER-0083,INT-000613,Confirm site visit for Saturday,2024-12-20T00:00:00,completed,user_002,"{""priority"": ""low"", ""auto_generated"": true}"
|
||||
REM-00234,PER-0083,INT-000614,Call back regarding east-facing unit availability,2024-12-31T00:00:00,completed,user_002,"{""priority"": ""high"", ""auto_generated"": false}"
|
||||
REM-00235,PER-0083,INT-000615,Schedule family meeting for final decision,2025-01-14T00:00:00,completed,user_002,"{""priority"": ""medium"", ""auto_generated"": false}"
|
||||
REM-00236,PER-0083,INT-000616,Confirm site visit for Saturday,2025-01-17T00:00:00,pending,user_002,"{""priority"": ""medium"", ""auto_generated"": false}"
|
||||
REM-00237,PER-0083,INT-000619,Send home loan documents checklist,2025-02-02T00:00:00,completed,user_002,"{""priority"": ""medium"", ""auto_generated"": false}"
|
||||
REM-00238,PER-0084,INT-000620,Update on road widening approval status,2025-04-20T00:00:00,completed,user_002,"{""priority"": ""medium"", ""auto_generated"": false}"
|
||||
REM-00239,PER-0084,INT-000624,Confirm site visit for Saturday,2025-05-31T00:00:00,overdue,user_002,"{""priority"": ""high"", ""auto_generated"": true}"
|
||||
REM-00240,PER-0085,INT-000628,Send revised payment plan,2024-05-25T00:00:00,completed,user_004,"{""priority"": ""low"", ""auto_generated"": false}"
|
||||
REM-00241,PER-0085,INT-000629,Confirm site visit for Saturday,2024-06-02T00:00:00,completed,user_004,"{""priority"": ""low"", ""auto_generated"": true}"
|
||||
REM-00242,PER-0085,INT-000631,Share competitor comparison sheet,2024-07-06T00:00:00,overdue,user_004,"{""priority"": ""low"", ""auto_generated"": true}"
|
||||
REM-00243,PER-0085,INT-000633,Follow up on Siddha Suburbia Bungalow pricing discussion,2024-08-13T00:00:00,completed,user_004,"{""priority"": ""high"", ""auto_generated"": true}"
|
||||
REM-00244,PER-0086,INT-000634,Call back regarding east-facing unit availability,2024-05-12T00:00:00,pending,user_001,"{""priority"": ""medium"", ""auto_generated"": true}"
|
||||
REM-00245,PER-0087,INT-000637,Schedule family meeting for final decision,2024-05-10T00:00:00,completed,user_003,"{""priority"": ""low"", ""auto_generated"": true}"
|
||||
REM-00246,PER-0088,INT-000643,Send revised payment plan,2025-06-08T00:00:00,completed,user_005,"{""priority"": ""low"", ""auto_generated"": true}"
|
||||
REM-00247,PER-0088,INT-000645,Schedule family meeting for final decision,2025-06-13T00:00:00,completed,user_005,"{""priority"": ""low"", ""auto_generated"": false}"
|
||||
REM-00248,PER-0088,INT-000648,Schedule family meeting for final decision,2025-06-20T00:00:00,completed,user_005,"{""priority"": ""high"", ""auto_generated"": false}"
|
||||
REM-00249,PER-0088,INT-000649,Confirm site visit for Saturday,2025-07-02T00:00:00,completed,user_005,"{""priority"": ""low"", ""auto_generated"": false}"
|
||||
REM-00250,PER-0088,INT-000650,Follow up on Sugam Prakriti pricing discussion,2025-07-05T00:00:00,overdue,user_005,"{""priority"": ""high"", ""auto_generated"": false}"
|
||||
REM-00251,PER-0088,INT-000653,Follow up on Sugam Prakriti pricing discussion,2025-07-29T00:00:00,completed,user_005,"{""priority"": ""medium"", ""auto_generated"": false}"
|
||||
REM-00252,PER-0088,INT-000654,Update on road widening approval status,2025-07-31T00:00:00,completed,user_005,"{""priority"": ""medium"", ""auto_generated"": false}"
|
||||
REM-00253,PER-0088,INT-000656,Follow up on Sugam Prakriti pricing discussion,2025-08-09T00:00:00,overdue,user_005,"{""priority"": ""high"", ""auto_generated"": true}"
|
||||
REM-00254,PER-0089,INT-000659,Confirm site visit for Saturday,2024-05-26T00:00:00,completed,user_002,"{""priority"": ""medium"", ""auto_generated"": true}"
|
||||
REM-00255,PER-0089,INT-000662,Send revised payment plan,2024-07-13T00:00:00,completed,user_002,"{""priority"": ""low"", ""auto_generated"": true}"
|
||||
REM-00256,PER-0089,INT-000664,Confirm site visit for Saturday,2024-07-16T00:00:00,completed,user_002,"{""priority"": ""medium"", ""auto_generated"": true}"
|
||||
REM-00257,PER-0090,INT-000666,Send revised payment plan,2025-05-15T00:00:00,completed,user_004,"{""priority"": ""high"", ""auto_generated"": true}"
|
||||
REM-00258,PER-0090,INT-000667,Schedule family meeting for final decision,2025-06-14T00:00:00,completed,user_004,"{""priority"": ""low"", ""auto_generated"": true}"
|
||||
REM-00259,PER-0090,INT-000668,Call back regarding east-facing unit availability,2025-06-16T00:00:00,pending,user_004,"{""priority"": ""high"", ""auto_generated"": true}"
|
||||
REM-00260,PER-0091,INT-000669,Send revised payment plan,2024-12-26T00:00:00,overdue,user_002,"{""priority"": ""medium"", ""auto_generated"": true}"
|
||||
REM-00261,PER-0091,INT-000670,Schedule family meeting for final decision,2025-01-31T00:00:00,completed,user_002,"{""priority"": ""high"", ""auto_generated"": false}"
|
||||
REM-00262,PER-0091,INT-000673,Follow up on Siddha Suburbia Bungalow pricing discussion,2025-02-09T00:00:00,completed,user_002,"{""priority"": ""medium"", ""auto_generated"": false}"
|
||||
REM-00263,PER-0091,INT-000678,Follow up on Siddha Suburbia Bungalow pricing discussion,2025-03-17T00:00:00,pending,user_002,"{""priority"": ""medium"", ""auto_generated"": true}"
|
||||
REM-00264,PER-0091,INT-000679,Follow up on Siddha Suburbia Bungalow pricing discussion,2025-03-25T00:00:00,pending,user_002,"{""priority"": ""low"", ""auto_generated"": false}"
|
||||
REM-00265,PER-0092,INT-000680,Update on road widening approval status,2024-04-11T00:00:00,completed,user_001,"{""priority"": ""low"", ""auto_generated"": true}"
|
||||
REM-00266,PER-0092,INT-000681,Update on road widening approval status,2024-05-02T00:00:00,completed,user_001,"{""priority"": ""low"", ""auto_generated"": false}"
|
||||
REM-00267,PER-0092,INT-000682,Schedule family meeting for final decision,2024-05-28T00:00:00,completed,user_001,"{""priority"": ""high"", ""auto_generated"": false}"
|
||||
REM-00268,PER-0093,INT-000686,Confirm site visit for Saturday,2024-12-25T00:00:00,overdue,user_001,"{""priority"": ""high"", ""auto_generated"": false}"
|
||||
REM-00269,PER-0093,INT-000694,Call back regarding east-facing unit availability,2025-02-07T00:00:00,completed,user_001,"{""priority"": ""low"", ""auto_generated"": false}"
|
||||
REM-00270,PER-0094,INT-000697,Share competitor comparison sheet,2024-12-19T00:00:00,completed,user_004,"{""priority"": ""medium"", ""auto_generated"": false}"
|
||||
REM-00271,PER-0094,INT-000699,Share competitor comparison sheet,2025-01-13T00:00:00,completed,user_004,"{""priority"": ""low"", ""auto_generated"": false}"
|
||||
REM-00272,PER-0094,INT-000700,Update on road widening approval status,2025-01-22T00:00:00,completed,user_004,"{""priority"": ""low"", ""auto_generated"": true}"
|
||||
REM-00273,PER-0094,INT-000701,Send home loan documents checklist,2025-02-03T00:00:00,completed,user_004,"{""priority"": ""medium"", ""auto_generated"": false}"
|
||||
REM-00274,PER-0095,INT-000705,Send revised payment plan,2025-09-12T00:00:00,completed,user_002,"{""priority"": ""high"", ""auto_generated"": false}"
|
||||
REM-00275,PER-0095,INT-000706,Send revised payment plan,2025-10-06T00:00:00,completed,user_002,"{""priority"": ""high"", ""auto_generated"": true}"
|
||||
REM-00276,PER-0095,INT-000710,Schedule family meeting for final decision,2025-11-08T00:00:00,overdue,user_002,"{""priority"": ""high"", ""auto_generated"": false}"
|
||||
REM-00277,PER-0095,INT-000711,Follow up on Merlin Avana pricing discussion,2025-11-09T00:00:00,completed,user_002,"{""priority"": ""low"", ""auto_generated"": true}"
|
||||
REM-00278,PER-0096,INT-000712,Follow up on Siddha Sky Waterfront pricing discussion,2024-05-24T00:00:00,pending,user_004,"{""priority"": ""low"", ""auto_generated"": true}"
|
||||
REM-00279,PER-0096,INT-000713,Share competitor comparison sheet,2024-05-25T00:00:00,completed,user_004,"{""priority"": ""low"", ""auto_generated"": false}"
|
||||
REM-00280,PER-0096,INT-000714,Confirm site visit for Saturday,2024-06-04T00:00:00,overdue,user_004,"{""priority"": ""high"", ""auto_generated"": true}"
|
||||
REM-00281,PER-0096,INT-000716,Update on road widening approval status,2024-06-27T00:00:00,completed,user_004,"{""priority"": ""medium"", ""auto_generated"": true}"
|
||||
REM-00282,PER-0096,INT-000718,Confirm site visit for Saturday,2024-07-19T00:00:00,completed,user_004,"{""priority"": ""high"", ""auto_generated"": false}"
|
||||
REM-00283,PER-0096,INT-000719,Share competitor comparison sheet,2024-08-02T00:00:00,completed,user_004,"{""priority"": ""high"", ""auto_generated"": true}"
|
||||
REM-00284,PER-0096,INT-000721,Confirm site visit for Saturday,2024-08-05T00:00:00,completed,user_004,"{""priority"": ""low"", ""auto_generated"": false}"
|
||||
REM-00285,PER-0097,INT-000722,Send revised payment plan,2024-10-03T00:00:00,completed,user_002,"{""priority"": ""medium"", ""auto_generated"": true}"
|
||||
REM-00286,PER-0097,INT-000726,Confirm site visit for Saturday,2024-11-02T00:00:00,completed,user_002,"{""priority"": ""low"", ""auto_generated"": true}"
|
||||
REM-00287,PER-0098,INT-000731,Confirm site visit for Saturday,2024-08-16T00:00:00,completed,user_005,"{""priority"": ""low"", ""auto_generated"": true}"
|
||||
REM-00288,PER-0098,INT-000732,Call back regarding east-facing unit availability,2024-08-17T00:00:00,completed,user_005,"{""priority"": ""medium"", ""auto_generated"": false}"
|
||||
REM-00289,PER-0099,INT-000739,Update on road widening approval status,2024-04-26T00:00:00,completed,user_002,"{""priority"": ""medium"", ""auto_generated"": false}"
|
||||
REM-00290,PER-0099,INT-000742,Share competitor comparison sheet,2024-06-07T00:00:00,pending,user_002,"{""priority"": ""high"", ""auto_generated"": true}"
|
||||
REM-00291,PER-0099,INT-000743,Confirm site visit for Saturday,2024-06-08T00:00:00,completed,user_002,"{""priority"": ""low"", ""auto_generated"": true}"
|
||||
REM-00292,PER-0099,INT-000744,Share competitor comparison sheet,2024-06-13T00:00:00,completed,user_002,"{""priority"": ""low"", ""auto_generated"": true}"
|
||||
REM-00293,PER-0100,INT-000745,Update on road widening approval status,2024-05-21T00:00:00,pending,user_002,"{""priority"": ""low"", ""auto_generated"": false}"
|
||||
REM-00294,PER-0100,INT-000747,Share competitor comparison sheet,2024-06-30T00:00:00,completed,user_002,"{""priority"": ""low"", ""auto_generated"": true}"
|
||||
REM-00295,PER-0100,INT-000748,Update on road widening approval status,2024-06-26T00:00:00,completed,user_002,"{""priority"": ""low"", ""auto_generated"": false}"
|
||||
REM-00296,PER-0101,INT-000754,Update on road widening approval status,2025-10-17T00:00:00,completed,user_001,"{""priority"": ""high"", ""auto_generated"": true}"
|
||||
REM-00297,PER-0101,INT-000755,Call back regarding east-facing unit availability,2025-10-24T00:00:00,completed,user_001,"{""priority"": ""low"", ""auto_generated"": false}"
|
||||
REM-00298,PER-0102,INT-000757,Share competitor comparison sheet,2025-08-23T00:00:00,completed,user_001,"{""priority"": ""medium"", ""auto_generated"": false}"
|
||||
REM-00299,PER-0102,INT-000758,Follow up on DTC Sojon pricing discussion,2025-09-03T00:00:00,overdue,user_001,"{""priority"": ""low"", ""auto_generated"": true}"
|
||||
REM-00300,PER-0102,INT-000759,Send revised payment plan,2025-09-11T00:00:00,overdue,user_001,"{""priority"": ""high"", ""auto_generated"": true}"
|
||||
REM-00301,PER-0102,INT-000761,Send home loan documents checklist,2025-09-15T00:00:00,completed,user_001,"{""priority"": ""high"", ""auto_generated"": true}"
|
||||
REM-00302,PER-0102,INT-000763,Follow up on DTC Sojon pricing discussion,2025-09-19T00:00:00,completed,user_001,"{""priority"": ""low"", ""auto_generated"": false}"
|
||||
REM-00303,PER-0102,INT-000764,Confirm site visit for Saturday,2025-10-11T00:00:00,completed,user_001,"{""priority"": ""medium"", ""auto_generated"": true}"
|
||||
REM-00304,PER-0102,INT-000765,Send home loan documents checklist,2025-10-11T00:00:00,overdue,user_001,"{""priority"": ""medium"", ""auto_generated"": true}"
|
||||
REM-00305,PER-0103,INT-000770,Share competitor comparison sheet,2024-02-12T00:00:00,completed,user_001,"{""priority"": ""low"", ""auto_generated"": true}"
|
||||
REM-00306,PER-0103,INT-000771,Call back regarding east-facing unit availability,2024-03-28T00:00:00,completed,user_001,"{""priority"": ""high"", ""auto_generated"": true}"
|
||||
REM-00307,PER-0103,INT-000773,Call back regarding east-facing unit availability,2024-04-03T00:00:00,pending,user_001,"{""priority"": ""low"", ""auto_generated"": true}"
|
||||
REM-00308,PER-0103,INT-000775,Call back regarding east-facing unit availability,2024-04-12T00:00:00,overdue,user_001,"{""priority"": ""high"", ""auto_generated"": false}"
|
||||
REM-00309,PER-0103,INT-000776,Follow up on Ambuja Utpaala pricing discussion,2024-04-16T00:00:00,completed,user_001,"{""priority"": ""medium"", ""auto_generated"": true}"
|
||||
REM-00310,PER-0104,INT-000782,Call back regarding east-facing unit availability,2026-02-22T00:00:00,completed,user_003,"{""priority"": ""high"", ""auto_generated"": true}"
|
||||
REM-00311,PER-0104,INT-000784,Follow up on Merlin Avana pricing discussion,2026-02-19T00:00:00,completed,user_003,"{""priority"": ""low"", ""auto_generated"": true}"
|
||||
REM-00312,PER-0104,INT-000786,Schedule family meeting for final decision,2026-03-02T00:00:00,completed,user_003,"{""priority"": ""high"", ""auto_generated"": true}"
|
||||
REM-00313,PER-0104,INT-000789,Update on road widening approval status,2026-03-24T00:00:00,pending,user_003,"{""priority"": ""low"", ""auto_generated"": true}"
|
||||
REM-00314,PER-0104,INT-000792,Follow up on Merlin Avana pricing discussion,2026-03-28T00:00:00,completed,user_003,"{""priority"": ""low"", ""auto_generated"": false}"
|
||||
REM-00315,PER-0106,INT-000802,Update on road widening approval status,2025-06-27T00:00:00,completed,user_003,"{""priority"": ""high"", ""auto_generated"": true}"
|
||||
REM-00316,PER-0106,INT-000805,Update on road widening approval status,2025-07-10T00:00:00,overdue,user_003,"{""priority"": ""high"", ""auto_generated"": true}"
|
||||
REM-00317,PER-0107,INT-000811,Send home loan documents checklist,2024-11-10T00:00:00,pending,user_005,"{""priority"": ""high"", ""auto_generated"": true}"
|
||||
REM-00318,PER-0107,INT-000812,Update on road widening approval status,2024-11-12T00:00:00,pending,user_005,"{""priority"": ""low"", ""auto_generated"": false}"
|
||||
REM-00319,PER-0107,INT-000813,Confirm site visit for Saturday,2024-11-22T00:00:00,pending,user_005,"{""priority"": ""low"", ""auto_generated"": true}"
|
||||
REM-00320,PER-0108,INT-000817,Confirm site visit for Saturday,2025-11-27T00:00:00,overdue,user_003,"{""priority"": ""high"", ""auto_generated"": false}"
|
||||
REM-00321,PER-0108,INT-000819,Follow up on Shriram Grand City pricing discussion,2025-12-16T00:00:00,completed,user_003,"{""priority"": ""low"", ""auto_generated"": false}"
|
||||
REM-00322,PER-0108,INT-000821,Follow up on Shriram Grand City pricing discussion,2025-12-22T00:00:00,completed,user_003,"{""priority"": ""low"", ""auto_generated"": false}"
|
||||
REM-00323,PER-0109,INT-000824,Send revised payment plan,2025-10-24T00:00:00,pending,user_004,"{""priority"": ""high"", ""auto_generated"": false}"
|
||||
REM-00324,PER-0109,INT-000825,Schedule family meeting for final decision,2025-11-05T00:00:00,pending,user_004,"{""priority"": ""medium"", ""auto_generated"": true}"
|
||||
REM-00325,PER-0109,INT-000826,Share competitor comparison sheet,2025-11-11T00:00:00,overdue,user_004,"{""priority"": ""high"", ""auto_generated"": false}"
|
||||
REM-00326,PER-0110,INT-000834,Send revised payment plan,2024-10-31T00:00:00,pending,user_001,"{""priority"": ""high"", ""auto_generated"": false}"
|
||||
REM-00327,PER-0110,INT-000835,Schedule family meeting for final decision,2024-11-01T00:00:00,completed,user_001,"{""priority"": ""medium"", ""auto_generated"": true}"
|
||||
REM-00328,PER-0110,INT-000836,Send home loan documents checklist,2024-11-25T00:00:00,completed,user_001,"{""priority"": ""medium"", ""auto_generated"": true}"
|
||||
REM-00329,PER-0110,INT-000837,Follow up on Eden Devprayag pricing discussion,2024-11-22T00:00:00,pending,user_001,"{""priority"": ""medium"", ""auto_generated"": false}"
|
||||
REM-00330,PER-0111,INT-000842,Share competitor comparison sheet,2025-12-31T00:00:00,overdue,user_005,"{""priority"": ""high"", ""auto_generated"": true}"
|
||||
REM-00331,PER-0112,INT-000844,Share competitor comparison sheet,2025-11-12T00:00:00,overdue,user_001,"{""priority"": ""low"", ""auto_generated"": false}"
|
||||
REM-00332,PER-0112,INT-000846,Schedule family meeting for final decision,2025-12-02T00:00:00,completed,user_001,"{""priority"": ""low"", ""auto_generated"": true}"
|
||||
REM-00333,PER-0112,INT-000848,Share competitor comparison sheet,2025-12-30T00:00:00,completed,user_001,"{""priority"": ""medium"", ""auto_generated"": true}"
|
||||
REM-00334,PER-0113,INT-000854,Send revised payment plan,2025-11-15T00:00:00,pending,user_002,"{""priority"": ""medium"", ""auto_generated"": false}"
|
||||
REM-00335,PER-0113,INT-000855,Send home loan documents checklist,2025-11-17T00:00:00,overdue,user_002,"{""priority"": ""high"", ""auto_generated"": true}"
|
||||
REM-00336,PER-0113,INT-000856,Send revised payment plan,2025-11-29T00:00:00,pending,user_002,"{""priority"": ""low"", ""auto_generated"": true}"
|
||||
REM-00337,PER-0113,INT-000857,Confirm site visit for Saturday,2025-12-08T00:00:00,pending,user_002,"{""priority"": ""medium"", ""auto_generated"": false}"
|
||||
REM-00338,PER-0114,INT-000858,Schedule family meeting for final decision,2025-04-28T00:00:00,overdue,user_004,"{""priority"": ""low"", ""auto_generated"": true}"
|
||||
REM-00339,PER-0114,INT-000861,Send home loan documents checklist,2025-05-15T00:00:00,pending,user_004,"{""priority"": ""low"", ""auto_generated"": false}"
|
||||
REM-00340,PER-0114,INT-000862,Share competitor comparison sheet,2025-05-29T00:00:00,completed,user_004,"{""priority"": ""low"", ""auto_generated"": true}"
|
||||
REM-00341,PER-0114,INT-000863,Follow up on Atri Surya Toron pricing discussion,2025-06-23T00:00:00,overdue,user_004,"{""priority"": ""low"", ""auto_generated"": false}"
|
||||
REM-00342,PER-0114,INT-000864,Confirm site visit for Saturday,2025-07-17T00:00:00,completed,user_004,"{""priority"": ""high"", ""auto_generated"": false}"
|
||||
REM-00343,PER-0115,INT-000868,Share competitor comparison sheet,2024-11-28T00:00:00,completed,user_001,"{""priority"": ""medium"", ""auto_generated"": false}"
|
||||
REM-00344,PER-0115,INT-000871,Update on road widening approval status,2024-12-20T00:00:00,completed,user_001,"{""priority"": ""low"", ""auto_generated"": true}"
|
||||
REM-00345,PER-0115,INT-000872,Confirm site visit for Saturday,2025-01-01T00:00:00,overdue,user_001,"{""priority"": ""medium"", ""auto_generated"": false}"
|
||||
REM-00346,PER-0115,INT-000873,Call back regarding east-facing unit availability,2025-01-11T00:00:00,overdue,user_001,"{""priority"": ""high"", ""auto_generated"": false}"
|
||||
REM-00347,PER-0115,INT-000874,Schedule family meeting for final decision,2025-01-16T00:00:00,pending,user_001,"{""priority"": ""high"", ""auto_generated"": false}"
|
||||
REM-00348,PER-0115,INT-000875,Update on road widening approval status,2025-01-23T00:00:00,overdue,user_001,"{""priority"": ""medium"", ""auto_generated"": false}"
|
||||
REM-00349,PER-0116,INT-000877,Send revised payment plan,2024-07-18T00:00:00,completed,user_001,"{""priority"": ""medium"", ""auto_generated"": true}"
|
||||
REM-00350,PER-0116,INT-000878,Confirm site visit for Saturday,2024-07-22T00:00:00,completed,user_001,"{""priority"": ""high"", ""auto_generated"": true}"
|
||||
REM-00351,PER-0116,INT-000879,Share competitor comparison sheet,2024-07-20T00:00:00,completed,user_001,"{""priority"": ""medium"", ""auto_generated"": false}"
|
||||
REM-00352,PER-0116,INT-000880,Send revised payment plan,2024-07-27T00:00:00,completed,user_001,"{""priority"": ""medium"", ""auto_generated"": true}"
|
||||
REM-00353,PER-0116,INT-000883,Schedule family meeting for final decision,2024-08-21T00:00:00,pending,user_001,"{""priority"": ""high"", ""auto_generated"": true}"
|
||||
REM-00354,PER-0116,INT-000885,Update on road widening approval status,2024-09-01T00:00:00,completed,user_001,"{""priority"": ""low"", ""auto_generated"": true}"
|
||||
REM-00355,PER-0117,INT-000888,Share competitor comparison sheet,2024-06-24T00:00:00,pending,user_004,"{""priority"": ""medium"", ""auto_generated"": true}"
|
||||
REM-00356,PER-0117,INT-000890,Update on road widening approval status,2024-06-22T00:00:00,pending,user_004,"{""priority"": ""medium"", ""auto_generated"": false}"
|
||||
REM-00357,PER-0117,INT-000892,Send home loan documents checklist,2024-07-07T00:00:00,completed,user_004,"{""priority"": ""medium"", ""auto_generated"": true}"
|
||||
REM-00358,PER-0117,INT-000893,Send revised payment plan,2024-07-24T00:00:00,completed,user_004,"{""priority"": ""high"", ""auto_generated"": true}"
|
||||
REM-00359,PER-0117,INT-000895,Follow up on Atri Aqua pricing discussion,2024-08-09T00:00:00,overdue,user_004,"{""priority"": ""low"", ""auto_generated"": false}"
|
||||
REM-00360,PER-0117,INT-000900,Update on road widening approval status,2024-09-09T00:00:00,completed,user_004,"{""priority"": ""low"", ""auto_generated"": true}"
|
||||
REM-00361,PER-0118,INT-000907,Send home loan documents checklist,2024-09-03T00:00:00,pending,user_001,"{""priority"": ""low"", ""auto_generated"": true}"
|
||||
REM-00362,PER-0118,INT-000908,Confirm site visit for Saturday,2024-09-04T00:00:00,completed,user_001,"{""priority"": ""high"", ""auto_generated"": true}"
|
||||
REM-00363,PER-0118,INT-000910,Update on road widening approval status,2024-09-03T00:00:00,completed,user_001,"{""priority"": ""high"", ""auto_generated"": true}"
|
||||
REM-00364,PER-0119,INT-000913,Send home loan documents checklist,2024-02-18T00:00:00,completed,user_002,"{""priority"": ""medium"", ""auto_generated"": false}"
|
||||
REM-00365,PER-0119,INT-000914,Confirm site visit for Saturday,2024-02-26T00:00:00,completed,user_002,"{""priority"": ""medium"", ""auto_generated"": false}"
|
||||
REM-00366,PER-0119,INT-000916,Send home loan documents checklist,2024-03-19T00:00:00,pending,user_002,"{""priority"": ""medium"", ""auto_generated"": true}"
|
||||
REM-00367,PER-0120,INT-000918,Call back regarding east-facing unit availability,2024-05-04T00:00:00,completed,user_003,"{""priority"": ""high"", ""auto_generated"": true}"
|
||||
REM-00368,PER-0120,INT-000919,Update on road widening approval status,2024-05-14T00:00:00,completed,user_003,"{""priority"": ""medium"", ""auto_generated"": true}"
|
||||
REM-00369,PER-0120,INT-000925,Share competitor comparison sheet,2024-05-23T00:00:00,pending,user_003,"{""priority"": ""low"", ""auto_generated"": false}"
|
||||
REM-00370,PER-0120,INT-000926,Share competitor comparison sheet,2024-06-04T00:00:00,completed,user_003,"{""priority"": ""medium"", ""auto_generated"": false}"
|
||||
REM-00371,PER-0120,INT-000928,Schedule family meeting for final decision,2024-06-21T00:00:00,completed,user_003,"{""priority"": ""low"", ""auto_generated"": false}"
|
||||
REM-00372,PER-0120,INT-000931,Follow up on Atri Surya Toron pricing discussion,2024-06-20T00:00:00,completed,user_003,"{""priority"": ""low"", ""auto_generated"": false}"
|
||||
REM-00373,PER-0121,INT-000933,Send revised payment plan,2025-03-12T00:00:00,pending,user_003,"{""priority"": ""low"", ""auto_generated"": false}"
|
||||
REM-00374,PER-0121,INT-000936,Schedule family meeting for final decision,2025-03-24T00:00:00,completed,user_003,"{""priority"": ""high"", ""auto_generated"": false}"
|
||||
REM-00375,PER-0121,INT-000937,Share competitor comparison sheet,2025-04-10T00:00:00,completed,user_003,"{""priority"": ""medium"", ""auto_generated"": true}"
|
||||
REM-00376,PER-0121,INT-000938,Follow up on Sugam Prakriti pricing discussion,2025-04-14T00:00:00,overdue,user_003,"{""priority"": ""low"", ""auto_generated"": true}"
|
||||
REM-00377,PER-0121,INT-000941,Schedule family meeting for final decision,2025-05-14T00:00:00,pending,user_003,"{""priority"": ""low"", ""auto_generated"": true}"
|
||||
REM-00378,PER-0121,INT-000942,Follow up on Sugam Prakriti pricing discussion,2025-06-02T00:00:00,pending,user_003,"{""priority"": ""medium"", ""auto_generated"": true}"
|
||||
REM-00379,PER-0122,INT-000943,Confirm site visit for Saturday,2024-03-02T00:00:00,pending,user_005,"{""priority"": ""low"", ""auto_generated"": false}"
|
||||
REM-00380,PER-0123,INT-000948,Call back regarding east-facing unit availability,2025-10-12T00:00:00,completed,user_002,"{""priority"": ""medium"", ""auto_generated"": false}"
|
||||
REM-00381,PER-0123,INT-000950,Schedule family meeting for final decision,2025-11-14T00:00:00,completed,user_002,"{""priority"": ""low"", ""auto_generated"": false}"
|
||||
REM-00382,PER-0124,INT-000951,Confirm site visit for Saturday,2024-03-21T00:00:00,completed,user_004,"{""priority"": ""medium"", ""auto_generated"": true}"
|
||||
REM-00383,PER-0125,INT-000955,Schedule family meeting for final decision,2025-05-16T00:00:00,completed,user_001,"{""priority"": ""high"", ""auto_generated"": false}"
|
||||
REM-00384,PER-0125,INT-000956,Share competitor comparison sheet,2025-07-24T00:00:00,completed,user_001,"{""priority"": ""medium"", ""auto_generated"": false}"
|
||||
REM-00385,PER-0125,INT-000957,Follow up on DTC Good Earth pricing discussion,2025-07-27T00:00:00,completed,user_001,"{""priority"": ""high"", ""auto_generated"": false}"
|
||||
REM-00386,PER-0125,INT-000958,Schedule family meeting for final decision,2025-08-05T00:00:00,completed,user_001,"{""priority"": ""high"", ""auto_generated"": false}"
|
||||
REM-00387,PER-0126,INT-000959,Schedule family meeting for final decision,2025-09-21T00:00:00,overdue,user_001,"{""priority"": ""medium"", ""auto_generated"": true}"
|
||||
REM-00388,PER-0126,INT-000960,Call back regarding east-facing unit availability,2025-09-22T00:00:00,completed,user_001,"{""priority"": ""low"", ""auto_generated"": false}"
|
||||
REM-00389,PER-0126,INT-000961,Update on road widening approval status,2025-10-11T00:00:00,completed,user_001,"{""priority"": ""medium"", ""auto_generated"": true}"
|
||||
REM-00390,PER-0126,INT-000962,Update on road widening approval status,2025-10-22T00:00:00,completed,user_001,"{""priority"": ""low"", ""auto_generated"": false}"
|
||||
REM-00391,PER-0126,INT-000965,Call back regarding east-facing unit availability,2025-11-10T00:00:00,completed,user_001,"{""priority"": ""low"", ""auto_generated"": false}"
|
||||
REM-00392,PER-0127,INT-000966,Send revised payment plan,2026-02-02T00:00:00,completed,user_001,"{""priority"": ""medium"", ""auto_generated"": true}"
|
||||
REM-00393,PER-0127,INT-000967,Share competitor comparison sheet,2026-02-03T00:00:00,completed,user_001,"{""priority"": ""low"", ""auto_generated"": true}"
|
||||
REM-00394,PER-0127,INT-000969,Schedule family meeting for final decision,2026-03-30T00:00:00,completed,user_001,"{""priority"": ""low"", ""auto_generated"": true}"
|
||||
REM-00395,PER-0128,INT-000971,Schedule family meeting for final decision,2026-02-05T00:00:00,completed,user_003,"{""priority"": ""high"", ""auto_generated"": false}"
|
||||
REM-00396,PER-0128,INT-000972,Share competitor comparison sheet,2026-03-12T00:00:00,completed,user_003,"{""priority"": ""low"", ""auto_generated"": false}"
|
||||
REM-00397,PER-0129,INT-000973,Call back regarding east-facing unit availability,2024-08-13T00:00:00,overdue,user_003,"{""priority"": ""low"", ""auto_generated"": false}"
|
||||
REM-00398,PER-0129,INT-000976,Share competitor comparison sheet,2024-08-21T00:00:00,completed,user_003,"{""priority"": ""medium"", ""auto_generated"": false}"
|
||||
REM-00399,PER-0129,INT-000980,Schedule family meeting for final decision,2024-10-17T00:00:00,completed,user_003,"{""priority"": ""high"", ""auto_generated"": true}"
|
||||
REM-00400,PER-0129,INT-000981,Schedule family meeting for final decision,2024-10-19T00:00:00,completed,user_003,"{""priority"": ""low"", ""auto_generated"": true}"
|
||||
REM-00401,PER-0130,INT-000982,Schedule family meeting for final decision,2025-09-10T00:00:00,pending,user_003,"{""priority"": ""high"", ""auto_generated"": false}"
|
||||
REM-00402,PER-0130,INT-000983,Schedule family meeting for final decision,2025-09-28T00:00:00,overdue,user_003,"{""priority"": ""high"", ""auto_generated"": true}"
|
||||
REM-00403,PER-0130,INT-000984,Send home loan documents checklist,2025-10-07T00:00:00,completed,user_003,"{""priority"": ""high"", ""auto_generated"": true}"
|
||||
REM-00404,PER-0131,INT-000987,Confirm site visit for Saturday,2025-06-17T00:00:00,pending,user_003,"{""priority"": ""medium"", ""auto_generated"": false}"
|
||||
REM-00405,PER-0131,INT-000990,Send home loan documents checklist,2025-07-10T00:00:00,pending,user_003,"{""priority"": ""low"", ""auto_generated"": false}"
|
||||
REM-00406,PER-0132,INT-001000,Send home loan documents checklist,2025-01-15T00:00:00,pending,user_001,"{""priority"": ""low"", ""auto_generated"": true}"
|
||||
REM-00407,PER-0132,INT-001001,Confirm site visit for Saturday,2025-01-30T00:00:00,completed,user_001,"{""priority"": ""high"", ""auto_generated"": false}"
|
||||
REM-00408,PER-0132,INT-001006,Call back regarding east-facing unit availability,2025-04-08T00:00:00,completed,user_001,"{""priority"": ""medium"", ""auto_generated"": false}"
|
||||
REM-00409,PER-0133,INT-001009,Send revised payment plan,2024-04-26T00:00:00,completed,user_001,"{""priority"": ""medium"", ""auto_generated"": true}"
|
||||
REM-00410,PER-0133,INT-001010,Send home loan documents checklist,2024-04-26T00:00:00,completed,user_001,"{""priority"": ""high"", ""auto_generated"": false}"
|
||||
REM-00411,PER-0133,INT-001014,Update on road widening approval status,2024-05-20T00:00:00,completed,user_001,"{""priority"": ""high"", ""auto_generated"": true}"
|
||||
REM-00412,PER-0134,INT-001018,Share competitor comparison sheet,2024-12-27T00:00:00,completed,user_003,"{""priority"": ""low"", ""auto_generated"": false}"
|
||||
REM-00413,PER-0135,INT-001020,Follow up on Siddha Suburbia Bungalow pricing discussion,2025-02-25T00:00:00,completed,user_004,"{""priority"": ""low"", ""auto_generated"": true}"
|
||||
REM-00414,PER-0135,INT-001021,Schedule family meeting for final decision,2025-03-13T00:00:00,completed,user_004,"{""priority"": ""high"", ""auto_generated"": true}"
|
||||
REM-00415,PER-0135,INT-001022,Share competitor comparison sheet,2025-03-22T00:00:00,pending,user_004,"{""priority"": ""low"", ""auto_generated"": true}"
|
||||
REM-00416,PER-0135,INT-001024,Share competitor comparison sheet,2025-04-17T00:00:00,pending,user_004,"{""priority"": ""low"", ""auto_generated"": true}"
|
||||
REM-00417,PER-0135,INT-001029,Send revised payment plan,2025-04-26T00:00:00,completed,user_004,"{""priority"": ""low"", ""auto_generated"": false}"
|
||||
REM-00418,PER-0137,INT-001037,Follow up on DTC Good Earth pricing discussion,2026-02-08T00:00:00,completed,user_002,"{""priority"": ""high"", ""auto_generated"": true}"
|
||||
REM-00419,PER-0137,INT-001038,Share competitor comparison sheet,2026-02-15T00:00:00,overdue,user_002,"{""priority"": ""low"", ""auto_generated"": false}"
|
||||
REM-00420,PER-0137,INT-001039,Follow up on DTC Good Earth pricing discussion,2026-03-13T00:00:00,completed,user_002,"{""priority"": ""high"", ""auto_generated"": false}"
|
||||
REM-00421,PER-0137,INT-001042,Follow up on DTC Good Earth pricing discussion,2026-04-24T00:00:00,completed,user_002,"{""priority"": ""medium"", ""auto_generated"": true}"
|
||||
REM-00422,PER-0137,INT-001043,Update on road widening approval status,2026-04-30T00:00:00,completed,user_002,"{""priority"": ""medium"", ""auto_generated"": false}"
|
||||
REM-00423,PER-0138,INT-001044,Send revised payment plan,2024-08-12T00:00:00,completed,user_005,"{""priority"": ""medium"", ""auto_generated"": false}"
|
||||
REM-00424,PER-0138,INT-001047,Follow up on Ambuja Utpaala pricing discussion,2024-09-10T00:00:00,completed,user_005,"{""priority"": ""high"", ""auto_generated"": false}"
|
||||
REM-00425,PER-0139,INT-001053,Confirm site visit for Saturday,2025-03-27T00:00:00,pending,user_003,"{""priority"": ""low"", ""auto_generated"": true}"
|
||||
REM-00426,PER-0140,INT-001062,Send revised payment plan,2024-07-10T00:00:00,overdue,user_001,"{""priority"": ""high"", ""auto_generated"": true}"
|
||||
REM-00427,PER-0141,INT-001064,Update on road widening approval status,2024-12-10T00:00:00,completed,user_003,"{""priority"": ""high"", ""auto_generated"": true}"
|
||||
REM-00428,PER-0142,INT-001070,Update on road widening approval status,2025-07-05T00:00:00,completed,user_003,"{""priority"": ""high"", ""auto_generated"": false}"
|
||||
REM-00429,PER-0142,INT-001071,Schedule family meeting for final decision,2025-07-29T00:00:00,completed,user_003,"{""priority"": ""low"", ""auto_generated"": true}"
|
||||
REM-00430,PER-0142,INT-001073,Update on road widening approval status,2025-08-17T00:00:00,overdue,user_003,"{""priority"": ""low"", ""auto_generated"": true}"
|
||||
REM-00431,PER-0143,INT-001077,Update on road widening approval status,2024-05-05T00:00:00,completed,user_001,"{""priority"": ""low"", ""auto_generated"": true}"
|
||||
REM-00432,PER-0144,INT-001079,Send home loan documents checklist,2024-06-10T00:00:00,completed,user_002,"{""priority"": ""low"", ""auto_generated"": false}"
|
||||
REM-00433,PER-0144,INT-001082,Share competitor comparison sheet,2024-07-03T00:00:00,completed,user_002,"{""priority"": ""low"", ""auto_generated"": false}"
|
||||
REM-00434,PER-0145,INT-001084,Update on road widening approval status,2024-08-13T00:00:00,overdue,user_005,"{""priority"": ""medium"", ""auto_generated"": false}"
|
||||
REM-00435,PER-0145,INT-001085,Share competitor comparison sheet,2024-08-20T00:00:00,completed,user_005,"{""priority"": ""medium"", ""auto_generated"": false}"
|
||||
REM-00436,PER-0145,INT-001087,Confirm site visit for Saturday,2024-10-04T00:00:00,completed,user_005,"{""priority"": ""medium"", ""auto_generated"": false}"
|
||||
REM-00437,PER-0146,INT-001091,Call back regarding east-facing unit availability,2024-07-10T00:00:00,overdue,user_004,"{""priority"": ""low"", ""auto_generated"": true}"
|
||||
REM-00438,PER-0146,INT-001092,Send revised payment plan,2024-08-04T00:00:00,overdue,user_004,"{""priority"": ""high"", ""auto_generated"": true}"
|
||||
REM-00439,PER-0148,INT-001096,Confirm site visit for Saturday,2024-11-10T00:00:00,completed,user_002,"{""priority"": ""low"", ""auto_generated"": false}"
|
||||
REM-00440,PER-0148,INT-001100,Update on road widening approval status,2024-12-11T00:00:00,completed,user_002,"{""priority"": ""medium"", ""auto_generated"": true}"
|
||||
REM-00441,PER-0148,INT-001104,Confirm site visit for Saturday,2024-12-28T00:00:00,completed,user_002,"{""priority"": ""low"", ""auto_generated"": true}"
|
||||
REM-00442,PER-0148,INT-001106,Update on road widening approval status,2025-01-08T00:00:00,completed,user_002,"{""priority"": ""medium"", ""auto_generated"": false}"
|
||||
REM-00443,PER-0148,INT-001107,Send revised payment plan,2025-01-12T00:00:00,completed,user_002,"{""priority"": ""low"", ""auto_generated"": false}"
|
||||
REM-00444,PER-0148,INT-001109,Send home loan documents checklist,2025-01-15T00:00:00,completed,user_002,"{""priority"": ""high"", ""auto_generated"": false}"
|
||||
REM-00445,PER-0148,INT-001110,Share competitor comparison sheet,2025-02-01T00:00:00,completed,user_002,"{""priority"": ""medium"", ""auto_generated"": true}"
|
||||
REM-00446,PER-0149,INT-001111,Send home loan documents checklist,2025-01-10T00:00:00,pending,user_003,"{""priority"": ""medium"", ""auto_generated"": false}"
|
||||
REM-00447,PER-0149,INT-001116,Call back regarding east-facing unit availability,2025-02-28T00:00:00,pending,user_003,"{""priority"": ""high"", ""auto_generated"": false}"
|
||||
REM-00448,PER-0149,INT-001119,Update on road widening approval status,2025-03-22T00:00:00,completed,user_003,"{""priority"": ""low"", ""auto_generated"": false}"
|
||||
REM-00449,PER-0150,INT-001121,Schedule family meeting for final decision,2025-11-28T00:00:00,overdue,user_005,"{""priority"": ""high"", ""auto_generated"": true}"
|
||||
REM-00450,PER-0150,INT-001124,Schedule family meeting for final decision,2026-01-06T00:00:00,completed,user_005,"{""priority"": ""low"", ""auto_generated"": true}"
|
||||
REM-00451,PER-0150,INT-001126,Call back regarding east-facing unit availability,2026-01-25T00:00:00,completed,user_005,"{""priority"": ""medium"", ""auto_generated"": true}"
|
||||
REM-00452,PER-0151,INT-001133,Share competitor comparison sheet,2025-08-15T00:00:00,completed,user_002,"{""priority"": ""low"", ""auto_generated"": false}"
|
||||
REM-00453,PER-0151,INT-001135,Schedule family meeting for final decision,2025-08-18T00:00:00,overdue,user_002,"{""priority"": ""low"", ""auto_generated"": true}"
|
||||
REM-00454,PER-0152,INT-001136,Schedule family meeting for final decision,2024-05-18T00:00:00,completed,user_001,"{""priority"": ""medium"", ""auto_generated"": false}"
|
||||
REM-00455,PER-0153,INT-001141,Follow up on Merlin Avana pricing discussion,2025-07-15T00:00:00,completed,user_002,"{""priority"": ""medium"", ""auto_generated"": false}"
|
||||
REM-00456,PER-0154,INT-001148,Send home loan documents checklist,2025-08-15T00:00:00,completed,user_004,"{""priority"": ""medium"", ""auto_generated"": false}"
|
||||
REM-00457,PER-0154,INT-001149,Send revised payment plan,2025-09-02T00:00:00,completed,user_004,"{""priority"": ""high"", ""auto_generated"": true}"
|
||||
REM-00458,PER-0154,INT-001152,Send home loan documents checklist,2025-09-01T00:00:00,completed,user_004,"{""priority"": ""medium"", ""auto_generated"": false}"
|
||||
REM-00459,PER-0154,INT-001153,Send home loan documents checklist,2025-09-10T00:00:00,overdue,user_004,"{""priority"": ""high"", ""auto_generated"": false}"
|
||||
REM-00460,PER-0154,INT-001155,Confirm site visit for Saturday,2025-09-26T00:00:00,pending,user_004,"{""priority"": ""medium"", ""auto_generated"": true}"
|
||||
REM-00461,PER-0155,INT-001157,Send home loan documents checklist,2024-02-07T00:00:00,overdue,user_002,"{""priority"": ""low"", ""auto_generated"": true}"
|
||||
REM-00462,PER-0155,INT-001158,Follow up on Sugam Prakriti pricing discussion,2024-02-14T00:00:00,pending,user_002,"{""priority"": ""medium"", ""auto_generated"": false}"
|
||||
REM-00463,PER-0155,INT-001160,Send home loan documents checklist,2024-03-05T00:00:00,pending,user_002,"{""priority"": ""low"", ""auto_generated"": false}"
|
||||
REM-00464,PER-0155,INT-001163,Share competitor comparison sheet,2024-03-17T00:00:00,overdue,user_002,"{""priority"": ""high"", ""auto_generated"": true}"
|
||||
REM-00465,PER-0156,INT-001165,Follow up on DTC Good Earth pricing discussion,2025-02-21T00:00:00,pending,user_001,"{""priority"": ""medium"", ""auto_generated"": true}"
|
||||
REM-00466,PER-0157,INT-001167,Update on road widening approval status,2024-10-08T00:00:00,completed,user_002,"{""priority"": ""high"", ""auto_generated"": true}"
|
||||
REM-00467,PER-0157,INT-001170,Send home loan documents checklist,2024-12-08T00:00:00,completed,user_002,"{""priority"": ""medium"", ""auto_generated"": true}"
|
||||
REM-00468,PER-0157,INT-001171,Send home loan documents checklist,2024-12-21T00:00:00,completed,user_002,"{""priority"": ""high"", ""auto_generated"": false}"
|
||||
REM-00469,PER-0158,INT-001175,Send home loan documents checklist,2026-01-17T00:00:00,pending,user_003,"{""priority"": ""medium"", ""auto_generated"": true}"
|
||||
REM-00470,PER-0158,INT-001177,Update on road widening approval status,2026-01-27T00:00:00,completed,user_003,"{""priority"": ""high"", ""auto_generated"": true}"
|
||||
REM-00471,PER-0158,INT-001178,Update on road widening approval status,2026-01-26T00:00:00,overdue,user_003,"{""priority"": ""high"", ""auto_generated"": false}"
|
||||
REM-00472,PER-0158,INT-001179,Schedule family meeting for final decision,2026-02-13T00:00:00,completed,user_003,"{""priority"": ""low"", ""auto_generated"": true}"
|
||||
REM-00473,PER-0158,INT-001181,Confirm site visit for Saturday,2026-03-01T00:00:00,completed,user_003,"{""priority"": ""low"", ""auto_generated"": true}"
|
||||
REM-00474,PER-0159,INT-001184,Confirm site visit for Saturday,2024-06-28T00:00:00,pending,user_004,"{""priority"": ""low"", ""auto_generated"": false}"
|
||||
REM-00475,PER-0159,INT-001188,Call back regarding east-facing unit availability,2024-08-18T00:00:00,completed,user_004,"{""priority"": ""low"", ""auto_generated"": true}"
|
||||
REM-00476,PER-0159,INT-001189,Follow up on Siddha Suburbia Bungalow pricing discussion,2024-09-01T00:00:00,overdue,user_004,"{""priority"": ""low"", ""auto_generated"": true}"
|
||||
REM-00477,PER-0159,INT-001191,Schedule family meeting for final decision,2024-09-23T00:00:00,completed,user_004,"{""priority"": ""high"", ""auto_generated"": true}"
|
||||
REM-00478,PER-0160,INT-001192,Update on road widening approval status,2025-10-06T00:00:00,pending,user_003,"{""priority"": ""medium"", ""auto_generated"": true}"
|
||||
REM-00479,PER-0160,INT-001194,Update on road widening approval status,2025-11-02T00:00:00,overdue,user_003,"{""priority"": ""medium"", ""auto_generated"": false}"
|
||||
REM-00480,PER-0160,INT-001196,Send home loan documents checklist,2025-12-08T00:00:00,pending,user_003,"{""priority"": ""low"", ""auto_generated"": true}"
|
||||
REM-00481,PER-0160,INT-001199,Confirm site visit for Saturday,2026-01-04T00:00:00,completed,user_003,"{""priority"": ""low"", ""auto_generated"": true}"
|
||||
REM-00482,PER-0161,INT-001204,Confirm site visit for Saturday,2024-10-17T00:00:00,completed,user_004,"{""priority"": ""low"", ""auto_generated"": false}"
|
||||
REM-00483,PER-0162,INT-001206,Schedule family meeting for final decision,2024-09-17T00:00:00,pending,user_005,"{""priority"": ""high"", ""auto_generated"": false}"
|
||||
REM-00484,PER-0162,INT-001207,Confirm site visit for Saturday,2024-09-14T00:00:00,overdue,user_005,"{""priority"": ""low"", ""auto_generated"": true}"
|
||||
REM-00485,PER-0162,INT-001209,Call back regarding east-facing unit availability,2024-09-30T00:00:00,completed,user_005,"{""priority"": ""high"", ""auto_generated"": false}"
|
||||
REM-00486,PER-0162,INT-001217,Confirm site visit for Saturday,2024-11-29T00:00:00,overdue,user_005,"{""priority"": ""medium"", ""auto_generated"": true}"
|
||||
REM-00487,PER-0163,INT-001220,Call back regarding east-facing unit availability,2025-08-07T00:00:00,overdue,user_004,"{""priority"": ""low"", ""auto_generated"": true}"
|
||||
REM-00488,PER-0164,INT-001225,Share competitor comparison sheet,2024-06-09T00:00:00,overdue,user_004,"{""priority"": ""low"", ""auto_generated"": true}"
|
||||
REM-00489,PER-0164,INT-001226,Call back regarding east-facing unit availability,2024-06-14T00:00:00,completed,user_004,"{""priority"": ""high"", ""auto_generated"": false}"
|
||||
REM-00490,PER-0164,INT-001227,Confirm site visit for Saturday,2024-06-27T00:00:00,completed,user_004,"{""priority"": ""medium"", ""auto_generated"": false}"
|
||||
REM-00491,PER-0164,INT-001228,Send home loan documents checklist,2024-07-23T00:00:00,completed,user_004,"{""priority"": ""medium"", ""auto_generated"": true}"
|
||||
REM-00492,PER-0164,INT-001230,Send revised payment plan,2024-08-03T00:00:00,completed,user_004,"{""priority"": ""high"", ""auto_generated"": true}"
|
||||
REM-00493,PER-0164,INT-001231,Confirm site visit for Saturday,2024-08-14T00:00:00,completed,user_004,"{""priority"": ""medium"", ""auto_generated"": false}"
|
||||
REM-00494,PER-0165,INT-001232,Confirm site visit for Saturday,2025-11-15T00:00:00,completed,user_003,"{""priority"": ""high"", ""auto_generated"": false}"
|
||||
REM-00495,PER-0166,INT-001237,Send home loan documents checklist,2024-09-10T00:00:00,completed,user_001,"{""priority"": ""high"", ""auto_generated"": false}"
|
||||
REM-00496,PER-0166,INT-001238,Call back regarding east-facing unit availability,2024-09-26T00:00:00,completed,user_001,"{""priority"": ""medium"", ""auto_generated"": true}"
|
||||
REM-00497,PER-0166,INT-001239,Call back regarding east-facing unit availability,2024-09-24T00:00:00,pending,user_001,"{""priority"": ""low"", ""auto_generated"": true}"
|
||||
REM-00498,PER-0167,INT-001242,Follow up on Siddha Suburbia Bungalow pricing discussion,2025-10-01T00:00:00,completed,user_005,"{""priority"": ""low"", ""auto_generated"": false}"
|
||||
REM-00499,PER-0167,INT-001244,Follow up on Siddha Suburbia Bungalow pricing discussion,2025-10-18T00:00:00,completed,user_005,"{""priority"": ""medium"", ""auto_generated"": false}"
|
||||
REM-00500,PER-0168,INT-001246,Update on road widening approval status,2025-09-03T00:00:00,completed,user_005,"{""priority"": ""medium"", ""auto_generated"": false}"
|
||||
REM-00501,PER-0168,INT-001248,Schedule family meeting for final decision,2025-10-29T00:00:00,completed,user_005,"{""priority"": ""low"", ""auto_generated"": false}"
|
||||
REM-00502,PER-0169,INT-001252,Follow up on Merlin Avana pricing discussion,2025-03-02T00:00:00,completed,user_005,"{""priority"": ""high"", ""auto_generated"": false}"
|
||||
REM-00503,PER-0169,INT-001254,Schedule family meeting for final decision,2025-03-26T00:00:00,completed,user_005,"{""priority"": ""medium"", ""auto_generated"": false}"
|
||||
REM-00504,PER-0170,INT-001258,Send home loan documents checklist,2026-03-13T00:00:00,overdue,user_003,"{""priority"": ""low"", ""auto_generated"": false}"
|
||||
REM-00505,PER-0170,INT-001259,Follow up on Atri Aqua pricing discussion,2026-04-04T00:00:00,overdue,user_003,"{""priority"": ""low"", ""auto_generated"": false}"
|
||||
REM-00506,PER-0170,INT-001260,Share competitor comparison sheet,2026-04-10T00:00:00,completed,user_003,"{""priority"": ""medium"", ""auto_generated"": false}"
|
||||
REM-00507,PER-0170,INT-001261,Send home loan documents checklist,2026-04-17T00:00:00,completed,user_003,"{""priority"": ""high"", ""auto_generated"": true}"
|
||||
REM-00508,PER-0171,INT-001267,Call back regarding east-facing unit availability,2024-02-17T00:00:00,pending,user_003,"{""priority"": ""high"", ""auto_generated"": true}"
|
||||
REM-00509,PER-0171,INT-001269,Confirm site visit for Saturday,2024-04-06T00:00:00,completed,user_003,"{""priority"": ""high"", ""auto_generated"": true}"
|
||||
REM-00510,PER-0172,INT-001271,Call back regarding east-facing unit availability,2024-04-05T00:00:00,pending,user_003,"{""priority"": ""high"", ""auto_generated"": false}"
|
||||
REM-00511,PER-0173,INT-001278,Confirm site visit for Saturday,2024-08-28T00:00:00,completed,user_004,"{""priority"": ""medium"", ""auto_generated"": false}"
|
||||
REM-00512,PER-0173,INT-001281,Follow up on Siddha Suburbia Bungalow pricing discussion,2024-09-12T00:00:00,completed,user_004,"{""priority"": ""high"", ""auto_generated"": false}"
|
||||
REM-00513,PER-0173,INT-001282,Share competitor comparison sheet,2024-09-14T00:00:00,completed,user_004,"{""priority"": ""medium"", ""auto_generated"": false}"
|
||||
REM-00514,PER-0173,INT-001283,Follow up on Siddha Suburbia Bungalow pricing discussion,2024-09-27T00:00:00,completed,user_004,"{""priority"": ""low"", ""auto_generated"": true}"
|
||||
REM-00515,PER-0173,INT-001287,Send home loan documents checklist,2024-10-30T00:00:00,completed,user_004,"{""priority"": ""high"", ""auto_generated"": false}"
|
||||
REM-00516,PER-0174,INT-001288,Send home loan documents checklist,2024-05-19T00:00:00,overdue,user_002,"{""priority"": ""low"", ""auto_generated"": false}"
|
||||
REM-00517,PER-0174,INT-001290,Call back regarding east-facing unit availability,2024-05-31T00:00:00,completed,user_002,"{""priority"": ""high"", ""auto_generated"": true}"
|
||||
REM-00518,PER-0174,INT-001291,Call back regarding east-facing unit availability,2024-06-09T00:00:00,completed,user_002,"{""priority"": ""high"", ""auto_generated"": false}"
|
||||
REM-00519,PER-0174,INT-001292,Update on road widening approval status,2024-06-24T00:00:00,completed,user_002,"{""priority"": ""high"", ""auto_generated"": false}"
|
||||
REM-00520,PER-0174,INT-001293,Call back regarding east-facing unit availability,2024-06-26T00:00:00,completed,user_002,"{""priority"": ""low"", ""auto_generated"": true}"
|
||||
REM-00521,PER-0174,INT-001295,Share competitor comparison sheet,2024-07-12T00:00:00,completed,user_002,"{""priority"": ""medium"", ""auto_generated"": false}"
|
||||
REM-00522,PER-0174,INT-001298,Send revised payment plan,2024-08-08T00:00:00,overdue,user_002,"{""priority"": ""high"", ""auto_generated"": false}"
|
||||
REM-00523,PER-0175,INT-001299,Call back regarding east-facing unit availability,2024-11-07T00:00:00,pending,user_005,"{""priority"": ""low"", ""auto_generated"": false}"
|
||||
REM-00524,PER-0175,INT-001303,Send revised payment plan,2024-11-30T00:00:00,completed,user_005,"{""priority"": ""medium"", ""auto_generated"": true}"
|
||||
REM-00525,PER-0175,INT-001304,Send revised payment plan,2024-12-27T00:00:00,completed,user_005,"{""priority"": ""medium"", ""auto_generated"": false}"
|
||||
REM-00526,PER-0175,INT-001305,Schedule family meeting for final decision,2025-01-10T00:00:00,overdue,user_005,"{""priority"": ""medium"", ""auto_generated"": true}"
|
||||
REM-00527,PER-0175,INT-001306,Share competitor comparison sheet,2025-01-11T00:00:00,completed,user_005,"{""priority"": ""high"", ""auto_generated"": false}"
|
||||
REM-00528,PER-0175,INT-001307,Call back regarding east-facing unit availability,2025-01-15T00:00:00,pending,user_005,"{""priority"": ""high"", ""auto_generated"": true}"
|
||||
REM-00529,PER-0176,INT-001311,Follow up on Siddha Suburbia Bungalow pricing discussion,2025-11-20T00:00:00,overdue,user_005,"{""priority"": ""low"", ""auto_generated"": false}"
|
||||
REM-00530,PER-0176,INT-001312,Send home loan documents checklist,2026-01-03T00:00:00,overdue,user_005,"{""priority"": ""high"", ""auto_generated"": true}"
|
||||
REM-00531,PER-0176,INT-001313,Send revised payment plan,2026-01-31T00:00:00,overdue,user_005,"{""priority"": ""low"", ""auto_generated"": false}"
|
||||
REM-00532,PER-0177,INT-001317,Call back regarding east-facing unit availability,2025-11-23T00:00:00,completed,user_004,"{""priority"": ""medium"", ""auto_generated"": true}"
|
||||
REM-00533,PER-0178,INT-001319,Schedule family meeting for final decision,2025-05-23T00:00:00,completed,user_001,"{""priority"": ""medium"", ""auto_generated"": false}"
|
||||
REM-00534,PER-0178,INT-001322,Send home loan documents checklist,2025-06-18T00:00:00,pending,user_001,"{""priority"": ""low"", ""auto_generated"": true}"
|
||||
REM-00535,PER-0178,INT-001323,Confirm site visit for Saturday,2025-06-21T00:00:00,overdue,user_001,"{""priority"": ""high"", ""auto_generated"": true}"
|
||||
REM-00536,PER-0178,INT-001331,Call back regarding east-facing unit availability,2025-08-08T00:00:00,completed,user_001,"{""priority"": ""high"", ""auto_generated"": false}"
|
||||
REM-00537,PER-0178,INT-001333,Share competitor comparison sheet,2025-08-20T00:00:00,completed,user_001,"{""priority"": ""high"", ""auto_generated"": true}"
|
||||
REM-00538,PER-0179,INT-001337,Call back regarding east-facing unit availability,2024-03-02T00:00:00,pending,user_005,"{""priority"": ""low"", ""auto_generated"": false}"
|
||||
REM-00539,PER-0179,INT-001339,Share competitor comparison sheet,2024-03-31T00:00:00,pending,user_005,"{""priority"": ""low"", ""auto_generated"": true}"
|
||||
REM-00540,PER-0180,INT-001340,Update on road widening approval status,2024-04-20T00:00:00,completed,user_003,"{""priority"": ""low"", ""auto_generated"": true}"
|
||||
REM-00541,PER-0180,INT-001345,Send home loan documents checklist,2024-05-30T00:00:00,completed,user_003,"{""priority"": ""low"", ""auto_generated"": true}"
|
||||
REM-00542,PER-0180,INT-001346,Schedule family meeting for final decision,2024-05-31T00:00:00,pending,user_003,"{""priority"": ""low"", ""auto_generated"": true}"
|
||||
REM-00543,PER-0181,INT-001353,Send revised payment plan,2025-09-19T00:00:00,completed,user_005,"{""priority"": ""medium"", ""auto_generated"": true}"
|
||||
REM-00544,PER-0181,INT-001357,Call back regarding east-facing unit availability,2025-10-20T00:00:00,completed,user_005,"{""priority"": ""high"", ""auto_generated"": false}"
|
||||
REM-00545,PER-0181,INT-001362,Schedule family meeting for final decision,2025-12-01T00:00:00,completed,user_005,"{""priority"": ""high"", ""auto_generated"": false}"
|
||||
REM-00546,PER-0181,INT-001364,Send revised payment plan,2025-12-06T00:00:00,completed,user_005,"{""priority"": ""low"", ""auto_generated"": false}"
|
||||
REM-00547,PER-0182,INT-001365,Follow up on Atri Surya Toron pricing discussion,2024-12-12T00:00:00,completed,user_001,"{""priority"": ""high"", ""auto_generated"": false}"
|
||||
REM-00548,PER-0182,INT-001366,Confirm site visit for Saturday,2024-12-20T00:00:00,pending,user_001,"{""priority"": ""low"", ""auto_generated"": false}"
|
||||
REM-00549,PER-0182,INT-001367,Schedule family meeting for final decision,2025-01-02T00:00:00,overdue,user_001,"{""priority"": ""low"", ""auto_generated"": true}"
|
||||
REM-00550,PER-0182,INT-001368,Call back regarding east-facing unit availability,2025-01-07T00:00:00,completed,user_001,"{""priority"": ""low"", ""auto_generated"": false}"
|
||||
REM-00551,PER-0183,INT-001371,Confirm site visit for Saturday,2025-08-09T00:00:00,completed,user_001,"{""priority"": ""high"", ""auto_generated"": true}"
|
||||
REM-00552,PER-0183,INT-001374,Schedule family meeting for final decision,2025-09-03T00:00:00,completed,user_001,"{""priority"": ""low"", ""auto_generated"": false}"
|
||||
REM-00553,PER-0183,INT-001376,Follow up on Atri Aqua pricing discussion,2025-09-05T00:00:00,completed,user_001,"{""priority"": ""medium"", ""auto_generated"": true}"
|
||||
REM-00554,PER-0183,INT-001377,Share competitor comparison sheet,2025-09-13T00:00:00,completed,user_001,"{""priority"": ""high"", ""auto_generated"": false}"
|
||||
REM-00555,PER-0183,INT-001379,Schedule family meeting for final decision,2025-09-29T00:00:00,overdue,user_001,"{""priority"": ""high"", ""auto_generated"": false}"
|
||||
REM-00556,PER-0183,INT-001381,Follow up on Atri Aqua pricing discussion,2025-10-08T00:00:00,overdue,user_001,"{""priority"": ""low"", ""auto_generated"": false}"
|
||||
REM-00557,PER-0184,INT-001388,Call back regarding east-facing unit availability,2025-12-23T00:00:00,pending,user_002,"{""priority"": ""high"", ""auto_generated"": true}"
|
||||
REM-00558,PER-0184,INT-001391,Follow up on Godrej Blue pricing discussion,2026-01-13T00:00:00,completed,user_002,"{""priority"": ""high"", ""auto_generated"": true}"
|
||||
REM-00559,PER-0184,INT-001392,Share competitor comparison sheet,2026-01-20T00:00:00,completed,user_002,"{""priority"": ""medium"", ""auto_generated"": true}"
|
||||
REM-00560,PER-0184,INT-001394,Send revised payment plan,2026-02-04T00:00:00,pending,user_002,"{""priority"": ""low"", ""auto_generated"": true}"
|
||||
REM-00561,PER-0185,INT-001397,Send home loan documents checklist,2025-11-19T00:00:00,completed,user_002,"{""priority"": ""medium"", ""auto_generated"": false}"
|
||||
REM-00562,PER-0185,INT-001399,Share competitor comparison sheet,2025-12-08T00:00:00,completed,user_002,"{""priority"": ""medium"", ""auto_generated"": false}"
|
||||
REM-00563,PER-0185,INT-001401,Share competitor comparison sheet,2025-12-15T00:00:00,pending,user_002,"{""priority"": ""medium"", ""auto_generated"": true}"
|
||||
REM-00564,PER-0185,INT-001402,Schedule family meeting for final decision,2025-12-18T00:00:00,overdue,user_002,"{""priority"": ""medium"", ""auto_generated"": true}"
|
||||
REM-00565,PER-0185,INT-001403,Send revised payment plan,2026-01-10T00:00:00,completed,user_002,"{""priority"": ""high"", ""auto_generated"": true}"
|
||||
REM-00566,PER-0185,INT-001404,Follow up on Merlin Avana pricing discussion,2026-01-14T00:00:00,overdue,user_002,"{""priority"": ""high"", ""auto_generated"": false}"
|
||||
REM-00567,PER-0185,INT-001407,Follow up on Merlin Avana pricing discussion,2026-01-26T00:00:00,overdue,user_002,"{""priority"": ""high"", ""auto_generated"": true}"
|
||||
REM-00568,PER-0186,INT-001409,Send revised payment plan,2025-01-08T00:00:00,completed,user_004,"{""priority"": ""low"", ""auto_generated"": false}"
|
||||
REM-00569,PER-0186,INT-001410,Send home loan documents checklist,2025-01-09T00:00:00,completed,user_004,"{""priority"": ""low"", ""auto_generated"": false}"
|
||||
REM-00570,PER-0186,INT-001412,Call back regarding east-facing unit availability,2025-01-18T00:00:00,pending,user_004,"{""priority"": ""medium"", ""auto_generated"": true}"
|
||||
REM-00571,PER-0186,INT-001419,Update on road widening approval status,2025-02-21T00:00:00,completed,user_004,"{""priority"": ""low"", ""auto_generated"": false}"
|
||||
REM-00572,PER-0187,INT-001422,Call back regarding east-facing unit availability,2024-08-31T00:00:00,overdue,user_005,"{""priority"": ""medium"", ""auto_generated"": true}"
|
||||
REM-00573,PER-0187,INT-001423,Schedule family meeting for final decision,2024-09-05T00:00:00,pending,user_005,"{""priority"": ""high"", ""auto_generated"": false}"
|
||||
REM-00574,PER-0187,INT-001426,Confirm site visit for Saturday,2024-09-20T00:00:00,completed,user_005,"{""priority"": ""low"", ""auto_generated"": false}"
|
||||
REM-00575,PER-0187,INT-001427,Confirm site visit for Saturday,2024-09-19T00:00:00,pending,user_005,"{""priority"": ""low"", ""auto_generated"": true}"
|
||||
REM-00576,PER-0187,INT-001429,Share competitor comparison sheet,2024-09-27T00:00:00,completed,user_005,"{""priority"": ""low"", ""auto_generated"": false}"
|
||||
REM-00577,PER-0188,INT-001435,Send home loan documents checklist,2025-01-14T00:00:00,pending,user_002,"{""priority"": ""low"", ""auto_generated"": true}"
|
||||
REM-00578,PER-0188,INT-001436,Send revised payment plan,2025-01-12T00:00:00,completed,user_002,"{""priority"": ""high"", ""auto_generated"": false}"
|
||||
REM-00579,PER-0188,INT-001438,Update on road widening approval status,2025-01-27T00:00:00,pending,user_002,"{""priority"": ""low"", ""auto_generated"": true}"
|
||||
REM-00580,PER-0188,INT-001439,Schedule family meeting for final decision,2025-02-01T00:00:00,completed,user_002,"{""priority"": ""high"", ""auto_generated"": false}"
|
||||
REM-00581,PER-0188,INT-001443,Follow up on Siddha Suburbia Bungalow pricing discussion,2025-02-14T00:00:00,completed,user_002,"{""priority"": ""low"", ""auto_generated"": true}"
|
||||
REM-00582,PER-0188,INT-001446,Update on road widening approval status,2025-03-12T00:00:00,completed,user_002,"{""priority"": ""medium"", ""auto_generated"": true}"
|
||||
REM-00583,PER-0189,INT-001450,Follow up on Shriram Grand City pricing discussion,2025-12-18T00:00:00,overdue,user_003,"{""priority"": ""medium"", ""auto_generated"": false}"
|
||||
REM-00584,PER-0189,INT-001452,Share competitor comparison sheet,2025-12-29T00:00:00,completed,user_003,"{""priority"": ""high"", ""auto_generated"": false}"
|
||||
REM-00585,PER-0189,INT-001458,Schedule family meeting for final decision,2026-01-23T00:00:00,completed,user_003,"{""priority"": ""medium"", ""auto_generated"": false}"
|
||||
REM-00586,PER-0189,INT-001460,Update on road widening approval status,2026-02-14T00:00:00,completed,user_003,"{""priority"": ""medium"", ""auto_generated"": true}"
|
||||
REM-00587,PER-0189,INT-001461,Call back regarding east-facing unit availability,2026-02-18T00:00:00,overdue,user_003,"{""priority"": ""low"", ""auto_generated"": true}"
|
||||
REM-00588,PER-0190,INT-001463,Send home loan documents checklist,2025-07-24T00:00:00,completed,user_001,"{""priority"": ""low"", ""auto_generated"": false}"
|
||||
REM-00589,PER-0190,INT-001465,Share competitor comparison sheet,2025-08-04T00:00:00,completed,user_001,"{""priority"": ""medium"", ""auto_generated"": false}"
|
||||
REM-00590,PER-0190,INT-001466,Send home loan documents checklist,2025-08-09T00:00:00,overdue,user_001,"{""priority"": ""high"", ""auto_generated"": false}"
|
||||
REM-00591,PER-0192,INT-001479,Send revised payment plan,2026-03-08T00:00:00,completed,user_005,"{""priority"": ""low"", ""auto_generated"": true}"
|
||||
REM-00592,PER-0192,INT-001482,Send home loan documents checklist,2026-03-23T00:00:00,completed,user_005,"{""priority"": ""low"", ""auto_generated"": true}"
|
||||
REM-00593,PER-0192,INT-001483,Follow up on Siddha Suburbia Bungalow pricing discussion,2026-04-01T00:00:00,pending,user_005,"{""priority"": ""high"", ""auto_generated"": true}"
|
||||
REM-00594,PER-0192,INT-001484,Confirm site visit for Saturday,2026-04-07T00:00:00,completed,user_005,"{""priority"": ""medium"", ""auto_generated"": true}"
|
||||
REM-00595,PER-0193,INT-001488,Update on road widening approval status,2024-08-13T00:00:00,pending,user_002,"{""priority"": ""low"", ""auto_generated"": true}"
|
||||
REM-00596,PER-0193,INT-001490,Update on road widening approval status,2024-08-15T00:00:00,completed,user_002,"{""priority"": ""high"", ""auto_generated"": true}"
|
||||
REM-00597,PER-0193,INT-001491,Confirm site visit for Saturday,2024-08-22T00:00:00,completed,user_002,"{""priority"": ""high"", ""auto_generated"": false}"
|
||||
REM-00598,PER-0193,INT-001493,Update on road widening approval status,2024-08-31T00:00:00,completed,user_002,"{""priority"": ""low"", ""auto_generated"": false}"
|
||||
REM-00599,PER-0194,INT-001501,Share competitor comparison sheet,2024-12-02T00:00:00,completed,user_003,"{""priority"": ""medium"", ""auto_generated"": false}"
|
||||
REM-00600,PER-0195,INT-001502,Send home loan documents checklist,2024-12-22T00:00:00,completed,user_003,"{""priority"": ""high"", ""auto_generated"": false}"
|
||||
REM-00601,PER-0195,INT-001507,Schedule family meeting for final decision,2025-02-22T00:00:00,completed,user_003,"{""priority"": ""high"", ""auto_generated"": true}"
|
||||
REM-00602,PER-0195,INT-001509,Schedule family meeting for final decision,2025-03-16T00:00:00,completed,user_003,"{""priority"": ""medium"", ""auto_generated"": true}"
|
||||
REM-00603,PER-0196,INT-001512,Schedule family meeting for final decision,2024-01-22T00:00:00,overdue,user_002,"{""priority"": ""high"", ""auto_generated"": false}"
|
||||
REM-00604,PER-0196,INT-001514,Send home loan documents checklist,2024-02-04T00:00:00,completed,user_002,"{""priority"": ""medium"", ""auto_generated"": true}"
|
||||
REM-00605,PER-0196,INT-001517,Confirm site visit for Saturday,2024-02-27T00:00:00,completed,user_002,"{""priority"": ""medium"", ""auto_generated"": true}"
|
||||
REM-00606,PER-0196,INT-001518,Send home loan documents checklist,2024-02-26T00:00:00,completed,user_002,"{""priority"": ""high"", ""auto_generated"": true}"
|
||||
REM-00607,PER-0196,INT-001519,Send home loan documents checklist,2024-03-11T00:00:00,completed,user_002,"{""priority"": ""medium"", ""auto_generated"": true}"
|
||||
REM-00608,PER-0197,INT-001524,Update on road widening approval status,2024-10-07T00:00:00,overdue,user_001,"{""priority"": ""low"", ""auto_generated"": false}"
|
||||
REM-00609,PER-0197,INT-001525,Update on road widening approval status,2024-10-26T00:00:00,completed,user_001,"{""priority"": ""medium"", ""auto_generated"": true}"
|
||||
REM-00610,PER-0198,INT-001528,Confirm site visit for Saturday,2025-05-18T00:00:00,completed,user_003,"{""priority"": ""medium"", ""auto_generated"": false}"
|
||||
REM-00611,PER-0198,INT-001531,Share competitor comparison sheet,2025-05-26T00:00:00,overdue,user_003,"{""priority"": ""high"", ""auto_generated"": true}"
|
||||
REM-00612,PER-0198,INT-001532,Share competitor comparison sheet,2025-06-10T00:00:00,pending,user_003,"{""priority"": ""low"", ""auto_generated"": true}"
|
||||
REM-00613,PER-0199,INT-001536,Schedule family meeting for final decision,2025-12-30T00:00:00,completed,user_003,"{""priority"": ""medium"", ""auto_generated"": false}"
|
||||
REM-00614,PER-0199,INT-001538,Confirm site visit for Saturday,2026-03-07T00:00:00,completed,user_003,"{""priority"": ""low"", ""auto_generated"": true}"
|
||||
REM-00615,PER-0199,INT-001539,Share competitor comparison sheet,2026-03-08T00:00:00,overdue,user_003,"{""priority"": ""high"", ""auto_generated"": true}"
|
||||
REM-00616,PER-0200,INT-001543,Confirm site visit for Saturday,2025-01-12T00:00:00,completed,user_001,"{""priority"": ""medium"", ""auto_generated"": true}"
|
||||
REM-00617,PER-0201,INT-001546,Call back regarding east-facing unit availability,2024-09-07T00:00:00,completed,user_002,"{""priority"": ""medium"", ""auto_generated"": true}"
|
||||
REM-00618,PER-0201,INT-001547,Schedule family meeting for final decision,2024-09-16T00:00:00,completed,user_002,"{""priority"": ""medium"", ""auto_generated"": false}"
|
||||
REM-00619,PER-0201,INT-001549,Update on road widening approval status,2024-09-21T00:00:00,completed,user_002,"{""priority"": ""high"", ""auto_generated"": true}"
|
||||
REM-00620,PER-0202,INT-001553,Confirm site visit for Saturday,2024-04-16T00:00:00,overdue,user_001,"{""priority"": ""high"", ""auto_generated"": false}"
|
||||
REM-00621,PER-0202,INT-001556,Send home loan documents checklist,2024-06-14T00:00:00,completed,user_001,"{""priority"": ""high"", ""auto_generated"": false}"
|
||||
REM-00622,PER-0203,INT-001558,Schedule family meeting for final decision,2025-08-27T00:00:00,completed,user_003,"{""priority"": ""high"", ""auto_generated"": false}"
|
||||
REM-00623,PER-0203,INT-001561,Send revised payment plan,2025-09-25T00:00:00,completed,user_003,"{""priority"": ""low"", ""auto_generated"": false}"
|
||||
REM-00624,PER-0204,INT-001564,Send home loan documents checklist,2024-07-27T00:00:00,overdue,user_005,"{""priority"": ""medium"", ""auto_generated"": false}"
|
||||
REM-00625,PER-0204,INT-001566,Share competitor comparison sheet,2024-08-08T00:00:00,overdue,user_005,"{""priority"": ""high"", ""auto_generated"": false}"
|
||||
REM-00626,PER-0204,INT-001569,Confirm site visit for Saturday,2024-09-03T00:00:00,completed,user_005,"{""priority"": ""high"", ""auto_generated"": false}"
|
||||
REM-00627,PER-0204,INT-001572,Share competitor comparison sheet,2024-10-08T00:00:00,pending,user_005,"{""priority"": ""high"", ""auto_generated"": false}"
|
||||
REM-00628,PER-0205,INT-001574,Call back regarding east-facing unit availability,2025-05-11T00:00:00,completed,user_001,"{""priority"": ""high"", ""auto_generated"": false}"
|
||||
REM-00629,PER-0205,INT-001575,Schedule family meeting for final decision,2025-05-12T00:00:00,completed,user_001,"{""priority"": ""medium"", ""auto_generated"": false}"
|
||||
REM-00630,PER-0205,INT-001577,Confirm site visit for Saturday,2025-05-20T00:00:00,completed,user_001,"{""priority"": ""low"", ""auto_generated"": true}"
|
||||
REM-00631,PER-0205,INT-001579,Send home loan documents checklist,2025-06-18T00:00:00,completed,user_001,"{""priority"": ""medium"", ""auto_generated"": true}"
|
||||
REM-00632,PER-0206,INT-001584,Send revised payment plan,2024-06-17T00:00:00,completed,user_003,"{""priority"": ""high"", ""auto_generated"": true}"
|
||||
REM-00633,PER-0206,INT-001586,Update on road widening approval status,2024-07-21T00:00:00,completed,user_003,"{""priority"": ""medium"", ""auto_generated"": true}"
|
||||
REM-00634,PER-0206,INT-001589,Call back regarding east-facing unit availability,2024-08-31T00:00:00,completed,user_003,"{""priority"": ""medium"", ""auto_generated"": false}"
|
||||
REM-00635,PER-0207,INT-001591,Confirm site visit for Saturday,2025-09-25T00:00:00,completed,user_003,"{""priority"": ""low"", ""auto_generated"": false}"
|
||||
REM-00636,PER-0207,INT-001592,Send home loan documents checklist,2025-09-27T00:00:00,overdue,user_003,"{""priority"": ""low"", ""auto_generated"": true}"
|
||||
REM-00637,PER-0207,INT-001594,Follow up on Ambuja Utpaala pricing discussion,2025-10-14T00:00:00,completed,user_003,"{""priority"": ""low"", ""auto_generated"": false}"
|
||||
REM-00638,PER-0207,INT-001595,Update on road widening approval status,2025-10-26T00:00:00,pending,user_003,"{""priority"": ""medium"", ""auto_generated"": false}"
|
||||
REM-00639,PER-0208,INT-001601,Confirm site visit for Saturday,2025-02-15T00:00:00,completed,user_002,"{""priority"": ""low"", ""auto_generated"": true}"
|
||||
REM-00640,PER-0208,INT-001602,Update on road widening approval status,2025-02-22T00:00:00,completed,user_002,"{""priority"": ""high"", ""auto_generated"": true}"
|
||||
REM-00641,PER-0208,INT-001603,Schedule family meeting for final decision,2025-03-30T00:00:00,completed,user_002,"{""priority"": ""low"", ""auto_generated"": false}"
|
||||
REM-00642,PER-0208,INT-001604,Schedule family meeting for final decision,2025-04-04T00:00:00,completed,user_002,"{""priority"": ""high"", ""auto_generated"": true}"
|
||||
REM-00643,PER-0209,INT-001606,Schedule family meeting for final decision,2024-02-28T00:00:00,overdue,user_004,"{""priority"": ""low"", ""auto_generated"": false}"
|
||||
REM-00644,PER-0209,INT-001608,Update on road widening approval status,2024-03-02T00:00:00,completed,user_004,"{""priority"": ""low"", ""auto_generated"": false}"
|
||||
REM-00645,PER-0209,INT-001609,Follow up on Ambuja Utpaala pricing discussion,2024-03-17T00:00:00,completed,user_004,"{""priority"": ""medium"", ""auto_generated"": false}"
|
||||
REM-00646,PER-0209,INT-001611,Schedule family meeting for final decision,2024-03-28T00:00:00,completed,user_004,"{""priority"": ""low"", ""auto_generated"": false}"
|
||||
REM-00647,PER-0209,INT-001612,Confirm site visit for Saturday,2024-04-12T00:00:00,overdue,user_004,"{""priority"": ""high"", ""auto_generated"": false}"
|
||||
REM-00648,PER-0210,INT-001617,Update on road widening approval status,2025-10-01T00:00:00,completed,user_002,"{""priority"": ""low"", ""auto_generated"": false}"
|
||||
REM-00649,PER-0210,INT-001618,Send revised payment plan,2025-12-09T00:00:00,pending,user_002,"{""priority"": ""medium"", ""auto_generated"": false}"
|
||||
REM-00650,PER-0211,INT-001624,Confirm site visit for Saturday,2025-10-30T00:00:00,completed,user_005,"{""priority"": ""medium"", ""auto_generated"": true}"
|
||||
REM-00651,PER-0212,INT-001629,Share competitor comparison sheet,2024-06-02T00:00:00,pending,user_005,"{""priority"": ""medium"", ""auto_generated"": true}"
|
||||
REM-00652,PER-0212,INT-001630,Share competitor comparison sheet,2024-06-13T00:00:00,completed,user_005,"{""priority"": ""medium"", ""auto_generated"": false}"
|
||||
REM-00653,PER-0212,INT-001631,Share competitor comparison sheet,2024-06-14T00:00:00,completed,user_005,"{""priority"": ""low"", ""auto_generated"": false}"
|
||||
REM-00654,PER-0213,INT-001636,Confirm site visit for Saturday,2024-05-16T00:00:00,overdue,user_002,"{""priority"": ""high"", ""auto_generated"": false}"
|
||||
REM-00655,PER-0213,INT-001638,Schedule family meeting for final decision,2024-06-01T00:00:00,overdue,user_002,"{""priority"": ""high"", ""auto_generated"": false}"
|
||||
REM-00656,PER-0213,INT-001639,Call back regarding east-facing unit availability,2024-06-08T00:00:00,completed,user_002,"{""priority"": ""high"", ""auto_generated"": false}"
|
||||
REM-00657,PER-0213,INT-001644,Confirm site visit for Saturday,2024-07-29T00:00:00,pending,user_002,"{""priority"": ""low"", ""auto_generated"": false}"
|
||||
REM-00658,PER-0214,INT-001645,Send home loan documents checklist,2025-08-18T00:00:00,overdue,user_005,"{""priority"": ""low"", ""auto_generated"": false}"
|
||||
REM-00659,PER-0214,INT-001648,Schedule family meeting for final decision,2025-09-08T00:00:00,completed,user_005,"{""priority"": ""medium"", ""auto_generated"": true}"
|
||||
REM-00660,PER-0215,INT-001652,Share competitor comparison sheet,2025-05-20T00:00:00,completed,user_001,"{""priority"": ""high"", ""auto_generated"": true}"
|
||||
REM-00661,PER-0215,INT-001653,Share competitor comparison sheet,2025-05-24T00:00:00,pending,user_001,"{""priority"": ""low"", ""auto_generated"": false}"
|
||||
REM-00662,PER-0215,INT-001659,Confirm site visit for Saturday,2025-08-08T00:00:00,completed,user_001,"{""priority"": ""medium"", ""auto_generated"": true}"
|
||||
REM-00663,PER-0216,INT-001662,Share competitor comparison sheet,2025-03-07T00:00:00,completed,user_005,"{""priority"": ""low"", ""auto_generated"": true}"
|
||||
REM-00664,PER-0217,INT-001666,Send home loan documents checklist,2024-09-02T00:00:00,pending,user_005,"{""priority"": ""high"", ""auto_generated"": false}"
|
||||
REM-00665,PER-0217,INT-001667,Confirm site visit for Saturday,2024-10-13T00:00:00,overdue,user_005,"{""priority"": ""medium"", ""auto_generated"": true}"
|
||||
REM-00666,PER-0218,INT-001669,Confirm site visit for Saturday,2026-01-25T00:00:00,completed,user_005,"{""priority"": ""high"", ""auto_generated"": false}"
|
||||
REM-00667,PER-0218,INT-001670,Send revised payment plan,2026-01-27T00:00:00,completed,user_005,"{""priority"": ""medium"", ""auto_generated"": true}"
|
||||
REM-00668,PER-0218,INT-001673,Confirm site visit for Saturday,2026-02-08T00:00:00,completed,user_005,"{""priority"": ""medium"", ""auto_generated"": true}"
|
||||
REM-00669,PER-0218,INT-001675,Update on road widening approval status,2026-02-09T00:00:00,pending,user_005,"{""priority"": ""low"", ""auto_generated"": false}"
|
||||
REM-00670,PER-0218,INT-001676,Send revised payment plan,2026-03-01T00:00:00,completed,user_005,"{""priority"": ""low"", ""auto_generated"": true}"
|
||||
REM-00671,PER-0218,INT-001678,Send home loan documents checklist,2026-03-10T00:00:00,completed,user_005,"{""priority"": ""low"", ""auto_generated"": true}"
|
||||
REM-00672,PER-0218,INT-001680,Confirm site visit for Saturday,2026-04-08T00:00:00,completed,user_005,"{""priority"": ""medium"", ""auto_generated"": true}"
|
||||
REM-00673,PER-0218,INT-001681,Update on road widening approval status,2026-04-14T00:00:00,overdue,user_005,"{""priority"": ""low"", ""auto_generated"": true}"
|
||||
REM-00674,PER-0219,INT-001683,Send revised payment plan,2025-07-26T00:00:00,completed,user_004,"{""priority"": ""medium"", ""auto_generated"": true}"
|
||||
REM-00675,PER-0219,INT-001685,Schedule family meeting for final decision,2025-08-06T00:00:00,completed,user_004,"{""priority"": ""high"", ""auto_generated"": true}"
|
||||
REM-00676,PER-0219,INT-001687,Confirm site visit for Saturday,2025-08-17T00:00:00,completed,user_004,"{""priority"": ""low"", ""auto_generated"": true}"
|
||||
REM-00677,PER-0219,INT-001688,Send revised payment plan,2025-08-23T00:00:00,completed,user_004,"{""priority"": ""high"", ""auto_generated"": false}"
|
||||
REM-00678,PER-0219,INT-001689,Send revised payment plan,2025-09-02T00:00:00,completed,user_004,"{""priority"": ""medium"", ""auto_generated"": false}"
|
||||
REM-00679,PER-0220,INT-001698,Confirm site visit for Saturday,2024-11-04T00:00:00,completed,user_003,"{""priority"": ""high"", ""auto_generated"": false}"
|
||||
REM-00680,PER-0220,INT-001700,Call back regarding east-facing unit availability,2024-11-16T00:00:00,pending,user_003,"{""priority"": ""medium"", ""auto_generated"": true}"
|
||||
REM-00681,PER-0220,INT-001701,Call back regarding east-facing unit availability,2024-12-05T00:00:00,overdue,user_003,"{""priority"": ""low"", ""auto_generated"": false}"
|
||||
REM-00682,PER-0221,INT-001705,Update on road widening approval status,2024-03-28T00:00:00,completed,user_005,"{""priority"": ""low"", ""auto_generated"": false}"
|
||||
REM-00683,PER-0221,INT-001706,Follow up on Godrej Elevate pricing discussion,2024-04-04T00:00:00,pending,user_005,"{""priority"": ""high"", ""auto_generated"": true}"
|
||||
REM-00684,PER-0222,INT-001709,Update on road widening approval status,2026-01-23T00:00:00,pending,user_002,"{""priority"": ""low"", ""auto_generated"": false}"
|
||||
REM-00685,PER-0222,INT-001710,Confirm site visit for Saturday,2026-01-21T00:00:00,completed,user_002,"{""priority"": ""medium"", ""auto_generated"": true}"
|
||||
REM-00686,PER-0223,INT-001714,Call back regarding east-facing unit availability,2025-05-22T00:00:00,completed,user_001,"{""priority"": ""high"", ""auto_generated"": false}"
|
||||
REM-00687,PER-0223,INT-001715,Call back regarding east-facing unit availability,2025-06-03T00:00:00,overdue,user_001,"{""priority"": ""high"", ""auto_generated"": true}"
|
||||
REM-00688,PER-0223,INT-001716,Send revised payment plan,2025-06-07T00:00:00,overdue,user_001,"{""priority"": ""high"", ""auto_generated"": true}"
|
||||
REM-00689,PER-0223,INT-001717,Follow up on Sugam Prakriti pricing discussion,2025-06-04T00:00:00,completed,user_001,"{""priority"": ""medium"", ""auto_generated"": true}"
|
||||
REM-00690,PER-0223,INT-001722,Schedule family meeting for final decision,2025-08-01T00:00:00,overdue,user_001,"{""priority"": ""low"", ""auto_generated"": true}"
|
||||
REM-00691,PER-0223,INT-001724,Send revised payment plan,2025-08-03T00:00:00,completed,user_001,"{""priority"": ""low"", ""auto_generated"": false}"
|
||||
REM-00692,PER-0224,INT-001726,Send home loan documents checklist,2025-10-04T00:00:00,pending,user_002,"{""priority"": ""medium"", ""auto_generated"": false}"
|
||||
REM-00693,PER-0224,INT-001727,Share competitor comparison sheet,2025-10-03T00:00:00,completed,user_002,"{""priority"": ""high"", ""auto_generated"": false}"
|
||||
REM-00694,PER-0224,INT-001730,Update on road widening approval status,2025-10-31T00:00:00,overdue,user_002,"{""priority"": ""low"", ""auto_generated"": false}"
|
||||
REM-00695,PER-0224,INT-001731,Send home loan documents checklist,2025-11-01T00:00:00,overdue,user_002,"{""priority"": ""medium"", ""auto_generated"": false}"
|
||||
REM-00696,PER-0224,INT-001733,Send home loan documents checklist,2025-11-25T00:00:00,overdue,user_002,"{""priority"": ""high"", ""auto_generated"": false}"
|
||||
REM-00697,PER-0224,INT-001734,Follow up on Siddha Suburbia Bungalow pricing discussion,2025-12-06T00:00:00,completed,user_002,"{""priority"": ""medium"", ""auto_generated"": true}"
|
||||
REM-00698,PER-0225,INT-001735,Send home loan documents checklist,2024-12-05T00:00:00,pending,user_003,"{""priority"": ""high"", ""auto_generated"": true}"
|
||||
REM-00699,PER-0225,INT-001737,Call back regarding east-facing unit availability,2024-12-14T00:00:00,completed,user_003,"{""priority"": ""low"", ""auto_generated"": false}"
|
||||
REM-00700,PER-0225,INT-001742,Confirm site visit for Saturday,2025-01-08T00:00:00,completed,user_003,"{""priority"": ""medium"", ""auto_generated"": false}"
|
||||
REM-00701,PER-0225,INT-001744,Follow up on Godrej Elevate pricing discussion,2025-01-07T00:00:00,overdue,user_003,"{""priority"": ""high"", ""auto_generated"": true}"
|
||||
REM-00702,PER-0225,INT-001745,Follow up on Godrej Elevate pricing discussion,2025-01-10T00:00:00,completed,user_003,"{""priority"": ""medium"", ""auto_generated"": false}"
|
||||
REM-00703,PER-0226,INT-001749,Share competitor comparison sheet,2024-07-13T00:00:00,completed,user_004,"{""priority"": ""medium"", ""auto_generated"": true}"
|
||||
REM-00704,PER-0226,INT-001752,Send home loan documents checklist,2024-07-21T00:00:00,completed,user_004,"{""priority"": ""low"", ""auto_generated"": true}"
|
||||
REM-00705,PER-0226,INT-001755,Share competitor comparison sheet,2024-08-13T00:00:00,completed,user_004,"{""priority"": ""low"", ""auto_generated"": true}"
|
||||
REM-00706,PER-0227,INT-001759,Send home loan documents checklist,2025-08-19T00:00:00,completed,user_005,"{""priority"": ""medium"", ""auto_generated"": false}"
|
||||
REM-00707,PER-0228,INT-001762,Call back regarding east-facing unit availability,2025-02-26T00:00:00,overdue,user_003,"{""priority"": ""medium"", ""auto_generated"": true}"
|
||||
REM-00708,PER-0228,INT-001763,Send revised payment plan,2025-03-27T00:00:00,overdue,user_003,"{""priority"": ""low"", ""auto_generated"": true}"
|
||||
REM-00709,PER-0228,INT-001764,Send revised payment plan,2025-03-25T00:00:00,completed,user_003,"{""priority"": ""high"", ""auto_generated"": true}"
|
||||
REM-00710,PER-0228,INT-001765,Share competitor comparison sheet,2025-04-09T00:00:00,completed,user_003,"{""priority"": ""high"", ""auto_generated"": true}"
|
||||
REM-00711,PER-0228,INT-001766,Share competitor comparison sheet,2025-04-19T00:00:00,completed,user_003,"{""priority"": ""low"", ""auto_generated"": false}"
|
||||
REM-00712,PER-0228,INT-001768,Send home loan documents checklist,2025-05-08T00:00:00,completed,user_003,"{""priority"": ""low"", ""auto_generated"": false}"
|
||||
REM-00713,PER-0229,INT-001769,Confirm site visit for Saturday,2025-12-23T00:00:00,pending,user_001,"{""priority"": ""high"", ""auto_generated"": true}"
|
||||
REM-00714,PER-0229,INT-001772,Confirm site visit for Saturday,2026-01-07T00:00:00,pending,user_001,"{""priority"": ""low"", ""auto_generated"": false}"
|
||||
REM-00715,PER-0229,INT-001774,Call back regarding east-facing unit availability,2026-01-18T00:00:00,overdue,user_001,"{""priority"": ""medium"", ""auto_generated"": true}"
|
||||
REM-00716,PER-0230,INT-001781,Send revised payment plan,2025-07-08T00:00:00,overdue,user_004,"{""priority"": ""high"", ""auto_generated"": false}"
|
||||
REM-00717,PER-0231,INT-001784,Share competitor comparison sheet,2025-11-20T00:00:00,completed,user_003,"{""priority"": ""low"", ""auto_generated"": true}"
|
||||
REM-00718,PER-0231,INT-001787,Confirm site visit for Saturday,2025-12-06T00:00:00,completed,user_003,"{""priority"": ""medium"", ""auto_generated"": false}"
|
||||
REM-00719,PER-0232,INT-001791,Call back regarding east-facing unit availability,2025-06-05T00:00:00,pending,user_004,"{""priority"": ""low"", ""auto_generated"": true}"
|
||||
REM-00720,PER-0232,INT-001794,Confirm site visit for Saturday,2025-08-03T00:00:00,overdue,user_004,"{""priority"": ""low"", ""auto_generated"": true}"
|
||||
REM-00721,PER-0233,INT-001797,Send home loan documents checklist,2025-11-04T00:00:00,pending,user_003,"{""priority"": ""medium"", ""auto_generated"": true}"
|
||||
REM-00722,PER-0234,INT-001800,Update on road widening approval status,2025-07-16T00:00:00,completed,user_003,"{""priority"": ""high"", ""auto_generated"": true}"
|
||||
REM-00723,PER-0234,INT-001801,Send home loan documents checklist,2025-07-13T00:00:00,completed,user_003,"{""priority"": ""medium"", ""auto_generated"": false}"
|
||||
REM-00724,PER-0236,INT-001809,Update on road widening approval status,2025-08-29T00:00:00,completed,user_002,"{""priority"": ""low"", ""auto_generated"": false}"
|
||||
REM-00725,PER-0236,INT-001813,Schedule family meeting for final decision,2025-09-30T00:00:00,pending,user_002,"{""priority"": ""high"", ""auto_generated"": false}"
|
||||
REM-00726,PER-0237,INT-001817,Follow up on Siddha Sky Waterfront pricing discussion,2025-01-22T00:00:00,completed,user_004,"{""priority"": ""medium"", ""auto_generated"": true}"
|
||||
REM-00727,PER-0237,INT-001818,Send revised payment plan,2025-01-21T00:00:00,completed,user_004,"{""priority"": ""low"", ""auto_generated"": true}"
|
||||
REM-00728,PER-0237,INT-001820,Confirm site visit for Saturday,2025-01-31T00:00:00,completed,user_004,"{""priority"": ""medium"", ""auto_generated"": false}"
|
||||
REM-00729,PER-0237,INT-001821,Update on road widening approval status,2025-02-10T00:00:00,completed,user_004,"{""priority"": ""low"", ""auto_generated"": true}"
|
||||
REM-00730,PER-0239,INT-001829,Send home loan documents checklist,2024-11-25T00:00:00,completed,user_002,"{""priority"": ""medium"", ""auto_generated"": false}"
|
||||
REM-00731,PER-0239,INT-001830,Schedule family meeting for final decision,2024-12-22T00:00:00,overdue,user_002,"{""priority"": ""medium"", ""auto_generated"": false}"
|
||||
REM-00732,PER-0240,INT-001831,Send home loan documents checklist,2024-11-18T00:00:00,completed,user_004,"{""priority"": ""high"", ""auto_generated"": false}"
|
||||
REM-00733,PER-0240,INT-001833,Schedule family meeting for final decision,2024-12-29T00:00:00,completed,user_004,"{""priority"": ""high"", ""auto_generated"": true}"
|
||||
REM-00734,PER-0241,INT-001835,Send revised payment plan,2026-01-12T00:00:00,completed,user_002,"{""priority"": ""medium"", ""auto_generated"": true}"
|
||||
REM-00735,PER-0241,INT-001836,Schedule family meeting for final decision,2026-01-15T00:00:00,completed,user_002,"{""priority"": ""medium"", ""auto_generated"": true}"
|
||||
REM-00736,PER-0241,INT-001837,Call back regarding east-facing unit availability,2026-01-24T00:00:00,completed,user_002,"{""priority"": ""medium"", ""auto_generated"": true}"
|
||||
REM-00737,PER-0242,INT-001840,Send revised payment plan,2025-05-06T00:00:00,completed,user_002,"{""priority"": ""medium"", ""auto_generated"": false}"
|
||||
REM-00738,PER-0242,INT-001842,Confirm site visit for Saturday,2025-05-18T00:00:00,overdue,user_002,"{""priority"": ""low"", ""auto_generated"": false}"
|
||||
REM-00739,PER-0242,INT-001843,Update on road widening approval status,2025-05-24T00:00:00,overdue,user_002,"{""priority"": ""medium"", ""auto_generated"": false}"
|
||||
REM-00740,PER-0242,INT-001844,Call back regarding east-facing unit availability,2025-07-05T00:00:00,completed,user_002,"{""priority"": ""low"", ""auto_generated"": false}"
|
||||
REM-00741,PER-0242,INT-001845,Send home loan documents checklist,2025-07-10T00:00:00,completed,user_002,"{""priority"": ""medium"", ""auto_generated"": false}"
|
||||
REM-00742,PER-0243,INT-001847,Share competitor comparison sheet,2024-03-22T00:00:00,pending,user_003,"{""priority"": ""low"", ""auto_generated"": true}"
|
||||
REM-00743,PER-0244,INT-001854,Share competitor comparison sheet,2025-06-06T00:00:00,completed,user_001,"{""priority"": ""low"", ""auto_generated"": true}"
|
||||
REM-00744,PER-0244,INT-001856,Update on road widening approval status,2025-07-05T00:00:00,completed,user_001,"{""priority"": ""medium"", ""auto_generated"": false}"
|
||||
REM-00745,PER-0245,INT-001859,Update on road widening approval status,2024-02-22T00:00:00,pending,user_004,"{""priority"": ""low"", ""auto_generated"": true}"
|
||||
REM-00746,PER-0245,INT-001861,Send revised payment plan,2024-03-05T00:00:00,pending,user_004,"{""priority"": ""low"", ""auto_generated"": true}"
|
||||
REM-00747,PER-0246,INT-001868,Update on road widening approval status,2025-06-23T00:00:00,completed,user_004,"{""priority"": ""high"", ""auto_generated"": true}"
|
||||
REM-00748,PER-0247,INT-001871,Share competitor comparison sheet,2024-08-23T00:00:00,completed,user_005,"{""priority"": ""low"", ""auto_generated"": true}"
|
||||
REM-00749,PER-0247,INT-001873,Send home loan documents checklist,2024-09-21T00:00:00,overdue,user_005,"{""priority"": ""low"", ""auto_generated"": true}"
|
||||
REM-00750,PER-0247,INT-001875,Update on road widening approval status,2024-09-29T00:00:00,pending,user_005,"{""priority"": ""high"", ""auto_generated"": true}"
|
||||
REM-00751,PER-0247,INT-001876,Confirm site visit for Saturday,2024-10-07T00:00:00,completed,user_005,"{""priority"": ""medium"", ""auto_generated"": false}"
|
||||
REM-00752,PER-0248,INT-001882,Call back regarding east-facing unit availability,2025-09-14T00:00:00,completed,user_005,"{""priority"": ""medium"", ""auto_generated"": true}"
|
||||
REM-00753,PER-0249,INT-001883,Update on road widening approval status,2024-07-24T00:00:00,overdue,user_004,"{""priority"": ""medium"", ""auto_generated"": true}"
|
||||
REM-00754,PER-0249,INT-001884,Confirm site visit for Saturday,2024-07-30T00:00:00,overdue,user_004,"{""priority"": ""high"", ""auto_generated"": true}"
|
||||
REM-00755,PER-0249,INT-001885,Share competitor comparison sheet,2024-08-11T00:00:00,completed,user_004,"{""priority"": ""low"", ""auto_generated"": false}"
|
||||
REM-00756,PER-0249,INT-001887,Send home loan documents checklist,2024-08-27T00:00:00,completed,user_004,"{""priority"": ""medium"", ""auto_generated"": false}"
|
||||
REM-00757,PER-0249,INT-001892,Send home loan documents checklist,2024-09-27T00:00:00,completed,user_004,"{""priority"": ""low"", ""auto_generated"": false}"
|
||||
REM-00758,PER-0249,INT-001893,Share competitor comparison sheet,2024-09-28T00:00:00,completed,user_004,"{""priority"": ""medium"", ""auto_generated"": false}"
|
||||
REM-00759,PER-0250,INT-001896,Schedule family meeting for final decision,2025-06-14T00:00:00,completed,user_003,"{""priority"": ""high"", ""auto_generated"": false}"
|
||||
|
232
db assets/synthetic_crm_v1/csv/intel_transcripts.csv
Normal file
232
db assets/synthetic_crm_v1/csv/intel_transcripts.csv
Normal file
@@ -0,0 +1,232 @@
|
||||
transcript_id,call_id,language,full_text,speaker_segments_json,confidence
|
||||
TRX-00001,CAL-00001,en-IN,"Vikram: Hello Rohan, this is Vikram from Velocity regarding DTC Sojon. Rohan: Yes, tell me. Vikram: We have a new tower launch with pre-launch pricing. Are you still looking in Rajarhat? Rohan: Yes, what's the price? Vikram: Starting at 3.86 Cr for 3 BHK. Possession by August 2026. Rohan: That's good. Send me the details on WhatsApp. Vikram: Done. When can you visit? Rohan: This weekend. Vikram: I'll block Saturday 11 AM for you.","[{""speaker"": ""agent"", ""text"": ""Vikram: Hello Rohan, this is Vikram from Velocity regarding DTC Sojon."", ""start"": 0.0, ""end"": 3.48}, {""speaker"": ""client"", ""text"": ""Rohan: Yes, tell me."", ""start"": 4.78, ""end"": 7.11}, {""speaker"": ""agent"", ""text"": ""Vikram: We have a new tower launch with pre-launch pricing. Are you still looking in Rajarhat?"", ""start"": 8.06, ""end"": 11.61}, {""speaker"": ""client"", ""text"": ""Rohan: Yes, what's the price?"", ""start"": 12.68, ""end"": 20.57}, {""speaker"": ""agent"", ""text"": ""Vikram: Starting at 3.86 Cr for 3 BHK. Possession by August 2026."", ""start"": 22.53, ""end"": 28.96}, {""speaker"": ""client"", ""text"": ""Rohan: That's good. Send me the details on WhatsApp."", ""start"": 30.07, ""end"": 33.18}, {""speaker"": ""agent"", ""text"": ""Vikram: Done. When can you visit?"", ""start"": 33.82, ""end"": 39.42}, {""speaker"": ""client"", ""text"": ""Rohan: This weekend."", ""start"": 40.07, ""end"": 44.07}, {""speaker"": ""agent"", ""text"": ""Vikram: I'll block Saturday 11 AM for you."", ""start"": 45.9, ""end"": 52.71}]",0.86
|
||||
TRX-00002,CAL-00002,en-IN,"Priya: Hello Rohan, this is Priya from Velocity regarding DTC Sojon. Rohan: Hi, I was about to call you. Priya: Great minds! What were you thinking? Rohan: The price is still high. Can you match Atri Surya Toron's rate? Priya: I understand. Let me see what best I can do. Are you flexible on floor preference? Rohan: Not really. I want mid-floor east facing. Priya: That's our premium inventory. But for serious buyers, I can check for a corporate discount. Rohan: Please do. We're ready to close quickly. Priya: Will revert by tomorrow 2 PM.","[{""speaker"": ""agent"", ""text"": ""Priya: Hello Rohan, this is Priya from Velocity regarding DTC Sojon."", ""start"": 0.0, ""end"": 7.15}, {""speaker"": ""client"", ""text"": ""Rohan: Hi, I was about to call you."", ""start"": 8.64, ""end"": 10.94}, {""speaker"": ""agent"", ""text"": ""Priya: Great minds! What were you thinking?"", ""start"": 11.44, ""end"": 18.77}, {""speaker"": ""client"", ""text"": ""Rohan: The price is still high. Can you match Atri Surya Toron's rate?"", ""start"": 19.36, ""end"": 23.84}, {""speaker"": ""agent"", ""text"": ""Priya: I understand. Let me see what best I can do. Are you flexible on floor preference?"", ""start"": 25.67, ""end"": 30.22}, {""speaker"": ""client"", ""text"": ""Rohan: Not really. I want mid-floor east facing."", ""start"": 30.74, ""end"": 36.26}, {""speaker"": ""agent"", ""text"": ""Priya: That's our premium inventory. But for serious buyers, I can check for a corporate discount."", ""start"": 37.28, ""end"": 43.41}, {""speaker"": ""client"", ""text"": ""Rohan: Please do. We're ready to close quickly."", ""start"": 44.33, ""end"": 47.29}, {""speaker"": ""agent"", ""text"": ""Priya: Will revert by tomorrow 2 PM."", ""start"": 48.12, ""end"": 51.53}]",0.85
|
||||
TRX-00003,CAL-00003,en-IN,"Vikram: Hi Debjani, following up on your enquiry for Atri Surya Toron. Debjani: Yes, tell me. Vikram: We have a new tower launch with pre-launch pricing. Are you still looking in Rajarhat? Debjani: Yes, what's the price? Vikram: Starting at 3.91 Cr for 3 BHK. Possession by June 2026. Debjani: That's good. Send me the details on WhatsApp. Vikram: Done. When can you visit? Debjani: This weekend. Vikram: I'll block Saturday 11 AM for you.","[{""speaker"": ""agent"", ""text"": ""Vikram: Hi Debjani, following up on your enquiry for Atri Surya Toron."", ""start"": 0.0, ""end"": 6.14}, {""speaker"": ""client"", ""text"": ""Debjani: Yes, tell me."", ""start"": 6.79, ""end"": 13.99}, {""speaker"": ""agent"", ""text"": ""Vikram: We have a new tower launch with pre-launch pricing. Are you still looking in Rajarhat?"", ""start"": 14.8, ""end"": 17.42}, {""speaker"": ""client"", ""text"": ""Debjani: Yes, what's the price?"", ""start"": 19.4, ""end"": 22.72}, {""speaker"": ""agent"", ""text"": ""Vikram: Starting at 3.91 Cr for 3 BHK. Possession by June 2026."", ""start"": 23.55, ""end"": 25.62}, {""speaker"": ""client"", ""text"": ""Debjani: That's good. Send me the details on WhatsApp."", ""start"": 27.0, ""end"": 32.53}, {""speaker"": ""agent"", ""text"": ""Vikram: Done. When can you visit?"", ""start"": 33.7, ""end"": 39.38}, {""speaker"": ""client"", ""text"": ""Debjani: This weekend."", ""start"": 40.02, ""end"": 46.49}, {""speaker"": ""agent"", ""text"": ""Vikram: I'll block Saturday 11 AM for you."", ""start"": 48.4, ""end"": 52.06}]",0.93
|
||||
TRX-00004,CAL-00004,en-IN,"Ananya: Hello Debjani, this is Ananya from Velocity regarding Atri Surya Toron. Debjani: Yes, tell me. Ananya: We have a new tower launch with pre-launch pricing. Are you still looking in Rajarhat? Debjani: Yes, what's the price? Ananya: Starting at 5.35 Cr for 3 BHK. Possession by October 2026. Debjani: That's good. Send me the details on WhatsApp. Ananya: Done. When can you visit? Debjani: This weekend. Ananya: I'll block Saturday 11 AM for you.","[{""speaker"": ""agent"", ""text"": ""Ananya: Hello Debjani, this is Ananya from Velocity regarding Atri Surya Toron."", ""start"": 0.0, ""end"": 6.11}, {""speaker"": ""client"", ""text"": ""Debjani: Yes, tell me."", ""start"": 7.95, ""end"": 11.22}, {""speaker"": ""agent"", ""text"": ""Ananya: We have a new tower launch with pre-launch pricing. Are you still looking in Rajarhat?"", ""start"": 11.95, ""end"": 18.82}, {""speaker"": ""client"", ""text"": ""Debjani: Yes, what's the price?"", ""start"": 19.72, ""end"": 24.91}, {""speaker"": ""agent"", ""text"": ""Ananya: Starting at 5.35 Cr for 3 BHK. Possession by October 2026."", ""start"": 26.76, ""end"": 34.67}, {""speaker"": ""client"", ""text"": ""Debjani: That's good. Send me the details on WhatsApp."", ""start"": 36.49, ""end"": 42.46}, {""speaker"": ""agent"", ""text"": ""Ananya: Done. When can you visit?"", ""start"": 43.28, ""end"": 50.3}, {""speaker"": ""client"", ""text"": ""Debjani: This weekend."", ""start"": 51.47, ""end"": 59.03}, {""speaker"": ""agent"", ""text"": ""Ananya: I'll block Saturday 11 AM for you."", ""start"": 60.72, ""end"": 64.5}]",0.89
|
||||
TRX-00005,CAL-00008,en-IN,"Vikram: Good morning Nilesh, wanted to share some updates about Ambuja Utpaala. Nilesh: Yes, tell me. Vikram: We have a new tower launch with pre-launch pricing. Are you still looking in Tollygunge? Nilesh: Yes, what's the price? Vikram: Starting at 4.46 Cr for 3 BHK. Possession by August 2026. Nilesh: That's good. Send me the details on WhatsApp. Vikram: Done. When can you visit? Nilesh: This weekend. Vikram: I'll block Saturday 11 AM for you.","[{""speaker"": ""agent"", ""text"": ""Vikram: Good morning Nilesh, wanted to share some updates about Ambuja Utpaala."", ""start"": 0.0, ""end"": 3.23}, {""speaker"": ""client"", ""text"": ""Nilesh: Yes, tell me."", ""start"": 4.05, ""end"": 7.22}, {""speaker"": ""agent"", ""text"": ""Vikram: We have a new tower launch with pre-launch pricing. Are you still looking in Tollygunge?"", ""start"": 8.51, ""end"": 11.24}, {""speaker"": ""client"", ""text"": ""Nilesh: Yes, what's the price?"", ""start"": 12.83, ""end"": 15.37}, {""speaker"": ""agent"", ""text"": ""Vikram: Starting at 4.46 Cr for 3 BHK. Possession by August 2026."", ""start"": 16.94, ""end"": 24.21}, {""speaker"": ""client"", ""text"": ""Nilesh: That's good. Send me the details on WhatsApp."", ""start"": 24.9, ""end"": 30.46}, {""speaker"": ""agent"", ""text"": ""Vikram: Done. When can you visit?"", ""start"": 31.9, ""end"": 36.33}, {""speaker"": ""client"", ""text"": ""Nilesh: This weekend."", ""start"": 37.32, ""end"": 44.45}, {""speaker"": ""agent"", ""text"": ""Vikram: I'll block Saturday 11 AM for you."", ""start"": 46.03, ""end"": 51.7}]",0.93
|
||||
TRX-00006,CAL-00009,en-IN,"Priya: Hi Kunal, following up on your enquiry for Shriram Grand City. Kunal: Hi, I was about to call you. Priya: Great minds! What were you thinking? Kunal: The price is still high. Can you match Godrej Elevate's rate? Priya: I understand. Let me see what best I can do. Are you flexible on floor preference? Kunal: Not really. I want mid-floor east facing. Priya: That's our premium inventory. But for serious buyers, I can check for a corporate discount. Kunal: Please do. We're ready to close quickly. Priya: Will revert by tomorrow 2 PM.","[{""speaker"": ""agent"", ""text"": ""Priya: Hi Kunal, following up on your enquiry for Shriram Grand City."", ""start"": 0.0, ""end"": 5.05}, {""speaker"": ""client"", ""text"": ""Kunal: Hi, I was about to call you."", ""start"": 5.83, ""end"": 12.91}, {""speaker"": ""agent"", ""text"": ""Priya: Great minds! What were you thinking?"", ""start"": 14.05, ""end"": 19.78}, {""speaker"": ""client"", ""text"": ""Kunal: The price is still high. Can you match Godrej Elevate's rate?"", ""start"": 21.75, ""end"": 29.53}, {""speaker"": ""agent"", ""text"": ""Priya: I understand. Let me see what best I can do. Are you flexible on floor preference?"", ""start"": 30.21, ""end"": 36.97}, {""speaker"": ""client"", ""text"": ""Kunal: Not really. I want mid-floor east facing."", ""start"": 38.95, ""end"": 42.37}, {""speaker"": ""agent"", ""text"": ""Priya: That's our premium inventory. But for serious buyers, I can check for a corporate discount."", ""start"": 44.17, ""end"": 46.98}, {""speaker"": ""client"", ""text"": ""Kunal: Please do. We're ready to close quickly."", ""start"": 47.55, ""end"": 53.9}, {""speaker"": ""agent"", ""text"": ""Priya: Will revert by tomorrow 2 PM."", ""start"": 54.48, ""end"": 60.64}]",0.83
|
||||
TRX-00007,CAL-00010,en-IN,"Vikram: Good morning Kunal, wanted to share some updates about Sugam Prakriti. Kunal: Yes, tell me. Vikram: We have a new tower launch with pre-launch pricing. Are you still looking in Barasat? Kunal: Yes, what's the price? Vikram: Starting at 5.39 Cr for 3 BHK. Possession by August 2026. Kunal: That's good. Send me the details on WhatsApp. Vikram: Done. When can you visit? Kunal: This weekend. Vikram: I'll block Saturday 11 AM for you.","[{""speaker"": ""agent"", ""text"": ""Vikram: Good morning Kunal, wanted to share some updates about Sugam Prakriti."", ""start"": 0.0, ""end"": 4.72}, {""speaker"": ""client"", ""text"": ""Kunal: Yes, tell me."", ""start"": 6.38, ""end"": 13.61}, {""speaker"": ""agent"", ""text"": ""Vikram: We have a new tower launch with pre-launch pricing. Are you still looking in Barasat?"", ""start"": 15.53, ""end"": 17.84}, {""speaker"": ""client"", ""text"": ""Kunal: Yes, what's the price?"", ""start"": 18.89, ""end"": 26.26}, {""speaker"": ""agent"", ""text"": ""Vikram: Starting at 5.39 Cr for 3 BHK. Possession by August 2026."", ""start"": 27.42, ""end"": 29.77}, {""speaker"": ""client"", ""text"": ""Kunal: That's good. Send me the details on WhatsApp."", ""start"": 31.69, ""end"": 38.27}, {""speaker"": ""agent"", ""text"": ""Vikram: Done. When can you visit?"", ""start"": 39.38, ""end"": 41.5}, {""speaker"": ""client"", ""text"": ""Kunal: This weekend."", ""start"": 43.2, ""end"": 48.95}, {""speaker"": ""agent"", ""text"": ""Vikram: I'll block Saturday 11 AM for you."", ""start"": 50.16, ""end"": 55.55}]",0.83
|
||||
TRX-00008,CAL-00011,en-IN,"Priya: Hello Isha, this is Priya from Velocity regarding DTC Sojon. Isha: Hi, I was about to call you. Priya: Great minds! What were you thinking? Isha: The price is still high. Can you match Siddha Serena's rate? Priya: I understand. Let me see what best I can do. Are you flexible on floor preference? Isha: Not really. I want mid-floor east facing. Priya: That's our premium inventory. But for serious buyers, I can check for a corporate discount. Isha: Please do. We're ready to close quickly. Priya: Will revert by tomorrow 2 PM.","[{""speaker"": ""agent"", ""text"": ""Priya: Hello Isha, this is Priya from Velocity regarding DTC Sojon."", ""start"": 0.0, ""end"": 2.86}, {""speaker"": ""client"", ""text"": ""Isha: Hi, I was about to call you."", ""start"": 4.35, ""end"": 8.45}, {""speaker"": ""agent"", ""text"": ""Priya: Great minds! What were you thinking?"", ""start"": 9.96, ""end"": 17.2}, {""speaker"": ""client"", ""text"": ""Isha: The price is still high. Can you match Siddha Serena's rate?"", ""start"": 18.25, ""end"": 25.87}, {""speaker"": ""agent"", ""text"": ""Priya: I understand. Let me see what best I can do. Are you flexible on floor preference?"", ""start"": 27.4, ""end"": 29.84}, {""speaker"": ""client"", ""text"": ""Isha: Not really. I want mid-floor east facing."", ""start"": 31.31, ""end"": 34.15}, {""speaker"": ""agent"", ""text"": ""Priya: That's our premium inventory. But for serious buyers, I can check for a corporate discount."", ""start"": 35.5, ""end"": 43.23}, {""speaker"": ""client"", ""text"": ""Isha: Please do. We're ready to close quickly."", ""start"": 44.56, ""end"": 47.97}, {""speaker"": ""agent"", ""text"": ""Priya: Will revert by tomorrow 2 PM."", ""start"": 49.41, ""end"": 56.62}]",0.84
|
||||
TRX-00009,CAL-00014,en-IN,"Rahul: Hello Parth, this is Rahul from Velocity regarding DTC Sojon. Parth: Hi, I was about to call you. Rahul: Great minds! What were you thinking? Parth: The price is still high. Can you match Sugam Prakriti's rate? Rahul: I understand. Let me see what best I can do. Are you flexible on floor preference? Parth: Not really. I want mid-floor east facing. Rahul: That's our premium inventory. But for serious buyers, I can check for a corporate discount. Parth: Please do. We're ready to close quickly. Rahul: Will revert by tomorrow 2 PM.","[{""speaker"": ""agent"", ""text"": ""Rahul: Hello Parth, this is Rahul from Velocity regarding DTC Sojon."", ""start"": 0.0, ""end"": 3.95}, {""speaker"": ""client"", ""text"": ""Parth: Hi, I was about to call you."", ""start"": 5.13, ""end"": 7.78}, {""speaker"": ""agent"", ""text"": ""Rahul: Great minds! What were you thinking?"", ""start"": 9.37, ""end"": 16.27}, {""speaker"": ""client"", ""text"": ""Parth: The price is still high. Can you match Sugam Prakriti's rate?"", ""start"": 17.49, ""end"": 20.92}, {""speaker"": ""agent"", ""text"": ""Rahul: I understand. Let me see what best I can do. Are you flexible on floor preference?"", ""start"": 22.06, ""end"": 29.81}, {""speaker"": ""client"", ""text"": ""Parth: Not really. I want mid-floor east facing."", ""start"": 30.71, ""end"": 37.53}, {""speaker"": ""agent"", ""text"": ""Rahul: That's our premium inventory. But for serious buyers, I can check for a corporate discount."", ""start"": 38.45, ""end"": 45.11}, {""speaker"": ""client"", ""text"": ""Parth: Please do. We're ready to close quickly."", ""start"": 45.88, ""end"": 52.05}, {""speaker"": ""agent"", ""text"": ""Rahul: Will revert by tomorrow 2 PM."", ""start"": 53.34, ""end"": 60.35}]",0.82
|
||||
TRX-00010,CAL-00017,en-IN,"Ananya: Good morning Rahul, wanted to share some updates about Atri Surya Toron. Rahul: Yes, tell me. Ananya: We have a new tower launch with pre-launch pricing. Are you still looking in Rajarhat? Rahul: Yes, what's the price? Ananya: Starting at 5.76 Cr for 3 BHK. Possession by September 2026. Rahul: That's good. Send me the details on WhatsApp. Ananya: Done. When can you visit? Rahul: This weekend. Ananya: I'll block Saturday 11 AM for you.","[{""speaker"": ""agent"", ""text"": ""Ananya: Good morning Rahul, wanted to share some updates about Atri Surya Toron."", ""start"": 0.0, ""end"": 5.46}, {""speaker"": ""client"", ""text"": ""Rahul: Yes, tell me."", ""start"": 6.45, ""end"": 10.7}, {""speaker"": ""agent"", ""text"": ""Ananya: We have a new tower launch with pre-launch pricing. Are you still looking in Rajarhat?"", ""start"": 11.23, ""end"": 18.31}, {""speaker"": ""client"", ""text"": ""Rahul: Yes, what's the price?"", ""start"": 20.3, ""end"": 22.7}, {""speaker"": ""agent"", ""text"": ""Ananya: Starting at 5.76 Cr for 3 BHK. Possession by September 2026."", ""start"": 24.31, ""end"": 30.6}, {""speaker"": ""client"", ""text"": ""Rahul: That's good. Send me the details on WhatsApp."", ""start"": 31.96, ""end"": 37.46}, {""speaker"": ""agent"", ""text"": ""Ananya: Done. When can you visit?"", ""start"": 39.19, ""end"": 41.91}, {""speaker"": ""client"", ""text"": ""Rahul: This weekend."", ""start"": 42.82, ""end"": 46.78}, {""speaker"": ""agent"", ""text"": ""Ananya: I'll block Saturday 11 AM for you."", ""start"": 47.83, ""end"": 51.1}]",0.95
|
||||
TRX-00011,CAL-00019,en-IN,"Vikram: Hello Ananya, this is Vikram from Velocity regarding Atri Aqua. Ananya: Hi, I was about to call you. Vikram: Great minds! What were you thinking? Ananya: The price is still high. Can you match Siddha Suburbia Bungalow's rate? Vikram: I understand. Let me see what best I can do. Are you flexible on floor preference? Ananya: Not really. I want mid-floor east facing. Vikram: That's our premium inventory. But for serious buyers, I can check for a corporate discount. Ananya: Please do. We're ready to close quickly. Vikram: Will revert by tomorrow 2 PM.","[{""speaker"": ""agent"", ""text"": ""Vikram: Hello Ananya, this is Vikram from Velocity regarding Atri Aqua."", ""start"": 0.0, ""end"": 5.48}, {""speaker"": ""client"", ""text"": ""Ananya: Hi, I was about to call you."", ""start"": 6.34, ""end"": 11.62}, {""speaker"": ""agent"", ""text"": ""Vikram: Great minds! What were you thinking?"", ""start"": 12.13, ""end"": 15.46}, {""speaker"": ""client"", ""text"": ""Ananya: The price is still high. Can you match Siddha Suburbia Bungalow's rate?"", ""start"": 16.76, ""end"": 22.44}, {""speaker"": ""agent"", ""text"": ""Vikram: I understand. Let me see what best I can do. Are you flexible on floor preference?"", ""start"": 24.26, ""end"": 29.14}, {""speaker"": ""client"", ""text"": ""Ananya: Not really. I want mid-floor east facing."", ""start"": 31.13, ""end"": 36.58}, {""speaker"": ""agent"", ""text"": ""Vikram: That's our premium inventory. But for serious buyers, I can check for a corporate discount."", ""start"": 37.72, ""end"": 41.52}, {""speaker"": ""client"", ""text"": ""Ananya: Please do. We're ready to close quickly."", ""start"": 42.34, ""end"": 50.31}, {""speaker"": ""agent"", ""text"": ""Vikram: Will revert by tomorrow 2 PM."", ""start"": 51.18, ""end"": 58.07}]",0.94
|
||||
TRX-00012,CAL-00023,en-IN,"Ananya: Hello Rahul, this is Ananya from Velocity regarding Atri Surya Toron. Rahul: Yes, tell me. Ananya: We have a new tower launch with pre-launch pricing. Are you still looking in Rajarhat? Rahul: Yes, what's the price? Ananya: Starting at 7.75 Cr for 3 BHK. Possession by June 2026. Rahul: That's good. Send me the details on WhatsApp. Ananya: Done. When can you visit? Rahul: This weekend. Ananya: I'll block Saturday 11 AM for you.","[{""speaker"": ""agent"", ""text"": ""Ananya: Hello Rahul, this is Ananya from Velocity regarding Atri Surya Toron."", ""start"": 0.0, ""end"": 6.3}, {""speaker"": ""client"", ""text"": ""Rahul: Yes, tell me."", ""start"": 7.36, ""end"": 13.55}, {""speaker"": ""agent"", ""text"": ""Ananya: We have a new tower launch with pre-launch pricing. Are you still looking in Rajarhat?"", ""start"": 14.18, ""end"": 20.18}, {""speaker"": ""client"", ""text"": ""Rahul: Yes, what's the price?"", ""start"": 20.95, ""end"": 28.35}, {""speaker"": ""agent"", ""text"": ""Ananya: Starting at 7.75 Cr for 3 BHK. Possession by June 2026."", ""start"": 29.39, ""end"": 36.55}, {""speaker"": ""client"", ""text"": ""Rahul: That's good. Send me the details on WhatsApp."", ""start"": 38.19, ""end"": 42.1}, {""speaker"": ""agent"", ""text"": ""Ananya: Done. When can you visit?"", ""start"": 43.11, ""end"": 50.55}, {""speaker"": ""client"", ""text"": ""Rahul: This weekend."", ""start"": 51.57, ""end"": 57.1}, {""speaker"": ""agent"", ""text"": ""Ananya: I'll block Saturday 11 AM for you."", ""start"": 58.26, ""end"": 62.89}]",0.94
|
||||
TRX-00013,CAL-00027,en-IN,"Priya: Hi Asha, following up on your enquiry for Atri Aqua. Asha: Yes, tell me. Priya: We have a new tower launch with pre-launch pricing. Are you still looking in New Town? Asha: Yes, what's the price? Priya: Starting at 5.18 Cr for 3 BHK. Possession by July 2026. Asha: That's good. Send me the details on WhatsApp. Priya: Done. When can you visit? Asha: This weekend. Priya: I'll block Saturday 11 AM for you.","[{""speaker"": ""agent"", ""text"": ""Priya: Hi Asha, following up on your enquiry for Atri Aqua."", ""start"": 0.0, ""end"": 7.6}, {""speaker"": ""client"", ""text"": ""Asha: Yes, tell me."", ""start"": 8.53, ""end"": 13.79}, {""speaker"": ""agent"", ""text"": ""Priya: We have a new tower launch with pre-launch pricing. Are you still looking in New Town?"", ""start"": 14.59, ""end"": 21.49}, {""speaker"": ""client"", ""text"": ""Asha: Yes, what's the price?"", ""start"": 22.44, ""end"": 28.75}, {""speaker"": ""agent"", ""text"": ""Priya: Starting at 5.18 Cr for 3 BHK. Possession by July 2026."", ""start"": 29.33, ""end"": 35.95}, {""speaker"": ""client"", ""text"": ""Asha: That's good. Send me the details on WhatsApp."", ""start"": 36.79, ""end"": 38.97}, {""speaker"": ""agent"", ""text"": ""Priya: Done. When can you visit?"", ""start"": 40.44, ""end"": 47.37}, {""speaker"": ""client"", ""text"": ""Asha: This weekend."", ""start"": 49.25, ""end"": 53.46}, {""speaker"": ""agent"", ""text"": ""Priya: I'll block Saturday 11 AM for you."", ""start"": 54.79, ""end"": 58.47}]",0.87
|
||||
TRX-00014,CAL-00028,en-IN,"Vikram: Hello Meera, this is Vikram from Velocity regarding Siddha Serena. Meera: Hi, I was about to call you. Vikram: Great minds! What were you thinking? Meera: The price is still high. Can you match Atri Surya Toron's rate? Vikram: I understand. Let me see what best I can do. Are you flexible on floor preference? Meera: Not really. I want mid-floor east facing. Vikram: That's our premium inventory. But for serious buyers, I can check for a corporate discount. Meera: Please do. We're ready to close quickly. Vikram: Will revert by tomorrow 2 PM.","[{""speaker"": ""agent"", ""text"": ""Vikram: Hello Meera, this is Vikram from Velocity regarding Siddha Serena."", ""start"": 0.0, ""end"": 3.45}, {""speaker"": ""client"", ""text"": ""Meera: Hi, I was about to call you."", ""start"": 5.3, ""end"": 8.77}, {""speaker"": ""agent"", ""text"": ""Vikram: Great minds! What were you thinking?"", ""start"": 10.55, ""end"": 14.93}, {""speaker"": ""client"", ""text"": ""Meera: The price is still high. Can you match Atri Surya Toron's rate?"", ""start"": 16.62, ""end"": 18.66}, {""speaker"": ""agent"", ""text"": ""Vikram: I understand. Let me see what best I can do. Are you flexible on floor preference?"", ""start"": 20.16, ""end"": 26.79}, {""speaker"": ""client"", ""text"": ""Meera: Not really. I want mid-floor east facing."", ""start"": 28.27, ""end"": 30.7}, {""speaker"": ""agent"", ""text"": ""Vikram: That's our premium inventory. But for serious buyers, I can check for a corporate discount."", ""start"": 32.37, ""end"": 37.42}, {""speaker"": ""client"", ""text"": ""Meera: Please do. We're ready to close quickly."", ""start"": 38.35, ""end"": 43.19}, {""speaker"": ""agent"", ""text"": ""Vikram: Will revert by tomorrow 2 PM."", ""start"": 44.24, ""end"": 50.98}]",0.86
|
||||
TRX-00015,CAL-00030,en-IN,"Rahul: Hello Kunal, this is Rahul from Velocity regarding Godrej Elevate. Kunal: Yes, tell me. Rahul: We have a new tower launch with pre-launch pricing. Are you still looking in Dum Dum? Kunal: Yes, what's the price? Rahul: Starting at 2.97 Cr for 3 BHK. Possession by July 2026. Kunal: That's good. Send me the details on WhatsApp. Rahul: Done. When can you visit? Kunal: This weekend. Rahul: I'll block Saturday 11 AM for you.","[{""speaker"": ""agent"", ""text"": ""Rahul: Hello Kunal, this is Rahul from Velocity regarding Godrej Elevate."", ""start"": 0.0, ""end"": 2.25}, {""speaker"": ""client"", ""text"": ""Kunal: Yes, tell me."", ""start"": 3.8, ""end"": 10.64}, {""speaker"": ""agent"", ""text"": ""Rahul: We have a new tower launch with pre-launch pricing. Are you still looking in Dum Dum?"", ""start"": 12.26, ""end"": 16.98}, {""speaker"": ""client"", ""text"": ""Kunal: Yes, what's the price?"", ""start"": 17.56, ""end"": 19.77}, {""speaker"": ""agent"", ""text"": ""Rahul: Starting at 2.97 Cr for 3 BHK. Possession by July 2026."", ""start"": 21.22, ""end"": 23.84}, {""speaker"": ""client"", ""text"": ""Kunal: That's good. Send me the details on WhatsApp."", ""start"": 25.8, ""end"": 28.86}, {""speaker"": ""agent"", ""text"": ""Rahul: Done. When can you visit?"", ""start"": 29.84, ""end"": 34.81}, {""speaker"": ""client"", ""text"": ""Kunal: This weekend."", ""start"": 35.56, ""end"": 42.06}, {""speaker"": ""agent"", ""text"": ""Rahul: I'll block Saturday 11 AM for you."", ""start"": 42.93, ""end"": 45.06}]",0.84
|
||||
TRX-00016,CAL-00033,en-IN,"Priya: Hello Vikram, this is Priya from Velocity regarding Godrej Blue. Vikram: Yes, tell me. Priya: We have a new tower launch with pre-launch pricing. Are you still looking in New Town? Vikram: Yes, what's the price? Priya: Starting at 4.4 Cr for 3 BHK. Possession by September 2026. Vikram: That's good. Send me the details on WhatsApp. Priya: Done. When can you visit? Vikram: This weekend. Priya: I'll block Saturday 11 AM for you.","[{""speaker"": ""agent"", ""text"": ""Priya: Hello Vikram, this is Priya from Velocity regarding Godrej Blue."", ""start"": 0.0, ""end"": 6.14}, {""speaker"": ""client"", ""text"": ""Vikram: Yes, tell me."", ""start"": 6.71, ""end"": 10.01}, {""speaker"": ""agent"", ""text"": ""Priya: We have a new tower launch with pre-launch pricing. Are you still looking in New Town?"", ""start"": 11.97, ""end"": 19.47}, {""speaker"": ""client"", ""text"": ""Vikram: Yes, what's the price?"", ""start"": 20.82, ""end"": 23.36}, {""speaker"": ""agent"", ""text"": ""Priya: Starting at 4.4 Cr for 3 BHK. Possession by September 2026."", ""start"": 25.16, ""end"": 29.6}, {""speaker"": ""client"", ""text"": ""Vikram: That's good. Send me the details on WhatsApp."", ""start"": 31.01, ""end"": 37.15}, {""speaker"": ""agent"", ""text"": ""Priya: Done. When can you visit?"", ""start"": 37.8, ""end"": 40.46}, {""speaker"": ""client"", ""text"": ""Vikram: This weekend."", ""start"": 41.79, ""end"": 46.32}, {""speaker"": ""agent"", ""text"": ""Priya: I'll block Saturday 11 AM for you."", ""start"": 46.85, ""end"": 48.87}]",0.95
|
||||
TRX-00017,CAL-00034,en-IN,"Rahul: Hi Vikram, following up on your enquiry for Godrej Blue. Vikram: Yes, tell me. Rahul: We have a new tower launch with pre-launch pricing. Are you still looking in New Town? Vikram: Yes, what's the price? Rahul: Starting at 2.57 Cr for 3 BHK. Possession by August 2026. Vikram: That's good. Send me the details on WhatsApp. Rahul: Done. When can you visit? Vikram: This weekend. Rahul: I'll block Saturday 11 AM for you.","[{""speaker"": ""agent"", ""text"": ""Rahul: Hi Vikram, following up on your enquiry for Godrej Blue."", ""start"": 0.0, ""end"": 7.39}, {""speaker"": ""client"", ""text"": ""Vikram: Yes, tell me."", ""start"": 8.72, ""end"": 14.85}, {""speaker"": ""agent"", ""text"": ""Rahul: We have a new tower launch with pre-launch pricing. Are you still looking in New Town?"", ""start"": 16.74, ""end"": 22.7}, {""speaker"": ""client"", ""text"": ""Vikram: Yes, what's the price?"", ""start"": 24.05, ""end"": 28.44}, {""speaker"": ""agent"", ""text"": ""Rahul: Starting at 2.57 Cr for 3 BHK. Possession by August 2026."", ""start"": 29.98, ""end"": 34.6}, {""speaker"": ""client"", ""text"": ""Vikram: That's good. Send me the details on WhatsApp."", ""start"": 35.47, ""end"": 43.42}, {""speaker"": ""agent"", ""text"": ""Rahul: Done. When can you visit?"", ""start"": 44.23, ""end"": 50.27}, {""speaker"": ""client"", ""text"": ""Vikram: This weekend."", ""start"": 52.1, ""end"": 56.54}, {""speaker"": ""agent"", ""text"": ""Rahul: I'll block Saturday 11 AM for you."", ""start"": 58.16, ""end"": 65.46}]",0.95
|
||||
TRX-00018,CAL-00037,en-IN,"Vikram: Hi Sonal, following up on your enquiry for Siddha Serena. Sonal: Yes, tell me. Vikram: We have a new tower launch with pre-launch pricing. Are you still looking in New Town? Sonal: Yes, what's the price? Vikram: Starting at 6.38 Cr for 3 BHK. Possession by October 2026. Sonal: That's good. Send me the details on WhatsApp. Vikram: Done. When can you visit? Sonal: This weekend. Vikram: I'll block Saturday 11 AM for you.","[{""speaker"": ""agent"", ""text"": ""Vikram: Hi Sonal, following up on your enquiry for Siddha Serena."", ""start"": 0.0, ""end"": 7.0}, {""speaker"": ""client"", ""text"": ""Sonal: Yes, tell me."", ""start"": 8.52, ""end"": 11.03}, {""speaker"": ""agent"", ""text"": ""Vikram: We have a new tower launch with pre-launch pricing. Are you still looking in New Town?"", ""start"": 12.42, ""end"": 15.44}, {""speaker"": ""client"", ""text"": ""Sonal: Yes, what's the price?"", ""start"": 16.39, ""end"": 23.05}, {""speaker"": ""agent"", ""text"": ""Vikram: Starting at 6.38 Cr for 3 BHK. Possession by October 2026."", ""start"": 23.99, ""end"": 29.68}, {""speaker"": ""client"", ""text"": ""Sonal: That's good. Send me the details on WhatsApp."", ""start"": 30.87, ""end"": 38.33}, {""speaker"": ""agent"", ""text"": ""Vikram: Done. When can you visit?"", ""start"": 39.39, ""end"": 45.2}, {""speaker"": ""client"", ""text"": ""Sonal: This weekend."", ""start"": 46.56, ""end"": 53.01}, {""speaker"": ""agent"", ""text"": ""Vikram: I'll block Saturday 11 AM for you."", ""start"": 54.77, ""end"": 59.42}]",0.92
|
||||
TRX-00019,CAL-00040,en-IN,"Rahul: Good morning Abhishek, wanted to share some updates about Atri Aqua. Abhishek: Yes, tell me. Rahul: We have a new tower launch with pre-launch pricing. Are you still looking in New Town? Abhishek: Yes, what's the price? Rahul: Starting at 6.81 Cr for 3 BHK. Possession by September 2026. Abhishek: That's good. Send me the details on WhatsApp. Rahul: Done. When can you visit? Abhishek: This weekend. Rahul: I'll block Saturday 11 AM for you.","[{""speaker"": ""agent"", ""text"": ""Rahul: Good morning Abhishek, wanted to share some updates about Atri Aqua."", ""start"": 0.0, ""end"": 4.83}, {""speaker"": ""client"", ""text"": ""Abhishek: Yes, tell me."", ""start"": 5.6, ""end"": 11.17}, {""speaker"": ""agent"", ""text"": ""Rahul: We have a new tower launch with pre-launch pricing. Are you still looking in New Town?"", ""start"": 13.16, ""end"": 17.22}, {""speaker"": ""client"", ""text"": ""Abhishek: Yes, what's the price?"", ""start"": 18.1, ""end"": 24.94}, {""speaker"": ""agent"", ""text"": ""Rahul: Starting at 6.81 Cr for 3 BHK. Possession by September 2026."", ""start"": 25.82, ""end"": 28.28}, {""speaker"": ""client"", ""text"": ""Abhishek: That's good. Send me the details on WhatsApp."", ""start"": 30.12, ""end"": 37.88}, {""speaker"": ""agent"", ""text"": ""Rahul: Done. When can you visit?"", ""start"": 38.86, ""end"": 46.1}, {""speaker"": ""client"", ""text"": ""Abhishek: This weekend."", ""start"": 47.55, ""end"": 49.8}, {""speaker"": ""agent"", ""text"": ""Rahul: I'll block Saturday 11 AM for you."", ""start"": 50.86, ""end"": 56.23}]",0.89
|
||||
TRX-00020,CAL-00041,en-IN,"Ananya: Hi Abhishek, following up on your enquiry for Atri Aqua. Abhishek: Hi, I was about to call you. Ananya: Great minds! What were you thinking? Abhishek: The price is still high. Can you match DTC Good Earth's rate? Ananya: I understand. Let me see what best I can do. Are you flexible on floor preference? Abhishek: Not really. I want mid-floor east facing. Ananya: That's our premium inventory. But for serious buyers, I can check for a corporate discount. Abhishek: Please do. We're ready to close quickly. Ananya: Will revert by tomorrow 2 PM.","[{""speaker"": ""agent"", ""text"": ""Ananya: Hi Abhishek, following up on your enquiry for Atri Aqua."", ""start"": 0.0, ""end"": 7.16}, {""speaker"": ""client"", ""text"": ""Abhishek: Hi, I was about to call you."", ""start"": 8.6, ""end"": 11.64}, {""speaker"": ""agent"", ""text"": ""Ananya: Great minds! What were you thinking?"", ""start"": 12.9, ""end"": 17.96}, {""speaker"": ""client"", ""text"": ""Abhishek: The price is still high. Can you match DTC Good Earth's rate?"", ""start"": 19.61, ""end"": 22.28}, {""speaker"": ""agent"", ""text"": ""Ananya: I understand. Let me see what best I can do. Are you flexible on floor preference?"", ""start"": 23.84, ""end"": 29.06}, {""speaker"": ""client"", ""text"": ""Abhishek: Not really. I want mid-floor east facing."", ""start"": 30.9, ""end"": 35.62}, {""speaker"": ""agent"", ""text"": ""Ananya: That's our premium inventory. But for serious buyers, I can check for a corporate discount."", ""start"": 37.46, ""end"": 42.77}, {""speaker"": ""client"", ""text"": ""Abhishek: Please do. We're ready to close quickly."", ""start"": 44.11, ""end"": 48.41}, {""speaker"": ""agent"", ""text"": ""Ananya: Will revert by tomorrow 2 PM."", ""start"": 50.16, ""end"": 57.14}]",0.95
|
||||
TRX-00021,CAL-00042,en-IN,"Vikram: Hi Riya, following up on your enquiry for Eden Devprayag. Riya: Yes, tell me. Vikram: We have a new tower launch with pre-launch pricing. Are you still looking in Rajarhat? Riya: Yes, what's the price? Vikram: Starting at 5.24 Cr for 3 BHK. Possession by July 2026. Riya: That's good. Send me the details on WhatsApp. Vikram: Done. When can you visit? Riya: This weekend. Vikram: I'll block Saturday 11 AM for you.","[{""speaker"": ""agent"", ""text"": ""Vikram: Hi Riya, following up on your enquiry for Eden Devprayag."", ""start"": 0.0, ""end"": 4.45}, {""speaker"": ""client"", ""text"": ""Riya: Yes, tell me."", ""start"": 5.93, ""end"": 11.27}, {""speaker"": ""agent"", ""text"": ""Vikram: We have a new tower launch with pre-launch pricing. Are you still looking in Rajarhat?"", ""start"": 13.23, ""end"": 20.19}, {""speaker"": ""client"", ""text"": ""Riya: Yes, what's the price?"", ""start"": 21.23, ""end"": 23.45}, {""speaker"": ""agent"", ""text"": ""Vikram: Starting at 5.24 Cr for 3 BHK. Possession by July 2026."", ""start"": 24.11, ""end"": 31.84}, {""speaker"": ""client"", ""text"": ""Riya: That's good. Send me the details on WhatsApp."", ""start"": 33.15, ""end"": 39.98}, {""speaker"": ""agent"", ""text"": ""Vikram: Done. When can you visit?"", ""start"": 41.29, ""end"": 45.01}, {""speaker"": ""client"", ""text"": ""Riya: This weekend."", ""start"": 46.42, ""end"": 51.29}, {""speaker"": ""agent"", ""text"": ""Vikram: I'll block Saturday 11 AM for you."", ""start"": 52.43, ""end"": 56.96}]",0.87
|
||||
TRX-00022,CAL-00045,en-IN,"Priya: Good morning Vidya, wanted to share some updates about Ambuja Utpaala. Vidya: Hi, I was about to call you. Priya: Great minds! What were you thinking? Vidya: The price is still high. Can you match Siddha Suburbia Bungalow's rate? Priya: I understand. Let me see what best I can do. Are you flexible on floor preference? Vidya: Not really. I want mid-floor east facing. Priya: That's our premium inventory. But for serious buyers, I can check for a corporate discount. Vidya: Please do. We're ready to close quickly. Priya: Will revert by tomorrow 2 PM.","[{""speaker"": ""agent"", ""text"": ""Priya: Good morning Vidya, wanted to share some updates about Ambuja Utpaala."", ""start"": 0.0, ""end"": 5.82}, {""speaker"": ""client"", ""text"": ""Vidya: Hi, I was about to call you."", ""start"": 7.52, ""end"": 10.74}, {""speaker"": ""agent"", ""text"": ""Priya: Great minds! What were you thinking?"", ""start"": 12.39, ""end"": 17.07}, {""speaker"": ""client"", ""text"": ""Vidya: The price is still high. Can you match Siddha Suburbia Bungalow's rate?"", ""start"": 18.13, ""end"": 21.83}, {""speaker"": ""agent"", ""text"": ""Priya: I understand. Let me see what best I can do. Are you flexible on floor preference?"", ""start"": 23.67, ""end"": 28.31}, {""speaker"": ""client"", ""text"": ""Vidya: Not really. I want mid-floor east facing."", ""start"": 29.89, ""end"": 33.49}, {""speaker"": ""agent"", ""text"": ""Priya: That's our premium inventory. But for serious buyers, I can check for a corporate discount."", ""start"": 34.96, ""end"": 41.58}, {""speaker"": ""client"", ""text"": ""Vidya: Please do. We're ready to close quickly."", ""start"": 43.44, ""end"": 49.36}, {""speaker"": ""agent"", ""text"": ""Priya: Will revert by tomorrow 2 PM."", ""start"": 50.63, ""end"": 58.44}]",0.94
|
||||
TRX-00023,CAL-00046,en-IN,"Ananya: Hello Asha, this is Ananya from Velocity regarding Shriram Grand City. Asha: Yes, tell me. Ananya: We have a new tower launch with pre-launch pricing. Are you still looking in Howrah? Asha: Yes, what's the price? Ananya: Starting at 7.21 Cr for 3 BHK. Possession by September 2026. Asha: That's good. Send me the details on WhatsApp. Ananya: Done. When can you visit? Asha: This weekend. Ananya: I'll block Saturday 11 AM for you.","[{""speaker"": ""agent"", ""text"": ""Ananya: Hello Asha, this is Ananya from Velocity regarding Shriram Grand City."", ""start"": 0.0, ""end"": 4.17}, {""speaker"": ""client"", ""text"": ""Asha: Yes, tell me."", ""start"": 4.72, ""end"": 9.79}, {""speaker"": ""agent"", ""text"": ""Ananya: We have a new tower launch with pre-launch pricing. Are you still looking in Howrah?"", ""start"": 11.04, ""end"": 13.79}, {""speaker"": ""client"", ""text"": ""Asha: Yes, what's the price?"", ""start"": 14.76, ""end"": 17.08}, {""speaker"": ""agent"", ""text"": ""Ananya: Starting at 7.21 Cr for 3 BHK. Possession by September 2026."", ""start"": 18.67, ""end"": 23.96}, {""speaker"": ""client"", ""text"": ""Asha: That's good. Send me the details on WhatsApp."", ""start"": 25.88, ""end"": 31.7}, {""speaker"": ""agent"", ""text"": ""Ananya: Done. When can you visit?"", ""start"": 33.47, ""end"": 36.45}, {""speaker"": ""client"", ""text"": ""Asha: This weekend."", ""start"": 37.33, ""end"": 43.29}, {""speaker"": ""agent"", ""text"": ""Ananya: I'll block Saturday 11 AM for you."", ""start"": 44.21, ""end"": 50.81}]",0.92
|
||||
TRX-00024,CAL-00047,en-IN,"Priya: Hello Asha, this is Priya from Velocity regarding Shriram Grand City. Asha: Hi, I was about to call you. Priya: Great minds! What were you thinking? Asha: The price is still high. Can you match Siddha Suburbia Bungalow's rate? Priya: I understand. Let me see what best I can do. Are you flexible on floor preference? Asha: Not really. I want mid-floor east facing. Priya: That's our premium inventory. But for serious buyers, I can check for a corporate discount. Asha: Please do. We're ready to close quickly. Priya: Will revert by tomorrow 2 PM.","[{""speaker"": ""agent"", ""text"": ""Priya: Hello Asha, this is Priya from Velocity regarding Shriram Grand City."", ""start"": 0.0, ""end"": 2.98}, {""speaker"": ""client"", ""text"": ""Asha: Hi, I was about to call you."", ""start"": 4.98, ""end"": 10.28}, {""speaker"": ""agent"", ""text"": ""Priya: Great minds! What were you thinking?"", ""start"": 11.67, ""end"": 14.21}, {""speaker"": ""client"", ""text"": ""Asha: The price is still high. Can you match Siddha Suburbia Bungalow's rate?"", ""start"": 15.12, ""end"": 22.64}, {""speaker"": ""agent"", ""text"": ""Priya: I understand. Let me see what best I can do. Are you flexible on floor preference?"", ""start"": 23.85, ""end"": 29.99}, {""speaker"": ""client"", ""text"": ""Asha: Not really. I want mid-floor east facing."", ""start"": 31.61, ""end"": 37.52}, {""speaker"": ""agent"", ""text"": ""Priya: That's our premium inventory. But for serious buyers, I can check for a corporate discount."", ""start"": 38.64, ""end"": 45.19}, {""speaker"": ""client"", ""text"": ""Asha: Please do. We're ready to close quickly."", ""start"": 47.02, ""end"": 53.12}, {""speaker"": ""agent"", ""text"": ""Priya: Will revert by tomorrow 2 PM."", ""start"": 54.54, ""end"": 59.59}]",0.91
|
||||
TRX-00025,CAL-00050,en-IN,"Rahul: Hello Tanvi, this is Rahul from Velocity regarding Atri Surya Toron. Tanvi: Yes, tell me. Rahul: We have a new tower launch with pre-launch pricing. Are you still looking in Rajarhat? Tanvi: Yes, what's the price? Rahul: Starting at 2.55 Cr for 3 BHK. Possession by September 2026. Tanvi: That's good. Send me the details on WhatsApp. Rahul: Done. When can you visit? Tanvi: This weekend. Rahul: I'll block Saturday 11 AM for you.","[{""speaker"": ""agent"", ""text"": ""Rahul: Hello Tanvi, this is Rahul from Velocity regarding Atri Surya Toron."", ""start"": 0.0, ""end"": 6.04}, {""speaker"": ""client"", ""text"": ""Tanvi: Yes, tell me."", ""start"": 7.62, ""end"": 14.82}, {""speaker"": ""agent"", ""text"": ""Rahul: We have a new tower launch with pre-launch pricing. Are you still looking in Rajarhat?"", ""start"": 16.07, ""end"": 22.09}, {""speaker"": ""client"", ""text"": ""Tanvi: Yes, what's the price?"", ""start"": 23.02, ""end"": 30.28}, {""speaker"": ""agent"", ""text"": ""Rahul: Starting at 2.55 Cr for 3 BHK. Possession by September 2026."", ""start"": 32.23, ""end"": 36.57}, {""speaker"": ""client"", ""text"": ""Tanvi: That's good. Send me the details on WhatsApp."", ""start"": 37.13, ""end"": 43.71}, {""speaker"": ""agent"", ""text"": ""Rahul: Done. When can you visit?"", ""start"": 45.04, ""end"": 51.04}, {""speaker"": ""client"", ""text"": ""Tanvi: This weekend."", ""start"": 51.57, ""end"": 55.71}, {""speaker"": ""agent"", ""text"": ""Rahul: I'll block Saturday 11 AM for you."", ""start"": 56.86, ""end"": 63.96}]",0.87
|
||||
TRX-00026,CAL-00052,en-IN,"Vikram: Hello Anirban, this is Vikram from Velocity regarding Shriram Grand City. Anirban: Hi, I was about to call you. Vikram: Great minds! What were you thinking? Anirban: The price is still high. Can you match Godrej Blue's rate? Vikram: I understand. Let me see what best I can do. Are you flexible on floor preference? Anirban: Not really. I want mid-floor east facing. Vikram: That's our premium inventory. But for serious buyers, I can check for a corporate discount. Anirban: Please do. We're ready to close quickly. Vikram: Will revert by tomorrow 2 PM.","[{""speaker"": ""agent"", ""text"": ""Vikram: Hello Anirban, this is Vikram from Velocity regarding Shriram Grand City."", ""start"": 0.0, ""end"": 4.42}, {""speaker"": ""client"", ""text"": ""Anirban: Hi, I was about to call you."", ""start"": 5.76, ""end"": 12.77}, {""speaker"": ""agent"", ""text"": ""Vikram: Great minds! What were you thinking?"", ""start"": 14.7, ""end"": 17.78}, {""speaker"": ""client"", ""text"": ""Anirban: The price is still high. Can you match Godrej Blue's rate?"", ""start"": 18.32, ""end"": 25.09}, {""speaker"": ""agent"", ""text"": ""Vikram: I understand. Let me see what best I can do. Are you flexible on floor preference?"", ""start"": 25.61, ""end"": 28.72}, {""speaker"": ""client"", ""text"": ""Anirban: Not really. I want mid-floor east facing."", ""start"": 29.81, ""end"": 34.35}, {""speaker"": ""agent"", ""text"": ""Vikram: That's our premium inventory. But for serious buyers, I can check for a corporate discount."", ""start"": 34.88, ""end"": 37.0}, {""speaker"": ""client"", ""text"": ""Anirban: Please do. We're ready to close quickly."", ""start"": 37.82, ""end"": 42.5}, {""speaker"": ""agent"", ""text"": ""Vikram: Will revert by tomorrow 2 PM."", ""start"": 44.17, ""end"": 51.81}]",0.85
|
||||
TRX-00027,CAL-00054,en-IN,"Vikram: Hello Anirban, this is Vikram from Velocity regarding Shriram Grand City. Anirban: Yes, tell me. Vikram: We have a new tower launch with pre-launch pricing. Are you still looking in Howrah? Anirban: Yes, what's the price? Vikram: Starting at 5.14 Cr for 3 BHK. Possession by September 2026. Anirban: That's good. Send me the details on WhatsApp. Vikram: Done. When can you visit? Anirban: This weekend. Vikram: I'll block Saturday 11 AM for you.","[{""speaker"": ""agent"", ""text"": ""Vikram: Hello Anirban, this is Vikram from Velocity regarding Shriram Grand City."", ""start"": 0.0, ""end"": 6.83}, {""speaker"": ""client"", ""text"": ""Anirban: Yes, tell me."", ""start"": 7.85, ""end"": 15.16}, {""speaker"": ""agent"", ""text"": ""Vikram: We have a new tower launch with pre-launch pricing. Are you still looking in Howrah?"", ""start"": 16.0, ""end"": 22.3}, {""speaker"": ""client"", ""text"": ""Anirban: Yes, what's the price?"", ""start"": 24.15, ""end"": 29.18}, {""speaker"": ""agent"", ""text"": ""Vikram: Starting at 5.14 Cr for 3 BHK. Possession by September 2026."", ""start"": 30.51, ""end"": 33.76}, {""speaker"": ""client"", ""text"": ""Anirban: That's good. Send me the details on WhatsApp."", ""start"": 34.55, ""end"": 38.31}, {""speaker"": ""agent"", ""text"": ""Vikram: Done. When can you visit?"", ""start"": 39.18, ""end"": 41.98}, {""speaker"": ""client"", ""text"": ""Anirban: This weekend."", ""start"": 43.69, ""end"": 50.14}, {""speaker"": ""agent"", ""text"": ""Vikram: I'll block Saturday 11 AM for you."", ""start"": 52.14, ""end"": 55.75}]",0.84
|
||||
TRX-00028,CAL-00057,en-IN,"Vikram: Good morning Aditya, wanted to share some updates about Atri Surya Toron. Aditya: Yes, tell me. Vikram: We have a new tower launch with pre-launch pricing. Are you still looking in Rajarhat? Aditya: Yes, what's the price? Vikram: Starting at 7.63 Cr for 3 BHK. Possession by July 2026. Aditya: That's good. Send me the details on WhatsApp. Vikram: Done. When can you visit? Aditya: This weekend. Vikram: I'll block Saturday 11 AM for you.","[{""speaker"": ""agent"", ""text"": ""Vikram: Good morning Aditya, wanted to share some updates about Atri Surya Toron."", ""start"": 0.0, ""end"": 3.82}, {""speaker"": ""client"", ""text"": ""Aditya: Yes, tell me."", ""start"": 5.13, ""end"": 10.93}, {""speaker"": ""agent"", ""text"": ""Vikram: We have a new tower launch with pre-launch pricing. Are you still looking in Rajarhat?"", ""start"": 12.68, ""end"": 19.22}, {""speaker"": ""client"", ""text"": ""Aditya: Yes, what's the price?"", ""start"": 20.61, ""end"": 23.18}, {""speaker"": ""agent"", ""text"": ""Vikram: Starting at 7.63 Cr for 3 BHK. Possession by July 2026."", ""start"": 24.99, ""end"": 29.79}, {""speaker"": ""client"", ""text"": ""Aditya: That's good. Send me the details on WhatsApp."", ""start"": 31.1, ""end"": 33.45}, {""speaker"": ""agent"", ""text"": ""Vikram: Done. When can you visit?"", ""start"": 34.73, ""end"": 38.88}, {""speaker"": ""client"", ""text"": ""Aditya: This weekend."", ""start"": 40.18, ""end"": 43.21}, {""speaker"": ""agent"", ""text"": ""Vikram: I'll block Saturday 11 AM for you."", ""start"": 44.87, ""end"": 49.74}]",0.84
|
||||
TRX-00029,CAL-00058,en-IN,"Priya: Good morning Aditya, wanted to share some updates about Atri Surya Toron. Aditya: Yes, tell me. Priya: We have a new tower launch with pre-launch pricing. Are you still looking in Rajarhat? Aditya: Yes, what's the price? Priya: Starting at 7.47 Cr for 3 BHK. Possession by October 2026. Aditya: That's good. Send me the details on WhatsApp. Priya: Done. When can you visit? Aditya: This weekend. Priya: I'll block Saturday 11 AM for you.","[{""speaker"": ""agent"", ""text"": ""Priya: Good morning Aditya, wanted to share some updates about Atri Surya Toron."", ""start"": 0.0, ""end"": 2.98}, {""speaker"": ""client"", ""text"": ""Aditya: Yes, tell me."", ""start"": 4.86, ""end"": 7.91}, {""speaker"": ""agent"", ""text"": ""Priya: We have a new tower launch with pre-launch pricing. Are you still looking in Rajarhat?"", ""start"": 8.43, ""end"": 12.93}, {""speaker"": ""client"", ""text"": ""Aditya: Yes, what's the price?"", ""start"": 13.69, ""end"": 18.15}, {""speaker"": ""agent"", ""text"": ""Priya: Starting at 7.47 Cr for 3 BHK. Possession by October 2026."", ""start"": 18.65, ""end"": 25.61}, {""speaker"": ""client"", ""text"": ""Aditya: That's good. Send me the details on WhatsApp."", ""start"": 26.19, ""end"": 29.3}, {""speaker"": ""agent"", ""text"": ""Priya: Done. When can you visit?"", ""start"": 30.52, ""end"": 36.82}, {""speaker"": ""client"", ""text"": ""Aditya: This weekend."", ""start"": 38.24, ""end"": 43.69}, {""speaker"": ""agent"", ""text"": ""Priya: I'll block Saturday 11 AM for you."", ""start"": 44.56, ""end"": 47.63}]",0.94
|
||||
TRX-00030,CAL-00062,en-IN,"Priya: Good morning Deepak, wanted to share some updates about Atri Surya Toron. Deepak: Hi, I was about to call you. Priya: Great minds! What were you thinking? Deepak: The price is still high. Can you match Atri Aqua's rate? Priya: I understand. Let me see what best I can do. Are you flexible on floor preference? Deepak: Not really. I want mid-floor east facing. Priya: That's our premium inventory. But for serious buyers, I can check for a corporate discount. Deepak: Please do. We're ready to close quickly. Priya: Will revert by tomorrow 2 PM.","[{""speaker"": ""agent"", ""text"": ""Priya: Good morning Deepak, wanted to share some updates about Atri Surya Toron."", ""start"": 0.0, ""end"": 6.57}, {""speaker"": ""client"", ""text"": ""Deepak: Hi, I was about to call you."", ""start"": 7.08, ""end"": 12.3}, {""speaker"": ""agent"", ""text"": ""Priya: Great minds! What were you thinking?"", ""start"": 13.92, ""end"": 18.42}, {""speaker"": ""client"", ""text"": ""Deepak: The price is still high. Can you match Atri Aqua's rate?"", ""start"": 19.78, ""end"": 22.96}, {""speaker"": ""agent"", ""text"": ""Priya: I understand. Let me see what best I can do. Are you flexible on floor preference?"", ""start"": 24.11, ""end"": 26.19}, {""speaker"": ""client"", ""text"": ""Deepak: Not really. I want mid-floor east facing."", ""start"": 28.12, ""end"": 35.37}, {""speaker"": ""agent"", ""text"": ""Priya: That's our premium inventory. But for serious buyers, I can check for a corporate discount."", ""start"": 36.81, ""end"": 39.85}, {""speaker"": ""client"", ""text"": ""Deepak: Please do. We're ready to close quickly."", ""start"": 40.94, ""end"": 46.48}, {""speaker"": ""agent"", ""text"": ""Priya: Will revert by tomorrow 2 PM."", ""start"": 47.0, ""end"": 50.33}]",0.86
|
||||
TRX-00031,CAL-00063,en-IN,"Vikram: Hi Deepak, following up on your enquiry for Atri Surya Toron. Deepak: Yes, tell me. Vikram: We have a new tower launch with pre-launch pricing. Are you still looking in Rajarhat? Deepak: Yes, what's the price? Vikram: Starting at 3.89 Cr for 3 BHK. Possession by July 2026. Deepak: That's good. Send me the details on WhatsApp. Vikram: Done. When can you visit? Deepak: This weekend. Vikram: I'll block Saturday 11 AM for you.","[{""speaker"": ""agent"", ""text"": ""Vikram: Hi Deepak, following up on your enquiry for Atri Surya Toron."", ""start"": 0.0, ""end"": 4.25}, {""speaker"": ""client"", ""text"": ""Deepak: Yes, tell me."", ""start"": 5.56, ""end"": 12.84}, {""speaker"": ""agent"", ""text"": ""Vikram: We have a new tower launch with pre-launch pricing. Are you still looking in Rajarhat?"", ""start"": 13.72, ""end"": 19.8}, {""speaker"": ""client"", ""text"": ""Deepak: Yes, what's the price?"", ""start"": 20.88, ""end"": 28.29}, {""speaker"": ""agent"", ""text"": ""Vikram: Starting at 3.89 Cr for 3 BHK. Possession by July 2026."", ""start"": 29.96, ""end"": 32.48}, {""speaker"": ""client"", ""text"": ""Deepak: That's good. Send me the details on WhatsApp."", ""start"": 33.54, ""end"": 35.74}, {""speaker"": ""agent"", ""text"": ""Vikram: Done. When can you visit?"", ""start"": 36.33, ""end"": 39.33}, {""speaker"": ""client"", ""text"": ""Deepak: This weekend."", ""start"": 41.1, ""end"": 45.11}, {""speaker"": ""agent"", ""text"": ""Vikram: I'll block Saturday 11 AM for you."", ""start"": 46.65, ""end"": 50.96}]",0.85
|
||||
TRX-00032,CAL-00064,en-IN,"Ananya: Good morning Deepak, wanted to share some updates about Atri Surya Toron. Deepak: Yes, tell me. Ananya: We have a new tower launch with pre-launch pricing. Are you still looking in Rajarhat? Deepak: Yes, what's the price? Ananya: Starting at 5.71 Cr for 3 BHK. Possession by August 2026. Deepak: That's good. Send me the details on WhatsApp. Ananya: Done. When can you visit? Deepak: This weekend. Ananya: I'll block Saturday 11 AM for you.","[{""speaker"": ""agent"", ""text"": ""Ananya: Good morning Deepak, wanted to share some updates about Atri Surya Toron."", ""start"": 0.0, ""end"": 6.21}, {""speaker"": ""client"", ""text"": ""Deepak: Yes, tell me."", ""start"": 8.04, ""end"": 11.13}, {""speaker"": ""agent"", ""text"": ""Ananya: We have a new tower launch with pre-launch pricing. Are you still looking in Rajarhat?"", ""start"": 11.91, ""end"": 19.38}, {""speaker"": ""client"", ""text"": ""Deepak: Yes, what's the price?"", ""start"": 20.84, ""end"": 27.47}, {""speaker"": ""agent"", ""text"": ""Ananya: Starting at 5.71 Cr for 3 BHK. Possession by August 2026."", ""start"": 28.65, ""end"": 31.95}, {""speaker"": ""client"", ""text"": ""Deepak: That's good. Send me the details on WhatsApp."", ""start"": 33.59, ""end"": 37.92}, {""speaker"": ""agent"", ""text"": ""Ananya: Done. When can you visit?"", ""start"": 39.54, ""end"": 45.62}, {""speaker"": ""client"", ""text"": ""Deepak: This weekend."", ""start"": 46.38, ""end"": 52.91}, {""speaker"": ""agent"", ""text"": ""Ananya: I'll block Saturday 11 AM for you."", ""start"": 54.89, ""end"": 61.69}]",0.94
|
||||
TRX-00033,CAL-00066,en-IN,"Ananya: Good morning Moumita, wanted to share some updates about Godrej Blue. Moumita: Hi, I was about to call you. Ananya: Great minds! What were you thinking? Moumita: The price is still high. Can you match DTC Sojon's rate? Ananya: I understand. Let me see what best I can do. Are you flexible on floor preference? Moumita: Not really. I want mid-floor east facing. Ananya: That's our premium inventory. But for serious buyers, I can check for a corporate discount. Moumita: Please do. We're ready to close quickly. Ananya: Will revert by tomorrow 2 PM.","[{""speaker"": ""agent"", ""text"": ""Ananya: Good morning Moumita, wanted to share some updates about Godrej Blue."", ""start"": 0.0, ""end"": 4.24}, {""speaker"": ""client"", ""text"": ""Moumita: Hi, I was about to call you."", ""start"": 5.2, ""end"": 12.63}, {""speaker"": ""agent"", ""text"": ""Ananya: Great minds! What were you thinking?"", ""start"": 13.34, ""end"": 18.96}, {""speaker"": ""client"", ""text"": ""Moumita: The price is still high. Can you match DTC Sojon's rate?"", ""start"": 20.04, ""end"": 25.76}, {""speaker"": ""agent"", ""text"": ""Ananya: I understand. Let me see what best I can do. Are you flexible on floor preference?"", ""start"": 26.28, ""end"": 33.97}, {""speaker"": ""client"", ""text"": ""Moumita: Not really. I want mid-floor east facing."", ""start"": 35.33, ""end"": 39.59}, {""speaker"": ""agent"", ""text"": ""Ananya: That's our premium inventory. But for serious buyers, I can check for a corporate discount."", ""start"": 41.57, ""end"": 48.49}, {""speaker"": ""client"", ""text"": ""Moumita: Please do. We're ready to close quickly."", ""start"": 49.87, ""end"": 55.16}, {""speaker"": ""agent"", ""text"": ""Ananya: Will revert by tomorrow 2 PM."", ""start"": 55.99, ""end"": 63.18}]",0.89
|
||||
TRX-00034,CAL-00067,en-IN,"Priya: Hello Moumita, this is Priya from Velocity regarding Godrej Blue. Moumita: Hi, I was about to call you. Priya: Great minds! What were you thinking? Moumita: The price is still high. Can you match Merlin Avana's rate? Priya: I understand. Let me see what best I can do. Are you flexible on floor preference? Moumita: Not really. I want mid-floor east facing. Priya: That's our premium inventory. But for serious buyers, I can check for a corporate discount. Moumita: Please do. We're ready to close quickly. Priya: Will revert by tomorrow 2 PM.","[{""speaker"": ""agent"", ""text"": ""Priya: Hello Moumita, this is Priya from Velocity regarding Godrej Blue."", ""start"": 0.0, ""end"": 3.31}, {""speaker"": ""client"", ""text"": ""Moumita: Hi, I was about to call you."", ""start"": 3.98, ""end"": 8.96}, {""speaker"": ""agent"", ""text"": ""Priya: Great minds! What were you thinking?"", ""start"": 9.69, ""end"": 12.48}, {""speaker"": ""client"", ""text"": ""Moumita: The price is still high. Can you match Merlin Avana's rate?"", ""start"": 13.87, ""end"": 20.86}, {""speaker"": ""agent"", ""text"": ""Priya: I understand. Let me see what best I can do. Are you flexible on floor preference?"", ""start"": 21.94, ""end"": 29.58}, {""speaker"": ""client"", ""text"": ""Moumita: Not really. I want mid-floor east facing."", ""start"": 30.28, ""end"": 38.1}, {""speaker"": ""agent"", ""text"": ""Priya: That's our premium inventory. But for serious buyers, I can check for a corporate discount."", ""start"": 39.57, ""end"": 43.59}, {""speaker"": ""client"", ""text"": ""Moumita: Please do. We're ready to close quickly."", ""start"": 44.44, ""end"": 49.01}, {""speaker"": ""agent"", ""text"": ""Priya: Will revert by tomorrow 2 PM."", ""start"": 50.93, ""end"": 56.28}]",0.84
|
||||
TRX-00035,CAL-00068,en-IN,"Priya: Hello Moumita, this is Priya from Velocity regarding Godrej Blue. Moumita: Hi, I was about to call you. Priya: Great minds! What were you thinking? Moumita: The price is still high. Can you match Siddha Sky Waterfront's rate? Priya: I understand. Let me see what best I can do. Are you flexible on floor preference? Moumita: Not really. I want mid-floor east facing. Priya: That's our premium inventory. But for serious buyers, I can check for a corporate discount. Moumita: Please do. We're ready to close quickly. Priya: Will revert by tomorrow 2 PM.","[{""speaker"": ""agent"", ""text"": ""Priya: Hello Moumita, this is Priya from Velocity regarding Godrej Blue."", ""start"": 0.0, ""end"": 3.35}, {""speaker"": ""client"", ""text"": ""Moumita: Hi, I was about to call you."", ""start"": 3.98, ""end"": 11.78}, {""speaker"": ""agent"", ""text"": ""Priya: Great minds! What were you thinking?"", ""start"": 12.5, ""end"": 19.51}, {""speaker"": ""client"", ""text"": ""Moumita: The price is still high. Can you match Siddha Sky Waterfront's rate?"", ""start"": 20.91, ""end"": 25.82}, {""speaker"": ""agent"", ""text"": ""Priya: I understand. Let me see what best I can do. Are you flexible on floor preference?"", ""start"": 26.63, ""end"": 29.73}, {""speaker"": ""client"", ""text"": ""Moumita: Not really. I want mid-floor east facing."", ""start"": 30.68, ""end"": 34.4}, {""speaker"": ""agent"", ""text"": ""Priya: That's our premium inventory. But for serious buyers, I can check for a corporate discount."", ""start"": 35.81, ""end"": 37.96}, {""speaker"": ""client"", ""text"": ""Moumita: Please do. We're ready to close quickly."", ""start"": 39.59, ""end"": 46.23}, {""speaker"": ""agent"", ""text"": ""Priya: Will revert by tomorrow 2 PM."", ""start"": 47.21, ""end"": 53.36}]",0.86
|
||||
TRX-00036,CAL-00070,en-IN,"Vikram: Good morning Shreya, wanted to share some updates about Shriram Grand City. Shreya: Hi, I was about to call you. Vikram: Great minds! What were you thinking? Shreya: The price is still high. Can you match DTC Good Earth's rate? Vikram: I understand. Let me see what best I can do. Are you flexible on floor preference? Shreya: Not really. I want mid-floor east facing. Vikram: That's our premium inventory. But for serious buyers, I can check for a corporate discount. Shreya: Please do. We're ready to close quickly. Vikram: Will revert by tomorrow 2 PM.","[{""speaker"": ""agent"", ""text"": ""Vikram: Good morning Shreya, wanted to share some updates about Shriram Grand City."", ""start"": 0.0, ""end"": 2.54}, {""speaker"": ""client"", ""text"": ""Shreya: Hi, I was about to call you."", ""start"": 3.88, ""end"": 9.17}, {""speaker"": ""agent"", ""text"": ""Vikram: Great minds! What were you thinking?"", ""start"": 10.25, ""end"": 13.95}, {""speaker"": ""client"", ""text"": ""Shreya: The price is still high. Can you match DTC Good Earth's rate?"", ""start"": 15.71, ""end"": 23.59}, {""speaker"": ""agent"", ""text"": ""Vikram: I understand. Let me see what best I can do. Are you flexible on floor preference?"", ""start"": 24.33, ""end"": 28.55}, {""speaker"": ""client"", ""text"": ""Shreya: Not really. I want mid-floor east facing."", ""start"": 29.24, ""end"": 35.44}, {""speaker"": ""agent"", ""text"": ""Vikram: That's our premium inventory. But for serious buyers, I can check for a corporate discount."", ""start"": 36.51, ""end"": 39.12}, {""speaker"": ""client"", ""text"": ""Shreya: Please do. We're ready to close quickly."", ""start"": 40.25, ""end"": 42.43}, {""speaker"": ""agent"", ""text"": ""Vikram: Will revert by tomorrow 2 PM."", ""start"": 42.95, ""end"": 49.5}]",0.88
|
||||
TRX-00037,CAL-00071,en-IN,"Priya: Hi Shreya, following up on your enquiry for Shriram Grand City. Shreya: Hi, I was about to call you. Priya: Great minds! What were you thinking? Shreya: The price is still high. Can you match Godrej Blue's rate? Priya: I understand. Let me see what best I can do. Are you flexible on floor preference? Shreya: Not really. I want mid-floor east facing. Priya: That's our premium inventory. But for serious buyers, I can check for a corporate discount. Shreya: Please do. We're ready to close quickly. Priya: Will revert by tomorrow 2 PM.","[{""speaker"": ""agent"", ""text"": ""Priya: Hi Shreya, following up on your enquiry for Shriram Grand City."", ""start"": 0.0, ""end"": 3.96}, {""speaker"": ""client"", ""text"": ""Shreya: Hi, I was about to call you."", ""start"": 5.12, ""end"": 12.93}, {""speaker"": ""agent"", ""text"": ""Priya: Great minds! What were you thinking?"", ""start"": 14.53, ""end"": 21.4}, {""speaker"": ""client"", ""text"": ""Shreya: The price is still high. Can you match Godrej Blue's rate?"", ""start"": 22.94, ""end"": 25.27}, {""speaker"": ""agent"", ""text"": ""Priya: I understand. Let me see what best I can do. Are you flexible on floor preference?"", ""start"": 26.85, ""end"": 29.33}, {""speaker"": ""client"", ""text"": ""Shreya: Not really. I want mid-floor east facing."", ""start"": 30.8, ""end"": 35.18}, {""speaker"": ""agent"", ""text"": ""Priya: That's our premium inventory. But for serious buyers, I can check for a corporate discount."", ""start"": 37.13, ""end"": 41.56}, {""speaker"": ""client"", ""text"": ""Shreya: Please do. We're ready to close quickly."", ""start"": 42.38, ""end"": 47.7}, {""speaker"": ""agent"", ""text"": ""Priya: Will revert by tomorrow 2 PM."", ""start"": 48.5, ""end"": 52.08}]",0.88
|
||||
TRX-00038,CAL-00073,en-IN,"Rahul: Good morning Shreya, wanted to share some updates about Shriram Grand City. Shreya: Yes, tell me. Rahul: We have a new tower launch with pre-launch pricing. Are you still looking in Howrah? Shreya: Yes, what's the price? Rahul: Starting at 7.49 Cr for 3 BHK. Possession by July 2026. Shreya: That's good. Send me the details on WhatsApp. Rahul: Done. When can you visit? Shreya: This weekend. Rahul: I'll block Saturday 11 AM for you.","[{""speaker"": ""agent"", ""text"": ""Rahul: Good morning Shreya, wanted to share some updates about Shriram Grand City."", ""start"": 0.0, ""end"": 4.59}, {""speaker"": ""client"", ""text"": ""Shreya: Yes, tell me."", ""start"": 5.46, ""end"": 11.6}, {""speaker"": ""agent"", ""text"": ""Rahul: We have a new tower launch with pre-launch pricing. Are you still looking in Howrah?"", ""start"": 13.0, ""end"": 15.8}, {""speaker"": ""client"", ""text"": ""Shreya: Yes, what's the price?"", ""start"": 17.15, ""end"": 19.39}, {""speaker"": ""agent"", ""text"": ""Rahul: Starting at 7.49 Cr for 3 BHK. Possession by July 2026."", ""start"": 21.19, ""end"": 27.77}, {""speaker"": ""client"", ""text"": ""Shreya: That's good. Send me the details on WhatsApp."", ""start"": 29.5, ""end"": 33.75}, {""speaker"": ""agent"", ""text"": ""Rahul: Done. When can you visit?"", ""start"": 35.54, ""end"": 40.18}, {""speaker"": ""client"", ""text"": ""Shreya: This weekend."", ""start"": 42.06, ""end"": 45.4}, {""speaker"": ""agent"", ""text"": ""Rahul: I'll block Saturday 11 AM for you."", ""start"": 46.7, ""end"": 49.52}]",0.82
|
||||
TRX-00039,CAL-00074,en-IN,"Ananya: Hi Tanvi, following up on your enquiry for DTC Good Earth. Tanvi: Hi, I was about to call you. Ananya: Great minds! What were you thinking? Tanvi: The price is still high. Can you match Godrej Elevate's rate? Ananya: I understand. Let me see what best I can do. Are you flexible on floor preference? Tanvi: Not really. I want mid-floor east facing. Ananya: That's our premium inventory. But for serious buyers, I can check for a corporate discount. Tanvi: Please do. We're ready to close quickly. Ananya: Will revert by tomorrow 2 PM.","[{""speaker"": ""agent"", ""text"": ""Ananya: Hi Tanvi, following up on your enquiry for DTC Good Earth."", ""start"": 0.0, ""end"": 2.42}, {""speaker"": ""client"", ""text"": ""Tanvi: Hi, I was about to call you."", ""start"": 3.74, ""end"": 10.04}, {""speaker"": ""agent"", ""text"": ""Ananya: Great minds! What were you thinking?"", ""start"": 11.13, ""end"": 17.17}, {""speaker"": ""client"", ""text"": ""Tanvi: The price is still high. Can you match Godrej Elevate's rate?"", ""start"": 17.95, ""end"": 24.62}, {""speaker"": ""agent"", ""text"": ""Ananya: I understand. Let me see what best I can do. Are you flexible on floor preference?"", ""start"": 26.5, ""end"": 29.81}, {""speaker"": ""client"", ""text"": ""Tanvi: Not really. I want mid-floor east facing."", ""start"": 31.71, ""end"": 37.91}, {""speaker"": ""agent"", ""text"": ""Ananya: That's our premium inventory. But for serious buyers, I can check for a corporate discount."", ""start"": 38.46, ""end"": 44.84}, {""speaker"": ""client"", ""text"": ""Tanvi: Please do. We're ready to close quickly."", ""start"": 45.39, ""end"": 50.74}, {""speaker"": ""agent"", ""text"": ""Ananya: Will revert by tomorrow 2 PM."", ""start"": 51.32, ""end"": 57.0}]",0.89
|
||||
TRX-00040,CAL-00075,en-IN,"Rahul: Hi Tanvi, following up on your enquiry for DTC Good Earth. Tanvi: Yes, tell me. Rahul: We have a new tower launch with pre-launch pricing. Are you still looking in New Town? Tanvi: Yes, what's the price? Rahul: Starting at 5.31 Cr for 3 BHK. Possession by June 2026. Tanvi: That's good. Send me the details on WhatsApp. Rahul: Done. When can you visit? Tanvi: This weekend. Rahul: I'll block Saturday 11 AM for you.","[{""speaker"": ""agent"", ""text"": ""Rahul: Hi Tanvi, following up on your enquiry for DTC Good Earth."", ""start"": 0.0, ""end"": 6.24}, {""speaker"": ""client"", ""text"": ""Tanvi: Yes, tell me."", ""start"": 7.03, ""end"": 14.11}, {""speaker"": ""agent"", ""text"": ""Rahul: We have a new tower launch with pre-launch pricing. Are you still looking in New Town?"", ""start"": 15.82, ""end"": 23.5}, {""speaker"": ""client"", ""text"": ""Tanvi: Yes, what's the price?"", ""start"": 25.09, ""end"": 28.98}, {""speaker"": ""agent"", ""text"": ""Rahul: Starting at 5.31 Cr for 3 BHK. Possession by June 2026."", ""start"": 30.21, ""end"": 37.76}, {""speaker"": ""client"", ""text"": ""Tanvi: That's good. Send me the details on WhatsApp."", ""start"": 39.73, ""end"": 44.64}, {""speaker"": ""agent"", ""text"": ""Rahul: Done. When can you visit?"", ""start"": 46.0, ""end"": 52.74}, {""speaker"": ""client"", ""text"": ""Tanvi: This weekend."", ""start"": 53.62, ""end"": 55.83}, {""speaker"": ""agent"", ""text"": ""Rahul: I'll block Saturday 11 AM for you."", ""start"": 57.44, ""end"": 59.53}]",0.92
|
||||
TRX-00041,CAL-00079,en-IN,"Vikram: Good morning Tanvi, wanted to share some updates about DTC Good Earth. Tanvi: Hi, I was about to call you. Vikram: Great minds! What were you thinking? Tanvi: The price is still high. Can you match Eden Devprayag's rate? Vikram: I understand. Let me see what best I can do. Are you flexible on floor preference? Tanvi: Not really. I want mid-floor east facing. Vikram: That's our premium inventory. But for serious buyers, I can check for a corporate discount. Tanvi: Please do. We're ready to close quickly. Vikram: Will revert by tomorrow 2 PM.","[{""speaker"": ""agent"", ""text"": ""Vikram: Good morning Tanvi, wanted to share some updates about DTC Good Earth."", ""start"": 0.0, ""end"": 3.98}, {""speaker"": ""client"", ""text"": ""Tanvi: Hi, I was about to call you."", ""start"": 5.48, ""end"": 9.45}, {""speaker"": ""agent"", ""text"": ""Vikram: Great minds! What were you thinking?"", ""start"": 11.09, ""end"": 19.03}, {""speaker"": ""client"", ""text"": ""Tanvi: The price is still high. Can you match Eden Devprayag's rate?"", ""start"": 19.79, ""end"": 21.83}, {""speaker"": ""agent"", ""text"": ""Vikram: I understand. Let me see what best I can do. Are you flexible on floor preference?"", ""start"": 22.91, ""end"": 29.77}, {""speaker"": ""client"", ""text"": ""Tanvi: Not really. I want mid-floor east facing."", ""start"": 31.48, ""end"": 33.83}, {""speaker"": ""agent"", ""text"": ""Vikram: That's our premium inventory. But for serious buyers, I can check for a corporate discount."", ""start"": 34.43, ""end"": 37.07}, {""speaker"": ""client"", ""text"": ""Tanvi: Please do. We're ready to close quickly."", ""start"": 37.83, ""end"": 40.25}, {""speaker"": ""agent"", ""text"": ""Vikram: Will revert by tomorrow 2 PM."", ""start"": 41.51, ""end"": 43.54}]",0.94
|
||||
TRX-00042,CAL-00083,en-IN,"Ananya: Hello Kunal, this is Ananya from Velocity regarding Siddha Serena. Kunal: Yes, tell me. Ananya: We have a new tower launch with pre-launch pricing. Are you still looking in New Town? Kunal: Yes, what's the price? Ananya: Starting at 6.84 Cr for 3 BHK. Possession by August 2026. Kunal: That's good. Send me the details on WhatsApp. Ananya: Done. When can you visit? Kunal: This weekend. Ananya: I'll block Saturday 11 AM for you.","[{""speaker"": ""agent"", ""text"": ""Ananya: Hello Kunal, this is Ananya from Velocity regarding Siddha Serena."", ""start"": 0.0, ""end"": 3.28}, {""speaker"": ""client"", ""text"": ""Kunal: Yes, tell me."", ""start"": 5.23, ""end"": 7.79}, {""speaker"": ""agent"", ""text"": ""Ananya: We have a new tower launch with pre-launch pricing. Are you still looking in New Town?"", ""start"": 9.5, ""end"": 12.05}, {""speaker"": ""client"", ""text"": ""Kunal: Yes, what's the price?"", ""start"": 13.36, ""end"": 20.67}, {""speaker"": ""agent"", ""text"": ""Ananya: Starting at 6.84 Cr for 3 BHK. Possession by August 2026."", ""start"": 22.41, ""end"": 26.9}, {""speaker"": ""client"", ""text"": ""Kunal: That's good. Send me the details on WhatsApp."", ""start"": 28.22, ""end"": 35.79}, {""speaker"": ""agent"", ""text"": ""Ananya: Done. When can you visit?"", ""start"": 36.64, ""end"": 42.56}, {""speaker"": ""client"", ""text"": ""Kunal: This weekend."", ""start"": 43.24, ""end"": 51.12}, {""speaker"": ""agent"", ""text"": ""Ananya: I'll block Saturday 11 AM for you."", ""start"": 52.95, ""end"": 55.29}]",0.93
|
||||
TRX-00043,CAL-00084,en-IN,"Vikram: Hello Sonal, this is Vikram from Velocity regarding Siddha Serena. Sonal: Hi, I was about to call you. Vikram: Great minds! What were you thinking? Sonal: The price is still high. Can you match Atri Aqua's rate? Vikram: I understand. Let me see what best I can do. Are you flexible on floor preference? Sonal: Not really. I want mid-floor east facing. Vikram: That's our premium inventory. But for serious buyers, I can check for a corporate discount. Sonal: Please do. We're ready to close quickly. Vikram: Will revert by tomorrow 2 PM.","[{""speaker"": ""agent"", ""text"": ""Vikram: Hello Sonal, this is Vikram from Velocity regarding Siddha Serena."", ""start"": 0.0, ""end"": 5.69}, {""speaker"": ""client"", ""text"": ""Sonal: Hi, I was about to call you."", ""start"": 7.48, ""end"": 15.46}, {""speaker"": ""agent"", ""text"": ""Vikram: Great minds! What were you thinking?"", ""start"": 16.24, ""end"": 23.05}, {""speaker"": ""client"", ""text"": ""Sonal: The price is still high. Can you match Atri Aqua's rate?"", ""start"": 24.21, ""end"": 31.25}, {""speaker"": ""agent"", ""text"": ""Vikram: I understand. Let me see what best I can do. Are you flexible on floor preference?"", ""start"": 32.74, ""end"": 36.71}, {""speaker"": ""client"", ""text"": ""Sonal: Not really. I want mid-floor east facing."", ""start"": 38.16, ""end"": 42.8}, {""speaker"": ""agent"", ""text"": ""Vikram: That's our premium inventory. But for serious buyers, I can check for a corporate discount."", ""start"": 44.66, ""end"": 49.81}, {""speaker"": ""client"", ""text"": ""Sonal: Please do. We're ready to close quickly."", ""start"": 51.23, ""end"": 56.33}, {""speaker"": ""agent"", ""text"": ""Vikram: Will revert by tomorrow 2 PM."", ""start"": 57.9, ""end"": 62.1}]",0.85
|
||||
TRX-00044,CAL-00085,en-IN,"Vikram: Good morning Sonal, wanted to share some updates about Siddha Serena. Sonal: Hi, I was about to call you. Vikram: Great minds! What were you thinking? Sonal: The price is still high. Can you match Merlin Avana's rate? Vikram: I understand. Let me see what best I can do. Are you flexible on floor preference? Sonal: Not really. I want mid-floor east facing. Vikram: That's our premium inventory. But for serious buyers, I can check for a corporate discount. Sonal: Please do. We're ready to close quickly. Vikram: Will revert by tomorrow 2 PM.","[{""speaker"": ""agent"", ""text"": ""Vikram: Good morning Sonal, wanted to share some updates about Siddha Serena."", ""start"": 0.0, ""end"": 5.61}, {""speaker"": ""client"", ""text"": ""Sonal: Hi, I was about to call you."", ""start"": 7.23, ""end"": 12.93}, {""speaker"": ""agent"", ""text"": ""Vikram: Great minds! What were you thinking?"", ""start"": 14.24, ""end"": 20.07}, {""speaker"": ""client"", ""text"": ""Sonal: The price is still high. Can you match Merlin Avana's rate?"", ""start"": 21.03, ""end"": 25.58}, {""speaker"": ""agent"", ""text"": ""Vikram: I understand. Let me see what best I can do. Are you flexible on floor preference?"", ""start"": 26.52, ""end"": 33.38}, {""speaker"": ""client"", ""text"": ""Sonal: Not really. I want mid-floor east facing."", ""start"": 33.92, ""end"": 38.46}, {""speaker"": ""agent"", ""text"": ""Vikram: That's our premium inventory. But for serious buyers, I can check for a corporate discount."", ""start"": 40.24, ""end"": 42.64}, {""speaker"": ""client"", ""text"": ""Sonal: Please do. We're ready to close quickly."", ""start"": 43.47, ""end"": 46.78}, {""speaker"": ""agent"", ""text"": ""Vikram: Will revert by tomorrow 2 PM."", ""start"": 48.03, ""end"": 52.16}]",0.87
|
||||
TRX-00045,CAL-00089,en-IN,"Priya: Good morning Prasenjit, wanted to share some updates about Siddha Sky Waterfront. Prasenjit: Hi, I was about to call you. Priya: Great minds! What were you thinking? Prasenjit: The price is still high. Can you match Shriram Grand City's rate? Priya: I understand. Let me see what best I can do. Are you flexible on floor preference? Prasenjit: Not really. I want mid-floor east facing. Priya: That's our premium inventory. But for serious buyers, I can check for a corporate discount. Prasenjit: Please do. We're ready to close quickly. Priya: Will revert by tomorrow 2 PM.","[{""speaker"": ""agent"", ""text"": ""Priya: Good morning Prasenjit, wanted to share some updates about Siddha Sky Waterfront."", ""start"": 0.0, ""end"": 3.79}, {""speaker"": ""client"", ""text"": ""Prasenjit: Hi, I was about to call you."", ""start"": 4.79, ""end"": 11.98}, {""speaker"": ""agent"", ""text"": ""Priya: Great minds! What were you thinking?"", ""start"": 13.52, ""end"": 19.27}, {""speaker"": ""client"", ""text"": ""Prasenjit: The price is still high. Can you match Shriram Grand City's rate?"", ""start"": 21.17, ""end"": 24.89}, {""speaker"": ""agent"", ""text"": ""Priya: I understand. Let me see what best I can do. Are you flexible on floor preference?"", ""start"": 26.21, ""end"": 32.23}, {""speaker"": ""client"", ""text"": ""Prasenjit: Not really. I want mid-floor east facing."", ""start"": 32.77, ""end"": 38.0}, {""speaker"": ""agent"", ""text"": ""Priya: That's our premium inventory. But for serious buyers, I can check for a corporate discount."", ""start"": 38.94, ""end"": 44.63}, {""speaker"": ""client"", ""text"": ""Prasenjit: Please do. We're ready to close quickly."", ""start"": 46.26, ""end"": 48.73}, {""speaker"": ""agent"", ""text"": ""Priya: Will revert by tomorrow 2 PM."", ""start"": 49.37, ""end"": 51.87}]",0.93
|
||||
TRX-00046,CAL-00090,en-IN,"Priya: Hi Prasenjit, following up on your enquiry for Siddha Sky Waterfront. Prasenjit: Yes, tell me. Priya: We have a new tower launch with pre-launch pricing. Are you still looking in Beliaghata? Prasenjit: Yes, what's the price? Priya: Starting at 7.86 Cr for 3 BHK. Possession by August 2026. Prasenjit: That's good. Send me the details on WhatsApp. Priya: Done. When can you visit? Prasenjit: This weekend. Priya: I'll block Saturday 11 AM for you.","[{""speaker"": ""agent"", ""text"": ""Priya: Hi Prasenjit, following up on your enquiry for Siddha Sky Waterfront."", ""start"": 0.0, ""end"": 6.98}, {""speaker"": ""client"", ""text"": ""Prasenjit: Yes, tell me."", ""start"": 7.49, ""end"": 12.03}, {""speaker"": ""agent"", ""text"": ""Priya: We have a new tower launch with pre-launch pricing. Are you still looking in Beliaghata?"", ""start"": 13.25, ""end"": 18.59}, {""speaker"": ""client"", ""text"": ""Prasenjit: Yes, what's the price?"", ""start"": 19.3, ""end"": 22.0}, {""speaker"": ""agent"", ""text"": ""Priya: Starting at 7.86 Cr for 3 BHK. Possession by August 2026."", ""start"": 23.97, ""end"": 27.15}, {""speaker"": ""client"", ""text"": ""Prasenjit: That's good. Send me the details on WhatsApp."", ""start"": 28.8, ""end"": 31.91}, {""speaker"": ""agent"", ""text"": ""Priya: Done. When can you visit?"", ""start"": 33.37, ""end"": 41.32}, {""speaker"": ""client"", ""text"": ""Prasenjit: This weekend."", ""start"": 42.77, ""end"": 46.84}, {""speaker"": ""agent"", ""text"": ""Priya: I'll block Saturday 11 AM for you."", ""start"": 47.94, ""end"": 50.6}]",0.95
|
||||
TRX-00047,CAL-00091,en-IN,"Rahul: Good morning Prasenjit, wanted to share some updates about Siddha Sky Waterfront. Prasenjit: Hi, I was about to call you. Rahul: Great minds! What were you thinking? Prasenjit: The price is still high. Can you match Eden Devprayag's rate? Rahul: I understand. Let me see what best I can do. Are you flexible on floor preference? Prasenjit: Not really. I want mid-floor east facing. Rahul: That's our premium inventory. But for serious buyers, I can check for a corporate discount. Prasenjit: Please do. We're ready to close quickly. Rahul: Will revert by tomorrow 2 PM.","[{""speaker"": ""agent"", ""text"": ""Rahul: Good morning Prasenjit, wanted to share some updates about Siddha Sky Waterfront."", ""start"": 0.0, ""end"": 7.19}, {""speaker"": ""client"", ""text"": ""Prasenjit: Hi, I was about to call you."", ""start"": 8.43, ""end"": 15.88}, {""speaker"": ""agent"", ""text"": ""Rahul: Great minds! What were you thinking?"", ""start"": 16.52, ""end"": 22.45}, {""speaker"": ""client"", ""text"": ""Prasenjit: The price is still high. Can you match Eden Devprayag's rate?"", ""start"": 23.83, ""end"": 26.12}, {""speaker"": ""agent"", ""text"": ""Rahul: I understand. Let me see what best I can do. Are you flexible on floor preference?"", ""start"": 27.08, ""end"": 29.99}, {""speaker"": ""client"", ""text"": ""Prasenjit: Not really. I want mid-floor east facing."", ""start"": 31.33, ""end"": 38.88}, {""speaker"": ""agent"", ""text"": ""Rahul: That's our premium inventory. But for serious buyers, I can check for a corporate discount."", ""start"": 39.99, ""end"": 47.78}, {""speaker"": ""client"", ""text"": ""Prasenjit: Please do. We're ready to close quickly."", ""start"": 49.59, ""end"": 52.46}, {""speaker"": ""agent"", ""text"": ""Rahul: Will revert by tomorrow 2 PM."", ""start"": 54.39, ""end"": 61.76}]",0.86
|
||||
TRX-00048,CAL-00093,en-IN,"Vikram: Hi Deb, following up on your enquiry for Atri Surya Toron. Deb: Yes, tell me. Vikram: We have a new tower launch with pre-launch pricing. Are you still looking in Rajarhat? Deb: Yes, what's the price? Vikram: Starting at 4.27 Cr for 3 BHK. Possession by September 2026. Deb: That's good. Send me the details on WhatsApp. Vikram: Done. When can you visit? Deb: This weekend. Vikram: I'll block Saturday 11 AM for you.","[{""speaker"": ""agent"", ""text"": ""Vikram: Hi Deb, following up on your enquiry for Atri Surya Toron."", ""start"": 0.0, ""end"": 5.94}, {""speaker"": ""client"", ""text"": ""Deb: Yes, tell me."", ""start"": 7.55, ""end"": 13.34}, {""speaker"": ""agent"", ""text"": ""Vikram: We have a new tower launch with pre-launch pricing. Are you still looking in Rajarhat?"", ""start"": 14.27, ""end"": 19.07}, {""speaker"": ""client"", ""text"": ""Deb: Yes, what's the price?"", ""start"": 20.38, ""end"": 25.54}, {""speaker"": ""agent"", ""text"": ""Vikram: Starting at 4.27 Cr for 3 BHK. Possession by September 2026."", ""start"": 27.4, ""end"": 32.44}, {""speaker"": ""client"", ""text"": ""Deb: That's good. Send me the details on WhatsApp."", ""start"": 34.41, ""end"": 38.63}, {""speaker"": ""agent"", ""text"": ""Vikram: Done. When can you visit?"", ""start"": 40.02, ""end"": 44.61}, {""speaker"": ""client"", ""text"": ""Deb: This weekend."", ""start"": 45.63, ""end"": 49.83}, {""speaker"": ""agent"", ""text"": ""Vikram: I'll block Saturday 11 AM for you."", ""start"": 51.49, ""end"": 56.18}]",0.88
|
||||
TRX-00049,CAL-00094,en-IN,"Vikram: Hello Deb, this is Vikram from Velocity regarding Atri Surya Toron. Deb: Yes, tell me. Vikram: We have a new tower launch with pre-launch pricing. Are you still looking in Rajarhat? Deb: Yes, what's the price? Vikram: Starting at 5.87 Cr for 3 BHK. Possession by September 2026. Deb: That's good. Send me the details on WhatsApp. Vikram: Done. When can you visit? Deb: This weekend. Vikram: I'll block Saturday 11 AM for you.","[{""speaker"": ""agent"", ""text"": ""Vikram: Hello Deb, this is Vikram from Velocity regarding Atri Surya Toron."", ""start"": 0.0, ""end"": 5.06}, {""speaker"": ""client"", ""text"": ""Deb: Yes, tell me."", ""start"": 6.99, ""end"": 9.23}, {""speaker"": ""agent"", ""text"": ""Vikram: We have a new tower launch with pre-launch pricing. Are you still looking in Rajarhat?"", ""start"": 10.78, ""end"": 18.04}, {""speaker"": ""client"", ""text"": ""Deb: Yes, what's the price?"", ""start"": 18.55, ""end"": 23.0}, {""speaker"": ""agent"", ""text"": ""Vikram: Starting at 5.87 Cr for 3 BHK. Possession by September 2026."", ""start"": 24.4, ""end"": 27.01}, {""speaker"": ""client"", ""text"": ""Deb: That's good. Send me the details on WhatsApp."", ""start"": 27.71, ""end"": 30.72}, {""speaker"": ""agent"", ""text"": ""Vikram: Done. When can you visit?"", ""start"": 31.97, ""end"": 37.93}, {""speaker"": ""client"", ""text"": ""Deb: This weekend."", ""start"": 38.64, ""end"": 41.69}, {""speaker"": ""agent"", ""text"": ""Vikram: I'll block Saturday 11 AM for you."", ""start"": 42.42, ""end"": 46.38}]",0.85
|
||||
TRX-00050,CAL-00097,en-IN,"Vikram: Hello Trisha, this is Vikram from Velocity regarding Godrej Elevate. Trisha: Yes, tell me. Vikram: We have a new tower launch with pre-launch pricing. Are you still looking in Dum Dum? Trisha: Yes, what's the price? Vikram: Starting at 3.81 Cr for 3 BHK. Possession by June 2026. Trisha: That's good. Send me the details on WhatsApp. Vikram: Done. When can you visit? Trisha: This weekend. Vikram: I'll block Saturday 11 AM for you.","[{""speaker"": ""agent"", ""text"": ""Vikram: Hello Trisha, this is Vikram from Velocity regarding Godrej Elevate."", ""start"": 0.0, ""end"": 2.52}, {""speaker"": ""client"", ""text"": ""Trisha: Yes, tell me."", ""start"": 3.72, ""end"": 7.87}, {""speaker"": ""agent"", ""text"": ""Vikram: We have a new tower launch with pre-launch pricing. Are you still looking in Dum Dum?"", ""start"": 8.73, ""end"": 14.36}, {""speaker"": ""client"", ""text"": ""Trisha: Yes, what's the price?"", ""start"": 15.57, ""end"": 18.9}, {""speaker"": ""agent"", ""text"": ""Vikram: Starting at 3.81 Cr for 3 BHK. Possession by June 2026."", ""start"": 19.59, ""end"": 22.32}, {""speaker"": ""client"", ""text"": ""Trisha: That's good. Send me the details on WhatsApp."", ""start"": 23.16, ""end"": 28.35}, {""speaker"": ""agent"", ""text"": ""Vikram: Done. When can you visit?"", ""start"": 30.26, ""end"": 32.53}, {""speaker"": ""client"", ""text"": ""Trisha: This weekend."", ""start"": 33.17, ""end"": 36.61}, {""speaker"": ""agent"", ""text"": ""Vikram: I'll block Saturday 11 AM for you."", ""start"": 37.47, ""end"": 43.1}]",0.83
|
||||
TRX-00051,CAL-00098,en-IN,"Vikram: Hello Trisha, this is Vikram from Velocity regarding Godrej Elevate. Trisha: Yes, tell me. Vikram: We have a new tower launch with pre-launch pricing. Are you still looking in Dum Dum? Trisha: Yes, what's the price? Vikram: Starting at 7.03 Cr for 3 BHK. Possession by August 2026. Trisha: That's good. Send me the details on WhatsApp. Vikram: Done. When can you visit? Trisha: This weekend. Vikram: I'll block Saturday 11 AM for you.","[{""speaker"": ""agent"", ""text"": ""Vikram: Hello Trisha, this is Vikram from Velocity regarding Godrej Elevate."", ""start"": 0.0, ""end"": 3.47}, {""speaker"": ""client"", ""text"": ""Trisha: Yes, tell me."", ""start"": 5.21, ""end"": 11.73}, {""speaker"": ""agent"", ""text"": ""Vikram: We have a new tower launch with pre-launch pricing. Are you still looking in Dum Dum?"", ""start"": 13.08, ""end"": 19.29}, {""speaker"": ""client"", ""text"": ""Trisha: Yes, what's the price?"", ""start"": 19.9, ""end"": 25.5}, {""speaker"": ""agent"", ""text"": ""Vikram: Starting at 7.03 Cr for 3 BHK. Possession by August 2026."", ""start"": 26.94, ""end"": 30.19}, {""speaker"": ""client"", ""text"": ""Trisha: That's good. Send me the details on WhatsApp."", ""start"": 32.15, ""end"": 35.7}, {""speaker"": ""agent"", ""text"": ""Vikram: Done. When can you visit?"", ""start"": 36.93, ""end"": 41.91}, {""speaker"": ""client"", ""text"": ""Trisha: This weekend."", ""start"": 42.93, ""end"": 50.44}, {""speaker"": ""agent"", ""text"": ""Vikram: I'll block Saturday 11 AM for you."", ""start"": 51.15, ""end"": 57.16}]",0.87
|
||||
TRX-00052,CAL-00099,en-IN,"Vikram: Hi Trisha, following up on your enquiry for Godrej Elevate. Trisha: Hi, I was about to call you. Vikram: Great minds! What were you thinking? Trisha: The price is still high. Can you match Ambuja Utpaala's rate? Vikram: I understand. Let me see what best I can do. Are you flexible on floor preference? Trisha: Not really. I want mid-floor east facing. Vikram: That's our premium inventory. But for serious buyers, I can check for a corporate discount. Trisha: Please do. We're ready to close quickly. Vikram: Will revert by tomorrow 2 PM.","[{""speaker"": ""agent"", ""text"": ""Vikram: Hi Trisha, following up on your enquiry for Godrej Elevate."", ""start"": 0.0, ""end"": 4.93}, {""speaker"": ""client"", ""text"": ""Trisha: Hi, I was about to call you."", ""start"": 6.69, ""end"": 11.0}, {""speaker"": ""agent"", ""text"": ""Vikram: Great minds! What were you thinking?"", ""start"": 12.2, ""end"": 17.27}, {""speaker"": ""client"", ""text"": ""Trisha: The price is still high. Can you match Ambuja Utpaala's rate?"", ""start"": 18.66, ""end"": 24.12}, {""speaker"": ""agent"", ""text"": ""Vikram: I understand. Let me see what best I can do. Are you flexible on floor preference?"", ""start"": 25.68, ""end"": 30.13}, {""speaker"": ""client"", ""text"": ""Trisha: Not really. I want mid-floor east facing."", ""start"": 30.83, ""end"": 33.61}, {""speaker"": ""agent"", ""text"": ""Vikram: That's our premium inventory. But for serious buyers, I can check for a corporate discount."", ""start"": 34.96, ""end"": 42.11}, {""speaker"": ""client"", ""text"": ""Trisha: Please do. We're ready to close quickly."", ""start"": 42.83, ""end"": 49.42}, {""speaker"": ""agent"", ""text"": ""Vikram: Will revert by tomorrow 2 PM."", ""start"": 51.05, ""end"": 54.13}]",0.92
|
||||
TRX-00053,CAL-00100,en-IN,"Rahul: Hi Trisha, following up on your enquiry for Godrej Elevate. Trisha: Hi, I was about to call you. Rahul: Great minds! What were you thinking? Trisha: The price is still high. Can you match Siddha Serena's rate? Rahul: I understand. Let me see what best I can do. Are you flexible on floor preference? Trisha: Not really. I want mid-floor east facing. Rahul: That's our premium inventory. But for serious buyers, I can check for a corporate discount. Trisha: Please do. We're ready to close quickly. Rahul: Will revert by tomorrow 2 PM.","[{""speaker"": ""agent"", ""text"": ""Rahul: Hi Trisha, following up on your enquiry for Godrej Elevate."", ""start"": 0.0, ""end"": 7.41}, {""speaker"": ""client"", ""text"": ""Trisha: Hi, I was about to call you."", ""start"": 8.19, ""end"": 12.95}, {""speaker"": ""agent"", ""text"": ""Rahul: Great minds! What were you thinking?"", ""start"": 14.93, ""end"": 20.94}, {""speaker"": ""client"", ""text"": ""Trisha: The price is still high. Can you match Siddha Serena's rate?"", ""start"": 22.49, ""end"": 28.83}, {""speaker"": ""agent"", ""text"": ""Rahul: I understand. Let me see what best I can do. Are you flexible on floor preference?"", ""start"": 30.02, ""end"": 37.21}, {""speaker"": ""client"", ""text"": ""Trisha: Not really. I want mid-floor east facing."", ""start"": 38.14, ""end"": 41.36}, {""speaker"": ""agent"", ""text"": ""Rahul: That's our premium inventory. But for serious buyers, I can check for a corporate discount."", ""start"": 42.84, ""end"": 47.56}, {""speaker"": ""client"", ""text"": ""Trisha: Please do. We're ready to close quickly."", ""start"": 49.08, ""end"": 52.53}, {""speaker"": ""agent"", ""text"": ""Rahul: Will revert by tomorrow 2 PM."", ""start"": 53.7, ""end"": 56.04}]",0.92
|
||||
TRX-00054,CAL-00102,en-IN,"Rahul: Hi Trisha, following up on your enquiry for Godrej Elevate. Trisha: Hi, I was about to call you. Rahul: Great minds! What were you thinking? Trisha: The price is still high. Can you match Siddha Serena's rate? Rahul: I understand. Let me see what best I can do. Are you flexible on floor preference? Trisha: Not really. I want mid-floor east facing. Rahul: That's our premium inventory. But for serious buyers, I can check for a corporate discount. Trisha: Please do. We're ready to close quickly. Rahul: Will revert by tomorrow 2 PM.","[{""speaker"": ""agent"", ""text"": ""Rahul: Hi Trisha, following up on your enquiry for Godrej Elevate."", ""start"": 0.0, ""end"": 2.37}, {""speaker"": ""client"", ""text"": ""Trisha: Hi, I was about to call you."", ""start"": 3.23, ""end"": 7.27}, {""speaker"": ""agent"", ""text"": ""Rahul: Great minds! What were you thinking?"", ""start"": 8.8, ""end"": 14.61}, {""speaker"": ""client"", ""text"": ""Trisha: The price is still high. Can you match Siddha Serena's rate?"", ""start"": 15.26, ""end"": 19.12}, {""speaker"": ""agent"", ""text"": ""Rahul: I understand. Let me see what best I can do. Are you flexible on floor preference?"", ""start"": 20.1, ""end"": 25.85}, {""speaker"": ""client"", ""text"": ""Trisha: Not really. I want mid-floor east facing."", ""start"": 26.37, ""end"": 30.66}, {""speaker"": ""agent"", ""text"": ""Rahul: That's our premium inventory. But for serious buyers, I can check for a corporate discount."", ""start"": 31.83, ""end"": 37.12}, {""speaker"": ""client"", ""text"": ""Trisha: Please do. We're ready to close quickly."", ""start"": 37.68, ""end"": 40.6}, {""speaker"": ""agent"", ""text"": ""Rahul: Will revert by tomorrow 2 PM."", ""start"": 41.8, ""end"": 49.18}]",0.9
|
||||
TRX-00055,CAL-00104,en-IN,"Priya: Hi Parth, following up on your enquiry for Siddha Sky Waterfront. Parth: Yes, tell me. Priya: We have a new tower launch with pre-launch pricing. Are you still looking in Beliaghata? Parth: Yes, what's the price? Priya: Starting at 5.04 Cr for 3 BHK. Possession by September 2026. Parth: That's good. Send me the details on WhatsApp. Priya: Done. When can you visit? Parth: This weekend. Priya: I'll block Saturday 11 AM for you.","[{""speaker"": ""agent"", ""text"": ""Priya: Hi Parth, following up on your enquiry for Siddha Sky Waterfront."", ""start"": 0.0, ""end"": 5.56}, {""speaker"": ""client"", ""text"": ""Parth: Yes, tell me."", ""start"": 7.27, ""end"": 13.1}, {""speaker"": ""agent"", ""text"": ""Priya: We have a new tower launch with pre-launch pricing. Are you still looking in Beliaghata?"", ""start"": 14.82, ""end"": 17.57}, {""speaker"": ""client"", ""text"": ""Parth: Yes, what's the price?"", ""start"": 18.85, ""end"": 26.66}, {""speaker"": ""agent"", ""text"": ""Priya: Starting at 5.04 Cr for 3 BHK. Possession by September 2026."", ""start"": 27.16, ""end"": 34.81}, {""speaker"": ""client"", ""text"": ""Parth: That's good. Send me the details on WhatsApp."", ""start"": 35.32, ""end"": 38.07}, {""speaker"": ""agent"", ""text"": ""Priya: Done. When can you visit?"", ""start"": 39.66, ""end"": 46.63}, {""speaker"": ""client"", ""text"": ""Parth: This weekend."", ""start"": 47.96, ""end"": 54.72}, {""speaker"": ""agent"", ""text"": ""Priya: I'll block Saturday 11 AM for you."", ""start"": 55.93, ""end"": 58.65}]",0.86
|
||||
TRX-00056,CAL-00107,en-IN,"Vikram: Good morning Ananya, wanted to share some updates about Shriram Grand City. Ananya: Yes, tell me. Vikram: We have a new tower launch with pre-launch pricing. Are you still looking in Howrah? Ananya: Yes, what's the price? Vikram: Starting at 5.83 Cr for 3 BHK. Possession by June 2026. Ananya: That's good. Send me the details on WhatsApp. Vikram: Done. When can you visit? Ananya: This weekend. Vikram: I'll block Saturday 11 AM for you.","[{""speaker"": ""agent"", ""text"": ""Vikram: Good morning Ananya, wanted to share some updates about Shriram Grand City."", ""start"": 0.0, ""end"": 6.87}, {""speaker"": ""client"", ""text"": ""Ananya: Yes, tell me."", ""start"": 8.01, ""end"": 12.99}, {""speaker"": ""agent"", ""text"": ""Vikram: We have a new tower launch with pre-launch pricing. Are you still looking in Howrah?"", ""start"": 14.08, ""end"": 19.34}, {""speaker"": ""client"", ""text"": ""Ananya: Yes, what's the price?"", ""start"": 21.28, ""end"": 26.55}, {""speaker"": ""agent"", ""text"": ""Vikram: Starting at 5.83 Cr for 3 BHK. Possession by June 2026."", ""start"": 28.4, ""end"": 34.78}, {""speaker"": ""client"", ""text"": ""Ananya: That's good. Send me the details on WhatsApp."", ""start"": 35.87, ""end"": 40.63}, {""speaker"": ""agent"", ""text"": ""Vikram: Done. When can you visit?"", ""start"": 41.73, ""end"": 46.33}, {""speaker"": ""client"", ""text"": ""Ananya: This weekend."", ""start"": 47.49, ""end"": 52.91}, {""speaker"": ""agent"", ""text"": ""Vikram: I'll block Saturday 11 AM for you."", ""start"": 54.44, ""end"": 62.14}]",0.87
|
||||
TRX-00057,CAL-00114,en-IN,"Rahul: Good morning Parth, wanted to share some updates about Shriram Grand City. Parth: Hi, I was about to call you. Rahul: Great minds! What were you thinking? Parth: The price is still high. Can you match Eden Devprayag's rate? Rahul: I understand. Let me see what best I can do. Are you flexible on floor preference? Parth: Not really. I want mid-floor east facing. Rahul: That's our premium inventory. But for serious buyers, I can check for a corporate discount. Parth: Please do. We're ready to close quickly. Rahul: Will revert by tomorrow 2 PM.","[{""speaker"": ""agent"", ""text"": ""Rahul: Good morning Parth, wanted to share some updates about Shriram Grand City."", ""start"": 0.0, ""end"": 5.73}, {""speaker"": ""client"", ""text"": ""Parth: Hi, I was about to call you."", ""start"": 6.32, ""end"": 13.31}, {""speaker"": ""agent"", ""text"": ""Rahul: Great minds! What were you thinking?"", ""start"": 14.17, ""end"": 19.76}, {""speaker"": ""client"", ""text"": ""Parth: The price is still high. Can you match Eden Devprayag's rate?"", ""start"": 21.68, ""end"": 25.55}, {""speaker"": ""agent"", ""text"": ""Rahul: I understand. Let me see what best I can do. Are you flexible on floor preference?"", ""start"": 26.1, ""end"": 31.34}, {""speaker"": ""client"", ""text"": ""Parth: Not really. I want mid-floor east facing."", ""start"": 33.21, ""end"": 39.55}, {""speaker"": ""agent"", ""text"": ""Rahul: That's our premium inventory. But for serious buyers, I can check for a corporate discount."", ""start"": 40.71, ""end"": 48.43}, {""speaker"": ""client"", ""text"": ""Parth: Please do. We're ready to close quickly."", ""start"": 49.25, ""end"": 54.44}, {""speaker"": ""agent"", ""text"": ""Rahul: Will revert by tomorrow 2 PM."", ""start"": 55.77, ""end"": 59.84}]",0.91
|
||||
TRX-00058,CAL-00115,en-IN,"Vikram: Hi Sonal, following up on your enquiry for Siddha Sky Waterfront. Sonal: Hi, I was about to call you. Vikram: Great minds! What were you thinking? Sonal: The price is still high. Can you match Atri Aqua's rate? Vikram: I understand. Let me see what best I can do. Are you flexible on floor preference? Sonal: Not really. I want mid-floor east facing. Vikram: That's our premium inventory. But for serious buyers, I can check for a corporate discount. Sonal: Please do. We're ready to close quickly. Vikram: Will revert by tomorrow 2 PM.","[{""speaker"": ""agent"", ""text"": ""Vikram: Hi Sonal, following up on your enquiry for Siddha Sky Waterfront."", ""start"": 0.0, ""end"": 2.04}, {""speaker"": ""client"", ""text"": ""Sonal: Hi, I was about to call you."", ""start"": 3.7, ""end"": 7.16}, {""speaker"": ""agent"", ""text"": ""Vikram: Great minds! What were you thinking?"", ""start"": 8.41, ""end"": 14.87}, {""speaker"": ""client"", ""text"": ""Sonal: The price is still high. Can you match Atri Aqua's rate?"", ""start"": 15.84, ""end"": 21.41}, {""speaker"": ""agent"", ""text"": ""Vikram: I understand. Let me see what best I can do. Are you flexible on floor preference?"", ""start"": 22.66, ""end"": 26.09}, {""speaker"": ""client"", ""text"": ""Sonal: Not really. I want mid-floor east facing."", ""start"": 27.75, ""end"": 34.07}, {""speaker"": ""agent"", ""text"": ""Vikram: That's our premium inventory. But for serious buyers, I can check for a corporate discount."", ""start"": 34.88, ""end"": 40.95}, {""speaker"": ""client"", ""text"": ""Sonal: Please do. We're ready to close quickly."", ""start"": 41.9, ""end"": 44.78}, {""speaker"": ""agent"", ""text"": ""Vikram: Will revert by tomorrow 2 PM."", ""start"": 46.46, ""end"": 48.91}]",0.9
|
||||
TRX-00059,CAL-00119,en-IN,"Priya: Hi Sonal, following up on your enquiry for Siddha Sky Waterfront. Sonal: Yes, tell me. Priya: We have a new tower launch with pre-launch pricing. Are you still looking in Beliaghata? Sonal: Yes, what's the price? Priya: Starting at 1.78 Cr for 3 BHK. Possession by July 2026. Sonal: That's good. Send me the details on WhatsApp. Priya: Done. When can you visit? Sonal: This weekend. Priya: I'll block Saturday 11 AM for you.","[{""speaker"": ""agent"", ""text"": ""Priya: Hi Sonal, following up on your enquiry for Siddha Sky Waterfront."", ""start"": 0.0, ""end"": 7.06}, {""speaker"": ""client"", ""text"": ""Sonal: Yes, tell me."", ""start"": 8.71, ""end"": 16.42}, {""speaker"": ""agent"", ""text"": ""Priya: We have a new tower launch with pre-launch pricing. Are you still looking in Beliaghata?"", ""start"": 18.09, ""end"": 24.06}, {""speaker"": ""client"", ""text"": ""Sonal: Yes, what's the price?"", ""start"": 24.81, ""end"": 30.4}, {""speaker"": ""agent"", ""text"": ""Priya: Starting at 1.78 Cr for 3 BHK. Possession by July 2026."", ""start"": 31.32, ""end"": 35.58}, {""speaker"": ""client"", ""text"": ""Sonal: That's good. Send me the details on WhatsApp."", ""start"": 37.48, ""end"": 42.74}, {""speaker"": ""agent"", ""text"": ""Priya: Done. When can you visit?"", ""start"": 43.5, ""end"": 46.24}, {""speaker"": ""client"", ""text"": ""Sonal: This weekend."", ""start"": 47.03, ""end"": 53.21}, {""speaker"": ""agent"", ""text"": ""Priya: I'll block Saturday 11 AM for you."", ""start"": 54.87, ""end"": 61.96}]",0.91
|
||||
TRX-00060,CAL-00120,en-IN,"Rahul: Hi Shreya, following up on your enquiry for Sugam Prakriti. Shreya: Hi, I was about to call you. Rahul: Great minds! What were you thinking? Shreya: The price is still high. Can you match Ambuja Utpaala's rate? Rahul: I understand. Let me see what best I can do. Are you flexible on floor preference? Shreya: Not really. I want mid-floor east facing. Rahul: That's our premium inventory. But for serious buyers, I can check for a corporate discount. Shreya: Please do. We're ready to close quickly. Rahul: Will revert by tomorrow 2 PM.","[{""speaker"": ""agent"", ""text"": ""Rahul: Hi Shreya, following up on your enquiry for Sugam Prakriti."", ""start"": 0.0, ""end"": 6.17}, {""speaker"": ""client"", ""text"": ""Shreya: Hi, I was about to call you."", ""start"": 6.85, ""end"": 11.38}, {""speaker"": ""agent"", ""text"": ""Rahul: Great minds! What were you thinking?"", ""start"": 12.06, ""end"": 17.74}, {""speaker"": ""client"", ""text"": ""Shreya: The price is still high. Can you match Ambuja Utpaala's rate?"", ""start"": 19.03, ""end"": 26.12}, {""speaker"": ""agent"", ""text"": ""Rahul: I understand. Let me see what best I can do. Are you flexible on floor preference?"", ""start"": 27.08, ""end"": 31.94}, {""speaker"": ""client"", ""text"": ""Shreya: Not really. I want mid-floor east facing."", ""start"": 32.69, ""end"": 37.78}, {""speaker"": ""agent"", ""text"": ""Rahul: That's our premium inventory. But for serious buyers, I can check for a corporate discount."", ""start"": 38.78, ""end"": 46.2}, {""speaker"": ""client"", ""text"": ""Shreya: Please do. We're ready to close quickly."", ""start"": 47.93, ""end"": 53.22}, {""speaker"": ""agent"", ""text"": ""Rahul: Will revert by tomorrow 2 PM."", ""start"": 54.97, ""end"": 62.96}]",0.91
|
||||
TRX-00061,CAL-00123,en-IN,"Rahul: Good morning Trisha, wanted to share some updates about Sugam Prakriti. Trisha: Yes, tell me. Rahul: We have a new tower launch with pre-launch pricing. Are you still looking in Barasat? Trisha: Yes, what's the price? Rahul: Starting at 3.98 Cr for 3 BHK. Possession by August 2026. Trisha: That's good. Send me the details on WhatsApp. Rahul: Done. When can you visit? Trisha: This weekend. Rahul: I'll block Saturday 11 AM for you.","[{""speaker"": ""agent"", ""text"": ""Rahul: Good morning Trisha, wanted to share some updates about Sugam Prakriti."", ""start"": 0.0, ""end"": 4.31}, {""speaker"": ""client"", ""text"": ""Trisha: Yes, tell me."", ""start"": 4.93, ""end"": 7.09}, {""speaker"": ""agent"", ""text"": ""Rahul: We have a new tower launch with pre-launch pricing. Are you still looking in Barasat?"", ""start"": 7.89, ""end"": 10.98}, {""speaker"": ""client"", ""text"": ""Trisha: Yes, what's the price?"", ""start"": 12.34, ""end"": 20.08}, {""speaker"": ""agent"", ""text"": ""Rahul: Starting at 3.98 Cr for 3 BHK. Possession by August 2026."", ""start"": 20.95, ""end"": 26.45}, {""speaker"": ""client"", ""text"": ""Trisha: That's good. Send me the details on WhatsApp."", ""start"": 28.35, ""end"": 31.36}, {""speaker"": ""agent"", ""text"": ""Rahul: Done. When can you visit?"", ""start"": 32.38, ""end"": 37.79}, {""speaker"": ""client"", ""text"": ""Trisha: This weekend."", ""start"": 38.43, ""end"": 45.12}, {""speaker"": ""agent"", ""text"": ""Rahul: I'll block Saturday 11 AM for you."", ""start"": 45.91, ""end"": 52.67}]",0.86
|
||||
TRX-00062,CAL-00126,en-IN,"Ananya: Hello Trisha, this is Ananya from Velocity regarding Sugam Prakriti. Trisha: Yes, tell me. Ananya: We have a new tower launch with pre-launch pricing. Are you still looking in Barasat? Trisha: Yes, what's the price? Ananya: Starting at 5.96 Cr for 3 BHK. Possession by August 2026. Trisha: That's good. Send me the details on WhatsApp. Ananya: Done. When can you visit? Trisha: This weekend. Ananya: I'll block Saturday 11 AM for you.","[{""speaker"": ""agent"", ""text"": ""Ananya: Hello Trisha, this is Ananya from Velocity regarding Sugam Prakriti."", ""start"": 0.0, ""end"": 6.79}, {""speaker"": ""client"", ""text"": ""Trisha: Yes, tell me."", ""start"": 7.68, ""end"": 10.3}, {""speaker"": ""agent"", ""text"": ""Ananya: We have a new tower launch with pre-launch pricing. Are you still looking in Barasat?"", ""start"": 11.39, ""end"": 17.75}, {""speaker"": ""client"", ""text"": ""Trisha: Yes, what's the price?"", ""start"": 18.25, ""end"": 23.28}, {""speaker"": ""agent"", ""text"": ""Ananya: Starting at 5.96 Cr for 3 BHK. Possession by August 2026."", ""start"": 25.2, ""end"": 31.17}, {""speaker"": ""client"", ""text"": ""Trisha: That's good. Send me the details on WhatsApp."", ""start"": 32.06, ""end"": 35.29}, {""speaker"": ""agent"", ""text"": ""Ananya: Done. When can you visit?"", ""start"": 36.83, ""end"": 44.16}, {""speaker"": ""client"", ""text"": ""Trisha: This weekend."", ""start"": 46.13, ""end"": 53.43}, {""speaker"": ""agent"", ""text"": ""Ananya: I'll block Saturday 11 AM for you."", ""start"": 55.42, ""end"": 61.29}]",0.88
|
||||
TRX-00063,CAL-00128,en-IN,"Vikram: Hello Divya, this is Vikram from Velocity regarding Siddha Sky Waterfront. Divya: Yes, tell me. Vikram: We have a new tower launch with pre-launch pricing. Are you still looking in Beliaghata? Divya: Yes, what's the price? Vikram: Starting at 6.1 Cr for 3 BHK. Possession by August 2026. Divya: That's good. Send me the details on WhatsApp. Vikram: Done. When can you visit? Divya: This weekend. Vikram: I'll block Saturday 11 AM for you.","[{""speaker"": ""agent"", ""text"": ""Vikram: Hello Divya, this is Vikram from Velocity regarding Siddha Sky Waterfront."", ""start"": 0.0, ""end"": 6.62}, {""speaker"": ""client"", ""text"": ""Divya: Yes, tell me."", ""start"": 8.39, ""end"": 12.66}, {""speaker"": ""agent"", ""text"": ""Vikram: We have a new tower launch with pre-launch pricing. Are you still looking in Beliaghata?"", ""start"": 13.66, ""end"": 16.91}, {""speaker"": ""client"", ""text"": ""Divya: Yes, what's the price?"", ""start"": 18.55, ""end"": 21.43}, {""speaker"": ""agent"", ""text"": ""Vikram: Starting at 6.1 Cr for 3 BHK. Possession by August 2026."", ""start"": 23.23, ""end"": 28.38}, {""speaker"": ""client"", ""text"": ""Divya: That's good. Send me the details on WhatsApp."", ""start"": 30.02, ""end"": 33.98}, {""speaker"": ""agent"", ""text"": ""Vikram: Done. When can you visit?"", ""start"": 34.7, ""end"": 38.0}, {""speaker"": ""client"", ""text"": ""Divya: This weekend."", ""start"": 38.95, ""end"": 42.5}, {""speaker"": ""agent"", ""text"": ""Vikram: I'll block Saturday 11 AM for you."", ""start"": 43.77, ""end"": 50.08}]",0.9
|
||||
TRX-00064,CAL-00129,en-IN,"Vikram: Good morning Abhishek, wanted to share some updates about Godrej Elevate. Abhishek: Hi, I was about to call you. Vikram: Great minds! What were you thinking? Abhishek: The price is still high. Can you match Ambuja Utpaala's rate? Vikram: I understand. Let me see what best I can do. Are you flexible on floor preference? Abhishek: Not really. I want mid-floor east facing. Vikram: That's our premium inventory. But for serious buyers, I can check for a corporate discount. Abhishek: Please do. We're ready to close quickly. Vikram: Will revert by tomorrow 2 PM.","[{""speaker"": ""agent"", ""text"": ""Vikram: Good morning Abhishek, wanted to share some updates about Godrej Elevate."", ""start"": 0.0, ""end"": 2.46}, {""speaker"": ""client"", ""text"": ""Abhishek: Hi, I was about to call you."", ""start"": 4.09, ""end"": 7.34}, {""speaker"": ""agent"", ""text"": ""Vikram: Great minds! What were you thinking?"", ""start"": 8.77, ""end"": 15.07}, {""speaker"": ""client"", ""text"": ""Abhishek: The price is still high. Can you match Ambuja Utpaala's rate?"", ""start"": 16.43, ""end"": 20.88}, {""speaker"": ""agent"", ""text"": ""Vikram: I understand. Let me see what best I can do. Are you flexible on floor preference?"", ""start"": 21.98, ""end"": 28.45}, {""speaker"": ""client"", ""text"": ""Abhishek: Not really. I want mid-floor east facing."", ""start"": 30.04, ""end"": 34.04}, {""speaker"": ""agent"", ""text"": ""Vikram: That's our premium inventory. But for serious buyers, I can check for a corporate discount."", ""start"": 35.52, ""end"": 43.01}, {""speaker"": ""client"", ""text"": ""Abhishek: Please do. We're ready to close quickly."", ""start"": 44.8, ""end"": 52.71}, {""speaker"": ""agent"", ""text"": ""Vikram: Will revert by tomorrow 2 PM."", ""start"": 54.15, ""end"": 56.23}]",0.86
|
||||
TRX-00065,CAL-00130,en-IN,"Rahul: Good morning Abhishek, wanted to share some updates about Godrej Elevate. Abhishek: Hi, I was about to call you. Rahul: Great minds! What were you thinking? Abhishek: The price is still high. Can you match Atri Surya Toron's rate? Rahul: I understand. Let me see what best I can do. Are you flexible on floor preference? Abhishek: Not really. I want mid-floor east facing. Rahul: That's our premium inventory. But for serious buyers, I can check for a corporate discount. Abhishek: Please do. We're ready to close quickly. Rahul: Will revert by tomorrow 2 PM.","[{""speaker"": ""agent"", ""text"": ""Rahul: Good morning Abhishek, wanted to share some updates about Godrej Elevate."", ""start"": 0.0, ""end"": 3.85}, {""speaker"": ""client"", ""text"": ""Abhishek: Hi, I was about to call you."", ""start"": 5.65, ""end"": 9.17}, {""speaker"": ""agent"", ""text"": ""Rahul: Great minds! What were you thinking?"", ""start"": 10.77, ""end"": 15.5}, {""speaker"": ""client"", ""text"": ""Abhishek: The price is still high. Can you match Atri Surya Toron's rate?"", ""start"": 17.29, ""end"": 21.26}, {""speaker"": ""agent"", ""text"": ""Rahul: I understand. Let me see what best I can do. Are you flexible on floor preference?"", ""start"": 22.15, ""end"": 29.39}, {""speaker"": ""client"", ""text"": ""Abhishek: Not really. I want mid-floor east facing."", ""start"": 30.14, ""end"": 35.03}, {""speaker"": ""agent"", ""text"": ""Rahul: That's our premium inventory. But for serious buyers, I can check for a corporate discount."", ""start"": 35.87, ""end"": 43.36}, {""speaker"": ""client"", ""text"": ""Abhishek: Please do. We're ready to close quickly."", ""start"": 44.89, ""end"": 48.75}, {""speaker"": ""agent"", ""text"": ""Rahul: Will revert by tomorrow 2 PM."", ""start"": 50.55, ""end"": 53.77}]",0.95
|
||||
TRX-00066,CAL-00133,en-IN,"Rahul: Good morning Swati, wanted to share some updates about Godrej Elevate. Swati: Yes, tell me. Rahul: We have a new tower launch with pre-launch pricing. Are you still looking in Dum Dum? Swati: Yes, what's the price? Rahul: Starting at 3.98 Cr for 3 BHK. Possession by July 2026. Swati: That's good. Send me the details on WhatsApp. Rahul: Done. When can you visit? Swati: This weekend. Rahul: I'll block Saturday 11 AM for you.","[{""speaker"": ""agent"", ""text"": ""Rahul: Good morning Swati, wanted to share some updates about Godrej Elevate."", ""start"": 0.0, ""end"": 6.8}, {""speaker"": ""client"", ""text"": ""Swati: Yes, tell me."", ""start"": 7.49, ""end"": 15.04}, {""speaker"": ""agent"", ""text"": ""Rahul: We have a new tower launch with pre-launch pricing. Are you still looking in Dum Dum?"", ""start"": 15.76, ""end"": 19.9}, {""speaker"": ""client"", ""text"": ""Swati: Yes, what's the price?"", ""start"": 21.36, ""end"": 28.37}, {""speaker"": ""agent"", ""text"": ""Rahul: Starting at 3.98 Cr for 3 BHK. Possession by July 2026."", ""start"": 29.72, ""end"": 34.9}, {""speaker"": ""client"", ""text"": ""Swati: That's good. Send me the details on WhatsApp."", ""start"": 36.34, ""end"": 38.86}, {""speaker"": ""agent"", ""text"": ""Rahul: Done. When can you visit?"", ""start"": 39.37, ""end"": 45.34}, {""speaker"": ""client"", ""text"": ""Swati: This weekend."", ""start"": 46.79, ""end"": 51.75}, {""speaker"": ""agent"", ""text"": ""Rahul: I'll block Saturday 11 AM for you."", ""start"": 53.39, ""end"": 59.61}]",0.82
|
||||
TRX-00067,CAL-00136,en-IN,"Priya: Hello Priya, this is Priya from Velocity regarding Siddha Sky Waterfront. Priya: Hi, I was about to call you. Priya: Great minds! What were you thinking? Priya: The price is still high. Can you match Godrej Blue's rate? Priya: I understand. Let me see what best I can do. Are you flexible on floor preference? Priya: Not really. I want mid-floor east facing. Priya: That's our premium inventory. But for serious buyers, I can check for a corporate discount. Priya: Please do. We're ready to close quickly. Priya: Will revert by tomorrow 2 PM.","[{""speaker"": ""agent"", ""text"": ""Priya: Hello Priya, this is Priya from Velocity regarding Siddha Sky Waterfront."", ""start"": 0.0, ""end"": 6.72}, {""speaker"": ""client"", ""text"": ""Priya: Hi, I was about to call you."", ""start"": 7.72, ""end"": 13.92}, {""speaker"": ""agent"", ""text"": ""Priya: Great minds! What were you thinking?"", ""start"": 15.15, ""end"": 17.67}, {""speaker"": ""client"", ""text"": ""Priya: The price is still high. Can you match Godrej Blue's rate?"", ""start"": 19.2, ""end"": 23.52}, {""speaker"": ""agent"", ""text"": ""Priya: I understand. Let me see what best I can do. Are you flexible on floor preference?"", ""start"": 25.35, ""end"": 29.29}, {""speaker"": ""client"", ""text"": ""Priya: Not really. I want mid-floor east facing."", ""start"": 29.97, ""end"": 35.67}, {""speaker"": ""agent"", ""text"": ""Priya: That's our premium inventory. But for serious buyers, I can check for a corporate discount."", ""start"": 36.91, ""end"": 42.59}, {""speaker"": ""client"", ""text"": ""Priya: Please do. We're ready to close quickly."", ""start"": 43.62, ""end"": 50.29}, {""speaker"": ""agent"", ""text"": ""Priya: Will revert by tomorrow 2 PM."", ""start"": 51.45, ""end"": 56.09}]",0.85
|
||||
TRX-00068,CAL-00137,en-IN,"Rahul: Hi Priya, following up on your enquiry for Siddha Sky Waterfront. Priya: Yes, tell me. Rahul: We have a new tower launch with pre-launch pricing. Are you still looking in Beliaghata? Priya: Yes, what's the price? Rahul: Starting at 5.23 Cr for 3 BHK. Possession by June 2026. Priya: That's good. Send me the details on WhatsApp. Rahul: Done. When can you visit? Priya: This weekend. Rahul: I'll block Saturday 11 AM for you.","[{""speaker"": ""agent"", ""text"": ""Rahul: Hi Priya, following up on your enquiry for Siddha Sky Waterfront."", ""start"": 0.0, ""end"": 2.25}, {""speaker"": ""client"", ""text"": ""Priya: Yes, tell me."", ""start"": 4.08, ""end"": 11.03}, {""speaker"": ""agent"", ""text"": ""Rahul: We have a new tower launch with pre-launch pricing. Are you still looking in Beliaghata?"", ""start"": 12.13, ""end"": 14.42}, {""speaker"": ""client"", ""text"": ""Priya: Yes, what's the price?"", ""start"": 15.42, ""end"": 22.54}, {""speaker"": ""agent"", ""text"": ""Rahul: Starting at 5.23 Cr for 3 BHK. Possession by June 2026."", ""start"": 23.49, ""end"": 29.63}, {""speaker"": ""client"", ""text"": ""Priya: That's good. Send me the details on WhatsApp."", ""start"": 31.2, ""end"": 35.86}, {""speaker"": ""agent"", ""text"": ""Rahul: Done. When can you visit?"", ""start"": 37.3, ""end"": 41.49}, {""speaker"": ""client"", ""text"": ""Priya: This weekend."", ""start"": 42.05, ""end"": 49.87}, {""speaker"": ""agent"", ""text"": ""Rahul: I'll block Saturday 11 AM for you."", ""start"": 51.46, ""end"": 54.76}]",0.82
|
||||
TRX-00069,CAL-00141,en-IN,"Ananya: Hello Parth, this is Ananya from Velocity regarding Atri Surya Toron. Parth: Yes, tell me. Ananya: We have a new tower launch with pre-launch pricing. Are you still looking in Rajarhat? Parth: Yes, what's the price? Ananya: Starting at 5.86 Cr for 3 BHK. Possession by July 2026. Parth: That's good. Send me the details on WhatsApp. Ananya: Done. When can you visit? Parth: This weekend. Ananya: I'll block Saturday 11 AM for you.","[{""speaker"": ""agent"", ""text"": ""Ananya: Hello Parth, this is Ananya from Velocity regarding Atri Surya Toron."", ""start"": 0.0, ""end"": 3.24}, {""speaker"": ""client"", ""text"": ""Parth: Yes, tell me."", ""start"": 4.97, ""end"": 10.53}, {""speaker"": ""agent"", ""text"": ""Ananya: We have a new tower launch with pre-launch pricing. Are you still looking in Rajarhat?"", ""start"": 11.7, ""end"": 15.51}, {""speaker"": ""client"", ""text"": ""Parth: Yes, what's the price?"", ""start"": 16.16, ""end"": 23.79}, {""speaker"": ""agent"", ""text"": ""Ananya: Starting at 5.86 Cr for 3 BHK. Possession by July 2026."", ""start"": 24.68, ""end"": 32.36}, {""speaker"": ""client"", ""text"": ""Parth: That's good. Send me the details on WhatsApp."", ""start"": 33.25, ""end"": 37.19}, {""speaker"": ""agent"", ""text"": ""Ananya: Done. When can you visit?"", ""start"": 39.15, ""end"": 43.81}, {""speaker"": ""client"", ""text"": ""Parth: This weekend."", ""start"": 45.12, ""end"": 47.13}, {""speaker"": ""agent"", ""text"": ""Ananya: I'll block Saturday 11 AM for you."", ""start"": 48.35, ""end"": 53.17}]",0.92
|
||||
TRX-00070,CAL-00142,en-IN,"Vikram: Hi Amit, following up on your enquiry for DTC Sojon. Amit: Yes, tell me. Vikram: We have a new tower launch with pre-launch pricing. Are you still looking in Rajarhat? Amit: Yes, what's the price? Vikram: Starting at 3.85 Cr for 3 BHK. Possession by September 2026. Amit: That's good. Send me the details on WhatsApp. Vikram: Done. When can you visit? Amit: This weekend. Vikram: I'll block Saturday 11 AM for you.","[{""speaker"": ""agent"", ""text"": ""Vikram: Hi Amit, following up on your enquiry for DTC Sojon."", ""start"": 0.0, ""end"": 6.68}, {""speaker"": ""client"", ""text"": ""Amit: Yes, tell me."", ""start"": 8.05, ""end"": 14.36}, {""speaker"": ""agent"", ""text"": ""Vikram: We have a new tower launch with pre-launch pricing. Are you still looking in Rajarhat?"", ""start"": 15.31, ""end"": 17.94}, {""speaker"": ""client"", ""text"": ""Amit: Yes, what's the price?"", ""start"": 18.52, ""end"": 22.87}, {""speaker"": ""agent"", ""text"": ""Vikram: Starting at 3.85 Cr for 3 BHK. Possession by September 2026."", ""start"": 24.69, ""end"": 28.8}, {""speaker"": ""client"", ""text"": ""Amit: That's good. Send me the details on WhatsApp."", ""start"": 29.81, ""end"": 34.55}, {""speaker"": ""agent"", ""text"": ""Vikram: Done. When can you visit?"", ""start"": 35.3, ""end"": 40.34}, {""speaker"": ""client"", ""text"": ""Amit: This weekend."", ""start"": 41.24, ""end"": 44.46}, {""speaker"": ""agent"", ""text"": ""Vikram: I'll block Saturday 11 AM for you."", ""start"": 44.97, ""end"": 50.15}]",0.88
|
||||
TRX-00071,CAL-00143,en-IN,"Ananya: Good morning Amit, wanted to share some updates about DTC Sojon. Amit: Yes, tell me. Ananya: We have a new tower launch with pre-launch pricing. Are you still looking in Rajarhat? Amit: Yes, what's the price? Ananya: Starting at 3.08 Cr for 3 BHK. Possession by September 2026. Amit: That's good. Send me the details on WhatsApp. Ananya: Done. When can you visit? Amit: This weekend. Ananya: I'll block Saturday 11 AM for you.","[{""speaker"": ""agent"", ""text"": ""Ananya: Good morning Amit, wanted to share some updates about DTC Sojon."", ""start"": 0.0, ""end"": 7.91}, {""speaker"": ""client"", ""text"": ""Amit: Yes, tell me."", ""start"": 8.8, ""end"": 13.19}, {""speaker"": ""agent"", ""text"": ""Ananya: We have a new tower launch with pre-launch pricing. Are you still looking in Rajarhat?"", ""start"": 14.21, ""end"": 19.43}, {""speaker"": ""client"", ""text"": ""Amit: Yes, what's the price?"", ""start"": 20.52, ""end"": 23.06}, {""speaker"": ""agent"", ""text"": ""Ananya: Starting at 3.08 Cr for 3 BHK. Possession by September 2026."", ""start"": 24.32, ""end"": 26.52}, {""speaker"": ""client"", ""text"": ""Amit: That's good. Send me the details on WhatsApp."", ""start"": 27.59, ""end"": 34.91}, {""speaker"": ""agent"", ""text"": ""Ananya: Done. When can you visit?"", ""start"": 36.24, ""end"": 43.92}, {""speaker"": ""client"", ""text"": ""Amit: This weekend."", ""start"": 44.79, ""end"": 51.31}, {""speaker"": ""agent"", ""text"": ""Ananya: I'll block Saturday 11 AM for you."", ""start"": 53.01, ""end"": 57.18}]",0.95
|
||||
TRX-00072,CAL-00144,en-IN,"Ananya: Hello Amit, this is Ananya from Velocity regarding DTC Sojon. Amit: Hi, I was about to call you. Ananya: Great minds! What were you thinking? Amit: The price is still high. Can you match Atri Surya Toron's rate? Ananya: I understand. Let me see what best I can do. Are you flexible on floor preference? Amit: Not really. I want mid-floor east facing. Ananya: That's our premium inventory. But for serious buyers, I can check for a corporate discount. Amit: Please do. We're ready to close quickly. Ananya: Will revert by tomorrow 2 PM.","[{""speaker"": ""agent"", ""text"": ""Ananya: Hello Amit, this is Ananya from Velocity regarding DTC Sojon."", ""start"": 0.0, ""end"": 2.46}, {""speaker"": ""client"", ""text"": ""Amit: Hi, I was about to call you."", ""start"": 4.16, ""end"": 10.94}, {""speaker"": ""agent"", ""text"": ""Ananya: Great minds! What were you thinking?"", ""start"": 11.7, ""end"": 17.17}, {""speaker"": ""client"", ""text"": ""Amit: The price is still high. Can you match Atri Surya Toron's rate?"", ""start"": 18.13, ""end"": 21.3}, {""speaker"": ""agent"", ""text"": ""Ananya: I understand. Let me see what best I can do. Are you flexible on floor preference?"", ""start"": 22.08, ""end"": 24.1}, {""speaker"": ""client"", ""text"": ""Amit: Not really. I want mid-floor east facing."", ""start"": 25.09, ""end"": 30.01}, {""speaker"": ""agent"", ""text"": ""Ananya: That's our premium inventory. But for serious buyers, I can check for a corporate discount."", ""start"": 31.02, ""end"": 33.9}, {""speaker"": ""client"", ""text"": ""Amit: Please do. We're ready to close quickly."", ""start"": 34.64, ""end"": 37.14}, {""speaker"": ""agent"", ""text"": ""Ananya: Will revert by tomorrow 2 PM."", ""start"": 38.97, ""end"": 41.37}]",0.89
|
||||
TRX-00073,CAL-00145,en-IN,"Priya: Hi Swati, following up on your enquiry for Godrej Blue. Swati: Yes, tell me. Priya: We have a new tower launch with pre-launch pricing. Are you still looking in New Town? Swati: Yes, what's the price? Priya: Starting at 2.19 Cr for 3 BHK. Possession by August 2026. Swati: That's good. Send me the details on WhatsApp. Priya: Done. When can you visit? Swati: This weekend. Priya: I'll block Saturday 11 AM for you.","[{""speaker"": ""agent"", ""text"": ""Priya: Hi Swati, following up on your enquiry for Godrej Blue."", ""start"": 0.0, ""end"": 7.19}, {""speaker"": ""client"", ""text"": ""Swati: Yes, tell me."", ""start"": 8.19, ""end"": 11.0}, {""speaker"": ""agent"", ""text"": ""Priya: We have a new tower launch with pre-launch pricing. Are you still looking in New Town?"", ""start"": 12.23, ""end"": 16.28}, {""speaker"": ""client"", ""text"": ""Swati: Yes, what's the price?"", ""start"": 17.83, ""end"": 20.41}, {""speaker"": ""agent"", ""text"": ""Priya: Starting at 2.19 Cr for 3 BHK. Possession by August 2026."", ""start"": 20.97, ""end"": 26.63}, {""speaker"": ""client"", ""text"": ""Swati: That's good. Send me the details on WhatsApp."", ""start"": 28.4, ""end"": 34.11}, {""speaker"": ""agent"", ""text"": ""Priya: Done. When can you visit?"", ""start"": 35.13, ""end"": 42.22}, {""speaker"": ""client"", ""text"": ""Swati: This weekend."", ""start"": 42.95, ""end"": 46.38}, {""speaker"": ""agent"", ""text"": ""Priya: I'll block Saturday 11 AM for you."", ""start"": 47.94, ""end"": 54.93}]",0.94
|
||||
TRX-00074,CAL-00150,en-IN,"Rahul: Hi Neha, following up on your enquiry for Siddha Sky Waterfront. Neha: Yes, tell me. Rahul: We have a new tower launch with pre-launch pricing. Are you still looking in Beliaghata? Neha: Yes, what's the price? Rahul: Starting at 5.79 Cr for 3 BHK. Possession by August 2026. Neha: That's good. Send me the details on WhatsApp. Rahul: Done. When can you visit? Neha: This weekend. Rahul: I'll block Saturday 11 AM for you.","[{""speaker"": ""agent"", ""text"": ""Rahul: Hi Neha, following up on your enquiry for Siddha Sky Waterfront."", ""start"": 0.0, ""end"": 6.03}, {""speaker"": ""client"", ""text"": ""Neha: Yes, tell me."", ""start"": 7.84, ""end"": 12.43}, {""speaker"": ""agent"", ""text"": ""Rahul: We have a new tower launch with pre-launch pricing. Are you still looking in Beliaghata?"", ""start"": 13.41, ""end"": 18.16}, {""speaker"": ""client"", ""text"": ""Neha: Yes, what's the price?"", ""start"": 20.06, ""end"": 22.39}, {""speaker"": ""agent"", ""text"": ""Rahul: Starting at 5.79 Cr for 3 BHK. Possession by August 2026."", ""start"": 23.8, ""end"": 27.95}, {""speaker"": ""client"", ""text"": ""Neha: That's good. Send me the details on WhatsApp."", ""start"": 29.43, ""end"": 33.27}, {""speaker"": ""agent"", ""text"": ""Rahul: Done. When can you visit?"", ""start"": 34.8, ""end"": 42.28}, {""speaker"": ""client"", ""text"": ""Neha: This weekend."", ""start"": 43.53, ""end"": 46.19}, {""speaker"": ""agent"", ""text"": ""Rahul: I'll block Saturday 11 AM for you."", ""start"": 46.81, ""end"": 53.2}]",0.92
|
||||
TRX-00075,CAL-00151,en-IN,"Ananya: Hi Prasenjit, following up on your enquiry for Atri Surya Toron. Prasenjit: Hi, I was about to call you. Ananya: Great minds! What were you thinking? Prasenjit: The price is still high. Can you match Godrej Blue's rate? Ananya: I understand. Let me see what best I can do. Are you flexible on floor preference? Prasenjit: Not really. I want mid-floor east facing. Ananya: That's our premium inventory. But for serious buyers, I can check for a corporate discount. Prasenjit: Please do. We're ready to close quickly. Ananya: Will revert by tomorrow 2 PM.","[{""speaker"": ""agent"", ""text"": ""Ananya: Hi Prasenjit, following up on your enquiry for Atri Surya Toron."", ""start"": 0.0, ""end"": 6.58}, {""speaker"": ""client"", ""text"": ""Prasenjit: Hi, I was about to call you."", ""start"": 8.42, ""end"": 13.0}, {""speaker"": ""agent"", ""text"": ""Ananya: Great minds! What were you thinking?"", ""start"": 14.03, ""end"": 17.27}, {""speaker"": ""client"", ""text"": ""Prasenjit: The price is still high. Can you match Godrej Blue's rate?"", ""start"": 18.23, ""end"": 20.52}, {""speaker"": ""agent"", ""text"": ""Ananya: I understand. Let me see what best I can do. Are you flexible on floor preference?"", ""start"": 21.96, ""end"": 24.06}, {""speaker"": ""client"", ""text"": ""Prasenjit: Not really. I want mid-floor east facing."", ""start"": 24.61, ""end"": 29.18}, {""speaker"": ""agent"", ""text"": ""Ananya: That's our premium inventory. But for serious buyers, I can check for a corporate discount."", ""start"": 30.82, ""end"": 37.04}, {""speaker"": ""client"", ""text"": ""Prasenjit: Please do. We're ready to close quickly."", ""start"": 38.26, ""end"": 40.86}, {""speaker"": ""agent"", ""text"": ""Ananya: Will revert by tomorrow 2 PM."", ""start"": 42.1, ""end"": 48.8}]",0.84
|
||||
TRX-00076,CAL-00152,en-IN,"Rahul: Hi Prasenjit, following up on your enquiry for Atri Surya Toron. Prasenjit: Yes, tell me. Rahul: We have a new tower launch with pre-launch pricing. Are you still looking in Rajarhat? Prasenjit: Yes, what's the price? Rahul: Starting at 4.66 Cr for 3 BHK. Possession by September 2026. Prasenjit: That's good. Send me the details on WhatsApp. Rahul: Done. When can you visit? Prasenjit: This weekend. Rahul: I'll block Saturday 11 AM for you.","[{""speaker"": ""agent"", ""text"": ""Rahul: Hi Prasenjit, following up on your enquiry for Atri Surya Toron."", ""start"": 0.0, ""end"": 3.0}, {""speaker"": ""client"", ""text"": ""Prasenjit: Yes, tell me."", ""start"": 4.79, ""end"": 7.21}, {""speaker"": ""agent"", ""text"": ""Rahul: We have a new tower launch with pre-launch pricing. Are you still looking in Rajarhat?"", ""start"": 8.31, ""end"": 11.0}, {""speaker"": ""client"", ""text"": ""Prasenjit: Yes, what's the price?"", ""start"": 11.77, ""end"": 17.09}, {""speaker"": ""agent"", ""text"": ""Rahul: Starting at 4.66 Cr for 3 BHK. Possession by September 2026."", ""start"": 18.74, ""end"": 24.25}, {""speaker"": ""client"", ""text"": ""Prasenjit: That's good. Send me the details on WhatsApp."", ""start"": 25.32, ""end"": 28.16}, {""speaker"": ""agent"", ""text"": ""Rahul: Done. When can you visit?"", ""start"": 29.25, ""end"": 36.12}, {""speaker"": ""client"", ""text"": ""Prasenjit: This weekend."", ""start"": 37.91, ""end"": 40.78}, {""speaker"": ""agent"", ""text"": ""Rahul: I'll block Saturday 11 AM for you."", ""start"": 42.47, ""end"": 45.98}]",0.88
|
||||
TRX-00077,CAL-00153,en-IN,"Rahul: Hello Prasenjit, this is Rahul from Velocity regarding Atri Surya Toron. Prasenjit: Yes, tell me. Rahul: We have a new tower launch with pre-launch pricing. Are you still looking in Rajarhat? Prasenjit: Yes, what's the price? Rahul: Starting at 6.92 Cr for 3 BHK. Possession by July 2026. Prasenjit: That's good. Send me the details on WhatsApp. Rahul: Done. When can you visit? Prasenjit: This weekend. Rahul: I'll block Saturday 11 AM for you.","[{""speaker"": ""agent"", ""text"": ""Rahul: Hello Prasenjit, this is Rahul from Velocity regarding Atri Surya Toron."", ""start"": 0.0, ""end"": 4.28}, {""speaker"": ""client"", ""text"": ""Prasenjit: Yes, tell me."", ""start"": 5.66, ""end"": 8.39}, {""speaker"": ""agent"", ""text"": ""Rahul: We have a new tower launch with pre-launch pricing. Are you still looking in Rajarhat?"", ""start"": 10.04, ""end"": 14.34}, {""speaker"": ""client"", ""text"": ""Prasenjit: Yes, what's the price?"", ""start"": 14.87, ""end"": 17.43}, {""speaker"": ""agent"", ""text"": ""Rahul: Starting at 6.92 Cr for 3 BHK. Possession by July 2026."", ""start"": 18.68, ""end"": 25.57}, {""speaker"": ""client"", ""text"": ""Prasenjit: That's good. Send me the details on WhatsApp."", ""start"": 27.27, ""end"": 34.36}, {""speaker"": ""agent"", ""text"": ""Rahul: Done. When can you visit?"", ""start"": 35.42, ""end"": 42.75}, {""speaker"": ""client"", ""text"": ""Prasenjit: This weekend."", ""start"": 44.34, ""end"": 51.01}, {""speaker"": ""agent"", ""text"": ""Rahul: I'll block Saturday 11 AM for you."", ""start"": 51.94, ""end"": 54.41}]",0.93
|
||||
TRX-00078,CAL-00155,en-IN,"Vikram: Hello Sanjay, this is Vikram from Velocity regarding Merlin Avana. Sanjay: Yes, tell me. Vikram: We have a new tower launch with pre-launch pricing. Are you still looking in Tangra? Sanjay: Yes, what's the price? Vikram: Starting at 7.92 Cr for 3 BHK. Possession by October 2026. Sanjay: That's good. Send me the details on WhatsApp. Vikram: Done. When can you visit? Sanjay: This weekend. Vikram: I'll block Saturday 11 AM for you.","[{""speaker"": ""agent"", ""text"": ""Vikram: Hello Sanjay, this is Vikram from Velocity regarding Merlin Avana."", ""start"": 0.0, ""end"": 4.4}, {""speaker"": ""client"", ""text"": ""Sanjay: Yes, tell me."", ""start"": 5.8, ""end"": 11.61}, {""speaker"": ""agent"", ""text"": ""Vikram: We have a new tower launch with pre-launch pricing. Are you still looking in Tangra?"", ""start"": 12.99, ""end"": 16.5}, {""speaker"": ""client"", ""text"": ""Sanjay: Yes, what's the price?"", ""start"": 17.11, ""end"": 21.54}, {""speaker"": ""agent"", ""text"": ""Vikram: Starting at 7.92 Cr for 3 BHK. Possession by October 2026."", ""start"": 22.2, ""end"": 28.99}, {""speaker"": ""client"", ""text"": ""Sanjay: That's good. Send me the details on WhatsApp."", ""start"": 29.49, ""end"": 36.66}, {""speaker"": ""agent"", ""text"": ""Vikram: Done. When can you visit?"", ""start"": 38.14, ""end"": 43.72}, {""speaker"": ""client"", ""text"": ""Sanjay: This weekend."", ""start"": 45.43, ""end"": 50.09}, {""speaker"": ""agent"", ""text"": ""Vikram: I'll block Saturday 11 AM for you."", ""start"": 50.75, ""end"": 53.39}]",0.88
|
||||
TRX-00079,CAL-00159,en-IN,"Ananya: Good morning Kavita, wanted to share some updates about Siddha Suburbia Bungalow. Kavita: Yes, tell me. Ananya: We have a new tower launch with pre-launch pricing. Are you still looking in Madanpur? Kavita: Yes, what's the price? Ananya: Starting at 2.31 Cr for 3 BHK. Possession by October 2026. Kavita: That's good. Send me the details on WhatsApp. Ananya: Done. When can you visit? Kavita: This weekend. Ananya: I'll block Saturday 11 AM for you.","[{""speaker"": ""agent"", ""text"": ""Ananya: Good morning Kavita, wanted to share some updates about Siddha Suburbia Bungalow."", ""start"": 0.0, ""end"": 3.64}, {""speaker"": ""client"", ""text"": ""Kavita: Yes, tell me."", ""start"": 4.44, ""end"": 11.95}, {""speaker"": ""agent"", ""text"": ""Ananya: We have a new tower launch with pre-launch pricing. Are you still looking in Madanpur?"", ""start"": 13.03, ""end"": 17.22}, {""speaker"": ""client"", ""text"": ""Kavita: Yes, what's the price?"", ""start"": 18.56, ""end"": 25.51}, {""speaker"": ""agent"", ""text"": ""Ananya: Starting at 2.31 Cr for 3 BHK. Possession by October 2026."", ""start"": 26.71, ""end"": 29.43}, {""speaker"": ""client"", ""text"": ""Kavita: That's good. Send me the details on WhatsApp."", ""start"": 30.14, ""end"": 35.66}, {""speaker"": ""agent"", ""text"": ""Ananya: Done. When can you visit?"", ""start"": 37.08, ""end"": 40.66}, {""speaker"": ""client"", ""text"": ""Kavita: This weekend."", ""start"": 41.61, ""end"": 47.78}, {""speaker"": ""agent"", ""text"": ""Ananya: I'll block Saturday 11 AM for you."", ""start"": 48.95, ""end"": 56.81}]",0.87
|
||||
TRX-00080,CAL-00163,en-IN,"Vikram: Hello Ananya, this is Vikram from Velocity regarding Sugam Prakriti. Ananya: Yes, tell me. Vikram: We have a new tower launch with pre-launch pricing. Are you still looking in Barasat? Ananya: Yes, what's the price? Vikram: Starting at 2.6 Cr for 3 BHK. Possession by June 2026. Ananya: That's good. Send me the details on WhatsApp. Vikram: Done. When can you visit? Ananya: This weekend. Vikram: I'll block Saturday 11 AM for you.","[{""speaker"": ""agent"", ""text"": ""Vikram: Hello Ananya, this is Vikram from Velocity regarding Sugam Prakriti."", ""start"": 0.0, ""end"": 3.58}, {""speaker"": ""client"", ""text"": ""Ananya: Yes, tell me."", ""start"": 4.78, ""end"": 8.52}, {""speaker"": ""agent"", ""text"": ""Vikram: We have a new tower launch with pre-launch pricing. Are you still looking in Barasat?"", ""start"": 10.12, ""end"": 16.5}, {""speaker"": ""client"", ""text"": ""Ananya: Yes, what's the price?"", ""start"": 17.14, ""end"": 24.81}, {""speaker"": ""agent"", ""text"": ""Vikram: Starting at 2.6 Cr for 3 BHK. Possession by June 2026."", ""start"": 26.56, ""end"": 29.33}, {""speaker"": ""client"", ""text"": ""Ananya: That's good. Send me the details on WhatsApp."", ""start"": 29.98, ""end"": 35.9}, {""speaker"": ""agent"", ""text"": ""Vikram: Done. When can you visit?"", ""start"": 37.85, ""end"": 42.34}, {""speaker"": ""client"", ""text"": ""Ananya: This weekend."", ""start"": 43.94, ""end"": 50.96}, {""speaker"": ""agent"", ""text"": ""Vikram: I'll block Saturday 11 AM for you."", ""start"": 52.52, ""end"": 58.7}]",0.93
|
||||
TRX-00081,CAL-00165,en-IN,"Rahul: Hi Ananya, following up on your enquiry for Sugam Prakriti. Ananya: Yes, tell me. Rahul: We have a new tower launch with pre-launch pricing. Are you still looking in Barasat? Ananya: Yes, what's the price? Rahul: Starting at 7.37 Cr for 3 BHK. Possession by October 2026. Ananya: That's good. Send me the details on WhatsApp. Rahul: Done. When can you visit? Ananya: This weekend. Rahul: I'll block Saturday 11 AM for you.","[{""speaker"": ""agent"", ""text"": ""Rahul: Hi Ananya, following up on your enquiry for Sugam Prakriti."", ""start"": 0.0, ""end"": 6.11}, {""speaker"": ""client"", ""text"": ""Ananya: Yes, tell me."", ""start"": 7.87, ""end"": 13.18}, {""speaker"": ""agent"", ""text"": ""Rahul: We have a new tower launch with pre-launch pricing. Are you still looking in Barasat?"", ""start"": 13.95, ""end"": 17.6}, {""speaker"": ""client"", ""text"": ""Ananya: Yes, what's the price?"", ""start"": 18.99, ""end"": 26.44}, {""speaker"": ""agent"", ""text"": ""Rahul: Starting at 7.37 Cr for 3 BHK. Possession by October 2026."", ""start"": 27.47, ""end"": 32.52}, {""speaker"": ""client"", ""text"": ""Ananya: That's good. Send me the details on WhatsApp."", ""start"": 34.08, ""end"": 38.67}, {""speaker"": ""agent"", ""text"": ""Rahul: Done. When can you visit?"", ""start"": 40.37, ""end"": 43.44}, {""speaker"": ""client"", ""text"": ""Ananya: This weekend."", ""start"": 45.42, ""end"": 53.18}, {""speaker"": ""agent"", ""text"": ""Rahul: I'll block Saturday 11 AM for you."", ""start"": 54.83, ""end"": 62.11}]",0.92
|
||||
TRX-00082,CAL-00166,en-IN,"Rahul: Hello Ananya, this is Rahul from Velocity regarding Sugam Prakriti. Ananya: Yes, tell me. Rahul: We have a new tower launch with pre-launch pricing. Are you still looking in Barasat? Ananya: Yes, what's the price? Rahul: Starting at 4.06 Cr for 3 BHK. Possession by June 2026. Ananya: That's good. Send me the details on WhatsApp. Rahul: Done. When can you visit? Ananya: This weekend. Rahul: I'll block Saturday 11 AM for you.","[{""speaker"": ""agent"", ""text"": ""Rahul: Hello Ananya, this is Rahul from Velocity regarding Sugam Prakriti."", ""start"": 0.0, ""end"": 3.68}, {""speaker"": ""client"", ""text"": ""Ananya: Yes, tell me."", ""start"": 5.54, ""end"": 11.92}, {""speaker"": ""agent"", ""text"": ""Rahul: We have a new tower launch with pre-launch pricing. Are you still looking in Barasat?"", ""start"": 13.28, ""end"": 20.58}, {""speaker"": ""client"", ""text"": ""Ananya: Yes, what's the price?"", ""start"": 22.35, ""end"": 29.79}, {""speaker"": ""agent"", ""text"": ""Rahul: Starting at 4.06 Cr for 3 BHK. Possession by June 2026."", ""start"": 30.78, ""end"": 37.92}, {""speaker"": ""client"", ""text"": ""Ananya: That's good. Send me the details on WhatsApp."", ""start"": 38.75, ""end"": 44.0}, {""speaker"": ""agent"", ""text"": ""Rahul: Done. When can you visit?"", ""start"": 45.28, ""end"": 50.36}, {""speaker"": ""client"", ""text"": ""Ananya: This weekend."", ""start"": 51.96, ""end"": 57.03}, {""speaker"": ""agent"", ""text"": ""Rahul: I'll block Saturday 11 AM for you."", ""start"": 58.3, ""end"": 61.85}]",0.9
|
||||
TRX-00083,CAL-00168,en-IN,"Priya: Hi Sanjay, following up on your enquiry for Shriram Grand City. Sanjay: Yes, tell me. Priya: We have a new tower launch with pre-launch pricing. Are you still looking in Howrah? Sanjay: Yes, what's the price? Priya: Starting at 6.84 Cr for 3 BHK. Possession by September 2026. Sanjay: That's good. Send me the details on WhatsApp. Priya: Done. When can you visit? Sanjay: This weekend. Priya: I'll block Saturday 11 AM for you.","[{""speaker"": ""agent"", ""text"": ""Priya: Hi Sanjay, following up on your enquiry for Shriram Grand City."", ""start"": 0.0, ""end"": 6.27}, {""speaker"": ""client"", ""text"": ""Sanjay: Yes, tell me."", ""start"": 7.25, ""end"": 11.7}, {""speaker"": ""agent"", ""text"": ""Priya: We have a new tower launch with pre-launch pricing. Are you still looking in Howrah?"", ""start"": 13.09, ""end"": 19.18}, {""speaker"": ""client"", ""text"": ""Sanjay: Yes, what's the price?"", ""start"": 19.74, ""end"": 27.74}, {""speaker"": ""agent"", ""text"": ""Priya: Starting at 6.84 Cr for 3 BHK. Possession by September 2026."", ""start"": 28.45, ""end"": 32.34}, {""speaker"": ""client"", ""text"": ""Sanjay: That's good. Send me the details on WhatsApp."", ""start"": 33.08, ""end"": 39.34}, {""speaker"": ""agent"", ""text"": ""Priya: Done. When can you visit?"", ""start"": 41.06, ""end"": 44.63}, {""speaker"": ""client"", ""text"": ""Sanjay: This weekend."", ""start"": 46.17, ""end"": 49.77}, {""speaker"": ""agent"", ""text"": ""Priya: I'll block Saturday 11 AM for you."", ""start"": 51.0, ""end"": 54.98}]",0.85
|
||||
TRX-00084,CAL-00174,en-IN,"Rahul: Good morning Anirban, wanted to share some updates about Atri Surya Toron. Anirban: Yes, tell me. Rahul: We have a new tower launch with pre-launch pricing. Are you still looking in Rajarhat? Anirban: Yes, what's the price? Rahul: Starting at 6.72 Cr for 3 BHK. Possession by July 2026. Anirban: That's good. Send me the details on WhatsApp. Rahul: Done. When can you visit? Anirban: This weekend. Rahul: I'll block Saturday 11 AM for you.","[{""speaker"": ""agent"", ""text"": ""Rahul: Good morning Anirban, wanted to share some updates about Atri Surya Toron."", ""start"": 0.0, ""end"": 5.1}, {""speaker"": ""client"", ""text"": ""Anirban: Yes, tell me."", ""start"": 5.64, ""end"": 9.35}, {""speaker"": ""agent"", ""text"": ""Rahul: We have a new tower launch with pre-launch pricing. Are you still looking in Rajarhat?"", ""start"": 10.3, ""end"": 17.03}, {""speaker"": ""client"", ""text"": ""Anirban: Yes, what's the price?"", ""start"": 18.05, ""end"": 25.94}, {""speaker"": ""agent"", ""text"": ""Rahul: Starting at 6.72 Cr for 3 BHK. Possession by July 2026."", ""start"": 27.05, ""end"": 29.85}, {""speaker"": ""client"", ""text"": ""Anirban: That's good. Send me the details on WhatsApp."", ""start"": 31.73, ""end"": 36.52}, {""speaker"": ""agent"", ""text"": ""Rahul: Done. When can you visit?"", ""start"": 38.01, ""end"": 40.19}, {""speaker"": ""client"", ""text"": ""Anirban: This weekend."", ""start"": 41.16, ""end"": 43.95}, {""speaker"": ""agent"", ""text"": ""Rahul: I'll block Saturday 11 AM for you."", ""start"": 44.65, ""end"": 48.13}]",0.88
|
||||
TRX-00085,CAL-00175,en-IN,"Priya: Hi Ritu, following up on your enquiry for Shriram Grand City. Ritu: Yes, tell me. Priya: We have a new tower launch with pre-launch pricing. Are you still looking in Howrah? Ritu: Yes, what's the price? Priya: Starting at 5.13 Cr for 3 BHK. Possession by October 2026. Ritu: That's good. Send me the details on WhatsApp. Priya: Done. When can you visit? Ritu: This weekend. Priya: I'll block Saturday 11 AM for you.","[{""speaker"": ""agent"", ""text"": ""Priya: Hi Ritu, following up on your enquiry for Shriram Grand City."", ""start"": 0.0, ""end"": 4.05}, {""speaker"": ""client"", ""text"": ""Ritu: Yes, tell me."", ""start"": 4.99, ""end"": 11.73}, {""speaker"": ""agent"", ""text"": ""Priya: We have a new tower launch with pre-launch pricing. Are you still looking in Howrah?"", ""start"": 13.25, ""end"": 20.61}, {""speaker"": ""client"", ""text"": ""Ritu: Yes, what's the price?"", ""start"": 22.58, ""end"": 25.21}, {""speaker"": ""agent"", ""text"": ""Priya: Starting at 5.13 Cr for 3 BHK. Possession by October 2026."", ""start"": 26.42, ""end"": 30.58}, {""speaker"": ""client"", ""text"": ""Ritu: That's good. Send me the details on WhatsApp."", ""start"": 31.95, ""end"": 36.35}, {""speaker"": ""agent"", ""text"": ""Priya: Done. When can you visit?"", ""start"": 37.82, ""end"": 45.74}, {""speaker"": ""client"", ""text"": ""Ritu: This weekend."", ""start"": 46.75, ""end"": 51.84}, {""speaker"": ""agent"", ""text"": ""Priya: I'll block Saturday 11 AM for you."", ""start"": 53.73, ""end"": 58.73}]",0.85
|
||||
TRX-00086,CAL-00181,en-IN,"Ananya: Hello Sourav, this is Ananya from Velocity regarding Siddha Sky Waterfront. Sourav: Hi, I was about to call you. Ananya: Great minds! What were you thinking? Sourav: The price is still high. Can you match Ambuja Utpaala's rate? Ananya: I understand. Let me see what best I can do. Are you flexible on floor preference? Sourav: Not really. I want mid-floor east facing. Ananya: That's our premium inventory. But for serious buyers, I can check for a corporate discount. Sourav: Please do. We're ready to close quickly. Ananya: Will revert by tomorrow 2 PM.","[{""speaker"": ""agent"", ""text"": ""Ananya: Hello Sourav, this is Ananya from Velocity regarding Siddha Sky Waterfront."", ""start"": 0.0, ""end"": 4.4}, {""speaker"": ""client"", ""text"": ""Sourav: Hi, I was about to call you."", ""start"": 5.06, ""end"": 10.51}, {""speaker"": ""agent"", ""text"": ""Ananya: Great minds! What were you thinking?"", ""start"": 11.73, ""end"": 16.81}, {""speaker"": ""client"", ""text"": ""Sourav: The price is still high. Can you match Ambuja Utpaala's rate?"", ""start"": 17.32, ""end"": 20.94}, {""speaker"": ""agent"", ""text"": ""Ananya: I understand. Let me see what best I can do. Are you flexible on floor preference?"", ""start"": 22.63, ""end"": 25.31}, {""speaker"": ""client"", ""text"": ""Sourav: Not really. I want mid-floor east facing."", ""start"": 26.28, ""end"": 28.71}, {""speaker"": ""agent"", ""text"": ""Ananya: That's our premium inventory. But for serious buyers, I can check for a corporate discount."", ""start"": 30.02, ""end"": 37.53}, {""speaker"": ""client"", ""text"": ""Sourav: Please do. We're ready to close quickly."", ""start"": 39.32, ""end"": 44.42}, {""speaker"": ""agent"", ""text"": ""Ananya: Will revert by tomorrow 2 PM."", ""start"": 45.17, ""end"": 49.16}]",0.91
|
||||
TRX-00087,CAL-00182,en-IN,"Ananya: Hello Shreya, this is Ananya from Velocity regarding Sugam Prakriti. Shreya: Yes, tell me. Ananya: We have a new tower launch with pre-launch pricing. Are you still looking in Barasat? Shreya: Yes, what's the price? Ananya: Starting at 5.28 Cr for 3 BHK. Possession by October 2026. Shreya: That's good. Send me the details on WhatsApp. Ananya: Done. When can you visit? Shreya: This weekend. Ananya: I'll block Saturday 11 AM for you.","[{""speaker"": ""agent"", ""text"": ""Ananya: Hello Shreya, this is Ananya from Velocity regarding Sugam Prakriti."", ""start"": 0.0, ""end"": 5.52}, {""speaker"": ""client"", ""text"": ""Shreya: Yes, tell me."", ""start"": 7.38, ""end"": 13.29}, {""speaker"": ""agent"", ""text"": ""Ananya: We have a new tower launch with pre-launch pricing. Are you still looking in Barasat?"", ""start"": 14.88, ""end"": 18.13}, {""speaker"": ""client"", ""text"": ""Shreya: Yes, what's the price?"", ""start"": 19.83, ""end"": 26.54}, {""speaker"": ""agent"", ""text"": ""Ananya: Starting at 5.28 Cr for 3 BHK. Possession by October 2026."", ""start"": 27.13, ""end"": 32.91}, {""speaker"": ""client"", ""text"": ""Shreya: That's good. Send me the details on WhatsApp."", ""start"": 33.44, ""end"": 35.62}, {""speaker"": ""agent"", ""text"": ""Ananya: Done. When can you visit?"", ""start"": 37.19, ""end"": 44.71}, {""speaker"": ""client"", ""text"": ""Shreya: This weekend."", ""start"": 45.75, ""end"": 50.22}, {""speaker"": ""agent"", ""text"": ""Ananya: I'll block Saturday 11 AM for you."", ""start"": 51.76, ""end"": 58.4}]",0.86
|
||||
TRX-00088,CAL-00187,en-IN,"Rahul: Hello Divya, this is Rahul from Velocity regarding Shriram Grand City. Divya: Hi, I was about to call you. Rahul: Great minds! What were you thinking? Divya: The price is still high. Can you match Ambuja Utpaala's rate? Rahul: I understand. Let me see what best I can do. Are you flexible on floor preference? Divya: Not really. I want mid-floor east facing. Rahul: That's our premium inventory. But for serious buyers, I can check for a corporate discount. Divya: Please do. We're ready to close quickly. Rahul: Will revert by tomorrow 2 PM.","[{""speaker"": ""agent"", ""text"": ""Rahul: Hello Divya, this is Rahul from Velocity regarding Shriram Grand City."", ""start"": 0.0, ""end"": 5.56}, {""speaker"": ""client"", ""text"": ""Divya: Hi, I was about to call you."", ""start"": 7.54, ""end"": 12.46}, {""speaker"": ""agent"", ""text"": ""Rahul: Great minds! What were you thinking?"", ""start"": 14.13, ""end"": 20.53}, {""speaker"": ""client"", ""text"": ""Divya: The price is still high. Can you match Ambuja Utpaala's rate?"", ""start"": 22.41, ""end"": 29.25}, {""speaker"": ""agent"", ""text"": ""Rahul: I understand. Let me see what best I can do. Are you flexible on floor preference?"", ""start"": 30.62, ""end"": 37.66}, {""speaker"": ""client"", ""text"": ""Divya: Not really. I want mid-floor east facing."", ""start"": 39.29, ""end"": 42.7}, {""speaker"": ""agent"", ""text"": ""Rahul: That's our premium inventory. But for serious buyers, I can check for a corporate discount."", ""start"": 43.96, ""end"": 50.11}, {""speaker"": ""client"", ""text"": ""Divya: Please do. We're ready to close quickly."", ""start"": 51.34, ""end"": 58.95}, {""speaker"": ""agent"", ""text"": ""Rahul: Will revert by tomorrow 2 PM."", ""start"": 59.71, ""end"": 66.5}]",0.86
|
||||
TRX-00089,CAL-00188,en-IN,"Vikram: Hi Divya, following up on your enquiry for Shriram Grand City. Divya: Hi, I was about to call you. Vikram: Great minds! What were you thinking? Divya: The price is still high. Can you match Siddha Suburbia Bungalow's rate? Vikram: I understand. Let me see what best I can do. Are you flexible on floor preference? Divya: Not really. I want mid-floor east facing. Vikram: That's our premium inventory. But for serious buyers, I can check for a corporate discount. Divya: Please do. We're ready to close quickly. Vikram: Will revert by tomorrow 2 PM.","[{""speaker"": ""agent"", ""text"": ""Vikram: Hi Divya, following up on your enquiry for Shriram Grand City."", ""start"": 0.0, ""end"": 2.24}, {""speaker"": ""client"", ""text"": ""Divya: Hi, I was about to call you."", ""start"": 3.2, ""end"": 5.57}, {""speaker"": ""agent"", ""text"": ""Vikram: Great minds! What were you thinking?"", ""start"": 6.73, ""end"": 9.08}, {""speaker"": ""client"", ""text"": ""Divya: The price is still high. Can you match Siddha Suburbia Bungalow's rate?"", ""start"": 9.76, ""end"": 13.83}, {""speaker"": ""agent"", ""text"": ""Vikram: I understand. Let me see what best I can do. Are you flexible on floor preference?"", ""start"": 15.76, ""end"": 19.21}, {""speaker"": ""client"", ""text"": ""Divya: Not really. I want mid-floor east facing."", ""start"": 20.63, ""end"": 27.15}, {""speaker"": ""agent"", ""text"": ""Vikram: That's our premium inventory. But for serious buyers, I can check for a corporate discount."", ""start"": 28.88, ""end"": 33.17}, {""speaker"": ""client"", ""text"": ""Divya: Please do. We're ready to close quickly."", ""start"": 34.17, ""end"": 40.06}, {""speaker"": ""agent"", ""text"": ""Vikram: Will revert by tomorrow 2 PM."", ""start"": 40.96, ""end"": 43.7}]",0.9
|
||||
TRX-00090,CAL-00191,en-IN,"Vikram: Hi Debjani, following up on your enquiry for DTC Sojon. Debjani: Hi, I was about to call you. Vikram: Great minds! What were you thinking? Debjani: The price is still high. Can you match Sugam Prakriti's rate? Vikram: I understand. Let me see what best I can do. Are you flexible on floor preference? Debjani: Not really. I want mid-floor east facing. Vikram: That's our premium inventory. But for serious buyers, I can check for a corporate discount. Debjani: Please do. We're ready to close quickly. Vikram: Will revert by tomorrow 2 PM.","[{""speaker"": ""agent"", ""text"": ""Vikram: Hi Debjani, following up on your enquiry for DTC Sojon."", ""start"": 0.0, ""end"": 5.24}, {""speaker"": ""client"", ""text"": ""Debjani: Hi, I was about to call you."", ""start"": 6.89, ""end"": 13.61}, {""speaker"": ""agent"", ""text"": ""Vikram: Great minds! What were you thinking?"", ""start"": 15.52, ""end"": 17.7}, {""speaker"": ""client"", ""text"": ""Debjani: The price is still high. Can you match Sugam Prakriti's rate?"", ""start"": 18.7, ""end"": 24.02}, {""speaker"": ""agent"", ""text"": ""Vikram: I understand. Let me see what best I can do. Are you flexible on floor preference?"", ""start"": 25.19, ""end"": 29.88}, {""speaker"": ""client"", ""text"": ""Debjani: Not really. I want mid-floor east facing."", ""start"": 30.52, ""end"": 35.53}, {""speaker"": ""agent"", ""text"": ""Vikram: That's our premium inventory. But for serious buyers, I can check for a corporate discount."", ""start"": 37.5, ""end"": 41.63}, {""speaker"": ""client"", ""text"": ""Debjani: Please do. We're ready to close quickly."", ""start"": 43.03, ""end"": 46.32}, {""speaker"": ""agent"", ""text"": ""Vikram: Will revert by tomorrow 2 PM."", ""start"": 46.88, ""end"": 49.78}]",0.94
|
||||
TRX-00091,CAL-00199,en-IN,"Vikram: Hi Prasenjit, following up on your enquiry for Merlin Avana. Prasenjit: Yes, tell me. Vikram: We have a new tower launch with pre-launch pricing. Are you still looking in Tangra? Prasenjit: Yes, what's the price? Vikram: Starting at 7.8 Cr for 3 BHK. Possession by September 2026. Prasenjit: That's good. Send me the details on WhatsApp. Vikram: Done. When can you visit? Prasenjit: This weekend. Vikram: I'll block Saturday 11 AM for you.","[{""speaker"": ""agent"", ""text"": ""Vikram: Hi Prasenjit, following up on your enquiry for Merlin Avana."", ""start"": 0.0, ""end"": 3.8}, {""speaker"": ""client"", ""text"": ""Prasenjit: Yes, tell me."", ""start"": 5.09, ""end"": 11.63}, {""speaker"": ""agent"", ""text"": ""Vikram: We have a new tower launch with pre-launch pricing. Are you still looking in Tangra?"", ""start"": 12.87, ""end"": 16.64}, {""speaker"": ""client"", ""text"": ""Prasenjit: Yes, what's the price?"", ""start"": 17.42, ""end"": 20.12}, {""speaker"": ""agent"", ""text"": ""Vikram: Starting at 7.8 Cr for 3 BHK. Possession by September 2026."", ""start"": 21.97, ""end"": 28.51}, {""speaker"": ""client"", ""text"": ""Prasenjit: That's good. Send me the details on WhatsApp."", ""start"": 29.85, ""end"": 33.86}, {""speaker"": ""agent"", ""text"": ""Vikram: Done. When can you visit?"", ""start"": 34.71, ""end"": 42.48}, {""speaker"": ""client"", ""text"": ""Prasenjit: This weekend."", ""start"": 43.22, ""end"": 48.06}, {""speaker"": ""agent"", ""text"": ""Vikram: I'll block Saturday 11 AM for you."", ""start"": 49.13, ""end"": 51.9}]",0.89
|
||||
TRX-00092,CAL-00201,en-IN,"Ananya: Hi Rahul, following up on your enquiry for Siddha Suburbia Bungalow. Rahul: Hi, I was about to call you. Ananya: Great minds! What were you thinking? Rahul: The price is still high. Can you match Atri Surya Toron's rate? Ananya: I understand. Let me see what best I can do. Are you flexible on floor preference? Rahul: Not really. I want mid-floor east facing. Ananya: That's our premium inventory. But for serious buyers, I can check for a corporate discount. Rahul: Please do. We're ready to close quickly. Ananya: Will revert by tomorrow 2 PM.","[{""speaker"": ""agent"", ""text"": ""Ananya: Hi Rahul, following up on your enquiry for Siddha Suburbia Bungalow."", ""start"": 0.0, ""end"": 7.8}, {""speaker"": ""client"", ""text"": ""Rahul: Hi, I was about to call you."", ""start"": 8.87, ""end"": 15.98}, {""speaker"": ""agent"", ""text"": ""Ananya: Great minds! What were you thinking?"", ""start"": 16.66, ""end"": 22.53}, {""speaker"": ""client"", ""text"": ""Rahul: The price is still high. Can you match Atri Surya Toron's rate?"", ""start"": 23.22, ""end"": 30.38}, {""speaker"": ""agent"", ""text"": ""Ananya: I understand. Let me see what best I can do. Are you flexible on floor preference?"", ""start"": 31.63, ""end"": 36.52}, {""speaker"": ""client"", ""text"": ""Rahul: Not really. I want mid-floor east facing."", ""start"": 38.2, ""end"": 41.77}, {""speaker"": ""agent"", ""text"": ""Ananya: That's our premium inventory. But for serious buyers, I can check for a corporate discount."", ""start"": 43.46, ""end"": 50.89}, {""speaker"": ""client"", ""text"": ""Rahul: Please do. We're ready to close quickly."", ""start"": 52.48, ""end"": 57.9}, {""speaker"": ""agent"", ""text"": ""Ananya: Will revert by tomorrow 2 PM."", ""start"": 59.39, ""end"": 65.35}]",0.94
|
||||
TRX-00093,CAL-00203,en-IN,"Rahul: Hi Ananya, following up on your enquiry for Eden Devprayag. Ananya: Hi, I was about to call you. Rahul: Great minds! What were you thinking? Ananya: The price is still high. Can you match Ambuja Utpaala's rate? Rahul: I understand. Let me see what best I can do. Are you flexible on floor preference? Ananya: Not really. I want mid-floor east facing. Rahul: That's our premium inventory. But for serious buyers, I can check for a corporate discount. Ananya: Please do. We're ready to close quickly. Rahul: Will revert by tomorrow 2 PM.","[{""speaker"": ""agent"", ""text"": ""Rahul: Hi Ananya, following up on your enquiry for Eden Devprayag."", ""start"": 0.0, ""end"": 6.38}, {""speaker"": ""client"", ""text"": ""Ananya: Hi, I was about to call you."", ""start"": 8.16, ""end"": 13.2}, {""speaker"": ""agent"", ""text"": ""Rahul: Great minds! What were you thinking?"", ""start"": 14.31, ""end"": 20.43}, {""speaker"": ""client"", ""text"": ""Ananya: The price is still high. Can you match Ambuja Utpaala's rate?"", ""start"": 21.56, ""end"": 26.71}, {""speaker"": ""agent"", ""text"": ""Rahul: I understand. Let me see what best I can do. Are you flexible on floor preference?"", ""start"": 28.22, ""end"": 33.22}, {""speaker"": ""client"", ""text"": ""Ananya: Not really. I want mid-floor east facing."", ""start"": 35.2, ""end"": 38.96}, {""speaker"": ""agent"", ""text"": ""Rahul: That's our premium inventory. But for serious buyers, I can check for a corporate discount."", ""start"": 39.78, ""end"": 43.42}, {""speaker"": ""client"", ""text"": ""Ananya: Please do. We're ready to close quickly."", ""start"": 45.25, ""end"": 48.15}, {""speaker"": ""agent"", ""text"": ""Rahul: Will revert by tomorrow 2 PM."", ""start"": 49.24, ""end"": 55.84}]",0.88
|
||||
TRX-00094,CAL-00213,en-IN,"Vikram: Good morning Isha, wanted to share some updates about Shriram Grand City. Isha: Yes, tell me. Vikram: We have a new tower launch with pre-launch pricing. Are you still looking in Howrah? Isha: Yes, what's the price? Vikram: Starting at 6.77 Cr for 3 BHK. Possession by July 2026. Isha: That's good. Send me the details on WhatsApp. Vikram: Done. When can you visit? Isha: This weekend. Vikram: I'll block Saturday 11 AM for you.","[{""speaker"": ""agent"", ""text"": ""Vikram: Good morning Isha, wanted to share some updates about Shriram Grand City."", ""start"": 0.0, ""end"": 4.66}, {""speaker"": ""client"", ""text"": ""Isha: Yes, tell me."", ""start"": 6.44, ""end"": 10.31}, {""speaker"": ""agent"", ""text"": ""Vikram: We have a new tower launch with pre-launch pricing. Are you still looking in Howrah?"", ""start"": 11.6, ""end"": 15.9}, {""speaker"": ""client"", ""text"": ""Isha: Yes, what's the price?"", ""start"": 17.32, ""end"": 23.54}, {""speaker"": ""agent"", ""text"": ""Vikram: Starting at 6.77 Cr for 3 BHK. Possession by July 2026."", ""start"": 24.41, ""end"": 29.03}, {""speaker"": ""client"", ""text"": ""Isha: That's good. Send me the details on WhatsApp."", ""start"": 30.0, ""end"": 32.06}, {""speaker"": ""agent"", ""text"": ""Vikram: Done. When can you visit?"", ""start"": 32.79, ""end"": 39.35}, {""speaker"": ""client"", ""text"": ""Isha: This weekend."", ""start"": 41.12, ""end"": 44.73}, {""speaker"": ""agent"", ""text"": ""Vikram: I'll block Saturday 11 AM for you."", ""start"": 46.66, ""end"": 54.63}]",0.95
|
||||
TRX-00095,CAL-00214,en-IN,"Rahul: Hello Isha, this is Rahul from Velocity regarding Shriram Grand City. Isha: Hi, I was about to call you. Rahul: Great minds! What were you thinking? Isha: The price is still high. Can you match Atri Surya Toron's rate? Rahul: I understand. Let me see what best I can do. Are you flexible on floor preference? Isha: Not really. I want mid-floor east facing. Rahul: That's our premium inventory. But for serious buyers, I can check for a corporate discount. Isha: Please do. We're ready to close quickly. Rahul: Will revert by tomorrow 2 PM.","[{""speaker"": ""agent"", ""text"": ""Rahul: Hello Isha, this is Rahul from Velocity regarding Shriram Grand City."", ""start"": 0.0, ""end"": 5.35}, {""speaker"": ""client"", ""text"": ""Isha: Hi, I was about to call you."", ""start"": 6.25, ""end"": 8.64}, {""speaker"": ""agent"", ""text"": ""Rahul: Great minds! What were you thinking?"", ""start"": 9.91, ""end"": 17.21}, {""speaker"": ""client"", ""text"": ""Isha: The price is still high. Can you match Atri Surya Toron's rate?"", ""start"": 18.49, ""end"": 20.8}, {""speaker"": ""agent"", ""text"": ""Rahul: I understand. Let me see what best I can do. Are you flexible on floor preference?"", ""start"": 21.7, ""end"": 27.82}, {""speaker"": ""client"", ""text"": ""Isha: Not really. I want mid-floor east facing."", ""start"": 29.69, ""end"": 35.66}, {""speaker"": ""agent"", ""text"": ""Rahul: That's our premium inventory. But for serious buyers, I can check for a corporate discount."", ""start"": 37.14, ""end"": 44.09}, {""speaker"": ""client"", ""text"": ""Isha: Please do. We're ready to close quickly."", ""start"": 45.29, ""end"": 47.61}, {""speaker"": ""agent"", ""text"": ""Rahul: Will revert by tomorrow 2 PM."", ""start"": 48.64, ""end"": 56.14}]",0.89
|
||||
TRX-00096,CAL-00215,en-IN,"Rahul: Hi Deb, following up on your enquiry for Godrej Blue. Deb: Yes, tell me. Rahul: We have a new tower launch with pre-launch pricing. Are you still looking in New Town? Deb: Yes, what's the price? Rahul: Starting at 6.56 Cr for 3 BHK. Possession by October 2026. Deb: That's good. Send me the details on WhatsApp. Rahul: Done. When can you visit? Deb: This weekend. Rahul: I'll block Saturday 11 AM for you.","[{""speaker"": ""agent"", ""text"": ""Rahul: Hi Deb, following up on your enquiry for Godrej Blue."", ""start"": 0.0, ""end"": 2.01}, {""speaker"": ""client"", ""text"": ""Deb: Yes, tell me."", ""start"": 2.57, ""end"": 8.26}, {""speaker"": ""agent"", ""text"": ""Rahul: We have a new tower launch with pre-launch pricing. Are you still looking in New Town?"", ""start"": 8.88, ""end"": 13.06}, {""speaker"": ""client"", ""text"": ""Deb: Yes, what's the price?"", ""start"": 13.75, ""end"": 18.51}, {""speaker"": ""agent"", ""text"": ""Rahul: Starting at 6.56 Cr for 3 BHK. Possession by October 2026."", ""start"": 20.26, ""end"": 25.75}, {""speaker"": ""client"", ""text"": ""Deb: That's good. Send me the details on WhatsApp."", ""start"": 27.4, ""end"": 31.4}, {""speaker"": ""agent"", ""text"": ""Rahul: Done. When can you visit?"", ""start"": 32.1, ""end"": 37.8}, {""speaker"": ""client"", ""text"": ""Deb: This weekend."", ""start"": 38.94, ""end"": 42.23}, {""speaker"": ""agent"", ""text"": ""Rahul: I'll block Saturday 11 AM for you."", ""start"": 44.09, ""end"": 47.96}]",0.91
|
||||
TRX-00097,CAL-00216,en-IN,"Vikram: Hi Deb, following up on your enquiry for Godrej Blue. Deb: Hi, I was about to call you. Vikram: Great minds! What were you thinking? Deb: The price is still high. Can you match Shriram Grand City's rate? Vikram: I understand. Let me see what best I can do. Are you flexible on floor preference? Deb: Not really. I want mid-floor east facing. Vikram: That's our premium inventory. But for serious buyers, I can check for a corporate discount. Deb: Please do. We're ready to close quickly. Vikram: Will revert by tomorrow 2 PM.","[{""speaker"": ""agent"", ""text"": ""Vikram: Hi Deb, following up on your enquiry for Godrej Blue."", ""start"": 0.0, ""end"": 7.37}, {""speaker"": ""client"", ""text"": ""Deb: Hi, I was about to call you."", ""start"": 8.88, ""end"": 15.36}, {""speaker"": ""agent"", ""text"": ""Vikram: Great minds! What were you thinking?"", ""start"": 16.08, ""end"": 18.12}, {""speaker"": ""client"", ""text"": ""Deb: The price is still high. Can you match Shriram Grand City's rate?"", ""start"": 20.06, ""end"": 27.6}, {""speaker"": ""agent"", ""text"": ""Vikram: I understand. Let me see what best I can do. Are you flexible on floor preference?"", ""start"": 28.93, ""end"": 32.84}, {""speaker"": ""client"", ""text"": ""Deb: Not really. I want mid-floor east facing."", ""start"": 34.78, ""end"": 40.97}, {""speaker"": ""agent"", ""text"": ""Vikram: That's our premium inventory. But for serious buyers, I can check for a corporate discount."", ""start"": 41.6, ""end"": 47.2}, {""speaker"": ""client"", ""text"": ""Deb: Please do. We're ready to close quickly."", ""start"": 48.91, ""end"": 55.69}, {""speaker"": ""agent"", ""text"": ""Vikram: Will revert by tomorrow 2 PM."", ""start"": 57.05, ""end"": 59.15}]",0.86
|
||||
TRX-00098,CAL-00220,en-IN,"Ananya: Hi Neha, following up on your enquiry for Ambuja Utpaala. Neha: Hi, I was about to call you. Ananya: Great minds! What were you thinking? Neha: The price is still high. Can you match Siddha Serena's rate? Ananya: I understand. Let me see what best I can do. Are you flexible on floor preference? Neha: Not really. I want mid-floor east facing. Ananya: That's our premium inventory. But for serious buyers, I can check for a corporate discount. Neha: Please do. We're ready to close quickly. Ananya: Will revert by tomorrow 2 PM.","[{""speaker"": ""agent"", ""text"": ""Ananya: Hi Neha, following up on your enquiry for Ambuja Utpaala."", ""start"": 0.0, ""end"": 4.71}, {""speaker"": ""client"", ""text"": ""Neha: Hi, I was about to call you."", ""start"": 5.56, ""end"": 11.56}, {""speaker"": ""agent"", ""text"": ""Ananya: Great minds! What were you thinking?"", ""start"": 13.48, ""end"": 18.7}, {""speaker"": ""client"", ""text"": ""Neha: The price is still high. Can you match Siddha Serena's rate?"", ""start"": 19.76, ""end"": 26.27}, {""speaker"": ""agent"", ""text"": ""Ananya: I understand. Let me see what best I can do. Are you flexible on floor preference?"", ""start"": 27.04, ""end"": 32.71}, {""speaker"": ""client"", ""text"": ""Neha: Not really. I want mid-floor east facing."", ""start"": 33.3, ""end"": 39.15}, {""speaker"": ""agent"", ""text"": ""Ananya: That's our premium inventory. But for serious buyers, I can check for a corporate discount."", ""start"": 39.83, ""end"": 45.29}, {""speaker"": ""client"", ""text"": ""Neha: Please do. We're ready to close quickly."", ""start"": 46.65, ""end"": 49.91}, {""speaker"": ""agent"", ""text"": ""Ananya: Will revert by tomorrow 2 PM."", ""start"": 50.77, ""end"": 54.24}]",0.9
|
||||
TRX-00099,CAL-00222,en-IN,"Rahul: Hi Ritu, following up on your enquiry for Atri Aqua. Ritu: Yes, tell me. Rahul: We have a new tower launch with pre-launch pricing. Are you still looking in New Town? Ritu: Yes, what's the price? Rahul: Starting at 7.9 Cr for 3 BHK. Possession by June 2026. Ritu: That's good. Send me the details on WhatsApp. Rahul: Done. When can you visit? Ritu: This weekend. Rahul: I'll block Saturday 11 AM for you.","[{""speaker"": ""agent"", ""text"": ""Rahul: Hi Ritu, following up on your enquiry for Atri Aqua."", ""start"": 0.0, ""end"": 4.31}, {""speaker"": ""client"", ""text"": ""Ritu: Yes, tell me."", ""start"": 6.18, ""end"": 13.73}, {""speaker"": ""agent"", ""text"": ""Rahul: We have a new tower launch with pre-launch pricing. Are you still looking in New Town?"", ""start"": 15.48, ""end"": 21.81}, {""speaker"": ""client"", ""text"": ""Ritu: Yes, what's the price?"", ""start"": 22.38, ""end"": 29.94}, {""speaker"": ""agent"", ""text"": ""Rahul: Starting at 7.9 Cr for 3 BHK. Possession by June 2026."", ""start"": 31.23, ""end"": 36.7}, {""speaker"": ""client"", ""text"": ""Ritu: That's good. Send me the details on WhatsApp."", ""start"": 38.36, ""end"": 41.16}, {""speaker"": ""agent"", ""text"": ""Rahul: Done. When can you visit?"", ""start"": 42.05, ""end"": 45.11}, {""speaker"": ""client"", ""text"": ""Ritu: This weekend."", ""start"": 46.98, ""end"": 51.91}, {""speaker"": ""agent"", ""text"": ""Rahul: I'll block Saturday 11 AM for you."", ""start"": 53.01, ""end"": 57.03}]",0.94
|
||||
TRX-00100,CAL-00223,en-IN,"Rahul: Hello Ritu, this is Rahul from Velocity regarding Atri Aqua. Ritu: Hi, I was about to call you. Rahul: Great minds! What were you thinking? Ritu: The price is still high. Can you match DTC Good Earth's rate? Rahul: I understand. Let me see what best I can do. Are you flexible on floor preference? Ritu: Not really. I want mid-floor east facing. Rahul: That's our premium inventory. But for serious buyers, I can check for a corporate discount. Ritu: Please do. We're ready to close quickly. Rahul: Will revert by tomorrow 2 PM.","[{""speaker"": ""agent"", ""text"": ""Rahul: Hello Ritu, this is Rahul from Velocity regarding Atri Aqua."", ""start"": 0.0, ""end"": 7.53}, {""speaker"": ""client"", ""text"": ""Ritu: Hi, I was about to call you."", ""start"": 8.52, ""end"": 13.83}, {""speaker"": ""agent"", ""text"": ""Rahul: Great minds! What were you thinking?"", ""start"": 14.99, ""end"": 21.35}, {""speaker"": ""client"", ""text"": ""Ritu: The price is still high. Can you match DTC Good Earth's rate?"", ""start"": 22.68, ""end"": 25.74}, {""speaker"": ""agent"", ""text"": ""Rahul: I understand. Let me see what best I can do. Are you flexible on floor preference?"", ""start"": 27.45, ""end"": 34.33}, {""speaker"": ""client"", ""text"": ""Ritu: Not really. I want mid-floor east facing."", ""start"": 36.13, ""end"": 39.83}, {""speaker"": ""agent"", ""text"": ""Rahul: That's our premium inventory. But for serious buyers, I can check for a corporate discount."", ""start"": 41.18, ""end"": 43.86}, {""speaker"": ""client"", ""text"": ""Ritu: Please do. We're ready to close quickly."", ""start"": 44.52, ""end"": 51.42}, {""speaker"": ""agent"", ""text"": ""Rahul: Will revert by tomorrow 2 PM."", ""start"": 53.36, ""end"": 58.85}]",0.86
|
||||
TRX-00101,CAL-00224,en-IN,"Rahul: Good morning Ritu, wanted to share some updates about Atri Aqua. Ritu: Yes, tell me. Rahul: We have a new tower launch with pre-launch pricing. Are you still looking in New Town? Ritu: Yes, what's the price? Rahul: Starting at 7.2 Cr for 3 BHK. Possession by October 2026. Ritu: That's good. Send me the details on WhatsApp. Rahul: Done. When can you visit? Ritu: This weekend. Rahul: I'll block Saturday 11 AM for you.","[{""speaker"": ""agent"", ""text"": ""Rahul: Good morning Ritu, wanted to share some updates about Atri Aqua."", ""start"": 0.0, ""end"": 2.37}, {""speaker"": ""client"", ""text"": ""Ritu: Yes, tell me."", ""start"": 3.34, ""end"": 7.76}, {""speaker"": ""agent"", ""text"": ""Rahul: We have a new tower launch with pre-launch pricing. Are you still looking in New Town?"", ""start"": 9.57, ""end"": 13.31}, {""speaker"": ""client"", ""text"": ""Ritu: Yes, what's the price?"", ""start"": 14.63, ""end"": 17.38}, {""speaker"": ""agent"", ""text"": ""Rahul: Starting at 7.2 Cr for 3 BHK. Possession by October 2026."", ""start"": 19.2, ""end"": 23.57}, {""speaker"": ""client"", ""text"": ""Ritu: That's good. Send me the details on WhatsApp."", ""start"": 25.48, ""end"": 28.94}, {""speaker"": ""agent"", ""text"": ""Rahul: Done. When can you visit?"", ""start"": 30.61, ""end"": 34.09}, {""speaker"": ""client"", ""text"": ""Ritu: This weekend."", ""start"": 35.84, ""end"": 39.29}, {""speaker"": ""agent"", ""text"": ""Rahul: I'll block Saturday 11 AM for you."", ""start"": 40.43, ""end"": 45.28}]",0.93
|
||||
TRX-00102,CAL-00225,en-IN,"Vikram: Hi Priya, following up on your enquiry for Atri Aqua. Priya: Yes, tell me. Vikram: We have a new tower launch with pre-launch pricing. Are you still looking in New Town? Priya: Yes, what's the price? Vikram: Starting at 7.13 Cr for 3 BHK. Possession by August 2026. Priya: That's good. Send me the details on WhatsApp. Vikram: Done. When can you visit? Priya: This weekend. Vikram: I'll block Saturday 11 AM for you.","[{""speaker"": ""agent"", ""text"": ""Vikram: Hi Priya, following up on your enquiry for Atri Aqua."", ""start"": 0.0, ""end"": 7.59}, {""speaker"": ""client"", ""text"": ""Priya: Yes, tell me."", ""start"": 8.43, ""end"": 10.49}, {""speaker"": ""agent"", ""text"": ""Vikram: We have a new tower launch with pre-launch pricing. Are you still looking in New Town?"", ""start"": 12.27, ""end"": 17.22}, {""speaker"": ""client"", ""text"": ""Priya: Yes, what's the price?"", ""start"": 18.47, ""end"": 21.89}, {""speaker"": ""agent"", ""text"": ""Vikram: Starting at 7.13 Cr for 3 BHK. Possession by August 2026."", ""start"": 22.59, ""end"": 29.31}, {""speaker"": ""client"", ""text"": ""Priya: That's good. Send me the details on WhatsApp."", ""start"": 30.51, ""end"": 33.7}, {""speaker"": ""agent"", ""text"": ""Vikram: Done. When can you visit?"", ""start"": 35.64, ""end"": 42.59}, {""speaker"": ""client"", ""text"": ""Priya: This weekend."", ""start"": 43.26, ""end"": 50.58}, {""speaker"": ""agent"", ""text"": ""Vikram: I'll block Saturday 11 AM for you."", ""start"": 52.39, ""end"": 57.81}]",0.95
|
||||
TRX-00103,CAL-00228,en-IN,"Vikram: Hello Sourav, this is Vikram from Velocity regarding Siddha Sky Waterfront. Sourav: Hi, I was about to call you. Vikram: Great minds! What were you thinking? Sourav: The price is still high. Can you match DTC Good Earth's rate? Vikram: I understand. Let me see what best I can do. Are you flexible on floor preference? Sourav: Not really. I want mid-floor east facing. Vikram: That's our premium inventory. But for serious buyers, I can check for a corporate discount. Sourav: Please do. We're ready to close quickly. Vikram: Will revert by tomorrow 2 PM.","[{""speaker"": ""agent"", ""text"": ""Vikram: Hello Sourav, this is Vikram from Velocity regarding Siddha Sky Waterfront."", ""start"": 0.0, ""end"": 7.4}, {""speaker"": ""client"", ""text"": ""Sourav: Hi, I was about to call you."", ""start"": 9.14, ""end"": 14.65}, {""speaker"": ""agent"", ""text"": ""Vikram: Great minds! What were you thinking?"", ""start"": 15.82, ""end"": 18.0}, {""speaker"": ""client"", ""text"": ""Sourav: The price is still high. Can you match DTC Good Earth's rate?"", ""start"": 19.12, ""end"": 26.5}, {""speaker"": ""agent"", ""text"": ""Vikram: I understand. Let me see what best I can do. Are you flexible on floor preference?"", ""start"": 27.01, ""end"": 34.79}, {""speaker"": ""client"", ""text"": ""Sourav: Not really. I want mid-floor east facing."", ""start"": 35.4, ""end"": 41.34}, {""speaker"": ""agent"", ""text"": ""Vikram: That's our premium inventory. But for serious buyers, I can check for a corporate discount."", ""start"": 42.12, ""end"": 48.22}, {""speaker"": ""client"", ""text"": ""Sourav: Please do. We're ready to close quickly."", ""start"": 49.24, ""end"": 53.16}, {""speaker"": ""agent"", ""text"": ""Vikram: Will revert by tomorrow 2 PM."", ""start"": 54.08, ""end"": 60.63}]",0.92
|
||||
TRX-00104,CAL-00230,en-IN,"Rahul: Good morning Manish, wanted to share some updates about Atri Surya Toron. Manish: Hi, I was about to call you. Rahul: Great minds! What were you thinking? Manish: The price is still high. Can you match DTC Sojon's rate? Rahul: I understand. Let me see what best I can do. Are you flexible on floor preference? Manish: Not really. I want mid-floor east facing. Rahul: That's our premium inventory. But for serious buyers, I can check for a corporate discount. Manish: Please do. We're ready to close quickly. Rahul: Will revert by tomorrow 2 PM.","[{""speaker"": ""agent"", ""text"": ""Rahul: Good morning Manish, wanted to share some updates about Atri Surya Toron."", ""start"": 0.0, ""end"": 3.26}, {""speaker"": ""client"", ""text"": ""Manish: Hi, I was about to call you."", ""start"": 4.9, ""end"": 12.73}, {""speaker"": ""agent"", ""text"": ""Rahul: Great minds! What were you thinking?"", ""start"": 13.83, ""end"": 18.04}, {""speaker"": ""client"", ""text"": ""Manish: The price is still high. Can you match DTC Sojon's rate?"", ""start"": 19.35, ""end"": 26.25}, {""speaker"": ""agent"", ""text"": ""Rahul: I understand. Let me see what best I can do. Are you flexible on floor preference?"", ""start"": 27.73, ""end"": 30.88}, {""speaker"": ""client"", ""text"": ""Manish: Not really. I want mid-floor east facing."", ""start"": 31.67, ""end"": 38.63}, {""speaker"": ""agent"", ""text"": ""Rahul: That's our premium inventory. But for serious buyers, I can check for a corporate discount."", ""start"": 39.89, ""end"": 47.49}, {""speaker"": ""client"", ""text"": ""Manish: Please do. We're ready to close quickly."", ""start"": 48.49, ""end"": 50.67}, {""speaker"": ""agent"", ""text"": ""Rahul: Will revert by tomorrow 2 PM."", ""start"": 51.22, ""end"": 58.45}]",0.89
|
||||
TRX-00105,CAL-00232,en-IN,"Ananya: Hello Aditya, this is Ananya from Velocity regarding Atri Surya Toron. Aditya: Yes, tell me. Ananya: We have a new tower launch with pre-launch pricing. Are you still looking in Rajarhat? Aditya: Yes, what's the price? Ananya: Starting at 6.86 Cr for 3 BHK. Possession by September 2026. Aditya: That's good. Send me the details on WhatsApp. Ananya: Done. When can you visit? Aditya: This weekend. Ananya: I'll block Saturday 11 AM for you.","[{""speaker"": ""agent"", ""text"": ""Ananya: Hello Aditya, this is Ananya from Velocity regarding Atri Surya Toron."", ""start"": 0.0, ""end"": 3.52}, {""speaker"": ""client"", ""text"": ""Aditya: Yes, tell me."", ""start"": 4.06, ""end"": 8.23}, {""speaker"": ""agent"", ""text"": ""Ananya: We have a new tower launch with pre-launch pricing. Are you still looking in Rajarhat?"", ""start"": 10.13, ""end"": 13.91}, {""speaker"": ""client"", ""text"": ""Aditya: Yes, what's the price?"", ""start"": 14.6, ""end"": 17.39}, {""speaker"": ""agent"", ""text"": ""Ananya: Starting at 6.86 Cr for 3 BHK. Possession by September 2026."", ""start"": 17.98, ""end"": 25.85}, {""speaker"": ""client"", ""text"": ""Aditya: That's good. Send me the details on WhatsApp."", ""start"": 27.52, ""end"": 33.1}, {""speaker"": ""agent"", ""text"": ""Ananya: Done. When can you visit?"", ""start"": 35.0, ""end"": 39.76}, {""speaker"": ""client"", ""text"": ""Aditya: This weekend."", ""start"": 41.12, ""end"": 45.69}, {""speaker"": ""agent"", ""text"": ""Ananya: I'll block Saturday 11 AM for you."", ""start"": 47.37, ""end"": 52.78}]",0.87
|
||||
TRX-00106,CAL-00233,en-IN,"Rahul: Hi Aditya, following up on your enquiry for Atri Surya Toron. Aditya: Hi, I was about to call you. Rahul: Great minds! What were you thinking? Aditya: The price is still high. Can you match Ambuja Utpaala's rate? Rahul: I understand. Let me see what best I can do. Are you flexible on floor preference? Aditya: Not really. I want mid-floor east facing. Rahul: That's our premium inventory. But for serious buyers, I can check for a corporate discount. Aditya: Please do. We're ready to close quickly. Rahul: Will revert by tomorrow 2 PM.","[{""speaker"": ""agent"", ""text"": ""Rahul: Hi Aditya, following up on your enquiry for Atri Surya Toron."", ""start"": 0.0, ""end"": 2.48}, {""speaker"": ""client"", ""text"": ""Aditya: Hi, I was about to call you."", ""start"": 3.81, ""end"": 11.6}, {""speaker"": ""agent"", ""text"": ""Rahul: Great minds! What were you thinking?"", ""start"": 12.63, ""end"": 15.42}, {""speaker"": ""client"", ""text"": ""Aditya: The price is still high. Can you match Ambuja Utpaala's rate?"", ""start"": 16.99, ""end"": 22.89}, {""speaker"": ""agent"", ""text"": ""Rahul: I understand. Let me see what best I can do. Are you flexible on floor preference?"", ""start"": 24.41, ""end"": 31.17}, {""speaker"": ""client"", ""text"": ""Aditya: Not really. I want mid-floor east facing."", ""start"": 33.07, ""end"": 39.75}, {""speaker"": ""agent"", ""text"": ""Rahul: That's our premium inventory. But for serious buyers, I can check for a corporate discount."", ""start"": 41.6, ""end"": 44.69}, {""speaker"": ""client"", ""text"": ""Aditya: Please do. We're ready to close quickly."", ""start"": 46.13, ""end"": 53.59}, {""speaker"": ""agent"", ""text"": ""Rahul: Will revert by tomorrow 2 PM."", ""start"": 54.44, ""end"": 57.6}]",0.92
|
||||
TRX-00107,CAL-00236,en-IN,"Priya: Hello Pallavi, this is Priya from Velocity regarding Sugam Prakriti. Pallavi: Yes, tell me. Priya: We have a new tower launch with pre-launch pricing. Are you still looking in Barasat? Pallavi: Yes, what's the price? Priya: Starting at 6.81 Cr for 3 BHK. Possession by June 2026. Pallavi: That's good. Send me the details on WhatsApp. Priya: Done. When can you visit? Pallavi: This weekend. Priya: I'll block Saturday 11 AM for you.","[{""speaker"": ""agent"", ""text"": ""Priya: Hello Pallavi, this is Priya from Velocity regarding Sugam Prakriti."", ""start"": 0.0, ""end"": 6.93}, {""speaker"": ""client"", ""text"": ""Pallavi: Yes, tell me."", ""start"": 8.89, ""end"": 14.82}, {""speaker"": ""agent"", ""text"": ""Priya: We have a new tower launch with pre-launch pricing. Are you still looking in Barasat?"", ""start"": 15.5, ""end"": 23.12}, {""speaker"": ""client"", ""text"": ""Pallavi: Yes, what's the price?"", ""start"": 24.02, ""end"": 31.22}, {""speaker"": ""agent"", ""text"": ""Priya: Starting at 6.81 Cr for 3 BHK. Possession by June 2026."", ""start"": 32.92, ""end"": 37.91}, {""speaker"": ""client"", ""text"": ""Pallavi: That's good. Send me the details on WhatsApp."", ""start"": 38.47, ""end"": 46.11}, {""speaker"": ""agent"", ""text"": ""Priya: Done. When can you visit?"", ""start"": 46.76, ""end"": 53.99}, {""speaker"": ""client"", ""text"": ""Pallavi: This weekend."", ""start"": 54.53, ""end"": 60.08}, {""speaker"": ""agent"", ""text"": ""Priya: I'll block Saturday 11 AM for you."", ""start"": 61.68, ""end"": 64.86}]",0.83
|
||||
TRX-00108,CAL-00239,en-IN,"Ananya: Hi Vidya, following up on your enquiry for Atri Surya Toron. Vidya: Yes, tell me. Ananya: We have a new tower launch with pre-launch pricing. Are you still looking in Rajarhat? Vidya: Yes, what's the price? Ananya: Starting at 7.35 Cr for 3 BHK. Possession by September 2026. Vidya: That's good. Send me the details on WhatsApp. Ananya: Done. When can you visit? Vidya: This weekend. Ananya: I'll block Saturday 11 AM for you.","[{""speaker"": ""agent"", ""text"": ""Ananya: Hi Vidya, following up on your enquiry for Atri Surya Toron."", ""start"": 0.0, ""end"": 2.28}, {""speaker"": ""client"", ""text"": ""Vidya: Yes, tell me."", ""start"": 3.72, ""end"": 11.25}, {""speaker"": ""agent"", ""text"": ""Ananya: We have a new tower launch with pre-launch pricing. Are you still looking in Rajarhat?"", ""start"": 12.23, ""end"": 19.73}, {""speaker"": ""client"", ""text"": ""Vidya: Yes, what's the price?"", ""start"": 20.51, ""end"": 22.6}, {""speaker"": ""agent"", ""text"": ""Ananya: Starting at 7.35 Cr for 3 BHK. Possession by September 2026."", ""start"": 23.98, ""end"": 27.25}, {""speaker"": ""client"", ""text"": ""Vidya: That's good. Send me the details on WhatsApp."", ""start"": 29.21, ""end"": 35.08}, {""speaker"": ""agent"", ""text"": ""Ananya: Done. When can you visit?"", ""start"": 36.3, ""end"": 40.71}, {""speaker"": ""client"", ""text"": ""Vidya: This weekend."", ""start"": 42.04, ""end"": 47.99}, {""speaker"": ""agent"", ""text"": ""Ananya: I'll block Saturday 11 AM for you."", ""start"": 49.93, ""end"": 53.58}]",0.85
|
||||
TRX-00109,CAL-00242,en-IN,"Rahul: Hello Isha, this is Rahul from Velocity regarding DTC Sojon. Isha: Hi, I was about to call you. Rahul: Great minds! What were you thinking? Isha: The price is still high. Can you match Godrej Elevate's rate? Rahul: I understand. Let me see what best I can do. Are you flexible on floor preference? Isha: Not really. I want mid-floor east facing. Rahul: That's our premium inventory. But for serious buyers, I can check for a corporate discount. Isha: Please do. We're ready to close quickly. Rahul: Will revert by tomorrow 2 PM.","[{""speaker"": ""agent"", ""text"": ""Rahul: Hello Isha, this is Rahul from Velocity regarding DTC Sojon."", ""start"": 0.0, ""end"": 2.59}, {""speaker"": ""client"", ""text"": ""Isha: Hi, I was about to call you."", ""start"": 4.25, ""end"": 11.67}, {""speaker"": ""agent"", ""text"": ""Rahul: Great minds! What were you thinking?"", ""start"": 13.22, ""end"": 19.36}, {""speaker"": ""client"", ""text"": ""Isha: The price is still high. Can you match Godrej Elevate's rate?"", ""start"": 20.84, ""end"": 23.32}, {""speaker"": ""agent"", ""text"": ""Rahul: I understand. Let me see what best I can do. Are you flexible on floor preference?"", ""start"": 24.51, ""end"": 31.44}, {""speaker"": ""client"", ""text"": ""Isha: Not really. I want mid-floor east facing."", ""start"": 32.2, ""end"": 35.63}, {""speaker"": ""agent"", ""text"": ""Rahul: That's our premium inventory. But for serious buyers, I can check for a corporate discount."", ""start"": 37.62, ""end"": 42.5}, {""speaker"": ""client"", ""text"": ""Isha: Please do. We're ready to close quickly."", ""start"": 43.56, ""end"": 48.52}, {""speaker"": ""agent"", ""text"": ""Rahul: Will revert by tomorrow 2 PM."", ""start"": 49.67, ""end"": 52.02}]",0.9
|
||||
TRX-00110,CAL-00244,en-IN,"Ananya: Hello Siddharth, this is Ananya from Velocity regarding Atri Aqua. Siddharth: Yes, tell me. Ananya: We have a new tower launch with pre-launch pricing. Are you still looking in New Town? Siddharth: Yes, what's the price? Ananya: Starting at 7.88 Cr for 3 BHK. Possession by July 2026. Siddharth: That's good. Send me the details on WhatsApp. Ananya: Done. When can you visit? Siddharth: This weekend. Ananya: I'll block Saturday 11 AM for you.","[{""speaker"": ""agent"", ""text"": ""Ananya: Hello Siddharth, this is Ananya from Velocity regarding Atri Aqua."", ""start"": 0.0, ""end"": 7.98}, {""speaker"": ""client"", ""text"": ""Siddharth: Yes, tell me."", ""start"": 9.45, ""end"": 16.44}, {""speaker"": ""agent"", ""text"": ""Ananya: We have a new tower launch with pre-launch pricing. Are you still looking in New Town?"", ""start"": 17.45, ""end"": 23.75}, {""speaker"": ""client"", ""text"": ""Siddharth: Yes, what's the price?"", ""start"": 24.27, ""end"": 27.27}, {""speaker"": ""agent"", ""text"": ""Ananya: Starting at 7.88 Cr for 3 BHK. Possession by July 2026."", ""start"": 28.73, ""end"": 31.56}, {""speaker"": ""client"", ""text"": ""Siddharth: That's good. Send me the details on WhatsApp."", ""start"": 32.34, ""end"": 37.62}, {""speaker"": ""agent"", ""text"": ""Ananya: Done. When can you visit?"", ""start"": 38.47, ""end"": 44.98}, {""speaker"": ""client"", ""text"": ""Siddharth: This weekend."", ""start"": 45.58, ""end"": 52.95}, {""speaker"": ""agent"", ""text"": ""Ananya: I'll block Saturday 11 AM for you."", ""start"": 54.72, ""end"": 60.3}]",0.85
|
||||
TRX-00111,CAL-00246,en-IN,"Rahul: Hi Siddharth, following up on your enquiry for Atri Aqua. Siddharth: Hi, I was about to call you. Rahul: Great minds! What were you thinking? Siddharth: The price is still high. Can you match Godrej Elevate's rate? Rahul: I understand. Let me see what best I can do. Are you flexible on floor preference? Siddharth: Not really. I want mid-floor east facing. Rahul: That's our premium inventory. But for serious buyers, I can check for a corporate discount. Siddharth: Please do. We're ready to close quickly. Rahul: Will revert by tomorrow 2 PM.","[{""speaker"": ""agent"", ""text"": ""Rahul: Hi Siddharth, following up on your enquiry for Atri Aqua."", ""start"": 0.0, ""end"": 7.31}, {""speaker"": ""client"", ""text"": ""Siddharth: Hi, I was about to call you."", ""start"": 8.8, ""end"": 16.72}, {""speaker"": ""agent"", ""text"": ""Rahul: Great minds! What were you thinking?"", ""start"": 18.65, ""end"": 23.29}, {""speaker"": ""client"", ""text"": ""Siddharth: The price is still high. Can you match Godrej Elevate's rate?"", ""start"": 24.78, ""end"": 27.67}, {""speaker"": ""agent"", ""text"": ""Rahul: I understand. Let me see what best I can do. Are you flexible on floor preference?"", ""start"": 29.1, ""end"": 35.24}, {""speaker"": ""client"", ""text"": ""Siddharth: Not really. I want mid-floor east facing."", ""start"": 36.53, ""end"": 43.24}, {""speaker"": ""agent"", ""text"": ""Rahul: That's our premium inventory. But for serious buyers, I can check for a corporate discount."", ""start"": 44.28, ""end"": 52.02}, {""speaker"": ""client"", ""text"": ""Siddharth: Please do. We're ready to close quickly."", ""start"": 53.45, ""end"": 59.22}, {""speaker"": ""agent"", ""text"": ""Rahul: Will revert by tomorrow 2 PM."", ""start"": 60.23, ""end"": 62.33}]",0.86
|
||||
TRX-00112,CAL-00247,en-IN,"Vikram: Good morning Siddharth, wanted to share some updates about Atri Aqua. Siddharth: Hi, I was about to call you. Vikram: Great minds! What were you thinking? Siddharth: The price is still high. Can you match Sugam Prakriti's rate? Vikram: I understand. Let me see what best I can do. Are you flexible on floor preference? Siddharth: Not really. I want mid-floor east facing. Vikram: That's our premium inventory. But for serious buyers, I can check for a corporate discount. Siddharth: Please do. We're ready to close quickly. Vikram: Will revert by tomorrow 2 PM.","[{""speaker"": ""agent"", ""text"": ""Vikram: Good morning Siddharth, wanted to share some updates about Atri Aqua."", ""start"": 0.0, ""end"": 4.87}, {""speaker"": ""client"", ""text"": ""Siddharth: Hi, I was about to call you."", ""start"": 5.8, ""end"": 11.13}, {""speaker"": ""agent"", ""text"": ""Vikram: Great minds! What were you thinking?"", ""start"": 12.7, ""end"": 16.51}, {""speaker"": ""client"", ""text"": ""Siddharth: The price is still high. Can you match Sugam Prakriti's rate?"", ""start"": 17.36, ""end"": 20.33}, {""speaker"": ""agent"", ""text"": ""Vikram: I understand. Let me see what best I can do. Are you flexible on floor preference?"", ""start"": 21.0, ""end"": 27.51}, {""speaker"": ""client"", ""text"": ""Siddharth: Not really. I want mid-floor east facing."", ""start"": 28.98, ""end"": 33.3}, {""speaker"": ""agent"", ""text"": ""Vikram: That's our premium inventory. But for serious buyers, I can check for a corporate discount."", ""start"": 34.07, ""end"": 37.11}, {""speaker"": ""client"", ""text"": ""Siddharth: Please do. We're ready to close quickly."", ""start"": 38.27, ""end"": 45.71}, {""speaker"": ""agent"", ""text"": ""Vikram: Will revert by tomorrow 2 PM."", ""start"": 47.14, ""end"": 53.01}]",0.87
|
||||
TRX-00113,CAL-00251,en-IN,"Vikram: Good morning Priya, wanted to share some updates about Siddha Serena. Priya: Yes, tell me. Vikram: We have a new tower launch with pre-launch pricing. Are you still looking in New Town? Priya: Yes, what's the price? Vikram: Starting at 3.12 Cr for 3 BHK. Possession by September 2026. Priya: That's good. Send me the details on WhatsApp. Vikram: Done. When can you visit? Priya: This weekend. Vikram: I'll block Saturday 11 AM for you.","[{""speaker"": ""agent"", ""text"": ""Vikram: Good morning Priya, wanted to share some updates about Siddha Serena."", ""start"": 0.0, ""end"": 3.5}, {""speaker"": ""client"", ""text"": ""Priya: Yes, tell me."", ""start"": 4.54, ""end"": 11.95}, {""speaker"": ""agent"", ""text"": ""Vikram: We have a new tower launch with pre-launch pricing. Are you still looking in New Town?"", ""start"": 12.66, ""end"": 16.89}, {""speaker"": ""client"", ""text"": ""Priya: Yes, what's the price?"", ""start"": 17.74, ""end"": 24.25}, {""speaker"": ""agent"", ""text"": ""Vikram: Starting at 3.12 Cr for 3 BHK. Possession by September 2026."", ""start"": 25.03, ""end"": 28.27}, {""speaker"": ""client"", ""text"": ""Priya: That's good. Send me the details on WhatsApp."", ""start"": 29.79, ""end"": 34.91}, {""speaker"": ""agent"", ""text"": ""Vikram: Done. When can you visit?"", ""start"": 35.91, ""end"": 38.77}, {""speaker"": ""client"", ""text"": ""Priya: This weekend."", ""start"": 39.65, ""end"": 44.18}, {""speaker"": ""agent"", ""text"": ""Vikram: I'll block Saturday 11 AM for you."", ""start"": 45.26, ""end"": 51.05}]",0.94
|
||||
TRX-00114,CAL-00252,en-IN,"Ananya: Hello Priya, this is Ananya from Velocity regarding Siddha Serena. Priya: Yes, tell me. Ananya: We have a new tower launch with pre-launch pricing. Are you still looking in New Town? Priya: Yes, what's the price? Ananya: Starting at 2.67 Cr for 3 BHK. Possession by July 2026. Priya: That's good. Send me the details on WhatsApp. Ananya: Done. When can you visit? Priya: This weekend. Ananya: I'll block Saturday 11 AM for you.","[{""speaker"": ""agent"", ""text"": ""Ananya: Hello Priya, this is Ananya from Velocity regarding Siddha Serena."", ""start"": 0.0, ""end"": 4.62}, {""speaker"": ""client"", ""text"": ""Priya: Yes, tell me."", ""start"": 5.61, ""end"": 8.62}, {""speaker"": ""agent"", ""text"": ""Ananya: We have a new tower launch with pre-launch pricing. Are you still looking in New Town?"", ""start"": 9.17, ""end"": 16.91}, {""speaker"": ""client"", ""text"": ""Priya: Yes, what's the price?"", ""start"": 18.18, ""end"": 20.85}, {""speaker"": ""agent"", ""text"": ""Ananya: Starting at 2.67 Cr for 3 BHK. Possession by July 2026."", ""start"": 21.91, ""end"": 29.83}, {""speaker"": ""client"", ""text"": ""Priya: That's good. Send me the details on WhatsApp."", ""start"": 31.16, ""end"": 38.51}, {""speaker"": ""agent"", ""text"": ""Ananya: Done. When can you visit?"", ""start"": 40.08, ""end"": 44.23}, {""speaker"": ""client"", ""text"": ""Priya: This weekend."", ""start"": 44.86, ""end"": 50.35}, {""speaker"": ""agent"", ""text"": ""Ananya: I'll block Saturday 11 AM for you."", ""start"": 51.98, ""end"": 58.99}]",0.96
|
||||
TRX-00115,CAL-00253,en-IN,"Vikram: Hello Priya, this is Vikram from Velocity regarding Siddha Serena. Priya: Hi, I was about to call you. Vikram: Great minds! What were you thinking? Priya: The price is still high. Can you match Shriram Grand City's rate? Vikram: I understand. Let me see what best I can do. Are you flexible on floor preference? Priya: Not really. I want mid-floor east facing. Vikram: That's our premium inventory. But for serious buyers, I can check for a corporate discount. Priya: Please do. We're ready to close quickly. Vikram: Will revert by tomorrow 2 PM.","[{""speaker"": ""agent"", ""text"": ""Vikram: Hello Priya, this is Vikram from Velocity regarding Siddha Serena."", ""start"": 0.0, ""end"": 7.87}, {""speaker"": ""client"", ""text"": ""Priya: Hi, I was about to call you."", ""start"": 9.69, ""end"": 14.92}, {""speaker"": ""agent"", ""text"": ""Vikram: Great minds! What were you thinking?"", ""start"": 15.91, ""end"": 18.33}, {""speaker"": ""client"", ""text"": ""Priya: The price is still high. Can you match Shriram Grand City's rate?"", ""start"": 19.71, ""end"": 23.79}, {""speaker"": ""agent"", ""text"": ""Vikram: I understand. Let me see what best I can do. Are you flexible on floor preference?"", ""start"": 24.36, ""end"": 29.07}, {""speaker"": ""client"", ""text"": ""Priya: Not really. I want mid-floor east facing."", ""start"": 29.63, ""end"": 33.0}, {""speaker"": ""agent"", ""text"": ""Vikram: That's our premium inventory. But for serious buyers, I can check for a corporate discount."", ""start"": 34.24, ""end"": 40.69}, {""speaker"": ""client"", ""text"": ""Priya: Please do. We're ready to close quickly."", ""start"": 42.56, ""end"": 48.7}, {""speaker"": ""agent"", ""text"": ""Vikram: Will revert by tomorrow 2 PM."", ""start"": 50.2, ""end"": 52.4}]",0.85
|
||||
TRX-00116,CAL-00254,en-IN,"Priya: Hi Parth, following up on your enquiry for Merlin Avana. Parth: Hi, I was about to call you. Priya: Great minds! What were you thinking? Parth: The price is still high. Can you match Siddha Serena's rate? Priya: I understand. Let me see what best I can do. Are you flexible on floor preference? Parth: Not really. I want mid-floor east facing. Priya: That's our premium inventory. But for serious buyers, I can check for a corporate discount. Parth: Please do. We're ready to close quickly. Priya: Will revert by tomorrow 2 PM.","[{""speaker"": ""agent"", ""text"": ""Priya: Hi Parth, following up on your enquiry for Merlin Avana."", ""start"": 0.0, ""end"": 5.02}, {""speaker"": ""client"", ""text"": ""Parth: Hi, I was about to call you."", ""start"": 6.9, ""end"": 13.46}, {""speaker"": ""agent"", ""text"": ""Priya: Great minds! What were you thinking?"", ""start"": 15.09, ""end"": 19.12}, {""speaker"": ""client"", ""text"": ""Parth: The price is still high. Can you match Siddha Serena's rate?"", ""start"": 19.76, ""end"": 27.2}, {""speaker"": ""agent"", ""text"": ""Priya: I understand. Let me see what best I can do. Are you flexible on floor preference?"", ""start"": 28.29, ""end"": 32.44}, {""speaker"": ""client"", ""text"": ""Parth: Not really. I want mid-floor east facing."", ""start"": 33.64, ""end"": 39.71}, {""speaker"": ""agent"", ""text"": ""Priya: That's our premium inventory. But for serious buyers, I can check for a corporate discount."", ""start"": 40.33, ""end"": 47.68}, {""speaker"": ""client"", ""text"": ""Parth: Please do. We're ready to close quickly."", ""start"": 49.65, ""end"": 53.08}, {""speaker"": ""agent"", ""text"": ""Priya: Will revert by tomorrow 2 PM."", ""start"": 53.96, ""end"": 61.25}]",0.92
|
||||
TRX-00117,CAL-00255,en-IN,"Rahul: Hello Vivek, this is Rahul from Velocity regarding Siddha Suburbia Bungalow. Vivek: Yes, tell me. Rahul: We have a new tower launch with pre-launch pricing. Are you still looking in Madanpur? Vivek: Yes, what's the price? Rahul: Starting at 3.75 Cr for 3 BHK. Possession by September 2026. Vivek: That's good. Send me the details on WhatsApp. Rahul: Done. When can you visit? Vivek: This weekend. Rahul: I'll block Saturday 11 AM for you.","[{""speaker"": ""agent"", ""text"": ""Rahul: Hello Vivek, this is Rahul from Velocity regarding Siddha Suburbia Bungalow."", ""start"": 0.0, ""end"": 7.5}, {""speaker"": ""client"", ""text"": ""Vivek: Yes, tell me."", ""start"": 9.15, ""end"": 16.99}, {""speaker"": ""agent"", ""text"": ""Rahul: We have a new tower launch with pre-launch pricing. Are you still looking in Madanpur?"", ""start"": 18.62, ""end"": 25.79}, {""speaker"": ""client"", ""text"": ""Vivek: Yes, what's the price?"", ""start"": 26.66, ""end"": 33.68}, {""speaker"": ""agent"", ""text"": ""Rahul: Starting at 3.75 Cr for 3 BHK. Possession by September 2026."", ""start"": 34.72, ""end"": 36.75}, {""speaker"": ""client"", ""text"": ""Vivek: That's good. Send me the details on WhatsApp."", ""start"": 38.43, ""end"": 41.56}, {""speaker"": ""agent"", ""text"": ""Rahul: Done. When can you visit?"", ""start"": 42.69, ""end"": 47.63}, {""speaker"": ""client"", ""text"": ""Vivek: This weekend."", ""start"": 48.69, ""end"": 55.29}, {""speaker"": ""agent"", ""text"": ""Rahul: I'll block Saturday 11 AM for you."", ""start"": 56.57, ""end"": 60.36}]",0.96
|
||||
TRX-00118,CAL-00257,en-IN,"Priya: Hi Ritu, following up on your enquiry for Shriram Grand City. Ritu: Yes, tell me. Priya: We have a new tower launch with pre-launch pricing. Are you still looking in Howrah? Ritu: Yes, what's the price? Priya: Starting at 7.1 Cr for 3 BHK. Possession by July 2026. Ritu: That's good. Send me the details on WhatsApp. Priya: Done. When can you visit? Ritu: This weekend. Priya: I'll block Saturday 11 AM for you.","[{""speaker"": ""agent"", ""text"": ""Priya: Hi Ritu, following up on your enquiry for Shriram Grand City."", ""start"": 0.0, ""end"": 4.66}, {""speaker"": ""client"", ""text"": ""Ritu: Yes, tell me."", ""start"": 5.61, ""end"": 9.78}, {""speaker"": ""agent"", ""text"": ""Priya: We have a new tower launch with pre-launch pricing. Are you still looking in Howrah?"", ""start"": 11.0, ""end"": 16.77}, {""speaker"": ""client"", ""text"": ""Ritu: Yes, what's the price?"", ""start"": 17.28, ""end"": 22.22}, {""speaker"": ""agent"", ""text"": ""Priya: Starting at 7.1 Cr for 3 BHK. Possession by July 2026."", ""start"": 23.15, ""end"": 27.6}, {""speaker"": ""client"", ""text"": ""Ritu: That's good. Send me the details on WhatsApp."", ""start"": 28.82, ""end"": 32.02}, {""speaker"": ""agent"", ""text"": ""Priya: Done. When can you visit?"", ""start"": 32.89, ""end"": 34.92}, {""speaker"": ""client"", ""text"": ""Ritu: This weekend."", ""start"": 36.84, ""end"": 44.21}, {""speaker"": ""agent"", ""text"": ""Priya: I'll block Saturday 11 AM for you."", ""start"": 45.69, ""end"": 51.65}]",0.89
|
||||
TRX-00119,CAL-00260,en-IN,"Priya: Good morning Swati, wanted to share some updates about Siddha Suburbia Bungalow. Swati: Yes, tell me. Priya: We have a new tower launch with pre-launch pricing. Are you still looking in Madanpur? Swati: Yes, what's the price? Priya: Starting at 4.8 Cr for 3 BHK. Possession by September 2026. Swati: That's good. Send me the details on WhatsApp. Priya: Done. When can you visit? Swati: This weekend. Priya: I'll block Saturday 11 AM for you.","[{""speaker"": ""agent"", ""text"": ""Priya: Good morning Swati, wanted to share some updates about Siddha Suburbia Bungalow."", ""start"": 0.0, ""end"": 2.48}, {""speaker"": ""client"", ""text"": ""Swati: Yes, tell me."", ""start"": 3.67, ""end"": 10.08}, {""speaker"": ""agent"", ""text"": ""Priya: We have a new tower launch with pre-launch pricing. Are you still looking in Madanpur?"", ""start"": 10.68, ""end"": 16.85}, {""speaker"": ""client"", ""text"": ""Swati: Yes, what's the price?"", ""start"": 17.79, ""end"": 19.82}, {""speaker"": ""agent"", ""text"": ""Priya: Starting at 4.8 Cr for 3 BHK. Possession by September 2026."", ""start"": 21.5, ""end"": 23.93}, {""speaker"": ""client"", ""text"": ""Swati: That's good. Send me the details on WhatsApp."", ""start"": 25.61, ""end"": 32.77}, {""speaker"": ""agent"", ""text"": ""Priya: Done. When can you visit?"", ""start"": 34.29, ""end"": 41.52}, {""speaker"": ""client"", ""text"": ""Swati: This weekend."", ""start"": 42.85, ""end"": 47.35}, {""speaker"": ""agent"", ""text"": ""Priya: I'll block Saturday 11 AM for you."", ""start"": 48.49, ""end"": 55.05}]",0.85
|
||||
TRX-00120,CAL-00261,en-IN,"Rahul: Hi Sneha, following up on your enquiry for Siddha Serena. Sneha: Hi, I was about to call you. Rahul: Great minds! What were you thinking? Sneha: The price is still high. Can you match DTC Sojon's rate? Rahul: I understand. Let me see what best I can do. Are you flexible on floor preference? Sneha: Not really. I want mid-floor east facing. Rahul: That's our premium inventory. But for serious buyers, I can check for a corporate discount. Sneha: Please do. We're ready to close quickly. Rahul: Will revert by tomorrow 2 PM.","[{""speaker"": ""agent"", ""text"": ""Rahul: Hi Sneha, following up on your enquiry for Siddha Serena."", ""start"": 0.0, ""end"": 2.17}, {""speaker"": ""client"", ""text"": ""Sneha: Hi, I was about to call you."", ""start"": 3.14, ""end"": 7.94}, {""speaker"": ""agent"", ""text"": ""Rahul: Great minds! What were you thinking?"", ""start"": 8.69, ""end"": 12.21}, {""speaker"": ""client"", ""text"": ""Sneha: The price is still high. Can you match DTC Sojon's rate?"", ""start"": 13.1, ""end"": 15.74}, {""speaker"": ""agent"", ""text"": ""Rahul: I understand. Let me see what best I can do. Are you flexible on floor preference?"", ""start"": 16.35, ""end"": 23.47}, {""speaker"": ""client"", ""text"": ""Sneha: Not really. I want mid-floor east facing."", ""start"": 23.99, ""end"": 28.36}, {""speaker"": ""agent"", ""text"": ""Rahul: That's our premium inventory. But for serious buyers, I can check for a corporate discount."", ""start"": 29.88, ""end"": 34.25}, {""speaker"": ""client"", ""text"": ""Sneha: Please do. We're ready to close quickly."", ""start"": 35.76, ""end"": 39.53}, {""speaker"": ""agent"", ""text"": ""Rahul: Will revert by tomorrow 2 PM."", ""start"": 40.44, ""end"": 45.1}]",0.87
|
||||
TRX-00121,CAL-00263,en-IN,"Ananya: Good morning Riya, wanted to share some updates about Atri Surya Toron. Riya: Hi, I was about to call you. Ananya: Great minds! What were you thinking? Riya: The price is still high. Can you match DTC Good Earth's rate? Ananya: I understand. Let me see what best I can do. Are you flexible on floor preference? Riya: Not really. I want mid-floor east facing. Ananya: That's our premium inventory. But for serious buyers, I can check for a corporate discount. Riya: Please do. We're ready to close quickly. Ananya: Will revert by tomorrow 2 PM.","[{""speaker"": ""agent"", ""text"": ""Ananya: Good morning Riya, wanted to share some updates about Atri Surya Toron."", ""start"": 0.0, ""end"": 6.37}, {""speaker"": ""client"", ""text"": ""Riya: Hi, I was about to call you."", ""start"": 7.17, ""end"": 9.39}, {""speaker"": ""agent"", ""text"": ""Ananya: Great minds! What were you thinking?"", ""start"": 11.03, ""end"": 18.93}, {""speaker"": ""client"", ""text"": ""Riya: The price is still high. Can you match DTC Good Earth's rate?"", ""start"": 20.12, ""end"": 27.05}, {""speaker"": ""agent"", ""text"": ""Ananya: I understand. Let me see what best I can do. Are you flexible on floor preference?"", ""start"": 28.14, ""end"": 35.81}, {""speaker"": ""client"", ""text"": ""Riya: Not really. I want mid-floor east facing."", ""start"": 36.66, ""end"": 42.64}, {""speaker"": ""agent"", ""text"": ""Ananya: That's our premium inventory. But for serious buyers, I can check for a corporate discount."", ""start"": 44.3, ""end"": 47.54}, {""speaker"": ""client"", ""text"": ""Riya: Please do. We're ready to close quickly."", ""start"": 49.38, ""end"": 54.86}, {""speaker"": ""agent"", ""text"": ""Ananya: Will revert by tomorrow 2 PM."", ""start"": 56.75, ""end"": 60.51}]",0.91
|
||||
TRX-00122,CAL-00265,en-IN,"Vikram: Hi Riya, following up on your enquiry for Atri Surya Toron. Riya: Yes, tell me. Vikram: We have a new tower launch with pre-launch pricing. Are you still looking in Rajarhat? Riya: Yes, what's the price? Vikram: Starting at 7.01 Cr for 3 BHK. Possession by July 2026. Riya: That's good. Send me the details on WhatsApp. Vikram: Done. When can you visit? Riya: This weekend. Vikram: I'll block Saturday 11 AM for you.","[{""speaker"": ""agent"", ""text"": ""Vikram: Hi Riya, following up on your enquiry for Atri Surya Toron."", ""start"": 0.0, ""end"": 6.24}, {""speaker"": ""client"", ""text"": ""Riya: Yes, tell me."", ""start"": 7.15, ""end"": 9.9}, {""speaker"": ""agent"", ""text"": ""Vikram: We have a new tower launch with pre-launch pricing. Are you still looking in Rajarhat?"", ""start"": 10.88, ""end"": 15.84}, {""speaker"": ""client"", ""text"": ""Riya: Yes, what's the price?"", ""start"": 16.52, ""end"": 20.05}, {""speaker"": ""agent"", ""text"": ""Vikram: Starting at 7.01 Cr for 3 BHK. Possession by July 2026."", ""start"": 21.62, ""end"": 25.45}, {""speaker"": ""client"", ""text"": ""Riya: That's good. Send me the details on WhatsApp."", ""start"": 25.96, ""end"": 32.66}, {""speaker"": ""agent"", ""text"": ""Vikram: Done. When can you visit?"", ""start"": 33.72, ""end"": 40.89}, {""speaker"": ""client"", ""text"": ""Riya: This weekend."", ""start"": 41.57, ""end"": 43.81}, {""speaker"": ""agent"", ""text"": ""Vikram: I'll block Saturday 11 AM for you."", ""start"": 45.47, ""end"": 49.93}]",0.84
|
||||
TRX-00123,CAL-00268,en-IN,"Priya: Good morning Vivek, wanted to share some updates about Godrej Elevate. Vivek: Yes, tell me. Priya: We have a new tower launch with pre-launch pricing. Are you still looking in Dum Dum? Vivek: Yes, what's the price? Priya: Starting at 6.67 Cr for 3 BHK. Possession by July 2026. Vivek: That's good. Send me the details on WhatsApp. Priya: Done. When can you visit? Vivek: This weekend. Priya: I'll block Saturday 11 AM for you.","[{""speaker"": ""agent"", ""text"": ""Priya: Good morning Vivek, wanted to share some updates about Godrej Elevate."", ""start"": 0.0, ""end"": 3.64}, {""speaker"": ""client"", ""text"": ""Vivek: Yes, tell me."", ""start"": 4.86, ""end"": 9.16}, {""speaker"": ""agent"", ""text"": ""Priya: We have a new tower launch with pre-launch pricing. Are you still looking in Dum Dum?"", ""start"": 10.36, ""end"": 12.63}, {""speaker"": ""client"", ""text"": ""Vivek: Yes, what's the price?"", ""start"": 13.44, ""end"": 20.89}, {""speaker"": ""agent"", ""text"": ""Priya: Starting at 6.67 Cr for 3 BHK. Possession by July 2026."", ""start"": 21.87, ""end"": 27.85}, {""speaker"": ""client"", ""text"": ""Vivek: That's good. Send me the details on WhatsApp."", ""start"": 28.62, ""end"": 30.8}, {""speaker"": ""agent"", ""text"": ""Priya: Done. When can you visit?"", ""start"": 32.24, ""end"": 39.43}, {""speaker"": ""client"", ""text"": ""Vivek: This weekend."", ""start"": 40.16, ""end"": 44.75}, {""speaker"": ""agent"", ""text"": ""Priya: I'll block Saturday 11 AM for you."", ""start"": 45.91, ""end"": 51.85}]",0.92
|
||||
TRX-00124,CAL-00274,en-IN,"Vikram: Good morning Rahul, wanted to share some updates about Shriram Grand City. Rahul: Hi, I was about to call you. Vikram: Great minds! What were you thinking? Rahul: The price is still high. Can you match Merlin Avana's rate? Vikram: I understand. Let me see what best I can do. Are you flexible on floor preference? Rahul: Not really. I want mid-floor east facing. Vikram: That's our premium inventory. But for serious buyers, I can check for a corporate discount. Rahul: Please do. We're ready to close quickly. Vikram: Will revert by tomorrow 2 PM.","[{""speaker"": ""agent"", ""text"": ""Vikram: Good morning Rahul, wanted to share some updates about Shriram Grand City."", ""start"": 0.0, ""end"": 6.6}, {""speaker"": ""client"", ""text"": ""Rahul: Hi, I was about to call you."", ""start"": 8.25, ""end"": 10.83}, {""speaker"": ""agent"", ""text"": ""Vikram: Great minds! What were you thinking?"", ""start"": 12.38, ""end"": 18.36}, {""speaker"": ""client"", ""text"": ""Rahul: The price is still high. Can you match Merlin Avana's rate?"", ""start"": 18.87, ""end"": 23.96}, {""speaker"": ""agent"", ""text"": ""Vikram: I understand. Let me see what best I can do. Are you flexible on floor preference?"", ""start"": 25.19, ""end"": 28.24}, {""speaker"": ""client"", ""text"": ""Rahul: Not really. I want mid-floor east facing."", ""start"": 30.02, ""end"": 36.18}, {""speaker"": ""agent"", ""text"": ""Vikram: That's our premium inventory. But for serious buyers, I can check for a corporate discount."", ""start"": 38.11, ""end"": 40.89}, {""speaker"": ""client"", ""text"": ""Rahul: Please do. We're ready to close quickly."", ""start"": 41.83, ""end"": 49.53}, {""speaker"": ""agent"", ""text"": ""Vikram: Will revert by tomorrow 2 PM."", ""start"": 50.55, ""end"": 53.48}]",0.85
|
||||
TRX-00125,CAL-00279,en-IN,"Priya: Hello Moumita, this is Priya from Velocity regarding Siddha Suburbia Bungalow. Moumita: Hi, I was about to call you. Priya: Great minds! What were you thinking? Moumita: The price is still high. Can you match Sugam Prakriti's rate? Priya: I understand. Let me see what best I can do. Are you flexible on floor preference? Moumita: Not really. I want mid-floor east facing. Priya: That's our premium inventory. But for serious buyers, I can check for a corporate discount. Moumita: Please do. We're ready to close quickly. Priya: Will revert by tomorrow 2 PM.","[{""speaker"": ""agent"", ""text"": ""Priya: Hello Moumita, this is Priya from Velocity regarding Siddha Suburbia Bungalow."", ""start"": 0.0, ""end"": 6.46}, {""speaker"": ""client"", ""text"": ""Moumita: Hi, I was about to call you."", ""start"": 7.58, ""end"": 14.94}, {""speaker"": ""agent"", ""text"": ""Priya: Great minds! What were you thinking?"", ""start"": 15.66, ""end"": 20.24}, {""speaker"": ""client"", ""text"": ""Moumita: The price is still high. Can you match Sugam Prakriti's rate?"", ""start"": 22.08, ""end"": 26.15}, {""speaker"": ""agent"", ""text"": ""Priya: I understand. Let me see what best I can do. Are you flexible on floor preference?"", ""start"": 26.92, ""end"": 34.24}, {""speaker"": ""client"", ""text"": ""Moumita: Not really. I want mid-floor east facing."", ""start"": 35.49, ""end"": 39.43}, {""speaker"": ""agent"", ""text"": ""Priya: That's our premium inventory. But for serious buyers, I can check for a corporate discount."", ""start"": 40.17, ""end"": 47.62}, {""speaker"": ""client"", ""text"": ""Moumita: Please do. We're ready to close quickly."", ""start"": 48.13, ""end"": 50.29}, {""speaker"": ""agent"", ""text"": ""Priya: Will revert by tomorrow 2 PM."", ""start"": 51.51, ""end"": 54.49}]",0.87
|
||||
TRX-00126,CAL-00280,en-IN,"Ananya: Hello Rahul, this is Ananya from Velocity regarding DTC Sojon. Rahul: Yes, tell me. Ananya: We have a new tower launch with pre-launch pricing. Are you still looking in Rajarhat? Rahul: Yes, what's the price? Ananya: Starting at 6.31 Cr for 3 BHK. Possession by August 2026. Rahul: That's good. Send me the details on WhatsApp. Ananya: Done. When can you visit? Rahul: This weekend. Ananya: I'll block Saturday 11 AM for you.","[{""speaker"": ""agent"", ""text"": ""Ananya: Hello Rahul, this is Ananya from Velocity regarding DTC Sojon."", ""start"": 0.0, ""end"": 7.0}, {""speaker"": ""client"", ""text"": ""Rahul: Yes, tell me."", ""start"": 8.2, ""end"": 13.43}, {""speaker"": ""agent"", ""text"": ""Ananya: We have a new tower launch with pre-launch pricing. Are you still looking in Rajarhat?"", ""start"": 15.39, ""end"": 17.63}, {""speaker"": ""client"", ""text"": ""Rahul: Yes, what's the price?"", ""start"": 19.3, ""end"": 21.37}, {""speaker"": ""agent"", ""text"": ""Ananya: Starting at 6.31 Cr for 3 BHK. Possession by August 2026."", ""start"": 22.3, ""end"": 26.58}, {""speaker"": ""client"", ""text"": ""Rahul: That's good. Send me the details on WhatsApp."", ""start"": 27.91, ""end"": 33.31}, {""speaker"": ""agent"", ""text"": ""Ananya: Done. When can you visit?"", ""start"": 34.67, ""end"": 38.41}, {""speaker"": ""client"", ""text"": ""Rahul: This weekend."", ""start"": 39.1, ""end"": 41.72}, {""speaker"": ""agent"", ""text"": ""Ananya: I'll block Saturday 11 AM for you."", ""start"": 42.42, ""end"": 49.07}]",0.87
|
||||
TRX-00127,CAL-00281,en-IN,"Rahul: Hello Swati, this is Rahul from Velocity regarding Siddha Serena. Swati: Hi, I was about to call you. Rahul: Great minds! What were you thinking? Swati: The price is still high. Can you match Shriram Grand City's rate? Rahul: I understand. Let me see what best I can do. Are you flexible on floor preference? Swati: Not really. I want mid-floor east facing. Rahul: That's our premium inventory. But for serious buyers, I can check for a corporate discount. Swati: Please do. We're ready to close quickly. Rahul: Will revert by tomorrow 2 PM.","[{""speaker"": ""agent"", ""text"": ""Rahul: Hello Swati, this is Rahul from Velocity regarding Siddha Serena."", ""start"": 0.0, ""end"": 5.31}, {""speaker"": ""client"", ""text"": ""Swati: Hi, I was about to call you."", ""start"": 6.96, ""end"": 9.95}, {""speaker"": ""agent"", ""text"": ""Rahul: Great minds! What were you thinking?"", ""start"": 11.65, ""end"": 18.93}, {""speaker"": ""client"", ""text"": ""Swati: The price is still high. Can you match Shriram Grand City's rate?"", ""start"": 20.61, ""end"": 22.81}, {""speaker"": ""agent"", ""text"": ""Rahul: I understand. Let me see what best I can do. Are you flexible on floor preference?"", ""start"": 24.07, ""end"": 28.05}, {""speaker"": ""client"", ""text"": ""Swati: Not really. I want mid-floor east facing."", ""start"": 29.02, ""end"": 31.04}, {""speaker"": ""agent"", ""text"": ""Rahul: That's our premium inventory. But for serious buyers, I can check for a corporate discount."", ""start"": 31.83, ""end"": 36.69}, {""speaker"": ""client"", ""text"": ""Swati: Please do. We're ready to close quickly."", ""start"": 37.85, ""end"": 40.05}, {""speaker"": ""agent"", ""text"": ""Rahul: Will revert by tomorrow 2 PM."", ""start"": 41.23, ""end"": 43.72}]",0.83
|
||||
TRX-00128,CAL-00283,en-IN,"Vikram: Hello Moumita, this is Vikram from Velocity regarding Godrej Blue. Moumita: Hi, I was about to call you. Vikram: Great minds! What were you thinking? Moumita: The price is still high. Can you match Siddha Suburbia Bungalow's rate? Vikram: I understand. Let me see what best I can do. Are you flexible on floor preference? Moumita: Not really. I want mid-floor east facing. Vikram: That's our premium inventory. But for serious buyers, I can check for a corporate discount. Moumita: Please do. We're ready to close quickly. Vikram: Will revert by tomorrow 2 PM.","[{""speaker"": ""agent"", ""text"": ""Vikram: Hello Moumita, this is Vikram from Velocity regarding Godrej Blue."", ""start"": 0.0, ""end"": 7.42}, {""speaker"": ""client"", ""text"": ""Moumita: Hi, I was about to call you."", ""start"": 8.67, ""end"": 14.55}, {""speaker"": ""agent"", ""text"": ""Vikram: Great minds! What were you thinking?"", ""start"": 15.84, ""end"": 18.78}, {""speaker"": ""client"", ""text"": ""Moumita: The price is still high. Can you match Siddha Suburbia Bungalow's rate?"", ""start"": 19.39, ""end"": 21.58}, {""speaker"": ""agent"", ""text"": ""Vikram: I understand. Let me see what best I can do. Are you flexible on floor preference?"", ""start"": 23.08, ""end"": 28.26}, {""speaker"": ""client"", ""text"": ""Moumita: Not really. I want mid-floor east facing."", ""start"": 28.91, ""end"": 33.73}, {""speaker"": ""agent"", ""text"": ""Vikram: That's our premium inventory. But for serious buyers, I can check for a corporate discount."", ""start"": 34.91, ""end"": 37.66}, {""speaker"": ""client"", ""text"": ""Moumita: Please do. We're ready to close quickly."", ""start"": 38.83, ""end"": 43.44}, {""speaker"": ""agent"", ""text"": ""Vikram: Will revert by tomorrow 2 PM."", ""start"": 44.86, ""end"": 52.02}]",0.94
|
||||
TRX-00129,CAL-00284,en-IN,"Vikram: Hi Moumita, following up on your enquiry for Godrej Blue. Moumita: Yes, tell me. Vikram: We have a new tower launch with pre-launch pricing. Are you still looking in New Town? Moumita: Yes, what's the price? Vikram: Starting at 5.7 Cr for 3 BHK. Possession by July 2026. Moumita: That's good. Send me the details on WhatsApp. Vikram: Done. When can you visit? Moumita: This weekend. Vikram: I'll block Saturday 11 AM for you.","[{""speaker"": ""agent"", ""text"": ""Vikram: Hi Moumita, following up on your enquiry for Godrej Blue."", ""start"": 0.0, ""end"": 4.93}, {""speaker"": ""client"", ""text"": ""Moumita: Yes, tell me."", ""start"": 6.39, ""end"": 12.89}, {""speaker"": ""agent"", ""text"": ""Vikram: We have a new tower launch with pre-launch pricing. Are you still looking in New Town?"", ""start"": 14.0, ""end"": 21.78}, {""speaker"": ""client"", ""text"": ""Moumita: Yes, what's the price?"", ""start"": 22.29, ""end"": 28.18}, {""speaker"": ""agent"", ""text"": ""Vikram: Starting at 5.7 Cr for 3 BHK. Possession by July 2026."", ""start"": 30.03, ""end"": 33.15}, {""speaker"": ""client"", ""text"": ""Moumita: That's good. Send me the details on WhatsApp."", ""start"": 33.94, ""end"": 40.2}, {""speaker"": ""agent"", ""text"": ""Vikram: Done. When can you visit?"", ""start"": 41.01, ""end"": 43.1}, {""speaker"": ""client"", ""text"": ""Moumita: This weekend."", ""start"": 43.97, ""end"": 50.05}, {""speaker"": ""agent"", ""text"": ""Vikram: I'll block Saturday 11 AM for you."", ""start"": 50.88, ""end"": 57.66}]",0.94
|
||||
TRX-00130,CAL-00287,en-IN,"Vikram: Hello Deb, this is Vikram from Velocity regarding Atri Aqua. Deb: Hi, I was about to call you. Vikram: Great minds! What were you thinking? Deb: The price is still high. Can you match Siddha Serena's rate? Vikram: I understand. Let me see what best I can do. Are you flexible on floor preference? Deb: Not really. I want mid-floor east facing. Vikram: That's our premium inventory. But for serious buyers, I can check for a corporate discount. Deb: Please do. We're ready to close quickly. Vikram: Will revert by tomorrow 2 PM.","[{""speaker"": ""agent"", ""text"": ""Vikram: Hello Deb, this is Vikram from Velocity regarding Atri Aqua."", ""start"": 0.0, ""end"": 4.21}, {""speaker"": ""client"", ""text"": ""Deb: Hi, I was about to call you."", ""start"": 5.42, ""end"": 9.0}, {""speaker"": ""agent"", ""text"": ""Vikram: Great minds! What were you thinking?"", ""start"": 9.86, ""end"": 12.98}, {""speaker"": ""client"", ""text"": ""Deb: The price is still high. Can you match Siddha Serena's rate?"", ""start"": 14.87, ""end"": 19.74}, {""speaker"": ""agent"", ""text"": ""Vikram: I understand. Let me see what best I can do. Are you flexible on floor preference?"", ""start"": 20.39, ""end"": 24.93}, {""speaker"": ""client"", ""text"": ""Deb: Not really. I want mid-floor east facing."", ""start"": 25.69, ""end"": 32.99}, {""speaker"": ""agent"", ""text"": ""Vikram: That's our premium inventory. But for serious buyers, I can check for a corporate discount."", ""start"": 34.15, ""end"": 39.63}, {""speaker"": ""client"", ""text"": ""Deb: Please do. We're ready to close quickly."", ""start"": 40.68, ""end"": 43.58}, {""speaker"": ""agent"", ""text"": ""Vikram: Will revert by tomorrow 2 PM."", ""start"": 45.15, ""end"": 52.24}]",0.93
|
||||
TRX-00131,CAL-00289,en-IN,"Rahul: Good morning Deb, wanted to share some updates about Atri Aqua. Deb: Hi, I was about to call you. Rahul: Great minds! What were you thinking? Deb: The price is still high. Can you match Sugam Prakriti's rate? Rahul: I understand. Let me see what best I can do. Are you flexible on floor preference? Deb: Not really. I want mid-floor east facing. Rahul: That's our premium inventory. But for serious buyers, I can check for a corporate discount. Deb: Please do. We're ready to close quickly. Rahul: Will revert by tomorrow 2 PM.","[{""speaker"": ""agent"", ""text"": ""Rahul: Good morning Deb, wanted to share some updates about Atri Aqua."", ""start"": 0.0, ""end"": 3.15}, {""speaker"": ""client"", ""text"": ""Deb: Hi, I was about to call you."", ""start"": 3.66, ""end"": 11.26}, {""speaker"": ""agent"", ""text"": ""Rahul: Great minds! What were you thinking?"", ""start"": 12.37, ""end"": 16.69}, {""speaker"": ""client"", ""text"": ""Deb: The price is still high. Can you match Sugam Prakriti's rate?"", ""start"": 17.5, ""end"": 23.53}, {""speaker"": ""agent"", ""text"": ""Rahul: I understand. Let me see what best I can do. Are you flexible on floor preference?"", ""start"": 24.71, ""end"": 30.7}, {""speaker"": ""client"", ""text"": ""Deb: Not really. I want mid-floor east facing."", ""start"": 31.98, ""end"": 34.95}, {""speaker"": ""agent"", ""text"": ""Rahul: That's our premium inventory. But for serious buyers, I can check for a corporate discount."", ""start"": 36.86, ""end"": 41.14}, {""speaker"": ""client"", ""text"": ""Deb: Please do. We're ready to close quickly."", ""start"": 43.08, ""end"": 45.46}, {""speaker"": ""agent"", ""text"": ""Rahul: Will revert by tomorrow 2 PM."", ""start"": 46.06, ""end"": 53.52}]",0.84
|
||||
TRX-00132,CAL-00293,en-IN,"Vikram: Hello Rohan, this is Vikram from Velocity regarding DTC Good Earth. Rohan: Hi, I was about to call you. Vikram: Great minds! What were you thinking? Rohan: The price is still high. Can you match Godrej Elevate's rate? Vikram: I understand. Let me see what best I can do. Are you flexible on floor preference? Rohan: Not really. I want mid-floor east facing. Vikram: That's our premium inventory. But for serious buyers, I can check for a corporate discount. Rohan: Please do. We're ready to close quickly. Vikram: Will revert by tomorrow 2 PM.","[{""speaker"": ""agent"", ""text"": ""Vikram: Hello Rohan, this is Vikram from Velocity regarding DTC Good Earth."", ""start"": 0.0, ""end"": 5.45}, {""speaker"": ""client"", ""text"": ""Rohan: Hi, I was about to call you."", ""start"": 6.86, ""end"": 11.17}, {""speaker"": ""agent"", ""text"": ""Vikram: Great minds! What were you thinking?"", ""start"": 13.04, ""end"": 15.82}, {""speaker"": ""client"", ""text"": ""Rohan: The price is still high. Can you match Godrej Elevate's rate?"", ""start"": 17.54, ""end"": 23.91}, {""speaker"": ""agent"", ""text"": ""Vikram: I understand. Let me see what best I can do. Are you flexible on floor preference?"", ""start"": 25.34, ""end"": 33.16}, {""speaker"": ""client"", ""text"": ""Rohan: Not really. I want mid-floor east facing."", ""start"": 33.69, ""end"": 37.62}, {""speaker"": ""agent"", ""text"": ""Vikram: That's our premium inventory. But for serious buyers, I can check for a corporate discount."", ""start"": 39.5, ""end"": 46.02}, {""speaker"": ""client"", ""text"": ""Rohan: Please do. We're ready to close quickly."", ""start"": 47.71, ""end"": 55.33}, {""speaker"": ""agent"", ""text"": ""Vikram: Will revert by tomorrow 2 PM."", ""start"": 56.95, ""end"": 64.66}]",0.96
|
||||
TRX-00133,CAL-00295,en-IN,"Vikram: Hi Sonal, following up on your enquiry for Siddha Sky Waterfront. Sonal: Hi, I was about to call you. Vikram: Great minds! What were you thinking? Sonal: The price is still high. Can you match Sugam Prakriti's rate? Vikram: I understand. Let me see what best I can do. Are you flexible on floor preference? Sonal: Not really. I want mid-floor east facing. Vikram: That's our premium inventory. But for serious buyers, I can check for a corporate discount. Sonal: Please do. We're ready to close quickly. Vikram: Will revert by tomorrow 2 PM.","[{""speaker"": ""agent"", ""text"": ""Vikram: Hi Sonal, following up on your enquiry for Siddha Sky Waterfront."", ""start"": 0.0, ""end"": 4.19}, {""speaker"": ""client"", ""text"": ""Sonal: Hi, I was about to call you."", ""start"": 6.12, ""end"": 9.2}, {""speaker"": ""agent"", ""text"": ""Vikram: Great minds! What were you thinking?"", ""start"": 10.72, ""end"": 14.09}, {""speaker"": ""client"", ""text"": ""Sonal: The price is still high. Can you match Sugam Prakriti's rate?"", ""start"": 15.35, ""end"": 22.49}, {""speaker"": ""agent"", ""text"": ""Vikram: I understand. Let me see what best I can do. Are you flexible on floor preference?"", ""start"": 24.18, ""end"": 27.81}, {""speaker"": ""client"", ""text"": ""Sonal: Not really. I want mid-floor east facing."", ""start"": 29.43, ""end"": 37.03}, {""speaker"": ""agent"", ""text"": ""Vikram: That's our premium inventory. But for serious buyers, I can check for a corporate discount."", ""start"": 38.43, ""end"": 43.17}, {""speaker"": ""client"", ""text"": ""Sonal: Please do. We're ready to close quickly."", ""start"": 44.75, ""end"": 51.9}, {""speaker"": ""agent"", ""text"": ""Vikram: Will revert by tomorrow 2 PM."", ""start"": 53.77, ""end"": 61.73}]",0.82
|
||||
TRX-00134,CAL-00298,en-IN,"Vikram: Hello Aditya, this is Vikram from Velocity regarding Siddha Suburbia Bungalow. Aditya: Hi, I was about to call you. Vikram: Great minds! What were you thinking? Aditya: The price is still high. Can you match Sugam Prakriti's rate? Vikram: I understand. Let me see what best I can do. Are you flexible on floor preference? Aditya: Not really. I want mid-floor east facing. Vikram: That's our premium inventory. But for serious buyers, I can check for a corporate discount. Aditya: Please do. We're ready to close quickly. Vikram: Will revert by tomorrow 2 PM.","[{""speaker"": ""agent"", ""text"": ""Vikram: Hello Aditya, this is Vikram from Velocity regarding Siddha Suburbia Bungalow."", ""start"": 0.0, ""end"": 6.99}, {""speaker"": ""client"", ""text"": ""Aditya: Hi, I was about to call you."", ""start"": 8.69, ""end"": 13.66}, {""speaker"": ""agent"", ""text"": ""Vikram: Great minds! What were you thinking?"", ""start"": 15.33, ""end"": 19.0}, {""speaker"": ""client"", ""text"": ""Aditya: The price is still high. Can you match Sugam Prakriti's rate?"", ""start"": 19.66, ""end"": 25.18}, {""speaker"": ""agent"", ""text"": ""Vikram: I understand. Let me see what best I can do. Are you flexible on floor preference?"", ""start"": 26.27, ""end"": 30.27}, {""speaker"": ""client"", ""text"": ""Aditya: Not really. I want mid-floor east facing."", ""start"": 32.05, ""end"": 36.11}, {""speaker"": ""agent"", ""text"": ""Vikram: That's our premium inventory. But for serious buyers, I can check for a corporate discount."", ""start"": 36.87, ""end"": 39.32}, {""speaker"": ""client"", ""text"": ""Aditya: Please do. We're ready to close quickly."", ""start"": 40.46, ""end"": 46.21}, {""speaker"": ""agent"", ""text"": ""Vikram: Will revert by tomorrow 2 PM."", ""start"": 46.92, ""end"": 49.05}]",0.85
|
||||
TRX-00135,CAL-00300,en-IN,"Ananya: Hello Debjani, this is Ananya from Velocity regarding Siddha Serena. Debjani: Hi, I was about to call you. Ananya: Great minds! What were you thinking? Debjani: The price is still high. Can you match Atri Aqua's rate? Ananya: I understand. Let me see what best I can do. Are you flexible on floor preference? Debjani: Not really. I want mid-floor east facing. Ananya: That's our premium inventory. But for serious buyers, I can check for a corporate discount. Debjani: Please do. We're ready to close quickly. Ananya: Will revert by tomorrow 2 PM.","[{""speaker"": ""agent"", ""text"": ""Ananya: Hello Debjani, this is Ananya from Velocity regarding Siddha Serena."", ""start"": 0.0, ""end"": 3.95}, {""speaker"": ""client"", ""text"": ""Debjani: Hi, I was about to call you."", ""start"": 5.55, ""end"": 12.79}, {""speaker"": ""agent"", ""text"": ""Ananya: Great minds! What were you thinking?"", ""start"": 14.01, ""end"": 21.98}, {""speaker"": ""client"", ""text"": ""Debjani: The price is still high. Can you match Atri Aqua's rate?"", ""start"": 23.34, ""end"": 27.49}, {""speaker"": ""agent"", ""text"": ""Ananya: I understand. Let me see what best I can do. Are you flexible on floor preference?"", ""start"": 29.41, ""end"": 33.96}, {""speaker"": ""client"", ""text"": ""Debjani: Not really. I want mid-floor east facing."", ""start"": 35.39, ""end"": 41.19}, {""speaker"": ""agent"", ""text"": ""Ananya: That's our premium inventory. But for serious buyers, I can check for a corporate discount."", ""start"": 42.7, ""end"": 47.5}, {""speaker"": ""client"", ""text"": ""Debjani: Please do. We're ready to close quickly."", ""start"": 48.59, ""end"": 54.83}, {""speaker"": ""agent"", ""text"": ""Ananya: Will revert by tomorrow 2 PM."", ""start"": 56.22, ""end"": 61.38}]",0.94
|
||||
TRX-00136,CAL-00301,en-IN,"Ananya: Good morning Debjani, wanted to share some updates about Siddha Serena. Debjani: Yes, tell me. Ananya: We have a new tower launch with pre-launch pricing. Are you still looking in New Town? Debjani: Yes, what's the price? Ananya: Starting at 2.16 Cr for 3 BHK. Possession by June 2026. Debjani: That's good. Send me the details on WhatsApp. Ananya: Done. When can you visit? Debjani: This weekend. Ananya: I'll block Saturday 11 AM for you.","[{""speaker"": ""agent"", ""text"": ""Ananya: Good morning Debjani, wanted to share some updates about Siddha Serena."", ""start"": 0.0, ""end"": 7.74}, {""speaker"": ""client"", ""text"": ""Debjani: Yes, tell me."", ""start"": 8.81, ""end"": 11.42}, {""speaker"": ""agent"", ""text"": ""Ananya: We have a new tower launch with pre-launch pricing. Are you still looking in New Town?"", ""start"": 12.39, ""end"": 14.69}, {""speaker"": ""client"", ""text"": ""Debjani: Yes, what's the price?"", ""start"": 15.22, ""end"": 22.6}, {""speaker"": ""agent"", ""text"": ""Ananya: Starting at 2.16 Cr for 3 BHK. Possession by June 2026."", ""start"": 23.79, ""end"": 29.36}, {""speaker"": ""client"", ""text"": ""Debjani: That's good. Send me the details on WhatsApp."", ""start"": 31.06, ""end"": 35.8}, {""speaker"": ""agent"", ""text"": ""Ananya: Done. When can you visit?"", ""start"": 37.78, ""end"": 42.96}, {""speaker"": ""client"", ""text"": ""Debjani: This weekend."", ""start"": 43.61, ""end"": 47.75}, {""speaker"": ""agent"", ""text"": ""Ananya: I'll block Saturday 11 AM for you."", ""start"": 48.3, ""end"": 55.71}]",0.82
|
||||
TRX-00137,CAL-00302,en-IN,"Rahul: Good morning Debjani, wanted to share some updates about Siddha Serena. Debjani: Hi, I was about to call you. Rahul: Great minds! What were you thinking? Debjani: The price is still high. Can you match Godrej Blue's rate? Rahul: I understand. Let me see what best I can do. Are you flexible on floor preference? Debjani: Not really. I want mid-floor east facing. Rahul: That's our premium inventory. But for serious buyers, I can check for a corporate discount. Debjani: Please do. We're ready to close quickly. Rahul: Will revert by tomorrow 2 PM.","[{""speaker"": ""agent"", ""text"": ""Rahul: Good morning Debjani, wanted to share some updates about Siddha Serena."", ""start"": 0.0, ""end"": 7.0}, {""speaker"": ""client"", ""text"": ""Debjani: Hi, I was about to call you."", ""start"": 8.22, ""end"": 15.27}, {""speaker"": ""agent"", ""text"": ""Rahul: Great minds! What were you thinking?"", ""start"": 17.09, ""end"": 22.48}, {""speaker"": ""client"", ""text"": ""Debjani: The price is still high. Can you match Godrej Blue's rate?"", ""start"": 23.6, ""end"": 29.3}, {""speaker"": ""agent"", ""text"": ""Rahul: I understand. Let me see what best I can do. Are you flexible on floor preference?"", ""start"": 30.04, ""end"": 37.42}, {""speaker"": ""client"", ""text"": ""Debjani: Not really. I want mid-floor east facing."", ""start"": 37.94, ""end"": 43.08}, {""speaker"": ""agent"", ""text"": ""Rahul: That's our premium inventory. But for serious buyers, I can check for a corporate discount."", ""start"": 44.09, ""end"": 51.65}, {""speaker"": ""client"", ""text"": ""Debjani: Please do. We're ready to close quickly."", ""start"": 52.22, ""end"": 60.08}, {""speaker"": ""agent"", ""text"": ""Rahul: Will revert by tomorrow 2 PM."", ""start"": 60.99, ""end"": 67.99}]",0.83
|
||||
TRX-00138,CAL-00304,en-IN,"Priya: Good morning Aditya, wanted to share some updates about Godrej Blue. Aditya: Yes, tell me. Priya: We have a new tower launch with pre-launch pricing. Are you still looking in New Town? Aditya: Yes, what's the price? Priya: Starting at 5.97 Cr for 3 BHK. Possession by October 2026. Aditya: That's good. Send me the details on WhatsApp. Priya: Done. When can you visit? Aditya: This weekend. Priya: I'll block Saturday 11 AM for you.","[{""speaker"": ""agent"", ""text"": ""Priya: Good morning Aditya, wanted to share some updates about Godrej Blue."", ""start"": 0.0, ""end"": 3.55}, {""speaker"": ""client"", ""text"": ""Aditya: Yes, tell me."", ""start"": 4.07, ""end"": 6.73}, {""speaker"": ""agent"", ""text"": ""Priya: We have a new tower launch with pre-launch pricing. Are you still looking in New Town?"", ""start"": 7.47, ""end"": 13.2}, {""speaker"": ""client"", ""text"": ""Aditya: Yes, what's the price?"", ""start"": 14.51, ""end"": 21.98}, {""speaker"": ""agent"", ""text"": ""Priya: Starting at 5.97 Cr for 3 BHK. Possession by October 2026."", ""start"": 22.9, ""end"": 28.96}, {""speaker"": ""client"", ""text"": ""Aditya: That's good. Send me the details on WhatsApp."", ""start"": 29.62, ""end"": 35.18}, {""speaker"": ""agent"", ""text"": ""Priya: Done. When can you visit?"", ""start"": 36.89, ""end"": 42.66}, {""speaker"": ""client"", ""text"": ""Aditya: This weekend."", ""start"": 44.32, ""end"": 52.25}, {""speaker"": ""agent"", ""text"": ""Priya: I'll block Saturday 11 AM for you."", ""start"": 53.56, ""end"": 56.55}]",0.93
|
||||
TRX-00139,CAL-00305,en-IN,"Vikram: Hi Arjun, following up on your enquiry for Ambuja Utpaala. Arjun: Hi, I was about to call you. Vikram: Great minds! What were you thinking? Arjun: The price is still high. Can you match Eden Devprayag's rate? Vikram: I understand. Let me see what best I can do. Are you flexible on floor preference? Arjun: Not really. I want mid-floor east facing. Vikram: That's our premium inventory. But for serious buyers, I can check for a corporate discount. Arjun: Please do. We're ready to close quickly. Vikram: Will revert by tomorrow 2 PM.","[{""speaker"": ""agent"", ""text"": ""Vikram: Hi Arjun, following up on your enquiry for Ambuja Utpaala."", ""start"": 0.0, ""end"": 5.05}, {""speaker"": ""client"", ""text"": ""Arjun: Hi, I was about to call you."", ""start"": 5.55, ""end"": 7.69}, {""speaker"": ""agent"", ""text"": ""Vikram: Great minds! What were you thinking?"", ""start"": 8.43, ""end"": 10.45}, {""speaker"": ""client"", ""text"": ""Arjun: The price is still high. Can you match Eden Devprayag's rate?"", ""start"": 11.2, ""end"": 15.42}, {""speaker"": ""agent"", ""text"": ""Vikram: I understand. Let me see what best I can do. Are you flexible on floor preference?"", ""start"": 16.13, ""end"": 23.18}, {""speaker"": ""client"", ""text"": ""Arjun: Not really. I want mid-floor east facing."", ""start"": 25.03, ""end"": 28.55}, {""speaker"": ""agent"", ""text"": ""Vikram: That's our premium inventory. But for serious buyers, I can check for a corporate discount."", ""start"": 29.17, ""end"": 34.01}, {""speaker"": ""client"", ""text"": ""Arjun: Please do. We're ready to close quickly."", ""start"": 35.65, ""end"": 39.82}, {""speaker"": ""agent"", ""text"": ""Vikram: Will revert by tomorrow 2 PM."", ""start"": 40.63, ""end"": 43.36}]",0.86
|
||||
TRX-00140,CAL-00306,en-IN,"Priya: Hi Prasenjit, following up on your enquiry for Merlin Avana. Prasenjit: Yes, tell me. Priya: We have a new tower launch with pre-launch pricing. Are you still looking in Tangra? Prasenjit: Yes, what's the price? Priya: Starting at 2.05 Cr for 3 BHK. Possession by July 2026. Prasenjit: That's good. Send me the details on WhatsApp. Priya: Done. When can you visit? Prasenjit: This weekend. Priya: I'll block Saturday 11 AM for you.","[{""speaker"": ""agent"", ""text"": ""Priya: Hi Prasenjit, following up on your enquiry for Merlin Avana."", ""start"": 0.0, ""end"": 7.07}, {""speaker"": ""client"", ""text"": ""Prasenjit: Yes, tell me."", ""start"": 8.5, ""end"": 16.43}, {""speaker"": ""agent"", ""text"": ""Priya: We have a new tower launch with pre-launch pricing. Are you still looking in Tangra?"", ""start"": 17.03, ""end"": 22.5}, {""speaker"": ""client"", ""text"": ""Prasenjit: Yes, what's the price?"", ""start"": 24.31, ""end"": 28.41}, {""speaker"": ""agent"", ""text"": ""Priya: Starting at 2.05 Cr for 3 BHK. Possession by July 2026."", ""start"": 29.95, ""end"": 37.76}, {""speaker"": ""client"", ""text"": ""Prasenjit: That's good. Send me the details on WhatsApp."", ""start"": 39.3, ""end"": 43.54}, {""speaker"": ""agent"", ""text"": ""Priya: Done. When can you visit?"", ""start"": 44.67, ""end"": 51.19}, {""speaker"": ""client"", ""text"": ""Prasenjit: This weekend."", ""start"": 52.57, ""end"": 56.86}, {""speaker"": ""agent"", ""text"": ""Priya: I'll block Saturday 11 AM for you."", ""start"": 57.7, ""end"": 62.39}]",0.89
|
||||
TRX-00141,CAL-00312,en-IN,"Priya: Hello Sonal, this is Priya from Velocity regarding Godrej Blue. Sonal: Hi, I was about to call you. Priya: Great minds! What were you thinking? Sonal: The price is still high. Can you match DTC Good Earth's rate? Priya: I understand. Let me see what best I can do. Are you flexible on floor preference? Sonal: Not really. I want mid-floor east facing. Priya: That's our premium inventory. But for serious buyers, I can check for a corporate discount. Sonal: Please do. We're ready to close quickly. Priya: Will revert by tomorrow 2 PM.","[{""speaker"": ""agent"", ""text"": ""Priya: Hello Sonal, this is Priya from Velocity regarding Godrej Blue."", ""start"": 0.0, ""end"": 3.36}, {""speaker"": ""client"", ""text"": ""Sonal: Hi, I was about to call you."", ""start"": 5.07, ""end"": 9.93}, {""speaker"": ""agent"", ""text"": ""Priya: Great minds! What were you thinking?"", ""start"": 11.08, ""end"": 18.61}, {""speaker"": ""client"", ""text"": ""Sonal: The price is still high. Can you match DTC Good Earth's rate?"", ""start"": 19.77, ""end"": 23.29}, {""speaker"": ""agent"", ""text"": ""Priya: I understand. Let me see what best I can do. Are you flexible on floor preference?"", ""start"": 23.81, ""end"": 27.58}, {""speaker"": ""client"", ""text"": ""Sonal: Not really. I want mid-floor east facing."", ""start"": 29.54, ""end"": 35.72}, {""speaker"": ""agent"", ""text"": ""Priya: That's our premium inventory. But for serious buyers, I can check for a corporate discount."", ""start"": 36.99, ""end"": 42.78}, {""speaker"": ""client"", ""text"": ""Sonal: Please do. We're ready to close quickly."", ""start"": 43.75, ""end"": 46.65}, {""speaker"": ""agent"", ""text"": ""Priya: Will revert by tomorrow 2 PM."", ""start"": 47.65, ""end"": 50.7}]",0.9
|
||||
TRX-00142,CAL-00316,en-IN,"Rahul: Hello Nilesh, this is Rahul from Velocity regarding Siddha Suburbia Bungalow. Nilesh: Hi, I was about to call you. Rahul: Great minds! What were you thinking? Nilesh: The price is still high. Can you match Sugam Prakriti's rate? Rahul: I understand. Let me see what best I can do. Are you flexible on floor preference? Nilesh: Not really. I want mid-floor east facing. Rahul: That's our premium inventory. But for serious buyers, I can check for a corporate discount. Nilesh: Please do. We're ready to close quickly. Rahul: Will revert by tomorrow 2 PM.","[{""speaker"": ""agent"", ""text"": ""Rahul: Hello Nilesh, this is Rahul from Velocity regarding Siddha Suburbia Bungalow."", ""start"": 0.0, ""end"": 3.89}, {""speaker"": ""client"", ""text"": ""Nilesh: Hi, I was about to call you."", ""start"": 5.48, ""end"": 10.16}, {""speaker"": ""agent"", ""text"": ""Rahul: Great minds! What were you thinking?"", ""start"": 11.86, ""end"": 16.03}, {""speaker"": ""client"", ""text"": ""Nilesh: The price is still high. Can you match Sugam Prakriti's rate?"", ""start"": 17.02, ""end"": 24.88}, {""speaker"": ""agent"", ""text"": ""Rahul: I understand. Let me see what best I can do. Are you flexible on floor preference?"", ""start"": 26.05, ""end"": 32.81}, {""speaker"": ""client"", ""text"": ""Nilesh: Not really. I want mid-floor east facing."", ""start"": 33.63, ""end"": 41.01}, {""speaker"": ""agent"", ""text"": ""Rahul: That's our premium inventory. But for serious buyers, I can check for a corporate discount."", ""start"": 42.83, ""end"": 45.39}, {""speaker"": ""client"", ""text"": ""Nilesh: Please do. We're ready to close quickly."", ""start"": 46.59, ""end"": 49.27}, {""speaker"": ""agent"", ""text"": ""Rahul: Will revert by tomorrow 2 PM."", ""start"": 49.8, ""end"": 54.79}]",0.91
|
||||
TRX-00143,CAL-00317,en-IN,"Ananya: Hello Deb, this is Ananya from Velocity regarding Ambuja Utpaala. Deb: Hi, I was about to call you. Ananya: Great minds! What were you thinking? Deb: The price is still high. Can you match Merlin Avana's rate? Ananya: I understand. Let me see what best I can do. Are you flexible on floor preference? Deb: Not really. I want mid-floor east facing. Ananya: That's our premium inventory. But for serious buyers, I can check for a corporate discount. Deb: Please do. We're ready to close quickly. Ananya: Will revert by tomorrow 2 PM.","[{""speaker"": ""agent"", ""text"": ""Ananya: Hello Deb, this is Ananya from Velocity regarding Ambuja Utpaala."", ""start"": 0.0, ""end"": 6.12}, {""speaker"": ""client"", ""text"": ""Deb: Hi, I was about to call you."", ""start"": 7.81, ""end"": 10.14}, {""speaker"": ""agent"", ""text"": ""Ananya: Great minds! What were you thinking?"", ""start"": 11.05, ""end"": 13.53}, {""speaker"": ""client"", ""text"": ""Deb: The price is still high. Can you match Merlin Avana's rate?"", ""start"": 15.51, ""end"": 20.23}, {""speaker"": ""agent"", ""text"": ""Ananya: I understand. Let me see what best I can do. Are you flexible on floor preference?"", ""start"": 21.78, ""end"": 28.85}, {""speaker"": ""client"", ""text"": ""Deb: Not really. I want mid-floor east facing."", ""start"": 30.61, ""end"": 37.9}, {""speaker"": ""agent"", ""text"": ""Ananya: That's our premium inventory. But for serious buyers, I can check for a corporate discount."", ""start"": 39.49, ""end"": 47.34}, {""speaker"": ""client"", ""text"": ""Deb: Please do. We're ready to close quickly."", ""start"": 47.96, ""end"": 53.08}, {""speaker"": ""agent"", ""text"": ""Ananya: Will revert by tomorrow 2 PM."", ""start"": 54.5, ""end"": 57.41}]",0.91
|
||||
TRX-00144,CAL-00323,en-IN,"Vikram: Hi Prasenjit, following up on your enquiry for Godrej Blue. Prasenjit: Yes, tell me. Vikram: We have a new tower launch with pre-launch pricing. Are you still looking in New Town? Prasenjit: Yes, what's the price? Vikram: Starting at 6.3 Cr for 3 BHK. Possession by August 2026. Prasenjit: That's good. Send me the details on WhatsApp. Vikram: Done. When can you visit? Prasenjit: This weekend. Vikram: I'll block Saturday 11 AM for you.","[{""speaker"": ""agent"", ""text"": ""Vikram: Hi Prasenjit, following up on your enquiry for Godrej Blue."", ""start"": 0.0, ""end"": 4.82}, {""speaker"": ""client"", ""text"": ""Prasenjit: Yes, tell me."", ""start"": 5.34, ""end"": 8.8}, {""speaker"": ""agent"", ""text"": ""Vikram: We have a new tower launch with pre-launch pricing. Are you still looking in New Town?"", ""start"": 9.99, ""end"": 12.89}, {""speaker"": ""client"", ""text"": ""Prasenjit: Yes, what's the price?"", ""start"": 14.86, ""end"": 18.37}, {""speaker"": ""agent"", ""text"": ""Vikram: Starting at 6.3 Cr for 3 BHK. Possession by August 2026."", ""start"": 19.08, ""end"": 25.87}, {""speaker"": ""client"", ""text"": ""Prasenjit: That's good. Send me the details on WhatsApp."", ""start"": 27.09, ""end"": 34.75}, {""speaker"": ""agent"", ""text"": ""Vikram: Done. When can you visit?"", ""start"": 35.5, ""end"": 39.74}, {""speaker"": ""client"", ""text"": ""Prasenjit: This weekend."", ""start"": 40.26, ""end"": 44.22}, {""speaker"": ""agent"", ""text"": ""Vikram: I'll block Saturday 11 AM for you."", ""start"": 45.21, ""end"": 51.9}]",0.94
|
||||
TRX-00145,CAL-00324,en-IN,"Priya: Hi Prasenjit, following up on your enquiry for Godrej Blue. Prasenjit: Hi, I was about to call you. Priya: Great minds! What were you thinking? Prasenjit: The price is still high. Can you match DTC Sojon's rate? Priya: I understand. Let me see what best I can do. Are you flexible on floor preference? Prasenjit: Not really. I want mid-floor east facing. Priya: That's our premium inventory. But for serious buyers, I can check for a corporate discount. Prasenjit: Please do. We're ready to close quickly. Priya: Will revert by tomorrow 2 PM.","[{""speaker"": ""agent"", ""text"": ""Priya: Hi Prasenjit, following up on your enquiry for Godrej Blue."", ""start"": 0.0, ""end"": 6.14}, {""speaker"": ""client"", ""text"": ""Prasenjit: Hi, I was about to call you."", ""start"": 7.92, ""end"": 15.53}, {""speaker"": ""agent"", ""text"": ""Priya: Great minds! What were you thinking?"", ""start"": 16.85, ""end"": 23.08}, {""speaker"": ""client"", ""text"": ""Prasenjit: The price is still high. Can you match DTC Sojon's rate?"", ""start"": 24.56, ""end"": 28.9}, {""speaker"": ""agent"", ""text"": ""Priya: I understand. Let me see what best I can do. Are you flexible on floor preference?"", ""start"": 30.64, ""end"": 37.71}, {""speaker"": ""client"", ""text"": ""Prasenjit: Not really. I want mid-floor east facing."", ""start"": 39.35, ""end"": 42.97}, {""speaker"": ""agent"", ""text"": ""Priya: That's our premium inventory. But for serious buyers, I can check for a corporate discount."", ""start"": 43.9, ""end"": 51.47}, {""speaker"": ""client"", ""text"": ""Prasenjit: Please do. We're ready to close quickly."", ""start"": 52.2, ""end"": 59.99}, {""speaker"": ""agent"", ""text"": ""Priya: Will revert by tomorrow 2 PM."", ""start"": 61.47, ""end"": 68.46}]",0.93
|
||||
TRX-00146,CAL-00325,en-IN,"Priya: Hello Neha, this is Priya from Velocity regarding Siddha Suburbia Bungalow. Neha: Hi, I was about to call you. Priya: Great minds! What were you thinking? Neha: The price is still high. Can you match Atri Aqua's rate? Priya: I understand. Let me see what best I can do. Are you flexible on floor preference? Neha: Not really. I want mid-floor east facing. Priya: That's our premium inventory. But for serious buyers, I can check for a corporate discount. Neha: Please do. We're ready to close quickly. Priya: Will revert by tomorrow 2 PM.","[{""speaker"": ""agent"", ""text"": ""Priya: Hello Neha, this is Priya from Velocity regarding Siddha Suburbia Bungalow."", ""start"": 0.0, ""end"": 5.07}, {""speaker"": ""client"", ""text"": ""Neha: Hi, I was about to call you."", ""start"": 6.33, ""end"": 11.36}, {""speaker"": ""agent"", ""text"": ""Priya: Great minds! What were you thinking?"", ""start"": 12.25, ""end"": 19.25}, {""speaker"": ""client"", ""text"": ""Neha: The price is still high. Can you match Atri Aqua's rate?"", ""start"": 19.95, ""end"": 24.54}, {""speaker"": ""agent"", ""text"": ""Priya: I understand. Let me see what best I can do. Are you flexible on floor preference?"", ""start"": 26.23, ""end"": 29.5}, {""speaker"": ""client"", ""text"": ""Neha: Not really. I want mid-floor east facing."", ""start"": 30.84, ""end"": 37.13}, {""speaker"": ""agent"", ""text"": ""Priya: That's our premium inventory. But for serious buyers, I can check for a corporate discount."", ""start"": 37.74, ""end"": 41.57}, {""speaker"": ""client"", ""text"": ""Neha: Please do. We're ready to close quickly."", ""start"": 42.84, ""end"": 49.47}, {""speaker"": ""agent"", ""text"": ""Priya: Will revert by tomorrow 2 PM."", ""start"": 51.44, ""end"": 59.19}]",0.92
|
||||
TRX-00147,CAL-00326,en-IN,"Rahul: Hi Neha, following up on your enquiry for Siddha Suburbia Bungalow. Neha: Yes, tell me. Rahul: We have a new tower launch with pre-launch pricing. Are you still looking in Madanpur? Neha: Yes, what's the price? Rahul: Starting at 7.13 Cr for 3 BHK. Possession by July 2026. Neha: That's good. Send me the details on WhatsApp. Rahul: Done. When can you visit? Neha: This weekend. Rahul: I'll block Saturday 11 AM for you.","[{""speaker"": ""agent"", ""text"": ""Rahul: Hi Neha, following up on your enquiry for Siddha Suburbia Bungalow."", ""start"": 0.0, ""end"": 3.85}, {""speaker"": ""client"", ""text"": ""Neha: Yes, tell me."", ""start"": 5.41, ""end"": 10.56}, {""speaker"": ""agent"", ""text"": ""Rahul: We have a new tower launch with pre-launch pricing. Are you still looking in Madanpur?"", ""start"": 11.89, ""end"": 17.55}, {""speaker"": ""client"", ""text"": ""Neha: Yes, what's the price?"", ""start"": 18.3, ""end"": 21.0}, {""speaker"": ""agent"", ""text"": ""Rahul: Starting at 7.13 Cr for 3 BHK. Possession by July 2026."", ""start"": 22.02, ""end"": 24.55}, {""speaker"": ""client"", ""text"": ""Neha: That's good. Send me the details on WhatsApp."", ""start"": 26.39, ""end"": 29.74}, {""speaker"": ""agent"", ""text"": ""Rahul: Done. When can you visit?"", ""start"": 31.64, ""end"": 36.4}, {""speaker"": ""client"", ""text"": ""Neha: This weekend."", ""start"": 37.89, ""end"": 41.24}, {""speaker"": ""agent"", ""text"": ""Rahul: I'll block Saturday 11 AM for you."", ""start"": 43.04, ""end"": 48.95}]",0.91
|
||||
TRX-00148,CAL-00327,en-IN,"Vikram: Hello Meera, this is Vikram from Velocity regarding DTC Good Earth. Meera: Yes, tell me. Vikram: We have a new tower launch with pre-launch pricing. Are you still looking in New Town? Meera: Yes, what's the price? Vikram: Starting at 2.41 Cr for 3 BHK. Possession by July 2026. Meera: That's good. Send me the details on WhatsApp. Vikram: Done. When can you visit? Meera: This weekend. Vikram: I'll block Saturday 11 AM for you.","[{""speaker"": ""agent"", ""text"": ""Vikram: Hello Meera, this is Vikram from Velocity regarding DTC Good Earth."", ""start"": 0.0, ""end"": 5.8}, {""speaker"": ""client"", ""text"": ""Meera: Yes, tell me."", ""start"": 7.78, ""end"": 14.08}, {""speaker"": ""agent"", ""text"": ""Vikram: We have a new tower launch with pre-launch pricing. Are you still looking in New Town?"", ""start"": 15.67, ""end"": 19.39}, {""speaker"": ""client"", ""text"": ""Meera: Yes, what's the price?"", ""start"": 20.13, ""end"": 26.01}, {""speaker"": ""agent"", ""text"": ""Vikram: Starting at 2.41 Cr for 3 BHK. Possession by July 2026."", ""start"": 27.4, ""end"": 29.97}, {""speaker"": ""client"", ""text"": ""Meera: That's good. Send me the details on WhatsApp."", ""start"": 31.94, ""end"": 39.53}, {""speaker"": ""agent"", ""text"": ""Vikram: Done. When can you visit?"", ""start"": 40.04, ""end"": 42.71}, {""speaker"": ""client"", ""text"": ""Meera: This weekend."", ""start"": 43.94, ""end"": 46.66}, {""speaker"": ""agent"", ""text"": ""Vikram: I'll block Saturday 11 AM for you."", ""start"": 48.63, ""end"": 55.52}]",0.91
|
||||
TRX-00149,CAL-00328,en-IN,"Priya: Hello Meera, this is Priya from Velocity regarding DTC Good Earth. Meera: Hi, I was about to call you. Priya: Great minds! What were you thinking? Meera: The price is still high. Can you match Godrej Elevate's rate? Priya: I understand. Let me see what best I can do. Are you flexible on floor preference? Meera: Not really. I want mid-floor east facing. Priya: That's our premium inventory. But for serious buyers, I can check for a corporate discount. Meera: Please do. We're ready to close quickly. Priya: Will revert by tomorrow 2 PM.","[{""speaker"": ""agent"", ""text"": ""Priya: Hello Meera, this is Priya from Velocity regarding DTC Good Earth."", ""start"": 0.0, ""end"": 2.48}, {""speaker"": ""client"", ""text"": ""Meera: Hi, I was about to call you."", ""start"": 3.03, ""end"": 7.06}, {""speaker"": ""agent"", ""text"": ""Priya: Great minds! What were you thinking?"", ""start"": 7.99, ""end"": 11.5}, {""speaker"": ""client"", ""text"": ""Meera: The price is still high. Can you match Godrej Elevate's rate?"", ""start"": 13.18, ""end"": 18.0}, {""speaker"": ""agent"", ""text"": ""Priya: I understand. Let me see what best I can do. Are you flexible on floor preference?"", ""start"": 19.53, ""end"": 23.55}, {""speaker"": ""client"", ""text"": ""Meera: Not really. I want mid-floor east facing."", ""start"": 24.15, ""end"": 28.28}, {""speaker"": ""agent"", ""text"": ""Priya: That's our premium inventory. But for serious buyers, I can check for a corporate discount."", ""start"": 30.21, ""end"": 35.98}, {""speaker"": ""client"", ""text"": ""Meera: Please do. We're ready to close quickly."", ""start"": 37.83, ""end"": 41.93}, {""speaker"": ""agent"", ""text"": ""Priya: Will revert by tomorrow 2 PM."", ""start"": 43.13, ""end"": 45.94}]",0.84
|
||||
TRX-00150,CAL-00329,en-IN,"Rahul: Good morning Meera, wanted to share some updates about DTC Good Earth. Meera: Hi, I was about to call you. Rahul: Great minds! What were you thinking? Meera: The price is still high. Can you match DTC Sojon's rate? Rahul: I understand. Let me see what best I can do. Are you flexible on floor preference? Meera: Not really. I want mid-floor east facing. Rahul: That's our premium inventory. But for serious buyers, I can check for a corporate discount. Meera: Please do. We're ready to close quickly. Rahul: Will revert by tomorrow 2 PM.","[{""speaker"": ""agent"", ""text"": ""Rahul: Good morning Meera, wanted to share some updates about DTC Good Earth."", ""start"": 0.0, ""end"": 6.08}, {""speaker"": ""client"", ""text"": ""Meera: Hi, I was about to call you."", ""start"": 7.56, ""end"": 11.04}, {""speaker"": ""agent"", ""text"": ""Rahul: Great minds! What were you thinking?"", ""start"": 13.02, ""end"": 15.95}, {""speaker"": ""client"", ""text"": ""Meera: The price is still high. Can you match DTC Sojon's rate?"", ""start"": 17.15, ""end"": 24.46}, {""speaker"": ""agent"", ""text"": ""Rahul: I understand. Let me see what best I can do. Are you flexible on floor preference?"", ""start"": 25.73, ""end"": 29.8}, {""speaker"": ""client"", ""text"": ""Meera: Not really. I want mid-floor east facing."", ""start"": 30.8, ""end"": 35.97}, {""speaker"": ""agent"", ""text"": ""Rahul: That's our premium inventory. But for serious buyers, I can check for a corporate discount."", ""start"": 37.76, ""end"": 39.83}, {""speaker"": ""client"", ""text"": ""Meera: Please do. We're ready to close quickly."", ""start"": 40.6, ""end"": 45.85}, {""speaker"": ""agent"", ""text"": ""Rahul: Will revert by tomorrow 2 PM."", ""start"": 46.97, ""end"": 53.54}]",0.94
|
||||
TRX-00151,CAL-00330,en-IN,"Ananya: Hello Tanvi, this is Ananya from Velocity regarding Ambuja Utpaala. Tanvi: Yes, tell me. Ananya: We have a new tower launch with pre-launch pricing. Are you still looking in Tollygunge? Tanvi: Yes, what's the price? Ananya: Starting at 4.08 Cr for 3 BHK. Possession by August 2026. Tanvi: That's good. Send me the details on WhatsApp. Ananya: Done. When can you visit? Tanvi: This weekend. Ananya: I'll block Saturday 11 AM for you.","[{""speaker"": ""agent"", ""text"": ""Ananya: Hello Tanvi, this is Ananya from Velocity regarding Ambuja Utpaala."", ""start"": 0.0, ""end"": 5.23}, {""speaker"": ""client"", ""text"": ""Tanvi: Yes, tell me."", ""start"": 7.06, ""end"": 10.93}, {""speaker"": ""agent"", ""text"": ""Ananya: We have a new tower launch with pre-launch pricing. Are you still looking in Tollygunge?"", ""start"": 11.85, ""end"": 18.61}, {""speaker"": ""client"", ""text"": ""Tanvi: Yes, what's the price?"", ""start"": 19.74, ""end"": 22.13}, {""speaker"": ""agent"", ""text"": ""Ananya: Starting at 4.08 Cr for 3 BHK. Possession by August 2026."", ""start"": 22.77, ""end"": 28.33}, {""speaker"": ""client"", ""text"": ""Tanvi: That's good. Send me the details on WhatsApp."", ""start"": 29.43, ""end"": 31.55}, {""speaker"": ""agent"", ""text"": ""Ananya: Done. When can you visit?"", ""start"": 32.87, ""end"": 36.48}, {""speaker"": ""client"", ""text"": ""Tanvi: This weekend."", ""start"": 37.8, ""end"": 43.81}, {""speaker"": ""agent"", ""text"": ""Ananya: I'll block Saturday 11 AM for you."", ""start"": 45.02, ""end"": 49.45}]",0.82
|
||||
TRX-00152,CAL-00333,en-IN,"Vikram: Good morning Rohan, wanted to share some updates about Godrej Blue. Rohan: Yes, tell me. Vikram: We have a new tower launch with pre-launch pricing. Are you still looking in New Town? Rohan: Yes, what's the price? Vikram: Starting at 7.74 Cr for 3 BHK. Possession by July 2026. Rohan: That's good. Send me the details on WhatsApp. Vikram: Done. When can you visit? Rohan: This weekend. Vikram: I'll block Saturday 11 AM for you.","[{""speaker"": ""agent"", ""text"": ""Vikram: Good morning Rohan, wanted to share some updates about Godrej Blue."", ""start"": 0.0, ""end"": 4.88}, {""speaker"": ""client"", ""text"": ""Rohan: Yes, tell me."", ""start"": 5.5, ""end"": 10.16}, {""speaker"": ""agent"", ""text"": ""Vikram: We have a new tower launch with pre-launch pricing. Are you still looking in New Town?"", ""start"": 11.61, ""end"": 19.05}, {""speaker"": ""client"", ""text"": ""Rohan: Yes, what's the price?"", ""start"": 20.4, ""end"": 25.73}, {""speaker"": ""agent"", ""text"": ""Vikram: Starting at 7.74 Cr for 3 BHK. Possession by July 2026."", ""start"": 26.47, ""end"": 31.16}, {""speaker"": ""client"", ""text"": ""Rohan: That's good. Send me the details on WhatsApp."", ""start"": 33.09, ""end"": 37.18}, {""speaker"": ""agent"", ""text"": ""Vikram: Done. When can you visit?"", ""start"": 38.57, ""end"": 44.11}, {""speaker"": ""client"", ""text"": ""Rohan: This weekend."", ""start"": 45.7, ""end"": 47.96}, {""speaker"": ""agent"", ""text"": ""Vikram: I'll block Saturday 11 AM for you."", ""start"": 48.71, ""end"": 51.31}]",0.87
|
||||
TRX-00153,CAL-00334,en-IN,"Priya: Hello Rohan, this is Priya from Velocity regarding Godrej Blue. Rohan: Hi, I was about to call you. Priya: Great minds! What were you thinking? Rohan: The price is still high. Can you match Merlin Avana's rate? Priya: I understand. Let me see what best I can do. Are you flexible on floor preference? Rohan: Not really. I want mid-floor east facing. Priya: That's our premium inventory. But for serious buyers, I can check for a corporate discount. Rohan: Please do. We're ready to close quickly. Priya: Will revert by tomorrow 2 PM.","[{""speaker"": ""agent"", ""text"": ""Priya: Hello Rohan, this is Priya from Velocity regarding Godrej Blue."", ""start"": 0.0, ""end"": 6.22}, {""speaker"": ""client"", ""text"": ""Rohan: Hi, I was about to call you."", ""start"": 7.44, ""end"": 14.22}, {""speaker"": ""agent"", ""text"": ""Priya: Great minds! What were you thinking?"", ""start"": 15.41, ""end"": 23.26}, {""speaker"": ""client"", ""text"": ""Rohan: The price is still high. Can you match Merlin Avana's rate?"", ""start"": 24.04, ""end"": 29.88}, {""speaker"": ""agent"", ""text"": ""Priya: I understand. Let me see what best I can do. Are you flexible on floor preference?"", ""start"": 31.44, ""end"": 33.74}, {""speaker"": ""client"", ""text"": ""Rohan: Not really. I want mid-floor east facing."", ""start"": 34.78, ""end"": 39.25}, {""speaker"": ""agent"", ""text"": ""Priya: That's our premium inventory. But for serious buyers, I can check for a corporate discount."", ""start"": 40.58, ""end"": 45.0}, {""speaker"": ""client"", ""text"": ""Rohan: Please do. We're ready to close quickly."", ""start"": 46.57, ""end"": 53.57}, {""speaker"": ""agent"", ""text"": ""Priya: Will revert by tomorrow 2 PM."", ""start"": 54.63, ""end"": 58.26}]",0.89
|
||||
TRX-00154,CAL-00336,en-IN,"Ananya: Hello Sanjay, this is Ananya from Velocity regarding Godrej Elevate. Sanjay: Yes, tell me. Ananya: We have a new tower launch with pre-launch pricing. Are you still looking in Dum Dum? Sanjay: Yes, what's the price? Ananya: Starting at 3.6 Cr for 3 BHK. Possession by October 2026. Sanjay: That's good. Send me the details on WhatsApp. Ananya: Done. When can you visit? Sanjay: This weekend. Ananya: I'll block Saturday 11 AM for you.","[{""speaker"": ""agent"", ""text"": ""Ananya: Hello Sanjay, this is Ananya from Velocity regarding Godrej Elevate."", ""start"": 0.0, ""end"": 7.2}, {""speaker"": ""client"", ""text"": ""Sanjay: Yes, tell me."", ""start"": 7.93, ""end"": 15.21}, {""speaker"": ""agent"", ""text"": ""Ananya: We have a new tower launch with pre-launch pricing. Are you still looking in Dum Dum?"", ""start"": 16.61, ""end"": 24.27}, {""speaker"": ""client"", ""text"": ""Sanjay: Yes, what's the price?"", ""start"": 24.88, ""end"": 28.52}, {""speaker"": ""agent"", ""text"": ""Ananya: Starting at 3.6 Cr for 3 BHK. Possession by October 2026."", ""start"": 30.3, ""end"": 35.94}, {""speaker"": ""client"", ""text"": ""Sanjay: That's good. Send me the details on WhatsApp."", ""start"": 37.33, ""end"": 41.39}, {""speaker"": ""agent"", ""text"": ""Ananya: Done. When can you visit?"", ""start"": 42.47, ""end"": 47.38}, {""speaker"": ""client"", ""text"": ""Sanjay: This weekend."", ""start"": 49.29, ""end"": 56.94}, {""speaker"": ""agent"", ""text"": ""Ananya: I'll block Saturday 11 AM for you."", ""start"": 57.96, ""end"": 64.15}]",0.87
|
||||
TRX-00155,CAL-00339,en-IN,"Rahul: Hi Sanjay, following up on your enquiry for Godrej Elevate. Sanjay: Yes, tell me. Rahul: We have a new tower launch with pre-launch pricing. Are you still looking in Dum Dum? Sanjay: Yes, what's the price? Rahul: Starting at 5.14 Cr for 3 BHK. Possession by June 2026. Sanjay: That's good. Send me the details on WhatsApp. Rahul: Done. When can you visit? Sanjay: This weekend. Rahul: I'll block Saturday 11 AM for you.","[{""speaker"": ""agent"", ""text"": ""Rahul: Hi Sanjay, following up on your enquiry for Godrej Elevate."", ""start"": 0.0, ""end"": 5.5}, {""speaker"": ""client"", ""text"": ""Sanjay: Yes, tell me."", ""start"": 7.12, ""end"": 9.44}, {""speaker"": ""agent"", ""text"": ""Rahul: We have a new tower launch with pre-launch pricing. Are you still looking in Dum Dum?"", ""start"": 10.36, ""end"": 13.48}, {""speaker"": ""client"", ""text"": ""Sanjay: Yes, what's the price?"", ""start"": 14.06, ""end"": 18.12}, {""speaker"": ""agent"", ""text"": ""Rahul: Starting at 5.14 Cr for 3 BHK. Possession by June 2026."", ""start"": 18.85, ""end"": 24.46}, {""speaker"": ""client"", ""text"": ""Sanjay: That's good. Send me the details on WhatsApp."", ""start"": 25.34, ""end"": 30.19}, {""speaker"": ""agent"", ""text"": ""Rahul: Done. When can you visit?"", ""start"": 32.05, ""end"": 35.52}, {""speaker"": ""client"", ""text"": ""Sanjay: This weekend."", ""start"": 36.21, ""end"": 39.64}, {""speaker"": ""agent"", ""text"": ""Rahul: I'll block Saturday 11 AM for you."", ""start"": 40.96, ""end"": 44.33}]",0.95
|
||||
TRX-00156,CAL-00340,en-IN,"Priya: Good morning Rahul, wanted to share some updates about Atri Aqua. Rahul: Yes, tell me. Priya: We have a new tower launch with pre-launch pricing. Are you still looking in New Town? Rahul: Yes, what's the price? Priya: Starting at 7.27 Cr for 3 BHK. Possession by July 2026. Rahul: That's good. Send me the details on WhatsApp. Priya: Done. When can you visit? Rahul: This weekend. Priya: I'll block Saturday 11 AM for you.","[{""speaker"": ""agent"", ""text"": ""Priya: Good morning Rahul, wanted to share some updates about Atri Aqua."", ""start"": 0.0, ""end"": 3.63}, {""speaker"": ""client"", ""text"": ""Rahul: Yes, tell me."", ""start"": 5.23, ""end"": 10.96}, {""speaker"": ""agent"", ""text"": ""Priya: We have a new tower launch with pre-launch pricing. Are you still looking in New Town?"", ""start"": 12.78, ""end"": 18.87}, {""speaker"": ""client"", ""text"": ""Rahul: Yes, what's the price?"", ""start"": 20.52, ""end"": 28.48}, {""speaker"": ""agent"", ""text"": ""Priya: Starting at 7.27 Cr for 3 BHK. Possession by July 2026."", ""start"": 30.21, ""end"": 35.2}, {""speaker"": ""client"", ""text"": ""Rahul: That's good. Send me the details on WhatsApp."", ""start"": 36.27, ""end"": 41.55}, {""speaker"": ""agent"", ""text"": ""Priya: Done. When can you visit?"", ""start"": 42.38, ""end"": 45.84}, {""speaker"": ""client"", ""text"": ""Rahul: This weekend."", ""start"": 47.21, ""end"": 52.68}, {""speaker"": ""agent"", ""text"": ""Priya: I'll block Saturday 11 AM for you."", ""start"": 53.71, ""end"": 57.83}]",0.88
|
||||
TRX-00157,CAL-00343,en-IN,"Rahul: Good morning Rahul, wanted to share some updates about Atri Aqua. Rahul: Hi, I was about to call you. Rahul: Great minds! What were you thinking? Rahul: The price is still high. Can you match DTC Sojon's rate? Rahul: I understand. Let me see what best I can do. Are you flexible on floor preference? Rahul: Not really. I want mid-floor east facing. Rahul: That's our premium inventory. But for serious buyers, I can check for a corporate discount. Rahul: Please do. We're ready to close quickly. Rahul: Will revert by tomorrow 2 PM.","[{""speaker"": ""agent"", ""text"": ""Rahul: Good morning Rahul, wanted to share some updates about Atri Aqua."", ""start"": 0.0, ""end"": 3.51}, {""speaker"": ""client"", ""text"": ""Rahul: Hi, I was about to call you."", ""start"": 5.5, ""end"": 8.4}, {""speaker"": ""agent"", ""text"": ""Rahul: Great minds! What were you thinking?"", ""start"": 9.84, ""end"": 13.45}, {""speaker"": ""client"", ""text"": ""Rahul: The price is still high. Can you match DTC Sojon's rate?"", ""start"": 14.98, ""end"": 19.88}, {""speaker"": ""agent"", ""text"": ""Rahul: I understand. Let me see what best I can do. Are you flexible on floor preference?"", ""start"": 21.74, ""end"": 23.74}, {""speaker"": ""client"", ""text"": ""Rahul: Not really. I want mid-floor east facing."", ""start"": 24.35, ""end"": 28.73}, {""speaker"": ""agent"", ""text"": ""Rahul: That's our premium inventory. But for serious buyers, I can check for a corporate discount."", ""start"": 30.6, ""end"": 37.01}, {""speaker"": ""client"", ""text"": ""Rahul: Please do. We're ready to close quickly."", ""start"": 38.43, ""end"": 45.79}, {""speaker"": ""agent"", ""text"": ""Rahul: Will revert by tomorrow 2 PM."", ""start"": 46.42, ""end"": 52.39}]",0.83
|
||||
TRX-00158,CAL-00344,en-IN,"Priya: Hello Rahul, this is Priya from Velocity regarding Atri Aqua. Rahul: Yes, tell me. Priya: We have a new tower launch with pre-launch pricing. Are you still looking in New Town? Rahul: Yes, what's the price? Priya: Starting at 5.07 Cr for 3 BHK. Possession by June 2026. Rahul: That's good. Send me the details on WhatsApp. Priya: Done. When can you visit? Rahul: This weekend. Priya: I'll block Saturday 11 AM for you.","[{""speaker"": ""agent"", ""text"": ""Priya: Hello Rahul, this is Priya from Velocity regarding Atri Aqua."", ""start"": 0.0, ""end"": 5.81}, {""speaker"": ""client"", ""text"": ""Rahul: Yes, tell me."", ""start"": 7.1, ""end"": 15.04}, {""speaker"": ""agent"", ""text"": ""Priya: We have a new tower launch with pre-launch pricing. Are you still looking in New Town?"", ""start"": 16.94, ""end"": 19.35}, {""speaker"": ""client"", ""text"": ""Rahul: Yes, what's the price?"", ""start"": 20.96, ""end"": 24.57}, {""speaker"": ""agent"", ""text"": ""Priya: Starting at 5.07 Cr for 3 BHK. Possession by June 2026."", ""start"": 26.49, ""end"": 30.27}, {""speaker"": ""client"", ""text"": ""Rahul: That's good. Send me the details on WhatsApp."", ""start"": 31.61, ""end"": 36.55}, {""speaker"": ""agent"", ""text"": ""Priya: Done. When can you visit?"", ""start"": 37.37, ""end"": 44.39}, {""speaker"": ""client"", ""text"": ""Rahul: This weekend."", ""start"": 45.27, ""end"": 49.55}, {""speaker"": ""agent"", ""text"": ""Priya: I'll block Saturday 11 AM for you."", ""start"": 51.24, ""end"": 54.66}]",0.89
|
||||
TRX-00159,CAL-00345,en-IN,"Priya: Hello Rahul, this is Priya from Velocity regarding Atri Aqua. Rahul: Hi, I was about to call you. Priya: Great minds! What were you thinking? Rahul: The price is still high. Can you match Ambuja Utpaala's rate? Priya: I understand. Let me see what best I can do. Are you flexible on floor preference? Rahul: Not really. I want mid-floor east facing. Priya: That's our premium inventory. But for serious buyers, I can check for a corporate discount. Rahul: Please do. We're ready to close quickly. Priya: Will revert by tomorrow 2 PM.","[{""speaker"": ""agent"", ""text"": ""Priya: Hello Rahul, this is Priya from Velocity regarding Atri Aqua."", ""start"": 0.0, ""end"": 5.67}, {""speaker"": ""client"", ""text"": ""Rahul: Hi, I was about to call you."", ""start"": 6.99, ""end"": 9.0}, {""speaker"": ""agent"", ""text"": ""Priya: Great minds! What were you thinking?"", ""start"": 9.73, ""end"": 13.76}, {""speaker"": ""client"", ""text"": ""Rahul: The price is still high. Can you match Ambuja Utpaala's rate?"", ""start"": 14.93, ""end"": 20.62}, {""speaker"": ""agent"", ""text"": ""Priya: I understand. Let me see what best I can do. Are you flexible on floor preference?"", ""start"": 22.33, ""end"": 25.6}, {""speaker"": ""client"", ""text"": ""Rahul: Not really. I want mid-floor east facing."", ""start"": 26.31, ""end"": 33.23}, {""speaker"": ""agent"", ""text"": ""Priya: That's our premium inventory. But for serious buyers, I can check for a corporate discount."", ""start"": 34.68, ""end"": 38.77}, {""speaker"": ""client"", ""text"": ""Rahul: Please do. We're ready to close quickly."", ""start"": 39.52, ""end"": 47.26}, {""speaker"": ""agent"", ""text"": ""Priya: Will revert by tomorrow 2 PM."", ""start"": 48.79, ""end"": 56.23}]",0.92
|
||||
TRX-00160,CAL-00347,en-IN,"Ananya: Good morning Deb, wanted to share some updates about Godrej Blue. Deb: Yes, tell me. Ananya: We have a new tower launch with pre-launch pricing. Are you still looking in New Town? Deb: Yes, what's the price? Ananya: Starting at 4.12 Cr for 3 BHK. Possession by July 2026. Deb: That's good. Send me the details on WhatsApp. Ananya: Done. When can you visit? Deb: This weekend. Ananya: I'll block Saturday 11 AM for you.","[{""speaker"": ""agent"", ""text"": ""Ananya: Good morning Deb, wanted to share some updates about Godrej Blue."", ""start"": 0.0, ""end"": 5.34}, {""speaker"": ""client"", ""text"": ""Deb: Yes, tell me."", ""start"": 6.36, ""end"": 9.2}, {""speaker"": ""agent"", ""text"": ""Ananya: We have a new tower launch with pre-launch pricing. Are you still looking in New Town?"", ""start"": 10.42, ""end"": 14.44}, {""speaker"": ""client"", ""text"": ""Deb: Yes, what's the price?"", ""start"": 15.09, ""end"": 22.56}, {""speaker"": ""agent"", ""text"": ""Ananya: Starting at 4.12 Cr for 3 BHK. Possession by July 2026."", ""start"": 23.65, ""end"": 27.18}, {""speaker"": ""client"", ""text"": ""Deb: That's good. Send me the details on WhatsApp."", ""start"": 27.84, ""end"": 31.35}, {""speaker"": ""agent"", ""text"": ""Ananya: Done. When can you visit?"", ""start"": 33.23, ""end"": 36.32}, {""speaker"": ""client"", ""text"": ""Deb: This weekend."", ""start"": 37.98, ""end"": 42.39}, {""speaker"": ""agent"", ""text"": ""Ananya: I'll block Saturday 11 AM for you."", ""start"": 44.08, ""end"": 49.64}]",0.87
|
||||
TRX-00161,CAL-00349,en-IN,"Ananya: Good morning Deb, wanted to share some updates about Godrej Blue. Deb: Hi, I was about to call you. Ananya: Great minds! What were you thinking? Deb: The price is still high. Can you match Merlin Avana's rate? Ananya: I understand. Let me see what best I can do. Are you flexible on floor preference? Deb: Not really. I want mid-floor east facing. Ananya: That's our premium inventory. But for serious buyers, I can check for a corporate discount. Deb: Please do. We're ready to close quickly. Ananya: Will revert by tomorrow 2 PM.","[{""speaker"": ""agent"", ""text"": ""Ananya: Good morning Deb, wanted to share some updates about Godrej Blue."", ""start"": 0.0, ""end"": 3.5}, {""speaker"": ""client"", ""text"": ""Deb: Hi, I was about to call you."", ""start"": 4.27, ""end"": 10.9}, {""speaker"": ""agent"", ""text"": ""Ananya: Great minds! What were you thinking?"", ""start"": 11.7, ""end"": 17.52}, {""speaker"": ""client"", ""text"": ""Deb: The price is still high. Can you match Merlin Avana's rate?"", ""start"": 19.33, ""end"": 22.09}, {""speaker"": ""agent"", ""text"": ""Ananya: I understand. Let me see what best I can do. Are you flexible on floor preference?"", ""start"": 23.83, ""end"": 26.55}, {""speaker"": ""client"", ""text"": ""Deb: Not really. I want mid-floor east facing."", ""start"": 28.35, ""end"": 35.2}, {""speaker"": ""agent"", ""text"": ""Ananya: That's our premium inventory. But for serious buyers, I can check for a corporate discount."", ""start"": 36.16, ""end"": 40.03}, {""speaker"": ""client"", ""text"": ""Deb: Please do. We're ready to close quickly."", ""start"": 40.69, ""end"": 47.28}, {""speaker"": ""agent"", ""text"": ""Ananya: Will revert by tomorrow 2 PM."", ""start"": 48.77, ""end"": 54.81}]",0.85
|
||||
TRX-00162,CAL-00352,en-IN,"Rahul: Hi Abhishek, following up on your enquiry for Merlin Avana. Abhishek: Hi, I was about to call you. Rahul: Great minds! What were you thinking? Abhishek: The price is still high. Can you match DTC Sojon's rate? Rahul: I understand. Let me see what best I can do. Are you flexible on floor preference? Abhishek: Not really. I want mid-floor east facing. Rahul: That's our premium inventory. But for serious buyers, I can check for a corporate discount. Abhishek: Please do. We're ready to close quickly. Rahul: Will revert by tomorrow 2 PM.","[{""speaker"": ""agent"", ""text"": ""Rahul: Hi Abhishek, following up on your enquiry for Merlin Avana."", ""start"": 0.0, ""end"": 4.19}, {""speaker"": ""client"", ""text"": ""Abhishek: Hi, I was about to call you."", ""start"": 4.72, ""end"": 7.24}, {""speaker"": ""agent"", ""text"": ""Rahul: Great minds! What were you thinking?"", ""start"": 8.82, ""end"": 16.7}, {""speaker"": ""client"", ""text"": ""Abhishek: The price is still high. Can you match DTC Sojon's rate?"", ""start"": 18.52, ""end"": 22.3}, {""speaker"": ""agent"", ""text"": ""Rahul: I understand. Let me see what best I can do. Are you flexible on floor preference?"", ""start"": 23.44, ""end"": 26.39}, {""speaker"": ""client"", ""text"": ""Abhishek: Not really. I want mid-floor east facing."", ""start"": 26.95, ""end"": 32.64}, {""speaker"": ""agent"", ""text"": ""Rahul: That's our premium inventory. But for serious buyers, I can check for a corporate discount."", ""start"": 34.24, ""end"": 41.77}, {""speaker"": ""client"", ""text"": ""Abhishek: Please do. We're ready to close quickly."", ""start"": 42.39, ""end"": 47.23}, {""speaker"": ""agent"", ""text"": ""Rahul: Will revert by tomorrow 2 PM."", ""start"": 47.97, ""end"": 51.78}]",0.86
|
||||
TRX-00163,CAL-00354,en-IN,"Rahul: Hello Meera, this is Rahul from Velocity regarding DTC Sojon. Meera: Yes, tell me. Rahul: We have a new tower launch with pre-launch pricing. Are you still looking in Rajarhat? Meera: Yes, what's the price? Rahul: Starting at 6.0 Cr for 3 BHK. Possession by June 2026. Meera: That's good. Send me the details on WhatsApp. Rahul: Done. When can you visit? Meera: This weekend. Rahul: I'll block Saturday 11 AM for you.","[{""speaker"": ""agent"", ""text"": ""Rahul: Hello Meera, this is Rahul from Velocity regarding DTC Sojon."", ""start"": 0.0, ""end"": 7.2}, {""speaker"": ""client"", ""text"": ""Meera: Yes, tell me."", ""start"": 7.86, ""end"": 11.96}, {""speaker"": ""agent"", ""text"": ""Rahul: We have a new tower launch with pre-launch pricing. Are you still looking in Rajarhat?"", ""start"": 13.83, ""end"": 20.42}, {""speaker"": ""client"", ""text"": ""Meera: Yes, what's the price?"", ""start"": 22.41, ""end"": 25.62}, {""speaker"": ""agent"", ""text"": ""Rahul: Starting at 6.0 Cr for 3 BHK. Possession by June 2026."", ""start"": 27.33, ""end"": 30.42}, {""speaker"": ""client"", ""text"": ""Meera: That's good. Send me the details on WhatsApp."", ""start"": 31.44, ""end"": 38.04}, {""speaker"": ""agent"", ""text"": ""Rahul: Done. When can you visit?"", ""start"": 40.03, ""end"": 46.66}, {""speaker"": ""client"", ""text"": ""Meera: This weekend."", ""start"": 47.66, ""end"": 50.41}, {""speaker"": ""agent"", ""text"": ""Rahul: I'll block Saturday 11 AM for you."", ""start"": 52.14, ""end"": 54.47}]",0.89
|
||||
TRX-00164,CAL-00356,en-IN,"Rahul: Good morning Meera, wanted to share some updates about DTC Sojon. Meera: Yes, tell me. Rahul: We have a new tower launch with pre-launch pricing. Are you still looking in Rajarhat? Meera: Yes, what's the price? Rahul: Starting at 3.88 Cr for 3 BHK. Possession by August 2026. Meera: That's good. Send me the details on WhatsApp. Rahul: Done. When can you visit? Meera: This weekend. Rahul: I'll block Saturday 11 AM for you.","[{""speaker"": ""agent"", ""text"": ""Rahul: Good morning Meera, wanted to share some updates about DTC Sojon."", ""start"": 0.0, ""end"": 3.72}, {""speaker"": ""client"", ""text"": ""Meera: Yes, tell me."", ""start"": 4.93, ""end"": 12.28}, {""speaker"": ""agent"", ""text"": ""Rahul: We have a new tower launch with pre-launch pricing. Are you still looking in Rajarhat?"", ""start"": 14.17, ""end"": 16.44}, {""speaker"": ""client"", ""text"": ""Meera: Yes, what's the price?"", ""start"": 17.55, ""end"": 23.23}, {""speaker"": ""agent"", ""text"": ""Rahul: Starting at 3.88 Cr for 3 BHK. Possession by August 2026."", ""start"": 23.74, ""end"": 26.55}, {""speaker"": ""client"", ""text"": ""Meera: That's good. Send me the details on WhatsApp."", ""start"": 27.59, ""end"": 29.9}, {""speaker"": ""agent"", ""text"": ""Rahul: Done. When can you visit?"", ""start"": 31.14, ""end"": 37.91}, {""speaker"": ""client"", ""text"": ""Meera: This weekend."", ""start"": 39.88, ""end"": 44.07}, {""speaker"": ""agent"", ""text"": ""Rahul: I'll block Saturday 11 AM for you."", ""start"": 45.11, ""end"": 50.44}]",0.84
|
||||
TRX-00165,CAL-00360,en-IN,"Priya: Hello Meera, this is Priya from Velocity regarding DTC Sojon. Meera: Yes, tell me. Priya: We have a new tower launch with pre-launch pricing. Are you still looking in Rajarhat? Meera: Yes, what's the price? Priya: Starting at 7.03 Cr for 3 BHK. Possession by October 2026. Meera: That's good. Send me the details on WhatsApp. Priya: Done. When can you visit? Meera: This weekend. Priya: I'll block Saturday 11 AM for you.","[{""speaker"": ""agent"", ""text"": ""Priya: Hello Meera, this is Priya from Velocity regarding DTC Sojon."", ""start"": 0.0, ""end"": 3.18}, {""speaker"": ""client"", ""text"": ""Meera: Yes, tell me."", ""start"": 4.76, ""end"": 7.82}, {""speaker"": ""agent"", ""text"": ""Priya: We have a new tower launch with pre-launch pricing. Are you still looking in Rajarhat?"", ""start"": 8.57, ""end"": 11.43}, {""speaker"": ""client"", ""text"": ""Meera: Yes, what's the price?"", ""start"": 12.96, ""end"": 16.7}, {""speaker"": ""agent"", ""text"": ""Priya: Starting at 7.03 Cr for 3 BHK. Possession by October 2026."", ""start"": 18.68, ""end"": 24.81}, {""speaker"": ""client"", ""text"": ""Meera: That's good. Send me the details on WhatsApp."", ""start"": 26.81, ""end"": 30.84}, {""speaker"": ""agent"", ""text"": ""Priya: Done. When can you visit?"", ""start"": 31.58, ""end"": 38.44}, {""speaker"": ""client"", ""text"": ""Meera: This weekend."", ""start"": 39.53, ""end"": 46.47}, {""speaker"": ""agent"", ""text"": ""Priya: I'll block Saturday 11 AM for you."", ""start"": 47.82, ""end"": 53.69}]",0.88
|
||||
TRX-00166,CAL-00361,en-IN,"Vikram: Hi Meera, following up on your enquiry for DTC Sojon. Meera: Hi, I was about to call you. Vikram: Great minds! What were you thinking? Meera: The price is still high. Can you match Shriram Grand City's rate? Vikram: I understand. Let me see what best I can do. Are you flexible on floor preference? Meera: Not really. I want mid-floor east facing. Vikram: That's our premium inventory. But for serious buyers, I can check for a corporate discount. Meera: Please do. We're ready to close quickly. Vikram: Will revert by tomorrow 2 PM.","[{""speaker"": ""agent"", ""text"": ""Vikram: Hi Meera, following up on your enquiry for DTC Sojon."", ""start"": 0.0, ""end"": 6.52}, {""speaker"": ""client"", ""text"": ""Meera: Hi, I was about to call you."", ""start"": 7.27, ""end"": 10.77}, {""speaker"": ""agent"", ""text"": ""Vikram: Great minds! What were you thinking?"", ""start"": 11.82, ""end"": 14.07}, {""speaker"": ""client"", ""text"": ""Meera: The price is still high. Can you match Shriram Grand City's rate?"", ""start"": 15.52, ""end"": 22.55}, {""speaker"": ""agent"", ""text"": ""Vikram: I understand. Let me see what best I can do. Are you flexible on floor preference?"", ""start"": 23.74, ""end"": 25.75}, {""speaker"": ""client"", ""text"": ""Meera: Not really. I want mid-floor east facing."", ""start"": 26.51, ""end"": 30.72}, {""speaker"": ""agent"", ""text"": ""Vikram: That's our premium inventory. But for serious buyers, I can check for a corporate discount."", ""start"": 32.42, ""end"": 35.04}, {""speaker"": ""client"", ""text"": ""Meera: Please do. We're ready to close quickly."", ""start"": 35.71, ""end"": 42.95}, {""speaker"": ""agent"", ""text"": ""Vikram: Will revert by tomorrow 2 PM."", ""start"": 43.99, ""end"": 51.86}]",0.91
|
||||
TRX-00167,CAL-00362,en-IN,"Vikram: Hello Raj, this is Vikram from Velocity regarding Siddha Suburbia Bungalow. Raj: Hi, I was about to call you. Vikram: Great minds! What were you thinking? Raj: The price is still high. Can you match Siddha Serena's rate? Vikram: I understand. Let me see what best I can do. Are you flexible on floor preference? Raj: Not really. I want mid-floor east facing. Vikram: That's our premium inventory. But for serious buyers, I can check for a corporate discount. Raj: Please do. We're ready to close quickly. Vikram: Will revert by tomorrow 2 PM.","[{""speaker"": ""agent"", ""text"": ""Vikram: Hello Raj, this is Vikram from Velocity regarding Siddha Suburbia Bungalow."", ""start"": 0.0, ""end"": 2.7}, {""speaker"": ""client"", ""text"": ""Raj: Hi, I was about to call you."", ""start"": 4.57, ""end"": 9.39}, {""speaker"": ""agent"", ""text"": ""Vikram: Great minds! What were you thinking?"", ""start"": 10.04, ""end"": 13.19}, {""speaker"": ""client"", ""text"": ""Raj: The price is still high. Can you match Siddha Serena's rate?"", ""start"": 13.86, ""end"": 21.64}, {""speaker"": ""agent"", ""text"": ""Vikram: I understand. Let me see what best I can do. Are you flexible on floor preference?"", ""start"": 22.16, ""end"": 25.28}, {""speaker"": ""client"", ""text"": ""Raj: Not really. I want mid-floor east facing."", ""start"": 26.25, ""end"": 28.47}, {""speaker"": ""agent"", ""text"": ""Vikram: That's our premium inventory. But for serious buyers, I can check for a corporate discount."", ""start"": 29.27, ""end"": 31.31}, {""speaker"": ""client"", ""text"": ""Raj: Please do. We're ready to close quickly."", ""start"": 32.03, ""end"": 39.96}, {""speaker"": ""agent"", ""text"": ""Vikram: Will revert by tomorrow 2 PM."", ""start"": 40.94, ""end"": 48.5}]",0.88
|
||||
TRX-00168,CAL-00364,en-IN,"Vikram: Hi Kunal, following up on your enquiry for Shriram Grand City. Kunal: Hi, I was about to call you. Vikram: Great minds! What were you thinking? Kunal: The price is still high. Can you match Atri Aqua's rate? Vikram: I understand. Let me see what best I can do. Are you flexible on floor preference? Kunal: Not really. I want mid-floor east facing. Vikram: That's our premium inventory. But for serious buyers, I can check for a corporate discount. Kunal: Please do. We're ready to close quickly. Vikram: Will revert by tomorrow 2 PM.","[{""speaker"": ""agent"", ""text"": ""Vikram: Hi Kunal, following up on your enquiry for Shriram Grand City."", ""start"": 0.0, ""end"": 3.2}, {""speaker"": ""client"", ""text"": ""Kunal: Hi, I was about to call you."", ""start"": 4.44, ""end"": 9.39}, {""speaker"": ""agent"", ""text"": ""Vikram: Great minds! What were you thinking?"", ""start"": 11.25, ""end"": 13.39}, {""speaker"": ""client"", ""text"": ""Kunal: The price is still high. Can you match Atri Aqua's rate?"", ""start"": 15.09, ""end"": 17.37}, {""speaker"": ""agent"", ""text"": ""Vikram: I understand. Let me see what best I can do. Are you flexible on floor preference?"", ""start"": 18.17, ""end"": 24.07}, {""speaker"": ""client"", ""text"": ""Kunal: Not really. I want mid-floor east facing."", ""start"": 25.77, ""end"": 30.45}, {""speaker"": ""agent"", ""text"": ""Vikram: That's our premium inventory. But for serious buyers, I can check for a corporate discount."", ""start"": 31.45, ""end"": 34.59}, {""speaker"": ""client"", ""text"": ""Kunal: Please do. We're ready to close quickly."", ""start"": 36.22, ""end"": 42.01}, {""speaker"": ""agent"", ""text"": ""Vikram: Will revert by tomorrow 2 PM."", ""start"": 43.74, ""end"": 48.09}]",0.85
|
||||
TRX-00169,CAL-00365,en-IN,"Ananya: Good morning Kunal, wanted to share some updates about Shriram Grand City. Kunal: Yes, tell me. Ananya: We have a new tower launch with pre-launch pricing. Are you still looking in Howrah? Kunal: Yes, what's the price? Ananya: Starting at 1.94 Cr for 3 BHK. Possession by October 2026. Kunal: That's good. Send me the details on WhatsApp. Ananya: Done. When can you visit? Kunal: This weekend. Ananya: I'll block Saturday 11 AM for you.","[{""speaker"": ""agent"", ""text"": ""Ananya: Good morning Kunal, wanted to share some updates about Shriram Grand City."", ""start"": 0.0, ""end"": 6.77}, {""speaker"": ""client"", ""text"": ""Kunal: Yes, tell me."", ""start"": 8.3, ""end"": 11.76}, {""speaker"": ""agent"", ""text"": ""Ananya: We have a new tower launch with pre-launch pricing. Are you still looking in Howrah?"", ""start"": 12.71, ""end"": 15.68}, {""speaker"": ""client"", ""text"": ""Kunal: Yes, what's the price?"", ""start"": 16.86, ""end"": 20.07}, {""speaker"": ""agent"", ""text"": ""Ananya: Starting at 1.94 Cr for 3 BHK. Possession by October 2026."", ""start"": 21.72, ""end"": 23.89}, {""speaker"": ""client"", ""text"": ""Kunal: That's good. Send me the details on WhatsApp."", ""start"": 25.13, ""end"": 29.4}, {""speaker"": ""agent"", ""text"": ""Ananya: Done. When can you visit?"", ""start"": 29.94, ""end"": 35.47}, {""speaker"": ""client"", ""text"": ""Kunal: This weekend."", ""start"": 36.46, ""end"": 43.89}, {""speaker"": ""agent"", ""text"": ""Ananya: I'll block Saturday 11 AM for you."", ""start"": 45.4, ""end"": 52.38}]",0.85
|
||||
TRX-00170,CAL-00366,en-IN,"Vikram: Hi Kunal, following up on your enquiry for Shriram Grand City. Kunal: Yes, tell me. Vikram: We have a new tower launch with pre-launch pricing. Are you still looking in Howrah? Kunal: Yes, what's the price? Vikram: Starting at 2.66 Cr for 3 BHK. Possession by August 2026. Kunal: That's good. Send me the details on WhatsApp. Vikram: Done. When can you visit? Kunal: This weekend. Vikram: I'll block Saturday 11 AM for you.","[{""speaker"": ""agent"", ""text"": ""Vikram: Hi Kunal, following up on your enquiry for Shriram Grand City."", ""start"": 0.0, ""end"": 4.71}, {""speaker"": ""client"", ""text"": ""Kunal: Yes, tell me."", ""start"": 6.2, ""end"": 12.08}, {""speaker"": ""agent"", ""text"": ""Vikram: We have a new tower launch with pre-launch pricing. Are you still looking in Howrah?"", ""start"": 12.83, ""end"": 19.46}, {""speaker"": ""client"", ""text"": ""Kunal: Yes, what's the price?"", ""start"": 21.4, ""end"": 25.66}, {""speaker"": ""agent"", ""text"": ""Vikram: Starting at 2.66 Cr for 3 BHK. Possession by August 2026."", ""start"": 26.7, ""end"": 30.22}, {""speaker"": ""client"", ""text"": ""Kunal: That's good. Send me the details on WhatsApp."", ""start"": 31.73, ""end"": 35.56}, {""speaker"": ""agent"", ""text"": ""Vikram: Done. When can you visit?"", ""start"": 37.01, ""end"": 42.64}, {""speaker"": ""client"", ""text"": ""Kunal: This weekend."", ""start"": 43.68, ""end"": 49.62}, {""speaker"": ""agent"", ""text"": ""Vikram: I'll block Saturday 11 AM for you."", ""start"": 51.06, ""end"": 58.2}]",0.82
|
||||
TRX-00171,CAL-00369,en-IN,"Ananya: Good morning Shreya, wanted to share some updates about Atri Aqua. Shreya: Hi, I was about to call you. Ananya: Great minds! What were you thinking? Shreya: The price is still high. Can you match Siddha Suburbia Bungalow's rate? Ananya: I understand. Let me see what best I can do. Are you flexible on floor preference? Shreya: Not really. I want mid-floor east facing. Ananya: That's our premium inventory. But for serious buyers, I can check for a corporate discount. Shreya: Please do. We're ready to close quickly. Ananya: Will revert by tomorrow 2 PM.","[{""speaker"": ""agent"", ""text"": ""Ananya: Good morning Shreya, wanted to share some updates about Atri Aqua."", ""start"": 0.0, ""end"": 6.96}, {""speaker"": ""client"", ""text"": ""Shreya: Hi, I was about to call you."", ""start"": 7.64, ""end"": 15.05}, {""speaker"": ""agent"", ""text"": ""Ananya: Great minds! What were you thinking?"", ""start"": 15.99, ""end"": 20.39}, {""speaker"": ""client"", ""text"": ""Shreya: The price is still high. Can you match Siddha Suburbia Bungalow's rate?"", ""start"": 21.34, ""end"": 29.1}, {""speaker"": ""agent"", ""text"": ""Ananya: I understand. Let me see what best I can do. Are you flexible on floor preference?"", ""start"": 29.97, ""end"": 36.32}, {""speaker"": ""client"", ""text"": ""Shreya: Not really. I want mid-floor east facing."", ""start"": 37.08, ""end"": 40.04}, {""speaker"": ""agent"", ""text"": ""Ananya: That's our premium inventory. But for serious buyers, I can check for a corporate discount."", ""start"": 41.97, ""end"": 48.58}, {""speaker"": ""client"", ""text"": ""Shreya: Please do. We're ready to close quickly."", ""start"": 49.97, ""end"": 55.61}, {""speaker"": ""agent"", ""text"": ""Ananya: Will revert by tomorrow 2 PM."", ""start"": 57.38, ""end"": 62.21}]",0.92
|
||||
TRX-00172,CAL-00370,en-IN,"Vikram: Hello Shreya, this is Vikram from Velocity regarding Atri Aqua. Shreya: Hi, I was about to call you. Vikram: Great minds! What were you thinking? Shreya: The price is still high. Can you match Merlin Avana's rate? Vikram: I understand. Let me see what best I can do. Are you flexible on floor preference? Shreya: Not really. I want mid-floor east facing. Vikram: That's our premium inventory. But for serious buyers, I can check for a corporate discount. Shreya: Please do. We're ready to close quickly. Vikram: Will revert by tomorrow 2 PM.","[{""speaker"": ""agent"", ""text"": ""Vikram: Hello Shreya, this is Vikram from Velocity regarding Atri Aqua."", ""start"": 0.0, ""end"": 7.49}, {""speaker"": ""client"", ""text"": ""Shreya: Hi, I was about to call you."", ""start"": 8.28, ""end"": 13.34}, {""speaker"": ""agent"", ""text"": ""Vikram: Great minds! What were you thinking?"", ""start"": 14.87, ""end"": 19.87}, {""speaker"": ""client"", ""text"": ""Shreya: The price is still high. Can you match Merlin Avana's rate?"", ""start"": 20.72, ""end"": 28.62}, {""speaker"": ""agent"", ""text"": ""Vikram: I understand. Let me see what best I can do. Are you flexible on floor preference?"", ""start"": 29.59, ""end"": 36.85}, {""speaker"": ""client"", ""text"": ""Shreya: Not really. I want mid-floor east facing."", ""start"": 37.39, ""end"": 40.19}, {""speaker"": ""agent"", ""text"": ""Vikram: That's our premium inventory. But for serious buyers, I can check for a corporate discount."", ""start"": 41.31, ""end"": 44.14}, {""speaker"": ""client"", ""text"": ""Shreya: Please do. We're ready to close quickly."", ""start"": 44.68, ""end"": 48.33}, {""speaker"": ""agent"", ""text"": ""Vikram: Will revert by tomorrow 2 PM."", ""start"": 50.13, ""end"": 55.79}]",0.83
|
||||
TRX-00173,CAL-00373,en-IN,"Vikram: Hello Asha, this is Vikram from Velocity regarding Siddha Suburbia Bungalow. Asha: Hi, I was about to call you. Vikram: Great minds! What were you thinking? Asha: The price is still high. Can you match Sugam Prakriti's rate? Vikram: I understand. Let me see what best I can do. Are you flexible on floor preference? Asha: Not really. I want mid-floor east facing. Vikram: That's our premium inventory. But for serious buyers, I can check for a corporate discount. Asha: Please do. We're ready to close quickly. Vikram: Will revert by tomorrow 2 PM.","[{""speaker"": ""agent"", ""text"": ""Vikram: Hello Asha, this is Vikram from Velocity regarding Siddha Suburbia Bungalow."", ""start"": 0.0, ""end"": 6.54}, {""speaker"": ""client"", ""text"": ""Asha: Hi, I was about to call you."", ""start"": 8.05, ""end"": 15.52}, {""speaker"": ""agent"", ""text"": ""Vikram: Great minds! What were you thinking?"", ""start"": 16.87, ""end"": 22.63}, {""speaker"": ""client"", ""text"": ""Asha: The price is still high. Can you match Sugam Prakriti's rate?"", ""start"": 23.48, ""end"": 29.64}, {""speaker"": ""agent"", ""text"": ""Vikram: I understand. Let me see what best I can do. Are you flexible on floor preference?"", ""start"": 31.36, ""end"": 33.52}, {""speaker"": ""client"", ""text"": ""Asha: Not really. I want mid-floor east facing."", ""start"": 35.32, ""end"": 43.22}, {""speaker"": ""agent"", ""text"": ""Vikram: That's our premium inventory. But for serious buyers, I can check for a corporate discount."", ""start"": 45.09, ""end"": 50.27}, {""speaker"": ""client"", ""text"": ""Asha: Please do. We're ready to close quickly."", ""start"": 51.85, ""end"": 55.41}, {""speaker"": ""agent"", ""text"": ""Vikram: Will revert by tomorrow 2 PM."", ""start"": 56.79, ""end"": 62.85}]",0.96
|
||||
TRX-00174,CAL-00374,en-IN,"Vikram: Hello Asha, this is Vikram from Velocity regarding Siddha Suburbia Bungalow. Asha: Hi, I was about to call you. Vikram: Great minds! What were you thinking? Asha: The price is still high. Can you match Atri Surya Toron's rate? Vikram: I understand. Let me see what best I can do. Are you flexible on floor preference? Asha: Not really. I want mid-floor east facing. Vikram: That's our premium inventory. But for serious buyers, I can check for a corporate discount. Asha: Please do. We're ready to close quickly. Vikram: Will revert by tomorrow 2 PM.","[{""speaker"": ""agent"", ""text"": ""Vikram: Hello Asha, this is Vikram from Velocity regarding Siddha Suburbia Bungalow."", ""start"": 0.0, ""end"": 4.59}, {""speaker"": ""client"", ""text"": ""Asha: Hi, I was about to call you."", ""start"": 5.5, ""end"": 13.26}, {""speaker"": ""agent"", ""text"": ""Vikram: Great minds! What were you thinking?"", ""start"": 14.91, ""end"": 19.58}, {""speaker"": ""client"", ""text"": ""Asha: The price is still high. Can you match Atri Surya Toron's rate?"", ""start"": 20.17, ""end"": 26.14}, {""speaker"": ""agent"", ""text"": ""Vikram: I understand. Let me see what best I can do. Are you flexible on floor preference?"", ""start"": 26.82, ""end"": 31.8}, {""speaker"": ""client"", ""text"": ""Asha: Not really. I want mid-floor east facing."", ""start"": 32.95, ""end"": 38.04}, {""speaker"": ""agent"", ""text"": ""Vikram: That's our premium inventory. But for serious buyers, I can check for a corporate discount."", ""start"": 38.89, ""end"": 44.48}, {""speaker"": ""client"", ""text"": ""Asha: Please do. We're ready to close quickly."", ""start"": 46.11, ""end"": 50.57}, {""speaker"": ""agent"", ""text"": ""Vikram: Will revert by tomorrow 2 PM."", ""start"": 51.19, ""end"": 55.67}]",0.86
|
||||
TRX-00175,CAL-00376,en-IN,"Rahul: Good morning Nilesh, wanted to share some updates about Eden Devprayag. Nilesh: Hi, I was about to call you. Rahul: Great minds! What were you thinking? Nilesh: The price is still high. Can you match Ambuja Utpaala's rate? Rahul: I understand. Let me see what best I can do. Are you flexible on floor preference? Nilesh: Not really. I want mid-floor east facing. Rahul: That's our premium inventory. But for serious buyers, I can check for a corporate discount. Nilesh: Please do. We're ready to close quickly. Rahul: Will revert by tomorrow 2 PM.","[{""speaker"": ""agent"", ""text"": ""Rahul: Good morning Nilesh, wanted to share some updates about Eden Devprayag."", ""start"": 0.0, ""end"": 6.65}, {""speaker"": ""client"", ""text"": ""Nilesh: Hi, I was about to call you."", ""start"": 8.13, ""end"": 10.33}, {""speaker"": ""agent"", ""text"": ""Rahul: Great minds! What were you thinking?"", ""start"": 11.76, ""end"": 14.43}, {""speaker"": ""client"", ""text"": ""Nilesh: The price is still high. Can you match Ambuja Utpaala's rate?"", ""start"": 16.41, ""end"": 23.59}, {""speaker"": ""agent"", ""text"": ""Rahul: I understand. Let me see what best I can do. Are you flexible on floor preference?"", ""start"": 24.3, ""end"": 26.66}, {""speaker"": ""client"", ""text"": ""Nilesh: Not really. I want mid-floor east facing."", ""start"": 27.37, ""end"": 29.46}, {""speaker"": ""agent"", ""text"": ""Rahul: That's our premium inventory. But for serious buyers, I can check for a corporate discount."", ""start"": 30.13, ""end"": 37.13}, {""speaker"": ""client"", ""text"": ""Nilesh: Please do. We're ready to close quickly."", ""start"": 37.91, ""end"": 42.78}, {""speaker"": ""agent"", ""text"": ""Rahul: Will revert by tomorrow 2 PM."", ""start"": 44.29, ""end"": 48.31}]",0.84
|
||||
TRX-00176,CAL-00377,en-IN,"Vikram: Good morning Nilesh, wanted to share some updates about Eden Devprayag. Nilesh: Yes, tell me. Vikram: We have a new tower launch with pre-launch pricing. Are you still looking in Rajarhat? Nilesh: Yes, what's the price? Vikram: Starting at 6.75 Cr for 3 BHK. Possession by July 2026. Nilesh: That's good. Send me the details on WhatsApp. Vikram: Done. When can you visit? Nilesh: This weekend. Vikram: I'll block Saturday 11 AM for you.","[{""speaker"": ""agent"", ""text"": ""Vikram: Good morning Nilesh, wanted to share some updates about Eden Devprayag."", ""start"": 0.0, ""end"": 2.86}, {""speaker"": ""client"", ""text"": ""Nilesh: Yes, tell me."", ""start"": 4.63, ""end"": 12.47}, {""speaker"": ""agent"", ""text"": ""Vikram: We have a new tower launch with pre-launch pricing. Are you still looking in Rajarhat?"", ""start"": 14.07, ""end"": 21.66}, {""speaker"": ""client"", ""text"": ""Nilesh: Yes, what's the price?"", ""start"": 23.24, ""end"": 26.51}, {""speaker"": ""agent"", ""text"": ""Vikram: Starting at 6.75 Cr for 3 BHK. Possession by July 2026."", ""start"": 27.83, ""end"": 30.5}, {""speaker"": ""client"", ""text"": ""Nilesh: That's good. Send me the details on WhatsApp."", ""start"": 32.35, ""end"": 38.78}, {""speaker"": ""agent"", ""text"": ""Vikram: Done. When can you visit?"", ""start"": 40.21, ""end"": 44.06}, {""speaker"": ""client"", ""text"": ""Nilesh: This weekend."", ""start"": 45.87, ""end"": 48.56}, {""speaker"": ""agent"", ""text"": ""Vikram: I'll block Saturday 11 AM for you."", ""start"": 49.96, ""end"": 53.95}]",0.84
|
||||
TRX-00177,CAL-00379,en-IN,"Rahul: Hi Nilesh, following up on your enquiry for Eden Devprayag. Nilesh: Hi, I was about to call you. Rahul: Great minds! What were you thinking? Nilesh: The price is still high. Can you match DTC Sojon's rate? Rahul: I understand. Let me see what best I can do. Are you flexible on floor preference? Nilesh: Not really. I want mid-floor east facing. Rahul: That's our premium inventory. But for serious buyers, I can check for a corporate discount. Nilesh: Please do. We're ready to close quickly. Rahul: Will revert by tomorrow 2 PM.","[{""speaker"": ""agent"", ""text"": ""Rahul: Hi Nilesh, following up on your enquiry for Eden Devprayag."", ""start"": 0.0, ""end"": 7.99}, {""speaker"": ""client"", ""text"": ""Nilesh: Hi, I was about to call you."", ""start"": 9.18, ""end"": 13.62}, {""speaker"": ""agent"", ""text"": ""Rahul: Great minds! What were you thinking?"", ""start"": 14.91, ""end"": 20.78}, {""speaker"": ""client"", ""text"": ""Nilesh: The price is still high. Can you match DTC Sojon's rate?"", ""start"": 21.72, ""end"": 26.23}, {""speaker"": ""agent"", ""text"": ""Rahul: I understand. Let me see what best I can do. Are you flexible on floor preference?"", ""start"": 28.19, ""end"": 30.94}, {""speaker"": ""client"", ""text"": ""Nilesh: Not really. I want mid-floor east facing."", ""start"": 32.78, ""end"": 38.59}, {""speaker"": ""agent"", ""text"": ""Rahul: That's our premium inventory. But for serious buyers, I can check for a corporate discount."", ""start"": 39.24, ""end"": 41.87}, {""speaker"": ""client"", ""text"": ""Nilesh: Please do. We're ready to close quickly."", ""start"": 42.99, ""end"": 49.91}, {""speaker"": ""agent"", ""text"": ""Rahul: Will revert by tomorrow 2 PM."", ""start"": 51.59, ""end"": 55.7}]",0.9
|
||||
TRX-00178,CAL-00381,en-IN,"Priya: Hi Nilesh, following up on your enquiry for Atri Surya Toron. Nilesh: Hi, I was about to call you. Priya: Great minds! What were you thinking? Nilesh: The price is still high. Can you match Godrej Elevate's rate? Priya: I understand. Let me see what best I can do. Are you flexible on floor preference? Nilesh: Not really. I want mid-floor east facing. Priya: That's our premium inventory. But for serious buyers, I can check for a corporate discount. Nilesh: Please do. We're ready to close quickly. Priya: Will revert by tomorrow 2 PM.","[{""speaker"": ""agent"", ""text"": ""Priya: Hi Nilesh, following up on your enquiry for Atri Surya Toron."", ""start"": 0.0, ""end"": 6.77}, {""speaker"": ""client"", ""text"": ""Nilesh: Hi, I was about to call you."", ""start"": 8.48, ""end"": 11.6}, {""speaker"": ""agent"", ""text"": ""Priya: Great minds! What were you thinking?"", ""start"": 12.52, ""end"": 16.02}, {""speaker"": ""client"", ""text"": ""Nilesh: The price is still high. Can you match Godrej Elevate's rate?"", ""start"": 16.57, ""end"": 19.59}, {""speaker"": ""agent"", ""text"": ""Priya: I understand. Let me see what best I can do. Are you flexible on floor preference?"", ""start"": 20.24, ""end"": 26.03}, {""speaker"": ""client"", ""text"": ""Nilesh: Not really. I want mid-floor east facing."", ""start"": 26.73, ""end"": 32.25}, {""speaker"": ""agent"", ""text"": ""Priya: That's our premium inventory. But for serious buyers, I can check for a corporate discount."", ""start"": 33.46, ""end"": 39.48}, {""speaker"": ""client"", ""text"": ""Nilesh: Please do. We're ready to close quickly."", ""start"": 40.09, ""end"": 46.64}, {""speaker"": ""agent"", ""text"": ""Priya: Will revert by tomorrow 2 PM."", ""start"": 47.61, ""end"": 50.5}]",0.88
|
||||
TRX-00179,CAL-00382,en-IN,"Ananya: Hi Nilesh, following up on your enquiry for Atri Surya Toron. Nilesh: Hi, I was about to call you. Ananya: Great minds! What were you thinking? Nilesh: The price is still high. Can you match Siddha Sky Waterfront's rate? Ananya: I understand. Let me see what best I can do. Are you flexible on floor preference? Nilesh: Not really. I want mid-floor east facing. Ananya: That's our premium inventory. But for serious buyers, I can check for a corporate discount. Nilesh: Please do. We're ready to close quickly. Ananya: Will revert by tomorrow 2 PM.","[{""speaker"": ""agent"", ""text"": ""Ananya: Hi Nilesh, following up on your enquiry for Atri Surya Toron."", ""start"": 0.0, ""end"": 4.94}, {""speaker"": ""client"", ""text"": ""Nilesh: Hi, I was about to call you."", ""start"": 6.0, ""end"": 9.55}, {""speaker"": ""agent"", ""text"": ""Ananya: Great minds! What were you thinking?"", ""start"": 11.42, ""end"": 19.28}, {""speaker"": ""client"", ""text"": ""Nilesh: The price is still high. Can you match Siddha Sky Waterfront's rate?"", ""start"": 21.1, ""end"": 26.61}, {""speaker"": ""agent"", ""text"": ""Ananya: I understand. Let me see what best I can do. Are you flexible on floor preference?"", ""start"": 27.43, ""end"": 32.52}, {""speaker"": ""client"", ""text"": ""Nilesh: Not really. I want mid-floor east facing."", ""start"": 34.12, ""end"": 37.43}, {""speaker"": ""agent"", ""text"": ""Ananya: That's our premium inventory. But for serious buyers, I can check for a corporate discount."", ""start"": 39.2, ""end"": 44.66}, {""speaker"": ""client"", ""text"": ""Nilesh: Please do. We're ready to close quickly."", ""start"": 46.44, ""end"": 52.3}, {""speaker"": ""agent"", ""text"": ""Ananya: Will revert by tomorrow 2 PM."", ""start"": 52.84, ""end"": 57.05}]",0.83
|
||||
TRX-00180,CAL-00384,en-IN,"Ananya: Hi Nilesh, following up on your enquiry for DTC Sojon. Nilesh: Hi, I was about to call you. Ananya: Great minds! What were you thinking? Nilesh: The price is still high. Can you match DTC Good Earth's rate? Ananya: I understand. Let me see what best I can do. Are you flexible on floor preference? Nilesh: Not really. I want mid-floor east facing. Ananya: That's our premium inventory. But for serious buyers, I can check for a corporate discount. Nilesh: Please do. We're ready to close quickly. Ananya: Will revert by tomorrow 2 PM.","[{""speaker"": ""agent"", ""text"": ""Ananya: Hi Nilesh, following up on your enquiry for DTC Sojon."", ""start"": 0.0, ""end"": 4.37}, {""speaker"": ""client"", ""text"": ""Nilesh: Hi, I was about to call you."", ""start"": 6.09, ""end"": 10.62}, {""speaker"": ""agent"", ""text"": ""Ananya: Great minds! What were you thinking?"", ""start"": 11.94, ""end"": 18.64}, {""speaker"": ""client"", ""text"": ""Nilesh: The price is still high. Can you match DTC Good Earth's rate?"", ""start"": 20.46, ""end"": 25.02}, {""speaker"": ""agent"", ""text"": ""Ananya: I understand. Let me see what best I can do. Are you flexible on floor preference?"", ""start"": 26.6, ""end"": 30.54}, {""speaker"": ""client"", ""text"": ""Nilesh: Not really. I want mid-floor east facing."", ""start"": 31.26, ""end"": 35.09}, {""speaker"": ""agent"", ""text"": ""Ananya: That's our premium inventory. But for serious buyers, I can check for a corporate discount."", ""start"": 37.03, ""end"": 42.11}, {""speaker"": ""client"", ""text"": ""Nilesh: Please do. We're ready to close quickly."", ""start"": 42.92, ""end"": 47.64}, {""speaker"": ""agent"", ""text"": ""Ananya: Will revert by tomorrow 2 PM."", ""start"": 48.43, ""end"": 50.96}]",0.88
|
||||
TRX-00181,CAL-00385,en-IN,"Vikram: Good morning Nilesh, wanted to share some updates about DTC Sojon. Nilesh: Hi, I was about to call you. Vikram: Great minds! What were you thinking? Nilesh: The price is still high. Can you match Eden Devprayag's rate? Vikram: I understand. Let me see what best I can do. Are you flexible on floor preference? Nilesh: Not really. I want mid-floor east facing. Vikram: That's our premium inventory. But for serious buyers, I can check for a corporate discount. Nilesh: Please do. We're ready to close quickly. Vikram: Will revert by tomorrow 2 PM.","[{""speaker"": ""agent"", ""text"": ""Vikram: Good morning Nilesh, wanted to share some updates about DTC Sojon."", ""start"": 0.0, ""end"": 7.15}, {""speaker"": ""client"", ""text"": ""Nilesh: Hi, I was about to call you."", ""start"": 8.67, ""end"": 15.53}, {""speaker"": ""agent"", ""text"": ""Vikram: Great minds! What were you thinking?"", ""start"": 17.22, ""end"": 19.77}, {""speaker"": ""client"", ""text"": ""Nilesh: The price is still high. Can you match Eden Devprayag's rate?"", ""start"": 21.37, ""end"": 28.87}, {""speaker"": ""agent"", ""text"": ""Vikram: I understand. Let me see what best I can do. Are you flexible on floor preference?"", ""start"": 29.76, ""end"": 32.37}, {""speaker"": ""client"", ""text"": ""Nilesh: Not really. I want mid-floor east facing."", ""start"": 33.86, ""end"": 37.28}, {""speaker"": ""agent"", ""text"": ""Vikram: That's our premium inventory. But for serious buyers, I can check for a corporate discount."", ""start"": 38.62, ""end"": 42.03}, {""speaker"": ""client"", ""text"": ""Nilesh: Please do. We're ready to close quickly."", ""start"": 43.24, ""end"": 49.65}, {""speaker"": ""agent"", ""text"": ""Vikram: Will revert by tomorrow 2 PM."", ""start"": 50.64, ""end"": 55.2}]",0.91
|
||||
TRX-00182,CAL-00388,en-IN,"Rahul: Hi Trisha, following up on your enquiry for Sugam Prakriti. Trisha: Hi, I was about to call you. Rahul: Great minds! What were you thinking? Trisha: The price is still high. Can you match Merlin Avana's rate? Rahul: I understand. Let me see what best I can do. Are you flexible on floor preference? Trisha: Not really. I want mid-floor east facing. Rahul: That's our premium inventory. But for serious buyers, I can check for a corporate discount. Trisha: Please do. We're ready to close quickly. Rahul: Will revert by tomorrow 2 PM.","[{""speaker"": ""agent"", ""text"": ""Rahul: Hi Trisha, following up on your enquiry for Sugam Prakriti."", ""start"": 0.0, ""end"": 5.58}, {""speaker"": ""client"", ""text"": ""Trisha: Hi, I was about to call you."", ""start"": 6.58, ""end"": 14.13}, {""speaker"": ""agent"", ""text"": ""Rahul: Great minds! What were you thinking?"", ""start"": 15.84, ""end"": 21.53}, {""speaker"": ""client"", ""text"": ""Trisha: The price is still high. Can you match Merlin Avana's rate?"", ""start"": 22.79, ""end"": 28.02}, {""speaker"": ""agent"", ""text"": ""Rahul: I understand. Let me see what best I can do. Are you flexible on floor preference?"", ""start"": 28.87, ""end"": 35.26}, {""speaker"": ""client"", ""text"": ""Trisha: Not really. I want mid-floor east facing."", ""start"": 36.81, ""end"": 42.58}, {""speaker"": ""agent"", ""text"": ""Rahul: That's our premium inventory. But for serious buyers, I can check for a corporate discount."", ""start"": 43.26, ""end"": 48.96}, {""speaker"": ""client"", ""text"": ""Trisha: Please do. We're ready to close quickly."", ""start"": 50.83, ""end"": 57.06}, {""speaker"": ""agent"", ""text"": ""Rahul: Will revert by tomorrow 2 PM."", ""start"": 57.95, ""end"": 61.81}]",0.94
|
||||
TRX-00183,CAL-00389,en-IN,"Rahul: Hi Trisha, following up on your enquiry for Sugam Prakriti. Trisha: Yes, tell me. Rahul: We have a new tower launch with pre-launch pricing. Are you still looking in Barasat? Trisha: Yes, what's the price? Rahul: Starting at 3.58 Cr for 3 BHK. Possession by September 2026. Trisha: That's good. Send me the details on WhatsApp. Rahul: Done. When can you visit? Trisha: This weekend. Rahul: I'll block Saturday 11 AM for you.","[{""speaker"": ""agent"", ""text"": ""Rahul: Hi Trisha, following up on your enquiry for Sugam Prakriti."", ""start"": 0.0, ""end"": 5.82}, {""speaker"": ""client"", ""text"": ""Trisha: Yes, tell me."", ""start"": 7.02, ""end"": 11.23}, {""speaker"": ""agent"", ""text"": ""Rahul: We have a new tower launch with pre-launch pricing. Are you still looking in Barasat?"", ""start"": 13.11, ""end"": 19.99}, {""speaker"": ""client"", ""text"": ""Trisha: Yes, what's the price?"", ""start"": 20.57, ""end"": 25.99}, {""speaker"": ""agent"", ""text"": ""Rahul: Starting at 3.58 Cr for 3 BHK. Possession by September 2026."", ""start"": 27.4, ""end"": 29.41}, {""speaker"": ""client"", ""text"": ""Trisha: That's good. Send me the details on WhatsApp."", ""start"": 29.95, ""end"": 36.85}, {""speaker"": ""agent"", ""text"": ""Rahul: Done. When can you visit?"", ""start"": 38.71, ""end"": 43.64}, {""speaker"": ""client"", ""text"": ""Trisha: This weekend."", ""start"": 45.38, ""end"": 49.83}, {""speaker"": ""agent"", ""text"": ""Rahul: I'll block Saturday 11 AM for you."", ""start"": 50.87, ""end"": 57.32}]",0.89
|
||||
TRX-00184,CAL-00390,en-IN,"Vikram: Good morning Trisha, wanted to share some updates about Sugam Prakriti. Trisha: Yes, tell me. Vikram: We have a new tower launch with pre-launch pricing. Are you still looking in Barasat? Trisha: Yes, what's the price? Vikram: Starting at 2.49 Cr for 3 BHK. Possession by June 2026. Trisha: That's good. Send me the details on WhatsApp. Vikram: Done. When can you visit? Trisha: This weekend. Vikram: I'll block Saturday 11 AM for you.","[{""speaker"": ""agent"", ""text"": ""Vikram: Good morning Trisha, wanted to share some updates about Sugam Prakriti."", ""start"": 0.0, ""end"": 7.79}, {""speaker"": ""client"", ""text"": ""Trisha: Yes, tell me."", ""start"": 9.32, ""end"": 12.54}, {""speaker"": ""agent"", ""text"": ""Vikram: We have a new tower launch with pre-launch pricing. Are you still looking in Barasat?"", ""start"": 14.12, ""end"": 20.37}, {""speaker"": ""client"", ""text"": ""Trisha: Yes, what's the price?"", ""start"": 20.93, ""end"": 23.6}, {""speaker"": ""agent"", ""text"": ""Vikram: Starting at 2.49 Cr for 3 BHK. Possession by June 2026."", ""start"": 25.18, ""end"": 32.28}, {""speaker"": ""client"", ""text"": ""Trisha: That's good. Send me the details on WhatsApp."", ""start"": 33.02, ""end"": 40.33}, {""speaker"": ""agent"", ""text"": ""Vikram: Done. When can you visit?"", ""start"": 41.83, ""end"": 46.99}, {""speaker"": ""client"", ""text"": ""Trisha: This weekend."", ""start"": 48.06, ""end"": 50.74}, {""speaker"": ""agent"", ""text"": ""Vikram: I'll block Saturday 11 AM for you."", ""start"": 51.37, ""end"": 58.18}]",0.84
|
||||
TRX-00185,CAL-00391,en-IN,"Rahul: Good morning Ritu, wanted to share some updates about Atri Aqua. Ritu: Yes, tell me. Rahul: We have a new tower launch with pre-launch pricing. Are you still looking in New Town? Ritu: Yes, what's the price? Rahul: Starting at 3.74 Cr for 3 BHK. Possession by June 2026. Ritu: That's good. Send me the details on WhatsApp. Rahul: Done. When can you visit? Ritu: This weekend. Rahul: I'll block Saturday 11 AM for you.","[{""speaker"": ""agent"", ""text"": ""Rahul: Good morning Ritu, wanted to share some updates about Atri Aqua."", ""start"": 0.0, ""end"": 4.71}, {""speaker"": ""client"", ""text"": ""Ritu: Yes, tell me."", ""start"": 5.49, ""end"": 11.69}, {""speaker"": ""agent"", ""text"": ""Rahul: We have a new tower launch with pre-launch pricing. Are you still looking in New Town?"", ""start"": 12.44, ""end"": 15.83}, {""speaker"": ""client"", ""text"": ""Ritu: Yes, what's the price?"", ""start"": 17.38, ""end"": 20.73}, {""speaker"": ""agent"", ""text"": ""Rahul: Starting at 3.74 Cr for 3 BHK. Possession by June 2026."", ""start"": 21.95, ""end"": 25.87}, {""speaker"": ""client"", ""text"": ""Ritu: That's good. Send me the details on WhatsApp."", ""start"": 27.28, ""end"": 30.43}, {""speaker"": ""agent"", ""text"": ""Rahul: Done. When can you visit?"", ""start"": 31.94, ""end"": 39.31}, {""speaker"": ""client"", ""text"": ""Ritu: This weekend."", ""start"": 40.73, ""end"": 48.44}, {""speaker"": ""agent"", ""text"": ""Rahul: I'll block Saturday 11 AM for you."", ""start"": 50.11, ""end"": 54.41}]",0.85
|
||||
TRX-00186,CAL-00395,en-IN,"Ananya: Hi Anirban, following up on your enquiry for Atri Surya Toron. Anirban: Yes, tell me. Ananya: We have a new tower launch with pre-launch pricing. Are you still looking in Rajarhat? Anirban: Yes, what's the price? Ananya: Starting at 2.67 Cr for 3 BHK. Possession by July 2026. Anirban: That's good. Send me the details on WhatsApp. Ananya: Done. When can you visit? Anirban: This weekend. Ananya: I'll block Saturday 11 AM for you.","[{""speaker"": ""agent"", ""text"": ""Ananya: Hi Anirban, following up on your enquiry for Atri Surya Toron."", ""start"": 0.0, ""end"": 3.32}, {""speaker"": ""client"", ""text"": ""Anirban: Yes, tell me."", ""start"": 4.88, ""end"": 9.11}, {""speaker"": ""agent"", ""text"": ""Ananya: We have a new tower launch with pre-launch pricing. Are you still looking in Rajarhat?"", ""start"": 10.68, ""end"": 15.47}, {""speaker"": ""client"", ""text"": ""Anirban: Yes, what's the price?"", ""start"": 15.97, ""end"": 18.13}, {""speaker"": ""agent"", ""text"": ""Ananya: Starting at 2.67 Cr for 3 BHK. Possession by July 2026."", ""start"": 19.56, ""end"": 22.66}, {""speaker"": ""client"", ""text"": ""Anirban: That's good. Send me the details on WhatsApp."", ""start"": 24.33, ""end"": 29.81}, {""speaker"": ""agent"", ""text"": ""Ananya: Done. When can you visit?"", ""start"": 31.32, ""end"": 39.19}, {""speaker"": ""client"", ""text"": ""Anirban: This weekend."", ""start"": 41.01, ""end"": 44.47}, {""speaker"": ""agent"", ""text"": ""Ananya: I'll block Saturday 11 AM for you."", ""start"": 46.41, ""end"": 51.48}]",0.94
|
||||
TRX-00187,CAL-00396,en-IN,"Vikram: Hello Anirban, this is Vikram from Velocity regarding Atri Surya Toron. Anirban: Yes, tell me. Vikram: We have a new tower launch with pre-launch pricing. Are you still looking in Rajarhat? Anirban: Yes, what's the price? Vikram: Starting at 2.72 Cr for 3 BHK. Possession by September 2026. Anirban: That's good. Send me the details on WhatsApp. Vikram: Done. When can you visit? Anirban: This weekend. Vikram: I'll block Saturday 11 AM for you.","[{""speaker"": ""agent"", ""text"": ""Vikram: Hello Anirban, this is Vikram from Velocity regarding Atri Surya Toron."", ""start"": 0.0, ""end"": 4.94}, {""speaker"": ""client"", ""text"": ""Anirban: Yes, tell me."", ""start"": 6.61, ""end"": 14.56}, {""speaker"": ""agent"", ""text"": ""Vikram: We have a new tower launch with pre-launch pricing. Are you still looking in Rajarhat?"", ""start"": 15.6, ""end"": 17.7}, {""speaker"": ""client"", ""text"": ""Anirban: Yes, what's the price?"", ""start"": 18.65, ""end"": 25.53}, {""speaker"": ""agent"", ""text"": ""Vikram: Starting at 2.72 Cr for 3 BHK. Possession by September 2026."", ""start"": 27.34, ""end"": 31.27}, {""speaker"": ""client"", ""text"": ""Anirban: That's good. Send me the details on WhatsApp."", ""start"": 32.62, ""end"": 35.67}, {""speaker"": ""agent"", ""text"": ""Vikram: Done. When can you visit?"", ""start"": 36.66, ""end"": 40.67}, {""speaker"": ""client"", ""text"": ""Anirban: This weekend."", ""start"": 42.5, ""end"": 47.25}, {""speaker"": ""agent"", ""text"": ""Vikram: I'll block Saturday 11 AM for you."", ""start"": 49.0, ""end"": 55.97}]",0.87
|
||||
TRX-00188,CAL-00400,en-IN,"Priya: Good morning Shreya, wanted to share some updates about Siddha Sky Waterfront. Shreya: Yes, tell me. Priya: We have a new tower launch with pre-launch pricing. Are you still looking in Beliaghata? Shreya: Yes, what's the price? Priya: Starting at 3.86 Cr for 3 BHK. Possession by July 2026. Shreya: That's good. Send me the details on WhatsApp. Priya: Done. When can you visit? Shreya: This weekend. Priya: I'll block Saturday 11 AM for you.","[{""speaker"": ""agent"", ""text"": ""Priya: Good morning Shreya, wanted to share some updates about Siddha Sky Waterfront."", ""start"": 0.0, ""end"": 7.01}, {""speaker"": ""client"", ""text"": ""Shreya: Yes, tell me."", ""start"": 8.99, ""end"": 13.47}, {""speaker"": ""agent"", ""text"": ""Priya: We have a new tower launch with pre-launch pricing. Are you still looking in Beliaghata?"", ""start"": 14.82, ""end"": 21.7}, {""speaker"": ""client"", ""text"": ""Shreya: Yes, what's the price?"", ""start"": 22.69, ""end"": 26.52}, {""speaker"": ""agent"", ""text"": ""Priya: Starting at 3.86 Cr for 3 BHK. Possession by July 2026."", ""start"": 28.06, ""end"": 30.47}, {""speaker"": ""client"", ""text"": ""Shreya: That's good. Send me the details on WhatsApp."", ""start"": 31.41, ""end"": 37.63}, {""speaker"": ""agent"", ""text"": ""Priya: Done. When can you visit?"", ""start"": 38.89, ""end"": 43.26}, {""speaker"": ""client"", ""text"": ""Shreya: This weekend."", ""start"": 44.33, ""end"": 49.99}, {""speaker"": ""agent"", ""text"": ""Priya: I'll block Saturday 11 AM for you."", ""start"": 51.83, ""end"": 59.4}]",0.83
|
||||
TRX-00189,CAL-00401,en-IN,"Priya: Hello Shreya, this is Priya from Velocity regarding Siddha Sky Waterfront. Shreya: Hi, I was about to call you. Priya: Great minds! What were you thinking? Shreya: The price is still high. Can you match Atri Aqua's rate? Priya: I understand. Let me see what best I can do. Are you flexible on floor preference? Shreya: Not really. I want mid-floor east facing. Priya: That's our premium inventory. But for serious buyers, I can check for a corporate discount. Shreya: Please do. We're ready to close quickly. Priya: Will revert by tomorrow 2 PM.","[{""speaker"": ""agent"", ""text"": ""Priya: Hello Shreya, this is Priya from Velocity regarding Siddha Sky Waterfront."", ""start"": 0.0, ""end"": 7.93}, {""speaker"": ""client"", ""text"": ""Shreya: Hi, I was about to call you."", ""start"": 8.43, ""end"": 11.7}, {""speaker"": ""agent"", ""text"": ""Priya: Great minds! What were you thinking?"", ""start"": 13.33, ""end"": 16.41}, {""speaker"": ""client"", ""text"": ""Shreya: The price is still high. Can you match Atri Aqua's rate?"", ""start"": 18.38, ""end"": 20.64}, {""speaker"": ""agent"", ""text"": ""Priya: I understand. Let me see what best I can do. Are you flexible on floor preference?"", ""start"": 21.58, ""end"": 24.88}, {""speaker"": ""client"", ""text"": ""Shreya: Not really. I want mid-floor east facing."", ""start"": 26.1, ""end"": 29.52}, {""speaker"": ""agent"", ""text"": ""Priya: That's our premium inventory. But for serious buyers, I can check for a corporate discount."", ""start"": 30.37, ""end"": 36.35}, {""speaker"": ""client"", ""text"": ""Shreya: Please do. We're ready to close quickly."", ""start"": 37.69, ""end"": 41.04}, {""speaker"": ""agent"", ""text"": ""Priya: Will revert by tomorrow 2 PM."", ""start"": 42.1, ""end"": 46.15}]",0.96
|
||||
TRX-00190,CAL-00402,en-IN,"Ananya: Hi Vidya, following up on your enquiry for Atri Surya Toron. Vidya: Yes, tell me. Ananya: We have a new tower launch with pre-launch pricing. Are you still looking in Rajarhat? Vidya: Yes, what's the price? Ananya: Starting at 3.25 Cr for 3 BHK. Possession by October 2026. Vidya: That's good. Send me the details on WhatsApp. Ananya: Done. When can you visit? Vidya: This weekend. Ananya: I'll block Saturday 11 AM for you.","[{""speaker"": ""agent"", ""text"": ""Ananya: Hi Vidya, following up on your enquiry for Atri Surya Toron."", ""start"": 0.0, ""end"": 3.29}, {""speaker"": ""client"", ""text"": ""Vidya: Yes, tell me."", ""start"": 5.08, ""end"": 12.25}, {""speaker"": ""agent"", ""text"": ""Ananya: We have a new tower launch with pre-launch pricing. Are you still looking in Rajarhat?"", ""start"": 13.11, ""end"": 16.53}, {""speaker"": ""client"", ""text"": ""Vidya: Yes, what's the price?"", ""start"": 17.43, ""end"": 19.98}, {""speaker"": ""agent"", ""text"": ""Ananya: Starting at 3.25 Cr for 3 BHK. Possession by October 2026."", ""start"": 21.52, ""end"": 26.54}, {""speaker"": ""client"", ""text"": ""Vidya: That's good. Send me the details on WhatsApp."", ""start"": 28.34, ""end"": 30.98}, {""speaker"": ""agent"", ""text"": ""Ananya: Done. When can you visit?"", ""start"": 32.37, ""end"": 36.81}, {""speaker"": ""client"", ""text"": ""Vidya: This weekend."", ""start"": 38.78, ""end"": 45.74}, {""speaker"": ""agent"", ""text"": ""Ananya: I'll block Saturday 11 AM for you."", ""start"": 46.38, ""end"": 52.84}]",0.93
|
||||
TRX-00191,CAL-00404,en-IN,"Vikram: Good morning Vidya, wanted to share some updates about Atri Surya Toron. Vidya: Hi, I was about to call you. Vikram: Great minds! What were you thinking? Vidya: The price is still high. Can you match Godrej Blue's rate? Vikram: I understand. Let me see what best I can do. Are you flexible on floor preference? Vidya: Not really. I want mid-floor east facing. Vikram: That's our premium inventory. But for serious buyers, I can check for a corporate discount. Vidya: Please do. We're ready to close quickly. Vikram: Will revert by tomorrow 2 PM.","[{""speaker"": ""agent"", ""text"": ""Vikram: Good morning Vidya, wanted to share some updates about Atri Surya Toron."", ""start"": 0.0, ""end"": 2.37}, {""speaker"": ""client"", ""text"": ""Vidya: Hi, I was about to call you."", ""start"": 3.91, ""end"": 11.15}, {""speaker"": ""agent"", ""text"": ""Vikram: Great minds! What were you thinking?"", ""start"": 13.01, ""end"": 16.92}, {""speaker"": ""client"", ""text"": ""Vidya: The price is still high. Can you match Godrej Blue's rate?"", ""start"": 17.5, ""end"": 19.54}, {""speaker"": ""agent"", ""text"": ""Vikram: I understand. Let me see what best I can do. Are you flexible on floor preference?"", ""start"": 21.33, ""end"": 27.99}, {""speaker"": ""client"", ""text"": ""Vidya: Not really. I want mid-floor east facing."", ""start"": 29.82, ""end"": 36.9}, {""speaker"": ""agent"", ""text"": ""Vikram: That's our premium inventory. But for serious buyers, I can check for a corporate discount."", ""start"": 38.74, ""end"": 45.56}, {""speaker"": ""client"", ""text"": ""Vidya: Please do. We're ready to close quickly."", ""start"": 46.68, ""end"": 52.06}, {""speaker"": ""agent"", ""text"": ""Vikram: Will revert by tomorrow 2 PM."", ""start"": 53.45, ""end"": 58.08}]",0.94
|
||||
TRX-00192,CAL-00405,en-IN,"Ananya: Hi Sonal, following up on your enquiry for DTC Sojon. Sonal: Yes, tell me. Ananya: We have a new tower launch with pre-launch pricing. Are you still looking in Rajarhat? Sonal: Yes, what's the price? Ananya: Starting at 5.34 Cr for 3 BHK. Possession by June 2026. Sonal: That's good. Send me the details on WhatsApp. Ananya: Done. When can you visit? Sonal: This weekend. Ananya: I'll block Saturday 11 AM for you.","[{""speaker"": ""agent"", ""text"": ""Ananya: Hi Sonal, following up on your enquiry for DTC Sojon."", ""start"": 0.0, ""end"": 6.26}, {""speaker"": ""client"", ""text"": ""Sonal: Yes, tell me."", ""start"": 8.01, ""end"": 10.35}, {""speaker"": ""agent"", ""text"": ""Ananya: We have a new tower launch with pre-launch pricing. Are you still looking in Rajarhat?"", ""start"": 11.49, ""end"": 16.9}, {""speaker"": ""client"", ""text"": ""Sonal: Yes, what's the price?"", ""start"": 18.48, ""end"": 25.12}, {""speaker"": ""agent"", ""text"": ""Ananya: Starting at 5.34 Cr for 3 BHK. Possession by June 2026."", ""start"": 26.41, ""end"": 34.17}, {""speaker"": ""client"", ""text"": ""Sonal: That's good. Send me the details on WhatsApp."", ""start"": 35.35, ""end"": 41.86}, {""speaker"": ""agent"", ""text"": ""Ananya: Done. When can you visit?"", ""start"": 43.78, ""end"": 46.39}, {""speaker"": ""client"", ""text"": ""Sonal: This weekend."", ""start"": 47.28, ""end"": 52.6}, {""speaker"": ""agent"", ""text"": ""Ananya: I'll block Saturday 11 AM for you."", ""start"": 53.81, ""end"": 61.64}]",0.88
|
||||
TRX-00193,CAL-00406,en-IN,"Vikram: Hello Sneha, this is Vikram from Velocity regarding Ambuja Utpaala. Sneha: Yes, tell me. Vikram: We have a new tower launch with pre-launch pricing. Are you still looking in Tollygunge? Sneha: Yes, what's the price? Vikram: Starting at 4.42 Cr for 3 BHK. Possession by October 2026. Sneha: That's good. Send me the details on WhatsApp. Vikram: Done. When can you visit? Sneha: This weekend. Vikram: I'll block Saturday 11 AM for you.","[{""speaker"": ""agent"", ""text"": ""Vikram: Hello Sneha, this is Vikram from Velocity regarding Ambuja Utpaala."", ""start"": 0.0, ""end"": 3.92}, {""speaker"": ""client"", ""text"": ""Sneha: Yes, tell me."", ""start"": 5.18, ""end"": 12.95}, {""speaker"": ""agent"", ""text"": ""Vikram: We have a new tower launch with pre-launch pricing. Are you still looking in Tollygunge?"", ""start"": 13.68, ""end"": 19.82}, {""speaker"": ""client"", ""text"": ""Sneha: Yes, what's the price?"", ""start"": 21.24, ""end"": 23.88}, {""speaker"": ""agent"", ""text"": ""Vikram: Starting at 4.42 Cr for 3 BHK. Possession by October 2026."", ""start"": 25.16, ""end"": 31.88}, {""speaker"": ""client"", ""text"": ""Sneha: That's good. Send me the details on WhatsApp."", ""start"": 33.07, ""end"": 36.14}, {""speaker"": ""agent"", ""text"": ""Vikram: Done. When can you visit?"", ""start"": 37.76, ""end"": 43.45}, {""speaker"": ""client"", ""text"": ""Sneha: This weekend."", ""start"": 44.01, ""end"": 48.61}, {""speaker"": ""agent"", ""text"": ""Vikram: I'll block Saturday 11 AM for you."", ""start"": 49.15, ""end"": 53.5}]",0.94
|
||||
TRX-00194,CAL-00410,en-IN,"Priya: Hi Moumita, following up on your enquiry for Ambuja Utpaala. Moumita: Hi, I was about to call you. Priya: Great minds! What were you thinking? Moumita: The price is still high. Can you match Atri Surya Toron's rate? Priya: I understand. Let me see what best I can do. Are you flexible on floor preference? Moumita: Not really. I want mid-floor east facing. Priya: That's our premium inventory. But for serious buyers, I can check for a corporate discount. Moumita: Please do. We're ready to close quickly. Priya: Will revert by tomorrow 2 PM.","[{""speaker"": ""agent"", ""text"": ""Priya: Hi Moumita, following up on your enquiry for Ambuja Utpaala."", ""start"": 0.0, ""end"": 3.05}, {""speaker"": ""client"", ""text"": ""Moumita: Hi, I was about to call you."", ""start"": 4.09, ""end"": 11.13}, {""speaker"": ""agent"", ""text"": ""Priya: Great minds! What were you thinking?"", ""start"": 12.84, ""end"": 19.73}, {""speaker"": ""client"", ""text"": ""Moumita: The price is still high. Can you match Atri Surya Toron's rate?"", ""start"": 20.32, ""end"": 26.32}, {""speaker"": ""agent"", ""text"": ""Priya: I understand. Let me see what best I can do. Are you flexible on floor preference?"", ""start"": 27.37, ""end"": 34.37}, {""speaker"": ""client"", ""text"": ""Moumita: Not really. I want mid-floor east facing."", ""start"": 35.81, ""end"": 40.39}, {""speaker"": ""agent"", ""text"": ""Priya: That's our premium inventory. But for serious buyers, I can check for a corporate discount."", ""start"": 41.35, ""end"": 46.2}, {""speaker"": ""client"", ""text"": ""Moumita: Please do. We're ready to close quickly."", ""start"": 47.39, ""end"": 54.69}, {""speaker"": ""agent"", ""text"": ""Priya: Will revert by tomorrow 2 PM."", ""start"": 55.52, ""end"": 61.6}]",0.83
|
||||
TRX-00195,CAL-00411,en-IN,"Rahul: Good morning Meera, wanted to share some updates about Merlin Avana. Meera: Hi, I was about to call you. Rahul: Great minds! What were you thinking? Meera: The price is still high. Can you match Siddha Serena's rate? Rahul: I understand. Let me see what best I can do. Are you flexible on floor preference? Meera: Not really. I want mid-floor east facing. Rahul: That's our premium inventory. But for serious buyers, I can check for a corporate discount. Meera: Please do. We're ready to close quickly. Rahul: Will revert by tomorrow 2 PM.","[{""speaker"": ""agent"", ""text"": ""Rahul: Good morning Meera, wanted to share some updates about Merlin Avana."", ""start"": 0.0, ""end"": 6.5}, {""speaker"": ""client"", ""text"": ""Meera: Hi, I was about to call you."", ""start"": 7.19, ""end"": 9.7}, {""speaker"": ""agent"", ""text"": ""Rahul: Great minds! What were you thinking?"", ""start"": 10.4, ""end"": 15.46}, {""speaker"": ""client"", ""text"": ""Meera: The price is still high. Can you match Siddha Serena's rate?"", ""start"": 17.32, ""end"": 21.34}, {""speaker"": ""agent"", ""text"": ""Rahul: I understand. Let me see what best I can do. Are you flexible on floor preference?"", ""start"": 22.97, ""end"": 25.43}, {""speaker"": ""client"", ""text"": ""Meera: Not really. I want mid-floor east facing."", ""start"": 26.06, ""end"": 33.46}, {""speaker"": ""agent"", ""text"": ""Rahul: That's our premium inventory. But for serious buyers, I can check for a corporate discount."", ""start"": 34.82, ""end"": 41.1}, {""speaker"": ""client"", ""text"": ""Meera: Please do. We're ready to close quickly."", ""start"": 42.79, ""end"": 45.88}, {""speaker"": ""agent"", ""text"": ""Rahul: Will revert by tomorrow 2 PM."", ""start"": 47.58, ""end"": 52.12}]",0.83
|
||||
TRX-00196,CAL-00412,en-IN,"Rahul: Hi Meera, following up on your enquiry for Merlin Avana. Meera: Yes, tell me. Rahul: We have a new tower launch with pre-launch pricing. Are you still looking in Tangra? Meera: Yes, what's the price? Rahul: Starting at 5.35 Cr for 3 BHK. Possession by October 2026. Meera: That's good. Send me the details on WhatsApp. Rahul: Done. When can you visit? Meera: This weekend. Rahul: I'll block Saturday 11 AM for you.","[{""speaker"": ""agent"", ""text"": ""Rahul: Hi Meera, following up on your enquiry for Merlin Avana."", ""start"": 0.0, ""end"": 3.51}, {""speaker"": ""client"", ""text"": ""Meera: Yes, tell me."", ""start"": 5.05, ""end"": 12.26}, {""speaker"": ""agent"", ""text"": ""Rahul: We have a new tower launch with pre-launch pricing. Are you still looking in Tangra?"", ""start"": 14.24, ""end"": 20.95}, {""speaker"": ""client"", ""text"": ""Meera: Yes, what's the price?"", ""start"": 21.48, ""end"": 27.76}, {""speaker"": ""agent"", ""text"": ""Rahul: Starting at 5.35 Cr for 3 BHK. Possession by October 2026."", ""start"": 28.73, ""end"": 36.5}, {""speaker"": ""client"", ""text"": ""Meera: That's good. Send me the details on WhatsApp."", ""start"": 37.66, ""end"": 41.43}, {""speaker"": ""agent"", ""text"": ""Rahul: Done. When can you visit?"", ""start"": 42.98, ""end"": 45.84}, {""speaker"": ""client"", ""text"": ""Meera: This weekend."", ""start"": 47.11, ""end"": 52.8}, {""speaker"": ""agent"", ""text"": ""Rahul: I'll block Saturday 11 AM for you."", ""start"": 54.14, ""end"": 61.5}]",0.89
|
||||
TRX-00197,CAL-00414,en-IN,"Ananya: Hi Meera, following up on your enquiry for Merlin Avana. Meera: Hi, I was about to call you. Ananya: Great minds! What were you thinking? Meera: The price is still high. Can you match Atri Surya Toron's rate? Ananya: I understand. Let me see what best I can do. Are you flexible on floor preference? Meera: Not really. I want mid-floor east facing. Ananya: That's our premium inventory. But for serious buyers, I can check for a corporate discount. Meera: Please do. We're ready to close quickly. Ananya: Will revert by tomorrow 2 PM.","[{""speaker"": ""agent"", ""text"": ""Ananya: Hi Meera, following up on your enquiry for Merlin Avana."", ""start"": 0.0, ""end"": 7.17}, {""speaker"": ""client"", ""text"": ""Meera: Hi, I was about to call you."", ""start"": 9.02, ""end"": 14.53}, {""speaker"": ""agent"", ""text"": ""Ananya: Great minds! What were you thinking?"", ""start"": 16.38, ""end"": 21.5}, {""speaker"": ""client"", ""text"": ""Meera: The price is still high. Can you match Atri Surya Toron's rate?"", ""start"": 23.48, ""end"": 29.51}, {""speaker"": ""agent"", ""text"": ""Ananya: I understand. Let me see what best I can do. Are you flexible on floor preference?"", ""start"": 31.38, ""end"": 35.39}, {""speaker"": ""client"", ""text"": ""Meera: Not really. I want mid-floor east facing."", ""start"": 37.03, ""end"": 39.71}, {""speaker"": ""agent"", ""text"": ""Ananya: That's our premium inventory. But for serious buyers, I can check for a corporate discount."", ""start"": 41.53, ""end"": 48.42}, {""speaker"": ""client"", ""text"": ""Meera: Please do. We're ready to close quickly."", ""start"": 50.3, ""end"": 54.92}, {""speaker"": ""agent"", ""text"": ""Ananya: Will revert by tomorrow 2 PM."", ""start"": 56.01, ""end"": 58.59}]",0.95
|
||||
TRX-00198,CAL-00416,en-IN,"Ananya: Hello Prasenjit, this is Ananya from Velocity regarding Siddha Suburbia Bungalow. Prasenjit: Hi, I was about to call you. Ananya: Great minds! What were you thinking? Prasenjit: The price is still high. Can you match Eden Devprayag's rate? Ananya: I understand. Let me see what best I can do. Are you flexible on floor preference? Prasenjit: Not really. I want mid-floor east facing. Ananya: That's our premium inventory. But for serious buyers, I can check for a corporate discount. Prasenjit: Please do. We're ready to close quickly. Ananya: Will revert by tomorrow 2 PM.","[{""speaker"": ""agent"", ""text"": ""Ananya: Hello Prasenjit, this is Ananya from Velocity regarding Siddha Suburbia Bungalow."", ""start"": 0.0, ""end"": 7.07}, {""speaker"": ""client"", ""text"": ""Prasenjit: Hi, I was about to call you."", ""start"": 8.71, ""end"": 15.83}, {""speaker"": ""agent"", ""text"": ""Ananya: Great minds! What were you thinking?"", ""start"": 17.32, ""end"": 20.17}, {""speaker"": ""client"", ""text"": ""Prasenjit: The price is still high. Can you match Eden Devprayag's rate?"", ""start"": 22.09, ""end"": 28.98}, {""speaker"": ""agent"", ""text"": ""Ananya: I understand. Let me see what best I can do. Are you flexible on floor preference?"", ""start"": 30.22, ""end"": 36.82}, {""speaker"": ""client"", ""text"": ""Prasenjit: Not really. I want mid-floor east facing."", ""start"": 37.45, ""end"": 44.05}, {""speaker"": ""agent"", ""text"": ""Ananya: That's our premium inventory. But for serious buyers, I can check for a corporate discount."", ""start"": 46.02, ""end"": 51.43}, {""speaker"": ""client"", ""text"": ""Prasenjit: Please do. We're ready to close quickly."", ""start"": 52.28, ""end"": 54.64}, {""speaker"": ""agent"", ""text"": ""Ananya: Will revert by tomorrow 2 PM."", ""start"": 56.44, ""end"": 63.34}]",0.88
|
||||
TRX-00199,CAL-00417,en-IN,"Priya: Hi Prasenjit, following up on your enquiry for Siddha Suburbia Bungalow. Prasenjit: Hi, I was about to call you. Priya: Great minds! What were you thinking? Prasenjit: The price is still high. Can you match Godrej Elevate's rate? Priya: I understand. Let me see what best I can do. Are you flexible on floor preference? Prasenjit: Not really. I want mid-floor east facing. Priya: That's our premium inventory. But for serious buyers, I can check for a corporate discount. Prasenjit: Please do. We're ready to close quickly. Priya: Will revert by tomorrow 2 PM.","[{""speaker"": ""agent"", ""text"": ""Priya: Hi Prasenjit, following up on your enquiry for Siddha Suburbia Bungalow."", ""start"": 0.0, ""end"": 2.58}, {""speaker"": ""client"", ""text"": ""Prasenjit: Hi, I was about to call you."", ""start"": 4.41, ""end"": 9.86}, {""speaker"": ""agent"", ""text"": ""Priya: Great minds! What were you thinking?"", ""start"": 11.21, ""end"": 18.44}, {""speaker"": ""client"", ""text"": ""Prasenjit: The price is still high. Can you match Godrej Elevate's rate?"", ""start"": 20.13, ""end"": 24.99}, {""speaker"": ""agent"", ""text"": ""Priya: I understand. Let me see what best I can do. Are you flexible on floor preference?"", ""start"": 26.49, ""end"": 28.56}, {""speaker"": ""client"", ""text"": ""Prasenjit: Not really. I want mid-floor east facing."", ""start"": 29.25, ""end"": 35.9}, {""speaker"": ""agent"", ""text"": ""Priya: That's our premium inventory. But for serious buyers, I can check for a corporate discount."", ""start"": 37.51, ""end"": 42.54}, {""speaker"": ""client"", ""text"": ""Prasenjit: Please do. We're ready to close quickly."", ""start"": 44.31, ""end"": 52.13}, {""speaker"": ""agent"", ""text"": ""Priya: Will revert by tomorrow 2 PM."", ""start"": 52.96, ""end"": 59.49}]",0.93
|
||||
TRX-00200,CAL-00420,en-IN,"Vikram: Hello Abhishek, this is Vikram from Velocity regarding Godrej Blue. Abhishek: Hi, I was about to call you. Vikram: Great minds! What were you thinking? Abhishek: The price is still high. Can you match Shriram Grand City's rate? Vikram: I understand. Let me see what best I can do. Are you flexible on floor preference? Abhishek: Not really. I want mid-floor east facing. Vikram: That's our premium inventory. But for serious buyers, I can check for a corporate discount. Abhishek: Please do. We're ready to close quickly. Vikram: Will revert by tomorrow 2 PM.","[{""speaker"": ""agent"", ""text"": ""Vikram: Hello Abhishek, this is Vikram from Velocity regarding Godrej Blue."", ""start"": 0.0, ""end"": 3.09}, {""speaker"": ""client"", ""text"": ""Abhishek: Hi, I was about to call you."", ""start"": 4.3, ""end"": 8.39}, {""speaker"": ""agent"", ""text"": ""Vikram: Great minds! What were you thinking?"", ""start"": 10.03, ""end"": 15.17}, {""speaker"": ""client"", ""text"": ""Abhishek: The price is still high. Can you match Shriram Grand City's rate?"", ""start"": 15.73, ""end"": 21.97}, {""speaker"": ""agent"", ""text"": ""Vikram: I understand. Let me see what best I can do. Are you flexible on floor preference?"", ""start"": 23.73, ""end"": 27.86}, {""speaker"": ""client"", ""text"": ""Abhishek: Not really. I want mid-floor east facing."", ""start"": 29.52, ""end"": 35.26}, {""speaker"": ""agent"", ""text"": ""Vikram: That's our premium inventory. But for serious buyers, I can check for a corporate discount."", ""start"": 36.64, ""end"": 44.24}, {""speaker"": ""client"", ""text"": ""Abhishek: Please do. We're ready to close quickly."", ""start"": 45.59, ""end"": 52.37}, {""speaker"": ""agent"", ""text"": ""Vikram: Will revert by tomorrow 2 PM."", ""start"": 54.36, ""end"": 56.74}]",0.82
|
||||
TRX-00201,CAL-00426,en-IN,"Ananya: Hi Swati, following up on your enquiry for Shriram Grand City. Swati: Yes, tell me. Ananya: We have a new tower launch with pre-launch pricing. Are you still looking in Howrah? Swati: Yes, what's the price? Ananya: Starting at 7.46 Cr for 3 BHK. Possession by June 2026. Swati: That's good. Send me the details on WhatsApp. Ananya: Done. When can you visit? Swati: This weekend. Ananya: I'll block Saturday 11 AM for you.","[{""speaker"": ""agent"", ""text"": ""Ananya: Hi Swati, following up on your enquiry for Shriram Grand City."", ""start"": 0.0, ""end"": 7.56}, {""speaker"": ""client"", ""text"": ""Swati: Yes, tell me."", ""start"": 8.13, ""end"": 14.02}, {""speaker"": ""agent"", ""text"": ""Ananya: We have a new tower launch with pre-launch pricing. Are you still looking in Howrah?"", ""start"": 14.99, ""end"": 19.15}, {""speaker"": ""client"", ""text"": ""Swati: Yes, what's the price?"", ""start"": 20.94, ""end"": 26.98}, {""speaker"": ""agent"", ""text"": ""Ananya: Starting at 7.46 Cr for 3 BHK. Possession by June 2026."", ""start"": 28.56, ""end"": 32.93}, {""speaker"": ""client"", ""text"": ""Swati: That's good. Send me the details on WhatsApp."", ""start"": 34.0, ""end"": 41.07}, {""speaker"": ""agent"", ""text"": ""Ananya: Done. When can you visit?"", ""start"": 42.82, ""end"": 44.94}, {""speaker"": ""client"", ""text"": ""Swati: This weekend."", ""start"": 46.21, ""end"": 50.96}, {""speaker"": ""agent"", ""text"": ""Ananya: I'll block Saturday 11 AM for you."", ""start"": 51.95, ""end"": 58.91}]",0.92
|
||||
TRX-00202,CAL-00429,en-IN,"Ananya: Hi Sanjay, following up on your enquiry for Atri Aqua. Sanjay: Yes, tell me. Ananya: We have a new tower launch with pre-launch pricing. Are you still looking in New Town? Sanjay: Yes, what's the price? Ananya: Starting at 1.61 Cr for 3 BHK. Possession by July 2026. Sanjay: That's good. Send me the details on WhatsApp. Ananya: Done. When can you visit? Sanjay: This weekend. Ananya: I'll block Saturday 11 AM for you.","[{""speaker"": ""agent"", ""text"": ""Ananya: Hi Sanjay, following up on your enquiry for Atri Aqua."", ""start"": 0.0, ""end"": 5.21}, {""speaker"": ""client"", ""text"": ""Sanjay: Yes, tell me."", ""start"": 6.07, ""end"": 10.37}, {""speaker"": ""agent"", ""text"": ""Ananya: We have a new tower launch with pre-launch pricing. Are you still looking in New Town?"", ""start"": 11.68, ""end"": 17.96}, {""speaker"": ""client"", ""text"": ""Sanjay: Yes, what's the price?"", ""start"": 19.93, ""end"": 25.55}, {""speaker"": ""agent"", ""text"": ""Ananya: Starting at 1.61 Cr for 3 BHK. Possession by July 2026."", ""start"": 26.74, ""end"": 34.36}, {""speaker"": ""client"", ""text"": ""Sanjay: That's good. Send me the details on WhatsApp."", ""start"": 35.27, ""end"": 41.25}, {""speaker"": ""agent"", ""text"": ""Ananya: Done. When can you visit?"", ""start"": 42.32, ""end"": 48.66}, {""speaker"": ""client"", ""text"": ""Sanjay: This weekend."", ""start"": 50.17, ""end"": 57.2}, {""speaker"": ""agent"", ""text"": ""Ananya: I'll block Saturday 11 AM for you."", ""start"": 58.42, ""end"": 63.38}]",0.85
|
||||
TRX-00203,CAL-00430,en-IN,"Vikram: Hello Sanjay, this is Vikram from Velocity regarding Atri Aqua. Sanjay: Hi, I was about to call you. Vikram: Great minds! What were you thinking? Sanjay: The price is still high. Can you match Siddha Suburbia Bungalow's rate? Vikram: I understand. Let me see what best I can do. Are you flexible on floor preference? Sanjay: Not really. I want mid-floor east facing. Vikram: That's our premium inventory. But for serious buyers, I can check for a corporate discount. Sanjay: Please do. We're ready to close quickly. Vikram: Will revert by tomorrow 2 PM.","[{""speaker"": ""agent"", ""text"": ""Vikram: Hello Sanjay, this is Vikram from Velocity regarding Atri Aqua."", ""start"": 0.0, ""end"": 4.32}, {""speaker"": ""client"", ""text"": ""Sanjay: Hi, I was about to call you."", ""start"": 4.88, ""end"": 8.29}, {""speaker"": ""agent"", ""text"": ""Vikram: Great minds! What were you thinking?"", ""start"": 9.1, ""end"": 15.65}, {""speaker"": ""client"", ""text"": ""Sanjay: The price is still high. Can you match Siddha Suburbia Bungalow's rate?"", ""start"": 17.13, ""end"": 19.45}, {""speaker"": ""agent"", ""text"": ""Vikram: I understand. Let me see what best I can do. Are you flexible on floor preference?"", ""start"": 21.14, ""end"": 28.91}, {""speaker"": ""client"", ""text"": ""Sanjay: Not really. I want mid-floor east facing."", ""start"": 30.25, ""end"": 37.31}, {""speaker"": ""agent"", ""text"": ""Vikram: That's our premium inventory. But for serious buyers, I can check for a corporate discount."", ""start"": 37.96, ""end"": 43.64}, {""speaker"": ""client"", ""text"": ""Sanjay: Please do. We're ready to close quickly."", ""start"": 44.8, ""end"": 49.07}, {""speaker"": ""agent"", ""text"": ""Vikram: Will revert by tomorrow 2 PM."", ""start"": 49.67, ""end"": 55.91}]",0.86
|
||||
TRX-00204,CAL-00434,en-IN,"Rahul: Hi Vikram, following up on your enquiry for Sugam Prakriti. Vikram: Yes, tell me. Rahul: We have a new tower launch with pre-launch pricing. Are you still looking in Barasat? Vikram: Yes, what's the price? Rahul: Starting at 3.59 Cr for 3 BHK. Possession by October 2026. Vikram: That's good. Send me the details on WhatsApp. Rahul: Done. When can you visit? Vikram: This weekend. Rahul: I'll block Saturday 11 AM for you.","[{""speaker"": ""agent"", ""text"": ""Rahul: Hi Vikram, following up on your enquiry for Sugam Prakriti."", ""start"": 0.0, ""end"": 4.28}, {""speaker"": ""client"", ""text"": ""Vikram: Yes, tell me."", ""start"": 6.2, ""end"": 13.91}, {""speaker"": ""agent"", ""text"": ""Rahul: We have a new tower launch with pre-launch pricing. Are you still looking in Barasat?"", ""start"": 15.5, ""end"": 21.91}, {""speaker"": ""client"", ""text"": ""Vikram: Yes, what's the price?"", ""start"": 22.64, ""end"": 30.41}, {""speaker"": ""agent"", ""text"": ""Rahul: Starting at 3.59 Cr for 3 BHK. Possession by October 2026."", ""start"": 31.63, ""end"": 33.73}, {""speaker"": ""client"", ""text"": ""Vikram: That's good. Send me the details on WhatsApp."", ""start"": 34.3, ""end"": 37.58}, {""speaker"": ""agent"", ""text"": ""Rahul: Done. When can you visit?"", ""start"": 38.11, ""end"": 40.95}, {""speaker"": ""client"", ""text"": ""Vikram: This weekend."", ""start"": 42.32, ""end"": 44.9}, {""speaker"": ""agent"", ""text"": ""Rahul: I'll block Saturday 11 AM for you."", ""start"": 46.62, ""end"": 49.77}]",0.95
|
||||
TRX-00205,CAL-00436,en-IN,"Priya: Good morning Amit, wanted to share some updates about Siddha Serena. Amit: Yes, tell me. Priya: We have a new tower launch with pre-launch pricing. Are you still looking in New Town? Amit: Yes, what's the price? Priya: Starting at 2.72 Cr for 3 BHK. Possession by July 2026. Amit: That's good. Send me the details on WhatsApp. Priya: Done. When can you visit? Amit: This weekend. Priya: I'll block Saturday 11 AM for you.","[{""speaker"": ""agent"", ""text"": ""Priya: Good morning Amit, wanted to share some updates about Siddha Serena."", ""start"": 0.0, ""end"": 4.77}, {""speaker"": ""client"", ""text"": ""Amit: Yes, tell me."", ""start"": 6.13, ""end"": 11.4}, {""speaker"": ""agent"", ""text"": ""Priya: We have a new tower launch with pre-launch pricing. Are you still looking in New Town?"", ""start"": 12.77, ""end"": 17.48}, {""speaker"": ""client"", ""text"": ""Amit: Yes, what's the price?"", ""start"": 18.26, ""end"": 21.48}, {""speaker"": ""agent"", ""text"": ""Priya: Starting at 2.72 Cr for 3 BHK. Possession by July 2026."", ""start"": 23.33, ""end"": 26.99}, {""speaker"": ""client"", ""text"": ""Amit: That's good. Send me the details on WhatsApp."", ""start"": 27.99, ""end"": 34.24}, {""speaker"": ""agent"", ""text"": ""Priya: Done. When can you visit?"", ""start"": 36.19, ""end"": 39.02}, {""speaker"": ""client"", ""text"": ""Amit: This weekend."", ""start"": 40.97, ""end"": 43.62}, {""speaker"": ""agent"", ""text"": ""Priya: I'll block Saturday 11 AM for you."", ""start"": 44.18, ""end"": 51.42}]",0.92
|
||||
TRX-00206,CAL-00437,en-IN,"Ananya: Hello Arjun, this is Ananya from Velocity regarding Godrej Elevate. Arjun: Yes, tell me. Ananya: We have a new tower launch with pre-launch pricing. Are you still looking in Dum Dum? Arjun: Yes, what's the price? Ananya: Starting at 2.85 Cr for 3 BHK. Possession by July 2026. Arjun: That's good. Send me the details on WhatsApp. Ananya: Done. When can you visit? Arjun: This weekend. Ananya: I'll block Saturday 11 AM for you.","[{""speaker"": ""agent"", ""text"": ""Ananya: Hello Arjun, this is Ananya from Velocity regarding Godrej Elevate."", ""start"": 0.0, ""end"": 2.11}, {""speaker"": ""client"", ""text"": ""Arjun: Yes, tell me."", ""start"": 3.93, ""end"": 11.71}, {""speaker"": ""agent"", ""text"": ""Ananya: We have a new tower launch with pre-launch pricing. Are you still looking in Dum Dum?"", ""start"": 13.62, ""end"": 16.08}, {""speaker"": ""client"", ""text"": ""Arjun: Yes, what's the price?"", ""start"": 17.81, ""end"": 22.08}, {""speaker"": ""agent"", ""text"": ""Ananya: Starting at 2.85 Cr for 3 BHK. Possession by July 2026."", ""start"": 23.33, ""end"": 30.62}, {""speaker"": ""client"", ""text"": ""Arjun: That's good. Send me the details on WhatsApp."", ""start"": 32.18, ""end"": 36.13}, {""speaker"": ""agent"", ""text"": ""Ananya: Done. When can you visit?"", ""start"": 36.9, ""end"": 39.74}, {""speaker"": ""client"", ""text"": ""Arjun: This weekend."", ""start"": 40.72, ""end"": 46.68}, {""speaker"": ""agent"", ""text"": ""Ananya: I'll block Saturday 11 AM for you."", ""start"": 48.27, ""end"": 54.85}]",0.92
|
||||
TRX-00207,CAL-00439,en-IN,"Rahul: Hi Ananya, following up on your enquiry for Sugam Prakriti. Ananya: Yes, tell me. Rahul: We have a new tower launch with pre-launch pricing. Are you still looking in Barasat? Ananya: Yes, what's the price? Rahul: Starting at 2.92 Cr for 3 BHK. Possession by July 2026. Ananya: That's good. Send me the details on WhatsApp. Rahul: Done. When can you visit? Ananya: This weekend. Rahul: I'll block Saturday 11 AM for you.","[{""speaker"": ""agent"", ""text"": ""Rahul: Hi Ananya, following up on your enquiry for Sugam Prakriti."", ""start"": 0.0, ""end"": 5.82}, {""speaker"": ""client"", ""text"": ""Ananya: Yes, tell me."", ""start"": 7.53, ""end"": 12.56}, {""speaker"": ""agent"", ""text"": ""Rahul: We have a new tower launch with pre-launch pricing. Are you still looking in Barasat?"", ""start"": 13.72, ""end"": 18.81}, {""speaker"": ""client"", ""text"": ""Ananya: Yes, what's the price?"", ""start"": 19.4, ""end"": 23.03}, {""speaker"": ""agent"", ""text"": ""Rahul: Starting at 2.92 Cr for 3 BHK. Possession by July 2026."", ""start"": 24.91, ""end"": 32.3}, {""speaker"": ""client"", ""text"": ""Ananya: That's good. Send me the details on WhatsApp."", ""start"": 33.67, ""end"": 39.88}, {""speaker"": ""agent"", ""text"": ""Rahul: Done. When can you visit?"", ""start"": 41.33, ""end"": 43.45}, {""speaker"": ""client"", ""text"": ""Ananya: This weekend."", ""start"": 44.46, ""end"": 52.17}, {""speaker"": ""agent"", ""text"": ""Rahul: I'll block Saturday 11 AM for you."", ""start"": 53.53, ""end"": 57.23}]",0.84
|
||||
TRX-00208,CAL-00440,en-IN,"Priya: Hi Ritu, following up on your enquiry for Siddha Suburbia Bungalow. Ritu: Yes, tell me. Priya: We have a new tower launch with pre-launch pricing. Are you still looking in Madanpur? Ritu: Yes, what's the price? Priya: Starting at 4.38 Cr for 3 BHK. Possession by June 2026. Ritu: That's good. Send me the details on WhatsApp. Priya: Done. When can you visit? Ritu: This weekend. Priya: I'll block Saturday 11 AM for you.","[{""speaker"": ""agent"", ""text"": ""Priya: Hi Ritu, following up on your enquiry for Siddha Suburbia Bungalow."", ""start"": 0.0, ""end"": 4.78}, {""speaker"": ""client"", ""text"": ""Ritu: Yes, tell me."", ""start"": 6.62, ""end"": 11.7}, {""speaker"": ""agent"", ""text"": ""Priya: We have a new tower launch with pre-launch pricing. Are you still looking in Madanpur?"", ""start"": 13.23, ""end"": 15.69}, {""speaker"": ""client"", ""text"": ""Ritu: Yes, what's the price?"", ""start"": 17.11, ""end"": 20.96}, {""speaker"": ""agent"", ""text"": ""Priya: Starting at 4.38 Cr for 3 BHK. Possession by June 2026."", ""start"": 22.46, ""end"": 30.31}, {""speaker"": ""client"", ""text"": ""Ritu: That's good. Send me the details on WhatsApp."", ""start"": 30.83, ""end"": 34.36}, {""speaker"": ""agent"", ""text"": ""Priya: Done. When can you visit?"", ""start"": 35.21, ""end"": 37.39}, {""speaker"": ""client"", ""text"": ""Ritu: This weekend."", ""start"": 39.39, ""end"": 42.07}, {""speaker"": ""agent"", ""text"": ""Priya: I'll block Saturday 11 AM for you."", ""start"": 42.69, ""end"": 46.56}]",0.83
|
||||
TRX-00209,CAL-00442,en-IN,"Vikram: Hi Ritu, following up on your enquiry for Siddha Suburbia Bungalow. Ritu: Hi, I was about to call you. Vikram: Great minds! What were you thinking? Ritu: The price is still high. Can you match Shriram Grand City's rate? Vikram: I understand. Let me see what best I can do. Are you flexible on floor preference? Ritu: Not really. I want mid-floor east facing. Vikram: That's our premium inventory. But for serious buyers, I can check for a corporate discount. Ritu: Please do. We're ready to close quickly. Vikram: Will revert by tomorrow 2 PM.","[{""speaker"": ""agent"", ""text"": ""Vikram: Hi Ritu, following up on your enquiry for Siddha Suburbia Bungalow."", ""start"": 0.0, ""end"": 4.99}, {""speaker"": ""client"", ""text"": ""Ritu: Hi, I was about to call you."", ""start"": 6.18, ""end"": 11.61}, {""speaker"": ""agent"", ""text"": ""Vikram: Great minds! What were you thinking?"", ""start"": 13.39, ""end"": 15.54}, {""speaker"": ""client"", ""text"": ""Ritu: The price is still high. Can you match Shriram Grand City's rate?"", ""start"": 17.5, ""end"": 25.31}, {""speaker"": ""agent"", ""text"": ""Vikram: I understand. Let me see what best I can do. Are you flexible on floor preference?"", ""start"": 26.69, ""end"": 33.1}, {""speaker"": ""client"", ""text"": ""Ritu: Not really. I want mid-floor east facing."", ""start"": 33.84, ""end"": 36.01}, {""speaker"": ""agent"", ""text"": ""Vikram: That's our premium inventory. But for serious buyers, I can check for a corporate discount."", ""start"": 37.17, ""end"": 45.1}, {""speaker"": ""client"", ""text"": ""Ritu: Please do. We're ready to close quickly."", ""start"": 46.39, ""end"": 49.19}, {""speaker"": ""agent"", ""text"": ""Vikram: Will revert by tomorrow 2 PM."", ""start"": 50.74, ""end"": 56.2}]",0.89
|
||||
TRX-00210,CAL-00443,en-IN,"Rahul: Good morning Pallavi, wanted to share some updates about Godrej Elevate. Pallavi: Hi, I was about to call you. Rahul: Great minds! What were you thinking? Pallavi: The price is still high. Can you match Sugam Prakriti's rate? Rahul: I understand. Let me see what best I can do. Are you flexible on floor preference? Pallavi: Not really. I want mid-floor east facing. Rahul: That's our premium inventory. But for serious buyers, I can check for a corporate discount. Pallavi: Please do. We're ready to close quickly. Rahul: Will revert by tomorrow 2 PM.","[{""speaker"": ""agent"", ""text"": ""Rahul: Good morning Pallavi, wanted to share some updates about Godrej Elevate."", ""start"": 0.0, ""end"": 4.21}, {""speaker"": ""client"", ""text"": ""Pallavi: Hi, I was about to call you."", ""start"": 4.75, ""end"": 12.27}, {""speaker"": ""agent"", ""text"": ""Rahul: Great minds! What were you thinking?"", ""start"": 13.07, ""end"": 20.1}, {""speaker"": ""client"", ""text"": ""Pallavi: The price is still high. Can you match Sugam Prakriti's rate?"", ""start"": 20.72, ""end"": 24.16}, {""speaker"": ""agent"", ""text"": ""Rahul: I understand. Let me see what best I can do. Are you flexible on floor preference?"", ""start"": 25.92, ""end"": 33.07}, {""speaker"": ""client"", ""text"": ""Pallavi: Not really. I want mid-floor east facing."", ""start"": 33.88, ""end"": 39.16}, {""speaker"": ""agent"", ""text"": ""Rahul: That's our premium inventory. But for serious buyers, I can check for a corporate discount."", ""start"": 40.81, ""end"": 42.9}, {""speaker"": ""client"", ""text"": ""Pallavi: Please do. We're ready to close quickly."", ""start"": 43.99, ""end"": 50.11}, {""speaker"": ""agent"", ""text"": ""Rahul: Will revert by tomorrow 2 PM."", ""start"": 50.91, ""end"": 54.02}]",0.84
|
||||
TRX-00211,CAL-00445,en-IN,"Vikram: Good morning Pallavi, wanted to share some updates about Godrej Elevate. Pallavi: Yes, tell me. Vikram: We have a new tower launch with pre-launch pricing. Are you still looking in Dum Dum? Pallavi: Yes, what's the price? Vikram: Starting at 6.26 Cr for 3 BHK. Possession by August 2026. Pallavi: That's good. Send me the details on WhatsApp. Vikram: Done. When can you visit? Pallavi: This weekend. Vikram: I'll block Saturday 11 AM for you.","[{""speaker"": ""agent"", ""text"": ""Vikram: Good morning Pallavi, wanted to share some updates about Godrej Elevate."", ""start"": 0.0, ""end"": 5.39}, {""speaker"": ""client"", ""text"": ""Pallavi: Yes, tell me."", ""start"": 5.92, ""end"": 12.39}, {""speaker"": ""agent"", ""text"": ""Vikram: We have a new tower launch with pre-launch pricing. Are you still looking in Dum Dum?"", ""start"": 13.85, ""end"": 16.02}, {""speaker"": ""client"", ""text"": ""Pallavi: Yes, what's the price?"", ""start"": 17.94, ""end"": 24.94}, {""speaker"": ""agent"", ""text"": ""Vikram: Starting at 6.26 Cr for 3 BHK. Possession by August 2026."", ""start"": 25.67, ""end"": 28.83}, {""speaker"": ""client"", ""text"": ""Pallavi: That's good. Send me the details on WhatsApp."", ""start"": 30.49, ""end"": 37.99}, {""speaker"": ""agent"", ""text"": ""Vikram: Done. When can you visit?"", ""start"": 39.12, ""end"": 46.73}, {""speaker"": ""client"", ""text"": ""Pallavi: This weekend."", ""start"": 47.81, ""end"": 51.48}, {""speaker"": ""agent"", ""text"": ""Vikram: I'll block Saturday 11 AM for you."", ""start"": 53.43, ""end"": 57.94}]",0.9
|
||||
TRX-00212,CAL-00447,en-IN,"Rahul: Good morning Deepak, wanted to share some updates about Godrej Blue. Deepak: Hi, I was about to call you. Rahul: Great minds! What were you thinking? Deepak: The price is still high. Can you match Ambuja Utpaala's rate? Rahul: I understand. Let me see what best I can do. Are you flexible on floor preference? Deepak: Not really. I want mid-floor east facing. Rahul: That's our premium inventory. But for serious buyers, I can check for a corporate discount. Deepak: Please do. We're ready to close quickly. Rahul: Will revert by tomorrow 2 PM.","[{""speaker"": ""agent"", ""text"": ""Rahul: Good morning Deepak, wanted to share some updates about Godrej Blue."", ""start"": 0.0, ""end"": 6.9}, {""speaker"": ""client"", ""text"": ""Deepak: Hi, I was about to call you."", ""start"": 7.62, ""end"": 13.94}, {""speaker"": ""agent"", ""text"": ""Rahul: Great minds! What were you thinking?"", ""start"": 14.94, ""end"": 20.48}, {""speaker"": ""client"", ""text"": ""Deepak: The price is still high. Can you match Ambuja Utpaala's rate?"", ""start"": 21.73, ""end"": 25.53}, {""speaker"": ""agent"", ""text"": ""Rahul: I understand. Let me see what best I can do. Are you flexible on floor preference?"", ""start"": 27.4, ""end"": 33.76}, {""speaker"": ""client"", ""text"": ""Deepak: Not really. I want mid-floor east facing."", ""start"": 35.29, ""end"": 40.76}, {""speaker"": ""agent"", ""text"": ""Rahul: That's our premium inventory. But for serious buyers, I can check for a corporate discount."", ""start"": 41.52, ""end"": 46.93}, {""speaker"": ""client"", ""text"": ""Deepak: Please do. We're ready to close quickly."", ""start"": 47.49, ""end"": 50.35}, {""speaker"": ""agent"", ""text"": ""Rahul: Will revert by tomorrow 2 PM."", ""start"": 50.91, ""end"": 56.84}]",0.91
|
||||
TRX-00213,CAL-00448,en-IN,"Rahul: Hello Deepak, this is Rahul from Velocity regarding Sugam Prakriti. Deepak: Yes, tell me. Rahul: We have a new tower launch with pre-launch pricing. Are you still looking in Barasat? Deepak: Yes, what's the price? Rahul: Starting at 2.86 Cr for 3 BHK. Possession by July 2026. Deepak: That's good. Send me the details on WhatsApp. Rahul: Done. When can you visit? Deepak: This weekend. Rahul: I'll block Saturday 11 AM for you.","[{""speaker"": ""agent"", ""text"": ""Rahul: Hello Deepak, this is Rahul from Velocity regarding Sugam Prakriti."", ""start"": 0.0, ""end"": 2.16}, {""speaker"": ""client"", ""text"": ""Deepak: Yes, tell me."", ""start"": 3.02, ""end"": 9.5}, {""speaker"": ""agent"", ""text"": ""Rahul: We have a new tower launch with pre-launch pricing. Are you still looking in Barasat?"", ""start"": 10.36, ""end"": 14.22}, {""speaker"": ""client"", ""text"": ""Deepak: Yes, what's the price?"", ""start"": 15.13, ""end"": 17.5}, {""speaker"": ""agent"", ""text"": ""Rahul: Starting at 2.86 Cr for 3 BHK. Possession by July 2026."", ""start"": 19.21, ""end"": 24.48}, {""speaker"": ""client"", ""text"": ""Deepak: That's good. Send me the details on WhatsApp."", ""start"": 25.97, ""end"": 30.65}, {""speaker"": ""agent"", ""text"": ""Rahul: Done. When can you visit?"", ""start"": 31.81, ""end"": 38.29}, {""speaker"": ""client"", ""text"": ""Deepak: This weekend."", ""start"": 39.61, ""end"": 44.15}, {""speaker"": ""agent"", ""text"": ""Rahul: I'll block Saturday 11 AM for you."", ""start"": 45.76, ""end"": 50.28}]",0.86
|
||||
TRX-00214,CAL-00449,en-IN,"Ananya: Hello Deb, this is Ananya from Velocity regarding DTC Good Earth. Deb: Hi, I was about to call you. Ananya: Great minds! What were you thinking? Deb: The price is still high. Can you match Atri Aqua's rate? Ananya: I understand. Let me see what best I can do. Are you flexible on floor preference? Deb: Not really. I want mid-floor east facing. Ananya: That's our premium inventory. But for serious buyers, I can check for a corporate discount. Deb: Please do. We're ready to close quickly. Ananya: Will revert by tomorrow 2 PM.","[{""speaker"": ""agent"", ""text"": ""Ananya: Hello Deb, this is Ananya from Velocity regarding DTC Good Earth."", ""start"": 0.0, ""end"": 4.23}, {""speaker"": ""client"", ""text"": ""Deb: Hi, I was about to call you."", ""start"": 5.05, ""end"": 10.48}, {""speaker"": ""agent"", ""text"": ""Ananya: Great minds! What were you thinking?"", ""start"": 11.27, ""end"": 16.29}, {""speaker"": ""client"", ""text"": ""Deb: The price is still high. Can you match Atri Aqua's rate?"", ""start"": 17.51, ""end"": 23.68}, {""speaker"": ""agent"", ""text"": ""Ananya: I understand. Let me see what best I can do. Are you flexible on floor preference?"", ""start"": 24.89, ""end"": 30.69}, {""speaker"": ""client"", ""text"": ""Deb: Not really. I want mid-floor east facing."", ""start"": 32.1, ""end"": 38.57}, {""speaker"": ""agent"", ""text"": ""Ananya: That's our premium inventory. But for serious buyers, I can check for a corporate discount."", ""start"": 39.33, ""end"": 46.91}, {""speaker"": ""client"", ""text"": ""Deb: Please do. We're ready to close quickly."", ""start"": 48.18, ""end"": 51.68}, {""speaker"": ""agent"", ""text"": ""Ananya: Will revert by tomorrow 2 PM."", ""start"": 53.64, ""end"": 59.93}]",0.96
|
||||
TRX-00215,CAL-00450,en-IN,"Vikram: Hi Anirban, following up on your enquiry for Merlin Avana. Anirban: Yes, tell me. Vikram: We have a new tower launch with pre-launch pricing. Are you still looking in Tangra? Anirban: Yes, what's the price? Vikram: Starting at 2.86 Cr for 3 BHK. Possession by July 2026. Anirban: That's good. Send me the details on WhatsApp. Vikram: Done. When can you visit? Anirban: This weekend. Vikram: I'll block Saturday 11 AM for you.","[{""speaker"": ""agent"", ""text"": ""Vikram: Hi Anirban, following up on your enquiry for Merlin Avana."", ""start"": 0.0, ""end"": 5.05}, {""speaker"": ""client"", ""text"": ""Anirban: Yes, tell me."", ""start"": 5.81, ""end"": 12.9}, {""speaker"": ""agent"", ""text"": ""Vikram: We have a new tower launch with pre-launch pricing. Are you still looking in Tangra?"", ""start"": 14.81, ""end"": 18.15}, {""speaker"": ""client"", ""text"": ""Anirban: Yes, what's the price?"", ""start"": 19.29, ""end"": 25.67}, {""speaker"": ""agent"", ""text"": ""Vikram: Starting at 2.86 Cr for 3 BHK. Possession by July 2026."", ""start"": 27.48, ""end"": 31.45}, {""speaker"": ""client"", ""text"": ""Anirban: That's good. Send me the details on WhatsApp."", ""start"": 32.13, ""end"": 36.56}, {""speaker"": ""agent"", ""text"": ""Vikram: Done. When can you visit?"", ""start"": 37.75, ""end"": 40.22}, {""speaker"": ""client"", ""text"": ""Anirban: This weekend."", ""start"": 41.77, ""end"": 47.36}, {""speaker"": ""agent"", ""text"": ""Vikram: I'll block Saturday 11 AM for you."", ""start"": 49.14, ""end"": 52.11}]",0.89
|
||||
TRX-00216,CAL-00452,en-IN,"Rahul: Hi Asha, following up on your enquiry for Ambuja Utpaala. Asha: Yes, tell me. Rahul: We have a new tower launch with pre-launch pricing. Are you still looking in Tollygunge? Asha: Yes, what's the price? Rahul: Starting at 4.46 Cr for 3 BHK. Possession by July 2026. Asha: That's good. Send me the details on WhatsApp. Rahul: Done. When can you visit? Asha: This weekend. Rahul: I'll block Saturday 11 AM for you.","[{""speaker"": ""agent"", ""text"": ""Rahul: Hi Asha, following up on your enquiry for Ambuja Utpaala."", ""start"": 0.0, ""end"": 7.63}, {""speaker"": ""client"", ""text"": ""Asha: Yes, tell me."", ""start"": 8.27, ""end"": 12.98}, {""speaker"": ""agent"", ""text"": ""Rahul: We have a new tower launch with pre-launch pricing. Are you still looking in Tollygunge?"", ""start"": 13.62, ""end"": 16.67}, {""speaker"": ""client"", ""text"": ""Asha: Yes, what's the price?"", ""start"": 18.61, ""end"": 21.01}, {""speaker"": ""agent"", ""text"": ""Rahul: Starting at 4.46 Cr for 3 BHK. Possession by July 2026."", ""start"": 21.97, ""end"": 26.82}, {""speaker"": ""client"", ""text"": ""Asha: That's good. Send me the details on WhatsApp."", ""start"": 28.24, ""end"": 30.27}, {""speaker"": ""agent"", ""text"": ""Rahul: Done. When can you visit?"", ""start"": 31.96, ""end"": 35.33}, {""speaker"": ""client"", ""text"": ""Asha: This weekend."", ""start"": 35.91, ""end"": 42.24}, {""speaker"": ""agent"", ""text"": ""Rahul: I'll block Saturday 11 AM for you."", ""start"": 43.16, ""end"": 50.65}]",0.92
|
||||
TRX-00217,CAL-00453,en-IN,"Rahul: Good morning Asha, wanted to share some updates about Ambuja Utpaala. Asha: Hi, I was about to call you. Rahul: Great minds! What were you thinking? Asha: The price is still high. Can you match Siddha Sky Waterfront's rate? Rahul: I understand. Let me see what best I can do. Are you flexible on floor preference? Asha: Not really. I want mid-floor east facing. Rahul: That's our premium inventory. But for serious buyers, I can check for a corporate discount. Asha: Please do. We're ready to close quickly. Rahul: Will revert by tomorrow 2 PM.","[{""speaker"": ""agent"", ""text"": ""Rahul: Good morning Asha, wanted to share some updates about Ambuja Utpaala."", ""start"": 0.0, ""end"": 6.39}, {""speaker"": ""client"", ""text"": ""Asha: Hi, I was about to call you."", ""start"": 8.06, ""end"": 13.45}, {""speaker"": ""agent"", ""text"": ""Rahul: Great minds! What were you thinking?"", ""start"": 14.37, ""end"": 21.93}, {""speaker"": ""client"", ""text"": ""Asha: The price is still high. Can you match Siddha Sky Waterfront's rate?"", ""start"": 23.51, ""end"": 27.93}, {""speaker"": ""agent"", ""text"": ""Rahul: I understand. Let me see what best I can do. Are you flexible on floor preference?"", ""start"": 28.94, ""end"": 35.86}, {""speaker"": ""client"", ""text"": ""Asha: Not really. I want mid-floor east facing."", ""start"": 37.71, ""end"": 39.73}, {""speaker"": ""agent"", ""text"": ""Rahul: That's our premium inventory. But for serious buyers, I can check for a corporate discount."", ""start"": 41.35, ""end"": 49.32}, {""speaker"": ""client"", ""text"": ""Asha: Please do. We're ready to close quickly."", ""start"": 51.22, ""end"": 53.24}, {""speaker"": ""agent"", ""text"": ""Rahul: Will revert by tomorrow 2 PM."", ""start"": 54.24, ""end"": 59.74}]",0.89
|
||||
TRX-00218,CAL-00454,en-IN,"Vikram: Good morning Asha, wanted to share some updates about Ambuja Utpaala. Asha: Hi, I was about to call you. Vikram: Great minds! What were you thinking? Asha: The price is still high. Can you match Eden Devprayag's rate? Vikram: I understand. Let me see what best I can do. Are you flexible on floor preference? Asha: Not really. I want mid-floor east facing. Vikram: That's our premium inventory. But for serious buyers, I can check for a corporate discount. Asha: Please do. We're ready to close quickly. Vikram: Will revert by tomorrow 2 PM.","[{""speaker"": ""agent"", ""text"": ""Vikram: Good morning Asha, wanted to share some updates about Ambuja Utpaala."", ""start"": 0.0, ""end"": 4.24}, {""speaker"": ""client"", ""text"": ""Asha: Hi, I was about to call you."", ""start"": 5.92, ""end"": 9.43}, {""speaker"": ""agent"", ""text"": ""Vikram: Great minds! What were you thinking?"", ""start"": 10.55, ""end"": 16.72}, {""speaker"": ""client"", ""text"": ""Asha: The price is still high. Can you match Eden Devprayag's rate?"", ""start"": 17.81, ""end"": 22.84}, {""speaker"": ""agent"", ""text"": ""Vikram: I understand. Let me see what best I can do. Are you flexible on floor preference?"", ""start"": 23.91, ""end"": 26.41}, {""speaker"": ""client"", ""text"": ""Asha: Not really. I want mid-floor east facing."", ""start"": 27.98, ""end"": 35.23}, {""speaker"": ""agent"", ""text"": ""Vikram: That's our premium inventory. But for serious buyers, I can check for a corporate discount."", ""start"": 36.32, ""end"": 43.52}, {""speaker"": ""client"", ""text"": ""Asha: Please do. We're ready to close quickly."", ""start"": 44.13, ""end"": 46.18}, {""speaker"": ""agent"", ""text"": ""Vikram: Will revert by tomorrow 2 PM."", ""start"": 47.85, ""end"": 53.45}]",0.83
|
||||
TRX-00219,CAL-00455,en-IN,"Vikram: Hi Deb, following up on your enquiry for Sugam Prakriti. Deb: Hi, I was about to call you. Vikram: Great minds! What were you thinking? Deb: The price is still high. Can you match Eden Devprayag's rate? Vikram: I understand. Let me see what best I can do. Are you flexible on floor preference? Deb: Not really. I want mid-floor east facing. Vikram: That's our premium inventory. But for serious buyers, I can check for a corporate discount. Deb: Please do. We're ready to close quickly. Vikram: Will revert by tomorrow 2 PM.","[{""speaker"": ""agent"", ""text"": ""Vikram: Hi Deb, following up on your enquiry for Sugam Prakriti."", ""start"": 0.0, ""end"": 7.75}, {""speaker"": ""client"", ""text"": ""Deb: Hi, I was about to call you."", ""start"": 9.54, ""end"": 15.06}, {""speaker"": ""agent"", ""text"": ""Vikram: Great minds! What were you thinking?"", ""start"": 16.18, ""end"": 21.9}, {""speaker"": ""client"", ""text"": ""Deb: The price is still high. Can you match Eden Devprayag's rate?"", ""start"": 22.93, ""end"": 29.07}, {""speaker"": ""agent"", ""text"": ""Vikram: I understand. Let me see what best I can do. Are you flexible on floor preference?"", ""start"": 30.14, ""end"": 33.99}, {""speaker"": ""client"", ""text"": ""Deb: Not really. I want mid-floor east facing."", ""start"": 35.09, ""end"": 38.66}, {""speaker"": ""agent"", ""text"": ""Vikram: That's our premium inventory. But for serious buyers, I can check for a corporate discount."", ""start"": 39.65, ""end"": 41.65}, {""speaker"": ""client"", ""text"": ""Deb: Please do. We're ready to close quickly."", ""start"": 43.63, ""end"": 48.01}, {""speaker"": ""agent"", ""text"": ""Vikram: Will revert by tomorrow 2 PM."", ""start"": 49.21, ""end"": 54.88}]",0.91
|
||||
TRX-00220,CAL-00456,en-IN,"Ananya: Hello Ananya, this is Ananya from Velocity regarding Eden Devprayag. Ananya: Yes, tell me. Ananya: We have a new tower launch with pre-launch pricing. Are you still looking in Rajarhat? Ananya: Yes, what's the price? Ananya: Starting at 5.23 Cr for 3 BHK. Possession by June 2026. Ananya: That's good. Send me the details on WhatsApp. Ananya: Done. When can you visit? Ananya: This weekend. Ananya: I'll block Saturday 11 AM for you.","[{""speaker"": ""agent"", ""text"": ""Ananya: Hello Ananya, this is Ananya from Velocity regarding Eden Devprayag."", ""start"": 0.0, ""end"": 5.95}, {""speaker"": ""client"", ""text"": ""Ananya: Yes, tell me."", ""start"": 7.68, ""end"": 13.18}, {""speaker"": ""agent"", ""text"": ""Ananya: We have a new tower launch with pre-launch pricing. Are you still looking in Rajarhat?"", ""start"": 14.01, ""end"": 18.94}, {""speaker"": ""client"", ""text"": ""Ananya: Yes, what's the price?"", ""start"": 20.62, ""end"": 23.63}, {""speaker"": ""agent"", ""text"": ""Ananya: Starting at 5.23 Cr for 3 BHK. Possession by June 2026."", ""start"": 24.57, ""end"": 29.64}, {""speaker"": ""client"", ""text"": ""Ananya: That's good. Send me the details on WhatsApp."", ""start"": 31.25, ""end"": 35.82}, {""speaker"": ""agent"", ""text"": ""Ananya: Done. When can you visit?"", ""start"": 37.63, ""end"": 40.9}, {""speaker"": ""client"", ""text"": ""Ananya: This weekend."", ""start"": 42.78, ""end"": 46.97}, {""speaker"": ""agent"", ""text"": ""Ananya: I'll block Saturday 11 AM for you."", ""start"": 48.09, ""end"": 52.49}]",0.9
|
||||
TRX-00221,CAL-00458,en-IN,"Rahul: Hi Ritu, following up on your enquiry for Atri Aqua. Ritu: Hi, I was about to call you. Rahul: Great minds! What were you thinking? Ritu: The price is still high. Can you match Ambuja Utpaala's rate? Rahul: I understand. Let me see what best I can do. Are you flexible on floor preference? Ritu: Not really. I want mid-floor east facing. Rahul: That's our premium inventory. But for serious buyers, I can check for a corporate discount. Ritu: Please do. We're ready to close quickly. Rahul: Will revert by tomorrow 2 PM.","[{""speaker"": ""agent"", ""text"": ""Rahul: Hi Ritu, following up on your enquiry for Atri Aqua."", ""start"": 0.0, ""end"": 3.06}, {""speaker"": ""client"", ""text"": ""Ritu: Hi, I was about to call you."", ""start"": 3.93, ""end"": 9.91}, {""speaker"": ""agent"", ""text"": ""Rahul: Great minds! What were you thinking?"", ""start"": 11.54, ""end"": 17.0}, {""speaker"": ""client"", ""text"": ""Ritu: The price is still high. Can you match Ambuja Utpaala's rate?"", ""start"": 18.38, ""end"": 23.68}, {""speaker"": ""agent"", ""text"": ""Rahul: I understand. Let me see what best I can do. Are you flexible on floor preference?"", ""start"": 25.23, ""end"": 28.81}, {""speaker"": ""client"", ""text"": ""Ritu: Not really. I want mid-floor east facing."", ""start"": 29.51, ""end"": 33.45}, {""speaker"": ""agent"", ""text"": ""Rahul: That's our premium inventory. But for serious buyers, I can check for a corporate discount."", ""start"": 34.62, ""end"": 38.7}, {""speaker"": ""client"", ""text"": ""Ritu: Please do. We're ready to close quickly."", ""start"": 40.27, ""end"": 43.39}, {""speaker"": ""agent"", ""text"": ""Rahul: Will revert by tomorrow 2 PM."", ""start"": 44.35, ""end"": 52.28}]",0.94
|
||||
TRX-00222,CAL-00460,en-IN,"Ananya: Good morning Deb, wanted to share some updates about Siddha Sky Waterfront. Deb: Yes, tell me. Ananya: We have a new tower launch with pre-launch pricing. Are you still looking in Beliaghata? Deb: Yes, what's the price? Ananya: Starting at 5.45 Cr for 3 BHK. Possession by June 2026. Deb: That's good. Send me the details on WhatsApp. Ananya: Done. When can you visit? Deb: This weekend. Ananya: I'll block Saturday 11 AM for you.","[{""speaker"": ""agent"", ""text"": ""Ananya: Good morning Deb, wanted to share some updates about Siddha Sky Waterfront."", ""start"": 0.0, ""end"": 4.4}, {""speaker"": ""client"", ""text"": ""Deb: Yes, tell me."", ""start"": 5.74, ""end"": 13.13}, {""speaker"": ""agent"", ""text"": ""Ananya: We have a new tower launch with pre-launch pricing. Are you still looking in Beliaghata?"", ""start"": 14.04, ""end"": 21.77}, {""speaker"": ""client"", ""text"": ""Deb: Yes, what's the price?"", ""start"": 22.58, ""end"": 26.21}, {""speaker"": ""agent"", ""text"": ""Ananya: Starting at 5.45 Cr for 3 BHK. Possession by June 2026."", ""start"": 27.5, ""end"": 35.23}, {""speaker"": ""client"", ""text"": ""Deb: That's good. Send me the details on WhatsApp."", ""start"": 36.36, ""end"": 38.92}, {""speaker"": ""agent"", ""text"": ""Ananya: Done. When can you visit?"", ""start"": 40.22, ""end"": 42.74}, {""speaker"": ""client"", ""text"": ""Deb: This weekend."", ""start"": 43.94, ""end"": 50.74}, {""speaker"": ""agent"", ""text"": ""Ananya: I'll block Saturday 11 AM for you."", ""start"": 51.67, ""end"": 55.1}]",0.87
|
||||
TRX-00223,CAL-00461,en-IN,"Rahul: Hello Deb, this is Rahul from Velocity regarding Siddha Sky Waterfront. Deb: Hi, I was about to call you. Rahul: Great minds! What were you thinking? Deb: The price is still high. Can you match Shriram Grand City's rate? Rahul: I understand. Let me see what best I can do. Are you flexible on floor preference? Deb: Not really. I want mid-floor east facing. Rahul: That's our premium inventory. But for serious buyers, I can check for a corporate discount. Deb: Please do. We're ready to close quickly. Rahul: Will revert by tomorrow 2 PM.","[{""speaker"": ""agent"", ""text"": ""Rahul: Hello Deb, this is Rahul from Velocity regarding Siddha Sky Waterfront."", ""start"": 0.0, ""end"": 2.75}, {""speaker"": ""client"", ""text"": ""Deb: Hi, I was about to call you."", ""start"": 3.95, ""end"": 9.3}, {""speaker"": ""agent"", ""text"": ""Rahul: Great minds! What were you thinking?"", ""start"": 10.36, ""end"": 13.79}, {""speaker"": ""client"", ""text"": ""Deb: The price is still high. Can you match Shriram Grand City's rate?"", ""start"": 14.38, ""end"": 21.27}, {""speaker"": ""agent"", ""text"": ""Rahul: I understand. Let me see what best I can do. Are you flexible on floor preference?"", ""start"": 21.81, ""end"": 26.59}, {""speaker"": ""client"", ""text"": ""Deb: Not really. I want mid-floor east facing."", ""start"": 27.73, ""end"": 31.69}, {""speaker"": ""agent"", ""text"": ""Rahul: That's our premium inventory. But for serious buyers, I can check for a corporate discount."", ""start"": 33.57, ""end"": 40.01}, {""speaker"": ""client"", ""text"": ""Deb: Please do. We're ready to close quickly."", ""start"": 41.76, ""end"": 46.4}, {""speaker"": ""agent"", ""text"": ""Rahul: Will revert by tomorrow 2 PM."", ""start"": 47.53, ""end"": 52.8}]",0.89
|
||||
TRX-00224,CAL-00465,en-IN,"Rahul: Hello Abhishek, this is Rahul from Velocity regarding Atri Surya Toron. Abhishek: Yes, tell me. Rahul: We have a new tower launch with pre-launch pricing. Are you still looking in Rajarhat? Abhishek: Yes, what's the price? Rahul: Starting at 2.11 Cr for 3 BHK. Possession by October 2026. Abhishek: That's good. Send me the details on WhatsApp. Rahul: Done. When can you visit? Abhishek: This weekend. Rahul: I'll block Saturday 11 AM for you.","[{""speaker"": ""agent"", ""text"": ""Rahul: Hello Abhishek, this is Rahul from Velocity regarding Atri Surya Toron."", ""start"": 0.0, ""end"": 4.65}, {""speaker"": ""client"", ""text"": ""Abhishek: Yes, tell me."", ""start"": 6.42, ""end"": 11.89}, {""speaker"": ""agent"", ""text"": ""Rahul: We have a new tower launch with pre-launch pricing. Are you still looking in Rajarhat?"", ""start"": 13.48, ""end"": 19.26}, {""speaker"": ""client"", ""text"": ""Abhishek: Yes, what's the price?"", ""start"": 19.95, ""end"": 26.68}, {""speaker"": ""agent"", ""text"": ""Rahul: Starting at 2.11 Cr for 3 BHK. Possession by October 2026."", ""start"": 28.27, ""end"": 35.28}, {""speaker"": ""client"", ""text"": ""Abhishek: That's good. Send me the details on WhatsApp."", ""start"": 37.08, ""end"": 39.32}, {""speaker"": ""agent"", ""text"": ""Rahul: Done. When can you visit?"", ""start"": 41.12, ""end"": 44.7}, {""speaker"": ""client"", ""text"": ""Abhishek: This weekend."", ""start"": 45.25, ""end"": 52.79}, {""speaker"": ""agent"", ""text"": ""Rahul: I'll block Saturday 11 AM for you."", ""start"": 53.76, ""end"": 58.97}]",0.87
|
||||
TRX-00225,CAL-00466,en-IN,"Rahul: Good morning Moumita, wanted to share some updates about Godrej Blue. Moumita: Yes, tell me. Rahul: We have a new tower launch with pre-launch pricing. Are you still looking in New Town? Moumita: Yes, what's the price? Rahul: Starting at 3.46 Cr for 3 BHK. Possession by July 2026. Moumita: That's good. Send me the details on WhatsApp. Rahul: Done. When can you visit? Moumita: This weekend. Rahul: I'll block Saturday 11 AM for you.","[{""speaker"": ""agent"", ""text"": ""Rahul: Good morning Moumita, wanted to share some updates about Godrej Blue."", ""start"": 0.0, ""end"": 6.28}, {""speaker"": ""client"", ""text"": ""Moumita: Yes, tell me."", ""start"": 7.8, ""end"": 11.47}, {""speaker"": ""agent"", ""text"": ""Rahul: We have a new tower launch with pre-launch pricing. Are you still looking in New Town?"", ""start"": 13.15, ""end"": 16.98}, {""speaker"": ""client"", ""text"": ""Moumita: Yes, what's the price?"", ""start"": 18.01, ""end"": 24.76}, {""speaker"": ""agent"", ""text"": ""Rahul: Starting at 3.46 Cr for 3 BHK. Possession by July 2026."", ""start"": 26.36, ""end"": 32.56}, {""speaker"": ""client"", ""text"": ""Moumita: That's good. Send me the details on WhatsApp."", ""start"": 33.32, ""end"": 39.05}, {""speaker"": ""agent"", ""text"": ""Rahul: Done. When can you visit?"", ""start"": 40.43, ""end"": 42.76}, {""speaker"": ""client"", ""text"": ""Moumita: This weekend."", ""start"": 43.36, ""end"": 46.97}, {""speaker"": ""agent"", ""text"": ""Rahul: I'll block Saturday 11 AM for you."", ""start"": 48.83, ""end"": 52.52}]",0.95
|
||||
TRX-00226,CAL-00468,en-IN,"Vikram: Good morning Aditya, wanted to share some updates about DTC Good Earth. Aditya: Hi, I was about to call you. Vikram: Great minds! What were you thinking? Aditya: The price is still high. Can you match Eden Devprayag's rate? Vikram: I understand. Let me see what best I can do. Are you flexible on floor preference? Aditya: Not really. I want mid-floor east facing. Vikram: That's our premium inventory. But for serious buyers, I can check for a corporate discount. Aditya: Please do. We're ready to close quickly. Vikram: Will revert by tomorrow 2 PM.","[{""speaker"": ""agent"", ""text"": ""Vikram: Good morning Aditya, wanted to share some updates about DTC Good Earth."", ""start"": 0.0, ""end"": 2.85}, {""speaker"": ""client"", ""text"": ""Aditya: Hi, I was about to call you."", ""start"": 3.67, ""end"": 6.38}, {""speaker"": ""agent"", ""text"": ""Vikram: Great minds! What were you thinking?"", ""start"": 7.39, ""end"": 13.76}, {""speaker"": ""client"", ""text"": ""Aditya: The price is still high. Can you match Eden Devprayag's rate?"", ""start"": 14.85, ""end"": 19.4}, {""speaker"": ""agent"", ""text"": ""Vikram: I understand. Let me see what best I can do. Are you flexible on floor preference?"", ""start"": 20.85, ""end"": 22.99}, {""speaker"": ""client"", ""text"": ""Aditya: Not really. I want mid-floor east facing."", ""start"": 24.44, ""end"": 27.15}, {""speaker"": ""agent"", ""text"": ""Vikram: That's our premium inventory. But for serious buyers, I can check for a corporate discount."", ""start"": 28.58, ""end"": 36.3}, {""speaker"": ""client"", ""text"": ""Aditya: Please do. We're ready to close quickly."", ""start"": 37.93, ""end"": 42.18}, {""speaker"": ""agent"", ""text"": ""Vikram: Will revert by tomorrow 2 PM."", ""start"": 44.15, ""end"": 51.97}]",0.91
|
||||
TRX-00227,CAL-00470,en-IN,"Priya: Hello Aditya, this is Priya from Velocity regarding DTC Good Earth. Aditya: Hi, I was about to call you. Priya: Great minds! What were you thinking? Aditya: The price is still high. Can you match Shriram Grand City's rate? Priya: I understand. Let me see what best I can do. Are you flexible on floor preference? Aditya: Not really. I want mid-floor east facing. Priya: That's our premium inventory. But for serious buyers, I can check for a corporate discount. Aditya: Please do. We're ready to close quickly. Priya: Will revert by tomorrow 2 PM.","[{""speaker"": ""agent"", ""text"": ""Priya: Hello Aditya, this is Priya from Velocity regarding DTC Good Earth."", ""start"": 0.0, ""end"": 7.77}, {""speaker"": ""client"", ""text"": ""Aditya: Hi, I was about to call you."", ""start"": 9.14, ""end"": 14.94}, {""speaker"": ""agent"", ""text"": ""Priya: Great minds! What were you thinking?"", ""start"": 16.28, ""end"": 21.31}, {""speaker"": ""client"", ""text"": ""Aditya: The price is still high. Can you match Shriram Grand City's rate?"", ""start"": 22.6, ""end"": 28.67}, {""speaker"": ""agent"", ""text"": ""Priya: I understand. Let me see what best I can do. Are you flexible on floor preference?"", ""start"": 30.59, ""end"": 35.77}, {""speaker"": ""client"", ""text"": ""Aditya: Not really. I want mid-floor east facing."", ""start"": 36.69, ""end"": 40.58}, {""speaker"": ""agent"", ""text"": ""Priya: That's our premium inventory. But for serious buyers, I can check for a corporate discount."", ""start"": 42.07, ""end"": 49.76}, {""speaker"": ""client"", ""text"": ""Aditya: Please do. We're ready to close quickly."", ""start"": 51.56, ""end"": 59.16}, {""speaker"": ""agent"", ""text"": ""Priya: Will revert by tomorrow 2 PM."", ""start"": 60.01, ""end"": 62.98}]",0.92
|
||||
TRX-00228,CAL-00471,en-IN,"Ananya: Hi Moumita, following up on your enquiry for Siddha Sky Waterfront. Moumita: Yes, tell me. Ananya: We have a new tower launch with pre-launch pricing. Are you still looking in Beliaghata? Moumita: Yes, what's the price? Ananya: Starting at 3.97 Cr for 3 BHK. Possession by September 2026. Moumita: That's good. Send me the details on WhatsApp. Ananya: Done. When can you visit? Moumita: This weekend. Ananya: I'll block Saturday 11 AM for you.","[{""speaker"": ""agent"", ""text"": ""Ananya: Hi Moumita, following up on your enquiry for Siddha Sky Waterfront."", ""start"": 0.0, ""end"": 6.15}, {""speaker"": ""client"", ""text"": ""Moumita: Yes, tell me."", ""start"": 8.05, ""end"": 13.62}, {""speaker"": ""agent"", ""text"": ""Ananya: We have a new tower launch with pre-launch pricing. Are you still looking in Beliaghata?"", ""start"": 14.58, ""end"": 20.04}, {""speaker"": ""client"", ""text"": ""Moumita: Yes, what's the price?"", ""start"": 21.69, ""end"": 26.49}, {""speaker"": ""agent"", ""text"": ""Ananya: Starting at 3.97 Cr for 3 BHK. Possession by September 2026."", ""start"": 28.41, ""end"": 32.08}, {""speaker"": ""client"", ""text"": ""Moumita: That's good. Send me the details on WhatsApp."", ""start"": 33.23, ""end"": 40.74}, {""speaker"": ""agent"", ""text"": ""Ananya: Done. When can you visit?"", ""start"": 42.34, ""end"": 46.4}, {""speaker"": ""client"", ""text"": ""Moumita: This weekend."", ""start"": 47.53, ""end"": 51.31}, {""speaker"": ""agent"", ""text"": ""Ananya: I'll block Saturday 11 AM for you."", ""start"": 52.4, ""end"": 54.97}]",0.89
|
||||
TRX-00229,CAL-00473,en-IN,"Vikram: Hello Abhishek, this is Vikram from Velocity regarding Siddha Suburbia Bungalow. Abhishek: Yes, tell me. Vikram: We have a new tower launch with pre-launch pricing. Are you still looking in Madanpur? Abhishek: Yes, what's the price? Vikram: Starting at 4.66 Cr for 3 BHK. Possession by June 2026. Abhishek: That's good. Send me the details on WhatsApp. Vikram: Done. When can you visit? Abhishek: This weekend. Vikram: I'll block Saturday 11 AM for you.","[{""speaker"": ""agent"", ""text"": ""Vikram: Hello Abhishek, this is Vikram from Velocity regarding Siddha Suburbia Bungalow."", ""start"": 0.0, ""end"": 4.4}, {""speaker"": ""client"", ""text"": ""Abhishek: Yes, tell me."", ""start"": 4.91, ""end"": 6.92}, {""speaker"": ""agent"", ""text"": ""Vikram: We have a new tower launch with pre-launch pricing. Are you still looking in Madanpur?"", ""start"": 8.85, ""end"": 14.83}, {""speaker"": ""client"", ""text"": ""Abhishek: Yes, what's the price?"", ""start"": 16.06, ""end"": 21.54}, {""speaker"": ""agent"", ""text"": ""Vikram: Starting at 4.66 Cr for 3 BHK. Possession by June 2026."", ""start"": 22.71, ""end"": 29.11}, {""speaker"": ""client"", ""text"": ""Abhishek: That's good. Send me the details on WhatsApp."", ""start"": 30.71, ""end"": 34.11}, {""speaker"": ""agent"", ""text"": ""Vikram: Done. When can you visit?"", ""start"": 36.1, ""end"": 43.92}, {""speaker"": ""client"", ""text"": ""Abhishek: This weekend."", ""start"": 45.87, ""end"": 53.45}, {""speaker"": ""agent"", ""text"": ""Vikram: I'll block Saturday 11 AM for you."", ""start"": 55.08, ""end"": 61.13}]",0.9
|
||||
TRX-00230,CAL-00474,en-IN,"Priya: Hello Debjani, this is Priya from Velocity regarding Siddha Serena. Debjani: Hi, I was about to call you. Priya: Great minds! What were you thinking? Debjani: The price is still high. Can you match Sugam Prakriti's rate? Priya: I understand. Let me see what best I can do. Are you flexible on floor preference? Debjani: Not really. I want mid-floor east facing. Priya: That's our premium inventory. But for serious buyers, I can check for a corporate discount. Debjani: Please do. We're ready to close quickly. Priya: Will revert by tomorrow 2 PM.","[{""speaker"": ""agent"", ""text"": ""Priya: Hello Debjani, this is Priya from Velocity regarding Siddha Serena."", ""start"": 0.0, ""end"": 3.08}, {""speaker"": ""client"", ""text"": ""Debjani: Hi, I was about to call you."", ""start"": 4.62, ""end"": 10.74}, {""speaker"": ""agent"", ""text"": ""Priya: Great minds! What were you thinking?"", ""start"": 12.5, ""end"": 20.33}, {""speaker"": ""client"", ""text"": ""Debjani: The price is still high. Can you match Sugam Prakriti's rate?"", ""start"": 22.17, ""end"": 28.37}, {""speaker"": ""agent"", ""text"": ""Priya: I understand. Let me see what best I can do. Are you flexible on floor preference?"", ""start"": 29.2, ""end"": 36.95}, {""speaker"": ""client"", ""text"": ""Debjani: Not really. I want mid-floor east facing."", ""start"": 37.8, ""end"": 44.35}, {""speaker"": ""agent"", ""text"": ""Priya: That's our premium inventory. But for serious buyers, I can check for a corporate discount."", ""start"": 46.04, ""end"": 50.84}, {""speaker"": ""client"", ""text"": ""Debjani: Please do. We're ready to close quickly."", ""start"": 52.32, ""end"": 54.47}, {""speaker"": ""agent"", ""text"": ""Priya: Will revert by tomorrow 2 PM."", ""start"": 55.26, ""end"": 59.25}]",0.86
|
||||
TRX-00231,CAL-00476,en-IN,"Priya: Hello Debjani, this is Priya from Velocity regarding Siddha Serena. Debjani: Hi, I was about to call you. Priya: Great minds! What were you thinking? Debjani: The price is still high. Can you match Atri Aqua's rate? Priya: I understand. Let me see what best I can do. Are you flexible on floor preference? Debjani: Not really. I want mid-floor east facing. Priya: That's our premium inventory. But for serious buyers, I can check for a corporate discount. Debjani: Please do. We're ready to close quickly. Priya: Will revert by tomorrow 2 PM.","[{""speaker"": ""agent"", ""text"": ""Priya: Hello Debjani, this is Priya from Velocity regarding Siddha Serena."", ""start"": 0.0, ""end"": 2.79}, {""speaker"": ""client"", ""text"": ""Debjani: Hi, I was about to call you."", ""start"": 4.75, ""end"": 12.22}, {""speaker"": ""agent"", ""text"": ""Priya: Great minds! What were you thinking?"", ""start"": 13.54, ""end"": 18.92}, {""speaker"": ""client"", ""text"": ""Debjani: The price is still high. Can you match Atri Aqua's rate?"", ""start"": 20.32, ""end"": 28.0}, {""speaker"": ""agent"", ""text"": ""Priya: I understand. Let me see what best I can do. Are you flexible on floor preference?"", ""start"": 29.91, ""end"": 36.7}, {""speaker"": ""client"", ""text"": ""Debjani: Not really. I want mid-floor east facing."", ""start"": 38.65, ""end"": 43.25}, {""speaker"": ""agent"", ""text"": ""Priya: That's our premium inventory. But for serious buyers, I can check for a corporate discount."", ""start"": 43.87, ""end"": 46.9}, {""speaker"": ""client"", ""text"": ""Debjani: Please do. We're ready to close quickly."", ""start"": 48.46, ""end"": 54.11}, {""speaker"": ""agent"", ""text"": ""Priya: Will revert by tomorrow 2 PM."", ""start"": 54.89, ""end"": 59.94}]",0.85
|
||||
|
81
db assets/synthetic_crm_v1/csv/intel_vehicle_events.csv
Normal file
81
db assets/synthetic_crm_v1/csv/intel_vehicle_events.csv
Normal file
@@ -0,0 +1,81 @@
|
||||
event_id,person_id,vehicle_number,event_type,detected_at,location_ref,confidence,metadata_json
|
||||
VEH-0001,PER-0061,WB-08-F1134,entry,2024-08-10T00:00:00,Siddha Sky Waterfront,0.77,"{""camera_id"": ""CAM-010"", ""gate"": ""service""}"
|
||||
VEH-0002,PER-0125,WB-02-E4358,repeat_visit,2025-07-07T00:00:00,Eden Devprayag,0.77,"{""camera_id"": ""CAM-007"", ""gate"": ""main""}"
|
||||
VEH-0003,PER-0094-CO,WB-06-A1170,exit,2025-12-11T00:00:00,Siddha Sky Waterfront,0.79,"{""camera_id"": ""CAM-007"", ""gate"": ""basement""}"
|
||||
VEH-0004,PER-0026,WB-06-E4013,exit,2024-12-02T00:00:00,DTC Good Earth,0.76,"{""camera_id"": ""CAM-003"", ""gate"": ""service""}"
|
||||
VEH-0005,PER-0090,WB-08-E4580,exit,2025-02-03T00:00:00,Eden Devprayag,0.77,"{""camera_id"": ""CAM-017"", ""gate"": ""service""}"
|
||||
VEH-0006,PER-0128,WB-04-C6881,exit,2025-11-26T00:00:00,Godrej Blue,0.85,"{""camera_id"": ""CAM-004"", ""gate"": ""service""}"
|
||||
VEH-0007,PER-0008-CO,WB-08-F4789,repeat_visit,2026-04-15T00:00:00,Merlin Avana,0.78,"{""camera_id"": ""CAM-014"", ""gate"": ""service""}"
|
||||
VEH-0008,PER-0062-CO,WB-04-G1847,exit,2026-02-17T00:00:00,Shriram Grand City,0.79,"{""camera_id"": ""CAM-019"", ""gate"": ""service""}"
|
||||
VEH-0009,PER-0113,WB-02-E1118,entry,2025-09-21T00:00:00,Atri Surya Toron,0.93,"{""camera_id"": ""CAM-011"", ""gate"": ""service""}"
|
||||
VEH-0010,PER-0025-CO,WB-02-E4864,repeat_visit,2024-07-09T00:00:00,Siddha Suburbia Bungalow,0.91,"{""camera_id"": ""CAM-010"", ""gate"": ""basement""}"
|
||||
VEH-0011,PER-0139,WB-08-E4835,exit,2025-10-26T00:00:00,Atri Aqua,0.81,"{""camera_id"": ""CAM-012"", ""gate"": ""service""}"
|
||||
VEH-0012,PER-0118,WB-02-C3555,repeat_visit,2025-02-16T00:00:00,Godrej Elevate,0.87,"{""camera_id"": ""CAM-005"", ""gate"": ""service""}"
|
||||
VEH-0013,PER-0059-CO,WB-04-C2688,entry,2025-03-21T00:00:00,Atri Aqua,0.86,"{""camera_id"": ""CAM-018"", ""gate"": ""basement""}"
|
||||
VEH-0014,PER-0007,WB-04-B1703,entry,2025-12-21T00:00:00,Siddha Serena,0.79,"{""camera_id"": ""CAM-020"", ""gate"": ""main""}"
|
||||
VEH-0015,PER-0120,WB-02-D4004,repeat_visit,2026-04-17T00:00:00,DTC Sojon,0.82,"{""camera_id"": ""CAM-015"", ""gate"": ""main""}"
|
||||
VEH-0016,PER-0013-CO,WB-06-E2385,exit,2025-06-05T00:00:00,Atri Aqua,0.78,"{""camera_id"": ""CAM-007"", ""gate"": ""main""}"
|
||||
VEH-0017,PER-0101,WB-04-F6312,repeat_visit,2025-06-18T00:00:00,Siddha Sky Waterfront,0.82,"{""camera_id"": ""CAM-011"", ""gate"": ""basement""}"
|
||||
VEH-0018,PER-0156,WB-04-D9000,exit,2024-06-21T00:00:00,DTC Sojon,0.95,"{""camera_id"": ""CAM-001"", ""gate"": ""service""}"
|
||||
VEH-0019,PER-0117,WB-06-F1728,entry,2025-11-10T00:00:00,DTC Good Earth,0.78,"{""camera_id"": ""CAM-012"", ""gate"": ""service""}"
|
||||
VEH-0020,PER-0154,WB-02-E4892,exit,2024-08-10T00:00:00,Godrej Elevate,0.86,"{""camera_id"": ""CAM-012"", ""gate"": ""service""}"
|
||||
VEH-0021,PER-0100,WB-06-G2993,exit,2024-06-14T00:00:00,Eden Devprayag,0.84,"{""camera_id"": ""CAM-008"", ""gate"": ""basement""}"
|
||||
VEH-0022,PER-0085,WB-08-D8769,entry,2025-02-02T00:00:00,Atri Surya Toron,0.93,"{""camera_id"": ""CAM-002"", ""gate"": ""main""}"
|
||||
VEH-0023,PER-0029,WB-06-C8728,exit,2024-07-24T00:00:00,Siddha Serena,0.81,"{""camera_id"": ""CAM-018"", ""gate"": ""main""}"
|
||||
VEH-0024,PER-0010,WB-02-E5505,repeat_visit,2025-05-21T00:00:00,Siddha Sky Waterfront,0.87,"{""camera_id"": ""CAM-001"", ""gate"": ""basement""}"
|
||||
VEH-0025,PER-0079,WB-04-B9891,exit,2024-10-23T00:00:00,Eden Devprayag,0.86,"{""camera_id"": ""CAM-002"", ""gate"": ""main""}"
|
||||
VEH-0026,PER-0114,WB-06-F9452,exit,2025-06-06T00:00:00,Atri Aqua,0.81,"{""camera_id"": ""CAM-015"", ""gate"": ""main""}"
|
||||
VEH-0027,PER-0077,WB-02-D1364,entry,2024-06-09T00:00:00,Ambuja Utpaala,0.91,"{""camera_id"": ""CAM-008"", ""gate"": ""basement""}"
|
||||
VEH-0028,PER-0069,WB-04-F5939,entry,2026-03-11T00:00:00,Merlin Avana,0.88,"{""camera_id"": ""CAM-007"", ""gate"": ""service""}"
|
||||
VEH-0029,PER-0159,WB-06-A2571,exit,2024-10-11T00:00:00,Godrej Elevate,0.92,"{""camera_id"": ""CAM-015"", ""gate"": ""service""}"
|
||||
VEH-0030,PER-0143,WB-06-A7821,entry,2025-10-01T00:00:00,Shriram Grand City,0.8,"{""camera_id"": ""CAM-016"", ""gate"": ""main""}"
|
||||
VEH-0031,PER-0152,WB-08-F9286,exit,2024-03-13T00:00:00,Eden Devprayag,0.78,"{""camera_id"": ""CAM-003"", ""gate"": ""service""}"
|
||||
VEH-0032,PER-0145-CO,WB-06-G6285,exit,2025-07-04T00:00:00,Sugam Prakriti,0.86,"{""camera_id"": ""CAM-007"", ""gate"": ""main""}"
|
||||
VEH-0033,PER-0084-CO,WB-04-A7412,entry,2024-12-27T00:00:00,Atri Aqua,0.89,"{""camera_id"": ""CAM-001"", ""gate"": ""main""}"
|
||||
VEH-0034,PER-0183,WB-02-H8902,repeat_visit,2025-06-06T00:00:00,Shriram Grand City,0.84,"{""camera_id"": ""CAM-011"", ""gate"": ""main""}"
|
||||
VEH-0035,PER-0078,WB-06-H1519,entry,2025-02-13T00:00:00,Atri Aqua,0.78,"{""camera_id"": ""CAM-002"", ""gate"": ""main""}"
|
||||
VEH-0036,PER-0093,WB-08-H6456,repeat_visit,2024-03-20T00:00:00,Siddha Serena,0.89,"{""camera_id"": ""CAM-018"", ""gate"": ""service""}"
|
||||
VEH-0037,PER-0135,WB-02-C4263,repeat_visit,2026-03-15T00:00:00,Ambuja Utpaala,0.79,"{""camera_id"": ""CAM-001"", ""gate"": ""service""}"
|
||||
VEH-0038,PER-0158,WB-06-E8943,entry,2025-04-20T00:00:00,Shriram Grand City,0.9,"{""camera_id"": ""CAM-001"", ""gate"": ""basement""}"
|
||||
VEH-0039,PER-0181,WB-08-A6878,exit,2025-09-23T00:00:00,DTC Good Earth,0.93,"{""camera_id"": ""CAM-005"", ""gate"": ""basement""}"
|
||||
VEH-0040,PER-0169,WB-04-D2156,repeat_visit,2024-04-07T00:00:00,Atri Aqua,0.9,"{""camera_id"": ""CAM-011"", ""gate"": ""service""}"
|
||||
VEH-0041,PER-0144-CO,WB-04-C2401,repeat_visit,2025-12-24T00:00:00,Godrej Blue,0.86,"{""camera_id"": ""CAM-001"", ""gate"": ""main""}"
|
||||
VEH-0042,PER-0095-CO,WB-08-C5769,repeat_visit,2024-09-17T00:00:00,Siddha Suburbia Bungalow,0.82,"{""camera_id"": ""CAM-013"", ""gate"": ""service""}"
|
||||
VEH-0043,PER-0090-CO,WB-08-B4525,exit,2024-01-15T00:00:00,Atri Surya Toron,0.8,"{""camera_id"": ""CAM-018"", ""gate"": ""service""}"
|
||||
VEH-0044,PER-0024,WB-06-H9534,exit,2024-08-18T00:00:00,Sugam Prakriti,0.81,"{""camera_id"": ""CAM-002"", ""gate"": ""main""}"
|
||||
VEH-0045,PER-0035,WB-08-E4965,repeat_visit,2024-09-06T00:00:00,Godrej Blue,0.89,"{""camera_id"": ""CAM-004"", ""gate"": ""service""}"
|
||||
VEH-0046,PER-0002-CO,WB-02-G6773,exit,2024-11-18T00:00:00,Godrej Blue,0.81,"{""camera_id"": ""CAM-018"", ""gate"": ""main""}"
|
||||
VEH-0047,PER-0096-CO,WB-08-C1897,repeat_visit,2025-11-18T00:00:00,Merlin Avana,0.91,"{""camera_id"": ""CAM-016"", ""gate"": ""service""}"
|
||||
VEH-0048,PER-0116,WB-06-G1974,exit,2024-06-09T00:00:00,Merlin Avana,0.76,"{""camera_id"": ""CAM-020"", ""gate"": ""main""}"
|
||||
VEH-0049,PER-0048,WB-04-D1352,entry,2024-02-21T00:00:00,Godrej Elevate,0.83,"{""camera_id"": ""CAM-018"", ""gate"": ""main""}"
|
||||
VEH-0050,PER-0095,WB-04-A6262,entry,2026-03-15T00:00:00,Godrej Elevate,0.95,"{""camera_id"": ""CAM-010"", ""gate"": ""basement""}"
|
||||
VEH-0051,PER-0038,WB-04-B4384,exit,2025-08-09T00:00:00,Siddha Serena,0.85,"{""camera_id"": ""CAM-015"", ""gate"": ""basement""}"
|
||||
VEH-0052,PER-0111,WB-04-D3372,exit,2025-01-20T00:00:00,Sugam Prakriti,0.95,"{""camera_id"": ""CAM-007"", ""gate"": ""service""}"
|
||||
VEH-0053,PER-0155,WB-04-B2948,repeat_visit,2025-02-26T00:00:00,Atri Aqua,0.75,"{""camera_id"": ""CAM-011"", ""gate"": ""main""}"
|
||||
VEH-0054,PER-0176,WB-04-F6227,entry,2024-09-05T00:00:00,Eden Devprayag,0.93,"{""camera_id"": ""CAM-019"", ""gate"": ""service""}"
|
||||
VEH-0055,PER-0001,WB-08-C5868,entry,2026-03-12T00:00:00,Godrej Elevate,0.88,"{""camera_id"": ""CAM-014"", ""gate"": ""basement""}"
|
||||
VEH-0056,PER-0009,WB-08-H1271,exit,2024-01-21T00:00:00,Atri Surya Toron,0.81,"{""camera_id"": ""CAM-013"", ""gate"": ""main""}"
|
||||
VEH-0057,PER-0075,WB-02-F6887,exit,2024-05-19T00:00:00,Siddha Serena,0.93,"{""camera_id"": ""CAM-005"", ""gate"": ""main""}"
|
||||
VEH-0058,PER-0130-CO,WB-08-B6844,exit,2024-12-29T00:00:00,Ambuja Utpaala,0.86,"{""camera_id"": ""CAM-010"", ""gate"": ""main""}"
|
||||
VEH-0059,PER-0081,WB-02-E6287,exit,2025-08-11T00:00:00,Eden Devprayag,0.84,"{""camera_id"": ""CAM-010"", ""gate"": ""service""}"
|
||||
VEH-0060,PER-0039,WB-08-C3404,exit,2024-02-27T00:00:00,DTC Sojon,0.87,"{""camera_id"": ""CAM-017"", ""gate"": ""basement""}"
|
||||
VEH-0061,PER-0142,WB-08-G2209,repeat_visit,2024-04-20T00:00:00,Ambuja Utpaala,0.86,"{""camera_id"": ""CAM-015"", ""gate"": ""main""}"
|
||||
VEH-0062,PER-0115,WB-02-H5414,repeat_visit,2026-03-02T00:00:00,Godrej Elevate,0.86,"{""camera_id"": ""CAM-001"", ""gate"": ""main""}"
|
||||
VEH-0063,PER-0178,WB-08-B1646,entry,2024-02-03T00:00:00,Atri Surya Toron,0.77,"{""camera_id"": ""CAM-012"", ""gate"": ""basement""}"
|
||||
VEH-0064,PER-0082,WB-08-H6193,entry,2024-04-27T00:00:00,DTC Good Earth,0.79,"{""camera_id"": ""CAM-020"", ""gate"": ""main""}"
|
||||
VEH-0065,PER-0096,WB-06-E5934,exit,2024-01-30T00:00:00,Siddha Serena,0.84,"{""camera_id"": ""CAM-011"", ""gate"": ""basement""}"
|
||||
VEH-0066,PER-0104,WB-08-B6187,exit,2025-09-30T00:00:00,Atri Surya Toron,0.87,"{""camera_id"": ""CAM-019"", ""gate"": ""basement""}"
|
||||
VEH-0067,PER-0100-CO,WB-08-F2925,exit,2024-05-16T00:00:00,Merlin Avana,0.94,"{""camera_id"": ""CAM-017"", ""gate"": ""main""}"
|
||||
VEH-0068,PER-0072,WB-08-E3376,entry,2024-04-26T00:00:00,Atri Aqua,0.75,"{""camera_id"": ""CAM-007"", ""gate"": ""basement""}"
|
||||
VEH-0069,PER-0067,WB-04-G1199,entry,2024-04-18T00:00:00,Siddha Suburbia Bungalow,0.81,"{""camera_id"": ""CAM-008"", ""gate"": ""main""}"
|
||||
VEH-0070,PER-0155-CO,WB-04-C2788,exit,2024-05-16T00:00:00,DTC Sojon,0.93,"{""camera_id"": ""CAM-009"", ""gate"": ""main""}"
|
||||
VEH-0071,PER-0058-CO,WB-08-D6374,entry,2025-06-07T00:00:00,Siddha Suburbia Bungalow,0.79,"{""camera_id"": ""CAM-016"", ""gate"": ""main""}"
|
||||
VEH-0072,PER-0151,WB-06-G8062,entry,2025-09-13T00:00:00,Eden Devprayag,0.8,"{""camera_id"": ""CAM-011"", ""gate"": ""main""}"
|
||||
VEH-0073,PER-0108,WB-06-A4412,entry,2024-08-26T00:00:00,Sugam Prakriti,0.8,"{""camera_id"": ""CAM-007"", ""gate"": ""basement""}"
|
||||
VEH-0074,PER-0045,WB-02-F8753,entry,2026-01-18T00:00:00,Godrej Elevate,0.76,"{""camera_id"": ""CAM-015"", ""gate"": ""main""}"
|
||||
VEH-0075,PER-0161,WB-02-B6918,repeat_visit,2026-02-19T00:00:00,Shriram Grand City,0.83,"{""camera_id"": ""CAM-014"", ""gate"": ""service""}"
|
||||
VEH-0076,PER-0157,WB-04-D9238,exit,2025-01-02T00:00:00,Siddha Sky Waterfront,0.78,"{""camera_id"": ""CAM-008"", ""gate"": ""main""}"
|
||||
VEH-0077,PER-0174,WB-02-G2271,repeat_visit,2024-02-27T00:00:00,Atri Surya Toron,0.76,"{""camera_id"": ""CAM-007"", ""gate"": ""service""}"
|
||||
VEH-0078,PER-0004,WB-08-E3582,exit,2024-08-04T00:00:00,DTC Sojon,0.94,"{""camera_id"": ""CAM-001"", ""gate"": ""service""}"
|
||||
VEH-0079,PER-0083,WB-06-E9078,exit,2025-01-16T00:00:00,Sugam Prakriti,0.82,"{""camera_id"": ""CAM-013"", ""gate"": ""service""}"
|
||||
VEH-0080,PER-0170,WB-04-C4070,repeat_visit,2025-08-15T00:00:00,Sugam Prakriti,0.89,"{""camera_id"": ""CAM-018"", ""gate"": ""main""}"
|
||||
|
306
db assets/synthetic_crm_v1/csv/intel_visits.csv
Normal file
306
db assets/synthetic_crm_v1/csv/intel_visits.csv
Normal file
@@ -0,0 +1,306 @@
|
||||
visit_id,person_id,project_id,unit_id,visited_at,visit_notes,host_user_id
|
||||
VIS-00001,PER-0001,PRJ-011,PRJ-011-U010,2025-10-18T00:00:00,Senior parents found the approach convenient. Positive feedback overall,user_002
|
||||
VIS-00002,PER-0001,PRJ-011,PRJ-011-U010,2025-10-22T00:00:00,Very interested. Asked about payment plan and possession date,user_002
|
||||
VIS-00003,PER-0001,PRJ-011,PRJ-011-U010,2025-11-15T00:00:00,Liked the layout but concerned about noise from main road,user_002
|
||||
VIS-00004,PER-0001,PRJ-011,PRJ-011-U010,2025-11-25T00:00:00,Compared with neighbor's flat. Found this more spacious,user_002
|
||||
VIS-00005,PER-0004,PRJ-014,PRJ-014-U006,2025-05-29T00:00:00,Very interested. Asked about payment plan and possession date,user_001
|
||||
VIS-00006,PER-0004,PRJ-014,PRJ-014-U006,2025-07-06T00:00:00,Compared with neighbor's flat. Found this more spacious,user_001
|
||||
VIS-00007,PER-0005,PRJ-012,PRJ-012-U004,2024-06-22T00:00:00,Wants to bring architect for Vastu check next visit,user_003
|
||||
VIS-00008,PER-0005,PRJ-012,PRJ-012-U004,2024-07-13T00:00:00,Senior parents found the approach convenient. Positive feedback overall,user_003
|
||||
VIS-00009,PER-0005,PRJ-012,PRJ-012-U004,2024-07-30T00:00:00,Liked the layout but concerned about noise from main road,user_003
|
||||
VIS-00010,PER-0005,PRJ-012,PRJ-012-U004,2024-08-05T00:00:00,NRI son will finalize via video call. Parents visited on his behalf,user_003
|
||||
VIS-00011,PER-0005,PRJ-012,PRJ-012-U004,2024-08-13T00:00:00,Compared with neighbor's flat. Found this more spacious,user_003
|
||||
VIS-00012,PER-0007,PRJ-011,PRJ-011-U007,2024-09-25T00:00:00,Compared with neighbor's flat. Found this more spacious,user_002
|
||||
VIS-00013,PER-0007,PRJ-011,PRJ-011-U007,2024-10-05T00:00:00,Wants to bring architect for Vastu check next visit,user_002
|
||||
VIS-00014,PER-0013,PRJ-004,PRJ-004-U008,2025-04-08T00:00:00,Wife loved the view from 15th floor. Husband wants to compare with other projects,user_004
|
||||
VIS-00015,PER-0013,PRJ-004,PRJ-004-U008,2025-04-15T00:00:00,Liked the layout but concerned about noise from main road,user_004
|
||||
VIS-00016,PER-0014,PRJ-008,PRJ-008-U014,2026-02-14T00:00:00,Liked the layout but concerned about noise from main road,user_001
|
||||
VIS-00017,PER-0014,PRJ-008,PRJ-008-U014,2026-02-27T00:00:00,Wants to bring architect for Vastu check next visit,user_001
|
||||
VIS-00018,PER-0015,PRJ-003,PRJ-003-U003,2025-06-29T00:00:00,Compared with neighbor's flat. Found this more spacious,user_005
|
||||
VIS-00019,PER-0016,PRJ-014,PRJ-014-U002,2024-06-16T00:00:00,Very interested. Asked about payment plan and possession date,user_004
|
||||
VIS-00020,PER-0021,PRJ-004,PRJ-004-U001,2024-09-16T00:00:00,Wife loved the view from 15th floor. Husband wants to compare with other projects,user_001
|
||||
VIS-00021,PER-0024,PRJ-006,PRJ-006-U002,2026-02-08T00:00:00,NRI son will finalize via video call. Parents visited on his behalf,user_002
|
||||
VIS-00022,PER-0024,PRJ-006,PRJ-006-U002,2026-02-10T00:00:00,Very interested. Asked about payment plan and possession date,user_002
|
||||
VIS-00023,PER-0029,PRJ-004,PRJ-004-U010,2025-07-01T00:00:00,Concerned about maintenance charges. Otherwise ready to proceed,user_003
|
||||
VIS-00024,PER-0030,PRJ-002,PRJ-002-U011,2024-12-23T00:00:00,Senior parents found the approach convenient. Positive feedback overall,user_005
|
||||
VIS-00025,PER-0033,PRJ-010,PRJ-010-U009,2025-04-06T00:00:00,Wife loved the view from 15th floor. Husband wants to compare with other projects,user_004
|
||||
VIS-00026,PER-0033,PRJ-010,PRJ-010-U009,2025-05-18T00:00:00,Very interested. Asked about payment plan and possession date,user_004
|
||||
VIS-00027,PER-0035,PRJ-009,PRJ-009-U009,2026-01-31T00:00:00,Liked the layout but concerned about noise from main road,user_004
|
||||
VIS-00028,PER-0036,PRJ-008,PRJ-008-U003,2025-10-23T00:00:00,Concerned about maintenance charges. Otherwise ready to proceed,user_003
|
||||
VIS-00029,PER-0036,PRJ-008,PRJ-008-U003,2025-11-07T00:00:00,Concerned about maintenance charges. Otherwise ready to proceed,user_003
|
||||
VIS-00030,PER-0037,PRJ-003,PRJ-003-U008,2024-12-01T00:00:00,Wife loved the view from 15th floor. Husband wants to compare with other projects,user_002
|
||||
VIS-00031,PER-0038,PRJ-009,PRJ-009-U011,2026-01-03T00:00:00,Very interested. Asked about payment plan and possession date,user_004
|
||||
VIS-00032,PER-0040,PRJ-014,PRJ-014-U001,2024-03-22T00:00:00,Wife loved the view from 15th floor. Husband wants to compare with other projects,user_001
|
||||
VIS-00033,PER-0040,PRJ-014,PRJ-014-U001,2024-03-28T00:00:00,Compared with neighbor's flat. Found this more spacious,user_001
|
||||
VIS-00034,PER-0040,PRJ-014,PRJ-014-U001,2024-04-07T00:00:00,Wife loved the view from 15th floor. Husband wants to compare with other projects,user_001
|
||||
VIS-00035,PER-0040,PRJ-014,PRJ-014-U001,2024-04-08T00:00:00,Wife loved the view from 15th floor. Husband wants to compare with other projects,user_001
|
||||
VIS-00036,PER-0041,PRJ-012,PRJ-012-U007,2024-03-25T00:00:00,Wife loved the view from 15th floor. Husband wants to compare with other projects,user_003
|
||||
VIS-00037,PER-0041,PRJ-012,PRJ-012-U007,2024-03-28T00:00:00,Wife loved the view from 15th floor. Husband wants to compare with other projects,user_003
|
||||
VIS-00038,PER-0041,PRJ-012,PRJ-012-U007,2024-04-20T00:00:00,Very interested. Asked about payment plan and possession date,user_003
|
||||
VIS-00039,PER-0041,PRJ-012,PRJ-012-U007,2024-05-07T00:00:00,Wife loved the view from 15th floor. Husband wants to compare with other projects,user_003
|
||||
VIS-00040,PER-0042,PRJ-004,PRJ-004-U020,2025-10-08T00:00:00,Liked the layout but concerned about noise from main road,user_004
|
||||
VIS-00041,PER-0043,PRJ-009,PRJ-009-U003,2024-05-31T00:00:00,Concerned about maintenance charges. Otherwise ready to proceed,user_002
|
||||
VIS-00042,PER-0044,PRJ-012,PRJ-012-U007,2024-02-15T00:00:00,Wants to bring architect for Vastu check next visit,user_004
|
||||
VIS-00043,PER-0046,PRJ-004,PRJ-004-U017,2025-03-20T00:00:00,Liked the layout but concerned about noise from main road,user_002
|
||||
VIS-00044,PER-0046,PRJ-004,PRJ-004-U017,2025-03-25T00:00:00,Very interested. Asked about payment plan and possession date,user_002
|
||||
VIS-00045,PER-0046,PRJ-004,PRJ-004-U017,2025-04-15T00:00:00,NRI son will finalize via video call. Parents visited on his behalf,user_002
|
||||
VIS-00046,PER-0046,PRJ-004,PRJ-004-U017,2025-05-01T00:00:00,Senior parents found the approach convenient. Positive feedback overall,user_002
|
||||
VIS-00047,PER-0046,PRJ-004,PRJ-004-U017,2025-05-11T00:00:00,Wife loved the view from 15th floor. Husband wants to compare with other projects,user_002
|
||||
VIS-00048,PER-0047,PRJ-004,PRJ-004-U008,2026-03-31T00:00:00,Senior parents found the approach convenient. Positive feedback overall,user_001
|
||||
VIS-00049,PER-0048,PRJ-008,PRJ-008-U003,2025-02-02T00:00:00,Compared with neighbor's flat. Found this more spacious,user_005
|
||||
VIS-00050,PER-0048,PRJ-008,PRJ-008-U003,2025-03-29T00:00:00,Liked the layout but concerned about noise from main road,user_005
|
||||
VIS-00051,PER-0049,PRJ-010,PRJ-010-U009,2024-05-02T00:00:00,Liked the layout but concerned about noise from main road,user_005
|
||||
VIS-00052,PER-0049,PRJ-010,PRJ-010-U009,2024-06-01T00:00:00,Concerned about maintenance charges. Otherwise ready to proceed,user_005
|
||||
VIS-00053,PER-0049,PRJ-010,PRJ-010-U009,2024-07-07T00:00:00,Liked the layout but concerned about noise from main road,user_005
|
||||
VIS-00054,PER-0051,PRJ-012,PRJ-012-U004,2025-11-07T00:00:00,Very interested. Asked about payment plan and possession date,user_005
|
||||
VIS-00055,PER-0051,PRJ-012,PRJ-012-U004,2025-11-19T00:00:00,Compared with neighbor's flat. Found this more spacious,user_005
|
||||
VIS-00056,PER-0051,PRJ-012,PRJ-012-U004,2025-11-28T00:00:00,Liked the layout but concerned about noise from main road,user_005
|
||||
VIS-00057,PER-0052,PRJ-007,PRJ-007-U012,2025-07-14T00:00:00,Wife loved the view from 15th floor. Husband wants to compare with other projects,user_003
|
||||
VIS-00058,PER-0054,PRJ-008,PRJ-008-U014,2026-02-24T00:00:00,Liked the layout but concerned about noise from main road,user_002
|
||||
VIS-00059,PER-0054,PRJ-008,PRJ-008-U014,2026-02-25T00:00:00,Senior parents found the approach convenient. Positive feedback overall,user_002
|
||||
VIS-00060,PER-0055,PRJ-009,PRJ-009-U004,2025-11-23T00:00:00,NRI son will finalize via video call. Parents visited on his behalf,user_004
|
||||
VIS-00061,PER-0058,PRJ-009,PRJ-009-U008,2024-04-22T00:00:00,NRI son will finalize via video call. Parents visited on his behalf,user_003
|
||||
VIS-00062,PER-0058,PRJ-009,PRJ-009-U008,2024-04-27T00:00:00,Wants to bring architect for Vastu check next visit,user_003
|
||||
VIS-00063,PER-0058,PRJ-009,PRJ-009-U008,2024-06-28T00:00:00,Senior parents found the approach convenient. Positive feedback overall,user_003
|
||||
VIS-00064,PER-0059,PRJ-004,PRJ-004-U019,2025-06-10T00:00:00,Very interested. Asked about payment plan and possession date,user_004
|
||||
VIS-00065,PER-0060,PRJ-012,PRJ-012-U001,2024-02-02T00:00:00,Compared with neighbor's flat. Found this more spacious,user_003
|
||||
VIS-00066,PER-0060,PRJ-012,PRJ-012-U001,2024-02-25T00:00:00,Liked the layout but concerned about noise from main road,user_003
|
||||
VIS-00067,PER-0060,PRJ-012,PRJ-012-U001,2024-02-27T00:00:00,Very interested. Asked about payment plan and possession date,user_003
|
||||
VIS-00068,PER-0060,PRJ-012,PRJ-012-U001,2024-03-02T00:00:00,Concerned about maintenance charges. Otherwise ready to proceed,user_003
|
||||
VIS-00069,PER-0060,PRJ-012,PRJ-012-U001,2024-04-07T00:00:00,Wife loved the view from 15th floor. Husband wants to compare with other projects,user_003
|
||||
VIS-00070,PER-0060,PRJ-012,PRJ-012-U001,2024-04-08T00:00:00,Compared with neighbor's flat. Found this more spacious,user_003
|
||||
VIS-00071,PER-0061,PRJ-013,PRJ-013-U005,2024-03-09T00:00:00,Concerned about maintenance charges. Otherwise ready to proceed,user_004
|
||||
VIS-00072,PER-0062,PRJ-009,PRJ-009-U003,2024-12-02T00:00:00,Wife loved the view from 15th floor. Husband wants to compare with other projects,user_002
|
||||
VIS-00073,PER-0062,PRJ-009,PRJ-009-U003,2025-01-01T00:00:00,NRI son will finalize via video call. Parents visited on his behalf,user_002
|
||||
VIS-00074,PER-0064,PRJ-012,PRJ-012-U007,2024-11-03T00:00:00,Wife loved the view from 15th floor. Husband wants to compare with other projects,user_002
|
||||
VIS-00075,PER-0065,PRJ-012,PRJ-012-U004,2026-01-19T00:00:00,Senior parents found the approach convenient. Positive feedback overall,user_005
|
||||
VIS-00076,PER-0065,PRJ-012,PRJ-012-U004,2026-01-19T00:00:00,Compared with neighbor's flat. Found this more spacious,user_005
|
||||
VIS-00077,PER-0065,PRJ-012,PRJ-012-U004,2026-03-12T00:00:00,Senior parents found the approach convenient. Positive feedback overall,user_005
|
||||
VIS-00078,PER-0067,PRJ-009,PRJ-009-U010,2025-06-25T00:00:00,Very interested. Asked about payment plan and possession date,user_002
|
||||
VIS-00079,PER-0068,PRJ-002,PRJ-002-U017,2025-01-03T00:00:00,Compared with neighbor's flat. Found this more spacious,user_005
|
||||
VIS-00080,PER-0069,PRJ-002,PRJ-002-U017,2024-07-23T00:00:00,Concerned about maintenance charges. Otherwise ready to proceed,user_003
|
||||
VIS-00081,PER-0073,PRJ-013,PRJ-013-U015,2026-01-17T00:00:00,Concerned about maintenance charges. Otherwise ready to proceed,user_004
|
||||
VIS-00082,PER-0075,PRJ-009,PRJ-009-U009,2024-05-04T00:00:00,Concerned about maintenance charges. Otherwise ready to proceed,user_001
|
||||
VIS-00083,PER-0075,PRJ-009,PRJ-009-U009,2024-05-16T00:00:00,Wants to bring architect for Vastu check next visit,user_001
|
||||
VIS-00084,PER-0075,PRJ-009,PRJ-009-U009,2024-05-31T00:00:00,Compared with neighbor's flat. Found this more spacious,user_001
|
||||
VIS-00085,PER-0075,PRJ-009,PRJ-009-U009,2024-06-15T00:00:00,NRI son will finalize via video call. Parents visited on his behalf,user_001
|
||||
VIS-00086,PER-0075,PRJ-009,PRJ-009-U009,2024-06-23T00:00:00,Very interested. Asked about payment plan and possession date,user_001
|
||||
VIS-00087,PER-0075,PRJ-009,PRJ-009-U009,2024-07-06T00:00:00,Wants to bring architect for Vastu check next visit,user_001
|
||||
VIS-00088,PER-0076,PRJ-006,PRJ-006-U001,2024-05-13T00:00:00,Senior parents found the approach convenient. Positive feedback overall,user_002
|
||||
VIS-00089,PER-0077,PRJ-005,PRJ-005-U006,2024-05-30T00:00:00,Senior parents found the approach convenient. Positive feedback overall,user_001
|
||||
VIS-00090,PER-0077,PRJ-005,PRJ-005-U006,2024-06-04T00:00:00,Senior parents found the approach convenient. Positive feedback overall,user_001
|
||||
VIS-00091,PER-0077,PRJ-005,PRJ-005-U006,2024-06-16T00:00:00,Liked the layout but concerned about noise from main road,user_001
|
||||
VIS-00092,PER-0077,PRJ-005,PRJ-005-U006,2024-07-06T00:00:00,Wants to bring architect for Vastu check next visit,user_001
|
||||
VIS-00093,PER-0078,PRJ-004,PRJ-004-U001,2024-11-27T00:00:00,Liked the layout but concerned about noise from main road,user_002
|
||||
VIS-00094,PER-0078,PRJ-004,PRJ-004-U001,2025-01-06T00:00:00,Wife loved the view from 15th floor. Husband wants to compare with other projects,user_002
|
||||
VIS-00095,PER-0080,PRJ-011,PRJ-011-U003,2025-10-03T00:00:00,Concerned about maintenance charges. Otherwise ready to proceed,user_004
|
||||
VIS-00096,PER-0080,PRJ-011,PRJ-011-U003,2025-11-06T00:00:00,Wants to bring architect for Vastu check next visit,user_004
|
||||
VIS-00097,PER-0082,PRJ-009,PRJ-009-U003,2025-09-11T00:00:00,Wife loved the view from 15th floor. Husband wants to compare with other projects,user_002
|
||||
VIS-00098,PER-0083,PRJ-004,PRJ-004-U017,2025-01-11T00:00:00,Compared with neighbor's flat. Found this more spacious,user_002
|
||||
VIS-00099,PER-0083,PRJ-004,PRJ-004-U017,2025-01-15T00:00:00,Senior parents found the approach convenient. Positive feedback overall,user_002
|
||||
VIS-00100,PER-0084,PRJ-006,PRJ-006-U003,2025-05-13T00:00:00,Compared with neighbor's flat. Found this more spacious,user_002
|
||||
VIS-00101,PER-0084,PRJ-006,PRJ-006-U003,2025-06-17T00:00:00,Concerned about maintenance charges. Otherwise ready to proceed,user_002
|
||||
VIS-00102,PER-0088,PRJ-002,PRJ-002-U010,2025-06-30T00:00:00,Senior parents found the approach convenient. Positive feedback overall,user_005
|
||||
VIS-00103,PER-0088,PRJ-002,PRJ-002-U010,2025-08-18T00:00:00,Concerned about maintenance charges. Otherwise ready to proceed,user_005
|
||||
VIS-00104,PER-0089,PRJ-002,PRJ-002-U005,2024-07-06T00:00:00,Compared with neighbor's flat. Found this more spacious,user_002
|
||||
VIS-00105,PER-0091,PRJ-005,PRJ-005-U005,2025-02-03T00:00:00,Wants to bring architect for Vastu check next visit,user_002
|
||||
VIS-00106,PER-0091,PRJ-005,PRJ-005-U005,2025-02-04T00:00:00,Senior parents found the approach convenient. Positive feedback overall,user_002
|
||||
VIS-00107,PER-0091,PRJ-005,PRJ-005-U005,2025-02-07T00:00:00,Wife loved the view from 15th floor. Husband wants to compare with other projects,user_002
|
||||
VIS-00108,PER-0093,PRJ-004,PRJ-004-U008,2025-01-22T00:00:00,Compared with neighbor's flat. Found this more spacious,user_001
|
||||
VIS-00109,PER-0097,PRJ-002,PRJ-002-U008,2024-10-29T00:00:00,Senior parents found the approach convenient. Positive feedback overall,user_002
|
||||
VIS-00110,PER-0097,PRJ-002,PRJ-002-U008,2024-11-23T00:00:00,Liked the layout but concerned about noise from main road,user_002
|
||||
VIS-00111,PER-0097,PRJ-002,PRJ-002-U008,2024-11-29T00:00:00,Concerned about maintenance charges. Otherwise ready to proceed,user_002
|
||||
VIS-00112,PER-0099,PRJ-012,PRJ-012-U007,2024-04-14T00:00:00,Wants to bring architect for Vastu check next visit,user_002
|
||||
VIS-00113,PER-0099,PRJ-012,PRJ-012-U007,2024-06-02T00:00:00,Very interested. Asked about payment plan and possession date,user_002
|
||||
VIS-00114,PER-0099,PRJ-012,PRJ-012-U007,2024-06-02T00:00:00,Liked the layout but concerned about noise from main road,user_002
|
||||
VIS-00115,PER-0099,PRJ-012,PRJ-012-U007,2024-06-11T00:00:00,Liked the layout but concerned about noise from main road,user_002
|
||||
VIS-00116,PER-0100,PRJ-004,PRJ-004-U001,2024-06-24T00:00:00,Wants to bring architect for Vastu check next visit,user_002
|
||||
VIS-00117,PER-0102,PRJ-011,PRJ-011-U003,2025-09-04T00:00:00,Compared with neighbor's flat. Found this more spacious,user_001
|
||||
VIS-00118,PER-0102,PRJ-011,PRJ-011-U003,2025-09-16T00:00:00,Liked the layout but concerned about noise from main road,user_001
|
||||
VIS-00119,PER-0102,PRJ-011,PRJ-011-U003,2025-10-05T00:00:00,Liked the layout but concerned about noise from main road,user_001
|
||||
VIS-00120,PER-0103,PRJ-014,PRJ-014-U003,2024-02-11T00:00:00,Concerned about maintenance charges. Otherwise ready to proceed,user_001
|
||||
VIS-00121,PER-0103,PRJ-014,PRJ-014-U003,2024-03-28T00:00:00,Liked the layout but concerned about noise from main road,user_001
|
||||
VIS-00122,PER-0103,PRJ-014,PRJ-014-U003,2024-04-04T00:00:00,Senior parents found the approach convenient. Positive feedback overall,user_001
|
||||
VIS-00123,PER-0103,PRJ-014,PRJ-014-U003,2024-04-09T00:00:00,Wife loved the view from 15th floor. Husband wants to compare with other projects,user_001
|
||||
VIS-00124,PER-0103,PRJ-014,PRJ-014-U003,2024-04-09T00:00:00,Wife loved the view from 15th floor. Husband wants to compare with other projects,user_001
|
||||
VIS-00125,PER-0103,PRJ-014,PRJ-014-U003,2024-04-25T00:00:00,Compared with neighbor's flat. Found this more spacious,user_001
|
||||
VIS-00126,PER-0104,PRJ-006,PRJ-006-U003,2026-02-18T00:00:00,Senior parents found the approach convenient. Positive feedback overall,user_003
|
||||
VIS-00127,PER-0104,PRJ-006,PRJ-006-U003,2026-03-27T00:00:00,Concerned about maintenance charges. Otherwise ready to proceed,user_003
|
||||
VIS-00128,PER-0104,PRJ-006,PRJ-006-U003,2026-03-27T00:00:00,NRI son will finalize via video call. Parents visited on his behalf,user_003
|
||||
VIS-00129,PER-0105,PRJ-005,PRJ-005-U005,2025-05-04T00:00:00,Concerned about maintenance charges. Otherwise ready to proceed,user_004
|
||||
VIS-00130,PER-0105,PRJ-005,PRJ-005-U005,2025-05-04T00:00:00,Concerned about maintenance charges. Otherwise ready to proceed,user_004
|
||||
VIS-00131,PER-0105,PRJ-005,PRJ-005-U005,2025-05-17T00:00:00,Concerned about maintenance charges. Otherwise ready to proceed,user_004
|
||||
VIS-00132,PER-0108,PRJ-012,PRJ-012-U007,2025-12-16T00:00:00,Very interested. Asked about payment plan and possession date,user_003
|
||||
VIS-00133,PER-0108,PRJ-012,PRJ-012-U007,2025-12-16T00:00:00,Very interested. Asked about payment plan and possession date,user_003
|
||||
VIS-00134,PER-0108,PRJ-012,PRJ-012-U007,2025-12-26T00:00:00,Very interested. Asked about payment plan and possession date,user_003
|
||||
VIS-00135,PER-0109,PRJ-014,PRJ-014-U005,2025-11-08T00:00:00,Wife loved the view from 15th floor. Husband wants to compare with other projects,user_004
|
||||
VIS-00136,PER-0110,PRJ-001,PRJ-001-U001,2024-10-29T00:00:00,Wants to bring architect for Vastu check next visit,user_001
|
||||
VIS-00137,PER-0110,PRJ-001,PRJ-001-U001,2024-10-31T00:00:00,Liked the layout but concerned about noise from main road,user_001
|
||||
VIS-00138,PER-0113,PRJ-010,PRJ-010-U011,2025-11-10T00:00:00,Concerned about maintenance charges. Otherwise ready to proceed,user_002
|
||||
VIS-00139,PER-0114,PRJ-004,PRJ-004-U004,2025-05-09T00:00:00,Senior parents found the approach convenient. Positive feedback overall,user_004
|
||||
VIS-00140,PER-0114,PRJ-004,PRJ-004-U004,2025-06-19T00:00:00,Compared with neighbor's flat. Found this more spacious,user_004
|
||||
VIS-00141,PER-0115,PRJ-014,PRJ-014-U006,2024-12-01T00:00:00,Wants to bring architect for Vastu check next visit,user_001
|
||||
VIS-00142,PER-0115,PRJ-014,PRJ-014-U006,2024-12-18T00:00:00,Senior parents found the approach convenient. Positive feedback overall,user_001
|
||||
VIS-00143,PER-0115,PRJ-014,PRJ-014-U006,2024-12-28T00:00:00,Wants to bring architect for Vastu check next visit,user_001
|
||||
VIS-00144,PER-0115,PRJ-014,PRJ-014-U006,2025-01-10T00:00:00,Wants to bring architect for Vastu check next visit,user_001
|
||||
VIS-00145,PER-0116,PRJ-003,PRJ-003-U004,2024-08-02T00:00:00,Wants to bring architect for Vastu check next visit,user_001
|
||||
VIS-00146,PER-0116,PRJ-003,PRJ-003-U004,2024-08-28T00:00:00,Wife loved the view from 15th floor. Husband wants to compare with other projects,user_001
|
||||
VIS-00147,PER-0116,PRJ-003,PRJ-003-U004,2024-09-02T00:00:00,NRI son will finalize via video call. Parents visited on his behalf,user_001
|
||||
VIS-00148,PER-0117,PRJ-003,PRJ-003-U010,2024-06-29T00:00:00,Concerned about maintenance charges. Otherwise ready to proceed,user_004
|
||||
VIS-00149,PER-0117,PRJ-003,PRJ-003-U010,2024-08-08T00:00:00,Senior parents found the approach convenient. Positive feedback overall,user_004
|
||||
VIS-00150,PER-0117,PRJ-003,PRJ-003-U010,2024-08-11T00:00:00,Wants to bring architect for Vastu check next visit,user_004
|
||||
VIS-00151,PER-0117,PRJ-003,PRJ-003-U010,2024-08-14T00:00:00,Concerned about maintenance charges. Otherwise ready to proceed,user_004
|
||||
VIS-00152,PER-0117,PRJ-003,PRJ-003-U010,2024-09-09T00:00:00,Compared with neighbor's flat. Found this more spacious,user_004
|
||||
VIS-00153,PER-0118,PRJ-009,PRJ-009-U012,2024-08-19T00:00:00,Wants to bring architect for Vastu check next visit,user_001
|
||||
VIS-00154,PER-0118,PRJ-009,PRJ-009-U012,2024-08-28T00:00:00,Concerned about maintenance charges. Otherwise ready to proceed,user_001
|
||||
VIS-00155,PER-0118,PRJ-009,PRJ-009-U012,2024-08-31T00:00:00,Wife loved the view from 15th floor. Husband wants to compare with other projects,user_001
|
||||
VIS-00156,PER-0118,PRJ-009,PRJ-009-U012,2024-09-10T00:00:00,Liked the layout but concerned about noise from main road,user_001
|
||||
VIS-00157,PER-0119,PRJ-004,PRJ-004-U004,2024-03-15T00:00:00,Very interested. Asked about payment plan and possession date,user_002
|
||||
VIS-00158,PER-0120,PRJ-004,PRJ-004-U019,2024-05-18T00:00:00,Liked the layout but concerned about noise from main road,user_003
|
||||
VIS-00159,PER-0120,PRJ-004,PRJ-004-U019,2024-05-30T00:00:00,Wants to bring architect for Vastu check next visit,user_003
|
||||
VIS-00160,PER-0120,PRJ-004,PRJ-004-U019,2024-05-31T00:00:00,NRI son will finalize via video call. Parents visited on his behalf,user_003
|
||||
VIS-00161,PER-0120,PRJ-004,PRJ-004-U019,2024-06-14T00:00:00,Wants to bring architect for Vastu check next visit,user_003
|
||||
VIS-00162,PER-0120,PRJ-004,PRJ-004-U019,2024-07-13T00:00:00,Concerned about maintenance charges. Otherwise ready to proceed,user_003
|
||||
VIS-00163,PER-0121,PRJ-002,PRJ-002-U017,2025-04-06T00:00:00,Liked the layout but concerned about noise from main road,user_003
|
||||
VIS-00164,PER-0121,PRJ-002,PRJ-002-U017,2025-05-28T00:00:00,Very interested. Asked about payment plan and possession date,user_003
|
||||
VIS-00165,PER-0122,PRJ-001,PRJ-001-U001,2024-03-27T00:00:00,Wife loved the view from 15th floor. Husband wants to compare with other projects,user_005
|
||||
VIS-00166,PER-0126,PRJ-004,PRJ-004-U004,2025-11-03T00:00:00,Very interested. Asked about payment plan and possession date,user_001
|
||||
VIS-00167,PER-0127,PRJ-014,PRJ-014-U005,2026-03-26T00:00:00,Concerned about maintenance charges. Otherwise ready to proceed,user_001
|
||||
VIS-00168,PER-0129,PRJ-001,PRJ-001-U002,2024-10-18T00:00:00,Wants to bring architect for Vastu check next visit,user_003
|
||||
VIS-00169,PER-0131,PRJ-003,PRJ-003-U004,2025-07-26T00:00:00,Compared with neighbor's flat. Found this more spacious,user_003
|
||||
VIS-00170,PER-0131,PRJ-003,PRJ-003-U004,2025-08-05T00:00:00,Concerned about maintenance charges. Otherwise ready to proceed,user_003
|
||||
VIS-00171,PER-0133,PRJ-008,PRJ-008-U009,2024-05-07T00:00:00,Liked the layout but concerned about noise from main road,user_001
|
||||
VIS-00172,PER-0135,PRJ-005,PRJ-005-U009,2025-04-11T00:00:00,Senior parents found the approach convenient. Positive feedback overall,user_004
|
||||
VIS-00173,PER-0135,PRJ-005,PRJ-005-U009,2025-04-17T00:00:00,Wife loved the view from 15th floor. Husband wants to compare with other projects,user_004
|
||||
VIS-00174,PER-0135,PRJ-005,PRJ-005-U009,2025-04-23T00:00:00,Wants to bring architect for Vastu check next visit,user_004
|
||||
VIS-00175,PER-0135,PRJ-005,PRJ-005-U009,2025-04-27T00:00:00,Wants to bring architect for Vastu check next visit,user_004
|
||||
VIS-00176,PER-0137,PRJ-007,PRJ-007-U014,2026-03-11T00:00:00,Compared with neighbor's flat. Found this more spacious,user_002
|
||||
VIS-00177,PER-0137,PRJ-007,PRJ-007-U014,2026-04-14T00:00:00,Wants to bring architect for Vastu check next visit,user_002
|
||||
VIS-00178,PER-0137,PRJ-007,PRJ-007-U014,2026-04-17T00:00:00,Very interested. Asked about payment plan and possession date,user_002
|
||||
VIS-00179,PER-0138,PRJ-014,PRJ-014-U002,2024-09-22T00:00:00,Compared with neighbor's flat. Found this more spacious,user_005
|
||||
VIS-00180,PER-0138,PRJ-014,PRJ-014-U002,2024-10-12T00:00:00,Concerned about maintenance charges. Otherwise ready to proceed,user_005
|
||||
VIS-00181,PER-0145,PRJ-001,PRJ-001-U013,2024-10-30T00:00:00,NRI son will finalize via video call. Parents visited on his behalf,user_005
|
||||
VIS-00182,PER-0148,PRJ-012,PRJ-012-U007,2024-12-04T00:00:00,Very interested. Asked about payment plan and possession date,user_002
|
||||
VIS-00183,PER-0148,PRJ-012,PRJ-012-U007,2025-01-03T00:00:00,Wants to bring architect for Vastu check next visit,user_002
|
||||
VIS-00184,PER-0148,PRJ-012,PRJ-012-U007,2025-01-05T00:00:00,Liked the layout but concerned about noise from main road,user_002
|
||||
VIS-00185,PER-0148,PRJ-012,PRJ-012-U007,2025-01-14T00:00:00,Wife loved the view from 15th floor. Husband wants to compare with other projects,user_002
|
||||
VIS-00186,PER-0149,PRJ-006,PRJ-006-U005,2025-02-17T00:00:00,Wants to bring architect for Vastu check next visit,user_003
|
||||
VIS-00187,PER-0149,PRJ-006,PRJ-006-U005,2025-02-18T00:00:00,Liked the layout but concerned about noise from main road,user_003
|
||||
VIS-00188,PER-0150,PRJ-005,PRJ-005-U008,2025-12-27T00:00:00,Wants to bring architect for Vastu check next visit,user_005
|
||||
VIS-00189,PER-0150,PRJ-005,PRJ-005-U008,2025-12-31T00:00:00,Senior parents found the approach convenient. Positive feedback overall,user_005
|
||||
VIS-00190,PER-0150,PRJ-005,PRJ-005-U008,2026-01-14T00:00:00,Wants to bring architect for Vastu check next visit,user_005
|
||||
VIS-00191,PER-0153,PRJ-006,PRJ-006-U003,2025-07-18T00:00:00,Wants to bring architect for Vastu check next visit,user_002
|
||||
VIS-00192,PER-0154,PRJ-010,PRJ-010-U011,2025-09-09T00:00:00,Compared with neighbor's flat. Found this more spacious,user_004
|
||||
VIS-00193,PER-0154,PRJ-010,PRJ-010-U011,2025-09-20T00:00:00,Concerned about maintenance charges. Otherwise ready to proceed,user_004
|
||||
VIS-00194,PER-0154,PRJ-010,PRJ-010-U011,2025-09-24T00:00:00,Wife loved the view from 15th floor. Husband wants to compare with other projects,user_004
|
||||
VIS-00195,PER-0155,PRJ-002,PRJ-002-U001,2024-03-06T00:00:00,Compared with neighbor's flat. Found this more spacious,user_002
|
||||
VIS-00196,PER-0158,PRJ-003,PRJ-003-U008,2026-01-16T00:00:00,Wife loved the view from 15th floor. Husband wants to compare with other projects,user_003
|
||||
VIS-00197,PER-0158,PRJ-003,PRJ-003-U008,2026-01-21T00:00:00,NRI son will finalize via video call. Parents visited on his behalf,user_003
|
||||
VIS-00198,PER-0158,PRJ-003,PRJ-003-U008,2026-02-07T00:00:00,Senior parents found the approach convenient. Positive feedback overall,user_003
|
||||
VIS-00199,PER-0158,PRJ-003,PRJ-003-U008,2026-02-21T00:00:00,Wants to bring architect for Vastu check next visit,user_003
|
||||
VIS-00200,PER-0158,PRJ-003,PRJ-003-U008,2026-03-01T00:00:00,Concerned about maintenance charges. Otherwise ready to proceed,user_003
|
||||
VIS-00201,PER-0159,PRJ-005,PRJ-005-U008,2024-08-17T00:00:00,Compared with neighbor's flat. Found this more spacious,user_004
|
||||
VIS-00202,PER-0159,PRJ-005,PRJ-005-U008,2024-09-02T00:00:00,Wife loved the view from 15th floor. Husband wants to compare with other projects,user_004
|
||||
VIS-00203,PER-0160,PRJ-010,PRJ-010-U012,2025-11-17T00:00:00,Compared with neighbor's flat. Found this more spacious,user_003
|
||||
VIS-00204,PER-0160,PRJ-010,PRJ-010-U012,2025-12-05T00:00:00,Very interested. Asked about payment plan and possession date,user_003
|
||||
VIS-00205,PER-0160,PRJ-010,PRJ-010-U012,2025-12-31T00:00:00,Senior parents found the approach convenient. Positive feedback overall,user_003
|
||||
VIS-00206,PER-0162,PRJ-009,PRJ-009-U008,2024-10-09T00:00:00,Wife loved the view from 15th floor. Husband wants to compare with other projects,user_005
|
||||
VIS-00207,PER-0162,PRJ-009,PRJ-009-U008,2024-11-26T00:00:00,Wants to bring architect for Vastu check next visit,user_005
|
||||
VIS-00208,PER-0164,PRJ-008,PRJ-008-U007,2024-07-22T00:00:00,NRI son will finalize via video call. Parents visited on his behalf,user_004
|
||||
VIS-00209,PER-0164,PRJ-008,PRJ-008-U007,2024-08-02T00:00:00,Concerned about maintenance charges. Otherwise ready to proceed,user_004
|
||||
VIS-00210,PER-0166,PRJ-010,PRJ-010-U011,2024-11-05T00:00:00,Senior parents found the approach convenient. Positive feedback overall,user_001
|
||||
VIS-00211,PER-0169,PRJ-006,PRJ-006-U002,2025-03-14T00:00:00,Concerned about maintenance charges. Otherwise ready to proceed,user_005
|
||||
VIS-00212,PER-0170,PRJ-003,PRJ-003-U010,2026-04-20T00:00:00,Wants to bring architect for Vastu check next visit,user_003
|
||||
VIS-00213,PER-0171,PRJ-010,PRJ-010-U012,2024-02-13T00:00:00,Compared with neighbor's flat. Found this more spacious,user_003
|
||||
VIS-00214,PER-0173,PRJ-005,PRJ-005-U006,2024-09-09T00:00:00,NRI son will finalize via video call. Parents visited on his behalf,user_004
|
||||
VIS-00215,PER-0173,PRJ-005,PRJ-005-U006,2024-09-11T00:00:00,Compared with neighbor's flat. Found this more spacious,user_004
|
||||
VIS-00216,PER-0173,PRJ-005,PRJ-005-U006,2024-09-23T00:00:00,Liked the layout but concerned about noise from main road,user_004
|
||||
VIS-00217,PER-0173,PRJ-005,PRJ-005-U006,2024-10-29T00:00:00,NRI son will finalize via video call. Parents visited on his behalf,user_004
|
||||
VIS-00218,PER-0175,PRJ-010,PRJ-010-U012,2025-01-11T00:00:00,Liked the layout but concerned about noise from main road,user_005
|
||||
VIS-00219,PER-0175,PRJ-010,PRJ-010-U012,2025-01-19T00:00:00,Wants to bring architect for Vastu check next visit,user_005
|
||||
VIS-00220,PER-0176,PRJ-005,PRJ-005-U005,2026-02-09T00:00:00,Wife loved the view from 15th floor. Husband wants to compare with other projects,user_005
|
||||
VIS-00221,PER-0178,PRJ-007,PRJ-007-U017,2025-06-21T00:00:00,Senior parents found the approach convenient. Positive feedback overall,user_001
|
||||
VIS-00222,PER-0178,PRJ-007,PRJ-007-U017,2025-07-17T00:00:00,Very interested. Asked about payment plan and possession date,user_001
|
||||
VIS-00223,PER-0178,PRJ-007,PRJ-007-U017,2025-07-22T00:00:00,Wife loved the view from 15th floor. Husband wants to compare with other projects,user_001
|
||||
VIS-00224,PER-0178,PRJ-007,PRJ-007-U017,2025-07-31T00:00:00,Wife loved the view from 15th floor. Husband wants to compare with other projects,user_001
|
||||
VIS-00225,PER-0178,PRJ-007,PRJ-007-U017,2025-08-09T00:00:00,NRI son will finalize via video call. Parents visited on his behalf,user_001
|
||||
VIS-00226,PER-0179,PRJ-014,PRJ-014-U001,2024-02-25T00:00:00,NRI son will finalize via video call. Parents visited on his behalf,user_005
|
||||
VIS-00227,PER-0180,PRJ-010,PRJ-010-U004,2024-05-14T00:00:00,Compared with neighbor's flat. Found this more spacious,user_003
|
||||
VIS-00228,PER-0180,PRJ-010,PRJ-010-U004,2024-05-29T00:00:00,Concerned about maintenance charges. Otherwise ready to proceed,user_003
|
||||
VIS-00229,PER-0180,PRJ-010,PRJ-010-U004,2024-05-30T00:00:00,Concerned about maintenance charges. Otherwise ready to proceed,user_003
|
||||
VIS-00230,PER-0181,PRJ-013,PRJ-013-U013,2025-11-01T00:00:00,Senior parents found the approach convenient. Positive feedback overall,user_005
|
||||
VIS-00231,PER-0181,PRJ-013,PRJ-013-U013,2025-11-29T00:00:00,Wife loved the view from 15th floor. Husband wants to compare with other projects,user_005
|
||||
VIS-00232,PER-0181,PRJ-013,PRJ-013-U013,2025-12-03T00:00:00,Compared with neighbor's flat. Found this more spacious,user_005
|
||||
VIS-00233,PER-0183,PRJ-003,PRJ-003-U011,2025-09-25T00:00:00,Wife loved the view from 15th floor. Husband wants to compare with other projects,user_001
|
||||
VIS-00234,PER-0183,PRJ-003,PRJ-003-U011,2025-10-01T00:00:00,Wants to bring architect for Vastu check next visit,user_001
|
||||
VIS-00235,PER-0183,PRJ-003,PRJ-003-U011,2025-10-23T00:00:00,Very interested. Asked about payment plan and possession date,user_001
|
||||
VIS-00236,PER-0184,PRJ-010,PRJ-010-U010,2025-12-17T00:00:00,Wants to bring architect for Vastu check next visit,user_002
|
||||
VIS-00237,PER-0184,PRJ-010,PRJ-010-U010,2026-01-11T00:00:00,Concerned about maintenance charges. Otherwise ready to proceed,user_002
|
||||
VIS-00238,PER-0185,PRJ-006,PRJ-006-U005,2025-12-04T00:00:00,Wants to bring architect for Vastu check next visit,user_002
|
||||
VIS-00239,PER-0185,PRJ-006,PRJ-006-U005,2026-01-14T00:00:00,Compared with neighbor's flat. Found this more spacious,user_002
|
||||
VIS-00240,PER-0186,PRJ-011,PRJ-011-U004,2025-02-07T00:00:00,Liked the layout but concerned about noise from main road,user_004
|
||||
VIS-00241,PER-0186,PRJ-011,PRJ-011-U004,2025-03-05T00:00:00,Wants to bring architect for Vastu check next visit,user_004
|
||||
VIS-00242,PER-0187,PRJ-011,PRJ-011-U004,2024-09-17T00:00:00,Compared with neighbor's flat. Found this more spacious,user_005
|
||||
VIS-00243,PER-0187,PRJ-011,PRJ-011-U004,2024-09-27T00:00:00,Wants to bring architect for Vastu check next visit,user_005
|
||||
VIS-00244,PER-0188,PRJ-005,PRJ-005-U008,2025-01-27T00:00:00,NRI son will finalize via video call. Parents visited on his behalf,user_002
|
||||
VIS-00245,PER-0188,PRJ-005,PRJ-005-U008,2025-02-06T00:00:00,Liked the layout but concerned about noise from main road,user_002
|
||||
VIS-00246,PER-0189,PRJ-012,PRJ-012-U007,2025-12-12T00:00:00,Compared with neighbor's flat. Found this more spacious,user_003
|
||||
VIS-00247,PER-0189,PRJ-012,PRJ-012-U007,2026-01-12T00:00:00,NRI son will finalize via video call. Parents visited on his behalf,user_003
|
||||
VIS-00248,PER-0189,PRJ-012,PRJ-012-U007,2026-01-13T00:00:00,Senior parents found the approach convenient. Positive feedback overall,user_003
|
||||
VIS-00249,PER-0190,PRJ-003,PRJ-003-U005,2025-09-21T00:00:00,Senior parents found the approach convenient. Positive feedback overall,user_001
|
||||
VIS-00250,PER-0191,PRJ-008,PRJ-008-U003,2024-03-25T00:00:00,Wife loved the view from 15th floor. Husband wants to compare with other projects,user_005
|
||||
VIS-00251,PER-0192,PRJ-005,PRJ-005-U005,2026-02-22T00:00:00,Concerned about maintenance charges. Otherwise ready to proceed,user_005
|
||||
VIS-00252,PER-0192,PRJ-005,PRJ-005-U005,2026-03-12T00:00:00,Wife loved the view from 15th floor. Husband wants to compare with other projects,user_005
|
||||
VIS-00253,PER-0192,PRJ-005,PRJ-005-U005,2026-03-17T00:00:00,Wants to bring architect for Vastu check next visit,user_005
|
||||
VIS-00254,PER-0193,PRJ-001,PRJ-001-U013,2024-08-24T00:00:00,Wants to bring architect for Vastu check next visit,user_002
|
||||
VIS-00255,PER-0193,PRJ-001,PRJ-001-U013,2024-09-23T00:00:00,NRI son will finalize via video call. Parents visited on his behalf,user_002
|
||||
VIS-00256,PER-0195,PRJ-004,PRJ-004-U008,2025-02-22T00:00:00,Very interested. Asked about payment plan and possession date,user_003
|
||||
VIS-00257,PER-0196,PRJ-011,PRJ-011-U009,2024-02-04T00:00:00,Senior parents found the approach convenient. Positive feedback overall,user_002
|
||||
VIS-00258,PER-0196,PRJ-011,PRJ-011-U009,2024-03-05T00:00:00,Wants to bring architect for Vastu check next visit,user_002
|
||||
VIS-00259,PER-0198,PRJ-002,PRJ-002-U002,2025-05-20T00:00:00,Wants to bring architect for Vastu check next visit,user_003
|
||||
VIS-00260,PER-0198,PRJ-002,PRJ-002-U002,2025-06-21T00:00:00,Wife loved the view from 15th floor. Husband wants to compare with other projects,user_003
|
||||
VIS-00261,PER-0201,PRJ-004,PRJ-004-U004,2024-09-29T00:00:00,Concerned about maintenance charges. Otherwise ready to proceed,user_002
|
||||
VIS-00262,PER-0202,PRJ-004,PRJ-004-U008,2024-06-11T00:00:00,Concerned about maintenance charges. Otherwise ready to proceed,user_001
|
||||
VIS-00263,PER-0204,PRJ-009,PRJ-009-U004,2024-08-03T00:00:00,NRI son will finalize via video call. Parents visited on his behalf,user_005
|
||||
VIS-00264,PER-0204,PRJ-009,PRJ-009-U004,2024-09-03T00:00:00,NRI son will finalize via video call. Parents visited on his behalf,user_005
|
||||
VIS-00265,PER-0204,PRJ-009,PRJ-009-U004,2024-10-01T00:00:00,Wife loved the view from 15th floor. Husband wants to compare with other projects,user_005
|
||||
VIS-00266,PER-0205,PRJ-004,PRJ-004-U020,2025-05-16T00:00:00,NRI son will finalize via video call. Parents visited on his behalf,user_001
|
||||
VIS-00267,PER-0205,PRJ-004,PRJ-004-U020,2025-06-19T00:00:00,Liked the layout but concerned about noise from main road,user_001
|
||||
VIS-00268,PER-0205,PRJ-004,PRJ-004-U020,2025-06-23T00:00:00,Liked the layout but concerned about noise from main road,user_001
|
||||
VIS-00269,PER-0209,PRJ-014,PRJ-014-U006,2024-03-14T00:00:00,Very interested. Asked about payment plan and possession date,user_004
|
||||
VIS-00270,PER-0209,PRJ-014,PRJ-014-U006,2024-05-04T00:00:00,Senior parents found the approach convenient. Positive feedback overall,user_004
|
||||
VIS-00271,PER-0212,PRJ-010,PRJ-010-U010,2024-06-12T00:00:00,Wife loved the view from 15th floor. Husband wants to compare with other projects,user_005
|
||||
VIS-00272,PER-0212,PRJ-010,PRJ-010-U010,2024-07-01T00:00:00,Liked the layout but concerned about noise from main road,user_005
|
||||
VIS-00273,PER-0213,PRJ-005,PRJ-005-U008,2024-06-01T00:00:00,Concerned about maintenance charges. Otherwise ready to proceed,user_002
|
||||
VIS-00274,PER-0213,PRJ-005,PRJ-005-U008,2024-07-25T00:00:00,Wants to bring architect for Vastu check next visit,user_002
|
||||
VIS-00275,PER-0214,PRJ-010,PRJ-010-U013,2025-09-07T00:00:00,Liked the layout but concerned about noise from main road,user_005
|
||||
VIS-00276,PER-0215,PRJ-012,PRJ-012-U004,2025-06-28T00:00:00,Very interested. Asked about payment plan and possession date,user_001
|
||||
VIS-00277,PER-0215,PRJ-012,PRJ-012-U004,2025-08-09T00:00:00,Liked the layout but concerned about noise from main road,user_001
|
||||
VIS-00278,PER-0218,PRJ-003,PRJ-003-U011,2026-02-05T00:00:00,Wants to bring architect for Vastu check next visit,user_005
|
||||
VIS-00279,PER-0218,PRJ-003,PRJ-003-U011,2026-02-24T00:00:00,Wants to bring architect for Vastu check next visit,user_005
|
||||
VIS-00280,PER-0219,PRJ-002,PRJ-002-U019,2025-08-10T00:00:00,Senior parents found the approach convenient. Positive feedback overall,user_004
|
||||
VIS-00281,PER-0219,PRJ-002,PRJ-002-U019,2025-08-16T00:00:00,Senior parents found the approach convenient. Positive feedback overall,user_004
|
||||
VIS-00282,PER-0219,PRJ-002,PRJ-002-U019,2025-08-30T00:00:00,Wife loved the view from 15th floor. Husband wants to compare with other projects,user_004
|
||||
VIS-00283,PER-0219,PRJ-002,PRJ-002-U019,2025-09-20T00:00:00,Very interested. Asked about payment plan and possession date,user_004
|
||||
VIS-00284,PER-0222,PRJ-013,PRJ-013-U004,2026-02-09T00:00:00,NRI son will finalize via video call. Parents visited on his behalf,user_002
|
||||
VIS-00285,PER-0222,PRJ-013,PRJ-013-U004,2026-02-12T00:00:00,Compared with neighbor's flat. Found this more spacious,user_002
|
||||
VIS-00286,PER-0223,PRJ-002,PRJ-002-U001,2025-06-13T00:00:00,Liked the layout but concerned about noise from main road,user_001
|
||||
VIS-00287,PER-0223,PRJ-002,PRJ-002-U001,2025-07-17T00:00:00,Concerned about maintenance charges. Otherwise ready to proceed,user_001
|
||||
VIS-00288,PER-0223,PRJ-002,PRJ-002-U001,2025-08-02T00:00:00,Wife loved the view from 15th floor. Husband wants to compare with other projects,user_001
|
||||
VIS-00289,PER-0223,PRJ-002,PRJ-002-U001,2025-08-12T00:00:00,Compared with neighbor's flat. Found this more spacious,user_001
|
||||
VIS-00290,PER-0224,PRJ-005,PRJ-005-U008,2025-10-26T00:00:00,Concerned about maintenance charges. Otherwise ready to proceed,user_002
|
||||
VIS-00291,PER-0224,PRJ-005,PRJ-005-U008,2025-11-22T00:00:00,NRI son will finalize via video call. Parents visited on his behalf,user_002
|
||||
VIS-00292,PER-0225,PRJ-013,PRJ-013-U006,2025-01-05T00:00:00,Liked the layout but concerned about noise from main road,user_003
|
||||
VIS-00293,PER-0225,PRJ-013,PRJ-013-U006,2025-01-05T00:00:00,Wife loved the view from 15th floor. Husband wants to compare with other projects,user_003
|
||||
VIS-00294,PER-0225,PRJ-013,PRJ-013-U006,2025-01-09T00:00:00,Wants to bring architect for Vastu check next visit,user_003
|
||||
VIS-00295,PER-0225,PRJ-013,PRJ-013-U006,2025-02-13T00:00:00,Wants to bring architect for Vastu check next visit,user_003
|
||||
VIS-00296,PER-0226,PRJ-010,PRJ-010-U012,2024-07-18T00:00:00,Wife loved the view from 15th floor. Husband wants to compare with other projects,user_004
|
||||
VIS-00297,PER-0231,PRJ-014,PRJ-014-U005,2025-12-20T00:00:00,Concerned about maintenance charges. Otherwise ready to proceed,user_003
|
||||
VIS-00298,PER-0231,PRJ-014,PRJ-014-U005,2025-12-22T00:00:00,Concerned about maintenance charges. Otherwise ready to proceed,user_003
|
||||
VIS-00299,PER-0237,PRJ-009,PRJ-009-U004,2025-01-25T00:00:00,Wants to bring architect for Vastu check next visit,user_004
|
||||
VIS-00300,PER-0241,PRJ-004,PRJ-004-U010,2026-01-20T00:00:00,Compared with neighbor's flat. Found this more spacious,user_002
|
||||
VIS-00301,PER-0243,PRJ-007,PRJ-007-U003,2024-04-03T00:00:00,Liked the layout but concerned about noise from main road,user_003
|
||||
VIS-00302,PER-0249,PRJ-007,PRJ-007-U001,2024-08-25T00:00:00,Concerned about maintenance charges. Otherwise ready to proceed,user_004
|
||||
VIS-00303,PER-0249,PRJ-007,PRJ-007-U001,2024-09-06T00:00:00,Liked the layout but concerned about noise from main road,user_004
|
||||
VIS-00304,PER-0249,PRJ-007,PRJ-007-U001,2024-09-10T00:00:00,Wants to bring architect for Vastu check next visit,user_004
|
||||
VIS-00305,PER-0249,PRJ-007,PRJ-007-U001,2024-09-20T00:00:00,Concerned about maintenance charges. Otherwise ready to proceed,user_004
|
||||
|
607
db assets/synthetic_crm_v1/csv/intel_whatsapp_threads.csv
Normal file
607
db assets/synthetic_crm_v1/csv/intel_whatsapp_threads.csv
Normal file
@@ -0,0 +1,607 @@
|
||||
thread_id,interaction_id,phone_number,thread_status,message_count,last_message_at
|
||||
WTH-00001,INT-000002,+91-76251-12482,active,3,2025-09-24T00:00:00
|
||||
WTH-00002,INT-000003,+91-76251-12482,active,3,2025-10-17T00:00:00
|
||||
WTH-00003,INT-000005,+91-76251-12482,active,9,2025-10-18T00:00:00
|
||||
WTH-00004,INT-000007,+91-76251-12482,archived,11,2025-10-21T00:00:00
|
||||
WTH-00005,INT-000009,+91-76251-12482,active,3,2025-11-08T00:00:00
|
||||
WTH-00006,INT-000013,+91-76251-12482,active,8,2025-12-13T00:00:00
|
||||
WTH-00007,INT-000017,+91-77840-41779,active,7,2025-02-08T00:00:00
|
||||
WTH-00008,INT-000019,+91-77840-41779,archived,10,2025-02-13T00:00:00
|
||||
WTH-00009,INT-000023,+91-98054-93719,active,4,2025-02-27T00:00:00
|
||||
WTH-00010,INT-000026,+91-80751-78202,active,11,2025-05-17T00:00:00
|
||||
WTH-00011,INT-000027,+91-80751-78202,active,7,2025-05-22T00:00:00
|
||||
WTH-00012,INT-000028,+91-80751-78202,active,7,2025-05-24T00:00:00
|
||||
WTH-00013,INT-000031,+91-80751-78202,active,3,2025-06-17T00:00:00
|
||||
WTH-00014,INT-000034,+91-78019-15798,archived,5,2024-06-08T00:00:00
|
||||
WTH-00015,INT-000038,+91-78019-15798,archived,5,2024-06-30T00:00:00
|
||||
WTH-00016,INT-000040,+91-78019-15798,archived,10,2024-07-30T00:00:00
|
||||
WTH-00017,INT-000042,+91-78019-15798,archived,12,2024-08-01T00:00:00
|
||||
WTH-00018,INT-000049,+91-98927-75179,active,11,2024-08-07T00:00:00
|
||||
WTH-00019,INT-000050,+91-98927-75179,active,11,2024-08-10T00:00:00
|
||||
WTH-00020,INT-000053,+91-98927-75179,archived,7,2024-09-25T00:00:00
|
||||
WTH-00021,INT-000057,+91-70515-10866,active,10,2025-09-11T00:00:00
|
||||
WTH-00022,INT-000060,+91-70515-10866,active,8,2025-10-09T00:00:00
|
||||
WTH-00023,INT-000064,+91-88479-41519,archived,12,2026-03-28T00:00:00
|
||||
WTH-00024,INT-000071,+91-72998-10680,archived,7,2024-05-05T00:00:00
|
||||
WTH-00025,INT-000075,+91-84243-46170,active,4,2025-07-01T00:00:00
|
||||
WTH-00026,INT-000076,+91-84243-46170,active,12,2025-08-01T00:00:00
|
||||
WTH-00027,INT-000078,+91-89593-72814,archived,12,2024-04-20T00:00:00
|
||||
WTH-00028,INT-000079,+91-89593-72814,archived,12,2024-04-22T00:00:00
|
||||
WTH-00029,INT-000080,+91-89593-72814,active,9,2024-05-18T00:00:00
|
||||
WTH-00030,INT-000081,+91-89593-72814,active,9,2024-06-07T00:00:00
|
||||
WTH-00031,INT-000084,+91-95698-37114,active,3,2025-03-17T00:00:00
|
||||
WTH-00032,INT-000085,+91-95698-37114,active,9,2025-04-03T00:00:00
|
||||
WTH-00033,INT-000090,+91-90031-61451,active,8,2025-12-31T00:00:00
|
||||
WTH-00034,INT-000091,+91-90031-61451,active,11,2026-01-03T00:00:00
|
||||
WTH-00035,INT-000092,+91-90031-61451,archived,3,2026-01-06T00:00:00
|
||||
WTH-00036,INT-000093,+91-90031-61451,active,9,2026-01-18T00:00:00
|
||||
WTH-00037,INT-000096,+91-90031-61451,active,11,2026-02-21T00:00:00
|
||||
WTH-00038,INT-000099,+91-96712-60324,active,5,2025-05-22T00:00:00
|
||||
WTH-00039,INT-000104,+91-97147-42447,active,5,2024-05-08T00:00:00
|
||||
WTH-00040,INT-000105,+91-97147-42447,active,11,2024-05-17T00:00:00
|
||||
WTH-00041,INT-000109,+91-71696-61949,active,11,2026-01-29T00:00:00
|
||||
WTH-00042,INT-000112,+91-89693-88644,active,9,2024-12-22T00:00:00
|
||||
WTH-00043,INT-000113,+91-89693-88644,active,4,2025-01-27T00:00:00
|
||||
WTH-00044,INT-000115,+91-79092-20957,active,3,2026-02-03T00:00:00
|
||||
WTH-00045,INT-000116,+91-79092-20957,archived,9,2026-02-08T00:00:00
|
||||
WTH-00046,INT-000117,+91-79092-20957,archived,9,2026-02-09T00:00:00
|
||||
WTH-00047,INT-000118,+91-79092-20957,active,11,2026-02-20T00:00:00
|
||||
WTH-00048,INT-000120,+91-79092-20957,archived,11,2026-03-03T00:00:00
|
||||
WTH-00049,INT-000122,+91-79092-20957,active,7,2026-03-24T00:00:00
|
||||
WTH-00050,INT-000123,+91-79092-20957,archived,3,2026-04-09T00:00:00
|
||||
WTH-00051,INT-000126,+91-72092-44465,archived,11,2024-12-06T00:00:00
|
||||
WTH-00052,INT-000129,+91-80724-21322,archived,5,2024-08-04T00:00:00
|
||||
WTH-00053,INT-000131,+91-80724-21322,active,10,2024-08-31T00:00:00
|
||||
WTH-00054,INT-000132,+91-80724-21322,archived,8,2024-09-04T00:00:00
|
||||
WTH-00055,INT-000135,+91-80724-21322,archived,8,2024-09-23T00:00:00
|
||||
WTH-00056,INT-000137,+91-84808-50410,archived,9,2024-06-25T00:00:00
|
||||
WTH-00057,INT-000144,+91-79170-68459,active,3,2025-02-16T00:00:00
|
||||
WTH-00058,INT-000148,+91-82241-96787,archived,6,2026-01-26T00:00:00
|
||||
WTH-00059,INT-000149,+91-82241-96787,archived,3,2026-02-07T00:00:00
|
||||
WTH-00060,INT-000152,+91-82241-96787,active,5,2026-02-11T00:00:00
|
||||
WTH-00061,INT-000153,+91-82241-96787,active,12,2026-02-13T00:00:00
|
||||
WTH-00062,INT-000155,+91-82241-96787,active,9,2026-03-23T00:00:00
|
||||
WTH-00063,INT-000157,+91-82646-67438,archived,11,2024-08-03T00:00:00
|
||||
WTH-00064,INT-000158,+91-82646-67438,active,6,2024-08-05T00:00:00
|
||||
WTH-00065,INT-000160,+91-75597-93648,archived,6,2025-03-05T00:00:00
|
||||
WTH-00066,INT-000161,+91-75597-93648,active,5,2025-03-09T00:00:00
|
||||
WTH-00067,INT-000168,+91-85606-49171,active,7,2024-07-14T00:00:00
|
||||
WTH-00068,INT-000171,+91-85606-49171,active,10,2024-08-07T00:00:00
|
||||
WTH-00069,INT-000174,+91-85606-49171,active,3,2024-09-05T00:00:00
|
||||
WTH-00070,INT-000177,+91-75642-46099,active,4,2024-09-09T00:00:00
|
||||
WTH-00071,INT-000182,+91-81460-55121,active,8,2025-05-30T00:00:00
|
||||
WTH-00072,INT-000183,+91-81460-55121,active,9,2025-06-24T00:00:00
|
||||
WTH-00073,INT-000185,+91-81460-55121,active,8,2025-07-02T00:00:00
|
||||
WTH-00074,INT-000187,+91-81019-46239,active,9,2024-11-29T00:00:00
|
||||
WTH-00075,INT-000189,+91-81019-46239,archived,11,2024-12-07T00:00:00
|
||||
WTH-00076,INT-000190,+91-81019-46239,active,5,2024-12-09T00:00:00
|
||||
WTH-00077,INT-000192,+91-81019-46239,active,6,2025-01-05T00:00:00
|
||||
WTH-00078,INT-000193,+91-81019-46239,active,11,2025-01-16T00:00:00
|
||||
WTH-00079,INT-000194,+91-81019-46239,active,5,2025-01-17T00:00:00
|
||||
WTH-00080,INT-000196,+91-89187-48541,active,3,2025-11-21T00:00:00
|
||||
WTH-00081,INT-000197,+91-89187-48541,active,3,2025-11-23T00:00:00
|
||||
WTH-00082,INT-000204,+91-82294-93928,active,12,2025-03-26T00:00:00
|
||||
WTH-00083,INT-000205,+91-82294-93928,active,12,2025-04-01T00:00:00
|
||||
WTH-00084,INT-000207,+91-82294-93928,active,7,2025-04-12T00:00:00
|
||||
WTH-00085,INT-000213,+91-70417-98032,archived,12,2024-04-27T00:00:00
|
||||
WTH-00086,INT-000214,+91-70417-98032,archived,9,2024-06-24T00:00:00
|
||||
WTH-00087,INT-000216,+91-92812-17686,active,12,2025-12-05T00:00:00
|
||||
WTH-00088,INT-000218,+91-92812-17686,active,10,2026-01-08T00:00:00
|
||||
WTH-00089,INT-000219,+91-92812-17686,active,8,2026-01-10T00:00:00
|
||||
WTH-00090,INT-000223,+91-73363-62879,active,12,2025-10-11T00:00:00
|
||||
WTH-00091,INT-000225,+91-73363-62879,active,9,2025-10-19T00:00:00
|
||||
WTH-00092,INT-000227,+91-73363-62879,active,7,2025-10-26T00:00:00
|
||||
WTH-00093,INT-000229,+91-73363-62879,archived,6,2025-12-12T00:00:00
|
||||
WTH-00094,INT-000231,+91-73363-62879,active,7,2025-12-17T00:00:00
|
||||
WTH-00095,INT-000234,+91-88128-66729,active,3,2024-11-03T00:00:00
|
||||
WTH-00096,INT-000236,+91-88128-66729,archived,6,2024-11-24T00:00:00
|
||||
WTH-00097,INT-000240,+91-88128-66729,active,6,2024-12-20T00:00:00
|
||||
WTH-00098,INT-000241,+91-88128-66729,active,10,2024-12-21T00:00:00
|
||||
WTH-00099,INT-000243,+91-95700-47701,active,6,2025-11-30T00:00:00
|
||||
WTH-00100,INT-000247,+91-91736-53500,active,10,2025-09-07T00:00:00
|
||||
WTH-00101,INT-000248,+91-91736-53500,archived,4,2025-09-27T00:00:00
|
||||
WTH-00102,INT-000252,+91-71436-48854,active,7,2024-02-09T00:00:00
|
||||
WTH-00103,INT-000256,+91-71436-48854,active,10,2024-04-06T00:00:00
|
||||
WTH-00104,INT-000260,+91-71436-48854,active,6,2024-04-19T00:00:00
|
||||
WTH-00105,INT-000262,+91-76883-55069,active,7,2024-03-03T00:00:00
|
||||
WTH-00106,INT-000263,+91-76883-55069,archived,5,2024-03-04T00:00:00
|
||||
WTH-00107,INT-000265,+91-76883-55069,archived,5,2024-03-13T00:00:00
|
||||
WTH-00108,INT-000275,+91-91153-89511,archived,4,2025-10-03T00:00:00
|
||||
WTH-00109,INT-000277,+91-91153-89511,archived,7,2025-10-13T00:00:00
|
||||
WTH-00110,INT-000279,+91-75696-59369,active,7,2024-05-22T00:00:00
|
||||
WTH-00111,INT-000284,+91-97083-29603,active,3,2024-01-29T00:00:00
|
||||
WTH-00112,INT-000285,+91-97083-29603,archived,8,2024-01-29T00:00:00
|
||||
WTH-00113,INT-000288,+91-97083-29603,active,5,2024-02-23T00:00:00
|
||||
WTH-00114,INT-000290,+91-97083-29603,active,6,2024-03-03T00:00:00
|
||||
WTH-00115,INT-000295,+91-91350-86725,archived,4,2025-06-30T00:00:00
|
||||
WTH-00116,INT-000310,+91-96310-77277,active,9,2026-03-01T00:00:00
|
||||
WTH-00117,INT-000317,+91-77695-41726,active,6,2025-01-15T00:00:00
|
||||
WTH-00118,INT-000318,+91-77695-41726,active,4,2025-01-17T00:00:00
|
||||
WTH-00119,INT-000320,+91-77695-41726,archived,10,2025-02-27T00:00:00
|
||||
WTH-00120,INT-000323,+91-92880-77922,active,11,2024-04-25T00:00:00
|
||||
WTH-00121,INT-000324,+91-92880-77922,active,11,2024-04-27T00:00:00
|
||||
WTH-00122,INT-000326,+91-92880-77922,active,5,2024-05-16T00:00:00
|
||||
WTH-00123,INT-000330,+91-92880-77922,active,3,2024-06-27T00:00:00
|
||||
WTH-00124,INT-000332,+91-92880-77922,archived,8,2024-07-06T00:00:00
|
||||
WTH-00125,INT-000338,+91-86370-27625,active,12,2026-03-07T00:00:00
|
||||
WTH-00126,INT-000340,+91-79388-70784,active,6,2025-09-14T00:00:00
|
||||
WTH-00127,INT-000342,+91-79388-70784,active,3,2025-10-02T00:00:00
|
||||
WTH-00128,INT-000343,+91-79388-70784,active,9,2025-10-23T00:00:00
|
||||
WTH-00129,INT-000344,+91-79388-70784,archived,9,2025-11-01T00:00:00
|
||||
WTH-00130,INT-000358,+91-87974-68306,active,12,2025-06-15T00:00:00
|
||||
WTH-00131,INT-000359,+91-87974-68306,active,11,2025-06-16T00:00:00
|
||||
WTH-00132,INT-000364,+91-87974-68306,active,6,2025-07-25T00:00:00
|
||||
WTH-00133,INT-000368,+91-92953-91625,active,8,2026-01-05T00:00:00
|
||||
WTH-00134,INT-000372,+91-94403-82034,archived,4,2026-01-10T00:00:00
|
||||
WTH-00135,INT-000373,+91-94403-82034,archived,4,2026-02-01T00:00:00
|
||||
WTH-00136,INT-000379,+91-72256-79617,archived,5,2025-10-24T00:00:00
|
||||
WTH-00137,INT-000381,+91-72256-79617,active,12,2025-11-17T00:00:00
|
||||
WTH-00138,INT-000383,+91-72256-79617,active,9,2025-12-02T00:00:00
|
||||
WTH-00139,INT-000384,+91-72256-79617,archived,4,2025-12-08T00:00:00
|
||||
WTH-00140,INT-000390,+91-88298-83156,active,11,2025-01-16T00:00:00
|
||||
WTH-00141,INT-000391,+91-88298-83156,active,10,2025-01-27T00:00:00
|
||||
WTH-00142,INT-000393,+91-88298-83156,active,5,2025-03-11T00:00:00
|
||||
WTH-00143,INT-000396,+91-77039-51275,archived,12,2024-04-17T00:00:00
|
||||
WTH-00144,INT-000399,+91-77039-51275,active,8,2024-04-28T00:00:00
|
||||
WTH-00145,INT-000403,+91-77039-51275,active,9,2024-06-27T00:00:00
|
||||
WTH-00146,INT-000409,+91-74850-27326,active,9,2025-05-17T00:00:00
|
||||
WTH-00147,INT-000412,+91-74850-27326,active,7,2025-05-31T00:00:00
|
||||
WTH-00148,INT-000416,+91-80874-37395,archived,9,2024-01-29T00:00:00
|
||||
WTH-00149,INT-000419,+91-80874-37395,archived,7,2024-02-20T00:00:00
|
||||
WTH-00150,INT-000428,+91-77739-75700,active,8,2024-02-24T00:00:00
|
||||
WTH-00151,INT-000429,+91-77739-75700,active,8,2024-02-29T00:00:00
|
||||
WTH-00152,INT-000430,+91-77739-75700,active,5,2024-02-29T00:00:00
|
||||
WTH-00153,INT-000436,+91-77739-75700,active,4,2024-04-17T00:00:00
|
||||
WTH-00154,INT-000437,+91-77739-75700,archived,9,2024-04-20T00:00:00
|
||||
WTH-00155,INT-000439,+91-77739-75700,active,4,2024-04-25T00:00:00
|
||||
WTH-00156,INT-000443,+91-81772-20417,active,5,2024-11-22T00:00:00
|
||||
WTH-00157,INT-000444,+91-81772-20417,active,12,2024-11-24T00:00:00
|
||||
WTH-00158,INT-000446,+91-81772-20417,active,3,2024-12-27T00:00:00
|
||||
WTH-00159,INT-000450,+91-72963-75622,active,8,2026-02-05T00:00:00
|
||||
WTH-00160,INT-000458,+91-87809-10753,active,5,2024-09-16T00:00:00
|
||||
WTH-00161,INT-000464,+91-87809-10753,archived,4,2024-11-14T00:00:00
|
||||
WTH-00162,INT-000465,+91-87809-10753,archived,3,2024-11-15T00:00:00
|
||||
WTH-00163,INT-000467,+91-87809-10753,archived,10,2024-11-22T00:00:00
|
||||
WTH-00164,INT-000468,+91-87809-10753,archived,8,2024-11-22T00:00:00
|
||||
WTH-00165,INT-000472,+91-93911-92441,active,4,2026-01-16T00:00:00
|
||||
WTH-00166,INT-000475,+91-93911-92441,archived,8,2026-01-29T00:00:00
|
||||
WTH-00167,INT-000476,+91-93911-92441,archived,6,2026-02-21T00:00:00
|
||||
WTH-00168,INT-000480,+91-92610-46913,active,5,2025-09-05T00:00:00
|
||||
WTH-00169,INT-000484,+91-72844-75149,active,4,2025-04-20T00:00:00
|
||||
WTH-00170,INT-000485,+91-72844-75149,archived,10,2025-04-27T00:00:00
|
||||
WTH-00171,INT-000486,+91-72844-75149,active,8,2025-05-01T00:00:00
|
||||
WTH-00172,INT-000489,+91-72844-75149,active,7,2025-05-26T00:00:00
|
||||
WTH-00173,INT-000492,+91-72844-75149,archived,10,2025-06-14T00:00:00
|
||||
WTH-00174,INT-000496,+91-75160-45866,active,7,2024-11-26T00:00:00
|
||||
WTH-00175,INT-000497,+91-75160-45866,active,7,2024-12-09T00:00:00
|
||||
WTH-00176,INT-000499,+91-75160-45866,archived,6,2024-12-10T00:00:00
|
||||
WTH-00177,INT-000504,+91-95846-52567,active,9,2024-06-04T00:00:00
|
||||
WTH-00178,INT-000507,+91-95846-52567,active,10,2024-06-24T00:00:00
|
||||
WTH-00179,INT-000513,+91-76739-99327,active,9,2025-01-26T00:00:00
|
||||
WTH-00180,INT-000520,+91-74496-94180,archived,8,2026-02-20T00:00:00
|
||||
WTH-00181,INT-000534,+91-71780-94182,archived,8,2026-01-26T00:00:00
|
||||
WTH-00182,INT-000538,+91-73012-17455,active,7,2024-05-26T00:00:00
|
||||
WTH-00183,INT-000543,+91-84436-19096,archived,5,2024-04-21T00:00:00
|
||||
WTH-00184,INT-000544,+91-84436-19096,archived,5,2024-04-29T00:00:00
|
||||
WTH-00185,INT-000551,+91-84436-19096,active,12,2024-07-01T00:00:00
|
||||
WTH-00186,INT-000555,+91-97563-70245,active,10,2024-05-07T00:00:00
|
||||
WTH-00187,INT-000558,+91-97563-70245,active,8,2024-05-17T00:00:00
|
||||
WTH-00188,INT-000559,+91-97563-70245,active,5,2024-05-23T00:00:00
|
||||
WTH-00189,INT-000560,+91-97563-70245,active,10,2024-06-08T00:00:00
|
||||
WTH-00190,INT-000561,+91-97563-70245,active,11,2024-06-12T00:00:00
|
||||
WTH-00191,INT-000569,+91-94099-28558,archived,9,2024-06-25T00:00:00
|
||||
WTH-00192,INT-000576,+91-98823-73827,active,3,2024-12-07T00:00:00
|
||||
WTH-00193,INT-000577,+91-98823-73827,archived,10,2024-12-14T00:00:00
|
||||
WTH-00194,INT-000578,+91-98823-73827,active,8,2025-01-06T00:00:00
|
||||
WTH-00195,INT-000581,+91-75235-97836,active,4,2025-04-22T00:00:00
|
||||
WTH-00196,INT-000586,+91-75137-93623,active,6,2025-10-01T00:00:00
|
||||
WTH-00197,INT-000589,+91-75137-93623,active,9,2025-10-11T00:00:00
|
||||
WTH-00198,INT-000597,+91-93065-93021,active,12,2024-04-01T00:00:00
|
||||
WTH-00199,INT-000598,+91-93065-93021,active,10,2024-04-17T00:00:00
|
||||
WTH-00200,INT-000600,+91-93065-93021,archived,8,2024-05-01T00:00:00
|
||||
WTH-00201,INT-000602,+91-81312-69298,active,5,2025-07-01T00:00:00
|
||||
WTH-00202,INT-000603,+91-81312-69298,active,5,2025-07-08T00:00:00
|
||||
WTH-00203,INT-000605,+91-81312-69298,active,3,2025-08-03T00:00:00
|
||||
WTH-00204,INT-000606,+91-81312-69298,active,8,2025-09-04T00:00:00
|
||||
WTH-00205,INT-000610,+91-98566-40451,active,8,2024-11-20T00:00:00
|
||||
WTH-00206,INT-000613,+91-98566-40451,active,7,2024-12-13T00:00:00
|
||||
WTH-00207,INT-000614,+91-98566-40451,active,12,2024-12-28T00:00:00
|
||||
WTH-00208,INT-000619,+91-98566-40451,active,3,2025-01-31T00:00:00
|
||||
WTH-00209,INT-000622,+91-80492-30454,active,4,2025-05-06T00:00:00
|
||||
WTH-00210,INT-000635,+91-89040-72978,active,7,2024-05-13T00:00:00
|
||||
WTH-00211,INT-000636,+91-89040-72978,archived,11,2024-07-27T00:00:00
|
||||
WTH-00212,INT-000644,+91-76730-87018,active,11,2025-06-05T00:00:00
|
||||
WTH-00213,INT-000646,+91-76730-87018,active,10,2025-06-11T00:00:00
|
||||
WTH-00214,INT-000647,+91-76730-87018,active,10,2025-06-16T00:00:00
|
||||
WTH-00215,INT-000648,+91-76730-87018,active,9,2025-06-16T00:00:00
|
||||
WTH-00216,INT-000655,+91-76730-87018,active,6,2025-08-05T00:00:00
|
||||
WTH-00217,INT-000667,+91-75004-49682,active,7,2025-06-08T00:00:00
|
||||
WTH-00218,INT-000670,+91-71826-61299,active,3,2025-01-25T00:00:00
|
||||
WTH-00219,INT-000675,+91-71826-61299,archived,4,2025-02-11T00:00:00
|
||||
WTH-00220,INT-000676,+91-71826-61299,active,5,2025-03-01T00:00:00
|
||||
WTH-00221,INT-000677,+91-71826-61299,active,3,2025-03-10T00:00:00
|
||||
WTH-00222,INT-000678,+91-71826-61299,active,9,2025-03-13T00:00:00
|
||||
WTH-00223,INT-000679,+91-71826-61299,active,4,2025-03-18T00:00:00
|
||||
WTH-00224,INT-000683,+91-79416-44754,archived,7,2024-06-15T00:00:00
|
||||
WTH-00225,INT-000685,+91-85209-73620,archived,8,2024-11-28T00:00:00
|
||||
WTH-00226,INT-000686,+91-85209-73620,active,6,2024-12-22T00:00:00
|
||||
WTH-00227,INT-000687,+91-85209-73620,archived,12,2024-12-23T00:00:00
|
||||
WTH-00228,INT-000694,+91-85209-73620,active,11,2025-02-04T00:00:00
|
||||
WTH-00229,INT-000696,+91-85572-58200,active,12,2024-11-23T00:00:00
|
||||
WTH-00230,INT-000697,+91-85572-58200,active,6,2024-12-14T00:00:00
|
||||
WTH-00231,INT-000704,+91-76556-92352,archived,3,2025-08-28T00:00:00
|
||||
WTH-00232,INT-000705,+91-76556-92352,active,10,2025-09-07T00:00:00
|
||||
WTH-00233,INT-000710,+91-76556-92352,active,4,2025-11-02T00:00:00
|
||||
WTH-00234,INT-000714,+91-74266-66532,archived,9,2024-05-28T00:00:00
|
||||
WTH-00235,INT-000715,+91-74266-66532,archived,11,2024-06-18T00:00:00
|
||||
WTH-00236,INT-000716,+91-74266-66532,active,7,2024-06-22T00:00:00
|
||||
WTH-00237,INT-000717,+91-74266-66532,active,5,2024-06-26T00:00:00
|
||||
WTH-00238,INT-000718,+91-74266-66532,active,9,2024-07-17T00:00:00
|
||||
WTH-00239,INT-000719,+91-74266-66532,active,7,2024-07-28T00:00:00
|
||||
WTH-00240,INT-000725,+91-93273-79523,active,4,2024-10-26T00:00:00
|
||||
WTH-00241,INT-000732,+91-72517-42264,archived,6,2024-08-14T00:00:00
|
||||
WTH-00242,INT-000733,+91-72517-42264,archived,6,2024-09-04T00:00:00
|
||||
WTH-00243,INT-000741,+91-97264-58163,active,8,2024-05-22T00:00:00
|
||||
WTH-00244,INT-000753,+91-90657-66595,active,3,2025-10-01T00:00:00
|
||||
WTH-00245,INT-000757,+91-89849-74511,active,5,2025-08-19T00:00:00
|
||||
WTH-00246,INT-000761,+91-89849-74511,active,12,2025-09-09T00:00:00
|
||||
WTH-00247,INT-000763,+91-89849-74511,archived,8,2025-09-18T00:00:00
|
||||
WTH-00248,INT-000775,+91-97806-36462,active,5,2024-04-05T00:00:00
|
||||
WTH-00249,INT-000780,+91-80960-61117,active,9,2026-01-27T00:00:00
|
||||
WTH-00250,INT-000782,+91-80960-61117,active,9,2026-02-15T00:00:00
|
||||
WTH-00251,INT-000783,+91-80960-61117,active,9,2026-02-16T00:00:00
|
||||
WTH-00252,INT-000787,+91-80960-61117,active,12,2026-02-28T00:00:00
|
||||
WTH-00253,INT-000788,+91-80960-61117,archived,10,2026-03-09T00:00:00
|
||||
WTH-00254,INT-000790,+91-80960-61117,active,4,2026-03-25T00:00:00
|
||||
WTH-00255,INT-000795,+91-93319-65796,archived,5,2025-04-21T00:00:00
|
||||
WTH-00256,INT-000801,+91-72213-15856,active,7,2025-06-16T00:00:00
|
||||
WTH-00257,INT-000803,+91-72213-15856,active,4,2025-06-24T00:00:00
|
||||
WTH-00258,INT-000805,+91-72213-15856,active,6,2025-07-04T00:00:00
|
||||
WTH-00259,INT-000807,+91-72213-15856,active,9,2025-07-30T00:00:00
|
||||
WTH-00260,INT-000810,+91-73254-81012,active,6,2024-10-25T00:00:00
|
||||
WTH-00261,INT-000811,+91-73254-81012,active,6,2024-11-03T00:00:00
|
||||
WTH-00262,INT-000812,+91-73254-81012,active,10,2024-11-05T00:00:00
|
||||
WTH-00263,INT-000813,+91-73254-81012,active,10,2024-11-17T00:00:00
|
||||
WTH-00264,INT-000818,+91-70017-17887,active,6,2025-12-09T00:00:00
|
||||
WTH-00265,INT-000826,+91-94851-46848,active,8,2025-11-05T00:00:00
|
||||
WTH-00266,INT-000830,+91-94851-46848,active,7,2026-01-11T00:00:00
|
||||
WTH-00267,INT-000832,+91-76451-31558,active,10,2024-10-26T00:00:00
|
||||
WTH-00268,INT-000841,+91-88325-16842,active,12,2025-11-17T00:00:00
|
||||
WTH-00269,INT-000842,+91-88325-16842,archived,9,2025-12-24T00:00:00
|
||||
WTH-00270,INT-000845,+91-74830-71541,archived,11,2025-11-25T00:00:00
|
||||
WTH-00271,INT-000850,+91-76727-62469,active,5,2025-10-16T00:00:00
|
||||
WTH-00272,INT-000853,+91-76727-62469,active,3,2025-11-10T00:00:00
|
||||
WTH-00273,INT-000857,+91-76727-62469,active,4,2025-12-03T00:00:00
|
||||
WTH-00274,INT-000868,+91-94629-21013,active,11,2024-11-21T00:00:00
|
||||
WTH-00275,INT-000870,+91-94629-21013,active,10,2024-12-15T00:00:00
|
||||
WTH-00276,INT-000875,+91-94629-21013,active,11,2025-01-19T00:00:00
|
||||
WTH-00277,INT-000878,+91-94996-80464,active,8,2024-07-17T00:00:00
|
||||
WTH-00278,INT-000879,+91-94996-80464,active,11,2024-07-18T00:00:00
|
||||
WTH-00279,INT-000880,+91-94996-80464,archived,4,2024-07-24T00:00:00
|
||||
WTH-00280,INT-000884,+91-94996-80464,active,7,2024-08-28T00:00:00
|
||||
WTH-00281,INT-000889,+91-75630-52830,active,5,2024-06-18T00:00:00
|
||||
WTH-00282,INT-000890,+91-75630-52830,archived,5,2024-06-21T00:00:00
|
||||
WTH-00283,INT-000892,+91-75630-52830,active,6,2024-07-04T00:00:00
|
||||
WTH-00284,INT-000899,+91-75630-52830,active,5,2024-08-20T00:00:00
|
||||
WTH-00285,INT-000900,+91-75630-52830,active,7,2024-09-03T00:00:00
|
||||
WTH-00286,INT-000903,+91-92873-38476,active,11,2024-06-28T00:00:00
|
||||
WTH-00287,INT-000910,+91-92873-38476,archived,3,2024-09-02T00:00:00
|
||||
WTH-00288,INT-000913,+91-97410-93203,active,3,2024-02-16T00:00:00
|
||||
WTH-00289,INT-000915,+91-97410-93203,active,9,2024-03-04T00:00:00
|
||||
WTH-00290,INT-000923,+91-82090-15759,archived,12,2024-05-20T00:00:00
|
||||
WTH-00291,INT-000925,+91-82090-15759,active,4,2024-05-22T00:00:00
|
||||
WTH-00292,INT-000929,+91-82090-15759,archived,5,2024-06-15T00:00:00
|
||||
WTH-00293,INT-000930,+91-82090-15759,active,4,2024-06-16T00:00:00
|
||||
WTH-00294,INT-000936,+91-84540-53082,archived,8,2025-03-18T00:00:00
|
||||
WTH-00295,INT-000938,+91-84540-53082,active,9,2025-04-13T00:00:00
|
||||
WTH-00296,INT-000941,+91-84540-53082,active,8,2025-05-09T00:00:00
|
||||
WTH-00297,INT-000944,+91-93756-71220,active,8,2024-02-25T00:00:00
|
||||
WTH-00298,INT-000946,+91-93756-71220,active,12,2024-03-06T00:00:00
|
||||
WTH-00299,INT-000949,+91-88533-31281,active,7,2025-10-19T00:00:00
|
||||
WTH-00300,INT-000955,+91-90540-91844,active,4,2025-05-14T00:00:00
|
||||
WTH-00301,INT-000956,+91-90540-91844,active,3,2025-07-21T00:00:00
|
||||
WTH-00302,INT-000957,+91-90540-91844,active,8,2025-07-23T00:00:00
|
||||
WTH-00303,INT-000958,+91-90540-91844,active,6,2025-07-30T00:00:00
|
||||
WTH-00304,INT-000967,+91-72963-53620,active,7,2026-02-02T00:00:00
|
||||
WTH-00305,INT-000968,+91-72963-53620,active,12,2026-02-05T00:00:00
|
||||
WTH-00306,INT-000985,+91-95423-97914,active,8,2025-10-20T00:00:00
|
||||
WTH-00307,INT-000991,+91-97900-14588,active,4,2025-07-08T00:00:00
|
||||
WTH-00308,INT-000995,+91-97900-14588,active,9,2025-07-28T00:00:00
|
||||
WTH-00309,INT-000997,+91-97900-14588,active,9,2025-08-07T00:00:00
|
||||
WTH-00310,INT-001001,+91-92757-28775,active,10,2025-01-29T00:00:00
|
||||
WTH-00311,INT-001002,+91-92757-28775,active,8,2025-02-06T00:00:00
|
||||
WTH-00312,INT-001003,+91-92757-28775,active,5,2025-02-19T00:00:00
|
||||
WTH-00313,INT-001004,+91-92757-28775,active,3,2025-03-07T00:00:00
|
||||
WTH-00314,INT-001005,+91-92757-28775,active,9,2025-03-20T00:00:00
|
||||
WTH-00315,INT-001006,+91-92757-28775,active,7,2025-04-04T00:00:00
|
||||
WTH-00316,INT-001009,+91-83705-70003,archived,9,2024-04-21T00:00:00
|
||||
WTH-00317,INT-001010,+91-83705-70003,active,6,2024-04-21T00:00:00
|
||||
WTH-00318,INT-001013,+91-83705-70003,archived,12,2024-05-12T00:00:00
|
||||
WTH-00319,INT-001019,+91-99615-39500,active,8,2025-02-03T00:00:00
|
||||
WTH-00320,INT-001022,+91-75099-96066,active,10,2025-03-19T00:00:00
|
||||
WTH-00321,INT-001023,+91-75099-96066,active,10,2025-04-02T00:00:00
|
||||
WTH-00322,INT-001025,+91-75099-96066,active,10,2025-04-14T00:00:00
|
||||
WTH-00323,INT-001029,+91-75099-96066,active,12,2025-04-23T00:00:00
|
||||
WTH-00324,INT-001031,+91-75099-96066,active,3,2025-04-30T00:00:00
|
||||
WTH-00325,INT-001034,+91-93149-23508,active,6,2025-07-30T00:00:00
|
||||
WTH-00326,INT-001036,+91-73301-66479,archived,6,2026-02-02T00:00:00
|
||||
WTH-00327,INT-001038,+91-73301-66479,archived,9,2026-02-08T00:00:00
|
||||
WTH-00328,INT-001040,+91-73301-66479,active,4,2026-03-30T00:00:00
|
||||
WTH-00329,INT-001045,+91-89633-45933,archived,11,2024-08-24T00:00:00
|
||||
WTH-00330,INT-001046,+91-89633-45933,active,7,2024-09-02T00:00:00
|
||||
WTH-00331,INT-001054,+91-98619-16752,archived,3,2025-04-08T00:00:00
|
||||
WTH-00332,INT-001055,+91-98619-16752,active,7,2025-05-05T00:00:00
|
||||
WTH-00333,INT-001056,+91-98619-16752,active,12,2025-05-17T00:00:00
|
||||
WTH-00334,INT-001057,+91-98619-16752,active,6,2025-05-21T00:00:00
|
||||
WTH-00335,INT-001059,+91-76155-19103,archived,3,2024-04-26T00:00:00
|
||||
WTH-00336,INT-001060,+91-76155-19103,archived,7,2024-05-28T00:00:00
|
||||
WTH-00337,INT-001062,+91-76155-19103,active,12,2024-07-03T00:00:00
|
||||
WTH-00338,INT-001065,+91-70039-39401,active,9,2025-01-05T00:00:00
|
||||
WTH-00339,INT-001071,+91-93812-46500,active,11,2025-07-23T00:00:00
|
||||
WTH-00340,INT-001075,+91-97369-82286,archived,6,2024-03-24T00:00:00
|
||||
WTH-00341,INT-001081,+91-87088-59487,active,8,2024-06-18T00:00:00
|
||||
WTH-00342,INT-001086,+91-80856-63383,archived,10,2024-09-18T00:00:00
|
||||
WTH-00343,INT-001091,+91-93286-70390,active,11,2024-07-04T00:00:00
|
||||
WTH-00344,INT-001092,+91-93286-70390,active,4,2024-07-29T00:00:00
|
||||
WTH-00345,INT-001094,+91-91926-22255,active,4,2024-04-17T00:00:00
|
||||
WTH-00346,INT-001097,+91-71772-37720,archived,4,2024-11-17T00:00:00
|
||||
WTH-00347,INT-001098,+91-71772-37720,active,10,2024-11-27T00:00:00
|
||||
WTH-00348,INT-001099,+91-71772-37720,active,12,2024-12-03T00:00:00
|
||||
WTH-00349,INT-001102,+91-71772-37720,active,4,2024-12-13T00:00:00
|
||||
WTH-00350,INT-001103,+91-71772-37720,active,10,2024-12-13T00:00:00
|
||||
WTH-00351,INT-001113,+91-84763-26478,active,12,2025-01-24T00:00:00
|
||||
WTH-00352,INT-001117,+91-84763-26478,archived,12,2025-02-24T00:00:00
|
||||
WTH-00353,INT-001118,+91-84763-26478,active,9,2025-03-19T00:00:00
|
||||
WTH-00354,INT-001122,+91-90778-47125,active,11,2025-12-23T00:00:00
|
||||
WTH-00355,INT-001127,+91-90778-47125,archived,10,2026-01-28T00:00:00
|
||||
WTH-00356,INT-001128,+91-90778-47125,active,11,2026-01-29T00:00:00
|
||||
WTH-00357,INT-001131,+91-80980-32336,active,9,2025-07-11T00:00:00
|
||||
WTH-00358,INT-001135,+91-80980-32336,archived,10,2025-08-14T00:00:00
|
||||
WTH-00359,INT-001138,+91-79729-35405,archived,4,2024-07-07T00:00:00
|
||||
WTH-00360,INT-001140,+91-81233-55453,archived,9,2025-07-11T00:00:00
|
||||
WTH-00361,INT-001141,+91-81233-55453,active,8,2025-07-12T00:00:00
|
||||
WTH-00362,INT-001143,+91-81233-55453,active,5,2025-08-06T00:00:00
|
||||
WTH-00363,INT-001144,+91-81233-55453,active,7,2025-08-18T00:00:00
|
||||
WTH-00364,INT-001145,+91-81233-55453,active,11,2025-08-25T00:00:00
|
||||
WTH-00365,INT-001146,+91-81233-55453,active,8,2025-09-10T00:00:00
|
||||
WTH-00366,INT-001148,+91-96510-52294,archived,5,2025-08-09T00:00:00
|
||||
WTH-00367,INT-001163,+91-81055-94512,active,11,2024-03-16T00:00:00
|
||||
WTH-00368,INT-001165,+91-99091-64171,archived,8,2025-02-16T00:00:00
|
||||
WTH-00369,INT-001171,+91-77882-12174,active,8,2024-12-20T00:00:00
|
||||
WTH-00370,INT-001183,+91-88849-44888,active,4,2026-03-05T00:00:00
|
||||
WTH-00371,INT-001185,+91-89464-56156,active,7,2024-08-01T00:00:00
|
||||
WTH-00372,INT-001193,+91-88926-66455,active,10,2025-10-21T00:00:00
|
||||
WTH-00373,INT-001194,+91-88926-66455,active,5,2025-10-31T00:00:00
|
||||
WTH-00374,INT-001197,+91-88926-66455,active,3,2025-12-06T00:00:00
|
||||
WTH-00375,INT-001198,+91-88926-66455,archived,4,2025-12-09T00:00:00
|
||||
WTH-00376,INT-001201,+91-84100-56170,active,5,2024-08-25T00:00:00
|
||||
WTH-00377,INT-001202,+91-84100-56170,active,10,2024-09-15T00:00:00
|
||||
WTH-00378,INT-001203,+91-84100-56170,active,12,2024-09-28T00:00:00
|
||||
WTH-00379,INT-001207,+91-85347-56424,archived,12,2024-09-13T00:00:00
|
||||
WTH-00380,INT-001210,+91-85347-56424,active,12,2024-10-09T00:00:00
|
||||
WTH-00381,INT-001214,+91-85347-56424,archived,11,2024-10-17T00:00:00
|
||||
WTH-00382,INT-001215,+91-85347-56424,archived,12,2024-10-22T00:00:00
|
||||
WTH-00383,INT-001216,+91-85347-56424,active,10,2024-10-23T00:00:00
|
||||
WTH-00384,INT-001218,+91-85347-56424,archived,8,2024-11-30T00:00:00
|
||||
WTH-00385,INT-001222,+91-98832-25864,active,7,2025-09-26T00:00:00
|
||||
WTH-00386,INT-001233,+91-95013-59063,active,12,2025-11-18T00:00:00
|
||||
WTH-00387,INT-001236,+91-98638-19288,active,8,2024-09-04T00:00:00
|
||||
WTH-00388,INT-001238,+91-98638-19288,archived,6,2024-09-20T00:00:00
|
||||
WTH-00389,INT-001240,+91-98638-19288,active,8,2024-09-25T00:00:00
|
||||
WTH-00390,INT-001243,+91-94816-96944,active,11,2025-10-05T00:00:00
|
||||
WTH-00391,INT-001248,+91-87504-89709,active,5,2025-10-25T00:00:00
|
||||
WTH-00392,INT-001251,+91-85686-96190,active,6,2025-01-26T00:00:00
|
||||
WTH-00393,INT-001257,+91-77354-36965,active,3,2026-03-08T00:00:00
|
||||
WTH-00394,INT-001262,+91-77354-36965,active,3,2026-04-17T00:00:00
|
||||
WTH-00395,INT-001266,+91-90170-45949,active,12,2024-02-08T00:00:00
|
||||
WTH-00396,INT-001269,+91-90170-45949,archived,5,2024-04-03T00:00:00
|
||||
WTH-00397,INT-001270,+91-90170-45949,active,9,2024-04-04T00:00:00
|
||||
WTH-00398,INT-001273,+91-77624-25000,active,6,2024-04-04T00:00:00
|
||||
WTH-00399,INT-001274,+91-77624-25000,active,8,2024-04-05T00:00:00
|
||||
WTH-00400,INT-001275,+91-77624-25000,archived,10,2024-04-25T00:00:00
|
||||
WTH-00401,INT-001278,+91-76929-51039,archived,7,2024-08-25T00:00:00
|
||||
WTH-00402,INT-001279,+91-76929-51039,active,12,2024-08-25T00:00:00
|
||||
WTH-00403,INT-001284,+91-76929-51039,active,8,2024-09-26T00:00:00
|
||||
WTH-00404,INT-001286,+91-76929-51039,active,3,2024-10-12T00:00:00
|
||||
WTH-00405,INT-001289,+91-72611-56135,archived,9,2024-05-21T00:00:00
|
||||
WTH-00406,INT-001294,+91-72611-56135,active,8,2024-07-04T00:00:00
|
||||
WTH-00407,INT-001295,+91-72611-56135,active,12,2024-07-05T00:00:00
|
||||
WTH-00408,INT-001296,+91-72611-56135,archived,9,2024-07-25T00:00:00
|
||||
WTH-00409,INT-001297,+91-72611-56135,active,9,2024-07-31T00:00:00
|
||||
WTH-00410,INT-001298,+91-72611-56135,archived,4,2024-08-01T00:00:00
|
||||
WTH-00411,INT-001301,+91-89381-89791,active,5,2024-11-12T00:00:00
|
||||
WTH-00412,INT-001303,+91-89381-89791,active,12,2024-11-25T00:00:00
|
||||
WTH-00413,INT-001306,+91-89381-89791,active,5,2025-01-04T00:00:00
|
||||
WTH-00414,INT-001309,+91-89381-89791,archived,12,2025-01-12T00:00:00
|
||||
WTH-00415,INT-001317,+91-92022-19710,active,5,2025-11-22T00:00:00
|
||||
WTH-00416,INT-001318,+91-92022-19710,archived,7,2025-12-21T00:00:00
|
||||
WTH-00417,INT-001323,+91-85867-79528,active,3,2025-06-14T00:00:00
|
||||
WTH-00418,INT-001325,+91-85867-79528,archived,4,2025-06-26T00:00:00
|
||||
WTH-00419,INT-001328,+91-85867-79528,active,6,2025-07-20T00:00:00
|
||||
WTH-00420,INT-001331,+91-85867-79528,active,7,2025-08-02T00:00:00
|
||||
WTH-00421,INT-001333,+91-85867-79528,active,12,2025-08-14T00:00:00
|
||||
WTH-00422,INT-001341,+91-91472-62527,active,11,2024-05-01T00:00:00
|
||||
WTH-00423,INT-001348,+91-91472-62527,active,12,2024-06-09T00:00:00
|
||||
WTH-00424,INT-001349,+91-91472-62527,active,10,2024-06-18T00:00:00
|
||||
WTH-00425,INT-001350,+91-91472-62527,active,3,2024-06-21T00:00:00
|
||||
WTH-00426,INT-001351,+91-91472-62527,active,9,2024-06-30T00:00:00
|
||||
WTH-00427,INT-001354,+91-93692-84270,active,3,2025-09-27T00:00:00
|
||||
WTH-00428,INT-001358,+91-93692-84270,active,8,2025-10-19T00:00:00
|
||||
WTH-00429,INT-001360,+91-93692-84270,archived,8,2025-10-27T00:00:00
|
||||
WTH-00430,INT-001363,+91-93692-84270,active,3,2025-12-03T00:00:00
|
||||
WTH-00431,INT-001366,+91-99148-58710,archived,7,2024-12-15T00:00:00
|
||||
WTH-00432,INT-001367,+91-99148-58710,active,5,2024-12-26T00:00:00
|
||||
WTH-00433,INT-001371,+91-79312-65858,archived,8,2025-08-07T00:00:00
|
||||
WTH-00434,INT-001374,+91-79312-65858,archived,12,2025-08-30T00:00:00
|
||||
WTH-00435,INT-001380,+91-79312-65858,archived,3,2025-09-26T00:00:00
|
||||
WTH-00436,INT-001386,+91-95359-60532,active,10,2025-11-30T00:00:00
|
||||
WTH-00437,INT-001389,+91-95359-60532,archived,3,2026-01-04T00:00:00
|
||||
WTH-00438,INT-001390,+91-95359-60532,active,6,2026-01-10T00:00:00
|
||||
WTH-00439,INT-001392,+91-95359-60532,active,3,2026-01-15T00:00:00
|
||||
WTH-00440,INT-001401,+91-86066-32776,active,11,2025-12-08T00:00:00
|
||||
WTH-00441,INT-001402,+91-86066-32776,archived,5,2025-12-12T00:00:00
|
||||
WTH-00442,INT-001403,+91-86066-32776,active,11,2026-01-05T00:00:00
|
||||
WTH-00443,INT-001405,+91-86066-32776,active,8,2026-01-12T00:00:00
|
||||
WTH-00444,INT-001407,+91-86066-32776,archived,7,2026-01-24T00:00:00
|
||||
WTH-00445,INT-001408,+91-86066-32776,active,7,2026-01-27T00:00:00
|
||||
WTH-00446,INT-001410,+91-77127-93616,active,7,2025-01-05T00:00:00
|
||||
WTH-00447,INT-001412,+91-77127-93616,active,12,2025-01-13T00:00:00
|
||||
WTH-00448,INT-001413,+91-77127-93616,active,9,2025-01-21T00:00:00
|
||||
WTH-00449,INT-001417,+91-77127-93616,active,6,2025-02-11T00:00:00
|
||||
WTH-00450,INT-001420,+91-77127-93616,active,8,2025-02-28T00:00:00
|
||||
WTH-00451,INT-001424,+91-93951-62341,active,5,2024-09-04T00:00:00
|
||||
WTH-00452,INT-001428,+91-93951-62341,archived,3,2024-09-20T00:00:00
|
||||
WTH-00453,INT-001431,+91-93951-62341,active,11,2024-09-29T00:00:00
|
||||
WTH-00454,INT-001433,+91-93951-62341,active,3,2024-10-18T00:00:00
|
||||
WTH-00455,INT-001435,+91-85641-30883,active,11,2025-01-11T00:00:00
|
||||
WTH-00456,INT-001436,+91-85641-30883,archived,4,2025-01-11T00:00:00
|
||||
WTH-00457,INT-001438,+91-85641-30883,active,8,2025-01-21T00:00:00
|
||||
WTH-00458,INT-001439,+91-85641-30883,archived,11,2025-01-26T00:00:00
|
||||
WTH-00459,INT-001441,+91-85641-30883,active,10,2025-02-06T00:00:00
|
||||
WTH-00460,INT-001444,+91-85641-30883,active,10,2025-02-16T00:00:00
|
||||
WTH-00461,INT-001445,+91-85641-30883,active,12,2025-03-07T00:00:00
|
||||
WTH-00462,INT-001446,+91-85641-30883,active,5,2025-03-11T00:00:00
|
||||
WTH-00463,INT-001448,+91-91491-63015,active,11,2025-11-23T00:00:00
|
||||
WTH-00464,INT-001451,+91-91491-63015,active,4,2025-12-13T00:00:00
|
||||
WTH-00465,INT-001452,+91-91491-63015,archived,5,2025-12-23T00:00:00
|
||||
WTH-00466,INT-001453,+91-91491-63015,archived,3,2025-12-30T00:00:00
|
||||
WTH-00467,INT-001454,+91-91491-63015,archived,9,2025-12-31T00:00:00
|
||||
WTH-00468,INT-001455,+91-91491-63015,active,3,2026-01-04T00:00:00
|
||||
WTH-00469,INT-001461,+91-91491-63015,active,11,2026-02-14T00:00:00
|
||||
WTH-00470,INT-001464,+91-92491-58404,archived,6,2025-07-21T00:00:00
|
||||
WTH-00471,INT-001465,+91-92491-58404,active,5,2025-07-31T00:00:00
|
||||
WTH-00472,INT-001473,+91-77051-67271,active,9,2024-02-16T00:00:00
|
||||
WTH-00473,INT-001476,+91-87615-27261,active,4,2026-01-31T00:00:00
|
||||
WTH-00474,INT-001480,+91-87615-27261,active,6,2026-03-04T00:00:00
|
||||
WTH-00475,INT-001484,+91-87615-27261,archived,3,2026-04-05T00:00:00
|
||||
WTH-00476,INT-001485,+91-87615-27261,active,12,2026-04-15T00:00:00
|
||||
WTH-00477,INT-001489,+91-82133-12977,archived,10,2024-08-10T00:00:00
|
||||
WTH-00478,INT-001493,+91-82133-12977,archived,12,2024-08-25T00:00:00
|
||||
WTH-00479,INT-001495,+91-82133-12977,archived,3,2024-09-02T00:00:00
|
||||
WTH-00480,INT-001497,+91-82133-12977,active,5,2024-10-02T00:00:00
|
||||
WTH-00481,INT-001500,+91-78667-22730,active,6,2024-11-19T00:00:00
|
||||
WTH-00482,INT-001501,+91-78667-22730,active,8,2024-11-27T00:00:00
|
||||
WTH-00483,INT-001505,+91-93630-76662,archived,9,2025-02-12T00:00:00
|
||||
WTH-00484,INT-001511,+91-93630-76662,active,12,2025-03-15T00:00:00
|
||||
WTH-00485,INT-001514,+91-73220-80376,archived,6,2024-02-02T00:00:00
|
||||
WTH-00486,INT-001517,+91-73220-80376,active,4,2024-02-21T00:00:00
|
||||
WTH-00487,INT-001520,+91-73220-80376,active,8,2024-03-07T00:00:00
|
||||
WTH-00488,INT-001521,+91-73220-80376,active,9,2024-03-15T00:00:00
|
||||
WTH-00489,INT-001527,+91-83936-83831,archived,3,2025-04-27T00:00:00
|
||||
WTH-00490,INT-001532,+91-83936-83831,active,4,2025-06-07T00:00:00
|
||||
WTH-00491,INT-001537,+91-82288-17774,archived,3,2026-02-07T00:00:00
|
||||
WTH-00492,INT-001539,+91-82288-17774,active,8,2026-03-05T00:00:00
|
||||
WTH-00493,INT-001542,+91-84002-61944,active,10,2024-12-30T00:00:00
|
||||
WTH-00494,INT-001543,+91-84002-61944,active,10,2025-01-05T00:00:00
|
||||
WTH-00495,INT-001549,+91-75950-23224,archived,12,2024-09-19T00:00:00
|
||||
WTH-00496,INT-001550,+91-75950-23224,active,11,2024-09-27T00:00:00
|
||||
WTH-00497,INT-001554,+91-70237-59811,archived,8,2024-04-24T00:00:00
|
||||
WTH-00498,INT-001555,+91-70237-59811,active,7,2024-05-02T00:00:00
|
||||
WTH-00499,INT-001561,+91-87677-59418,active,5,2025-09-19T00:00:00
|
||||
WTH-00500,INT-001564,+91-88912-44960,archived,5,2024-07-22T00:00:00
|
||||
WTH-00501,INT-001568,+91-88912-44960,active,6,2024-08-30T00:00:00
|
||||
WTH-00502,INT-001569,+91-88912-44960,active,5,2024-09-01T00:00:00
|
||||
WTH-00503,INT-001571,+91-88912-44960,active,4,2024-09-07T00:00:00
|
||||
WTH-00504,INT-001576,+91-98178-79541,active,9,2025-05-16T00:00:00
|
||||
WTH-00505,INT-001579,+91-98178-79541,active,5,2025-06-17T00:00:00
|
||||
WTH-00506,INT-001582,+91-98178-79541,archived,6,2025-06-26T00:00:00
|
||||
WTH-00507,INT-001587,+91-87059-50784,active,4,2024-07-24T00:00:00
|
||||
WTH-00508,INT-001592,+91-97440-84136,active,5,2025-09-21T00:00:00
|
||||
WTH-00509,INT-001596,+91-97440-84136,active,11,2025-11-04T00:00:00
|
||||
WTH-00510,INT-001599,+91-94243-39828,archived,7,2025-01-13T00:00:00
|
||||
WTH-00511,INT-001600,+91-94243-39828,archived,3,2025-01-30T00:00:00
|
||||
WTH-00512,INT-001602,+91-94243-39828,active,9,2025-02-18T00:00:00
|
||||
WTH-00513,INT-001606,+91-97689-48523,active,7,2024-02-22T00:00:00
|
||||
WTH-00514,INT-001607,+91-97689-48523,active,10,2024-02-23T00:00:00
|
||||
WTH-00515,INT-001616,+91-82131-57777,active,10,2025-09-21T00:00:00
|
||||
WTH-00516,INT-001617,+91-82131-57777,active,8,2025-09-30T00:00:00
|
||||
WTH-00517,INT-001618,+91-82131-57777,archived,7,2025-12-02T00:00:00
|
||||
WTH-00518,INT-001620,+91-86082-66469,active,9,2025-09-11T00:00:00
|
||||
WTH-00519,INT-001621,+91-86082-66469,active,12,2025-10-08T00:00:00
|
||||
WTH-00520,INT-001625,+91-86082-66469,active,9,2025-11-05T00:00:00
|
||||
WTH-00521,INT-001627,+91-86082-66469,active,11,2025-11-18T00:00:00
|
||||
WTH-00522,INT-001630,+91-75813-66408,active,3,2024-06-12T00:00:00
|
||||
WTH-00523,INT-001637,+91-92381-33647,archived,11,2024-05-22T00:00:00
|
||||
WTH-00524,INT-001638,+91-92381-33647,active,3,2024-05-27T00:00:00
|
||||
WTH-00525,INT-001640,+91-92381-33647,archived,9,2024-06-04T00:00:00
|
||||
WTH-00526,INT-001641,+91-92381-33647,active,10,2024-06-08T00:00:00
|
||||
WTH-00527,INT-001647,+91-85863-89909,active,8,2025-08-27T00:00:00
|
||||
WTH-00528,INT-001650,+91-85863-89909,active,4,2025-09-12T00:00:00
|
||||
WTH-00529,INT-001651,+91-85863-89909,active,7,2025-09-26T00:00:00
|
||||
WTH-00530,INT-001654,+91-97452-62685,active,4,2025-06-25T00:00:00
|
||||
WTH-00531,INT-001662,+91-74165-77924,active,5,2025-03-05T00:00:00
|
||||
WTH-00532,INT-001665,+91-74165-77924,active,8,2025-04-13T00:00:00
|
||||
WTH-00533,INT-001667,+91-73649-99753,active,9,2024-10-09T00:00:00
|
||||
WTH-00534,INT-001670,+91-76819-63188,active,10,2026-01-21T00:00:00
|
||||
WTH-00535,INT-001674,+91-76819-63188,active,7,2026-02-05T00:00:00
|
||||
WTH-00536,INT-001675,+91-76819-63188,active,4,2026-02-06T00:00:00
|
||||
WTH-00537,INT-001683,+91-70284-16914,active,5,2025-07-19T00:00:00
|
||||
WTH-00538,INT-001686,+91-70284-16914,active,7,2025-08-10T00:00:00
|
||||
WTH-00539,INT-001690,+91-70284-16914,archived,9,2025-08-31T00:00:00
|
||||
WTH-00540,INT-001692,+91-70284-16914,active,12,2025-09-10T00:00:00
|
||||
WTH-00541,INT-001705,+91-70753-26846,active,5,2024-03-21T00:00:00
|
||||
WTH-00542,INT-001711,+91-76888-16553,active,4,2026-01-21T00:00:00
|
||||
WTH-00543,INT-001715,+91-95276-57379,active,12,2025-05-27T00:00:00
|
||||
WTH-00544,INT-001717,+91-95276-57379,archived,12,2025-06-02T00:00:00
|
||||
WTH-00545,INT-001718,+91-95276-57379,archived,8,2025-06-11T00:00:00
|
||||
WTH-00546,INT-001723,+91-95276-57379,archived,7,2025-07-26T00:00:00
|
||||
WTH-00547,INT-001727,+91-93715-75422,active,11,2025-10-01T00:00:00
|
||||
WTH-00548,INT-001732,+91-93715-75422,active,6,2025-11-21T00:00:00
|
||||
WTH-00549,INT-001736,+91-99864-40005,archived,3,2024-11-29T00:00:00
|
||||
WTH-00550,INT-001737,+91-99864-40005,active,7,2024-12-07T00:00:00
|
||||
WTH-00551,INT-001738,+91-99864-40005,archived,3,2024-12-22T00:00:00
|
||||
WTH-00552,INT-001739,+91-99864-40005,archived,3,2024-12-27T00:00:00
|
||||
WTH-00553,INT-001740,+91-99864-40005,active,12,2024-12-27T00:00:00
|
||||
WTH-00554,INT-001744,+91-99864-40005,archived,9,2025-01-06T00:00:00
|
||||
WTH-00555,INT-001750,+91-95909-59284,active,5,2024-07-14T00:00:00
|
||||
WTH-00556,INT-001751,+91-95909-59284,active,11,2024-07-17T00:00:00
|
||||
WTH-00557,INT-001753,+91-95909-59284,archived,3,2024-07-21T00:00:00
|
||||
WTH-00558,INT-001754,+91-95909-59284,archived,10,2024-07-27T00:00:00
|
||||
WTH-00559,INT-001756,+91-95909-59284,active,4,2024-08-10T00:00:00
|
||||
WTH-00560,INT-001760,+91-94728-57227,active,6,2025-08-23T00:00:00
|
||||
WTH-00561,INT-001764,+91-80468-52329,archived,7,2025-03-24T00:00:00
|
||||
WTH-00562,INT-001765,+91-80468-52329,active,12,2025-04-08T00:00:00
|
||||
WTH-00563,INT-001771,+91-97293-98369,active,11,2026-01-02T00:00:00
|
||||
WTH-00564,INT-001774,+91-97293-98369,active,6,2026-01-13T00:00:00
|
||||
WTH-00565,INT-001779,+91-99077-36825,active,9,2025-06-27T00:00:00
|
||||
WTH-00566,INT-001784,+91-79388-57714,archived,11,2025-11-15T00:00:00
|
||||
WTH-00567,INT-001785,+91-79388-57714,active,4,2025-11-18T00:00:00
|
||||
WTH-00568,INT-001787,+91-79388-57714,archived,8,2025-11-30T00:00:00
|
||||
WTH-00569,INT-001793,+91-80665-58932,active,4,2025-06-23T00:00:00
|
||||
WTH-00570,INT-001798,+91-82705-59140,archived,8,2025-11-05T00:00:00
|
||||
WTH-00571,INT-001801,+91-80579-50607,active,9,2025-07-10T00:00:00
|
||||
WTH-00572,INT-001805,+91-71098-46556,active,10,2024-07-14T00:00:00
|
||||
WTH-00573,INT-001809,+91-98848-27964,active,6,2025-08-24T00:00:00
|
||||
WTH-00574,INT-001810,+91-98848-27964,active,8,2025-08-30T00:00:00
|
||||
WTH-00575,INT-001813,+91-98848-27964,active,10,2025-09-27T00:00:00
|
||||
WTH-00576,INT-001815,+91-98848-27964,archived,9,2025-10-30T00:00:00
|
||||
WTH-00577,INT-001818,+91-86290-19837,active,4,2025-01-18T00:00:00
|
||||
WTH-00578,INT-001821,+91-86290-19837,active,7,2025-02-03T00:00:00
|
||||
WTH-00579,INT-001828,+91-84325-60709,active,6,2024-11-24T00:00:00
|
||||
WTH-00580,INT-001832,+91-97701-63267,active,9,2024-12-18T00:00:00
|
||||
WTH-00581,INT-001833,+91-97701-63267,archived,4,2024-12-22T00:00:00
|
||||
WTH-00582,INT-001841,+91-93729-68369,active,6,2025-05-09T00:00:00
|
||||
WTH-00583,INT-001847,+91-87496-26270,active,8,2024-03-17T00:00:00
|
||||
WTH-00584,INT-001848,+91-87496-26270,active,7,2024-03-25T00:00:00
|
||||
WTH-00585,INT-001853,+91-87496-26270,active,5,2024-05-13T00:00:00
|
||||
WTH-00586,INT-001856,+91-70782-51228,active,4,2025-07-04T00:00:00
|
||||
WTH-00587,INT-001860,+91-96165-90337,active,10,2024-02-16T00:00:00
|
||||
WTH-00588,INT-001862,+91-96165-90337,archived,8,2024-03-02T00:00:00
|
||||
WTH-00589,INT-001865,+91-96597-54923,active,7,2025-03-22T00:00:00
|
||||
WTH-00590,INT-001866,+91-96597-54923,archived,12,2025-03-23T00:00:00
|
||||
WTH-00591,INT-001867,+91-96597-54923,active,7,2025-04-08T00:00:00
|
||||
WTH-00592,INT-001869,+91-96597-54923,active,3,2025-06-16T00:00:00
|
||||
WTH-00593,INT-001871,+91-80937-58546,active,10,2024-08-22T00:00:00
|
||||
WTH-00594,INT-001872,+91-80937-58546,active,3,2024-09-10T00:00:00
|
||||
WTH-00595,INT-001873,+91-80937-58546,archived,4,2024-09-15T00:00:00
|
||||
WTH-00596,INT-001875,+91-80937-58546,active,7,2024-09-24T00:00:00
|
||||
WTH-00597,INT-001877,+91-80937-58546,active,10,2024-10-05T00:00:00
|
||||
WTH-00598,INT-001879,+91-80937-58546,active,3,2024-11-04T00:00:00
|
||||
WTH-00599,INT-001881,+91-71294-90525,active,3,2025-08-25T00:00:00
|
||||
WTH-00600,INT-001882,+91-71294-90525,active,12,2025-09-07T00:00:00
|
||||
WTH-00601,INT-001885,+91-89257-25429,active,7,2024-08-09T00:00:00
|
||||
WTH-00602,INT-001886,+91-89257-25429,archived,6,2024-08-10T00:00:00
|
||||
WTH-00603,INT-001889,+91-89257-25429,active,8,2024-09-10T00:00:00
|
||||
WTH-00604,INT-001891,+91-89257-25429,archived,8,2024-09-16T00:00:00
|
||||
WTH-00605,INT-001894,+91-89257-25429,archived,6,2024-10-09T00:00:00
|
||||
WTH-00606,INT-001896,+91-95259-11209,active,8,2025-06-09T00:00:00
|
||||
|
15
db assets/synthetic_crm_v1/csv/inventory_projects.csv
Normal file
15
db assets/synthetic_crm_v1/csv/inventory_projects.csv
Normal file
@@ -0,0 +1,15 @@
|
||||
project_id,project_name,developer_name,city,micro_market,location_json
|
||||
PRJ-001,Eden Devprayag,Eden Group,Kolkata,Rajarhat,"{""lat"": 22.467, ""lng"": 88.4473}"
|
||||
PRJ-002,Sugam Prakriti,Sugam Homes,Kolkata,Barasat,"{""lat"": 22.5765, ""lng"": 88.3014}"
|
||||
PRJ-003,Atri Aqua,Atri Developers,Kolkata,New Town,"{""lat"": 22.6046, ""lng"": 88.4334}"
|
||||
PRJ-004,Atri Surya Toron,Atri Developers,Kolkata,Rajarhat,"{""lat"": 22.6581, ""lng"": 88.4771}"
|
||||
PRJ-005,Siddha Suburbia Bungalow,Siddha Group,Kolkata,Madanpur,"{""lat"": 22.4636, ""lng"": 88.4596}"
|
||||
PRJ-006,Merlin Avana,Merlin Group,Kolkata,Tangra,"{""lat"": 22.6412, ""lng"": 88.3396}"
|
||||
PRJ-007,DTC Good Earth,DTC Projects,Kolkata,New Town,"{""lat"": 22.4364, ""lng"": 88.4946}"
|
||||
PRJ-008,Siddha Serena,Siddha Group,Kolkata,New Town,"{""lat"": 22.6033, ""lng"": 88.4442}"
|
||||
PRJ-009,Siddha Sky Waterfront,Siddha Group,Kolkata,Beliaghata,"{""lat"": 22.5873, ""lng"": 88.4171}"
|
||||
PRJ-010,Godrej Blue,Godrej Properties,Kolkata,New Town,"{""lat"": 22.553, ""lng"": 88.4812}"
|
||||
PRJ-011,DTC Sojon,DTC Projects,Kolkata,Rajarhat,"{""lat"": 22.5619, ""lng"": 88.4477}"
|
||||
PRJ-012,Shriram Grand City,Shriram Properties,Kolkata,Howrah,"{""lat"": 22.4605, ""lng"": 88.4582}"
|
||||
PRJ-013,Godrej Elevate,Godrej Properties,Kolkata,Dum Dum,"{""lat"": 22.5116, ""lng"": 88.4526}"
|
||||
PRJ-014,Ambuja Utpaala,Ambuja Neotia,Kolkata,Tollygunge,"{""lat"": 22.6637, ""lng"": 88.3995}"
|
||||
|
210
db assets/synthetic_crm_v1/csv/inventory_units.csv
Normal file
210
db assets/synthetic_crm_v1/csv/inventory_units.csv
Normal file
@@ -0,0 +1,210 @@
|
||||
unit_id,project_id,unit_label,configuration,area_sqft,price_current,status,facing,floor
|
||||
PRJ-001-U001,PRJ-001,D2-223,Villa,1200,19.84,available,North-East,20
|
||||
PRJ-001-U002,PRJ-001,D8-1940,2 BHK,1800,32.98,available,West,23
|
||||
PRJ-001-U003,PRJ-001,B7-1479,5 BHK,2200,15.19,held,East,12
|
||||
PRJ-001-U004,PRJ-001,A15-2297,Duplex,2200,15.26,held,East,18
|
||||
PRJ-001-U005,PRJ-001,A2-1034,4 BHK,1800,14.24,available,West,4
|
||||
PRJ-001-U006,PRJ-001,C6-1617,5 BHK,4200,22.43,blocked,North,23
|
||||
PRJ-001-U007,PRJ-001,B6-1994,Villa,1450,3.54,blocked,South-East,18
|
||||
PRJ-001-U008,PRJ-001,B2-1393,3 BHK,850,6.25,available,West,19
|
||||
PRJ-001-U009,PRJ-001,D13-1980,Villa,1800,12.54,available,West,24
|
||||
PRJ-001-U010,PRJ-001,D19-1736,Penthouse,2200,38.51,available,North-East,16
|
||||
PRJ-001-U011,PRJ-001,B6-1830,2 BHK,1200,2.2,held,South,20
|
||||
PRJ-001-U012,PRJ-001,A4-2300,5 BHK,2200,41.59,blocked,North,4
|
||||
PRJ-001-U013,PRJ-001,D1-1179,4 BHK,1450,14.28,available,North-East,4
|
||||
PRJ-001-U014,PRJ-001,B12-762,Duplex,1800,9.98,sold,East,20
|
||||
PRJ-001-U015,PRJ-001,A12-1360,4 BHK,850,9.67,available,North-East,3
|
||||
PRJ-001-U016,PRJ-001,B5-2047,2 BHK,1200,15.69,available,North,17
|
||||
PRJ-001-U017,PRJ-001,B10-1735,Duplex,1800,17.8,blocked,North,15
|
||||
PRJ-001-U018,PRJ-001,B8-363,Penthouse,1200,13.93,sold,North-East,8
|
||||
PRJ-002-U001,PRJ-002,A2-1454,Villa,1800,2.96,available,North,22
|
||||
PRJ-002-U002,PRJ-002,D8-2038,5 BHK,1450,6.93,available,East,4
|
||||
PRJ-002-U003,PRJ-002,D14-2013,Villa,2800,27.03,available,South-East,21
|
||||
PRJ-002-U004,PRJ-002,D11-548,Villa,850,2.02,available,North-East,15
|
||||
PRJ-002-U005,PRJ-002,C15-1124,3 BHK,1450,14.03,available,South,18
|
||||
PRJ-002-U006,PRJ-002,A8-782,2 BHK,850,1.5,held,West,13
|
||||
PRJ-002-U007,PRJ-002,A13-1187,2 BHK,3500,13.29,held,North,14
|
||||
PRJ-002-U008,PRJ-002,B7-1316,Villa,4200,71.33,available,North-East,24
|
||||
PRJ-002-U009,PRJ-002,A2-2493,Penthouse,2800,5.02,sold,West,2
|
||||
PRJ-002-U010,PRJ-002,A20-379,Penthouse,1450,3.75,available,South,4
|
||||
PRJ-002-U011,PRJ-002,A14-2491,Penthouse,850,3.87,available,North,7
|
||||
PRJ-002-U012,PRJ-002,C13-637,Villa,1800,13.96,available,South,11
|
||||
PRJ-002-U013,PRJ-002,D20-2407,Duplex,850,2.34,available,North-East,7
|
||||
PRJ-002-U014,PRJ-002,C3-1101,Penthouse,1450,7.77,available,South,18
|
||||
PRJ-002-U015,PRJ-002,C4-651,Villa,850,4.45,available,South-East,18
|
||||
PRJ-002-U016,PRJ-002,B11-934,3 BHK,2200,12.55,available,North-East,16
|
||||
PRJ-002-U017,PRJ-002,D9-281,4 BHK,1200,1.95,available,South-East,9
|
||||
PRJ-002-U018,PRJ-002,A4-409,3 BHK,3500,45.74,blocked,West,18
|
||||
PRJ-002-U019,PRJ-002,D5-272,2 BHK,1450,10.46,available,North,7
|
||||
PRJ-003-U001,PRJ-003,B8-766,Duplex,3500,69.0,available,South,1
|
||||
PRJ-003-U002,PRJ-003,B9-753,3 BHK,3500,27.76,available,South,2
|
||||
PRJ-003-U003,PRJ-003,B15-1533,Duplex,1800,20.76,available,West,1
|
||||
PRJ-003-U004,PRJ-003,C9-385,Villa,3500,17.22,available,North,21
|
||||
PRJ-003-U005,PRJ-003,A4-1170,Penthouse,2800,23.58,available,East,4
|
||||
PRJ-003-U006,PRJ-003,C14-2195,Penthouse,2800,23.26,sold,West,9
|
||||
PRJ-003-U007,PRJ-003,B12-1867,2 BHK,850,6.99,blocked,North,20
|
||||
PRJ-003-U008,PRJ-003,C14-1437,4 BHK,2200,5.39,available,North-East,5
|
||||
PRJ-003-U009,PRJ-003,B20-2432,3 BHK,3500,30.25,sold,East,10
|
||||
PRJ-003-U010,PRJ-003,C15-1910,4 BHK,3500,15.57,available,North-East,16
|
||||
PRJ-003-U011,PRJ-003,C17-1473,Duplex,1200,3.86,available,South-East,10
|
||||
PRJ-003-U012,PRJ-003,A2-1103,3 BHK,1450,7.16,sold,East,15
|
||||
PRJ-003-U013,PRJ-003,D13-1100,5 BHK,3500,14.64,blocked,East,25
|
||||
PRJ-004-U001,PRJ-004,D2-2384,5 BHK,1450,6.2,available,South,5
|
||||
PRJ-004-U002,PRJ-004,D20-2168,Duplex,2800,33.11,sold,South,6
|
||||
PRJ-004-U003,PRJ-004,C8-1236,Villa,4200,53.08,sold,South,21
|
||||
PRJ-004-U004,PRJ-004,A10-1061,3 BHK,4200,22.05,available,North-East,3
|
||||
PRJ-004-U005,PRJ-004,D5-977,3 BHK,1800,5.75,held,North,18
|
||||
PRJ-004-U006,PRJ-004,B14-1696,5 BHK,850,8.27,sold,South-East,1
|
||||
PRJ-004-U007,PRJ-004,A12-1324,Duplex,4200,39.72,held,North-East,24
|
||||
PRJ-004-U008,PRJ-004,D8-1218,Villa,1800,31.98,available,South,11
|
||||
PRJ-004-U009,PRJ-004,D5-2288,Villa,1450,11.82,held,North-East,19
|
||||
PRJ-004-U010,PRJ-004,D5-1992,Villa,1200,2.02,available,South,11
|
||||
PRJ-004-U011,PRJ-004,C13-1240,3 BHK,2800,35.29,held,North,3
|
||||
PRJ-004-U012,PRJ-004,C8-382,5 BHK,850,1.62,blocked,East,25
|
||||
PRJ-004-U013,PRJ-004,A20-725,2 BHK,1800,7.68,held,South-East,4
|
||||
PRJ-004-U014,PRJ-004,C12-788,Penthouse,4200,19.3,blocked,South-East,4
|
||||
PRJ-004-U015,PRJ-004,A19-206,Duplex,2200,8.36,sold,South-East,13
|
||||
PRJ-004-U016,PRJ-004,B4-1336,5 BHK,1200,5.78,sold,East,19
|
||||
PRJ-004-U017,PRJ-004,D12-383,Duplex,2800,5.05,available,East,14
|
||||
PRJ-004-U018,PRJ-004,D12-1984,Duplex,1200,15.0,held,West,24
|
||||
PRJ-004-U019,PRJ-004,D14-1200,Penthouse,4200,22.28,available,East,9
|
||||
PRJ-004-U020,PRJ-004,D11-218,5 BHK,4200,18.88,available,West,16
|
||||
PRJ-005-U001,PRJ-005,B3-1089,4 BHK,850,4.88,held,North-East,25
|
||||
PRJ-005-U002,PRJ-005,D1-482,3 BHK,4200,48.33,held,South-East,8
|
||||
PRJ-005-U003,PRJ-005,C14-2355,4 BHK,4200,30.43,blocked,South,9
|
||||
PRJ-005-U004,PRJ-005,A7-1393,4 BHK,1800,9.15,sold,South-East,6
|
||||
PRJ-005-U005,PRJ-005,C19-2249,3 BHK,4200,19.27,available,West,10
|
||||
PRJ-005-U006,PRJ-005,C1-2288,3 BHK,1450,10.06,available,East,18
|
||||
PRJ-005-U007,PRJ-005,A1-2452,4 BHK,4200,14.07,held,South,11
|
||||
PRJ-005-U008,PRJ-005,D4-368,3 BHK,2200,3.88,available,North-East,21
|
||||
PRJ-005-U009,PRJ-005,B19-1345,Villa,1450,2.39,available,East,18
|
||||
PRJ-005-U010,PRJ-005,D15-1914,Duplex,1800,15.54,sold,South,10
|
||||
PRJ-005-U011,PRJ-005,B7-1184,Penthouse,1200,2.23,available,West,6
|
||||
PRJ-005-U012,PRJ-005,A14-1946,Penthouse,1450,3.76,held,North,2
|
||||
PRJ-005-U013,PRJ-005,D3-1057,3 BHK,2200,13.13,blocked,North-East,22
|
||||
PRJ-006-U001,PRJ-006,C5-393,Penthouse,1450,5.95,available,North-East,24
|
||||
PRJ-006-U002,PRJ-006,A15-1346,Duplex,4200,24.02,available,North-East,18
|
||||
PRJ-006-U003,PRJ-006,A14-1421,5 BHK,1200,14.7,available,East,8
|
||||
PRJ-006-U004,PRJ-006,A6-2028,Villa,2200,3.98,held,North,6
|
||||
PRJ-006-U005,PRJ-006,A16-1526,Penthouse,4200,37.11,available,South-East,4
|
||||
PRJ-006-U006,PRJ-006,D16-1281,Duplex,2800,10.12,held,North-East,2
|
||||
PRJ-006-U007,PRJ-006,C11-575,5 BHK,2800,7.66,held,North-East,1
|
||||
PRJ-006-U008,PRJ-006,D2-869,Villa,4200,75.88,sold,South,21
|
||||
PRJ-006-U009,PRJ-006,C18-637,5 BHK,1800,3.52,held,South-East,16
|
||||
PRJ-007-U001,PRJ-007,C18-157,Duplex,1450,6.59,available,West,4
|
||||
PRJ-007-U002,PRJ-007,D10-2185,5 BHK,1450,3.77,held,South,16
|
||||
PRJ-007-U003,PRJ-007,D7-2182,3 BHK,1450,18.26,available,East,9
|
||||
PRJ-007-U004,PRJ-007,C1-1259,Duplex,2800,26.34,sold,North-East,22
|
||||
PRJ-007-U005,PRJ-007,D12-1462,5 BHK,4200,14.85,sold,South,15
|
||||
PRJ-007-U006,PRJ-007,D8-1783,4 BHK,1800,7.36,blocked,South,23
|
||||
PRJ-007-U007,PRJ-007,B16-252,Duplex,3500,29.15,sold,North,4
|
||||
PRJ-007-U008,PRJ-007,D1-691,Duplex,1200,14.14,blocked,West,3
|
||||
PRJ-007-U009,PRJ-007,D3-1446,5 BHK,2800,16.49,sold,South,11
|
||||
PRJ-007-U010,PRJ-007,A8-1278,Villa,850,11.21,blocked,East,14
|
||||
PRJ-007-U011,PRJ-007,B10-219,2 BHK,4200,9.55,available,North,12
|
||||
PRJ-007-U012,PRJ-007,B17-1788,4 BHK,1450,13.22,available,West,6
|
||||
PRJ-007-U013,PRJ-007,D19-687,2 BHK,1800,15.33,blocked,North,15
|
||||
PRJ-007-U014,PRJ-007,C18-748,4 BHK,4200,6.92,available,North-East,10
|
||||
PRJ-007-U015,PRJ-007,D10-916,Villa,2200,21.78,held,East,8
|
||||
PRJ-007-U016,PRJ-007,C1-1722,5 BHK,2200,15.76,sold,South-East,25
|
||||
PRJ-007-U017,PRJ-007,C8-1544,Villa,4200,7.14,available,North-East,9
|
||||
PRJ-008-U001,PRJ-008,A10-1906,Villa,1200,3.81,available,South-East,5
|
||||
PRJ-008-U002,PRJ-008,D6-923,2 BHK,2800,14.27,sold,North,17
|
||||
PRJ-008-U003,PRJ-008,C16-1309,Penthouse,1450,8.37,available,East,15
|
||||
PRJ-008-U004,PRJ-008,D18-1599,2 BHK,1800,5.78,held,East,9
|
||||
PRJ-008-U005,PRJ-008,C9-2495,Penthouse,4200,10.25,blocked,North,4
|
||||
PRJ-008-U006,PRJ-008,A20-2400,Villa,4200,18.25,sold,West,21
|
||||
PRJ-008-U007,PRJ-008,D4-673,2 BHK,2200,24.0,available,North,16
|
||||
PRJ-008-U008,PRJ-008,B13-1959,2 BHK,1800,4.38,blocked,South-East,18
|
||||
PRJ-008-U009,PRJ-008,A16-1772,5 BHK,3500,13.33,available,East,23
|
||||
PRJ-008-U010,PRJ-008,D8-1586,4 BHK,4200,17.39,blocked,North,18
|
||||
PRJ-008-U011,PRJ-008,D9-878,Villa,850,6.97,held,East,22
|
||||
PRJ-008-U012,PRJ-008,C8-616,3 BHK,850,1.62,available,East,25
|
||||
PRJ-008-U013,PRJ-008,B11-705,Penthouse,1800,8.57,sold,East,9
|
||||
PRJ-008-U014,PRJ-008,C6-551,Duplex,1450,5.24,available,West,1
|
||||
PRJ-008-U015,PRJ-008,A6-1187,4 BHK,2800,11.47,blocked,South,17
|
||||
PRJ-008-U016,PRJ-008,D12-2203,2 BHK,4200,10.7,held,North-East,8
|
||||
PRJ-008-U017,PRJ-008,D1-350,Penthouse,2200,4.35,held,South,22
|
||||
PRJ-008-U018,PRJ-008,A3-1420,2 BHK,4200,51.49,available,West,9
|
||||
PRJ-009-U001,PRJ-009,D17-1863,4 BHK,2200,18.21,blocked,East,21
|
||||
PRJ-009-U002,PRJ-009,D15-1036,Villa,1800,31.84,held,South,14
|
||||
PRJ-009-U003,PRJ-009,D11-1145,Villa,2800,6.82,available,South-East,16
|
||||
PRJ-009-U004,PRJ-009,A14-496,2 BHK,1200,3.15,available,West,18
|
||||
PRJ-009-U005,PRJ-009,A14-1549,2 BHK,2800,54.17,held,South-East,2
|
||||
PRJ-009-U006,PRJ-009,A19-2179,4 BHK,2800,14.52,blocked,South,8
|
||||
PRJ-009-U007,PRJ-009,C4-1242,Duplex,2800,7.1,held,North-East,25
|
||||
PRJ-009-U008,PRJ-009,C1-839,Duplex,850,14.61,available,North,12
|
||||
PRJ-009-U009,PRJ-009,D3-682,2 BHK,1450,5.32,available,East,24
|
||||
PRJ-009-U010,PRJ-009,D15-1497,Penthouse,3500,14.67,available,South-East,11
|
||||
PRJ-009-U011,PRJ-009,B6-304,Duplex,850,2.2,available,South,22
|
||||
PRJ-009-U012,PRJ-009,D9-983,5 BHK,4200,52.97,available,North,14
|
||||
PRJ-009-U013,PRJ-009,C2-1004,2 BHK,4200,22.62,sold,East,1
|
||||
PRJ-009-U014,PRJ-009,B9-1286,3 BHK,1800,9.56,available,South,24
|
||||
PRJ-009-U015,PRJ-009,D18-1043,5 BHK,1450,5.08,blocked,North,3
|
||||
PRJ-009-U016,PRJ-009,A15-419,5 BHK,3500,6.76,sold,South,19
|
||||
PRJ-009-U017,PRJ-009,A13-186,5 BHK,2200,21.65,available,North-East,15
|
||||
PRJ-009-U018,PRJ-009,D4-1097,Duplex,1200,8.88,held,North-East,3
|
||||
PRJ-009-U019,PRJ-009,B11-789,5 BHK,2800,14.1,blocked,East,17
|
||||
PRJ-010-U001,PRJ-010,A5-1149,4 BHK,1800,5.92,sold,West,25
|
||||
PRJ-010-U002,PRJ-010,D15-2410,Duplex,1450,3.81,held,South-East,19
|
||||
PRJ-010-U003,PRJ-010,B15-380,Villa,2800,20.87,blocked,North,9
|
||||
PRJ-010-U004,PRJ-010,A10-1992,Penthouse,2800,4.99,available,North,10
|
||||
PRJ-010-U005,PRJ-010,D19-2371,2 BHK,3500,9.54,blocked,East,15
|
||||
PRJ-010-U006,PRJ-010,D17-718,Duplex,2800,13.75,held,East,11
|
||||
PRJ-010-U007,PRJ-010,A8-1894,Villa,1450,3.98,sold,North-East,20
|
||||
PRJ-010-U008,PRJ-010,C13-1775,3 BHK,2800,22.15,blocked,North-East,2
|
||||
PRJ-010-U009,PRJ-010,C4-2386,Duplex,1200,9.32,available,North,24
|
||||
PRJ-010-U010,PRJ-010,A19-680,Duplex,2800,10.62,available,South-East,23
|
||||
PRJ-010-U011,PRJ-010,A10-2390,Villa,1450,12.73,available,West,22
|
||||
PRJ-010-U012,PRJ-010,D17-1583,Villa,1200,19.52,available,West,7
|
||||
PRJ-010-U013,PRJ-010,B5-735,4 BHK,1800,19.77,available,North-East,25
|
||||
PRJ-011-U001,PRJ-011,D5-765,2 BHK,1450,10.18,blocked,North-East,6
|
||||
PRJ-011-U002,PRJ-011,D12-1073,Villa,850,11.16,sold,North,25
|
||||
PRJ-011-U003,PRJ-011,B10-2022,Villa,1800,23.35,available,North,22
|
||||
PRJ-011-U004,PRJ-011,C13-2160,Penthouse,4200,50.68,available,West,20
|
||||
PRJ-011-U005,PRJ-011,D12-2372,3 BHK,850,5.08,blocked,North-East,4
|
||||
PRJ-011-U006,PRJ-011,C15-2203,4 BHK,1450,3.37,held,East,8
|
||||
PRJ-011-U007,PRJ-011,A14-319,Duplex,2800,32.9,available,West,13
|
||||
PRJ-011-U008,PRJ-011,A11-506,2 BHK,1800,14.42,blocked,North,5
|
||||
PRJ-011-U009,PRJ-011,D5-2022,3 BHK,2200,3.92,available,East,1
|
||||
PRJ-011-U010,PRJ-011,D4-1281,4 BHK,1450,6.18,available,East,8
|
||||
PRJ-011-U011,PRJ-011,A16-2296,5 BHK,1200,13.01,sold,North-East,8
|
||||
PRJ-011-U012,PRJ-011,D1-1546,Villa,2200,7.3,held,West,22
|
||||
PRJ-011-U013,PRJ-011,A17-2329,Villa,2800,7.01,sold,North-East,1
|
||||
PRJ-011-U014,PRJ-011,D12-1139,5 BHK,850,10.7,available,East,12
|
||||
PRJ-011-U015,PRJ-011,B2-1544,3 BHK,2800,7.06,blocked,West,25
|
||||
PRJ-011-U016,PRJ-011,B5-359,Villa,4200,52.58,held,East,10
|
||||
PRJ-012-U001,PRJ-012,D9-250,4 BHK,3500,20.23,available,North,12
|
||||
PRJ-012-U002,PRJ-012,C4-1608,Duplex,2800,4.98,held,South-East,15
|
||||
PRJ-012-U003,PRJ-012,D16-1605,5 BHK,1450,11.8,sold,North,3
|
||||
PRJ-012-U004,PRJ-012,D20-840,Villa,1200,10.9,available,East,3
|
||||
PRJ-012-U005,PRJ-012,D20-1846,4 BHK,2200,11.29,held,North,15
|
||||
PRJ-012-U006,PRJ-012,C2-408,2 BHK,3500,27.15,held,North,17
|
||||
PRJ-012-U007,PRJ-012,B20-1895,Duplex,850,2.7,available,West,25
|
||||
PRJ-012-U008,PRJ-012,D19-233,Villa,2800,21.44,blocked,South,12
|
||||
PRJ-013-U001,PRJ-013,D11-1242,3 BHK,2800,47.88,available,East,24
|
||||
PRJ-013-U002,PRJ-013,A9-1167,3 BHK,3500,43.71,available,North-East,10
|
||||
PRJ-013-U003,PRJ-013,A5-404,Villa,1800,21.39,blocked,South,3
|
||||
PRJ-013-U004,PRJ-013,A18-2321,Duplex,2800,20.12,available,West,23
|
||||
PRJ-013-U005,PRJ-013,B4-924,Villa,2800,10.37,available,South,1
|
||||
PRJ-013-U006,PRJ-013,D18-632,4 BHK,2800,51.53,available,East,10
|
||||
PRJ-013-U007,PRJ-013,D19-403,5 BHK,3500,38.85,available,South-East,3
|
||||
PRJ-013-U008,PRJ-013,B18-846,5 BHK,2800,35.4,available,South,17
|
||||
PRJ-013-U009,PRJ-013,B10-775,Duplex,1200,2.01,blocked,West,12
|
||||
PRJ-013-U010,PRJ-013,C7-2357,Penthouse,1200,6.3,blocked,North,20
|
||||
PRJ-013-U011,PRJ-013,B6-1483,Penthouse,1450,3.87,sold,East,1
|
||||
PRJ-013-U012,PRJ-013,B19-1807,2 BHK,2200,4.05,available,South,21
|
||||
PRJ-013-U013,PRJ-013,D8-1764,Penthouse,2200,11.61,available,South-East,2
|
||||
PRJ-013-U014,PRJ-013,D15-936,3 BHK,3500,40.66,available,North,23
|
||||
PRJ-013-U015,PRJ-013,B12-2210,4 BHK,3500,26.57,available,West,15
|
||||
PRJ-013-U016,PRJ-013,B5-497,2 BHK,4200,21.02,held,North-East,14
|
||||
PRJ-013-U017,PRJ-013,C7-753,3 BHK,2800,9.8,sold,South,16
|
||||
PRJ-014-U001,PRJ-014,B7-2490,5 BHK,4200,73.38,available,North,16
|
||||
PRJ-014-U002,PRJ-014,A4-1866,Penthouse,2200,24.47,available,South-East,12
|
||||
PRJ-014-U003,PRJ-014,A13-310,Duplex,2800,25.55,available,North,18
|
||||
PRJ-014-U004,PRJ-014,D18-1246,4 BHK,3500,9.32,sold,South-East,20
|
||||
PRJ-014-U005,PRJ-014,D12-1489,2 BHK,1200,4.25,available,West,7
|
||||
PRJ-014-U006,PRJ-014,A2-260,Penthouse,3500,58.43,available,South,17
|
||||
PRJ-014-U007,PRJ-014,C20-1405,5 BHK,1450,4.73,sold,South-East,10
|
||||
PRJ-014-U008,PRJ-014,C16-169,Penthouse,4200,30.67,blocked,East,14
|
||||
PRJ-014-U009,PRJ-014,D9-2470,Penthouse,850,4.75,blocked,East,19
|
||||
|
101
db assets/synthetic_crm_v1/csv/workflow_actions.csv
Normal file
101
db assets/synthetic_crm_v1/csv/workflow_actions.csv
Normal file
@@ -0,0 +1,101 @@
|
||||
action_id,action_type,target_domain,target_entity_ref,status,created_at,created_by,metadata_json
|
||||
ACT-00001,writeback_proposal,crm_people,LED-0051,pending,2024-05-30T00:00:00,user_001,"{""priority"": ""low"", ""auto_flagged"": true}"
|
||||
ACT-00002,enrichment_review,intel_interactions,LED-0183,pending,2025-05-05T00:00:00,user_005,"{""priority"": ""low"", ""auto_flagged"": true}"
|
||||
ACT-00003,merge_proposal,crm_opportunities,LED-0125,pending,2025-09-04T00:00:00,user_001,"{""priority"": ""medium"", ""auto_flagged"": false}"
|
||||
ACT-00004,merge_proposal,crm_leads,LED-0149,approved,2024-07-07T00:00:00,user_002,"{""priority"": ""low"", ""auto_flagged"": true}"
|
||||
ACT-00005,writeback_proposal,crm_opportunities,LED-0176,approved,2025-02-06T00:00:00,user_005,"{""priority"": ""low"", ""auto_flagged"": true}"
|
||||
ACT-00006,import_review,crm_leads,LED-0071,rejected,2024-06-01T00:00:00,user_002,"{""priority"": ""medium"", ""auto_flagged"": true}"
|
||||
ACT-00007,import_review,crm_opportunities,LED-0069,rejected,2025-02-19T00:00:00,user_004,"{""priority"": ""high"", ""auto_flagged"": false}"
|
||||
ACT-00008,writeback_proposal,crm_opportunities,LED-0008,escalated,2025-12-15T00:00:00,user_004,"{""priority"": ""high"", ""auto_flagged"": false}"
|
||||
ACT-00009,merge_proposal,crm_leads,LED-0014,pending,2025-09-29T00:00:00,user_002,"{""priority"": ""high"", ""auto_flagged"": true}"
|
||||
ACT-00010,import_review,crm_people,LED-0003,approved,2024-06-09T00:00:00,user_004,"{""priority"": ""medium"", ""auto_flagged"": true}"
|
||||
ACT-00011,enrichment_review,crm_opportunities,LED-0017,approved,2024-09-23T00:00:00,user_001,"{""priority"": ""low"", ""auto_flagged"": true}"
|
||||
ACT-00012,writeback_proposal,crm_people,LED-0001,rejected,2024-03-03T00:00:00,user_002,"{""priority"": ""high"", ""auto_flagged"": false}"
|
||||
ACT-00013,import_review,crm_opportunities,LED-0227,pending,2025-01-08T00:00:00,user_001,"{""priority"": ""medium"", ""auto_flagged"": false}"
|
||||
ACT-00014,merge_proposal,intel_interactions,LED-0085,pending,2025-07-19T00:00:00,user_005,"{""priority"": ""high"", ""auto_flagged"": false}"
|
||||
ACT-00015,import_review,crm_leads,LED-0111,pending,2024-07-18T00:00:00,user_002,"{""priority"": ""medium"", ""auto_flagged"": true}"
|
||||
ACT-00016,writeback_proposal,crm_opportunities,LED-0136,approved,2025-09-03T00:00:00,user_004,"{""priority"": ""high"", ""auto_flagged"": true}"
|
||||
ACT-00017,merge_proposal,crm_people,LED-0232,approved,2024-05-25T00:00:00,user_003,"{""priority"": ""low"", ""auto_flagged"": false}"
|
||||
ACT-00018,import_review,intel_interactions,LED-0148,pending,2024-02-13T00:00:00,user_004,"{""priority"": ""low"", ""auto_flagged"": true}"
|
||||
ACT-00019,import_review,crm_leads,LED-0124,pending,2024-08-17T00:00:00,user_002,"{""priority"": ""high"", ""auto_flagged"": true}"
|
||||
ACT-00020,merge_proposal,crm_leads,LED-0122,rejected,2025-12-27T00:00:00,user_003,"{""priority"": ""high"", ""auto_flagged"": true}"
|
||||
ACT-00021,enrichment_review,crm_opportunities,LED-0153,escalated,2024-02-08T00:00:00,user_002,"{""priority"": ""medium"", ""auto_flagged"": false}"
|
||||
ACT-00022,import_review,crm_leads,LED-0013,pending,2025-02-08T00:00:00,user_002,"{""priority"": ""low"", ""auto_flagged"": true}"
|
||||
ACT-00023,merge_proposal,crm_leads,LED-0058,escalated,2024-05-26T00:00:00,user_003,"{""priority"": ""low"", ""auto_flagged"": false}"
|
||||
ACT-00024,enrichment_review,crm_people,LED-0186,escalated,2025-08-19T00:00:00,user_002,"{""priority"": ""low"", ""auto_flagged"": true}"
|
||||
ACT-00025,enrichment_review,crm_people,LED-0236,pending,2025-06-27T00:00:00,user_001,"{""priority"": ""medium"", ""auto_flagged"": false}"
|
||||
ACT-00026,writeback_proposal,crm_people,LED-0213,rejected,2025-10-20T00:00:00,user_002,"{""priority"": ""low"", ""auto_flagged"": true}"
|
||||
ACT-00027,merge_proposal,crm_opportunities,LED-0066,approved,2025-10-28T00:00:00,user_003,"{""priority"": ""low"", ""auto_flagged"": false}"
|
||||
ACT-00028,merge_proposal,crm_people,LED-0156,pending,2026-01-14T00:00:00,user_004,"{""priority"": ""medium"", ""auto_flagged"": false}"
|
||||
ACT-00029,enrichment_review,crm_leads,LED-0097,approved,2024-10-01T00:00:00,user_004,"{""priority"": ""low"", ""auto_flagged"": false}"
|
||||
ACT-00030,enrichment_review,crm_leads,LED-0078,escalated,2025-06-05T00:00:00,user_001,"{""priority"": ""high"", ""auto_flagged"": true}"
|
||||
ACT-00031,enrichment_review,crm_leads,LED-0221,pending,2024-02-04T00:00:00,user_003,"{""priority"": ""medium"", ""auto_flagged"": false}"
|
||||
ACT-00032,merge_proposal,crm_opportunities,LED-0035,rejected,2024-11-10T00:00:00,user_002,"{""priority"": ""low"", ""auto_flagged"": true}"
|
||||
ACT-00033,merge_proposal,crm_opportunities,LED-0172,rejected,2024-03-25T00:00:00,user_002,"{""priority"": ""medium"", ""auto_flagged"": false}"
|
||||
ACT-00034,merge_proposal,intel_interactions,LED-0040,approved,2025-09-12T00:00:00,user_004,"{""priority"": ""high"", ""auto_flagged"": true}"
|
||||
ACT-00035,enrichment_review,intel_interactions,LED-0214,pending,2024-06-21T00:00:00,user_002,"{""priority"": ""low"", ""auto_flagged"": false}"
|
||||
ACT-00036,import_review,crm_leads,LED-0030,rejected,2024-03-02T00:00:00,user_003,"{""priority"": ""low"", ""auto_flagged"": true}"
|
||||
ACT-00037,enrichment_review,crm_people,LED-0211,escalated,2024-04-26T00:00:00,user_002,"{""priority"": ""medium"", ""auto_flagged"": false}"
|
||||
ACT-00038,merge_proposal,intel_interactions,LED-0104,rejected,2024-01-23T00:00:00,user_003,"{""priority"": ""medium"", ""auto_flagged"": true}"
|
||||
ACT-00039,enrichment_review,intel_interactions,LED-0150,rejected,2025-05-20T00:00:00,user_005,"{""priority"": ""medium"", ""auto_flagged"": true}"
|
||||
ACT-00040,merge_proposal,crm_people,LED-0105,pending,2026-03-25T00:00:00,user_002,"{""priority"": ""high"", ""auto_flagged"": false}"
|
||||
ACT-00041,import_review,crm_opportunities,LED-0175,approved,2025-11-04T00:00:00,user_003,"{""priority"": ""medium"", ""auto_flagged"": true}"
|
||||
ACT-00042,import_review,crm_opportunities,LED-0134,pending,2025-09-27T00:00:00,user_005,"{""priority"": ""high"", ""auto_flagged"": true}"
|
||||
ACT-00043,merge_proposal,crm_leads,LED-0223,approved,2024-10-08T00:00:00,user_001,"{""priority"": ""low"", ""auto_flagged"": false}"
|
||||
ACT-00044,writeback_proposal,crm_people,LED-0204,escalated,2024-05-23T00:00:00,user_002,"{""priority"": ""high"", ""auto_flagged"": false}"
|
||||
ACT-00045,merge_proposal,intel_interactions,LED-0044,rejected,2024-11-11T00:00:00,user_001,"{""priority"": ""high"", ""auto_flagged"": true}"
|
||||
ACT-00046,merge_proposal,crm_people,LED-0178,pending,2025-02-24T00:00:00,user_003,"{""priority"": ""low"", ""auto_flagged"": true}"
|
||||
ACT-00047,merge_proposal,crm_opportunities,LED-0129,rejected,2026-01-28T00:00:00,user_001,"{""priority"": ""high"", ""auto_flagged"": false}"
|
||||
ACT-00048,import_review,crm_opportunities,LED-0226,approved,2026-03-31T00:00:00,user_001,"{""priority"": ""low"", ""auto_flagged"": false}"
|
||||
ACT-00049,writeback_proposal,intel_interactions,LED-0145,approved,2024-11-19T00:00:00,user_001,"{""priority"": ""medium"", ""auto_flagged"": false}"
|
||||
ACT-00050,writeback_proposal,crm_leads,LED-0248,escalated,2025-04-15T00:00:00,user_003,"{""priority"": ""high"", ""auto_flagged"": true}"
|
||||
ACT-00051,writeback_proposal,crm_people,LED-0212,rejected,2025-11-01T00:00:00,user_002,"{""priority"": ""high"", ""auto_flagged"": true}"
|
||||
ACT-00052,merge_proposal,crm_opportunities,LED-0117,pending,2025-02-06T00:00:00,user_005,"{""priority"": ""low"", ""auto_flagged"": false}"
|
||||
ACT-00053,merge_proposal,crm_leads,LED-0247,pending,2024-06-13T00:00:00,user_003,"{""priority"": ""medium"", ""auto_flagged"": false}"
|
||||
ACT-00054,merge_proposal,intel_interactions,LED-0060,pending,2026-03-15T00:00:00,user_004,"{""priority"": ""medium"", ""auto_flagged"": false}"
|
||||
ACT-00055,writeback_proposal,intel_interactions,LED-0076,escalated,2026-03-21T00:00:00,user_005,"{""priority"": ""low"", ""auto_flagged"": false}"
|
||||
ACT-00056,merge_proposal,intel_interactions,LED-0207,rejected,2026-01-02T00:00:00,user_003,"{""priority"": ""high"", ""auto_flagged"": true}"
|
||||
ACT-00057,import_review,intel_interactions,LED-0082,approved,2026-03-29T00:00:00,user_004,"{""priority"": ""high"", ""auto_flagged"": false}"
|
||||
ACT-00058,writeback_proposal,crm_people,LED-0159,rejected,2024-10-06T00:00:00,user_001,"{""priority"": ""medium"", ""auto_flagged"": true}"
|
||||
ACT-00059,writeback_proposal,crm_opportunities,LED-0203,pending,2025-09-14T00:00:00,user_003,"{""priority"": ""high"", ""auto_flagged"": true}"
|
||||
ACT-00060,merge_proposal,crm_leads,LED-0049,rejected,2026-03-01T00:00:00,user_005,"{""priority"": ""high"", ""auto_flagged"": false}"
|
||||
ACT-00061,import_review,crm_people,LED-0093,rejected,2024-02-05T00:00:00,user_003,"{""priority"": ""low"", ""auto_flagged"": false}"
|
||||
ACT-00062,import_review,crm_people,LED-0231,pending,2025-10-10T00:00:00,user_004,"{""priority"": ""low"", ""auto_flagged"": true}"
|
||||
ACT-00063,writeback_proposal,crm_people,LED-0033,escalated,2026-03-11T00:00:00,user_002,"{""priority"": ""medium"", ""auto_flagged"": true}"
|
||||
ACT-00064,enrichment_review,crm_opportunities,LED-0188,approved,2024-10-24T00:00:00,user_004,"{""priority"": ""medium"", ""auto_flagged"": true}"
|
||||
ACT-00065,enrichment_review,crm_leads,LED-0171,approved,2024-02-19T00:00:00,user_003,"{""priority"": ""high"", ""auto_flagged"": true}"
|
||||
ACT-00066,writeback_proposal,intel_interactions,LED-0052,escalated,2025-04-14T00:00:00,user_004,"{""priority"": ""medium"", ""auto_flagged"": true}"
|
||||
ACT-00067,import_review,crm_leads,LED-0022,escalated,2025-02-15T00:00:00,user_002,"{""priority"": ""medium"", ""auto_flagged"": false}"
|
||||
ACT-00068,writeback_proposal,intel_interactions,LED-0081,rejected,2026-01-10T00:00:00,user_002,"{""priority"": ""high"", ""auto_flagged"": true}"
|
||||
ACT-00069,import_review,intel_interactions,LED-0187,approved,2026-04-08T00:00:00,user_003,"{""priority"": ""high"", ""auto_flagged"": false}"
|
||||
ACT-00070,enrichment_review,crm_leads,LED-0173,pending,2025-07-03T00:00:00,user_004,"{""priority"": ""low"", ""auto_flagged"": true}"
|
||||
ACT-00071,enrichment_review,crm_opportunities,LED-0225,approved,2025-10-02T00:00:00,user_004,"{""priority"": ""low"", ""auto_flagged"": true}"
|
||||
ACT-00072,merge_proposal,crm_people,LED-0009,escalated,2024-03-15T00:00:00,user_002,"{""priority"": ""low"", ""auto_flagged"": false}"
|
||||
ACT-00073,enrichment_review,crm_opportunities,LED-0190,rejected,2025-10-13T00:00:00,user_001,"{""priority"": ""medium"", ""auto_flagged"": false}"
|
||||
ACT-00074,merge_proposal,intel_interactions,LED-0177,rejected,2025-02-20T00:00:00,user_002,"{""priority"": ""low"", ""auto_flagged"": false}"
|
||||
ACT-00075,merge_proposal,crm_people,LED-0118,escalated,2026-02-16T00:00:00,user_003,"{""priority"": ""medium"", ""auto_flagged"": false}"
|
||||
ACT-00076,merge_proposal,intel_interactions,LED-0152,rejected,2024-01-13T00:00:00,user_001,"{""priority"": ""low"", ""auto_flagged"": false}"
|
||||
ACT-00077,import_review,crm_opportunities,LED-0074,escalated,2025-06-04T00:00:00,user_004,"{""priority"": ""low"", ""auto_flagged"": true}"
|
||||
ACT-00078,merge_proposal,crm_leads,LED-0141,escalated,2026-01-17T00:00:00,user_002,"{""priority"": ""low"", ""auto_flagged"": false}"
|
||||
ACT-00079,writeback_proposal,intel_interactions,LED-0018,escalated,2025-06-15T00:00:00,user_003,"{""priority"": ""medium"", ""auto_flagged"": false}"
|
||||
ACT-00080,import_review,crm_opportunities,LED-0249,rejected,2025-04-27T00:00:00,user_001,"{""priority"": ""medium"", ""auto_flagged"": false}"
|
||||
ACT-00081,enrichment_review,intel_interactions,LED-0246,rejected,2025-12-06T00:00:00,user_003,"{""priority"": ""low"", ""auto_flagged"": false}"
|
||||
ACT-00082,enrichment_review,crm_people,LED-0194,pending,2025-07-23T00:00:00,user_001,"{""priority"": ""medium"", ""auto_flagged"": false}"
|
||||
ACT-00083,writeback_proposal,crm_leads,LED-0235,rejected,2026-01-07T00:00:00,user_001,"{""priority"": ""high"", ""auto_flagged"": true}"
|
||||
ACT-00084,import_review,crm_leads,LED-0031,rejected,2026-02-15T00:00:00,user_003,"{""priority"": ""high"", ""auto_flagged"": true}"
|
||||
ACT-00085,writeback_proposal,crm_people,LED-0007,rejected,2024-06-07T00:00:00,user_004,"{""priority"": ""medium"", ""auto_flagged"": true}"
|
||||
ACT-00086,writeback_proposal,crm_leads,LED-0010,pending,2024-05-02T00:00:00,user_005,"{""priority"": ""high"", ""auto_flagged"": false}"
|
||||
ACT-00087,writeback_proposal,crm_leads,LED-0020,escalated,2024-10-31T00:00:00,user_001,"{""priority"": ""high"", ""auto_flagged"": false}"
|
||||
ACT-00088,writeback_proposal,crm_opportunities,LED-0095,escalated,2024-03-16T00:00:00,user_005,"{""priority"": ""low"", ""auto_flagged"": false}"
|
||||
ACT-00089,writeback_proposal,intel_interactions,LED-0079,approved,2025-11-14T00:00:00,user_001,"{""priority"": ""high"", ""auto_flagged"": true}"
|
||||
ACT-00090,writeback_proposal,crm_leads,LED-0162,approved,2024-01-23T00:00:00,user_003,"{""priority"": ""high"", ""auto_flagged"": false}"
|
||||
ACT-00091,enrichment_review,crm_people,LED-0170,escalated,2026-03-19T00:00:00,user_001,"{""priority"": ""low"", ""auto_flagged"": false}"
|
||||
ACT-00092,enrichment_review,intel_interactions,LED-0205,approved,2024-07-13T00:00:00,user_005,"{""priority"": ""high"", ""auto_flagged"": false}"
|
||||
ACT-00093,import_review,intel_interactions,LED-0240,pending,2026-02-11T00:00:00,user_001,"{""priority"": ""high"", ""auto_flagged"": true}"
|
||||
ACT-00094,writeback_proposal,crm_people,LED-0046,rejected,2025-03-22T00:00:00,user_002,"{""priority"": ""medium"", ""auto_flagged"": false}"
|
||||
ACT-00095,writeback_proposal,crm_opportunities,LED-0067,escalated,2025-02-22T00:00:00,user_002,"{""priority"": ""high"", ""auto_flagged"": false}"
|
||||
ACT-00096,merge_proposal,crm_opportunities,LED-0096,escalated,2025-05-11T00:00:00,user_002,"{""priority"": ""medium"", ""auto_flagged"": true}"
|
||||
ACT-00097,merge_proposal,crm_people,LED-0126,escalated,2025-02-05T00:00:00,user_001,"{""priority"": ""medium"", ""auto_flagged"": false}"
|
||||
ACT-00098,enrichment_review,crm_leads,LED-0061,approved,2025-01-03T00:00:00,user_003,"{""priority"": ""high"", ""auto_flagged"": false}"
|
||||
ACT-00099,import_review,crm_leads,LED-0123,pending,2025-09-18T00:00:00,user_001,"{""priority"": ""high"", ""auto_flagged"": true}"
|
||||
ACT-00100,import_review,crm_people,LED-0146,pending,2025-09-08T00:00:00,user_005,"{""priority"": ""high"", ""auto_flagged"": false}"
|
||||
|
50
db assets/synthetic_crm_v1/csv/workflow_approvals.csv
Normal file
50
db assets/synthetic_crm_v1/csv/workflow_approvals.csv
Normal file
@@ -0,0 +1,50 @@
|
||||
approval_id,action_id,reviewer_ref,decision,decision_notes,decided_at
|
||||
APR-0001,ACT-00004,user_004,approved,Verified against source data. Correct.,2024-07-08T00:00:00
|
||||
APR-0002,ACT-00005,user_002,approved,Verified against source data. Correct.,2025-02-11T00:00:00
|
||||
APR-0003,ACT-00006,user_005,rejected,Approved with minor corrections.,2024-06-02T00:00:00
|
||||
APR-0004,ACT-00007,user_005,rejected,Budget mismatch detected. Reject.,2025-02-23T00:00:00
|
||||
APR-0005,ACT-00010,user_002,approved,Verified against source data. Correct.,2024-06-13T00:00:00
|
||||
APR-0006,ACT-00011,user_003,approved,Approved with minor corrections.,2024-09-27T00:00:00
|
||||
APR-0007,ACT-00012,user_003,rejected,Budget mismatch detected. Reject.,2024-03-08T00:00:00
|
||||
APR-0008,ACT-00016,user_003,approved,Duplicate entry. Reject and flag.,2025-09-04T00:00:00
|
||||
APR-0009,ACT-00017,user_002,approved,Partial match. Needs manual review.,2024-05-29T00:00:00
|
||||
APR-0010,ACT-00020,user_004,rejected,Approved with minor corrections.,2025-12-30T00:00:00
|
||||
APR-0011,ACT-00026,user_001,rejected,Approved with minor corrections.,2025-10-25T00:00:00
|
||||
APR-0012,ACT-00027,user_001,approved,Approved with minor corrections.,2025-10-29T00:00:00
|
||||
APR-0013,ACT-00029,user_003,approved,Partial match. Needs manual review.,2024-10-03T00:00:00
|
||||
APR-0014,ACT-00032,user_005,rejected,Verified against source data. Correct.,2024-11-15T00:00:00
|
||||
APR-0015,ACT-00033,user_005,rejected,Verified against source data. Correct.,2024-03-29T00:00:00
|
||||
APR-0016,ACT-00034,user_002,approved,Duplicate entry. Reject and flag.,2025-09-17T00:00:00
|
||||
APR-0017,ACT-00036,user_002,rejected,Budget mismatch detected. Reject.,2024-03-03T00:00:00
|
||||
APR-0018,ACT-00038,user_003,rejected,Identity match confirmed. Proceed.,2024-01-24T00:00:00
|
||||
APR-0019,ACT-00039,user_003,rejected,Approved with minor corrections.,2025-05-25T00:00:00
|
||||
APR-0020,ACT-00041,user_001,approved,Partial match. Needs manual review.,2025-11-08T00:00:00
|
||||
APR-0021,ACT-00043,user_001,approved,Approved with minor corrections.,2024-10-12T00:00:00
|
||||
APR-0022,ACT-00045,user_002,rejected,Identity match confirmed. Proceed.,2024-11-13T00:00:00
|
||||
APR-0023,ACT-00047,user_004,rejected,Approved with minor corrections.,2026-01-30T00:00:00
|
||||
APR-0024,ACT-00048,user_004,approved,Partial match. Needs manual review.,2026-04-01T00:00:00
|
||||
APR-0025,ACT-00049,user_002,approved,Approved with minor corrections.,2024-11-20T00:00:00
|
||||
APR-0026,ACT-00051,user_003,rejected,Approved with minor corrections.,2025-11-03T00:00:00
|
||||
APR-0027,ACT-00056,user_004,rejected,Verified against source data. Correct.,2026-01-03T00:00:00
|
||||
APR-0028,ACT-00057,user_003,approved,Budget mismatch detected. Reject.,2026-04-01T00:00:00
|
||||
APR-0029,ACT-00058,user_002,rejected,Approved with minor corrections.,2024-10-11T00:00:00
|
||||
APR-0030,ACT-00060,user_001,rejected,Verified against source data. Correct.,2026-03-02T00:00:00
|
||||
APR-0031,ACT-00061,user_002,rejected,Approved with minor corrections.,2024-02-10T00:00:00
|
||||
APR-0032,ACT-00064,user_003,approved,Partial match. Needs manual review.,2024-10-27T00:00:00
|
||||
APR-0033,ACT-00065,user_001,approved,Duplicate entry. Reject and flag.,2024-02-20T00:00:00
|
||||
APR-0034,ACT-00068,user_004,rejected,Duplicate entry. Reject and flag.,2026-01-14T00:00:00
|
||||
APR-0035,ACT-00069,user_002,approved,Identity match confirmed. Proceed.,2026-04-13T00:00:00
|
||||
APR-0036,ACT-00071,user_004,approved,Budget mismatch detected. Reject.,2025-10-03T00:00:00
|
||||
APR-0037,ACT-00073,user_003,rejected,Identity match confirmed. Proceed.,2025-10-18T00:00:00
|
||||
APR-0038,ACT-00074,user_001,rejected,Duplicate entry. Reject and flag.,2025-02-25T00:00:00
|
||||
APR-0039,ACT-00076,user_001,rejected,Budget mismatch detected. Reject.,2024-01-16T00:00:00
|
||||
APR-0040,ACT-00080,user_003,rejected,Approved with minor corrections.,2025-04-28T00:00:00
|
||||
APR-0041,ACT-00081,user_001,rejected,Approved with minor corrections.,2025-12-09T00:00:00
|
||||
APR-0042,ACT-00083,user_004,rejected,Approved with minor corrections.,2026-01-11T00:00:00
|
||||
APR-0043,ACT-00084,user_001,rejected,Approved with minor corrections.,2026-02-19T00:00:00
|
||||
APR-0044,ACT-00085,user_001,rejected,Identity match confirmed. Proceed.,2024-06-12T00:00:00
|
||||
APR-0045,ACT-00089,user_003,approved,Identity match confirmed. Proceed.,2025-11-18T00:00:00
|
||||
APR-0046,ACT-00090,user_005,approved,Verified against source data. Correct.,2024-01-25T00:00:00
|
||||
APR-0047,ACT-00092,user_003,approved,Verified against source data. Correct.,2024-07-18T00:00:00
|
||||
APR-0048,ACT-00094,user_004,rejected,Duplicate entry. Reject and flag.,2025-03-25T00:00:00
|
||||
APR-0049,ACT-00098,user_003,approved,Partial match. Needs manual review.,2025-01-08T00:00:00
|
||||
|
29
db assets/synthetic_crm_v1/csv/workflow_writebacks.csv
Normal file
29
db assets/synthetic_crm_v1/csv/workflow_writebacks.csv
Normal file
@@ -0,0 +1,29 @@
|
||||
writeback_id,proposal_ref,target_domain,target_entity_ref,status,approved_by,executed_at,change_summary
|
||||
WB-0001,ACT-00001,intel_qd_scores,PER-0051,pending,user_001,2026-04-18T00:00:00,"{""field"": ""budget_band"", ""old"": ""unknown"", ""new"": ""4-6 Cr""}"
|
||||
WB-0002,ACT-00007,crm_people,PER-0069,failed,user_002,2026-04-18T00:00:00,"{""field"": ""budget_band"", ""old"": ""unknown"", ""new"": ""15-25 Cr""}"
|
||||
WB-0003,ACT-00016,crm_leads,PER-0136,failed,user_003,2026-04-18T00:00:00,"{""field"": ""budget_band"", ""old"": ""unknown"", ""new"": ""1.5-2.5 Cr""}"
|
||||
WB-0004,ACT-00022,intel_qd_scores,PER-0013,pending,user_002,2026-04-18T00:00:00,"{""field"": ""budget_band"", ""old"": ""unknown"", ""new"": ""15-25 Cr""}"
|
||||
WB-0005,ACT-00023,crm_leads,PER-0058,failed,user_001,2026-04-18T00:00:00,"{""field"": ""budget_band"", ""old"": ""unknown"", ""new"": ""2.5-4 Cr""}"
|
||||
WB-0006,ACT-00024,crm_people,PER-0186,pending,user_001,2026-04-18T00:00:00,"{""field"": ""budget_band"", ""old"": ""unknown"", ""new"": ""15-25 Cr""}"
|
||||
WB-0007,ACT-00025,crm_leads,PER-0236,failed,user_005,2026-04-18T00:00:00,"{""field"": ""budget_band"", ""old"": ""unknown"", ""new"": ""6-10 Cr""}"
|
||||
WB-0008,ACT-00026,crm_people,PER-0213,failed,user_003,2026-04-18T00:00:00,"{""field"": ""budget_band"", ""old"": ""unknown"", ""new"": ""2.5-4 Cr""}"
|
||||
WB-0009,ACT-00028,intel_qd_scores,PER-0156,pending,user_004,2026-04-18T00:00:00,"{""field"": ""budget_band"", ""old"": ""unknown"", ""new"": ""15-25 Cr""}"
|
||||
WB-0010,ACT-00035,crm_leads,PER-0214,pending,user_001,2026-04-18T00:00:00,"{""field"": ""budget_band"", ""old"": ""unknown"", ""new"": ""4-6 Cr""}"
|
||||
WB-0011,ACT-00042,crm_leads,PER-0134,executed,user_003,2026-04-18T00:00:00,"{""field"": ""budget_band"", ""old"": ""unknown"", ""new"": ""4-6 Cr""}"
|
||||
WB-0012,ACT-00043,crm_people,PER-0223,failed,user_002,2026-04-18T00:00:00,"{""field"": ""budget_band"", ""old"": ""unknown"", ""new"": ""10-15 Cr""}"
|
||||
WB-0013,ACT-00045,crm_leads,PER-0044,executed,user_002,2026-04-18T00:00:00,"{""field"": ""budget_band"", ""old"": ""unknown"", ""new"": ""1.5-2.5 Cr""}"
|
||||
WB-0014,ACT-00056,intel_qd_scores,PER-0207,executed,user_004,2026-04-18T00:00:00,"{""field"": ""budget_band"", ""old"": ""unknown"", ""new"": ""15-25 Cr""}"
|
||||
WB-0015,ACT-00061,crm_leads,PER-0093,pending,user_005,2026-04-18T00:00:00,"{""field"": ""budget_band"", ""old"": ""unknown"", ""new"": ""6-10 Cr""}"
|
||||
WB-0016,ACT-00063,crm_leads,PER-0033,pending,user_003,2026-04-18T00:00:00,"{""field"": ""budget_band"", ""old"": ""unknown"", ""new"": ""10-15 Cr""}"
|
||||
WB-0017,ACT-00065,crm_people,PER-0171,pending,user_005,2026-04-18T00:00:00,"{""field"": ""budget_band"", ""old"": ""unknown"", ""new"": ""15-25 Cr""}"
|
||||
WB-0018,ACT-00071,crm_leads,PER-0225,failed,user_004,2026-04-18T00:00:00,"{""field"": ""budget_band"", ""old"": ""unknown"", ""new"": ""2.5-4 Cr""}"
|
||||
WB-0019,ACT-00073,crm_people,PER-0190,executed,user_002,2026-04-18T00:00:00,"{""field"": ""budget_band"", ""old"": ""unknown"", ""new"": ""1.5-2.5 Cr""}"
|
||||
WB-0020,ACT-00075,crm_leads,PER-0118,pending,user_001,2026-04-18T00:00:00,"{""field"": ""budget_band"", ""old"": ""unknown"", ""new"": ""1.5-2.5 Cr""}"
|
||||
WB-0021,ACT-00079,crm_leads,PER-0018,pending,user_002,2026-04-18T00:00:00,"{""field"": ""budget_band"", ""old"": ""unknown"", ""new"": ""6-10 Cr""}"
|
||||
WB-0022,ACT-00083,intel_qd_scores,PER-0235,pending,user_004,2026-04-18T00:00:00,"{""field"": ""budget_band"", ""old"": ""unknown"", ""new"": ""1.5-2.5 Cr""}"
|
||||
WB-0023,ACT-00085,crm_people,PER-0007,executed,user_005,2026-04-18T00:00:00,"{""field"": ""budget_band"", ""old"": ""unknown"", ""new"": ""1.5-2.5 Cr""}"
|
||||
WB-0024,ACT-00087,crm_people,PER-0020,pending,user_004,2026-04-18T00:00:00,"{""field"": ""budget_band"", ""old"": ""unknown"", ""new"": ""15-25 Cr""}"
|
||||
WB-0025,ACT-00088,crm_people,PER-0095,pending,user_002,2026-04-18T00:00:00,"{""field"": ""budget_band"", ""old"": ""unknown"", ""new"": ""10-15 Cr""}"
|
||||
WB-0026,ACT-00090,crm_leads,PER-0162,executed,user_003,2026-04-18T00:00:00,"{""field"": ""budget_band"", ""old"": ""unknown"", ""new"": ""10-15 Cr""}"
|
||||
WB-0027,ACT-00097,crm_leads,PER-0126,pending,user_001,2026-04-18T00:00:00,"{""field"": ""budget_band"", ""old"": ""unknown"", ""new"": ""10-15 Cr""}"
|
||||
WB-0028,ACT-00099,crm_leads,PER-0123,executed,user_005,2026-04-18T00:00:00,"{""field"": ""budget_band"", ""old"": ""unknown"", ""new"": ""10-15 Cr""}"
|
||||
|
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
5264
db assets/synthetic_crm_v1/json/client_360_snapshots_batch_1.json
Normal file
5264
db assets/synthetic_crm_v1/json/client_360_snapshots_batch_1.json
Normal file
File diff suppressed because it is too large
Load Diff
5727
db assets/synthetic_crm_v1/json/client_360_snapshots_batch_2.json
Normal file
5727
db assets/synthetic_crm_v1/json/client_360_snapshots_batch_2.json
Normal file
File diff suppressed because it is too large
Load Diff
5160
db assets/synthetic_crm_v1/json/client_360_snapshots_batch_3.json
Normal file
5160
db assets/synthetic_crm_v1/json/client_360_snapshots_batch_3.json
Normal file
File diff suppressed because it is too large
Load Diff
5413
db assets/synthetic_crm_v1/json/client_360_snapshots_batch_4.json
Normal file
5413
db assets/synthetic_crm_v1/json/client_360_snapshots_batch_4.json
Normal file
File diff suppressed because it is too large
Load Diff
5466
db assets/synthetic_crm_v1/json/client_360_snapshots_batch_5.json
Normal file
5466
db assets/synthetic_crm_v1/json/client_360_snapshots_batch_5.json
Normal file
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,50 @@
|
||||
{
|
||||
"manifest_id": "MANIFEST-001",
|
||||
"batch_id": "BATCH-001",
|
||||
"source_profile": "salesforce_export",
|
||||
"uploaded_filename": "salesforce_contacts_2026_04_01.csv",
|
||||
"uploaded_at": "2026-04-01T10:30:00",
|
||||
"column_mappings": {
|
||||
"FirstName": {
|
||||
"target_field": "crm_people.first_name",
|
||||
"confidence": 0.99
|
||||
},
|
||||
"LastName": {
|
||||
"target_field": "crm_people.last_name",
|
||||
"confidence": 0.99
|
||||
},
|
||||
"Email": {
|
||||
"target_field": "crm_people.primary_email",
|
||||
"confidence": 0.98
|
||||
},
|
||||
"Phone": {
|
||||
"target_field": "crm_people.primary_phone",
|
||||
"confidence": 0.97
|
||||
},
|
||||
"Company": {
|
||||
"target_field": "crm_accounts.account_name",
|
||||
"confidence": 0.85
|
||||
},
|
||||
"Title": {
|
||||
"target_field": "crm_people.designation",
|
||||
"confidence": 0.72
|
||||
},
|
||||
"LeadSource": {
|
||||
"target_field": "crm_leads.source_system",
|
||||
"confidence": 0.9
|
||||
},
|
||||
"Status": {
|
||||
"target_field": "crm_leads.status",
|
||||
"confidence": 0.88
|
||||
}
|
||||
},
|
||||
"unmapped_columns": [
|
||||
"Description",
|
||||
"DoNotCall",
|
||||
"CreatedById"
|
||||
],
|
||||
"resolver_notes": "Title field contains mixed job titles and seniority levels. Recommend enrichment pass.",
|
||||
"record_count": 250,
|
||||
"mapped_count": 218,
|
||||
"unresolved_count": 32
|
||||
}
|
||||
27
db assets/synthetic_crm_v1/json/relationship_graph_map.json
Normal file
27
db assets/synthetic_crm_v1/json/relationship_graph_map.json
Normal file
@@ -0,0 +1,27 @@
|
||||
{
|
||||
"generated_at": "2026-04-18T00:00:00",
|
||||
"total_nodes": 341,
|
||||
"total_edges": 91,
|
||||
"node_types": {
|
||||
"primary_clients": 250,
|
||||
"co_buyers": 91,
|
||||
"accounts": 153,
|
||||
"households": 118
|
||||
},
|
||||
"edge_types": {
|
||||
"spouse": 25,
|
||||
"parent": 16,
|
||||
"sibling": 21,
|
||||
"business_partner": 29
|
||||
},
|
||||
"sample_paths": [
|
||||
{
|
||||
"path": "PER-0001 -> HH-0001 -> PER-0001-CO",
|
||||
"description": "Primary contact belongs to household with co-buyer"
|
||||
},
|
||||
{
|
||||
"path": "PER-0001 -> LED-0001 -> OPP-1-1 -> PRJ-001",
|
||||
"description": "Client to lead to opportunity to project"
|
||||
}
|
||||
]
|
||||
}
|
||||
1342
db assets/synthetic_crm_v1/json/transcript_sidecars.json
Normal file
1342
db assets/synthetic_crm_v1/json/transcript_sidecars.json
Normal file
File diff suppressed because it is too large
Load Diff
Reference in New Issue
Block a user