{
user: {
username: "sampleUser", // Unique login name
id: 42, // Internal numeric user ID
email: "sample.user@example.com", // Contact email
name: "Sample User", // Full display name
firstName: "Sample", // Given name
lastName: "User", // Family name
active: true, // Whether the user account is active
disableDetails: "Disabled due to demo rules.", // Optional reason if inactive
srcIP: "203.0.113.42", // IP address of last request
organizationId: 99, // Owning organization’s ID
partnerId: 1001, // Partner identifier
resellerId: 555777, // Reseller identifier
tempUser: false, // Flag for temporary/guest accounts
phoneNumberVerified: "+1-800-555-0101", // Verified phone number
pushEnabled: true // Whether push notifications are enabled
},
account: {
accountType: "organization", // "organization" or other account scope
username: "sampleOrg", // Org-level username (often same as user)
id: 99, // Unique account ID
timestamp: 1700000000000, // Unix ms timestamp when traits generated
active: true, // Whether the account is active
orgName: "Example Corp.", // Organization display name
partnerId: 1001, // Partner identifier (mirrors user.partnerId)
resellerId: 555777, // Reseller identifier (mirrors user.resellerId)
vidaPremium: true, // Subscription flag
vidaPhoneNumber: "+1-800-555-0202",// Support/organization phone number
vidaPremiumTimestamp: "1700000000",// Unix seconds when premium purchased
vidaPremiumExpires: "1710000000", // Unix seconds when premium expires
vidaPremiumCanceled: null, // Unix seconds of cancellation, null if active
productPlanId: "pplan-demo-123", // Product plan identifier
productPlanTerm: null, // Term details (e.g., "monthly"), null if N/A
productPlanOffer: false, // Whether plan was part of a promo
smsEnabled: true, // SMS notification availability
canceledReason: null, // Cancellation reason if canceled
canceledDetails: null, // Additional cancellation notes
externalAccountId: null, // Optional external account reference
externalBillingId: "cus_123456789",// Billing platform customer ID
billingSubscriptionId: null // External subscription ID, if applicable
},
userAgentData:
"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36" // Browser user-agent string
}