User Subscriptions Telecommunications France | 1.6 Million
Text is a collection of JSON (JavaScript Object Notation) objects, each representing a user's data. Here's a breakdown of what each object contains:
{"_id": "1", "email": "bouillotm8@gmail.com", "ip_address": "131.110.17.55", "created_at": "2024-03-13", "phone_number": "0665997768", "subscription": "Forfait40Go", "subscription_status": "OFF", "attributes": {"USER_UUID": "45dc80a5-b1d1-46a0-ae89-115b2801439c"}}
{"_id": "2", "email": "beatrice.robin85@orange.fr", "ip_address": "159.159.245.195", "created_at": "2020-04-13", "phone_number": "0706427803", "subscription": "Forfait Lyca S Plus", "subscription_status": "OFF", "attributes": {"USER_UUID": "8ef8f454-f0a5-4142-b33d-b8b1c85caac3"}}
{"_id": "3", "email": "elfylle72@gmail.com", "ip_address": "213.33.189.155", "created_at": "2023-03-22", "phone_number": "0799766628", "subscription": "No_Subscriptions", "subscription_status": "OFF", "attributes": {"USER_UUID": "43b2fb8e-31f7-417a-ba70-502c86cf3432"}}
Structure
- JSON Objects: Each line is a separate JSON object.
- Fields: Each object contains several key-value pairs, which are separated by commas.
Fields and Their Contents
- _id: A unique identifier for each record (e.g., "1", "2", "3").
- email: The email address associated with the record (e.g., "bouillotm8@gmail.com").
- ip_address: The IP address linked to the record (e.g., "131.110.17.55").
- created_at: The date when the record was created (e.g., "2024-03-13").
- phone_number: The phone number associated with the record (e.g., "0665997768").
- subscription: The type of subscription the user has (e.g., "Forfait40Go", "Forfait Lyca S Plus", "No_Subscriptions").
- subscription_status: The status of the subscription (e.g., "OFF").
- attributes: A nested object containing additional attributes. Currently, it includes:
- USER_UUID: A unique user identifier in UUID format (e.g., "45dc80a5-b1d1-46a0-ae89-115b2801439c").
Observations
- The data seems to be related to user subscriptions, possibly in a telecommunications context.
- The subscription status is consistently "OFF" across the provided records.
- The IP addresses suggest that these users are located in different regions, as IP addresses can be used to approximate geographic locations.
{"_id": "1", "email": "bouillotm8@gmail.com", "ip_address": "131.110.17.55", "created_at": "2024-03-13", "phone_number": "0665997768", "subscription": "Forfait40Go", "subscription_status": "OFF", "attributes": {"USER_UUID": "45dc80a5-b1d1-46a0-ae89-115b2801439c"}}
{"_id": "2", "email": "beatrice.robin85@orange.fr", "ip_address": "159.159.245.195", "created_at": "2020-04-13", "phone_number": "0706427803", "subscription": "Forfait Lyca S Plus", "subscription_status": "OFF", "attributes": {"USER_UUID": "8ef8f454-f0a5-4142-b33d-b8b1c85caac3"}}
{"_id": "3", "email": "elfylle72@gmail.com", "ip_address": "213.33.189.155", "created_at": "2023-03-22", "phone_number": "0799766628", "subscription": "No_Subscriptions", "subscription_status": "OFF", "attributes": {"USER_UUID": "43b2fb8e-31f7-417a-ba70-502c86cf3432"}}