• Join BOO - V I P Channel (Private) - Daily Update! +50k File Shared Already
    1 MONTH Plan = 259$ — 6 MONTH Plan = 499$ — LIFE TIME Plan = 999$    [Contact on Telegram]
User Subscriptions Telecommunications France | 1.6 Million

boo

Administrator
booCash
16,417
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:

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​

  1. _id: A unique identifier for each record (e.g., "1", "2", "3").
  2. email: The email address associated with the record (e.g., "bouillotm8@gmail.com").
  3. ip_address: The IP address linked to the record (e.g., "131.110.17.55").
  4. created_at: The date when the record was created (e.g., "2024-03-13").
  5. phone_number: The phone number associated with the record (e.g., "0665997768").
  6. subscription: The type of subscription the user has (e.g., "Forfait40Go", "Forfait Lyca S Plus", "No_Subscriptions").
  7. subscription_status: The status of the subscription (e.g., "OFF").
  8. 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"}}
 
Back
Top