├── .gitignore
├── README.md
├── aux
├── __init__.py
├── aux.py
└── query.py
├── datalake
└── landing
│ ├── movies
│ ├── movies_2021_4_26_16_18_40.json
│ ├── movies_2021_4_26_16_20_36.json
│ ├── movies_2021_4_26_16_20_53.json
│ ├── movies_2021_4_26_16_25_23.json
│ ├── movies_2021_5_18_12_48_29.json
│ ├── movies_2021_5_18_12_48_40.json
│ ├── movies_2021_5_18_12_48_47.json
│ ├── movies_2021_5_18_12_48_53.json
│ ├── movies_2021_5_18_12_48_59.json
│ ├── movies_2021_5_18_12_49_11.json
│ ├── movies_2021_5_18_12_49_17.json
│ ├── movies_2021_5_18_12_49_26.json
│ ├── movies_2021_5_18_12_49_31.json
│ ├── movies_2021_5_18_12_49_37.json
│ ├── movies_2021_5_18_12_49_46.json
│ ├── movies_2021_5_18_12_49_5.json
│ ├── movies_2021_5_18_12_49_53.json
│ ├── movies_2021_5_18_12_50_22.json
│ ├── movies_2021_5_18_12_56_34.json
│ ├── movies_2021_5_18_12_56_40.json
│ ├── movies_2021_5_18_12_57_15.json
│ ├── movies_2021_5_18_12_57_20.json
│ ├── movies_2021_5_18_12_57_51.json
│ ├── movies_2021_5_18_12_58_0.json
│ ├── movies_2021_5_18_12_58_43.json
│ ├── movies_2021_5_18_12_58_48.json
│ ├── movies_2021_5_18_13_21_49.json
│ ├── movies_2021_5_18_13_3_28.json
│ ├── movies_2021_5_18_13_55_44.json
│ ├── movies_2021_5_18_13_55_52.json
│ ├── movies_2021_5_18_13_55_58.json
│ ├── movies_2021_5_18_13_56_14.json
│ ├── movies_2021_5_18_13_56_21.json
│ ├── movies_2021_5_18_13_56_26.json
│ ├── movies_2021_5_18_13_56_3.json
│ ├── movies_2021_5_18_13_56_32.json
│ ├── movies_2021_5_18_13_56_37.json
│ ├── movies_2021_5_18_13_56_43.json
│ ├── movies_2021_5_18_13_56_48.json
│ ├── movies_2021_5_18_13_56_54.json
│ ├── movies_2021_5_18_13_56_9.json
│ ├── movies_2021_5_18_13_7_15.json
│ ├── movies_2021_5_18_13_7_30.json
│ ├── movies_2021_5_18_13_7_36.json
│ ├── movies_2021_5_18_15_36_53.json
│ ├── movies_2021_5_18_15_37_1.json
│ ├── movies_2021_5_18_16_37_58.json
│ ├── movies_2021_5_18_16_38_16.json
│ ├── movies_2021_5_18_16_38_9.json
│ ├── movies_2021_5_18_16_42_38.json
│ ├── movies_2021_5_18_16_42_44.json
│ ├── movies_2021_5_18_16_42_49.json
│ ├── movies_2021_5_18_16_42_55.json
│ ├── movies_2021_5_18_16_43_0.json
│ ├── movies_2021_5_18_16_43_6.json
│ ├── movies_2021_5_19_11_33_10.json
│ ├── movies_2021_5_19_11_33_23.json
│ └── movies_2021_5_19_11_33_38.json
│ ├── subscription
│ ├── subscription_2021_4_26_16_25_48.json
│ ├── subscription_2021_4_26_16_27_9.json
│ ├── subscription_2021_4_26_16_28_7.json
│ ├── subscription_2021_4_26_16_29_19.json
│ ├── subscription_2021_5_18_15_36_29.json
│ ├── subscription_2021_5_18_15_37_22.json
│ ├── subscription_2021_5_19_11_33_11.json
│ └── subscription_2021_5_19_11_33_47.json
│ ├── user
│ ├── user_2021_4_26_16_25_33.json
│ ├── user_2021_4_26_16_26_54.json
│ ├── user_2021_4_26_16_27_53.json
│ ├── user_2021_4_26_16_29_5.json
│ ├── user_2021_5_18_15_36_13.json
│ ├── user_2021_5_18_15_37_8.json
│ ├── user_2021_5_19_11_32_56.json
│ └── user_2021_5_19_11_33_33.json
│ └── vehicle
│ ├── vehicle_2021_4_26_16_25_39.json
│ ├── vehicle_2021_4_26_16_27_0.json
│ ├── vehicle_2021_4_26_16_27_59.json
│ ├── vehicle_2021_4_26_16_29_11.json
│ ├── vehicle_2021_5_18_15_36_19.json
│ ├── vehicle_2021_5_18_15_37_13.json
│ ├── vehicle_2021_5_19_11_33_2.json
│ └── vehicle_2021_5_19_11_33_38.json
├── main.py
├── requirements.txt
└── src
├── __init__.py
├── bronze.py
├── gold.py
└── silver.py
/.gitignore:
--------------------------------------------------------------------------------
1 | # Env
2 | .env.local
3 | venv/
4 |
5 | # Python
6 | __pycache__
7 |
8 | # Data Directory
9 | /datalake/bronze/
10 | /datalake/silver/
11 | /datalake/gold/
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 | Delta lake is an open-source project that enables building a Lakehouse architecture on top of existing storage systems such as S3, ADLS, GCS, and HDFS.
7 |
8 |
9 |
10 | []()
11 | - Create Virtual Environment
12 | ```sh
13 | python -m venv venv
14 | ```
15 | - Load Virtual Environment
16 | ```sh
17 | source venv/bin/activate
18 | ```
19 | - Install Dependencies
20 | ```sh
21 | brew install openjdk@11
22 | pip install -r requirements.txt
23 | ```
24 | - Execute Main Job
25 | ```sh
26 | python main.py
27 | ```
--------------------------------------------------------------------------------
/aux/__init__.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/carlosbtech/deltalake-architecture/f0e72a547fd3c3e0999fab08384285ac14b8d432/aux/__init__.py
--------------------------------------------------------------------------------
/aux/aux.py:
--------------------------------------------------------------------------------
1 | from pyspark.sql import SparkSession
2 | from pyspark.sql import DataFrame
3 |
4 | def create_spark_session(app_name: str) -> SparkSession:
5 | '''[Create or get a SparkSession]
6 |
7 | Args:
8 | app_name (str): [Name of the Spark application]
9 |
10 | Returns:
11 | SparkSession: [A SparkSession object]
12 | '''
13 | spark = (
14 | SparkSession.builder
15 | .appName(app_name)
16 | .config('spark.jars.packages', 'io.delta:delta-core_2.12:2.3.0')
17 | .config('spark.sql.extensions', 'io.delta.sql.DeltaSparkSessionExtension')
18 | .config('spark.sql.catalog.spark_catalog', 'org.apache.spark.sql.delta.catalog.DeltaCatalog')
19 | .getOrCreate()
20 | )
21 |
22 | spark.sparkContext.setLogLevel('ERROR')
23 |
24 | return spark
25 |
26 |
27 | def read_data(spark: SparkSession, path: str, format: str) -> DataFrame:
28 | '''[Read data from the given path]
29 |
30 | Args:
31 | spark (SparkSession): [SparkSession object]
32 | path (str): [data location path]
33 | format (str): [file format]
34 |
35 | Returns:
36 | DataFrame: [Dataframe with data]
37 | '''
38 | df = (
39 | spark.read
40 | .format(format)
41 | .option('inferSchema', 'true')
42 | .option('header', 'true')
43 | .load(path)
44 | )
45 |
46 | return df
47 |
48 |
49 | def write_data(df: DataFrame, path: str, write_mode: str) -> None:
50 | '''[Write data to the given path]
51 |
52 | Args:
53 | df (DataFrame): [Dataframe with data]
54 | path (str): [data location path]
55 | write_mode (str): [append, overwrite]
56 | '''
57 | (
58 | df.write
59 | .mode(write_mode)
60 | .format('delta')
61 | .save(path)
62 | )
--------------------------------------------------------------------------------
/aux/query.py:
--------------------------------------------------------------------------------
1 | SILVER_QUERY = '''
2 | SELECT
3 | CONCAT(vu.first_name, ' ', vu.last_name) AS full_name,
4 | vu.email AS email_user,
5 | CASE
6 | WHEN vu.gender IS NULL THEN 'N/D'
7 | ELSE vu.gender
8 | END AS gender_user,
9 | vu.username,
10 | vu.date_of_birth,
11 | vv.car_type,
12 | vv.color,
13 | vs.payment_method,
14 | vs.status,
15 | vv.dt_current_timestamp
16 | FROM
17 | user AS vu
18 | INNER JOIN
19 | vehicle AS vv
20 | ON
21 | vu.user_id = vv.user_id
22 | LEFT JOIN
23 | subscription AS vs
24 | ON
25 | vu.user_id = vs.user_id
26 | '''
27 |
28 | GOLD_QUERY = '''
29 | SELECT
30 | full_name,
31 | email_user,
32 | FLOOR(DATEDIFF(NOW(), date_of_birth) / 365.25) AS age,
33 | CASE
34 | WHEN FLOOR(DATEDIFF(NOW(), date_of_birth) / 365.25) <= 21 THEN 'young'
35 | WHEN FLOOR(DATEDIFF(NOW(), date_of_birth) / 365.25) <= 51 THEN 'adult'
36 | ELSE 'elder'
37 | END AS age_category,
38 | CASE
39 | WHEN payment_method IS NULL THEN 'Payment not made'
40 | ELSE payment_method
41 | END AS payment_method,
42 | CASE
43 | WHEN status IS NULL THEN 'N/D'
44 | ELSE status
45 | END AS status
46 | FROM
47 | vw_user_payment
48 | WHERE
49 | status IN ('Blocked', 'Pending');
50 | '''
--------------------------------------------------------------------------------
/datalake/landing/subscription/subscription_2021_4_26_16_25_48.json:
--------------------------------------------------------------------------------
1 | [{"id":4570,"uid":"be995baf-227a-4350-b7d0-5702d8e3f379","plan":"Standard","status":"Idle","payment_method":"Google Pay","subscription_term":"Weekly","payment_term":"Full subscription","user_id":6283,"dt_current_timestamp":1619454349389},{"id":1132,"uid":"28a42e06-da2c-4dfb-8e37-e03bb76f9f76","plan":"Standard","status":"Blocked","payment_method":"Money transfer","subscription_term":"Weekly","payment_term":"Full subscription","user_id":4950,"dt_current_timestamp":1619454349389},{"id":1235,"uid":"2fa2d807-ee62-4447-9ce6-c3cfa763d89e","plan":"Platinum","status":"Idle","payment_method":"Bitcoins","subscription_term":"Quinquennal","payment_term":"Monthly","user_id":7256,"dt_current_timestamp":1619454349389},{"id":2438,"uid":"2816e7b9-694f-4b17-8ab7-204f691f72d8","plan":"Basic","status":"Blocked","payment_method":"Credit card","subscription_term":"Lifetime","payment_term":"Full subscription","user_id":1714,"dt_current_timestamp":1619454349389},{"id":2854,"uid":"91bd4217-5eaa-4923-950f-464a4059373a","plan":"Bronze","status":"Idle","payment_method":"Alipay","subscription_term":"Daily","payment_term":"Payment in advance","user_id":7819,"dt_current_timestamp":1619454349389},{"id":753,"uid":"7caea9eb-149e-4662-9987-ae172f7a3972","plan":"Gold","status":"Idle","payment_method":"Paypal","subscription_term":"Monthly","payment_term":"Payment in advance","user_id":6624,"dt_current_timestamp":1619454349389},{"id":1211,"uid":"54f2f624-73c3-4e0d-adeb-a4e1e7427617","plan":"Diamond","status":"Active","payment_method":"Credit card","subscription_term":"Daily","payment_term":"Full subscription","user_id":923,"dt_current_timestamp":1619454349389},{"id":3009,"uid":"df566f18-6b5c-4248-b2e8-b77afa6197e4","plan":"Gold","status":"Pending","payment_method":"Apple Pay","subscription_term":"Biennal","payment_term":"Monthly","user_id":589,"dt_current_timestamp":1619454349389},{"id":8340,"uid":"8d4840e1-8757-4734-aba4-ec02222ccf4f","plan":"Basic","status":"Pending","payment_method":"Paypal","subscription_term":"Weekly","payment_term":"Monthly","user_id":8099,"dt_current_timestamp":1619454349389},{"id":285,"uid":"7a66d8f5-8bc7-40cf-b199-794a0f2bb828","plan":"Standard","status":"Blocked","payment_method":"Cheque","subscription_term":"Daily","payment_term":"Full subscription","user_id":3850,"dt_current_timestamp":1619454349389},{"id":8717,"uid":"21cf7821-f375-41ca-9f44-e8d9886a783e","plan":"Bronze","status":"Blocked","payment_method":"Alipay","subscription_term":"Weekly","payment_term":"Annual","user_id":6747,"dt_current_timestamp":1619454349389},{"id":6322,"uid":"64cec357-618e-4036-bfed-ce2f0f5301fd","plan":"Essential","status":"Blocked","payment_method":"Cash","subscription_term":"Monthly","payment_term":"Monthly","user_id":1490,"dt_current_timestamp":1619454349389},{"id":7664,"uid":"e8729770-2973-4cb7-86e4-e0c35bdd9946","plan":"Business","status":"Idle","payment_method":"Google Pay","subscription_term":"Weekly","payment_term":"Annual","user_id":8959,"dt_current_timestamp":1619454349389},{"id":3962,"uid":"c2dfea0b-aabb-4b86-a4a9-fc54755a1f27","plan":"Professional","status":"Pending","payment_method":"Cheque","subscription_term":"Quinquennal","payment_term":"Annual","user_id":8706,"dt_current_timestamp":1619454349389},{"id":8581,"uid":"6204ffa5-15e2-4d8a-893b-ab5b4ef263ca","plan":"Diamond","status":"Pending","payment_method":"Visa checkout","subscription_term":"Triennal","payment_term":"Monthly","user_id":509,"dt_current_timestamp":1619454349389},{"id":3812,"uid":"a315ae2a-e7af-4846-9ba6-7f261ceffbcc","plan":"Student","status":"Blocked","payment_method":"WeChat Pay","subscription_term":"Daily","payment_term":"Payment in advance","user_id":2793,"dt_current_timestamp":1619454349389},{"id":3093,"uid":"cbd17c44-ccf9-40ce-b4d5-8985ba325deb","plan":"Business","status":"Blocked","payment_method":"Debit card","subscription_term":"Quinquennal","payment_term":"Annual","user_id":6721,"dt_current_timestamp":1619454349389},{"id":9707,"uid":"0b52818e-6f05-4b13-b109-239820faca84","plan":"Silver","status":"Active","payment_method":"Alipay","subscription_term":"Lifetime","payment_term":"Full subscription","user_id":5691,"dt_current_timestamp":1619454349389},{"id":3442,"uid":"342d4b83-3a90-4dbe-8657-f0e697d58ba9","plan":"Diamond","status":"Active","payment_method":"Google Pay","subscription_term":"Daily","payment_term":"Monthly","user_id":3742,"dt_current_timestamp":1619454349389},{"id":2986,"uid":"a356130f-649c-45c1-a54b-dbc78de0e43f","plan":"Silver","status":"Idle","payment_method":"Paypal","subscription_term":"Daily","payment_term":"Annual","user_id":4462,"dt_current_timestamp":1619454349389},{"id":3172,"uid":"3bf36094-b49b-4d87-ab8a-aac56dad5a45","plan":"Basic","status":"Pending","payment_method":"Paypal","subscription_term":"Daily","payment_term":"Payment in advance","user_id":8670,"dt_current_timestamp":1619454349389},{"id":2200,"uid":"2928fbda-b24b-4d09-ba23-73520640f28a","plan":"Essential","status":"Pending","payment_method":"Visa checkout","subscription_term":"Quinquennal","payment_term":"Payment in advance","user_id":9409,"dt_current_timestamp":1619454349389},{"id":7636,"uid":"6bdd103a-2ae2-4f2a-bc46-a7506beeea2c","plan":"Student","status":"Idle","payment_method":"Cash","subscription_term":"Triennal","payment_term":"Payment in advance","user_id":822,"dt_current_timestamp":1619454349389},{"id":9362,"uid":"1af4e686-5c86-4947-a286-c49611817c40","plan":"Gold","status":"Idle","payment_method":"Credit card","subscription_term":"Weekly","payment_term":"Monthly","user_id":2799,"dt_current_timestamp":1619454349389},{"id":6131,"uid":"6f8810be-70b5-4c11-975a-c6768d721820","plan":"Bronze","status":"Active","payment_method":"WeChat Pay","subscription_term":"Biennal","payment_term":"Full subscription","user_id":2407,"dt_current_timestamp":1619454349389},{"id":6102,"uid":"c64c2e8b-d61d-450f-8206-61d43257a5e6","plan":"Premium","status":"Active","payment_method":"Alipay","subscription_term":"Weekly","payment_term":"Full subscription","user_id":796,"dt_current_timestamp":1619454349389},{"id":6634,"uid":"58117b21-5a1c-422e-9948-bc8e489a6c0b","plan":"Business","status":"Active","payment_method":"Apple Pay","subscription_term":"Biennal","payment_term":"Full subscription","user_id":1158,"dt_current_timestamp":1619454349389},{"id":153,"uid":"4060b657-bbb7-4282-9676-a4d9e47e534a","plan":"Premium","status":"Active","payment_method":"Debit card","subscription_term":"Lifetime","payment_term":"Monthly","user_id":5376,"dt_current_timestamp":1619454349389},{"id":1313,"uid":"eea9b99b-1766-4ce6-9527-70f5867664ae","plan":"Premium","status":"Idle","payment_method":"WeChat Pay","subscription_term":"Quinquennal","payment_term":"Full subscription","user_id":1468,"dt_current_timestamp":1619454349389},{"id":7158,"uid":"8b474c73-5e81-414e-8e04-5230c6960bb8","plan":"Gold","status":"Blocked","payment_method":"Apple Pay","subscription_term":"Lifetime","payment_term":"Full subscription","user_id":8544,"dt_current_timestamp":1619454349389},{"id":2581,"uid":"ccc34248-9836-4f67-943d-0ac6b178f167","plan":"Standard","status":"Pending","payment_method":"Paypal","subscription_term":"Quinquennal","payment_term":"Payment in advance","user_id":8287,"dt_current_timestamp":1619454349389},{"id":9693,"uid":"248c4c6f-6d31-4c35-bd82-3d2ef51c61c4","plan":"Essential","status":"Idle","payment_method":"WeChat Pay","subscription_term":"Biennal","payment_term":"Monthly","user_id":34,"dt_current_timestamp":1619454349389},{"id":8915,"uid":"dbb08e0d-2ad0-4d84-8b8b-5dffdcfee90b","plan":"Standard","status":"Active","payment_method":"Money transfer","subscription_term":"Annual","payment_term":"Annual","user_id":5149,"dt_current_timestamp":1619454349389},{"id":6166,"uid":"ff8866ba-3e6d-4c0f-a750-b9fa639b9fb4","plan":"Diamond","status":"Blocked","payment_method":"Cheque","subscription_term":"Daily","payment_term":"Annual","user_id":9098,"dt_current_timestamp":1619454349389},{"id":6270,"uid":"7548f62a-db3a-473d-90ae-60be57600825","plan":"Starter","status":"Pending","payment_method":"WeChat Pay","subscription_term":"Annual","payment_term":"Payment in advance","user_id":8697,"dt_current_timestamp":1619454349389},{"id":8033,"uid":"b8a40fbb-5720-468f-90c3-e512fc997f56","plan":"Bronze","status":"Blocked","payment_method":"Money transfer","subscription_term":"Lifetime","payment_term":"Annual","user_id":8227,"dt_current_timestamp":1619454349389},{"id":1498,"uid":"8100ebe5-1b6b-4caa-9d75-b4d5dced7ef4","plan":"Gold","status":"Blocked","payment_method":"Paypal","subscription_term":"Weekly","payment_term":"Annual","user_id":8030,"dt_current_timestamp":1619454349389},{"id":851,"uid":"e6c0e726-c956-457b-9c66-9aaec68e9421","plan":"Gold","status":"Pending","payment_method":"Debit card","subscription_term":"Triennal","payment_term":"Full subscription","user_id":5930,"dt_current_timestamp":1619454349389},{"id":8219,"uid":"4990929d-cca1-438e-9127-351c1f51a42a","plan":"Premium","status":"Pending","payment_method":"Credit card","subscription_term":"Weekly","payment_term":"Monthly","user_id":4619,"dt_current_timestamp":1619454349389},{"id":7053,"uid":"9c9f0ea4-f67f-47b5-af9c-af625ad2c020","plan":"Business","status":"Idle","payment_method":"Paypal","subscription_term":"Monthly","payment_term":"Payment in advance","user_id":4570,"dt_current_timestamp":1619454349389},{"id":6390,"uid":"911a10bf-3885-4dde-ba75-371ea21822f9","plan":"Standard","status":"Idle","payment_method":"Debit card","subscription_term":"Annual","payment_term":"Annual","user_id":158,"dt_current_timestamp":1619454349389},{"id":1033,"uid":"717edb48-35be-48ad-bd1f-aa7a9ec5c210","plan":"Bronze","status":"Blocked","payment_method":"Money transfer","subscription_term":"Weekly","payment_term":"Annual","user_id":9724,"dt_current_timestamp":1619454349389},{"id":3444,"uid":"936ac2f4-6794-441d-ba6f-06cbd89adf11","plan":"Diamond","status":"Idle","payment_method":"Cash","subscription_term":"Biennal","payment_term":"Payment in advance","user_id":7427,"dt_current_timestamp":1619454349389},{"id":2682,"uid":"e372458a-eb20-4e6f-8ee1-d1b8182e1192","plan":"Gold","status":"Active","payment_method":"Credit card","subscription_term":"Annual","payment_term":"Monthly","user_id":6967,"dt_current_timestamp":1619454349389},{"id":7623,"uid":"048a51ca-79f3-4d9c-b6c1-b5a773c3eab7","plan":"Silver","status":"Pending","payment_method":"Alipay","subscription_term":"Biennal","payment_term":"Annual","user_id":3090,"dt_current_timestamp":1619454349389},{"id":3610,"uid":"a254c95d-2e10-4193-af9c-daf55aa34ae6","plan":"Professional","status":"Active","payment_method":"Money transfer","subscription_term":"Monthly","payment_term":"Payment in advance","user_id":1715,"dt_current_timestamp":1619454349389},{"id":4708,"uid":"e5a6c552-d674-4057-9e35-7e0e4a70e5ef","plan":"Free Trial","status":"Pending","payment_method":"WeChat Pay","subscription_term":"Lifetime","payment_term":"Monthly","user_id":6771,"dt_current_timestamp":1619454349389},{"id":1516,"uid":"d0b34244-dfba-49b7-8457-64cffa652fc7","plan":"Silver","status":"Idle","payment_method":"Credit card","subscription_term":"Annual","payment_term":"Annual","user_id":3417,"dt_current_timestamp":1619454349389},{"id":2391,"uid":"db5dd612-731d-4933-a6c9-fd95adfb0100","plan":"Platinum","status":"Blocked","payment_method":"Cash","subscription_term":"Daily","payment_term":"Annual","user_id":6588,"dt_current_timestamp":1619454349389},{"id":570,"uid":"f1621d1a-83c8-4229-9b79-49a44ed124c3","plan":"Premium","status":"Pending","payment_method":"Money transfer","subscription_term":"Triennal","payment_term":"Full subscription","user_id":4955,"dt_current_timestamp":1619454349389},{"id":5239,"uid":"f76712e3-8044-4320-a31a-9ede0da8617c","plan":"Platinum","status":"Pending","payment_method":"Visa checkout","subscription_term":"Quinquennal","payment_term":"Monthly","user_id":6233,"dt_current_timestamp":1619454349389},{"id":9457,"uid":"39ad49df-9788-49ac-ba30-e0d333a4bf45","plan":"Diamond","status":"Idle","payment_method":"Google Pay","subscription_term":"Lifetime","payment_term":"Full subscription","user_id":8017,"dt_current_timestamp":1619454349389},{"id":5026,"uid":"2140d57d-d288-430a-a7c1-1453ac9fec2b","plan":"Business","status":"Active","payment_method":"Paypal","subscription_term":"Quinquennal","payment_term":"Annual","user_id":9503,"dt_current_timestamp":1619454349389},{"id":976,"uid":"8ae4ca73-b019-488b-96e9-3c25190a4eb0","plan":"Business","status":"Active","payment_method":"Cash","subscription_term":"Weekly","payment_term":"Monthly","user_id":594,"dt_current_timestamp":1619454349389},{"id":4578,"uid":"c886fb92-e0ae-48b6-91d3-876e8f0289b6","plan":"Professional","status":"Active","payment_method":"Bitcoins","subscription_term":"Lifetime","payment_term":"Annual","user_id":3558,"dt_current_timestamp":1619454349389},{"id":537,"uid":"a722e5af-45a2-49b5-860f-602cc8bf1dde","plan":"Essential","status":"Active","payment_method":"Visa checkout","subscription_term":"Quinquennal","payment_term":"Annual","user_id":2726,"dt_current_timestamp":1619454349389},{"id":5672,"uid":"847fe789-ba96-41ac-b44b-e4ff015f6ce4","plan":"Student","status":"Blocked","payment_method":"Cheque","subscription_term":"Lifetime","payment_term":"Full subscription","user_id":2283,"dt_current_timestamp":1619454349389},{"id":1727,"uid":"b1cc0c7a-88c4-4095-b2e8-c3541a3ca301","plan":"Premium","status":"Active","payment_method":"Google Pay","subscription_term":"Triennal","payment_term":"Monthly","user_id":6646,"dt_current_timestamp":1619454349389},{"id":1735,"uid":"a44ff47f-b0fb-4564-a60a-1b2b2352f8e2","plan":"Platinum","status":"Idle","payment_method":"Paypal","subscription_term":"Biennal","payment_term":"Payment in advance","user_id":1093,"dt_current_timestamp":1619454349389},{"id":8742,"uid":"2d2a1b36-bee7-48cd-8d72-373d5bd5a834","plan":"Bronze","status":"Idle","payment_method":"Alipay","subscription_term":"Weekly","payment_term":"Payment in advance","user_id":8470,"dt_current_timestamp":1619454349389},{"id":6433,"uid":"d55ca2fa-275d-4546-b109-13e1d4b80fc3","plan":"Free Trial","status":"Blocked","payment_method":"Money transfer","subscription_term":"Quinquennal","payment_term":"Payment in advance","user_id":1124,"dt_current_timestamp":1619454349389},{"id":9194,"uid":"46cdbc00-34c7-443b-aaf3-ca5184b55852","plan":"Diamond","status":"Idle","payment_method":"WeChat Pay","subscription_term":"Daily","payment_term":"Full subscription","user_id":7844,"dt_current_timestamp":1619454349389},{"id":2006,"uid":"5c16836e-f42f-4fa4-9745-6ff8295ad08b","plan":"Premium","status":"Idle","payment_method":"Apple Pay","subscription_term":"Lifetime","payment_term":"Full subscription","user_id":7463,"dt_current_timestamp":1619454349389},{"id":6404,"uid":"342f4088-fe93-453b-8ac4-e34086bb6745","plan":"Free Trial","status":"Active","payment_method":"Google Pay","subscription_term":"Annual","payment_term":"Full subscription","user_id":6619,"dt_current_timestamp":1619454349389},{"id":9559,"uid":"d4634fbd-ef82-424b-8e6d-3a52054004e5","plan":"Student","status":"Pending","payment_method":"Apple Pay","subscription_term":"Annual","payment_term":"Full subscription","user_id":2495,"dt_current_timestamp":1619454349389},{"id":2662,"uid":"b48c42b3-b854-4581-a8a6-0d3ae1d69aa7","plan":"Basic","status":"Blocked","payment_method":"Cash","subscription_term":"Weekly","payment_term":"Annual","user_id":6436,"dt_current_timestamp":1619454349389},{"id":7832,"uid":"61502648-9077-453d-a00c-1d2c5c55b263","plan":"Bronze","status":"Blocked","payment_method":"Cheque","subscription_term":"Weekly","payment_term":"Payment in advance","user_id":1395,"dt_current_timestamp":1619454349389},{"id":3608,"uid":"b0d96c89-8507-4348-97ea-510dc6a0c570","plan":"Professional","status":"Blocked","payment_method":"Credit card","subscription_term":"Biennal","payment_term":"Annual","user_id":8184,"dt_current_timestamp":1619454349389},{"id":9282,"uid":"93bb6fee-e10f-430f-a63b-c4350ec98276","plan":"Starter","status":"Active","payment_method":"Bitcoins","subscription_term":"Triennal","payment_term":"Monthly","user_id":3896,"dt_current_timestamp":1619454349389},{"id":8552,"uid":"ae5c6085-7d19-402c-8f11-2cdd952d65ee","plan":"Gold","status":"Pending","payment_method":"Google Pay","subscription_term":"Quinquennal","payment_term":"Monthly","user_id":2502,"dt_current_timestamp":1619454349389},{"id":5348,"uid":"03fafb68-1645-4d8d-a78f-13fa6a8647c5","plan":"Basic","status":"Active","payment_method":"Money transfer","subscription_term":"Monthly","payment_term":"Annual","user_id":9260,"dt_current_timestamp":1619454349389},{"id":9393,"uid":"2664bd9e-85be-4a3f-852b-8ae4fd0b3339","plan":"Student","status":"Pending","payment_method":"Bitcoins","subscription_term":"Monthly","payment_term":"Monthly","user_id":6862,"dt_current_timestamp":1619454349389},{"id":9638,"uid":"7147bdf0-94bd-4cb8-b2b7-373b89a41108","plan":"Free Trial","status":"Pending","payment_method":"Paypal","subscription_term":"Quinquennal","payment_term":"Monthly","user_id":5991,"dt_current_timestamp":1619454349389},{"id":9119,"uid":"a3f8151d-1cce-4221-bd31-8fc378b76565","plan":"Standard","status":"Blocked","payment_method":"Alipay","subscription_term":"Triennal","payment_term":"Annual","user_id":8029,"dt_current_timestamp":1619454349389},{"id":407,"uid":"477f1662-0178-492c-857e-3e2efbeeaaf2","plan":"Student","status":"Idle","payment_method":"Debit card","subscription_term":"Annual","payment_term":"Annual","user_id":7123,"dt_current_timestamp":1619454349389},{"id":5752,"uid":"c29e3692-6fdd-44dc-8670-5f88128a115d","plan":"Starter","status":"Active","payment_method":"Cheque","subscription_term":"Lifetime","payment_term":"Annual","user_id":7505,"dt_current_timestamp":1619454349389},{"id":8553,"uid":"72964556-101d-4490-8c11-008d5eadb8a1","plan":"Essential","status":"Pending","payment_method":"Cash","subscription_term":"Monthly","payment_term":"Annual","user_id":6506,"dt_current_timestamp":1619454349389},{"id":2376,"uid":"22d02ba0-b882-417e-995c-0f0ea143c75e","plan":"Business","status":"Active","payment_method":"Debit card","subscription_term":"Quinquennal","payment_term":"Full subscription","user_id":8624,"dt_current_timestamp":1619454349389},{"id":1290,"uid":"d353cf6a-b03e-4ace-8891-7d006229a65c","plan":"Platinum","status":"Pending","payment_method":"Apple Pay","subscription_term":"Biennal","payment_term":"Monthly","user_id":7848,"dt_current_timestamp":1619454349389},{"id":9494,"uid":"4403a23a-c248-4031-8f86-fa793c822536","plan":"Essential","status":"Pending","payment_method":"Credit card","subscription_term":"Annual","payment_term":"Monthly","user_id":7352,"dt_current_timestamp":1619454349389},{"id":343,"uid":"edbf4a2b-ed1e-4e87-bdf8-33e9c4d3677c","plan":"Bronze","status":"Active","payment_method":"Bitcoins","subscription_term":"Quinquennal","payment_term":"Full subscription","user_id":7987,"dt_current_timestamp":1619454349389},{"id":8275,"uid":"04b39a60-14ae-4ce2-be1e-7c3331b0e4d1","plan":"Student","status":"Active","payment_method":"Cheque","subscription_term":"Daily","payment_term":"Payment in advance","user_id":9156,"dt_current_timestamp":1619454349389},{"id":3459,"uid":"4810463b-40c0-4206-a0e3-ca26d72a084d","plan":"Student","status":"Active","payment_method":"Bitcoins","subscription_term":"Biennal","payment_term":"Payment in advance","user_id":8605,"dt_current_timestamp":1619454349389},{"id":3960,"uid":"5d1e10a4-f651-4cf1-ab18-be91c55e965c","plan":"Platinum","status":"Pending","payment_method":"Visa checkout","subscription_term":"Triennal","payment_term":"Full subscription","user_id":1727,"dt_current_timestamp":1619454349389},{"id":3117,"uid":"f2ec5e46-9801-46aa-9c9f-3cc8c2a9455e","plan":"Diamond","status":"Active","payment_method":"Money transfer","subscription_term":"Weekly","payment_term":"Full subscription","user_id":5158,"dt_current_timestamp":1619454349389},{"id":2494,"uid":"9f2bff5b-4134-4a75-82d2-a491138fa496","plan":"Starter","status":"Active","payment_method":"Visa checkout","subscription_term":"Lifetime","payment_term":"Monthly","user_id":9495,"dt_current_timestamp":1619454349389},{"id":455,"uid":"ad7b3205-9258-456c-ae88-09389f9d7120","plan":"Premium","status":"Blocked","payment_method":"Money transfer","subscription_term":"Triennal","payment_term":"Monthly","user_id":6556,"dt_current_timestamp":1619454349389},{"id":9471,"uid":"b84dae7b-a473-4a6e-88e6-ea6c3a25cfdf","plan":"Student","status":"Pending","payment_method":"Cash","subscription_term":"Biennal","payment_term":"Monthly","user_id":9223,"dt_current_timestamp":1619454349389},{"id":2812,"uid":"7ea9f25d-a3be-4f3b-8c60-77ca06b54f86","plan":"Standard","status":"Pending","payment_method":"Alipay","subscription_term":"Monthly","payment_term":"Payment in advance","user_id":3338,"dt_current_timestamp":1619454349389},{"id":747,"uid":"aeb87cb7-34e2-46a3-a7c6-d06756d9c203","plan":"Basic","status":"Idle","payment_method":"Cash","subscription_term":"Biennal","payment_term":"Full subscription","user_id":370,"dt_current_timestamp":1619454349389},{"id":6072,"uid":"234ed77e-b71d-4240-b453-d74fcc5c793b","plan":"Starter","status":"Pending","payment_method":"Bitcoins","subscription_term":"Lifetime","payment_term":"Annual","user_id":7770,"dt_current_timestamp":1619454349389},{"id":237,"uid":"8d1d4969-a7f5-4b2f-90e6-39f0fec88f56","plan":"Diamond","status":"Idle","payment_method":"Visa checkout","subscription_term":"Daily","payment_term":"Monthly","user_id":5350,"dt_current_timestamp":1619454349389},{"id":8582,"uid":"77b756c9-6dee-4851-a38e-3396a8e523be","plan":"Diamond","status":"Active","payment_method":"WeChat Pay","subscription_term":"Triennal","payment_term":"Payment in advance","user_id":7310,"dt_current_timestamp":1619454349389},{"id":9967,"uid":"48846c74-8fc7-41d4-8210-fca9a189f351","plan":"Silver","status":"Pending","payment_method":"Credit card","subscription_term":"Lifetime","payment_term":"Monthly","user_id":2349,"dt_current_timestamp":1619454349389},{"id":7685,"uid":"5a92ef00-67b0-472d-94ee-0f89032b5ce3","plan":"Bronze","status":"Blocked","payment_method":"Google Pay","subscription_term":"Daily","payment_term":"Full subscription","user_id":4302,"dt_current_timestamp":1619454349389},{"id":8022,"uid":"ebbda1a7-bf8c-45bf-a2d5-e5ef169c49eb","plan":"Standard","status":"Idle","payment_method":"Bitcoins","subscription_term":"Monthly","payment_term":"Payment in advance","user_id":4016,"dt_current_timestamp":1619454349389},{"id":9722,"uid":"a430b3bc-a9fa-4378-a818-122ac0f3dfe1","plan":"Diamond","status":"Blocked","payment_method":"Visa checkout","subscription_term":"Daily","payment_term":"Annual","user_id":327,"dt_current_timestamp":1619454349389},{"id":9816,"uid":"7ffb8ba9-a2b2-495f-8a29-222ff065bb8c","plan":"Business","status":"Blocked","payment_method":"Money transfer","subscription_term":"Monthly","payment_term":"Monthly","user_id":5610,"dt_current_timestamp":1619454349389},{"id":7784,"uid":"d6ff6f64-a5f7-41a3-a846-62ed07c75212","plan":"Premium","status":"Pending","payment_method":"WeChat Pay","subscription_term":"Biennal","payment_term":"Monthly","user_id":7275,"dt_current_timestamp":1619454349389},{"id":8335,"uid":"552cc352-0663-4ed1-9ce7-6057a16d728b","plan":"Free Trial","status":"Pending","payment_method":"Debit card","subscription_term":"Weekly","payment_term":"Full subscription","user_id":6654,"dt_current_timestamp":1619454349389}]
--------------------------------------------------------------------------------
/datalake/landing/subscription/subscription_2021_4_26_16_27_9.json:
--------------------------------------------------------------------------------
1 | [{"id":4076,"uid":"a79bae99-bc71-4656-af33-92cb8cae3f88","plan":"Premium","status":"Active","payment_method":"Cash","subscription_term":"Biennal","payment_term":"Annual","user_id":9367,"dt_current_timestamp":1619454430431},{"id":4922,"uid":"064b7356-a13e-49e5-8ac7-41570dd1e432","plan":"Business","status":"Pending","payment_method":"Visa checkout","subscription_term":"Triennal","payment_term":"Monthly","user_id":1502,"dt_current_timestamp":1619454430431},{"id":3763,"uid":"c0e8798a-8446-4e70-8148-afbef19ea659","plan":"Platinum","status":"Active","payment_method":"Money transfer","subscription_term":"Biennal","payment_term":"Annual","user_id":7459,"dt_current_timestamp":1619454430431},{"id":9526,"uid":"a02ced48-e08d-45cf-be17-bd888f1e3db3","plan":"Professional","status":"Blocked","payment_method":"Google Pay","subscription_term":"Annual","payment_term":"Monthly","user_id":5512,"dt_current_timestamp":1619454430431},{"id":7089,"uid":"da738347-d793-4b29-97c2-5c37680326d0","plan":"Essential","status":"Idle","payment_method":"Alipay","subscription_term":"Quinquennal","payment_term":"Full subscription","user_id":3159,"dt_current_timestamp":1619454430431},{"id":1239,"uid":"653333b4-8ac4-45cc-83b7-438bd7adfae2","plan":"Gold","status":"Active","payment_method":"Cash","subscription_term":"Triennal","payment_term":"Full subscription","user_id":4981,"dt_current_timestamp":1619454430431},{"id":9196,"uid":"51bd11f6-92ae-49fe-b3e5-83ed8709b88a","plan":"Diamond","status":"Blocked","payment_method":"Bitcoins","subscription_term":"Annual","payment_term":"Payment in advance","user_id":8769,"dt_current_timestamp":1619454430431},{"id":4281,"uid":"7a0947c8-31c8-4dc7-b361-04bd8c2c226a","plan":"Premium","status":"Active","payment_method":"Apple Pay","subscription_term":"Quinquennal","payment_term":"Annual","user_id":3498,"dt_current_timestamp":1619454430431},{"id":2308,"uid":"68424935-3f51-4320-a2ba-62d82d372ad4","plan":"Business","status":"Idle","payment_method":"Debit card","subscription_term":"Quinquennal","payment_term":"Full subscription","user_id":7351,"dt_current_timestamp":1619454430431},{"id":9051,"uid":"f53bdb59-572d-4152-8f2a-4d5ded5dfa3d","plan":"Professional","status":"Active","payment_method":"Debit card","subscription_term":"Monthly","payment_term":"Payment in advance","user_id":3869,"dt_current_timestamp":1619454430431},{"id":2411,"uid":"b976f56f-dd24-4aa1-b471-c842a6246420","plan":"Business","status":"Blocked","payment_method":"Apple Pay","subscription_term":"Daily","payment_term":"Annual","user_id":7232,"dt_current_timestamp":1619454430431},{"id":2131,"uid":"c78b2568-811f-4b31-a5c1-6e4d23fbdb06","plan":"Business","status":"Active","payment_method":"Alipay","subscription_term":"Weekly","payment_term":"Annual","user_id":5944,"dt_current_timestamp":1619454430431},{"id":4678,"uid":"a9cb4b95-c7c5-4516-a9e5-1abe16e3768c","plan":"Business","status":"Active","payment_method":"Apple Pay","subscription_term":"Quinquennal","payment_term":"Monthly","user_id":8,"dt_current_timestamp":1619454430431},{"id":4101,"uid":"c1563fad-a5cb-46ce-9bb3-69e4100f530c","plan":"Gold","status":"Pending","payment_method":"Google Pay","subscription_term":"Quinquennal","payment_term":"Monthly","user_id":8824,"dt_current_timestamp":1619454430431},{"id":863,"uid":"3830419b-6d45-479c-9235-88634164a934","plan":"Gold","status":"Idle","payment_method":"Money transfer","subscription_term":"Daily","payment_term":"Annual","user_id":5011,"dt_current_timestamp":1619454430431},{"id":8809,"uid":"5dba0c2f-aae2-4075-86a5-61af5923562c","plan":"Business","status":"Idle","payment_method":"Visa checkout","subscription_term":"Weekly","payment_term":"Full subscription","user_id":8105,"dt_current_timestamp":1619454430431},{"id":6687,"uid":"d73e319e-cfe4-4879-8864-11f35bd8d1dd","plan":"Professional","status":"Idle","payment_method":"Visa checkout","subscription_term":"Triennal","payment_term":"Monthly","user_id":9094,"dt_current_timestamp":1619454430431},{"id":1514,"uid":"f623f097-8a93-4954-8abe-5c9f7b5d929c","plan":"Silver","status":"Blocked","payment_method":"Debit card","subscription_term":"Annual","payment_term":"Full subscription","user_id":4857,"dt_current_timestamp":1619454430431},{"id":9406,"uid":"8d1b5101-d25e-4174-b639-6b5f2526bc39","plan":"Starter","status":"Idle","payment_method":"Cheque","subscription_term":"Weekly","payment_term":"Annual","user_id":7889,"dt_current_timestamp":1619454430431},{"id":8665,"uid":"ef50df3c-9c7e-48bb-b440-a291a88aa337","plan":"Bronze","status":"Active","payment_method":"Bitcoins","subscription_term":"Biennal","payment_term":"Monthly","user_id":6361,"dt_current_timestamp":1619454430431},{"id":3677,"uid":"6164dff5-ba35-4804-8b15-9aed330bc45c","plan":"Professional","status":"Pending","payment_method":"Alipay","subscription_term":"Biennal","payment_term":"Full subscription","user_id":9034,"dt_current_timestamp":1619454430431},{"id":585,"uid":"820221e0-5418-4463-9022-608b8125332c","plan":"Bronze","status":"Active","payment_method":"Visa checkout","subscription_term":"Monthly","payment_term":"Full subscription","user_id":3819,"dt_current_timestamp":1619454430431},{"id":3967,"uid":"f0afe299-db10-42c1-97ab-fbb0bfe0ba48","plan":"Business","status":"Blocked","payment_method":"Bitcoins","subscription_term":"Biennal","payment_term":"Monthly","user_id":1624,"dt_current_timestamp":1619454430431},{"id":9187,"uid":"beed5084-2f89-447f-90a8-98af790b52a8","plan":"Gold","status":"Pending","payment_method":"Money transfer","subscription_term":"Monthly","payment_term":"Full subscription","user_id":9517,"dt_current_timestamp":1619454430431},{"id":6148,"uid":"e4667a72-05c4-4d9e-bc66-35f437de1af1","plan":"Business","status":"Active","payment_method":"Bitcoins","subscription_term":"Annual","payment_term":"Monthly","user_id":7630,"dt_current_timestamp":1619454430431},{"id":239,"uid":"a772fd9b-d0cd-4422-b836-aa22f5727102","plan":"Standard","status":"Blocked","payment_method":"Alipay","subscription_term":"Triennal","payment_term":"Monthly","user_id":2596,"dt_current_timestamp":1619454430431},{"id":7110,"uid":"0abf1a05-746d-423f-9775-b8eae24d58a3","plan":"Starter","status":"Idle","payment_method":"Cheque","subscription_term":"Lifetime","payment_term":"Annual","user_id":5348,"dt_current_timestamp":1619454430431},{"id":7095,"uid":"f32fd734-f064-4536-b026-19c6acba3723","plan":"Basic","status":"Idle","payment_method":"Bitcoins","subscription_term":"Annual","payment_term":"Full subscription","user_id":8210,"dt_current_timestamp":1619454430431},{"id":6912,"uid":"eb73a29d-a60a-4cae-abb8-4b0b1bc5f303","plan":"Essential","status":"Blocked","payment_method":"Bitcoins","subscription_term":"Quinquennal","payment_term":"Full subscription","user_id":2117,"dt_current_timestamp":1619454430431},{"id":5216,"uid":"0e99bb47-3172-4acf-aed1-4766a4996629","plan":"Standard","status":"Idle","payment_method":"Alipay","subscription_term":"Quinquennal","payment_term":"Annual","user_id":8914,"dt_current_timestamp":1619454430431},{"id":6068,"uid":"a352214e-97cd-4a20-8fb7-4f09a4697d03","plan":"Standard","status":"Blocked","payment_method":"Alipay","subscription_term":"Quinquennal","payment_term":"Full subscription","user_id":1863,"dt_current_timestamp":1619454430431},{"id":6739,"uid":"afa25e09-ce27-45ad-be22-9a799bdf2034","plan":"Business","status":"Idle","payment_method":"WeChat Pay","subscription_term":"Quinquennal","payment_term":"Payment in advance","user_id":3943,"dt_current_timestamp":1619454430431},{"id":3095,"uid":"f97bbaff-3eed-45eb-a86f-d62a4115ba5d","plan":"Essential","status":"Blocked","payment_method":"Paypal","subscription_term":"Annual","payment_term":"Full subscription","user_id":6836,"dt_current_timestamp":1619454430431},{"id":8204,"uid":"eaa10c55-109f-4f7f-b8de-a7857c37aecd","plan":"Business","status":"Idle","payment_method":"Money transfer","subscription_term":"Monthly","payment_term":"Monthly","user_id":152,"dt_current_timestamp":1619454430431},{"id":6302,"uid":"62c260ee-91a7-48c6-b964-d5248eb6b4e5","plan":"Silver","status":"Idle","payment_method":"WeChat Pay","subscription_term":"Weekly","payment_term":"Payment in advance","user_id":1865,"dt_current_timestamp":1619454430431},{"id":2653,"uid":"ccb64e8c-ed9f-46ae-8c05-d991c57b7896","plan":"Essential","status":"Blocked","payment_method":"Visa checkout","subscription_term":"Biennal","payment_term":"Payment in advance","user_id":8593,"dt_current_timestamp":1619454430431},{"id":5602,"uid":"9443dbe3-6c4a-4963-a828-f3fd5565c966","plan":"Bronze","status":"Idle","payment_method":"Google Pay","subscription_term":"Weekly","payment_term":"Monthly","user_id":4897,"dt_current_timestamp":1619454430431},{"id":7048,"uid":"e27003af-8882-4542-983f-f924881003c8","plan":"Standard","status":"Pending","payment_method":"Apple Pay","subscription_term":"Daily","payment_term":"Full subscription","user_id":1894,"dt_current_timestamp":1619454430431},{"id":187,"uid":"53efe533-ec92-4f6c-a4bc-546f1a79b6f8","plan":"Premium","status":"Pending","payment_method":"Credit card","subscription_term":"Monthly","payment_term":"Monthly","user_id":7508,"dt_current_timestamp":1619454430431},{"id":6688,"uid":"224d477c-790c-4f67-a8e7-888f5b0ec6a7","plan":"Premium","status":"Active","payment_method":"Bitcoins","subscription_term":"Quinquennal","payment_term":"Annual","user_id":8235,"dt_current_timestamp":1619454430431},{"id":3205,"uid":"d595524c-ddce-421f-9dc6-c061b9f6c356","plan":"Student","status":"Blocked","payment_method":"Cheque","subscription_term":"Quinquennal","payment_term":"Annual","user_id":1421,"dt_current_timestamp":1619454430431},{"id":5510,"uid":"d1ee9755-e37a-4c96-a0d4-36ba833f3074","plan":"Standard","status":"Active","payment_method":"Bitcoins","subscription_term":"Annual","payment_term":"Full subscription","user_id":3078,"dt_current_timestamp":1619454430431},{"id":639,"uid":"643cac79-804a-4d0d-827a-1829f20f1369","plan":"Student","status":"Pending","payment_method":"WeChat Pay","subscription_term":"Quinquennal","payment_term":"Payment in advance","user_id":4992,"dt_current_timestamp":1619454430431},{"id":1266,"uid":"96a70376-0fe1-48be-8b07-3e3181e100f7","plan":"Bronze","status":"Blocked","payment_method":"Apple Pay","subscription_term":"Biennal","payment_term":"Annual","user_id":8742,"dt_current_timestamp":1619454430431},{"id":2246,"uid":"20661efd-46c5-47eb-ab9e-dd45f0298c0f","plan":"Essential","status":"Active","payment_method":"Debit card","subscription_term":"Annual","payment_term":"Payment in advance","user_id":8887,"dt_current_timestamp":1619454430431},{"id":9930,"uid":"0561717e-972f-466b-95ca-ce6c3685cce3","plan":"Basic","status":"Active","payment_method":"Google Pay","subscription_term":"Biennal","payment_term":"Payment in advance","user_id":6751,"dt_current_timestamp":1619454430431},{"id":4636,"uid":"a951fac9-b0ca-4915-ae54-007f406a9316","plan":"Bronze","status":"Blocked","payment_method":"Credit card","subscription_term":"Triennal","payment_term":"Full subscription","user_id":9582,"dt_current_timestamp":1619454430431},{"id":367,"uid":"0f8d4214-8d06-4e48-8786-d0237293c015","plan":"Standard","status":"Idle","payment_method":"Credit card","subscription_term":"Annual","payment_term":"Monthly","user_id":1484,"dt_current_timestamp":1619454430431},{"id":6356,"uid":"c7b5a3ef-0885-4336-ad9f-94aa6e868519","plan":"Basic","status":"Idle","payment_method":"Money transfer","subscription_term":"Daily","payment_term":"Payment in advance","user_id":7056,"dt_current_timestamp":1619454430431},{"id":6225,"uid":"ab361c77-c132-4927-9239-6e307f72ad87","plan":"Bronze","status":"Active","payment_method":"Paypal","subscription_term":"Monthly","payment_term":"Payment in advance","user_id":5838,"dt_current_timestamp":1619454430431},{"id":9245,"uid":"b4142460-b869-499e-b19b-496cd535f28c","plan":"Platinum","status":"Pending","payment_method":"Apple Pay","subscription_term":"Monthly","payment_term":"Annual","user_id":8837,"dt_current_timestamp":1619454430431},{"id":5405,"uid":"b839fe8e-08ef-4030-a10d-de7922b939b0","plan":"Bronze","status":"Pending","payment_method":"Debit card","subscription_term":"Biennal","payment_term":"Annual","user_id":2717,"dt_current_timestamp":1619454430431},{"id":9146,"uid":"cc2aedf0-ab90-4d0a-9039-03979d728d90","plan":"Diamond","status":"Blocked","payment_method":"Debit card","subscription_term":"Triennal","payment_term":"Payment in advance","user_id":7861,"dt_current_timestamp":1619454430431},{"id":8281,"uid":"f2484143-b3b2-4760-9459-c383dbdc8005","plan":"Essential","status":"Idle","payment_method":"Cash","subscription_term":"Biennal","payment_term":"Full subscription","user_id":4778,"dt_current_timestamp":1619454430431},{"id":3432,"uid":"d69d6a34-e18f-408e-acec-5f8694e4bde7","plan":"Business","status":"Active","payment_method":"Alipay","subscription_term":"Monthly","payment_term":"Payment in advance","user_id":8526,"dt_current_timestamp":1619454430431},{"id":4340,"uid":"c9bdda56-611c-45a0-a6dd-186a704bf70c","plan":"Bronze","status":"Idle","payment_method":"Cash","subscription_term":"Lifetime","payment_term":"Full subscription","user_id":2773,"dt_current_timestamp":1619454430431},{"id":4478,"uid":"5166a127-db97-4081-b8f3-af49df718bd9","plan":"Essential","status":"Idle","payment_method":"Cash","subscription_term":"Annual","payment_term":"Full subscription","user_id":9288,"dt_current_timestamp":1619454430431},{"id":2229,"uid":"17f07d6c-9cd2-495e-94ff-874faf5fc94d","plan":"Business","status":"Active","payment_method":"Cash","subscription_term":"Quinquennal","payment_term":"Full subscription","user_id":9061,"dt_current_timestamp":1619454430431},{"id":1643,"uid":"9e573946-7bed-4721-95dd-2cd61435b8d7","plan":"Starter","status":"Pending","payment_method":"Debit card","subscription_term":"Daily","payment_term":"Annual","user_id":4989,"dt_current_timestamp":1619454430431},{"id":7981,"uid":"3d06abc8-af19-4ef0-8153-95fd5f5f1b53","plan":"Diamond","status":"Pending","payment_method":"Alipay","subscription_term":"Quinquennal","payment_term":"Monthly","user_id":6108,"dt_current_timestamp":1619454430431},{"id":3797,"uid":"16d3dc09-0759-48ca-99c0-b38b06932ff8","plan":"Business","status":"Idle","payment_method":"Google Pay","subscription_term":"Weekly","payment_term":"Annual","user_id":9737,"dt_current_timestamp":1619454430431},{"id":5983,"uid":"ec880cec-3cbe-45c3-9c77-4314676cc3f3","plan":"Premium","status":"Pending","payment_method":"Credit card","subscription_term":"Monthly","payment_term":"Monthly","user_id":4120,"dt_current_timestamp":1619454430431},{"id":4211,"uid":"7e9587a8-e879-4daf-98d9-ec7bca60676e","plan":"Free Trial","status":"Idle","payment_method":"Google Pay","subscription_term":"Triennal","payment_term":"Annual","user_id":8146,"dt_current_timestamp":1619454430431},{"id":4630,"uid":"34c07813-80de-47bb-8050-c336278bc951","plan":"Diamond","status":"Blocked","payment_method":"Paypal","subscription_term":"Biennal","payment_term":"Monthly","user_id":4462,"dt_current_timestamp":1619454430431},{"id":5416,"uid":"c725d423-a937-4f02-af83-36780383c431","plan":"Business","status":"Idle","payment_method":"Alipay","subscription_term":"Biennal","payment_term":"Payment in advance","user_id":5052,"dt_current_timestamp":1619454430431},{"id":1517,"uid":"d2456547-aa2a-4a91-a615-1282d5ea813d","plan":"Essential","status":"Blocked","payment_method":"Money transfer","subscription_term":"Quinquennal","payment_term":"Annual","user_id":5349,"dt_current_timestamp":1619454430431},{"id":3804,"uid":"a0fcc5ed-4e3a-414e-9cf2-8842eb6a5044","plan":"Free Trial","status":"Blocked","payment_method":"Credit card","subscription_term":"Quinquennal","payment_term":"Monthly","user_id":8406,"dt_current_timestamp":1619454430431},{"id":7439,"uid":"3b6380a1-ef65-4142-b955-83b8d5f30490","plan":"Silver","status":"Pending","payment_method":"Credit card","subscription_term":"Quinquennal","payment_term":"Payment in advance","user_id":268,"dt_current_timestamp":1619454430431},{"id":7568,"uid":"99a08fdd-570b-43a4-b4d0-9d5e36c2b2ba","plan":"Student","status":"Blocked","payment_method":"Cheque","subscription_term":"Lifetime","payment_term":"Monthly","user_id":1225,"dt_current_timestamp":1619454430431},{"id":8530,"uid":"edc06eb5-132e-4b8f-b50f-557daf11fb76","plan":"Platinum","status":"Active","payment_method":"Paypal","subscription_term":"Triennal","payment_term":"Payment in advance","user_id":3155,"dt_current_timestamp":1619454430431},{"id":2686,"uid":"3510a612-e5c3-492c-a6ae-e7a00693f208","plan":"Bronze","status":"Active","payment_method":"Money transfer","subscription_term":"Biennal","payment_term":"Full subscription","user_id":9522,"dt_current_timestamp":1619454430431},{"id":4266,"uid":"3a42d988-f3e2-4f67-ae23-8ae4a1c6fc38","plan":"Basic","status":"Blocked","payment_method":"Bitcoins","subscription_term":"Annual","payment_term":"Payment in advance","user_id":6213,"dt_current_timestamp":1619454430431},{"id":9590,"uid":"7020858f-53c5-4445-bda6-6ad30f6b1511","plan":"Diamond","status":"Blocked","payment_method":"WeChat Pay","subscription_term":"Lifetime","payment_term":"Monthly","user_id":4627,"dt_current_timestamp":1619454430431},{"id":656,"uid":"8c2854b7-3150-4a7f-9b3d-102e85dd5f6f","plan":"Gold","status":"Active","payment_method":"Google Pay","subscription_term":"Monthly","payment_term":"Monthly","user_id":9950,"dt_current_timestamp":1619454430431},{"id":2185,"uid":"4f19c343-3994-4b2b-b09a-8c34b02101f1","plan":"Basic","status":"Active","payment_method":"Cash","subscription_term":"Monthly","payment_term":"Full subscription","user_id":584,"dt_current_timestamp":1619454430431},{"id":6311,"uid":"aa37f736-6d65-4c70-9d04-c83d3af7f490","plan":"Bronze","status":"Active","payment_method":"Credit card","subscription_term":"Biennal","payment_term":"Monthly","user_id":3124,"dt_current_timestamp":1619454430431},{"id":7131,"uid":"4c607a6b-218b-4b26-b1d3-123caf62cfdf","plan":"Standard","status":"Active","payment_method":"Apple Pay","subscription_term":"Lifetime","payment_term":"Annual","user_id":7886,"dt_current_timestamp":1619454430431},{"id":9191,"uid":"7c5aff75-37b4-4a3a-93dc-7ee4581e8670","plan":"Student","status":"Idle","payment_method":"Visa checkout","subscription_term":"Triennal","payment_term":"Full subscription","user_id":5655,"dt_current_timestamp":1619454430431},{"id":3843,"uid":"ab287470-116e-4dc0-9724-abc2831185a3","plan":"Basic","status":"Blocked","payment_method":"Cheque","subscription_term":"Lifetime","payment_term":"Monthly","user_id":6108,"dt_current_timestamp":1619454430431},{"id":238,"uid":"72e391ca-7826-42e4-8715-b0b8d827c265","plan":"Premium","status":"Active","payment_method":"Apple Pay","subscription_term":"Daily","payment_term":"Full subscription","user_id":550,"dt_current_timestamp":1619454430431},{"id":8731,"uid":"5b4059c0-06a4-43e7-998f-9ea511c236b3","plan":"Diamond","status":"Blocked","payment_method":"Apple Pay","subscription_term":"Annual","payment_term":"Full subscription","user_id":4964,"dt_current_timestamp":1619454430431},{"id":4511,"uid":"75eaf191-5ac5-4178-a262-1451682f1281","plan":"Student","status":"Pending","payment_method":"Apple Pay","subscription_term":"Weekly","payment_term":"Annual","user_id":348,"dt_current_timestamp":1619454430431},{"id":7914,"uid":"93036cd0-1b88-4055-a434-41c743432e3c","plan":"Essential","status":"Blocked","payment_method":"WeChat Pay","subscription_term":"Monthly","payment_term":"Monthly","user_id":1407,"dt_current_timestamp":1619454430431},{"id":3140,"uid":"b33e3a38-ab26-4805-bb0f-841422f72a98","plan":"Bronze","status":"Blocked","payment_method":"Paypal","subscription_term":"Triennal","payment_term":"Annual","user_id":4152,"dt_current_timestamp":1619454430431},{"id":4742,"uid":"8312b703-74da-470b-bb26-41f0a9b1f897","plan":"Basic","status":"Active","payment_method":"Money transfer","subscription_term":"Quinquennal","payment_term":"Full subscription","user_id":3919,"dt_current_timestamp":1619454430431},{"id":7305,"uid":"869fa05f-e384-4065-952c-51ba7dcc333d","plan":"Starter","status":"Blocked","payment_method":"Google Pay","subscription_term":"Lifetime","payment_term":"Payment in advance","user_id":4866,"dt_current_timestamp":1619454430431},{"id":5009,"uid":"07fc4bb5-5c38-40ae-a99d-663496c30e24","plan":"Silver","status":"Pending","payment_method":"Money transfer","subscription_term":"Biennal","payment_term":"Monthly","user_id":2671,"dt_current_timestamp":1619454430431},{"id":5265,"uid":"4999ff8d-0fbd-470d-a5fd-ccd2790a0765","plan":"Essential","status":"Idle","payment_method":"Cash","subscription_term":"Weekly","payment_term":"Payment in advance","user_id":1344,"dt_current_timestamp":1619454430431},{"id":884,"uid":"00a1ee1e-ef49-41d0-b05f-03faa7879a30","plan":"Silver","status":"Idle","payment_method":"Paypal","subscription_term":"Annual","payment_term":"Annual","user_id":8404,"dt_current_timestamp":1619454430431},{"id":7541,"uid":"14a1125d-9484-4df5-a2a0-571c08a0fdd4","plan":"Silver","status":"Pending","payment_method":"Bitcoins","subscription_term":"Annual","payment_term":"Full subscription","user_id":5630,"dt_current_timestamp":1619454430431},{"id":7715,"uid":"af036523-004e-475a-9c7b-09fe0a9b1c34","plan":"Student","status":"Blocked","payment_method":"Cheque","subscription_term":"Monthly","payment_term":"Monthly","user_id":7813,"dt_current_timestamp":1619454430431},{"id":1173,"uid":"c4800ff8-e815-4429-8d80-cb947e7c776b","plan":"Gold","status":"Pending","payment_method":"WeChat Pay","subscription_term":"Quinquennal","payment_term":"Monthly","user_id":9612,"dt_current_timestamp":1619454430431},{"id":403,"uid":"35a45433-87a1-4332-aa7f-9c4a80bef0ae","plan":"Basic","status":"Pending","payment_method":"Money transfer","subscription_term":"Quinquennal","payment_term":"Annual","user_id":1084,"dt_current_timestamp":1619454430431},{"id":4189,"uid":"09cf2929-23e5-4de8-8e08-ba414139eb16","plan":"Bronze","status":"Pending","payment_method":"Visa checkout","subscription_term":"Quinquennal","payment_term":"Payment in advance","user_id":2757,"dt_current_timestamp":1619454430431},{"id":5806,"uid":"45492c6e-27bf-4ef7-9914-a63d5d7b1696","plan":"Basic","status":"Blocked","payment_method":"Credit card","subscription_term":"Lifetime","payment_term":"Monthly","user_id":7734,"dt_current_timestamp":1619454430431},{"id":6240,"uid":"52f49fa4-3a65-415f-9c20-50088a6728ff","plan":"Business","status":"Blocked","payment_method":"Apple Pay","subscription_term":"Monthly","payment_term":"Annual","user_id":1073,"dt_current_timestamp":1619454430431},{"id":4691,"uid":"5d7397d8-c14b-4bec-8ee5-0d967e21d3a6","plan":"Silver","status":"Idle","payment_method":"Apple Pay","subscription_term":"Triennal","payment_term":"Payment in advance","user_id":9663,"dt_current_timestamp":1619454430431},{"id":4088,"uid":"95011bf9-62a1-40a7-af9a-d1190168b1d7","plan":"Business","status":"Blocked","payment_method":"Cheque","subscription_term":"Lifetime","payment_term":"Monthly","user_id":3671,"dt_current_timestamp":1619454430431},{"id":6663,"uid":"fd6f8e72-24d2-48c5-a20c-3326447f26d0","plan":"Diamond","status":"Idle","payment_method":"Google Pay","subscription_term":"Quinquennal","payment_term":"Annual","user_id":9411,"dt_current_timestamp":1619454430431},{"id":9046,"uid":"4f4f8577-97f7-42f5-b33c-fa583138dcb6","plan":"Standard","status":"Pending","payment_method":"Bitcoins","subscription_term":"Monthly","payment_term":"Full subscription","user_id":7454,"dt_current_timestamp":1619454430431}]
--------------------------------------------------------------------------------
/datalake/landing/subscription/subscription_2021_4_26_16_28_7.json:
--------------------------------------------------------------------------------
1 | [{"id":3046,"uid":"1e7e7556-f4bc-4b9c-8cad-5d3047ebc78a","plan":"Diamond","status":"Idle","payment_method":"WeChat Pay","subscription_term":"Weekly","payment_term":"Payment in advance","user_id":5721,"dt_current_timestamp":1619454489274},{"id":9164,"uid":"09689cb9-c870-4502-b10a-6465d8edfe76","plan":"Basic","status":"Active","payment_method":"Cheque","subscription_term":"Annual","payment_term":"Payment in advance","user_id":652,"dt_current_timestamp":1619454489274},{"id":1705,"uid":"86fc24b1-cb33-4d67-87b0-020af3e8cf73","plan":"Basic","status":"Idle","payment_method":"Cheque","subscription_term":"Monthly","payment_term":"Payment in advance","user_id":331,"dt_current_timestamp":1619454489274},{"id":5463,"uid":"e9efccd2-35d8-4101-8d28-52430e5782ad","plan":"Free Trial","status":"Blocked","payment_method":"Alipay","subscription_term":"Annual","payment_term":"Monthly","user_id":6638,"dt_current_timestamp":1619454489274},{"id":3140,"uid":"29ed2876-8464-4f4d-bf00-4b78a5920116","plan":"Bronze","status":"Blocked","payment_method":"WeChat Pay","subscription_term":"Daily","payment_term":"Payment in advance","user_id":3217,"dt_current_timestamp":1619454489274},{"id":2284,"uid":"25befba8-40f6-49c4-8a29-8ce4232d6a54","plan":"Platinum","status":"Idle","payment_method":"Money transfer","subscription_term":"Monthly","payment_term":"Annual","user_id":8711,"dt_current_timestamp":1619454489274},{"id":7214,"uid":"5dbe0922-c6b1-4316-a060-aa2406783a12","plan":"Diamond","status":"Pending","payment_method":"WeChat Pay","subscription_term":"Triennal","payment_term":"Payment in advance","user_id":2475,"dt_current_timestamp":1619454489274},{"id":8315,"uid":"00877b44-e0f0-421d-ac1b-d961c93f50df","plan":"Premium","status":"Active","payment_method":"Paypal","subscription_term":"Annual","payment_term":"Monthly","user_id":4244,"dt_current_timestamp":1619454489274},{"id":6780,"uid":"4bbb855f-0397-4d90-b9e4-a7cd68b0ed25","plan":"Standard","status":"Idle","payment_method":"Alipay","subscription_term":"Biennal","payment_term":"Annual","user_id":1714,"dt_current_timestamp":1619454489274},{"id":1105,"uid":"b978ebb8-2aae-4e91-9b82-95d1202123ca","plan":"Business","status":"Active","payment_method":"WeChat Pay","subscription_term":"Quinquennal","payment_term":"Monthly","user_id":656,"dt_current_timestamp":1619454489274},{"id":7974,"uid":"d0f3b6db-abf3-402c-ba89-94b56b21c626","plan":"Basic","status":"Idle","payment_method":"Money transfer","subscription_term":"Weekly","payment_term":"Payment in advance","user_id":5383,"dt_current_timestamp":1619454489274},{"id":3365,"uid":"3c38c01c-d1d8-416c-b6d1-e4808df0cbda","plan":"Premium","status":"Blocked","payment_method":"Alipay","subscription_term":"Weekly","payment_term":"Annual","user_id":3537,"dt_current_timestamp":1619454489274},{"id":6305,"uid":"ee0da739-847b-456c-8366-bc43784cd636","plan":"Gold","status":"Idle","payment_method":"Apple Pay","subscription_term":"Lifetime","payment_term":"Monthly","user_id":7939,"dt_current_timestamp":1619454489274},{"id":5418,"uid":"6211d72e-e3ca-45a2-9aae-3c22b1c9542e","plan":"Standard","status":"Idle","payment_method":"Cash","subscription_term":"Weekly","payment_term":"Payment in advance","user_id":7375,"dt_current_timestamp":1619454489274},{"id":8229,"uid":"b690d361-a264-49d3-963a-90a967985edc","plan":"Gold","status":"Pending","payment_method":"Apple Pay","subscription_term":"Lifetime","payment_term":"Monthly","user_id":5720,"dt_current_timestamp":1619454489274},{"id":5198,"uid":"74369b2e-33ab-406a-ab92-fea1b4a6536c","plan":"Free Trial","status":"Pending","payment_method":"Paypal","subscription_term":"Triennal","payment_term":"Annual","user_id":3301,"dt_current_timestamp":1619454489274},{"id":4601,"uid":"f8d89f50-153f-4b37-bd09-89ce0601c2dc","plan":"Basic","status":"Active","payment_method":"WeChat Pay","subscription_term":"Lifetime","payment_term":"Annual","user_id":3169,"dt_current_timestamp":1619454489274},{"id":7326,"uid":"eb6608e8-a50c-4f0c-aa45-33712ca04939","plan":"Free Trial","status":"Active","payment_method":"Visa checkout","subscription_term":"Lifetime","payment_term":"Monthly","user_id":1500,"dt_current_timestamp":1619454489274},{"id":7184,"uid":"fccdec09-7d0a-4857-817b-3bf466e31bda","plan":"Professional","status":"Idle","payment_method":"Bitcoins","subscription_term":"Annual","payment_term":"Full subscription","user_id":6841,"dt_current_timestamp":1619454489274},{"id":1479,"uid":"1027d400-2246-4c48-af5e-5b4a8acb177a","plan":"Silver","status":"Idle","payment_method":"Cheque","subscription_term":"Triennal","payment_term":"Annual","user_id":5882,"dt_current_timestamp":1619454489274},{"id":2271,"uid":"d16ec622-0541-4975-bd86-d1121f4749e9","plan":"Starter","status":"Pending","payment_method":"Apple Pay","subscription_term":"Weekly","payment_term":"Payment in advance","user_id":9609,"dt_current_timestamp":1619454489274},{"id":1538,"uid":"5b7ba185-a7dd-4ffc-bb6f-fa3e113f0311","plan":"Basic","status":"Blocked","payment_method":"Apple Pay","subscription_term":"Quinquennal","payment_term":"Full subscription","user_id":8022,"dt_current_timestamp":1619454489274},{"id":8478,"uid":"451b2881-df93-4580-8ff8-57c1d8be46f6","plan":"Business","status":"Idle","payment_method":"Bitcoins","subscription_term":"Daily","payment_term":"Payment in advance","user_id":1897,"dt_current_timestamp":1619454489274},{"id":6026,"uid":"b261021a-5677-48c9-941b-8bdb7bb92eaf","plan":"Bronze","status":"Idle","payment_method":"Credit card","subscription_term":"Monthly","payment_term":"Annual","user_id":7584,"dt_current_timestamp":1619454489274},{"id":1995,"uid":"46c42388-8f16-4307-9b41-f0ffd78caefe","plan":"Business","status":"Idle","payment_method":"Bitcoins","subscription_term":"Biennal","payment_term":"Payment in advance","user_id":6662,"dt_current_timestamp":1619454489274},{"id":3403,"uid":"c382abe9-ea8a-4149-8f4e-6cee0f1d0f2f","plan":"Diamond","status":"Blocked","payment_method":"Apple Pay","subscription_term":"Triennal","payment_term":"Annual","user_id":5044,"dt_current_timestamp":1619454489274},{"id":2423,"uid":"d3afca9c-595e-433c-bf54-cf332c901898","plan":"Premium","status":"Pending","payment_method":"Google Pay","subscription_term":"Monthly","payment_term":"Payment in advance","user_id":149,"dt_current_timestamp":1619454489274},{"id":6787,"uid":"3a2ee341-6f28-4e7f-9b2d-ea57c22b6284","plan":"Essential","status":"Pending","payment_method":"Apple Pay","subscription_term":"Quinquennal","payment_term":"Full subscription","user_id":2997,"dt_current_timestamp":1619454489274},{"id":3615,"uid":"db7698d3-e118-407c-9172-db4fa43a8bce","plan":"Bronze","status":"Active","payment_method":"Money transfer","subscription_term":"Annual","payment_term":"Monthly","user_id":7347,"dt_current_timestamp":1619454489274},{"id":8602,"uid":"6fc4415d-eec2-4177-954d-1b83ee14e521","plan":"Standard","status":"Pending","payment_method":"Bitcoins","subscription_term":"Quinquennal","payment_term":"Full subscription","user_id":8018,"dt_current_timestamp":1619454489274},{"id":9688,"uid":"1d00b087-7fb8-412d-93ed-c107f28d09be","plan":"Essential","status":"Active","payment_method":"Apple Pay","subscription_term":"Lifetime","payment_term":"Monthly","user_id":7259,"dt_current_timestamp":1619454489274},{"id":8443,"uid":"f846cbbf-9c0c-40bf-9638-7383a3279167","plan":"Starter","status":"Idle","payment_method":"Paypal","subscription_term":"Biennal","payment_term":"Monthly","user_id":5539,"dt_current_timestamp":1619454489274},{"id":7521,"uid":"6ad4c55a-f706-4f7d-9e5e-265ebddcbb98","plan":"Business","status":"Blocked","payment_method":"WeChat Pay","subscription_term":"Quinquennal","payment_term":"Payment in advance","user_id":854,"dt_current_timestamp":1619454489274},{"id":3697,"uid":"8ee56c03-5a37-4589-86d2-e83a3cc82f66","plan":"Basic","status":"Active","payment_method":"Cheque","subscription_term":"Monthly","payment_term":"Payment in advance","user_id":3556,"dt_current_timestamp":1619454489274},{"id":2503,"uid":"690409ab-7dd0-4f46-be88-fec41a485e9b","plan":"Platinum","status":"Active","payment_method":"Bitcoins","subscription_term":"Daily","payment_term":"Annual","user_id":3271,"dt_current_timestamp":1619454489274},{"id":7849,"uid":"80042fe6-a39f-4c78-ad13-07bb1a3a74f1","plan":"Gold","status":"Pending","payment_method":"Paypal","subscription_term":"Weekly","payment_term":"Payment in advance","user_id":5995,"dt_current_timestamp":1619454489274},{"id":8114,"uid":"c481e46d-b58f-4907-8f84-6759f3cf8395","plan":"Platinum","status":"Active","payment_method":"Debit card","subscription_term":"Quinquennal","payment_term":"Full subscription","user_id":5300,"dt_current_timestamp":1619454489274},{"id":4509,"uid":"1bb890c3-7698-451b-aa7b-4c1a4022a5b7","plan":"Premium","status":"Pending","payment_method":"Google Pay","subscription_term":"Annual","payment_term":"Payment in advance","user_id":4541,"dt_current_timestamp":1619454489274},{"id":409,"uid":"eee9b5ca-db32-47a5-a260-aba9b43da6ca","plan":"Essential","status":"Active","payment_method":"Alipay","subscription_term":"Triennal","payment_term":"Annual","user_id":3022,"dt_current_timestamp":1619454489274},{"id":6441,"uid":"5c281553-68ba-4653-a785-f84374e2dea5","plan":"Free Trial","status":"Pending","payment_method":"Credit card","subscription_term":"Triennal","payment_term":"Annual","user_id":1934,"dt_current_timestamp":1619454489274},{"id":8204,"uid":"f2e1f078-03e6-4a32-9826-79437eb091a8","plan":"Starter","status":"Blocked","payment_method":"WeChat Pay","subscription_term":"Lifetime","payment_term":"Monthly","user_id":3358,"dt_current_timestamp":1619454489274},{"id":9585,"uid":"b0eacc04-04bf-4fe8-927a-3e4e3fca951d","plan":"Standard","status":"Pending","payment_method":"WeChat Pay","subscription_term":"Quinquennal","payment_term":"Annual","user_id":4146,"dt_current_timestamp":1619454489274},{"id":3310,"uid":"f7a6b633-b60c-4a0e-9d5f-8cbd08933c74","plan":"Free Trial","status":"Blocked","payment_method":"Visa checkout","subscription_term":"Weekly","payment_term":"Full subscription","user_id":54,"dt_current_timestamp":1619454489274},{"id":9160,"uid":"eff755d0-7d38-4459-bd3c-331eb8a7ea11","plan":"Essential","status":"Pending","payment_method":"WeChat Pay","subscription_term":"Quinquennal","payment_term":"Monthly","user_id":8372,"dt_current_timestamp":1619454489274},{"id":2811,"uid":"282f5a16-2ac3-43c7-b449-2578257d55b3","plan":"Business","status":"Idle","payment_method":"Cash","subscription_term":"Biennal","payment_term":"Full subscription","user_id":5417,"dt_current_timestamp":1619454489274},{"id":4690,"uid":"10c39e31-3654-4bb9-b5a4-073e74bf236e","plan":"Essential","status":"Idle","payment_method":"Google Pay","subscription_term":"Quinquennal","payment_term":"Payment in advance","user_id":4961,"dt_current_timestamp":1619454489274},{"id":9399,"uid":"9be85321-19b6-4f1c-852f-f2c75483d070","plan":"Free Trial","status":"Pending","payment_method":"Paypal","subscription_term":"Biennal","payment_term":"Full subscription","user_id":4804,"dt_current_timestamp":1619454489274},{"id":6652,"uid":"0fc5be25-393f-4d74-a646-f723b354f9a7","plan":"Basic","status":"Blocked","payment_method":"Bitcoins","subscription_term":"Monthly","payment_term":"Payment in advance","user_id":8701,"dt_current_timestamp":1619454489274},{"id":3992,"uid":"fba356b8-68e2-4ee4-bc4e-e223fac6ae4b","plan":"Business","status":"Blocked","payment_method":"Credit card","subscription_term":"Daily","payment_term":"Payment in advance","user_id":3019,"dt_current_timestamp":1619454489274},{"id":6047,"uid":"3eb498ea-f5e6-4036-96c4-cc904431a8c4","plan":"Gold","status":"Pending","payment_method":"Cash","subscription_term":"Monthly","payment_term":"Full subscription","user_id":2470,"dt_current_timestamp":1619454489274},{"id":7507,"uid":"14f4eaa9-ea4c-4122-ae31-7bdfa2147f1b","plan":"Standard","status":"Active","payment_method":"Bitcoins","subscription_term":"Quinquennal","payment_term":"Annual","user_id":9980,"dt_current_timestamp":1619454489274},{"id":4245,"uid":"8fc34a38-f9eb-402a-bc0d-7df13b364b78","plan":"Student","status":"Idle","payment_method":"Cheque","subscription_term":"Quinquennal","payment_term":"Full subscription","user_id":7983,"dt_current_timestamp":1619454489274},{"id":7586,"uid":"55ae4386-4ead-458f-876d-b16988a846df","plan":"Diamond","status":"Blocked","payment_method":"WeChat Pay","subscription_term":"Weekly","payment_term":"Monthly","user_id":50,"dt_current_timestamp":1619454489274},{"id":923,"uid":"1ee1f038-97b7-456a-8664-c91f995d1e34","plan":"Gold","status":"Blocked","payment_method":"Money transfer","subscription_term":"Monthly","payment_term":"Full subscription","user_id":3459,"dt_current_timestamp":1619454489274},{"id":3821,"uid":"ad1ec484-7691-4811-88a9-28a5bf40c2a9","plan":"Premium","status":"Idle","payment_method":"Google Pay","subscription_term":"Annual","payment_term":"Payment in advance","user_id":8938,"dt_current_timestamp":1619454489274},{"id":2524,"uid":"9bf08249-a673-438b-9016-1ce03a1ffbf6","plan":"Basic","status":"Blocked","payment_method":"Cash","subscription_term":"Daily","payment_term":"Full subscription","user_id":9503,"dt_current_timestamp":1619454489274},{"id":1650,"uid":"e352f1ba-ecd8-4a8d-af1c-3768224e8dcc","plan":"Starter","status":"Idle","payment_method":"Paypal","subscription_term":"Lifetime","payment_term":"Monthly","user_id":3078,"dt_current_timestamp":1619454489274},{"id":5402,"uid":"7b0ea616-c0f8-45bd-bfbb-6b2b072d7900","plan":"Free Trial","status":"Pending","payment_method":"Alipay","subscription_term":"Lifetime","payment_term":"Monthly","user_id":1793,"dt_current_timestamp":1619454489274},{"id":5749,"uid":"a427e1ea-3192-41ae-8a72-68587eb14bff","plan":"Student","status":"Blocked","payment_method":"Money transfer","subscription_term":"Triennal","payment_term":"Payment in advance","user_id":5078,"dt_current_timestamp":1619454489274},{"id":5904,"uid":"cf6ab0eb-b0a3-4973-9843-bfebb7b5db95","plan":"Basic","status":"Idle","payment_method":"Apple Pay","subscription_term":"Weekly","payment_term":"Annual","user_id":6706,"dt_current_timestamp":1619454489274},{"id":1756,"uid":"630aa220-34bf-42d4-acaf-c915009bf8d9","plan":"Starter","status":"Idle","payment_method":"Apple Pay","subscription_term":"Biennal","payment_term":"Full subscription","user_id":1150,"dt_current_timestamp":1619454489274},{"id":8449,"uid":"d5c0a111-d144-42cf-98ac-7b72b38e20d6","plan":"Bronze","status":"Pending","payment_method":"Cash","subscription_term":"Quinquennal","payment_term":"Monthly","user_id":9968,"dt_current_timestamp":1619454489274},{"id":7592,"uid":"c19faa6c-81b9-4310-85d9-ca252a28b6ab","plan":"Basic","status":"Idle","payment_method":"Cheque","subscription_term":"Biennal","payment_term":"Annual","user_id":5432,"dt_current_timestamp":1619454489274},{"id":2483,"uid":"1fc1d339-bc18-493d-b072-9017210ea90c","plan":"Professional","status":"Active","payment_method":"Debit card","subscription_term":"Annual","payment_term":"Full subscription","user_id":1950,"dt_current_timestamp":1619454489274},{"id":4348,"uid":"edb3698d-3e3c-43eb-a5a5-a0df2207f7ef","plan":"Free Trial","status":"Pending","payment_method":"Credit card","subscription_term":"Lifetime","payment_term":"Full subscription","user_id":8572,"dt_current_timestamp":1619454489274},{"id":9778,"uid":"23c7bb7f-eac0-4674-a3c2-946d385541bc","plan":"Standard","status":"Idle","payment_method":"Paypal","subscription_term":"Biennal","payment_term":"Full subscription","user_id":6467,"dt_current_timestamp":1619454489274},{"id":2210,"uid":"8097ada1-8bae-48da-a1bb-b14d512b541f","plan":"Free Trial","status":"Active","payment_method":"Paypal","subscription_term":"Daily","payment_term":"Payment in advance","user_id":4059,"dt_current_timestamp":1619454489274},{"id":6760,"uid":"6c5e5187-a4f9-41b2-b404-c35f00ff467d","plan":"Standard","status":"Idle","payment_method":"Visa checkout","subscription_term":"Annual","payment_term":"Annual","user_id":831,"dt_current_timestamp":1619454489274},{"id":3577,"uid":"db2e78ac-bc3a-4ac9-9a51-f3d13814114e","plan":"Starter","status":"Active","payment_method":"Bitcoins","subscription_term":"Lifetime","payment_term":"Payment in advance","user_id":1608,"dt_current_timestamp":1619454489274},{"id":2015,"uid":"d961cb29-bd7d-4c76-957a-7569d92d84eb","plan":"Student","status":"Active","payment_method":"Credit card","subscription_term":"Monthly","payment_term":"Payment in advance","user_id":2549,"dt_current_timestamp":1619454489274},{"id":5237,"uid":"0b31a36d-179f-4380-b737-3bbbfc7ef984","plan":"Essential","status":"Active","payment_method":"Apple Pay","subscription_term":"Biennal","payment_term":"Monthly","user_id":8831,"dt_current_timestamp":1619454489274},{"id":6316,"uid":"72d93937-863a-4bd4-a2c7-e4ac1fd6e94a","plan":"Free Trial","status":"Blocked","payment_method":"Visa checkout","subscription_term":"Biennal","payment_term":"Payment in advance","user_id":2453,"dt_current_timestamp":1619454489274},{"id":6648,"uid":"27621124-c869-42e0-8ad3-68a712fb9681","plan":"Premium","status":"Pending","payment_method":"WeChat Pay","subscription_term":"Lifetime","payment_term":"Monthly","user_id":154,"dt_current_timestamp":1619454489274},{"id":6801,"uid":"e1de8875-b25c-4efe-b273-26204b9cd78d","plan":"Gold","status":"Active","payment_method":"WeChat Pay","subscription_term":"Triennal","payment_term":"Monthly","user_id":7266,"dt_current_timestamp":1619454489274},{"id":7392,"uid":"1353a58c-7834-4bb5-b419-3e8388b40ada","plan":"Silver","status":"Idle","payment_method":"Debit card","subscription_term":"Triennal","payment_term":"Monthly","user_id":4006,"dt_current_timestamp":1619454489274},{"id":4232,"uid":"3b9507c5-0f51-4d7b-8c91-259fcfbfafa6","plan":"Diamond","status":"Idle","payment_method":"Cheque","subscription_term":"Lifetime","payment_term":"Annual","user_id":8255,"dt_current_timestamp":1619454489274},{"id":8083,"uid":"15e53603-6711-450f-ac7b-58374bf2dfd8","plan":"Diamond","status":"Idle","payment_method":"Cash","subscription_term":"Weekly","payment_term":"Full subscription","user_id":6594,"dt_current_timestamp":1619454489274},{"id":9068,"uid":"f92e79c4-a6ff-4260-b2bc-d530a79c660c","plan":"Business","status":"Pending","payment_method":"WeChat Pay","subscription_term":"Annual","payment_term":"Annual","user_id":3883,"dt_current_timestamp":1619454489274},{"id":1747,"uid":"573d27eb-7cd7-406f-863f-c94bbab82466","plan":"Basic","status":"Blocked","payment_method":"Visa checkout","subscription_term":"Daily","payment_term":"Payment in advance","user_id":7528,"dt_current_timestamp":1619454489274},{"id":6927,"uid":"c90bf612-09ad-4b2b-9592-620e7eaaa1ef","plan":"Platinum","status":"Idle","payment_method":"Bitcoins","subscription_term":"Biennal","payment_term":"Payment in advance","user_id":4483,"dt_current_timestamp":1619454489274},{"id":5870,"uid":"3a8963de-584f-400e-b8fe-00b9f76cb48f","plan":"Premium","status":"Idle","payment_method":"Visa checkout","subscription_term":"Weekly","payment_term":"Annual","user_id":568,"dt_current_timestamp":1619454489274},{"id":3071,"uid":"67fc4c8f-5d6d-40b0-b56d-86b19e3fedfa","plan":"Silver","status":"Active","payment_method":"Bitcoins","subscription_term":"Daily","payment_term":"Annual","user_id":3575,"dt_current_timestamp":1619454489274},{"id":2026,"uid":"5b1da074-dab0-4854-bb76-7bca1c38a9a8","plan":"Essential","status":"Active","payment_method":"Bitcoins","subscription_term":"Triennal","payment_term":"Annual","user_id":7813,"dt_current_timestamp":1619454489274},{"id":986,"uid":"ece86abf-5ed2-429d-af35-bad99784a9fc","plan":"Gold","status":"Active","payment_method":"Apple Pay","subscription_term":"Lifetime","payment_term":"Payment in advance","user_id":3310,"dt_current_timestamp":1619454489274},{"id":8007,"uid":"bb84b0b4-b615-4815-9a57-5cb3e96bdea1","plan":"Free Trial","status":"Idle","payment_method":"Apple Pay","subscription_term":"Annual","payment_term":"Monthly","user_id":5461,"dt_current_timestamp":1619454489274},{"id":3618,"uid":"51e6861d-3e3c-4d21-8699-a7a6dbb2de39","plan":"Bronze","status":"Pending","payment_method":"Apple Pay","subscription_term":"Annual","payment_term":"Annual","user_id":2571,"dt_current_timestamp":1619454489274},{"id":9995,"uid":"cb0ee192-64c3-4c06-8df7-6168fecd9aee","plan":"Gold","status":"Blocked","payment_method":"Alipay","subscription_term":"Monthly","payment_term":"Full subscription","user_id":3605,"dt_current_timestamp":1619454489274},{"id":9934,"uid":"cc7aec33-1cf5-4773-982a-2b52433f0a84","plan":"Platinum","status":"Pending","payment_method":"Apple Pay","subscription_term":"Monthly","payment_term":"Annual","user_id":7497,"dt_current_timestamp":1619454489274},{"id":826,"uid":"cd0d78bf-73e7-46c8-a9e5-dfd96da345ab","plan":"Platinum","status":"Blocked","payment_method":"Alipay","subscription_term":"Monthly","payment_term":"Annual","user_id":8097,"dt_current_timestamp":1619454489274},{"id":6438,"uid":"6f96faa6-702e-43de-9824-4d53383d8367","plan":"Bronze","status":"Idle","payment_method":"Debit card","subscription_term":"Lifetime","payment_term":"Payment in advance","user_id":3016,"dt_current_timestamp":1619454489274},{"id":8128,"uid":"8c7c9a6a-039a-4c42-be80-3c0c67ec34b9","plan":"Standard","status":"Pending","payment_method":"WeChat Pay","subscription_term":"Biennal","payment_term":"Payment in advance","user_id":569,"dt_current_timestamp":1619454489274},{"id":5972,"uid":"1b6a4376-15d0-4e5d-af3f-ff3aceed18b7","plan":"Bronze","status":"Pending","payment_method":"Cash","subscription_term":"Biennal","payment_term":"Full subscription","user_id":7752,"dt_current_timestamp":1619454489274},{"id":2450,"uid":"069dbf4f-6f16-4157-a16b-4db269505c5e","plan":"Essential","status":"Blocked","payment_method":"Debit card","subscription_term":"Weekly","payment_term":"Payment in advance","user_id":9958,"dt_current_timestamp":1619454489274},{"id":348,"uid":"9e1c17cf-0f2d-4038-8e0d-21684cbdaf5a","plan":"Bronze","status":"Idle","payment_method":"WeChat Pay","subscription_term":"Quinquennal","payment_term":"Full subscription","user_id":3247,"dt_current_timestamp":1619454489274},{"id":9736,"uid":"c5f0014f-3e9b-49f6-8ac2-622cb2def31a","plan":"Silver","status":"Idle","payment_method":"Bitcoins","subscription_term":"Annual","payment_term":"Full subscription","user_id":2721,"dt_current_timestamp":1619454489274},{"id":1914,"uid":"58e76445-e2ed-4b3e-a718-57b673541e7e","plan":"Starter","status":"Pending","payment_method":"Visa checkout","subscription_term":"Triennal","payment_term":"Annual","user_id":5229,"dt_current_timestamp":1619454489274},{"id":5949,"uid":"051a676f-f5f6-4e5f-9a9a-37f52d25fd20","plan":"Essential","status":"Pending","payment_method":"Credit card","subscription_term":"Monthly","payment_term":"Monthly","user_id":1498,"dt_current_timestamp":1619454489274},{"id":2567,"uid":"4ea7ab32-b65e-4b65-8066-629b74d3fd36","plan":"Free Trial","status":"Active","payment_method":"Google Pay","subscription_term":"Annual","payment_term":"Annual","user_id":5771,"dt_current_timestamp":1619454489274},{"id":3454,"uid":"bc12dd0d-fd30-418b-bc33-00191587c649","plan":"Starter","status":"Pending","payment_method":"Google Pay","subscription_term":"Annual","payment_term":"Payment in advance","user_id":4033,"dt_current_timestamp":1619454489274},{"id":2099,"uid":"c62e3f6e-3e71-49e5-9b8b-7bd414566b28","plan":"Silver","status":"Active","payment_method":"Debit card","subscription_term":"Weekly","payment_term":"Payment in advance","user_id":8219,"dt_current_timestamp":1619454489274}]
--------------------------------------------------------------------------------
/datalake/landing/subscription/subscription_2021_4_26_16_29_19.json:
--------------------------------------------------------------------------------
1 | [{"id":720,"uid":"506c91b6-2d49-4f42-88cf-a89ef100d7e1","plan":"Essential","status":"Idle","payment_method":"Paypal","subscription_term":"Lifetime","payment_term":"Payment in advance","user_id":8617,"dt_current_timestamp":1619454561221},{"id":1686,"uid":"1b7afe0a-a5af-472d-8865-bcf04e0619ba","plan":"Professional","status":"Pending","payment_method":"Bitcoins","subscription_term":"Biennal","payment_term":"Annual","user_id":2998,"dt_current_timestamp":1619454561221},{"id":1201,"uid":"bf6e263e-c2e3-45ee-9cc1-2ff300bd0a7f","plan":"Essential","status":"Pending","payment_method":"Bitcoins","subscription_term":"Annual","payment_term":"Monthly","user_id":2085,"dt_current_timestamp":1619454561221},{"id":6281,"uid":"f17507e0-ea8b-4fc7-9652-b10f00b457ed","plan":"Student","status":"Blocked","payment_method":"Cheque","subscription_term":"Monthly","payment_term":"Annual","user_id":7502,"dt_current_timestamp":1619454561221},{"id":6389,"uid":"170fbf2d-9ba6-4d02-a7d3-41f822c3fa62","plan":"Premium","status":"Pending","payment_method":"Bitcoins","subscription_term":"Monthly","payment_term":"Payment in advance","user_id":8816,"dt_current_timestamp":1619454561221},{"id":1846,"uid":"751a71cc-2e77-414a-87d8-95132e1985e6","plan":"Platinum","status":"Active","payment_method":"WeChat Pay","subscription_term":"Monthly","payment_term":"Monthly","user_id":6189,"dt_current_timestamp":1619454561221},{"id":1518,"uid":"c0daf6df-04cf-480d-a690-48c1c5c87a22","plan":"Diamond","status":"Blocked","payment_method":"Google Pay","subscription_term":"Annual","payment_term":"Annual","user_id":1167,"dt_current_timestamp":1619454561221},{"id":9986,"uid":"8e57964f-45b5-4a47-9712-c1cef6ada39a","plan":"Student","status":"Pending","payment_method":"Paypal","subscription_term":"Quinquennal","payment_term":"Annual","user_id":6988,"dt_current_timestamp":1619454561221},{"id":875,"uid":"44569a1a-9b67-4d6e-97d7-cb90e089389c","plan":"Basic","status":"Pending","payment_method":"Google Pay","subscription_term":"Biennal","payment_term":"Annual","user_id":6687,"dt_current_timestamp":1619454561221},{"id":9551,"uid":"3612a0c8-9916-4eb4-8868-77e6c4d41711","plan":"Silver","status":"Blocked","payment_method":"Alipay","subscription_term":"Annual","payment_term":"Monthly","user_id":477,"dt_current_timestamp":1619454561221},{"id":7121,"uid":"36bc9788-a937-4366-a14e-32b5779d0d23","plan":"Silver","status":"Idle","payment_method":"Debit card","subscription_term":"Triennal","payment_term":"Payment in advance","user_id":7823,"dt_current_timestamp":1619454561221},{"id":3935,"uid":"3a60ab51-7a4e-4b35-90e2-0407a1e90181","plan":"Bronze","status":"Blocked","payment_method":"WeChat Pay","subscription_term":"Lifetime","payment_term":"Monthly","user_id":3021,"dt_current_timestamp":1619454561221},{"id":6370,"uid":"2c64178d-0b42-4361-88c9-4c6c2803767e","plan":"Essential","status":"Blocked","payment_method":"Credit card","subscription_term":"Daily","payment_term":"Full subscription","user_id":6181,"dt_current_timestamp":1619454561221},{"id":8420,"uid":"4cc737fc-5024-4fc4-8a4b-745f769179ce","plan":"Premium","status":"Active","payment_method":"Money transfer","subscription_term":"Daily","payment_term":"Monthly","user_id":6329,"dt_current_timestamp":1619454561221},{"id":9011,"uid":"0d377d1d-0cb4-467e-b18d-7da1409bb32c","plan":"Platinum","status":"Pending","payment_method":"Cheque","subscription_term":"Monthly","payment_term":"Payment in advance","user_id":8693,"dt_current_timestamp":1619454561221},{"id":99,"uid":"ecd3401a-617f-42ae-b798-da57aa414f3a","plan":"Starter","status":"Active","payment_method":"Debit card","subscription_term":"Daily","payment_term":"Payment in advance","user_id":853,"dt_current_timestamp":1619454561221},{"id":6173,"uid":"8721376c-4820-4217-83db-e025c7c58175","plan":"Platinum","status":"Idle","payment_method":"Visa checkout","subscription_term":"Weekly","payment_term":"Annual","user_id":2576,"dt_current_timestamp":1619454561221},{"id":3814,"uid":"1991bdad-4ac7-4ffe-a54d-4804679919d3","plan":"Essential","status":"Active","payment_method":"Bitcoins","subscription_term":"Quinquennal","payment_term":"Monthly","user_id":4452,"dt_current_timestamp":1619454561221},{"id":6417,"uid":"ff4a7a29-c476-47b5-93cb-2475ad3c0dc7","plan":"Free Trial","status":"Active","payment_method":"Bitcoins","subscription_term":"Annual","payment_term":"Full subscription","user_id":1853,"dt_current_timestamp":1619454561221},{"id":9722,"uid":"f1ccbba0-7c07-406c-a095-a08cb357b9ec","plan":"Starter","status":"Pending","payment_method":"Money transfer","subscription_term":"Weekly","payment_term":"Payment in advance","user_id":6857,"dt_current_timestamp":1619454561221},{"id":1559,"uid":"856aefe5-05d8-4524-a2e1-aa1cff5b8843","plan":"Student","status":"Idle","payment_method":"Google Pay","subscription_term":"Daily","payment_term":"Full subscription","user_id":5345,"dt_current_timestamp":1619454561221},{"id":3906,"uid":"2e595937-c4ae-4b82-9131-27912018b872","plan":"Silver","status":"Blocked","payment_method":"Cash","subscription_term":"Weekly","payment_term":"Monthly","user_id":8127,"dt_current_timestamp":1619454561221},{"id":8464,"uid":"c23014c1-d7b9-41bd-830b-a8b79a9182cd","plan":"Bronze","status":"Active","payment_method":"Apple Pay","subscription_term":"Lifetime","payment_term":"Full subscription","user_id":7193,"dt_current_timestamp":1619454561221},{"id":9089,"uid":"d3f29ff5-ec29-49fb-89a5-705646e9b4b0","plan":"Professional","status":"Blocked","payment_method":"Google Pay","subscription_term":"Daily","payment_term":"Monthly","user_id":7995,"dt_current_timestamp":1619454561221},{"id":116,"uid":"963aade2-f1e0-4489-9ee0-36ec29d50555","plan":"Essential","status":"Idle","payment_method":"Cash","subscription_term":"Annual","payment_term":"Payment in advance","user_id":6174,"dt_current_timestamp":1619454561221},{"id":1575,"uid":"c7fcb99e-b275-43c5-8171-5ecb668aae1a","plan":"Diamond","status":"Blocked","payment_method":"Apple Pay","subscription_term":"Annual","payment_term":"Monthly","user_id":6406,"dt_current_timestamp":1619454561221},{"id":5364,"uid":"211386ad-45f2-4d09-b225-0a8c929809d5","plan":"Starter","status":"Active","payment_method":"Alipay","subscription_term":"Triennal","payment_term":"Full subscription","user_id":6053,"dt_current_timestamp":1619454561221},{"id":490,"uid":"d2883cb2-c1bc-40c4-a088-89ba1d153084","plan":"Professional","status":"Active","payment_method":"Cheque","subscription_term":"Daily","payment_term":"Full subscription","user_id":8421,"dt_current_timestamp":1619454561221},{"id":5458,"uid":"43d8e2db-4fc4-41e1-b26b-6cc3bda308a1","plan":"Essential","status":"Active","payment_method":"Money transfer","subscription_term":"Daily","payment_term":"Full subscription","user_id":3627,"dt_current_timestamp":1619454561221},{"id":7911,"uid":"d22cd809-fc89-46fa-8be6-c6b0d149304b","plan":"Platinum","status":"Active","payment_method":"Paypal","subscription_term":"Quinquennal","payment_term":"Annual","user_id":3637,"dt_current_timestamp":1619454561221},{"id":7607,"uid":"f167e54b-cde6-4073-8d6f-86e6488304ac","plan":"Gold","status":"Active","payment_method":"Cheque","subscription_term":"Monthly","payment_term":"Monthly","user_id":9330,"dt_current_timestamp":1619454561221},{"id":5188,"uid":"8eb0299a-e3f1-4a74-8b96-a2761fd38f7f","plan":"Silver","status":"Blocked","payment_method":"Paypal","subscription_term":"Triennal","payment_term":"Annual","user_id":1124,"dt_current_timestamp":1619454561221},{"id":3425,"uid":"c57801c0-725b-4942-a61f-9ff26da9263a","plan":"Bronze","status":"Pending","payment_method":"Paypal","subscription_term":"Daily","payment_term":"Monthly","user_id":6413,"dt_current_timestamp":1619454561221},{"id":2264,"uid":"76a09db0-2b2c-463c-9f6a-7427c6bf22cc","plan":"Gold","status":"Blocked","payment_method":"Cheque","subscription_term":"Quinquennal","payment_term":"Monthly","user_id":4923,"dt_current_timestamp":1619454561221},{"id":821,"uid":"7079e46b-a6b6-4ec1-96b3-d2da5e6e8c95","plan":"Basic","status":"Active","payment_method":"Cheque","subscription_term":"Biennal","payment_term":"Full subscription","user_id":1504,"dt_current_timestamp":1619454561221},{"id":340,"uid":"b5351b2c-90f6-4aa5-a63b-827e8f8d69bc","plan":"Gold","status":"Idle","payment_method":"Cheque","subscription_term":"Daily","payment_term":"Annual","user_id":8339,"dt_current_timestamp":1619454561221},{"id":9194,"uid":"a7c493f5-2827-4202-908b-0a4a2038f39f","plan":"Free Trial","status":"Active","payment_method":"Apple Pay","subscription_term":"Monthly","payment_term":"Annual","user_id":5379,"dt_current_timestamp":1619454561221},{"id":144,"uid":"f672a5a7-71aa-4f7b-8d1d-23ffcda8f0c0","plan":"Gold","status":"Blocked","payment_method":"Cash","subscription_term":"Weekly","payment_term":"Full subscription","user_id":1435,"dt_current_timestamp":1619454561221},{"id":7388,"uid":"47b9c723-b0dd-45fa-a930-55ab0139fe15","plan":"Essential","status":"Active","payment_method":"WeChat Pay","subscription_term":"Annual","payment_term":"Full subscription","user_id":5366,"dt_current_timestamp":1619454561221},{"id":3512,"uid":"4fb401e1-e652-4619-ac57-427716173b53","plan":"Gold","status":"Active","payment_method":"Alipay","subscription_term":"Quinquennal","payment_term":"Full subscription","user_id":962,"dt_current_timestamp":1619454561221},{"id":6211,"uid":"15a56926-2716-4f20-892c-a119f04f387f","plan":"Free Trial","status":"Pending","payment_method":"Credit card","subscription_term":"Daily","payment_term":"Full subscription","user_id":7731,"dt_current_timestamp":1619454561221},{"id":2364,"uid":"40c00ca9-2b88-40df-9f8b-89eacd8f4114","plan":"Standard","status":"Pending","payment_method":"Visa checkout","subscription_term":"Monthly","payment_term":"Annual","user_id":2436,"dt_current_timestamp":1619454561221},{"id":9028,"uid":"f08a7856-78ce-4f01-8221-fac249e49089","plan":"Silver","status":"Pending","payment_method":"Cheque","subscription_term":"Quinquennal","payment_term":"Monthly","user_id":2753,"dt_current_timestamp":1619454561221},{"id":9302,"uid":"b4c5caa3-3d5e-4790-af4c-5ea195323c0b","plan":"Starter","status":"Idle","payment_method":"Cash","subscription_term":"Weekly","payment_term":"Payment in advance","user_id":629,"dt_current_timestamp":1619454561221},{"id":3551,"uid":"34ed0735-e0c7-4563-a45f-22bd04e7b321","plan":"Platinum","status":"Blocked","payment_method":"Cheque","subscription_term":"Triennal","payment_term":"Annual","user_id":8581,"dt_current_timestamp":1619454561221},{"id":7350,"uid":"d9a17067-0c3d-4ec4-a470-3d8166b5a3b7","plan":"Basic","status":"Pending","payment_method":"Debit card","subscription_term":"Triennal","payment_term":"Annual","user_id":1717,"dt_current_timestamp":1619454561221},{"id":8665,"uid":"3564159e-f068-4448-9900-ac14d35fec96","plan":"Gold","status":"Idle","payment_method":"Google Pay","subscription_term":"Monthly","payment_term":"Payment in advance","user_id":2540,"dt_current_timestamp":1619454561221},{"id":3194,"uid":"571149fb-d43c-40e8-8c6d-ab124ea10744","plan":"Bronze","status":"Blocked","payment_method":"Paypal","subscription_term":"Daily","payment_term":"Full subscription","user_id":765,"dt_current_timestamp":1619454561221},{"id":9988,"uid":"ddb134b6-3f15-402d-a157-0737ef787379","plan":"Standard","status":"Pending","payment_method":"Credit card","subscription_term":"Triennal","payment_term":"Annual","user_id":7468,"dt_current_timestamp":1619454561221},{"id":3223,"uid":"0ccce150-961c-4b55-b5d6-5554542ff16a","plan":"Platinum","status":"Idle","payment_method":"Apple Pay","subscription_term":"Daily","payment_term":"Payment in advance","user_id":5626,"dt_current_timestamp":1619454561221},{"id":3330,"uid":"a384e2ca-42d0-4660-be6e-eb5eade9a726","plan":"Business","status":"Active","payment_method":"Money transfer","subscription_term":"Lifetime","payment_term":"Full subscription","user_id":6529,"dt_current_timestamp":1619454561221},{"id":5084,"uid":"37459160-8986-4170-aed4-bc0d95a053ca","plan":"Starter","status":"Pending","payment_method":"Cash","subscription_term":"Lifetime","payment_term":"Monthly","user_id":9991,"dt_current_timestamp":1619454561221},{"id":5823,"uid":"dcee8f0e-9a57-4297-83f5-1f6cd6bcc46b","plan":"Platinum","status":"Active","payment_method":"Money transfer","subscription_term":"Daily","payment_term":"Payment in advance","user_id":6114,"dt_current_timestamp":1619454561221},{"id":5613,"uid":"918864d8-8167-4c72-99d4-8c04e7c7adef","plan":"Bronze","status":"Pending","payment_method":"Bitcoins","subscription_term":"Lifetime","payment_term":"Payment in advance","user_id":7754,"dt_current_timestamp":1619454561221},{"id":2394,"uid":"ba71cb07-d8ad-4c1a-9cf8-7c3ff82ec06f","plan":"Bronze","status":"Blocked","payment_method":"Debit card","subscription_term":"Weekly","payment_term":"Annual","user_id":800,"dt_current_timestamp":1619454561221},{"id":8735,"uid":"6ebfd41b-3a69-43f1-ad5d-38f32a68be17","plan":"Standard","status":"Idle","payment_method":"Visa checkout","subscription_term":"Triennal","payment_term":"Full subscription","user_id":4621,"dt_current_timestamp":1619454561221},{"id":3035,"uid":"e9bcc635-ebf6-4de4-b21f-5c1d3f225745","plan":"Bronze","status":"Active","payment_method":"Apple Pay","subscription_term":"Annual","payment_term":"Full subscription","user_id":6573,"dt_current_timestamp":1619454561221},{"id":6869,"uid":"690c83b2-575a-402c-b195-c7c4561bdde2","plan":"Business","status":"Blocked","payment_method":"Paypal","subscription_term":"Triennal","payment_term":"Full subscription","user_id":4329,"dt_current_timestamp":1619454561221},{"id":7324,"uid":"e7b22698-abe9-44d1-a122-8f9aa0bb9f2f","plan":"Platinum","status":"Pending","payment_method":"Google Pay","subscription_term":"Monthly","payment_term":"Monthly","user_id":4397,"dt_current_timestamp":1619454561221},{"id":8156,"uid":"aac9ae31-a34a-466c-b81c-ef467fbc52e7","plan":"Basic","status":"Idle","payment_method":"Alipay","subscription_term":"Triennal","payment_term":"Annual","user_id":2309,"dt_current_timestamp":1619454561221},{"id":1074,"uid":"61681728-d35b-49cc-bf22-3bbaad9ddbba","plan":"Platinum","status":"Active","payment_method":"Alipay","subscription_term":"Lifetime","payment_term":"Monthly","user_id":5126,"dt_current_timestamp":1619454561221},{"id":1615,"uid":"54a33d1e-fa29-46ee-8849-093793401d55","plan":"Starter","status":"Blocked","payment_method":"Debit card","subscription_term":"Monthly","payment_term":"Monthly","user_id":2523,"dt_current_timestamp":1619454561221},{"id":9588,"uid":"a7e41b2f-3a01-4cf1-862c-f19c766d7f2b","plan":"Business","status":"Active","payment_method":"Paypal","subscription_term":"Annual","payment_term":"Full subscription","user_id":5297,"dt_current_timestamp":1619454561221},{"id":3579,"uid":"a038ab9e-6ae0-4506-9bdf-e71fac766273","plan":"Essential","status":"Active","payment_method":"Credit card","subscription_term":"Triennal","payment_term":"Payment in advance","user_id":610,"dt_current_timestamp":1619454561221},{"id":1931,"uid":"0f8c8691-dc47-46c8-aff0-34c266a044e7","plan":"Standard","status":"Idle","payment_method":"Debit card","subscription_term":"Lifetime","payment_term":"Payment in advance","user_id":2914,"dt_current_timestamp":1619454561221},{"id":1049,"uid":"53dde8dd-e13a-4adc-9a4d-09d9af5ce6e8","plan":"Business","status":"Idle","payment_method":"Visa checkout","subscription_term":"Quinquennal","payment_term":"Payment in advance","user_id":8383,"dt_current_timestamp":1619454561221},{"id":9253,"uid":"e1f5201b-3c09-4c67-8d8f-3293a8371f59","plan":"Diamond","status":"Pending","payment_method":"Paypal","subscription_term":"Quinquennal","payment_term":"Payment in advance","user_id":1176,"dt_current_timestamp":1619454561221},{"id":2582,"uid":"303bbde2-83e8-4ed7-907d-971e618dc01c","plan":"Standard","status":"Blocked","payment_method":"Paypal","subscription_term":"Quinquennal","payment_term":"Monthly","user_id":3860,"dt_current_timestamp":1619454561221},{"id":9694,"uid":"a7fb5ed3-d96e-4a5c-a756-e1d9f1ed3579","plan":"Starter","status":"Idle","payment_method":"Visa checkout","subscription_term":"Triennal","payment_term":"Monthly","user_id":1960,"dt_current_timestamp":1619454561221},{"id":2663,"uid":"6772f67d-6861-475a-a4dc-2a0f20035e52","plan":"Standard","status":"Active","payment_method":"Visa checkout","subscription_term":"Biennal","payment_term":"Payment in advance","user_id":68,"dt_current_timestamp":1619454561221},{"id":565,"uid":"1f551ccf-4453-4840-9c2e-169b7fcbaefd","plan":"Student","status":"Idle","payment_method":"Alipay","subscription_term":"Quinquennal","payment_term":"Payment in advance","user_id":4248,"dt_current_timestamp":1619454561221},{"id":1153,"uid":"ce07f03e-66dc-455c-819f-d048671ac861","plan":"Starter","status":"Active","payment_method":"Paypal","subscription_term":"Annual","payment_term":"Annual","user_id":9432,"dt_current_timestamp":1619454561221},{"id":674,"uid":"580a222a-4343-4135-ab78-96b1e75d0943","plan":"Bronze","status":"Pending","payment_method":"Cheque","subscription_term":"Lifetime","payment_term":"Annual","user_id":3904,"dt_current_timestamp":1619454561221},{"id":2238,"uid":"9a16f244-2320-4631-9416-bc9ff061c8ff","plan":"Student","status":"Blocked","payment_method":"Debit card","subscription_term":"Weekly","payment_term":"Full subscription","user_id":4440,"dt_current_timestamp":1619454561221},{"id":8776,"uid":"182432ab-1c0d-4041-944c-7e8dd212ce23","plan":"Platinum","status":"Active","payment_method":"Cheque","subscription_term":"Lifetime","payment_term":"Payment in advance","user_id":2687,"dt_current_timestamp":1619454561221},{"id":8485,"uid":"b01eda0e-0c11-489c-b202-78d4396ed7ce","plan":"Professional","status":"Blocked","payment_method":"Google Pay","subscription_term":"Monthly","payment_term":"Monthly","user_id":1924,"dt_current_timestamp":1619454561221},{"id":8503,"uid":"7698a04f-7869-46d5-9798-a50566c0bfc6","plan":"Gold","status":"Active","payment_method":"WeChat Pay","subscription_term":"Quinquennal","payment_term":"Monthly","user_id":3632,"dt_current_timestamp":1619454561221},{"id":7579,"uid":"84f53210-c78e-47d7-abb3-1c986df6ab76","plan":"Business","status":"Active","payment_method":"Debit card","subscription_term":"Biennal","payment_term":"Payment in advance","user_id":6223,"dt_current_timestamp":1619454561221},{"id":6020,"uid":"9c8c3870-6955-4835-af0a-e1ccfd75a55c","plan":"Gold","status":"Blocked","payment_method":"Visa checkout","subscription_term":"Biennal","payment_term":"Annual","user_id":4009,"dt_current_timestamp":1619454561221},{"id":3616,"uid":"91633573-1485-43be-b36f-20b4375c66b9","plan":"Gold","status":"Blocked","payment_method":"Paypal","subscription_term":"Weekly","payment_term":"Payment in advance","user_id":8404,"dt_current_timestamp":1619454561221},{"id":6271,"uid":"f418395f-4b6c-4cbb-a9a1-9bf801275b40","plan":"Student","status":"Pending","payment_method":"Cheque","subscription_term":"Quinquennal","payment_term":"Monthly","user_id":3930,"dt_current_timestamp":1619454561221},{"id":1644,"uid":"f7978c24-54a7-4dd4-81ab-7df5b45a96fe","plan":"Gold","status":"Active","payment_method":"Alipay","subscription_term":"Quinquennal","payment_term":"Monthly","user_id":5650,"dt_current_timestamp":1619454561221},{"id":1183,"uid":"a437cffb-ef7e-4e1c-b0ca-c49b0295fe0b","plan":"Starter","status":"Blocked","payment_method":"Paypal","subscription_term":"Monthly","payment_term":"Payment in advance","user_id":3262,"dt_current_timestamp":1619454561221},{"id":9114,"uid":"b262757e-d3ad-4d6e-b5f2-171b4f828836","plan":"Basic","status":"Idle","payment_method":"Visa checkout","subscription_term":"Daily","payment_term":"Annual","user_id":6178,"dt_current_timestamp":1619454561221},{"id":7825,"uid":"3b06f8c3-af70-4084-b231-1e20b6f2e251","plan":"Diamond","status":"Active","payment_method":"Cheque","subscription_term":"Monthly","payment_term":"Full subscription","user_id":8187,"dt_current_timestamp":1619454561221},{"id":3608,"uid":"0eb1137d-8adb-4d6d-b93e-04c7c38e4f0f","plan":"Professional","status":"Idle","payment_method":"Money transfer","subscription_term":"Daily","payment_term":"Monthly","user_id":2076,"dt_current_timestamp":1619454561221},{"id":5852,"uid":"a7dc921c-94e3-4d40-b446-67c8337fe611","plan":"Bronze","status":"Pending","payment_method":"Credit card","subscription_term":"Triennal","payment_term":"Annual","user_id":5153,"dt_current_timestamp":1619454561221},{"id":970,"uid":"fed71e24-6a83-4adb-8c4e-24a28e79893b","plan":"Essential","status":"Active","payment_method":"Credit card","subscription_term":"Daily","payment_term":"Monthly","user_id":7015,"dt_current_timestamp":1619454561221},{"id":5182,"uid":"7f1b7354-1bcf-4a5b-bf92-0cc85bd41984","plan":"Basic","status":"Pending","payment_method":"Money transfer","subscription_term":"Weekly","payment_term":"Annual","user_id":5005,"dt_current_timestamp":1619454561221},{"id":4830,"uid":"d57cb129-f255-4481-8060-40c96b55cfd9","plan":"Student","status":"Idle","payment_method":"Apple Pay","subscription_term":"Annual","payment_term":"Monthly","user_id":4750,"dt_current_timestamp":1619454561221},{"id":5593,"uid":"f2b7d313-4c64-4480-8aa2-02d77839c05b","plan":"Professional","status":"Blocked","payment_method":"Apple Pay","subscription_term":"Lifetime","payment_term":"Full subscription","user_id":5852,"dt_current_timestamp":1619454561221},{"id":5696,"uid":"04490ffc-00c2-49c9-9f81-14e5c5303304","plan":"Standard","status":"Blocked","payment_method":"Cheque","subscription_term":"Weekly","payment_term":"Annual","user_id":6242,"dt_current_timestamp":1619454561221},{"id":4602,"uid":"caeb0bea-3a55-4112-9d54-5a5dd8942710","plan":"Free Trial","status":"Idle","payment_method":"Bitcoins","subscription_term":"Biennal","payment_term":"Full subscription","user_id":30,"dt_current_timestamp":1619454561221},{"id":294,"uid":"9faa8433-640d-43bc-abf5-285400f9e3ca","plan":"Essential","status":"Active","payment_method":"Credit card","subscription_term":"Biennal","payment_term":"Annual","user_id":5572,"dt_current_timestamp":1619454561221},{"id":7258,"uid":"db5b917e-85ce-457a-81ab-79be22e7f8f7","plan":"Platinum","status":"Blocked","payment_method":"Visa checkout","subscription_term":"Weekly","payment_term":"Payment in advance","user_id":2244,"dt_current_timestamp":1619454561221},{"id":2647,"uid":"817f5872-d4e8-40a9-9be4-d900793c149a","plan":"Gold","status":"Idle","payment_method":"Cash","subscription_term":"Monthly","payment_term":"Payment in advance","user_id":4786,"dt_current_timestamp":1619454561221},{"id":2411,"uid":"7d893bcc-9224-47bd-a8ee-0e2f0f862289","plan":"Gold","status":"Active","payment_method":"Debit card","subscription_term":"Weekly","payment_term":"Annual","user_id":3781,"dt_current_timestamp":1619454561221},{"id":3533,"uid":"2f8d8883-d5b1-480f-9916-1bdc6c7be4b3","plan":"Essential","status":"Idle","payment_method":"Google Pay","subscription_term":"Annual","payment_term":"Payment in advance","user_id":8180,"dt_current_timestamp":1619454561221},{"id":5858,"uid":"46b46e22-7c38-4a7d-955c-2a7a05780f81","plan":"Standard","status":"Pending","payment_method":"Google Pay","subscription_term":"Weekly","payment_term":"Full subscription","user_id":4771,"dt_current_timestamp":1619454561221},{"id":6899,"uid":"8aa4b953-afd9-41bb-b662-c06d7662f828","plan":"Premium","status":"Blocked","payment_method":"Cheque","subscription_term":"Weekly","payment_term":"Monthly","user_id":4281,"dt_current_timestamp":1619454561221}]
--------------------------------------------------------------------------------
/datalake/landing/subscription/subscription_2021_5_18_15_36_29.json:
--------------------------------------------------------------------------------
1 | [{"id":2500,"uid":"2ace319d-ead7-4759-af2c-7ea70a40051d","plan":"Professional","status":"Blocked","payment_method":"Bitcoins","subscription_term":"Weekly","payment_term":"Monthly","user_id":5813,"dt_current_timestamp":1621352190559},{"id":593,"uid":"8d4f0acb-f7a6-42ea-adab-3b7642ad8b05","plan":"Diamond","status":"Pending","payment_method":"Credit card","subscription_term":"Monthly","payment_term":"Payment in advance","user_id":291,"dt_current_timestamp":1621352190559},{"id":2423,"uid":"e2b64a22-963f-4f12-abbb-6d70c5787f4b","plan":"Platinum","status":"Active","payment_method":"Credit card","subscription_term":"Annual","payment_term":"Payment in advance","user_id":5093,"dt_current_timestamp":1621352190559},{"id":6874,"uid":"89ad7d27-f9e2-4524-9382-7e8c3e7de0d6","plan":"Standard","status":"Blocked","payment_method":"Money transfer","subscription_term":"Lifetime","payment_term":"Full subscription","user_id":6439,"dt_current_timestamp":1621352190559},{"id":706,"uid":"3df179f0-fbc4-46e2-a8a8-f32a733c0ec1","plan":"Business","status":"Active","payment_method":"Google Pay","subscription_term":"Triennal","payment_term":"Payment in advance","user_id":4307,"dt_current_timestamp":1621352190559},{"id":7491,"uid":"3a6d0180-f9e1-43c9-9927-fcfd924f7c51","plan":"Starter","status":"Active","payment_method":"WeChat Pay","subscription_term":"Daily","payment_term":"Annual","user_id":776,"dt_current_timestamp":1621352190559},{"id":3564,"uid":"c1d2f666-33ed-456c-9e8d-164466a26408","plan":"Silver","status":"Pending","payment_method":"Debit card","subscription_term":"Monthly","payment_term":"Full subscription","user_id":4285,"dt_current_timestamp":1621352190559},{"id":9809,"uid":"f6e00499-68d1-41c6-a13a-bc1148e7c712","plan":"Essential","status":"Blocked","payment_method":"Credit card","subscription_term":"Daily","payment_term":"Payment in advance","user_id":8244,"dt_current_timestamp":1621352190559},{"id":3886,"uid":"80f36c9a-864f-4ee5-a772-bf2889a56ae2","plan":"Essential","status":"Pending","payment_method":"Bitcoins","subscription_term":"Daily","payment_term":"Annual","user_id":241,"dt_current_timestamp":1621352190559},{"id":1030,"uid":"ff36c678-6f9b-46c6-a019-6f3264cdb9fd","plan":"Essential","status":"Idle","payment_method":"Google Pay","subscription_term":"Biennal","payment_term":"Full subscription","user_id":5003,"dt_current_timestamp":1621352190559},{"id":24,"uid":"eb54b0aa-99a1-4ede-8c17-2b9f747b0b90","plan":"Platinum","status":"Active","payment_method":"WeChat Pay","subscription_term":"Quinquennal","payment_term":"Monthly","user_id":7383,"dt_current_timestamp":1621352190559},{"id":6130,"uid":"8ec806a7-157f-4dfc-b583-3308f18c0286","plan":"Silver","status":"Active","payment_method":"Credit card","subscription_term":"Annual","payment_term":"Monthly","user_id":1744,"dt_current_timestamp":1621352190559},{"id":8556,"uid":"06690d03-e09a-4a9d-a5f8-226eedfd162b","plan":"Basic","status":"Blocked","payment_method":"Bitcoins","subscription_term":"Triennal","payment_term":"Payment in advance","user_id":8780,"dt_current_timestamp":1621352190559},{"id":3494,"uid":"324507cc-0f0f-4211-9d70-6018b4117efc","plan":"Platinum","status":"Idle","payment_method":"Google Pay","subscription_term":"Annual","payment_term":"Payment in advance","user_id":8474,"dt_current_timestamp":1621352190559},{"id":7348,"uid":"cabc6a2d-142b-4bd1-b75e-b6fad592de13","plan":"Free Trial","status":"Pending","payment_method":"Credit card","subscription_term":"Quinquennal","payment_term":"Full subscription","user_id":9051,"dt_current_timestamp":1621352190559},{"id":7646,"uid":"885c84c8-2b31-4bc8-947d-62ac025828b1","plan":"Platinum","status":"Pending","payment_method":"Debit card","subscription_term":"Weekly","payment_term":"Full subscription","user_id":8571,"dt_current_timestamp":1621352190559},{"id":3562,"uid":"3c6205e7-cc06-44a3-8721-488876babe2e","plan":"Essential","status":"Idle","payment_method":"Cheque","subscription_term":"Quinquennal","payment_term":"Monthly","user_id":2427,"dt_current_timestamp":1621352190559},{"id":1692,"uid":"49c5a37d-2cf2-48c0-83da-df7b15c15158","plan":"Premium","status":"Active","payment_method":"Cheque","subscription_term":"Biennal","payment_term":"Annual","user_id":7510,"dt_current_timestamp":1621352190559},{"id":7964,"uid":"e5b0a6ff-8238-433f-8f09-eb0f2616adca","plan":"Starter","status":"Idle","payment_method":"Google Pay","subscription_term":"Weekly","payment_term":"Full subscription","user_id":8695,"dt_current_timestamp":1621352190559},{"id":9386,"uid":"d2213ef1-b96a-4be3-8567-8112a88cc797","plan":"Student","status":"Blocked","payment_method":"Alipay","subscription_term":"Daily","payment_term":"Full subscription","user_id":5687,"dt_current_timestamp":1621352190559},{"id":9587,"uid":"cf3ece42-2202-4272-8ec0-f8539fff24b6","plan":"Professional","status":"Pending","payment_method":"Bitcoins","subscription_term":"Biennal","payment_term":"Payment in advance","user_id":2683,"dt_current_timestamp":1621352190559},{"id":6793,"uid":"23ae9c82-5938-4587-81e4-52fa453ffa40","plan":"Platinum","status":"Idle","payment_method":"Credit card","subscription_term":"Quinquennal","payment_term":"Annual","user_id":9033,"dt_current_timestamp":1621352190559},{"id":3680,"uid":"297d023a-d6dd-4e4d-b202-fba67d4e2d92","plan":"Bronze","status":"Idle","payment_method":"Paypal","subscription_term":"Quinquennal","payment_term":"Monthly","user_id":4690,"dt_current_timestamp":1621352190559},{"id":6188,"uid":"dc2ea389-abe1-446b-acb2-f8e74df8a1b7","plan":"Starter","status":"Idle","payment_method":"Apple Pay","subscription_term":"Weekly","payment_term":"Monthly","user_id":7477,"dt_current_timestamp":1621352190559},{"id":1751,"uid":"d3bb1d98-14d7-4a41-89f5-0b26240f65eb","plan":"Platinum","status":"Idle","payment_method":"WeChat Pay","subscription_term":"Weekly","payment_term":"Full subscription","user_id":2514,"dt_current_timestamp":1621352190559},{"id":8475,"uid":"0a7be104-2e34-47c7-919c-098dd82257b2","plan":"Platinum","status":"Idle","payment_method":"Google Pay","subscription_term":"Weekly","payment_term":"Full subscription","user_id":8776,"dt_current_timestamp":1621352190559},{"id":5292,"uid":"a597b83e-c1ed-44d7-a70c-9d80ec005430","plan":"Gold","status":"Blocked","payment_method":"Paypal","subscription_term":"Biennal","payment_term":"Annual","user_id":4221,"dt_current_timestamp":1621352190559},{"id":4593,"uid":"c0c00ae6-fd28-4579-bbc4-77ca6eafb039","plan":"Business","status":"Active","payment_method":"Visa checkout","subscription_term":"Biennal","payment_term":"Monthly","user_id":7585,"dt_current_timestamp":1621352190559},{"id":3800,"uid":"4ddb0867-d76d-45ee-8069-a27924cf41c6","plan":"Starter","status":"Active","payment_method":"Visa checkout","subscription_term":"Biennal","payment_term":"Full subscription","user_id":5755,"dt_current_timestamp":1621352190559},{"id":2393,"uid":"f90a0555-9cb6-4bfc-8ebb-501d931bfa6b","plan":"Professional","status":"Idle","payment_method":"Cash","subscription_term":"Daily","payment_term":"Annual","user_id":7553,"dt_current_timestamp":1621352190559},{"id":7178,"uid":"e2ec5fad-5faa-4b88-9a15-b2fe09625629","plan":"Platinum","status":"Blocked","payment_method":"Bitcoins","subscription_term":"Lifetime","payment_term":"Monthly","user_id":8946,"dt_current_timestamp":1621352190559},{"id":7378,"uid":"ed8512e8-f81c-4ef0-862c-11ce93cf9b80","plan":"Business","status":"Active","payment_method":"Paypal","subscription_term":"Annual","payment_term":"Monthly","user_id":8070,"dt_current_timestamp":1621352190559},{"id":8289,"uid":"205c66fe-5514-49f5-8c36-c41b8f69f8bc","plan":"Starter","status":"Blocked","payment_method":"Google Pay","subscription_term":"Lifetime","payment_term":"Annual","user_id":6092,"dt_current_timestamp":1621352190559},{"id":4871,"uid":"7753b653-ce5c-44c7-b2b2-b03f61f9d9b4","plan":"Silver","status":"Blocked","payment_method":"Money transfer","subscription_term":"Monthly","payment_term":"Monthly","user_id":3267,"dt_current_timestamp":1621352190559},{"id":2196,"uid":"71e262bb-a7e9-4c97-9763-298d89de6435","plan":"Free Trial","status":"Active","payment_method":"Google Pay","subscription_term":"Weekly","payment_term":"Payment in advance","user_id":2430,"dt_current_timestamp":1621352190559},{"id":6086,"uid":"0c7aafd5-c39c-4c97-bedc-ec348c934d2a","plan":"Gold","status":"Blocked","payment_method":"Bitcoins","subscription_term":"Monthly","payment_term":"Annual","user_id":1705,"dt_current_timestamp":1621352190559},{"id":9282,"uid":"651d387a-bb48-4da1-b493-804de7b56d31","plan":"Professional","status":"Active","payment_method":"Bitcoins","subscription_term":"Monthly","payment_term":"Payment in advance","user_id":6687,"dt_current_timestamp":1621352190559},{"id":6062,"uid":"aae9ae1f-737b-49d1-8aba-ad9410b0e089","plan":"Gold","status":"Pending","payment_method":"Visa checkout","subscription_term":"Annual","payment_term":"Monthly","user_id":6302,"dt_current_timestamp":1621352190559},{"id":3480,"uid":"e03b4915-7339-4359-8153-7f59a6fdfda8","plan":"Professional","status":"Pending","payment_method":"Cheque","subscription_term":"Triennal","payment_term":"Full subscription","user_id":518,"dt_current_timestamp":1621352190559},{"id":3099,"uid":"c681e1b2-0efe-424f-9284-ec87ce1b44b2","plan":"Platinum","status":"Idle","payment_method":"Paypal","subscription_term":"Daily","payment_term":"Payment in advance","user_id":7863,"dt_current_timestamp":1621352190559},{"id":5676,"uid":"6540b301-4e66-4c2e-8fe4-def2a4dd4fdc","plan":"Premium","status":"Idle","payment_method":"Alipay","subscription_term":"Annual","payment_term":"Monthly","user_id":6728,"dt_current_timestamp":1621352190559},{"id":9599,"uid":"5e523da7-70ce-463d-9ea6-841932790328","plan":"Diamond","status":"Idle","payment_method":"Visa checkout","subscription_term":"Triennal","payment_term":"Annual","user_id":7758,"dt_current_timestamp":1621352190559},{"id":4562,"uid":"c5552142-38cb-4bc9-93ca-5f79f07cdc96","plan":"Bronze","status":"Pending","payment_method":"Alipay","subscription_term":"Weekly","payment_term":"Monthly","user_id":564,"dt_current_timestamp":1621352190559},{"id":6762,"uid":"5f7cbb53-6f9a-450f-ab8d-5da01dc467ea","plan":"Free Trial","status":"Blocked","payment_method":"Bitcoins","subscription_term":"Annual","payment_term":"Annual","user_id":4003,"dt_current_timestamp":1621352190559},{"id":6450,"uid":"c5942481-6b6b-414a-9bff-ee833b1eba78","plan":"Standard","status":"Idle","payment_method":"Paypal","subscription_term":"Triennal","payment_term":"Annual","user_id":7127,"dt_current_timestamp":1621352190559},{"id":8512,"uid":"35b86bfc-6a00-435d-b550-e27a0ebd610c","plan":"Diamond","status":"Active","payment_method":"Debit card","subscription_term":"Quinquennal","payment_term":"Full subscription","user_id":9800,"dt_current_timestamp":1621352190559},{"id":8354,"uid":"8718256f-c8a2-4b38-b5cc-1859b496475a","plan":"Standard","status":"Blocked","payment_method":"Alipay","subscription_term":"Annual","payment_term":"Annual","user_id":3806,"dt_current_timestamp":1621352190559},{"id":2998,"uid":"eea75861-b267-4934-8e29-bd0e3c141f3c","plan":"Free Trial","status":"Active","payment_method":"WeChat Pay","subscription_term":"Weekly","payment_term":"Full subscription","user_id":3486,"dt_current_timestamp":1621352190559},{"id":6517,"uid":"eb06d60f-da39-48c0-a565-464e99b67bc0","plan":"Starter","status":"Blocked","payment_method":"Bitcoins","subscription_term":"Annual","payment_term":"Full subscription","user_id":7099,"dt_current_timestamp":1621352190559},{"id":9007,"uid":"84dbab02-ba9c-4bf2-83a2-562fad4db28f","plan":"Business","status":"Idle","payment_method":"Visa checkout","subscription_term":"Annual","payment_term":"Monthly","user_id":5045,"dt_current_timestamp":1621352190559},{"id":1311,"uid":"1b2ff66c-5225-471c-a255-fd9e2edb6200","plan":"Gold","status":"Pending","payment_method":"Google Pay","subscription_term":"Monthly","payment_term":"Monthly","user_id":9610,"dt_current_timestamp":1621352190559},{"id":3514,"uid":"f72331e8-45d9-42e8-bdba-6a02210c9c0b","plan":"Diamond","status":"Active","payment_method":"Money transfer","subscription_term":"Daily","payment_term":"Annual","user_id":5529,"dt_current_timestamp":1621352190559},{"id":8068,"uid":"5f51d20b-52cd-490e-ad2a-e6c1a1a05398","plan":"Professional","status":"Idle","payment_method":"Debit card","subscription_term":"Lifetime","payment_term":"Payment in advance","user_id":8656,"dt_current_timestamp":1621352190559},{"id":3924,"uid":"950f19bc-7262-450f-a1df-8dd5068aaa77","plan":"Bronze","status":"Active","payment_method":"Apple Pay","subscription_term":"Biennal","payment_term":"Annual","user_id":5300,"dt_current_timestamp":1621352190559},{"id":9580,"uid":"47d9b2b7-7c9d-404e-932a-20309408d57d","plan":"Gold","status":"Active","payment_method":"Bitcoins","subscription_term":"Monthly","payment_term":"Payment in advance","user_id":7810,"dt_current_timestamp":1621352190559},{"id":200,"uid":"4779aead-1f26-4435-a6c1-376b14055661","plan":"Platinum","status":"Idle","payment_method":"Money transfer","subscription_term":"Biennal","payment_term":"Monthly","user_id":7187,"dt_current_timestamp":1621352190559},{"id":6704,"uid":"d2284a28-f417-45e5-9709-f10878f0208d","plan":"Bronze","status":"Idle","payment_method":"Apple Pay","subscription_term":"Lifetime","payment_term":"Full subscription","user_id":1261,"dt_current_timestamp":1621352190559},{"id":7294,"uid":"b6ff5557-0a64-40bd-9f44-fa6f4d046f58","plan":"Standard","status":"Idle","payment_method":"Debit card","subscription_term":"Biennal","payment_term":"Payment in advance","user_id":3222,"dt_current_timestamp":1621352190559},{"id":5631,"uid":"7749ca2b-740c-41c3-941c-440f529c1ede","plan":"Premium","status":"Idle","payment_method":"Credit card","subscription_term":"Biennal","payment_term":"Monthly","user_id":4064,"dt_current_timestamp":1621352190559},{"id":3884,"uid":"1dc0902f-9047-47cf-be18-eb29b8993c42","plan":"Silver","status":"Active","payment_method":"Paypal","subscription_term":"Quinquennal","payment_term":"Monthly","user_id":2394,"dt_current_timestamp":1621352190559},{"id":2427,"uid":"1af021ef-d4f0-4315-aacd-be40448c1270","plan":"Platinum","status":"Blocked","payment_method":"Alipay","subscription_term":"Lifetime","payment_term":"Monthly","user_id":2395,"dt_current_timestamp":1621352190559},{"id":7590,"uid":"1d45e609-28d0-41ef-86ad-2ff2dc4b7aaf","plan":"Basic","status":"Idle","payment_method":"Google Pay","subscription_term":"Weekly","payment_term":"Full subscription","user_id":6477,"dt_current_timestamp":1621352190559},{"id":1446,"uid":"17626ce9-c5aa-47e8-a89b-440af8384bfc","plan":"Diamond","status":"Idle","payment_method":"Cheque","subscription_term":"Weekly","payment_term":"Monthly","user_id":5872,"dt_current_timestamp":1621352190559},{"id":6044,"uid":"fa13a431-30d4-4638-8744-37961c693e40","plan":"Starter","status":"Blocked","payment_method":"Money transfer","subscription_term":"Lifetime","payment_term":"Monthly","user_id":1276,"dt_current_timestamp":1621352190559},{"id":9954,"uid":"1dc61f0e-4468-4e3f-8413-8b4d4c72ce21","plan":"Student","status":"Blocked","payment_method":"Credit card","subscription_term":"Annual","payment_term":"Annual","user_id":6005,"dt_current_timestamp":1621352190559},{"id":5232,"uid":"a8032c75-d1d7-40bc-aaf3-c8ef6a1b0513","plan":"Bronze","status":"Active","payment_method":"Alipay","subscription_term":"Triennal","payment_term":"Annual","user_id":1392,"dt_current_timestamp":1621352190559},{"id":4654,"uid":"c5e39129-b713-420e-823d-cc00e6605ca2","plan":"Starter","status":"Idle","payment_method":"Apple Pay","subscription_term":"Lifetime","payment_term":"Full subscription","user_id":3044,"dt_current_timestamp":1621352190559},{"id":1058,"uid":"0a252f12-0a36-4bfa-84fb-299446b7c873","plan":"Standard","status":"Active","payment_method":"Money transfer","subscription_term":"Triennal","payment_term":"Monthly","user_id":3592,"dt_current_timestamp":1621352190559},{"id":6350,"uid":"a01ab5b1-efe7-4fca-b130-12078320e9eb","plan":"Essential","status":"Idle","payment_method":"Credit card","subscription_term":"Monthly","payment_term":"Monthly","user_id":8990,"dt_current_timestamp":1621352190559},{"id":6068,"uid":"5a5e5e77-5ca3-4d8c-b5f0-cc46735e5973","plan":"Professional","status":"Blocked","payment_method":"Credit card","subscription_term":"Weekly","payment_term":"Monthly","user_id":3256,"dt_current_timestamp":1621352190559},{"id":3248,"uid":"0dccafe6-0470-404e-b39f-1cff10f87c09","plan":"Bronze","status":"Active","payment_method":"WeChat Pay","subscription_term":"Weekly","payment_term":"Annual","user_id":8505,"dt_current_timestamp":1621352190559},{"id":1333,"uid":"a30d0b80-08da-4bcd-bc46-beb655b0eb5c","plan":"Silver","status":"Idle","payment_method":"Credit card","subscription_term":"Lifetime","payment_term":"Monthly","user_id":8031,"dt_current_timestamp":1621352190559},{"id":635,"uid":"2f66456a-d6af-4444-8478-1d2c58f0e4af","plan":"Basic","status":"Idle","payment_method":"Visa checkout","subscription_term":"Lifetime","payment_term":"Monthly","user_id":4889,"dt_current_timestamp":1621352190559},{"id":2741,"uid":"ccaaf121-5546-43d3-9b7e-80b20025489d","plan":"Premium","status":"Active","payment_method":"Paypal","subscription_term":"Monthly","payment_term":"Annual","user_id":2065,"dt_current_timestamp":1621352190559},{"id":1134,"uid":"b7143157-9170-41c0-a720-b132a762de95","plan":"Silver","status":"Idle","payment_method":"Paypal","subscription_term":"Daily","payment_term":"Annual","user_id":6640,"dt_current_timestamp":1621352190559},{"id":1109,"uid":"15700a22-37cb-4817-ade3-7bb775e7b883","plan":"Starter","status":"Blocked","payment_method":"Bitcoins","subscription_term":"Annual","payment_term":"Payment in advance","user_id":7903,"dt_current_timestamp":1621352190559},{"id":8120,"uid":"615447ae-b2f5-416f-b591-8f3d9a51663e","plan":"Free Trial","status":"Idle","payment_method":"Debit card","subscription_term":"Lifetime","payment_term":"Annual","user_id":4471,"dt_current_timestamp":1621352190559},{"id":458,"uid":"62c493db-e6a4-43b3-9df8-2be62f00299e","plan":"Free Trial","status":"Idle","payment_method":"Cash","subscription_term":"Quinquennal","payment_term":"Full subscription","user_id":9301,"dt_current_timestamp":1621352190559},{"id":1269,"uid":"eb546e3a-9c36-4c43-aed2-553373e5ef6e","plan":"Gold","status":"Blocked","payment_method":"Bitcoins","subscription_term":"Triennal","payment_term":"Monthly","user_id":681,"dt_current_timestamp":1621352190559},{"id":3975,"uid":"b3de9b75-2ed6-458f-a20d-dd06f7311b50","plan":"Diamond","status":"Idle","payment_method":"Money transfer","subscription_term":"Triennal","payment_term":"Monthly","user_id":5274,"dt_current_timestamp":1621352190559},{"id":1096,"uid":"87203d1a-fe60-4c44-be30-c899be2c0b83","plan":"Diamond","status":"Blocked","payment_method":"Visa checkout","subscription_term":"Biennal","payment_term":"Monthly","user_id":3596,"dt_current_timestamp":1621352190559},{"id":6075,"uid":"5451a0b2-78ba-4931-80d3-1b698f129a4f","plan":"Basic","status":"Blocked","payment_method":"Debit card","subscription_term":"Biennal","payment_term":"Full subscription","user_id":4054,"dt_current_timestamp":1621352190559},{"id":1042,"uid":"ed4a9fc1-0480-423f-bc4c-592306eba4a3","plan":"Essential","status":"Active","payment_method":"Debit card","subscription_term":"Lifetime","payment_term":"Payment in advance","user_id":849,"dt_current_timestamp":1621352190559},{"id":8691,"uid":"f516a9ae-afe9-46be-9ae9-fdc6fc5cde6d","plan":"Platinum","status":"Idle","payment_method":"Cheque","subscription_term":"Daily","payment_term":"Annual","user_id":2796,"dt_current_timestamp":1621352190559},{"id":7433,"uid":"ea3f4df8-ca4d-40fd-a60f-85cfb258a5f0","plan":"Basic","status":"Idle","payment_method":"Apple Pay","subscription_term":"Lifetime","payment_term":"Payment in advance","user_id":2720,"dt_current_timestamp":1621352190559},{"id":2073,"uid":"f3d064f4-9132-46e2-990d-d44a44bb736f","plan":"Gold","status":"Blocked","payment_method":"Alipay","subscription_term":"Daily","payment_term":"Monthly","user_id":5524,"dt_current_timestamp":1621352190559},{"id":8444,"uid":"81b4cb28-186c-4476-88f6-e54180aef50f","plan":"Standard","status":"Active","payment_method":"WeChat Pay","subscription_term":"Weekly","payment_term":"Full subscription","user_id":1572,"dt_current_timestamp":1621352190559},{"id":7502,"uid":"c623cda3-9571-4b08-842d-c713ebf7d61a","plan":"Essential","status":"Blocked","payment_method":"Alipay","subscription_term":"Biennal","payment_term":"Annual","user_id":99,"dt_current_timestamp":1621352190559},{"id":3283,"uid":"cf217e46-b445-4c19-a78f-5c07bb8efeb7","plan":"Professional","status":"Blocked","payment_method":"Apple Pay","subscription_term":"Quinquennal","payment_term":"Full subscription","user_id":7202,"dt_current_timestamp":1621352190559},{"id":7116,"uid":"2f4c9c2b-a8a7-4939-8973-e7e7770c738f","plan":"Professional","status":"Pending","payment_method":"WeChat Pay","subscription_term":"Biennal","payment_term":"Annual","user_id":8390,"dt_current_timestamp":1621352190559},{"id":1313,"uid":"c2c93eed-b36f-44de-a0b0-22d86fdd3331","plan":"Basic","status":"Active","payment_method":"WeChat Pay","subscription_term":"Daily","payment_term":"Payment in advance","user_id":5295,"dt_current_timestamp":1621352190559},{"id":262,"uid":"9ab486c7-2bd1-4f7a-bc74-93901cd2306f","plan":"Professional","status":"Blocked","payment_method":"Credit card","subscription_term":"Monthly","payment_term":"Annual","user_id":3254,"dt_current_timestamp":1621352190559},{"id":8233,"uid":"196dac0d-f7f5-4f4f-a0d8-35eb318bcb32","plan":"Gold","status":"Pending","payment_method":"Cheque","subscription_term":"Quinquennal","payment_term":"Monthly","user_id":9614,"dt_current_timestamp":1621352190559},{"id":8128,"uid":"d73db169-a59c-48aa-9b08-2f799ed6544a","plan":"Silver","status":"Pending","payment_method":"Credit card","subscription_term":"Triennal","payment_term":"Full subscription","user_id":2160,"dt_current_timestamp":1621352190559},{"id":7863,"uid":"b2714e68-bc9e-422c-834b-2713464d1fd5","plan":"Business","status":"Idle","payment_method":"Credit card","subscription_term":"Lifetime","payment_term":"Full subscription","user_id":6092,"dt_current_timestamp":1621352190559},{"id":2522,"uid":"eae71f9c-1768-4670-814d-32109627115d","plan":"Professional","status":"Active","payment_method":"WeChat Pay","subscription_term":"Daily","payment_term":"Monthly","user_id":5769,"dt_current_timestamp":1621352190559},{"id":8120,"uid":"58adb163-5caf-4e1e-b465-a43e33701e14","plan":"Essential","status":"Pending","payment_method":"Cheque","subscription_term":"Triennal","payment_term":"Payment in advance","user_id":7922,"dt_current_timestamp":1621352190559},{"id":8199,"uid":"0c383330-2bc9-4d3e-87ee-7e17388c1f05","plan":"Premium","status":"Idle","payment_method":"Cash","subscription_term":"Lifetime","payment_term":"Monthly","user_id":5359,"dt_current_timestamp":1621352190559},{"id":655,"uid":"42468c0b-eea1-4e9a-984d-120d3a1df3e8","plan":"Basic","status":"Pending","payment_method":"Bitcoins","subscription_term":"Quinquennal","payment_term":"Full subscription","user_id":8694,"dt_current_timestamp":1621352190559},{"id":4281,"uid":"57166d6a-00bf-4f53-a5a0-c3491412ec3d","plan":"Free Trial","status":"Active","payment_method":"Bitcoins","subscription_term":"Biennal","payment_term":"Payment in advance","user_id":8884,"dt_current_timestamp":1621352190559}]
--------------------------------------------------------------------------------
/datalake/landing/subscription/subscription_2021_5_18_15_37_22.json:
--------------------------------------------------------------------------------
1 | [{"id":782,"uid":"63506281-1dc2-4854-90a3-f3b5367d9f11","plan":"Standard","status":"Active","payment_method":"Cheque","subscription_term":"Triennal","payment_term":"Annual","user_id":2689,"dt_current_timestamp":1621352244171},{"id":3934,"uid":"604d0c43-78e5-4526-8336-905eb350d134","plan":"Platinum","status":"Pending","payment_method":"WeChat Pay","subscription_term":"Quinquennal","payment_term":"Annual","user_id":1861,"dt_current_timestamp":1621352244171},{"id":3570,"uid":"e1620d63-63c9-4f27-82a0-9421f4ec8ad5","plan":"Standard","status":"Blocked","payment_method":"Bitcoins","subscription_term":"Monthly","payment_term":"Full subscription","user_id":3485,"dt_current_timestamp":1621352244171},{"id":1015,"uid":"a31fdb75-9d79-4950-baf6-0c5472950541","plan":"Basic","status":"Active","payment_method":"Visa checkout","subscription_term":"Monthly","payment_term":"Annual","user_id":4859,"dt_current_timestamp":1621352244171},{"id":6097,"uid":"801313d7-c0de-44b6-915c-f30880c709e9","plan":"Starter","status":"Blocked","payment_method":"Apple Pay","subscription_term":"Triennal","payment_term":"Annual","user_id":1946,"dt_current_timestamp":1621352244171},{"id":4943,"uid":"0323e98c-79ad-4637-b86e-1c7b5a276137","plan":"Essential","status":"Blocked","payment_method":"Alipay","subscription_term":"Quinquennal","payment_term":"Annual","user_id":7177,"dt_current_timestamp":1621352244171},{"id":3257,"uid":"c0835c9d-377a-452a-8515-04656315db67","plan":"Business","status":"Pending","payment_method":"Debit card","subscription_term":"Monthly","payment_term":"Annual","user_id":935,"dt_current_timestamp":1621352244171},{"id":4458,"uid":"d06b6915-19d0-42ee-abf8-fee7b6f14683","plan":"Bronze","status":"Active","payment_method":"Debit card","subscription_term":"Annual","payment_term":"Payment in advance","user_id":9331,"dt_current_timestamp":1621352244171},{"id":1837,"uid":"3d529c7e-5d1a-4a9a-9cd4-2e67b54f550f","plan":"Starter","status":"Idle","payment_method":"Cash","subscription_term":"Lifetime","payment_term":"Annual","user_id":5515,"dt_current_timestamp":1621352244171},{"id":449,"uid":"251ff075-f72a-408c-9367-8268d535bfc4","plan":"Business","status":"Blocked","payment_method":"Paypal","subscription_term":"Annual","payment_term":"Annual","user_id":5330,"dt_current_timestamp":1621352244171},{"id":3457,"uid":"79ad559c-ebe4-4ed4-a57e-8ad21b7652a6","plan":"Business","status":"Pending","payment_method":"Money transfer","subscription_term":"Annual","payment_term":"Monthly","user_id":970,"dt_current_timestamp":1621352244171},{"id":7929,"uid":"5c6d55f4-7f14-4a74-8481-7b940859f183","plan":"Business","status":"Active","payment_method":"Alipay","subscription_term":"Triennal","payment_term":"Annual","user_id":2699,"dt_current_timestamp":1621352244171},{"id":2810,"uid":"7cc49909-dd1c-4eaa-8339-384bef054f15","plan":"Starter","status":"Blocked","payment_method":"Debit card","subscription_term":"Weekly","payment_term":"Monthly","user_id":5240,"dt_current_timestamp":1621352244171},{"id":2040,"uid":"61e73064-eb0b-4d99-a9cd-08e9087de4b2","plan":"Bronze","status":"Active","payment_method":"Visa checkout","subscription_term":"Monthly","payment_term":"Full subscription","user_id":701,"dt_current_timestamp":1621352244171},{"id":7993,"uid":"f8d7448c-c3c4-4112-aff6-d60ed58f6a02","plan":"Basic","status":"Pending","payment_method":"Visa checkout","subscription_term":"Quinquennal","payment_term":"Monthly","user_id":9905,"dt_current_timestamp":1621352244171},{"id":1314,"uid":"869e60b0-6899-42b0-b597-1eb9c89efdc3","plan":"Bronze","status":"Pending","payment_method":"Bitcoins","subscription_term":"Biennal","payment_term":"Full subscription","user_id":7316,"dt_current_timestamp":1621352244171},{"id":6899,"uid":"8c73060d-2f9b-402e-8107-8b309a7bd307","plan":"Bronze","status":"Idle","payment_method":"Cash","subscription_term":"Biennal","payment_term":"Full subscription","user_id":1991,"dt_current_timestamp":1621352244171},{"id":2633,"uid":"6f8c7f90-ec28-42d0-896e-e41fca97514b","plan":"Standard","status":"Idle","payment_method":"Alipay","subscription_term":"Triennal","payment_term":"Payment in advance","user_id":2198,"dt_current_timestamp":1621352244171},{"id":5370,"uid":"72509b47-6810-4d2f-974f-8985001c7e18","plan":"Basic","status":"Blocked","payment_method":"Bitcoins","subscription_term":"Quinquennal","payment_term":"Payment in advance","user_id":3365,"dt_current_timestamp":1621352244171},{"id":3343,"uid":"d4fb0337-48a1-4ffc-86e7-189d7eb16fd8","plan":"Platinum","status":"Blocked","payment_method":"Google Pay","subscription_term":"Biennal","payment_term":"Monthly","user_id":3713,"dt_current_timestamp":1621352244171},{"id":5189,"uid":"2f88e151-ea3d-4d5b-8eda-289b4b2d991b","plan":"Silver","status":"Idle","payment_method":"Apple Pay","subscription_term":"Monthly","payment_term":"Monthly","user_id":4682,"dt_current_timestamp":1621352244171},{"id":8583,"uid":"50f89193-37cf-41ce-bc5b-bb1b8a41863b","plan":"Premium","status":"Pending","payment_method":"Cash","subscription_term":"Daily","payment_term":"Payment in advance","user_id":4596,"dt_current_timestamp":1621352244171},{"id":5200,"uid":"7e5ba1de-5181-4783-9ca4-c64a12c06d08","plan":"Starter","status":"Active","payment_method":"Bitcoins","subscription_term":"Triennal","payment_term":"Payment in advance","user_id":3912,"dt_current_timestamp":1621352244171},{"id":6164,"uid":"84a8f0f5-11e6-4edf-885f-5a88b7ec7d02","plan":"Starter","status":"Active","payment_method":"Cheque","subscription_term":"Annual","payment_term":"Full subscription","user_id":7734,"dt_current_timestamp":1621352244171},{"id":1319,"uid":"d6680396-bd32-4b40-9d70-8133acd704b4","plan":"Basic","status":"Active","payment_method":"Money transfer","subscription_term":"Weekly","payment_term":"Full subscription","user_id":8073,"dt_current_timestamp":1621352244171},{"id":7933,"uid":"f32dae47-a204-4788-b64e-fea37a46c727","plan":"Student","status":"Blocked","payment_method":"Visa checkout","subscription_term":"Quinquennal","payment_term":"Payment in advance","user_id":2573,"dt_current_timestamp":1621352244171},{"id":5829,"uid":"3a6a5a2b-d91e-4c06-b313-6de8f415266a","plan":"Student","status":"Pending","payment_method":"Money transfer","subscription_term":"Quinquennal","payment_term":"Annual","user_id":1060,"dt_current_timestamp":1621352244171},{"id":1939,"uid":"af623ed9-dde2-4818-8eff-3ca607e17f8b","plan":"Student","status":"Active","payment_method":"Credit card","subscription_term":"Daily","payment_term":"Annual","user_id":7655,"dt_current_timestamp":1621352244171},{"id":1242,"uid":"1f6ae087-9685-47be-98fb-490a97667880","plan":"Gold","status":"Idle","payment_method":"Paypal","subscription_term":"Monthly","payment_term":"Full subscription","user_id":4684,"dt_current_timestamp":1621352244171},{"id":8677,"uid":"eb49166a-a022-4daa-8113-3a1f8469d111","plan":"Basic","status":"Active","payment_method":"Cheque","subscription_term":"Weekly","payment_term":"Annual","user_id":6819,"dt_current_timestamp":1621352244171},{"id":7024,"uid":"c55c6eba-c13f-4846-bbac-457c17edf403","plan":"Standard","status":"Idle","payment_method":"Paypal","subscription_term":"Triennal","payment_term":"Monthly","user_id":875,"dt_current_timestamp":1621352244171},{"id":3116,"uid":"f58b51ea-ca13-4977-b367-f604e9df8527","plan":"Basic","status":"Idle","payment_method":"Debit card","subscription_term":"Quinquennal","payment_term":"Payment in advance","user_id":6958,"dt_current_timestamp":1621352244171},{"id":4373,"uid":"1707aaf0-c5c4-4716-9f18-4eef16a1ca9e","plan":"Business","status":"Active","payment_method":"WeChat Pay","subscription_term":"Monthly","payment_term":"Monthly","user_id":8235,"dt_current_timestamp":1621352244171},{"id":6434,"uid":"9892efb4-ffdf-4fda-94ae-5c063b257e89","plan":"Business","status":"Blocked","payment_method":"Bitcoins","subscription_term":"Monthly","payment_term":"Annual","user_id":2951,"dt_current_timestamp":1621352244171},{"id":1874,"uid":"9e211d83-8914-40c6-b71b-c096391932d9","plan":"Diamond","status":"Idle","payment_method":"Paypal","subscription_term":"Annual","payment_term":"Payment in advance","user_id":3704,"dt_current_timestamp":1621352244171},{"id":5756,"uid":"220d6e6e-4f45-4e64-887c-b88008b60707","plan":"Platinum","status":"Idle","payment_method":"Paypal","subscription_term":"Biennal","payment_term":"Full subscription","user_id":4599,"dt_current_timestamp":1621352244171},{"id":4646,"uid":"b2f00351-9b70-41d5-87c6-73bbe09f9bbe","plan":"Student","status":"Pending","payment_method":"Bitcoins","subscription_term":"Annual","payment_term":"Monthly","user_id":1851,"dt_current_timestamp":1621352244171},{"id":6733,"uid":"d7d5c487-bedd-4dd7-aaf2-48b100d8df81","plan":"Professional","status":"Active","payment_method":"Google Pay","subscription_term":"Annual","payment_term":"Monthly","user_id":1099,"dt_current_timestamp":1621352244171},{"id":6213,"uid":"4566ea7c-f613-48be-af1d-61ee9d7189f5","plan":"Essential","status":"Idle","payment_method":"Paypal","subscription_term":"Lifetime","payment_term":"Monthly","user_id":2373,"dt_current_timestamp":1621352244171},{"id":4685,"uid":"6be0492d-368c-4ef0-88fd-dd1fe838c49e","plan":"Diamond","status":"Active","payment_method":"Visa checkout","subscription_term":"Weekly","payment_term":"Monthly","user_id":518,"dt_current_timestamp":1621352244171},{"id":485,"uid":"fcbf4c62-1e51-4656-a31a-a415b1958195","plan":"Basic","status":"Blocked","payment_method":"Alipay","subscription_term":"Quinquennal","payment_term":"Monthly","user_id":4461,"dt_current_timestamp":1621352244171},{"id":2944,"uid":"d3c37f9d-ac10-43c0-9ada-48ff02d5abc6","plan":"Essential","status":"Pending","payment_method":"Google Pay","subscription_term":"Monthly","payment_term":"Monthly","user_id":3410,"dt_current_timestamp":1621352244171},{"id":3450,"uid":"cb52ebbe-d06e-4f1e-a616-20fad968fe42","plan":"Standard","status":"Active","payment_method":"Money transfer","subscription_term":"Annual","payment_term":"Payment in advance","user_id":7004,"dt_current_timestamp":1621352244171},{"id":1249,"uid":"0e5773b7-08e0-4d9a-8216-d895f17dcef8","plan":"Basic","status":"Pending","payment_method":"Google Pay","subscription_term":"Quinquennal","payment_term":"Full subscription","user_id":4777,"dt_current_timestamp":1621352244171},{"id":3864,"uid":"741416e8-c581-46ba-8f69-1606dec61333","plan":"Basic","status":"Blocked","payment_method":"Paypal","subscription_term":"Triennal","payment_term":"Full subscription","user_id":336,"dt_current_timestamp":1621352244171},{"id":118,"uid":"d0ce2fcb-9d01-43ba-a63c-444d20ad8178","plan":"Free Trial","status":"Active","payment_method":"Money transfer","subscription_term":"Triennal","payment_term":"Monthly","user_id":7568,"dt_current_timestamp":1621352244171},{"id":2102,"uid":"2ab4fe92-a0dc-494b-aad9-9d936499e071","plan":"Standard","status":"Blocked","payment_method":"Paypal","subscription_term":"Monthly","payment_term":"Full subscription","user_id":8235,"dt_current_timestamp":1621352244171},{"id":2323,"uid":"28c841e9-7c55-4dc9-a6e7-63515c3332ea","plan":"Bronze","status":"Blocked","payment_method":"Cheque","subscription_term":"Lifetime","payment_term":"Full subscription","user_id":3246,"dt_current_timestamp":1621352244171},{"id":6692,"uid":"43eac09f-8139-422e-8f5e-6d811e485361","plan":"Bronze","status":"Idle","payment_method":"Alipay","subscription_term":"Triennal","payment_term":"Annual","user_id":5878,"dt_current_timestamp":1621352244171},{"id":2563,"uid":"c50966ed-b879-4488-a14f-7044a067288b","plan":"Free Trial","status":"Pending","payment_method":"Apple Pay","subscription_term":"Triennal","payment_term":"Full subscription","user_id":3024,"dt_current_timestamp":1621352244171},{"id":436,"uid":"c22e4756-f5b7-4212-a750-963ac6c13e6f","plan":"Silver","status":"Blocked","payment_method":"Cheque","subscription_term":"Quinquennal","payment_term":"Full subscription","user_id":8498,"dt_current_timestamp":1621352244171},{"id":113,"uid":"0cb02fdf-bed8-4faf-9c50-076183a757d5","plan":"Premium","status":"Pending","payment_method":"Apple Pay","subscription_term":"Annual","payment_term":"Annual","user_id":3895,"dt_current_timestamp":1621352244171},{"id":3101,"uid":"b090d14d-6090-4091-8414-6362cb897a92","plan":"Gold","status":"Pending","payment_method":"WeChat Pay","subscription_term":"Lifetime","payment_term":"Annual","user_id":4678,"dt_current_timestamp":1621352244171},{"id":1038,"uid":"54d1a158-0912-4920-8a90-ca12cd4acac9","plan":"Starter","status":"Idle","payment_method":"WeChat Pay","subscription_term":"Weekly","payment_term":"Monthly","user_id":8638,"dt_current_timestamp":1621352244171},{"id":486,"uid":"1fa8e768-2b18-4fa3-af49-42bc05d1ef15","plan":"Premium","status":"Blocked","payment_method":"Debit card","subscription_term":"Annual","payment_term":"Payment in advance","user_id":375,"dt_current_timestamp":1621352244171},{"id":5467,"uid":"59655710-931d-4080-8a8b-b494387046e3","plan":"Diamond","status":"Idle","payment_method":"Bitcoins","subscription_term":"Triennal","payment_term":"Full subscription","user_id":7322,"dt_current_timestamp":1621352244171},{"id":1219,"uid":"fad684b0-439b-483a-83b0-75d10e773ae4","plan":"Basic","status":"Active","payment_method":"Visa checkout","subscription_term":"Triennal","payment_term":"Full subscription","user_id":1973,"dt_current_timestamp":1621352244171},{"id":5341,"uid":"7d3f0aad-912b-4090-a54b-3a44f0059c7b","plan":"Free Trial","status":"Pending","payment_method":"Alipay","subscription_term":"Biennal","payment_term":"Annual","user_id":7027,"dt_current_timestamp":1621352244171},{"id":2599,"uid":"2d870e1a-14db-46c3-b272-5afe89936ba5","plan":"Professional","status":"Active","payment_method":"Money transfer","subscription_term":"Triennal","payment_term":"Annual","user_id":5515,"dt_current_timestamp":1621352244171},{"id":5924,"uid":"494a59b7-2c4b-4277-81da-413c0f2b7421","plan":"Free Trial","status":"Active","payment_method":"Bitcoins","subscription_term":"Annual","payment_term":"Full subscription","user_id":856,"dt_current_timestamp":1621352244171},{"id":3344,"uid":"c81b17af-0842-4137-9bfe-56184eba4cea","plan":"Starter","status":"Active","payment_method":"Cheque","subscription_term":"Lifetime","payment_term":"Monthly","user_id":6017,"dt_current_timestamp":1621352244171},{"id":1753,"uid":"6c669dec-07fe-4946-9e37-df294cfef895","plan":"Student","status":"Idle","payment_method":"WeChat Pay","subscription_term":"Daily","payment_term":"Annual","user_id":2142,"dt_current_timestamp":1621352244171},{"id":1069,"uid":"5fe39926-d273-42d4-ad46-c4fd0160bad5","plan":"Gold","status":"Active","payment_method":"Debit card","subscription_term":"Daily","payment_term":"Monthly","user_id":9815,"dt_current_timestamp":1621352244171},{"id":2043,"uid":"966e200a-ff22-41bb-b30d-1cd9ba7a9ea5","plan":"Diamond","status":"Blocked","payment_method":"Credit card","subscription_term":"Daily","payment_term":"Annual","user_id":242,"dt_current_timestamp":1621352244171},{"id":2538,"uid":"1be17958-5741-4d41-87c7-4afb2c65d190","plan":"Bronze","status":"Pending","payment_method":"Debit card","subscription_term":"Annual","payment_term":"Monthly","user_id":293,"dt_current_timestamp":1621352244171},{"id":6860,"uid":"e5f8373c-cd08-4d0f-85aa-24130674ca84","plan":"Gold","status":"Pending","payment_method":"Credit card","subscription_term":"Triennal","payment_term":"Monthly","user_id":594,"dt_current_timestamp":1621352244171},{"id":5966,"uid":"0e7b792b-34aa-46d0-b5be-9436beebfb14","plan":"Starter","status":"Pending","payment_method":"Cheque","subscription_term":"Daily","payment_term":"Full subscription","user_id":8612,"dt_current_timestamp":1621352244171},{"id":5951,"uid":"874c8d5a-103a-4c75-ab0a-fb6165b89676","plan":"Standard","status":"Blocked","payment_method":"Debit card","subscription_term":"Quinquennal","payment_term":"Full subscription","user_id":7418,"dt_current_timestamp":1621352244171},{"id":3571,"uid":"a5522156-b457-45d9-a6cf-a78a719c617a","plan":"Bronze","status":"Active","payment_method":"Money transfer","subscription_term":"Annual","payment_term":"Payment in advance","user_id":8300,"dt_current_timestamp":1621352244171},{"id":9629,"uid":"8840debb-69fa-4254-846c-c7d4b37b44fd","plan":"Diamond","status":"Blocked","payment_method":"Google Pay","subscription_term":"Biennal","payment_term":"Full subscription","user_id":5329,"dt_current_timestamp":1621352244171},{"id":8670,"uid":"54b139bd-271e-44e8-b028-e53650710ad8","plan":"Business","status":"Active","payment_method":"Cheque","subscription_term":"Biennal","payment_term":"Annual","user_id":4575,"dt_current_timestamp":1621352244171},{"id":1339,"uid":"60ce9535-a1d3-4096-a0dc-2df8aec05502","plan":"Premium","status":"Blocked","payment_method":"Debit card","subscription_term":"Annual","payment_term":"Payment in advance","user_id":6331,"dt_current_timestamp":1621352244171},{"id":706,"uid":"8db95a47-6c6c-458d-a5dc-18a6b57ebe61","plan":"Standard","status":"Active","payment_method":"Cheque","subscription_term":"Lifetime","payment_term":"Annual","user_id":3937,"dt_current_timestamp":1621352244171},{"id":9506,"uid":"9fc5b690-81a8-4707-aa94-3c6f07b94c4d","plan":"Starter","status":"Pending","payment_method":"Money transfer","subscription_term":"Triennal","payment_term":"Monthly","user_id":9104,"dt_current_timestamp":1621352244171},{"id":3447,"uid":"438dd300-f240-4811-af35-ca9dd17be68c","plan":"Platinum","status":"Active","payment_method":"Cash","subscription_term":"Quinquennal","payment_term":"Monthly","user_id":4312,"dt_current_timestamp":1621352244171},{"id":3376,"uid":"4a95b27f-1dc2-4aa7-a1e6-091f924564b8","plan":"Platinum","status":"Idle","payment_method":"Cheque","subscription_term":"Biennal","payment_term":"Annual","user_id":1045,"dt_current_timestamp":1621352244171},{"id":6627,"uid":"d550324e-1965-4ef9-8d1c-27c93df61682","plan":"Platinum","status":"Active","payment_method":"Apple Pay","subscription_term":"Monthly","payment_term":"Payment in advance","user_id":4894,"dt_current_timestamp":1621352244171},{"id":3440,"uid":"813e691c-b68c-44ad-ab87-61b1cdc0dd12","plan":"Professional","status":"Idle","payment_method":"Bitcoins","subscription_term":"Annual","payment_term":"Full subscription","user_id":3381,"dt_current_timestamp":1621352244171},{"id":5941,"uid":"218830f6-e650-4050-922b-eb049c6a02cf","plan":"Premium","status":"Idle","payment_method":"Bitcoins","subscription_term":"Triennal","payment_term":"Full subscription","user_id":7906,"dt_current_timestamp":1621352244171},{"id":1043,"uid":"95cd7dd9-6546-410d-bfad-f3963c58ea00","plan":"Student","status":"Blocked","payment_method":"Alipay","subscription_term":"Weekly","payment_term":"Payment in advance","user_id":4889,"dt_current_timestamp":1621352244171},{"id":2182,"uid":"10f75d46-95e9-4456-8096-6da1a103e4ee","plan":"Business","status":"Pending","payment_method":"Bitcoins","subscription_term":"Daily","payment_term":"Payment in advance","user_id":2696,"dt_current_timestamp":1621352244171},{"id":4048,"uid":"e1f1de1c-2cfe-44d3-a2d0-2e6c1e97a79c","plan":"Free Trial","status":"Blocked","payment_method":"Debit card","subscription_term":"Monthly","payment_term":"Payment in advance","user_id":1839,"dt_current_timestamp":1621352244171},{"id":6724,"uid":"7771e197-7730-4426-9e0d-e0b77ba7414d","plan":"Platinum","status":"Pending","payment_method":"WeChat Pay","subscription_term":"Monthly","payment_term":"Annual","user_id":68,"dt_current_timestamp":1621352244171},{"id":1169,"uid":"1c3be86e-a37f-414a-b0c6-e465d55a40fd","plan":"Professional","status":"Blocked","payment_method":"Money transfer","subscription_term":"Annual","payment_term":"Payment in advance","user_id":7594,"dt_current_timestamp":1621352244171},{"id":8204,"uid":"4e5b6cf2-8094-4b68-9a67-98c0725d56ca","plan":"Student","status":"Pending","payment_method":"Cash","subscription_term":"Lifetime","payment_term":"Payment in advance","user_id":7489,"dt_current_timestamp":1621352244171},{"id":803,"uid":"13ea824e-df94-4706-9477-dc5adf3207d9","plan":"Gold","status":"Pending","payment_method":"Money transfer","subscription_term":"Weekly","payment_term":"Full subscription","user_id":1809,"dt_current_timestamp":1621352244171},{"id":6830,"uid":"50942dcc-dbb2-4642-8016-1d39ccaf3b07","plan":"Basic","status":"Blocked","payment_method":"Money transfer","subscription_term":"Quinquennal","payment_term":"Full subscription","user_id":311,"dt_current_timestamp":1621352244171},{"id":8230,"uid":"96b832b5-d660-45aa-be66-a4714310eed4","plan":"Standard","status":"Blocked","payment_method":"Google Pay","subscription_term":"Quinquennal","payment_term":"Monthly","user_id":392,"dt_current_timestamp":1621352244171},{"id":9700,"uid":"fff2f7b3-94d3-487a-91fc-5b9fed3ec3f5","plan":"Platinum","status":"Idle","payment_method":"Google Pay","subscription_term":"Daily","payment_term":"Full subscription","user_id":2951,"dt_current_timestamp":1621352244171},{"id":5924,"uid":"d348718a-ad27-49ae-8e0c-96359696fded","plan":"Gold","status":"Blocked","payment_method":"Cash","subscription_term":"Daily","payment_term":"Full subscription","user_id":546,"dt_current_timestamp":1621352244171},{"id":255,"uid":"e7b25744-9f2a-4020-9c37-26599027c837","plan":"Free Trial","status":"Idle","payment_method":"Credit card","subscription_term":"Biennal","payment_term":"Full subscription","user_id":1703,"dt_current_timestamp":1621352244171},{"id":526,"uid":"57339884-0a52-49fd-9ee4-021c24b09c30","plan":"Bronze","status":"Blocked","payment_method":"Google Pay","subscription_term":"Triennal","payment_term":"Annual","user_id":441,"dt_current_timestamp":1621352244171},{"id":6987,"uid":"e1ac9dee-f1e7-4862-9200-fa2d24219f31","plan":"Diamond","status":"Active","payment_method":"Debit card","subscription_term":"Triennal","payment_term":"Monthly","user_id":5899,"dt_current_timestamp":1621352244171},{"id":1361,"uid":"bc486ae0-a3b8-4b23-b4d5-3afeff2880a1","plan":"Gold","status":"Pending","payment_method":"Credit card","subscription_term":"Quinquennal","payment_term":"Annual","user_id":3238,"dt_current_timestamp":1621352244171},{"id":222,"uid":"25d4741e-19ff-4e5d-a806-1e8b075bc600","plan":"Bronze","status":"Blocked","payment_method":"Visa checkout","subscription_term":"Annual","payment_term":"Annual","user_id":1872,"dt_current_timestamp":1621352244171},{"id":7038,"uid":"a44c0299-2c90-41b0-8b7c-e83db6126fb3","plan":"Student","status":"Active","payment_method":"Debit card","subscription_term":"Monthly","payment_term":"Payment in advance","user_id":9359,"dt_current_timestamp":1621352244171},{"id":3975,"uid":"d210d857-7ca0-4b60-8f60-e66a6b282966","plan":"Gold","status":"Pending","payment_method":"Visa checkout","subscription_term":"Daily","payment_term":"Annual","user_id":4364,"dt_current_timestamp":1621352244171},{"id":9413,"uid":"a6a5d908-57e7-4f56-804e-1aba1df6ac3a","plan":"Diamond","status":"Active","payment_method":"Paypal","subscription_term":"Daily","payment_term":"Monthly","user_id":7212,"dt_current_timestamp":1621352244171},{"id":6305,"uid":"b4cbdc6d-570b-4f98-90da-0675f5357580","plan":"Free Trial","status":"Blocked","payment_method":"Cheque","subscription_term":"Quinquennal","payment_term":"Monthly","user_id":9769,"dt_current_timestamp":1621352244171},{"id":4698,"uid":"0090e13b-27f3-4c38-bd3c-e707b7082ee2","plan":"Diamond","status":"Idle","payment_method":"Alipay","subscription_term":"Lifetime","payment_term":"Full subscription","user_id":6403,"dt_current_timestamp":1621352244171}]
--------------------------------------------------------------------------------
/datalake/landing/subscription/subscription_2021_5_19_11_33_11.json:
--------------------------------------------------------------------------------
1 | [{"id":9551,"uid":"a01e8d19-6a16-4525-8539-955a6babbd6c","plan":"Business","status":"Idle","payment_method":"Cheque","subscription_term":"Biennal","payment_term":"Full subscription","user_id":8193,"dt_current_timestamp":1621423992651},{"id":5194,"uid":"a7fb7daf-4267-4ea1-8079-13c84e808657","plan":"Free Trial","status":"Pending","payment_method":"Apple Pay","subscription_term":"Biennal","payment_term":"Payment in advance","user_id":3221,"dt_current_timestamp":1621423992651},{"id":8146,"uid":"0d5581bc-f320-4787-a29f-293652e0f484","plan":"Student","status":"Blocked","payment_method":"Alipay","subscription_term":"Quinquennal","payment_term":"Full subscription","user_id":8962,"dt_current_timestamp":1621423992651},{"id":3903,"uid":"1a510691-42be-45b7-8cf6-6fc86dd77a0e","plan":"Silver","status":"Idle","payment_method":"Bitcoins","subscription_term":"Quinquennal","payment_term":"Payment in advance","user_id":8557,"dt_current_timestamp":1621423992651},{"id":465,"uid":"7f0017d5-c160-4243-9989-2db4a1291065","plan":"Platinum","status":"Active","payment_method":"Google Pay","subscription_term":"Quinquennal","payment_term":"Full subscription","user_id":8773,"dt_current_timestamp":1621423992651},{"id":5415,"uid":"508d3f3e-8714-4dd4-abe9-51faf88aed6f","plan":"Silver","status":"Idle","payment_method":"Money transfer","subscription_term":"Biennal","payment_term":"Payment in advance","user_id":4864,"dt_current_timestamp":1621423992651},{"id":7117,"uid":"ae15d6e9-96f4-48e4-95d2-ea4dbd9aba03","plan":"Student","status":"Active","payment_method":"Debit card","subscription_term":"Monthly","payment_term":"Full subscription","user_id":5555,"dt_current_timestamp":1621423992651},{"id":6081,"uid":"decffaac-e2c0-4919-a9bf-5cd2ecb9eb39","plan":"Essential","status":"Pending","payment_method":"Paypal","subscription_term":"Triennal","payment_term":"Full subscription","user_id":8094,"dt_current_timestamp":1621423992651},{"id":8233,"uid":"71f188c5-c4a7-4261-84a4-0279be9f3ba7","plan":"Standard","status":"Blocked","payment_method":"Debit card","subscription_term":"Triennal","payment_term":"Payment in advance","user_id":1361,"dt_current_timestamp":1621423992651},{"id":292,"uid":"623fd12e-c514-45f2-9884-10eff1bc1cf3","plan":"Student","status":"Idle","payment_method":"Money transfer","subscription_term":"Annual","payment_term":"Payment in advance","user_id":3150,"dt_current_timestamp":1621423992651},{"id":4145,"uid":"859854b5-a4e7-4889-84ce-3e07f4f37165","plan":"Silver","status":"Idle","payment_method":"Credit card","subscription_term":"Annual","payment_term":"Full subscription","user_id":1264,"dt_current_timestamp":1621423992651},{"id":2893,"uid":"d7c55e43-0ea0-4229-94c4-704c932bd99e","plan":"Platinum","status":"Pending","payment_method":"Alipay","subscription_term":"Weekly","payment_term":"Full subscription","user_id":4137,"dt_current_timestamp":1621423992651},{"id":1878,"uid":"11403f58-077e-4c37-8a95-50caa8187835","plan":"Gold","status":"Blocked","payment_method":"Google Pay","subscription_term":"Biennal","payment_term":"Full subscription","user_id":7235,"dt_current_timestamp":1621423992651},{"id":1548,"uid":"0471c28a-bbc4-4846-b3e3-64b3c02b1bf7","plan":"Platinum","status":"Pending","payment_method":"Apple Pay","subscription_term":"Lifetime","payment_term":"Annual","user_id":4790,"dt_current_timestamp":1621423992651},{"id":6862,"uid":"a00837c3-a596-49a3-aa79-bc53eb541200","plan":"Premium","status":"Idle","payment_method":"Credit card","subscription_term":"Monthly","payment_term":"Payment in advance","user_id":2918,"dt_current_timestamp":1621423992651},{"id":4508,"uid":"8fbc56ce-694d-4a1d-b9d4-0e0e91cf1c7f","plan":"Student","status":"Idle","payment_method":"Apple Pay","subscription_term":"Monthly","payment_term":"Full subscription","user_id":901,"dt_current_timestamp":1621423992651},{"id":3459,"uid":"9b350766-18ca-4861-9199-7dac87b1cfd5","plan":"Basic","status":"Idle","payment_method":"Visa checkout","subscription_term":"Biennal","payment_term":"Annual","user_id":1886,"dt_current_timestamp":1621423992651},{"id":5768,"uid":"edc0eba1-2f69-4d17-9af2-6aeda78b05c9","plan":"Student","status":"Idle","payment_method":"Google Pay","subscription_term":"Daily","payment_term":"Monthly","user_id":199,"dt_current_timestamp":1621423992651},{"id":5334,"uid":"60f02e3b-d75b-428c-bdd6-1f1f03226c91","plan":"Standard","status":"Idle","payment_method":"Credit card","subscription_term":"Monthly","payment_term":"Annual","user_id":5400,"dt_current_timestamp":1621423992651},{"id":9668,"uid":"7bd70de4-7430-4d42-bc52-09bf11bd00f4","plan":"Bronze","status":"Idle","payment_method":"Cheque","subscription_term":"Quinquennal","payment_term":"Payment in advance","user_id":3710,"dt_current_timestamp":1621423992651},{"id":7567,"uid":"a571c533-5d28-448d-bec4-4ee7f7d64506","plan":"Gold","status":"Blocked","payment_method":"Cash","subscription_term":"Triennal","payment_term":"Annual","user_id":6363,"dt_current_timestamp":1621423992651},{"id":5479,"uid":"9df86846-42fa-4a18-ae0a-6f7825a8ec1a","plan":"Diamond","status":"Pending","payment_method":"Credit card","subscription_term":"Lifetime","payment_term":"Full subscription","user_id":2217,"dt_current_timestamp":1621423992651},{"id":7387,"uid":"7d9cec84-60e3-427a-ba82-44cf07dac950","plan":"Platinum","status":"Active","payment_method":"Paypal","subscription_term":"Lifetime","payment_term":"Full subscription","user_id":4804,"dt_current_timestamp":1621423992651},{"id":3234,"uid":"6a50d5b7-2508-418b-97a1-f23182a20c84","plan":"Starter","status":"Blocked","payment_method":"Debit card","subscription_term":"Lifetime","payment_term":"Full subscription","user_id":773,"dt_current_timestamp":1621423992651},{"id":6298,"uid":"84f775fc-9e19-4c28-aa1d-1877374c399e","plan":"Essential","status":"Blocked","payment_method":"Google Pay","subscription_term":"Monthly","payment_term":"Annual","user_id":7876,"dt_current_timestamp":1621423992651},{"id":408,"uid":"7768cb24-731f-450a-9961-62d17b6a934d","plan":"Student","status":"Pending","payment_method":"Apple Pay","subscription_term":"Weekly","payment_term":"Payment in advance","user_id":454,"dt_current_timestamp":1621423992651},{"id":4019,"uid":"f6892d05-d2ce-4807-b58a-a6a287763788","plan":"Business","status":"Active","payment_method":"Cash","subscription_term":"Weekly","payment_term":"Full subscription","user_id":3531,"dt_current_timestamp":1621423992651},{"id":1349,"uid":"183b4d9e-4045-42e1-aaf2-3d0b37e1b0d4","plan":"Free Trial","status":"Pending","payment_method":"WeChat Pay","subscription_term":"Daily","payment_term":"Annual","user_id":8729,"dt_current_timestamp":1621423992651},{"id":4284,"uid":"875fcbad-780b-466e-8232-8d13cb7b789d","plan":"Bronze","status":"Active","payment_method":"Paypal","subscription_term":"Triennal","payment_term":"Annual","user_id":4375,"dt_current_timestamp":1621423992651},{"id":3236,"uid":"2a6199a7-9837-4c02-a62d-a8523e5f35d7","plan":"Essential","status":"Idle","payment_method":"Paypal","subscription_term":"Daily","payment_term":"Payment in advance","user_id":6124,"dt_current_timestamp":1621423992651},{"id":9028,"uid":"4e08954f-f5a3-4751-8598-c1a870aeae48","plan":"Business","status":"Idle","payment_method":"Google Pay","subscription_term":"Daily","payment_term":"Monthly","user_id":4727,"dt_current_timestamp":1621423992651},{"id":9515,"uid":"7f63fbfd-c11f-4a3a-b081-c9186ed979f5","plan":"Essential","status":"Idle","payment_method":"Cash","subscription_term":"Daily","payment_term":"Payment in advance","user_id":4909,"dt_current_timestamp":1621423992651},{"id":1397,"uid":"003a7226-f2be-4132-9834-5c38f4b7716b","plan":"Starter","status":"Pending","payment_method":"Paypal","subscription_term":"Triennal","payment_term":"Full subscription","user_id":5967,"dt_current_timestamp":1621423992651},{"id":5980,"uid":"a7f54dc5-eac9-43fd-a50d-ae1db63d8b5d","plan":"Premium","status":"Active","payment_method":"Cash","subscription_term":"Lifetime","payment_term":"Payment in advance","user_id":6871,"dt_current_timestamp":1621423992651},{"id":4007,"uid":"28419147-71ad-447b-b497-5fe83fa4e03a","plan":"Professional","status":"Idle","payment_method":"Cheque","subscription_term":"Triennal","payment_term":"Full subscription","user_id":9289,"dt_current_timestamp":1621423992651},{"id":2377,"uid":"d65f3700-f051-41c9-b7c0-fa4d27574cb1","plan":"Basic","status":"Pending","payment_method":"Google Pay","subscription_term":"Biennal","payment_term":"Payment in advance","user_id":5358,"dt_current_timestamp":1621423992651},{"id":6300,"uid":"758f8dde-0ff3-4b27-b530-efbaaa9ec559","plan":"Free Trial","status":"Blocked","payment_method":"Visa checkout","subscription_term":"Annual","payment_term":"Monthly","user_id":7016,"dt_current_timestamp":1621423992651},{"id":6096,"uid":"f77b2ea5-0690-4f37-87ba-d755bdf35211","plan":"Starter","status":"Blocked","payment_method":"Money transfer","subscription_term":"Monthly","payment_term":"Full subscription","user_id":2960,"dt_current_timestamp":1621423992651},{"id":6639,"uid":"673a637b-2434-4dbb-8311-73e16ca86f95","plan":"Student","status":"Active","payment_method":"WeChat Pay","subscription_term":"Triennal","payment_term":"Payment in advance","user_id":5004,"dt_current_timestamp":1621423992651},{"id":405,"uid":"59ba5335-7bbe-45f5-83c8-3bcc46806043","plan":"Professional","status":"Pending","payment_method":"Bitcoins","subscription_term":"Quinquennal","payment_term":"Payment in advance","user_id":337,"dt_current_timestamp":1621423992651},{"id":2243,"uid":"864423bc-2794-43cf-bfd4-100e0936afa1","plan":"Professional","status":"Idle","payment_method":"Apple Pay","subscription_term":"Weekly","payment_term":"Annual","user_id":4082,"dt_current_timestamp":1621423992651},{"id":6484,"uid":"35259db6-58ec-498f-9fc8-981ff3efef9c","plan":"Basic","status":"Active","payment_method":"Bitcoins","subscription_term":"Weekly","payment_term":"Payment in advance","user_id":3570,"dt_current_timestamp":1621423992651},{"id":937,"uid":"e56e3407-47d6-4cf9-95c3-2038a019a242","plan":"Silver","status":"Active","payment_method":"Visa checkout","subscription_term":"Weekly","payment_term":"Payment in advance","user_id":3923,"dt_current_timestamp":1621423992651},{"id":5223,"uid":"ca7262f4-5bf3-4d56-89c2-630f44086a90","plan":"Bronze","status":"Active","payment_method":"Money transfer","subscription_term":"Triennal","payment_term":"Payment in advance","user_id":7516,"dt_current_timestamp":1621423992651},{"id":2264,"uid":"d9806908-d29e-4d80-9810-4da1a1f2d408","plan":"Standard","status":"Blocked","payment_method":"WeChat Pay","subscription_term":"Annual","payment_term":"Full subscription","user_id":6116,"dt_current_timestamp":1621423992651},{"id":8382,"uid":"ada64995-f269-4396-89b0-cc144dee52fd","plan":"Standard","status":"Idle","payment_method":"Bitcoins","subscription_term":"Monthly","payment_term":"Full subscription","user_id":5851,"dt_current_timestamp":1621423992651},{"id":545,"uid":"0022b693-609d-4e99-9716-b719e260ea77","plan":"Starter","status":"Pending","payment_method":"WeChat Pay","subscription_term":"Triennal","payment_term":"Payment in advance","user_id":6589,"dt_current_timestamp":1621423992651},{"id":7472,"uid":"9e314739-4fb7-40cc-a44d-b3aa84f8e7bb","plan":"Standard","status":"Idle","payment_method":"Bitcoins","subscription_term":"Quinquennal","payment_term":"Monthly","user_id":2612,"dt_current_timestamp":1621423992651},{"id":3508,"uid":"de922925-184b-479d-bbd4-0a8580974089","plan":"Platinum","status":"Pending","payment_method":"Google Pay","subscription_term":"Lifetime","payment_term":"Annual","user_id":1703,"dt_current_timestamp":1621423992651},{"id":4578,"uid":"e0a5262b-70ba-48d2-9fde-cf210f2d1f9a","plan":"Diamond","status":"Active","payment_method":"Alipay","subscription_term":"Biennal","payment_term":"Monthly","user_id":5153,"dt_current_timestamp":1621423992651},{"id":7468,"uid":"9fcf4db1-9e7a-49d2-b0bd-491cb51161e4","plan":"Standard","status":"Pending","payment_method":"Paypal","subscription_term":"Biennal","payment_term":"Monthly","user_id":5538,"dt_current_timestamp":1621423992651},{"id":348,"uid":"63a24c24-9d48-41f7-9a3c-a2c1ecbe577a","plan":"Diamond","status":"Blocked","payment_method":"Cash","subscription_term":"Triennal","payment_term":"Annual","user_id":6551,"dt_current_timestamp":1621423992651},{"id":1154,"uid":"cc0dac62-487d-4f79-b580-9db92e0b4d03","plan":"Bronze","status":"Pending","payment_method":"Paypal","subscription_term":"Annual","payment_term":"Monthly","user_id":3612,"dt_current_timestamp":1621423992651},{"id":9325,"uid":"9a61a81a-9301-417e-8547-9cdf1453d5fe","plan":"Premium","status":"Active","payment_method":"Cheque","subscription_term":"Monthly","payment_term":"Annual","user_id":4105,"dt_current_timestamp":1621423992651},{"id":4702,"uid":"22cafa34-0091-4634-ad73-aa2c40be88ac","plan":"Essential","status":"Idle","payment_method":"Credit card","subscription_term":"Monthly","payment_term":"Monthly","user_id":1104,"dt_current_timestamp":1621423992651},{"id":1570,"uid":"58569cf4-103a-421b-b97b-41e1f3ebe221","plan":"Professional","status":"Blocked","payment_method":"Google Pay","subscription_term":"Weekly","payment_term":"Full subscription","user_id":8424,"dt_current_timestamp":1621423992651},{"id":7874,"uid":"a858e82c-410d-4c44-b518-0296139be01d","plan":"Starter","status":"Pending","payment_method":"Visa checkout","subscription_term":"Triennal","payment_term":"Payment in advance","user_id":7768,"dt_current_timestamp":1621423992651},{"id":9728,"uid":"4c812fba-818a-435e-abc8-24e8c0d6c3ce","plan":"Business","status":"Idle","payment_method":"Money transfer","subscription_term":"Daily","payment_term":"Full subscription","user_id":7965,"dt_current_timestamp":1621423992651},{"id":7871,"uid":"df0b3ef6-8cb7-49ea-bbbc-4cbde765b746","plan":"Gold","status":"Blocked","payment_method":"Debit card","subscription_term":"Triennal","payment_term":"Annual","user_id":7390,"dt_current_timestamp":1621423992651},{"id":8946,"uid":"1413de72-b826-474f-b6a3-5a0f67583364","plan":"Standard","status":"Pending","payment_method":"Google Pay","subscription_term":"Annual","payment_term":"Annual","user_id":7267,"dt_current_timestamp":1621423992651},{"id":9602,"uid":"12eb4e00-9154-436f-bdbd-6f7aed5a0c00","plan":"Basic","status":"Active","payment_method":"Google Pay","subscription_term":"Quinquennal","payment_term":"Full subscription","user_id":236,"dt_current_timestamp":1621423992651},{"id":9366,"uid":"cb117d3f-6adc-4fc6-89a3-73658390d01a","plan":"Free Trial","status":"Active","payment_method":"Alipay","subscription_term":"Lifetime","payment_term":"Full subscription","user_id":9595,"dt_current_timestamp":1621423992651},{"id":2340,"uid":"d518b7d2-99c1-467b-ba81-8084054eb473","plan":"Free Trial","status":"Blocked","payment_method":"Debit card","subscription_term":"Annual","payment_term":"Annual","user_id":1759,"dt_current_timestamp":1621423992651},{"id":3017,"uid":"8e015ea5-360f-460c-a953-aeacad6536ca","plan":"Student","status":"Idle","payment_method":"WeChat Pay","subscription_term":"Daily","payment_term":"Annual","user_id":1183,"dt_current_timestamp":1621423992651},{"id":3638,"uid":"a54d8d9c-7fcf-4d30-8320-56ec08504271","plan":"Premium","status":"Pending","payment_method":"Visa checkout","subscription_term":"Biennal","payment_term":"Full subscription","user_id":3346,"dt_current_timestamp":1621423992651},{"id":6178,"uid":"14b83b7a-c925-4c4d-8c27-7582bf258f5d","plan":"Student","status":"Active","payment_method":"Credit card","subscription_term":"Quinquennal","payment_term":"Monthly","user_id":5889,"dt_current_timestamp":1621423992651},{"id":8042,"uid":"163b124a-412c-42bb-9055-9cf68cc2902e","plan":"Gold","status":"Idle","payment_method":"WeChat Pay","subscription_term":"Weekly","payment_term":"Payment in advance","user_id":9163,"dt_current_timestamp":1621423992651},{"id":2321,"uid":"f9e96470-8772-4cb2-bd68-832a7a596f83","plan":"Free Trial","status":"Pending","payment_method":"Paypal","subscription_term":"Annual","payment_term":"Full subscription","user_id":6970,"dt_current_timestamp":1621423992651},{"id":6749,"uid":"3d17d5ef-1805-4dc8-874f-e1aa0ed2e0c7","plan":"Professional","status":"Blocked","payment_method":"Visa checkout","subscription_term":"Lifetime","payment_term":"Monthly","user_id":2312,"dt_current_timestamp":1621423992651},{"id":2424,"uid":"28a34e0c-4e90-4369-8350-496e6457ebc0","plan":"Essential","status":"Pending","payment_method":"Visa checkout","subscription_term":"Lifetime","payment_term":"Full subscription","user_id":657,"dt_current_timestamp":1621423992651},{"id":2259,"uid":"83b952d2-8ba6-4de9-b015-a43b3455477d","plan":"Silver","status":"Pending","payment_method":"Bitcoins","subscription_term":"Weekly","payment_term":"Monthly","user_id":2496,"dt_current_timestamp":1621423992651},{"id":914,"uid":"8caa9955-0c83-4c1b-9748-81389559c0dc","plan":"Bronze","status":"Pending","payment_method":"Credit card","subscription_term":"Lifetime","payment_term":"Monthly","user_id":6206,"dt_current_timestamp":1621423992651},{"id":9303,"uid":"d349c369-335a-4b44-82e7-861dda9d3d7a","plan":"Starter","status":"Pending","payment_method":"Debit card","subscription_term":"Monthly","payment_term":"Payment in advance","user_id":8912,"dt_current_timestamp":1621423992651},{"id":1705,"uid":"2e9ea90a-e834-43b7-bae6-7ad304ef5aa5","plan":"Free Trial","status":"Idle","payment_method":"Apple Pay","subscription_term":"Weekly","payment_term":"Annual","user_id":2418,"dt_current_timestamp":1621423992651},{"id":6027,"uid":"bd0d5acd-ca33-49a4-8ca8-20d76d560fe7","plan":"Basic","status":"Pending","payment_method":"Credit card","subscription_term":"Daily","payment_term":"Monthly","user_id":2169,"dt_current_timestamp":1621423992651},{"id":86,"uid":"fd097ec8-26d3-4e98-8549-e49d40a5e1ee","plan":"Student","status":"Pending","payment_method":"Money transfer","subscription_term":"Lifetime","payment_term":"Annual","user_id":5962,"dt_current_timestamp":1621423992651},{"id":9236,"uid":"3668171a-3b83-44f0-b57f-d12d8880c55d","plan":"Silver","status":"Blocked","payment_method":"Bitcoins","subscription_term":"Daily","payment_term":"Annual","user_id":4464,"dt_current_timestamp":1621423992651},{"id":3092,"uid":"9f6af16d-d8ac-4386-aa0a-c24003a9a321","plan":"Platinum","status":"Blocked","payment_method":"Bitcoins","subscription_term":"Quinquennal","payment_term":"Full subscription","user_id":5641,"dt_current_timestamp":1621423992651},{"id":7418,"uid":"4a40e110-a535-434e-88b1-e30d5561f6df","plan":"Diamond","status":"Pending","payment_method":"Debit card","subscription_term":"Weekly","payment_term":"Full subscription","user_id":4981,"dt_current_timestamp":1621423992651},{"id":2628,"uid":"cac4c12b-112f-4797-bb69-2baef1754e71","plan":"Premium","status":"Active","payment_method":"Debit card","subscription_term":"Biennal","payment_term":"Payment in advance","user_id":8032,"dt_current_timestamp":1621423992651},{"id":2876,"uid":"ab45495a-1be2-4da3-b867-a4b129ba0d28","plan":"Bronze","status":"Blocked","payment_method":"Google Pay","subscription_term":"Annual","payment_term":"Full subscription","user_id":979,"dt_current_timestamp":1621423992651},{"id":1129,"uid":"7091f6eb-e45c-4f1c-adfc-1ad12a61c91e","plan":"Standard","status":"Blocked","payment_method":"Bitcoins","subscription_term":"Annual","payment_term":"Monthly","user_id":362,"dt_current_timestamp":1621423992651},{"id":1986,"uid":"4463de95-52c4-4a77-ad75-0d2c65d027d0","plan":"Premium","status":"Blocked","payment_method":"Cheque","subscription_term":"Weekly","payment_term":"Monthly","user_id":6376,"dt_current_timestamp":1621423992651},{"id":5126,"uid":"1a576560-a9be-4b80-94de-47148ebf9c5a","plan":"Silver","status":"Blocked","payment_method":"Money transfer","subscription_term":"Lifetime","payment_term":"Annual","user_id":6156,"dt_current_timestamp":1621423992651},{"id":9643,"uid":"44edbbc4-9dbf-4f46-9799-61169582614c","plan":"Standard","status":"Active","payment_method":"Cash","subscription_term":"Lifetime","payment_term":"Annual","user_id":4733,"dt_current_timestamp":1621423992651},{"id":9550,"uid":"357586fb-23fa-483c-a3db-f055336eee0f","plan":"Bronze","status":"Pending","payment_method":"Google Pay","subscription_term":"Weekly","payment_term":"Annual","user_id":6178,"dt_current_timestamp":1621423992651},{"id":4252,"uid":"d367f0bd-b808-4419-a781-97d5f2ec791e","plan":"Silver","status":"Blocked","payment_method":"Debit card","subscription_term":"Lifetime","payment_term":"Payment in advance","user_id":3446,"dt_current_timestamp":1621423992651},{"id":2222,"uid":"1f3873f2-87b0-4af6-a379-0a7fa474f232","plan":"Student","status":"Blocked","payment_method":"Bitcoins","subscription_term":"Weekly","payment_term":"Annual","user_id":4489,"dt_current_timestamp":1621423992651},{"id":9851,"uid":"d51f1340-6aa9-4d39-a9cc-4c18d90cfb42","plan":"Standard","status":"Pending","payment_method":"Alipay","subscription_term":"Weekly","payment_term":"Full subscription","user_id":6149,"dt_current_timestamp":1621423992651},{"id":7435,"uid":"21cf01fd-d0ff-4036-917d-6d99419bd429","plan":"Basic","status":"Blocked","payment_method":"Money transfer","subscription_term":"Biennal","payment_term":"Payment in advance","user_id":7677,"dt_current_timestamp":1621423992651},{"id":9893,"uid":"1460c542-1511-451c-8c0d-669ea95f3fe9","plan":"Diamond","status":"Idle","payment_method":"WeChat Pay","subscription_term":"Biennal","payment_term":"Full subscription","user_id":2031,"dt_current_timestamp":1621423992651},{"id":1719,"uid":"0245c575-2a2e-4447-bf95-edc70c71605b","plan":"Basic","status":"Idle","payment_method":"Bitcoins","subscription_term":"Monthly","payment_term":"Monthly","user_id":7264,"dt_current_timestamp":1621423992651},{"id":6719,"uid":"0d95478e-508e-47f5-b912-9936a56f9ada","plan":"Diamond","status":"Active","payment_method":"Google Pay","subscription_term":"Quinquennal","payment_term":"Monthly","user_id":5017,"dt_current_timestamp":1621423992651},{"id":9572,"uid":"704880fd-0860-4cfa-961b-9e1f524412b6","plan":"Diamond","status":"Idle","payment_method":"WeChat Pay","subscription_term":"Weekly","payment_term":"Annual","user_id":2474,"dt_current_timestamp":1621423992651},{"id":721,"uid":"68a994cb-89e8-462a-a01f-a78cb6bb8b0a","plan":"Basic","status":"Pending","payment_method":"Credit card","subscription_term":"Lifetime","payment_term":"Payment in advance","user_id":8837,"dt_current_timestamp":1621423992651},{"id":6563,"uid":"4ac9f1fc-d513-456f-8952-2fa7070706a7","plan":"Starter","status":"Pending","payment_method":"Visa checkout","subscription_term":"Lifetime","payment_term":"Payment in advance","user_id":9676,"dt_current_timestamp":1621423992651},{"id":6312,"uid":"1a4fb46e-f913-497f-805a-6192232bfebc","plan":"Business","status":"Active","payment_method":"Visa checkout","subscription_term":"Quinquennal","payment_term":"Payment in advance","user_id":6205,"dt_current_timestamp":1621423992651},{"id":2849,"uid":"e1b1311b-2ee3-4911-b90e-230662fefa6c","plan":"Bronze","status":"Pending","payment_method":"Money transfer","subscription_term":"Triennal","payment_term":"Payment in advance","user_id":9408,"dt_current_timestamp":1621423992651},{"id":6511,"uid":"6db26098-20d5-4895-a197-f0e56189376c","plan":"Standard","status":"Blocked","payment_method":"WeChat Pay","subscription_term":"Triennal","payment_term":"Full subscription","user_id":5204,"dt_current_timestamp":1621423992651},{"id":8368,"uid":"3bf1cfa1-17bd-41c4-ba53-473e0e526908","plan":"Gold","status":"Idle","payment_method":"Debit card","subscription_term":"Daily","payment_term":"Full subscription","user_id":6155,"dt_current_timestamp":1621423992651}]
--------------------------------------------------------------------------------
/datalake/landing/subscription/subscription_2021_5_19_11_33_47.json:
--------------------------------------------------------------------------------
1 | [{"id":2417,"uid":"a1f87f95-4281-4583-afac-c673f2d4a9ce","plan":"Bronze","status":"Pending","payment_method":"Google Pay","subscription_term":"Daily","payment_term":"Payment in advance","user_id":1939,"dt_current_timestamp":1621424028778},{"id":9545,"uid":"1d3e6464-b8d6-4825-bab1-5b254c06562d","plan":"Standard","status":"Active","payment_method":"Visa checkout","subscription_term":"Triennal","payment_term":"Payment in advance","user_id":7010,"dt_current_timestamp":1621424028778},{"id":2875,"uid":"7cef3c76-e3b1-4a55-a380-280f138b6987","plan":"Basic","status":"Pending","payment_method":"Cash","subscription_term":"Biennal","payment_term":"Monthly","user_id":7001,"dt_current_timestamp":1621424028778},{"id":3087,"uid":"a692dff8-9389-4cc7-b144-375096fdcb9b","plan":"Platinum","status":"Blocked","payment_method":"Money transfer","subscription_term":"Annual","payment_term":"Monthly","user_id":4555,"dt_current_timestamp":1621424028778},{"id":929,"uid":"57d4efaf-c183-4c32-aef1-33d712ac2ead","plan":"Student","status":"Pending","payment_method":"Bitcoins","subscription_term":"Weekly","payment_term":"Payment in advance","user_id":5969,"dt_current_timestamp":1621424028778},{"id":154,"uid":"c771b499-f780-4ea2-a080-92fc2279c70a","plan":"Student","status":"Blocked","payment_method":"WeChat Pay","subscription_term":"Monthly","payment_term":"Monthly","user_id":9385,"dt_current_timestamp":1621424028778},{"id":81,"uid":"8e4afc2b-f61a-4bb5-bf22-ab0adb25e37f","plan":"Professional","status":"Idle","payment_method":"Visa checkout","subscription_term":"Triennal","payment_term":"Annual","user_id":9333,"dt_current_timestamp":1621424028778},{"id":7981,"uid":"fd1ae7b3-0242-4c8a-8bfd-54acef7a6e50","plan":"Standard","status":"Blocked","payment_method":"Google Pay","subscription_term":"Monthly","payment_term":"Monthly","user_id":1121,"dt_current_timestamp":1621424028778},{"id":6866,"uid":"7f7b0cd2-8b32-4fba-99be-bf4957fd55d1","plan":"Silver","status":"Active","payment_method":"WeChat Pay","subscription_term":"Quinquennal","payment_term":"Payment in advance","user_id":4231,"dt_current_timestamp":1621424028778},{"id":5109,"uid":"16ba4d95-2858-42cb-ab66-9636e338df98","plan":"Silver","status":"Active","payment_method":"Cheque","subscription_term":"Biennal","payment_term":"Payment in advance","user_id":8190,"dt_current_timestamp":1621424028778},{"id":118,"uid":"025121c7-6e39-42e5-ae6a-dc592d3abf21","plan":"Student","status":"Blocked","payment_method":"Bitcoins","subscription_term":"Weekly","payment_term":"Full subscription","user_id":8055,"dt_current_timestamp":1621424028778},{"id":4863,"uid":"ed21b4da-d37e-4a2d-b293-7e1bb34258f6","plan":"Starter","status":"Blocked","payment_method":"Money transfer","subscription_term":"Biennal","payment_term":"Full subscription","user_id":2865,"dt_current_timestamp":1621424028778},{"id":5871,"uid":"cae73940-cc30-48f2-a61a-64cfdf424c05","plan":"Starter","status":"Idle","payment_method":"Credit card","subscription_term":"Weekly","payment_term":"Annual","user_id":6428,"dt_current_timestamp":1621424028778},{"id":7306,"uid":"f766d43b-02b2-4d27-b2a2-df4f5fa093ed","plan":"Basic","status":"Blocked","payment_method":"Visa checkout","subscription_term":"Lifetime","payment_term":"Monthly","user_id":8482,"dt_current_timestamp":1621424028778},{"id":187,"uid":"73f07ae3-a10a-4ada-9964-2694777e3849","plan":"Silver","status":"Active","payment_method":"Apple Pay","subscription_term":"Lifetime","payment_term":"Full subscription","user_id":8964,"dt_current_timestamp":1621424028778},{"id":930,"uid":"803747bc-deff-41e6-b3b0-06a62ce6a233","plan":"Bronze","status":"Pending","payment_method":"Bitcoins","subscription_term":"Weekly","payment_term":"Monthly","user_id":7527,"dt_current_timestamp":1621424028778},{"id":2675,"uid":"fb9791d4-88a6-43e1-a178-4922adfabb31","plan":"Standard","status":"Active","payment_method":"Cash","subscription_term":"Monthly","payment_term":"Annual","user_id":5574,"dt_current_timestamp":1621424028778},{"id":6549,"uid":"bd863858-d310-4553-8bca-76ae28d94e90","plan":"Gold","status":"Active","payment_method":"WeChat Pay","subscription_term":"Monthly","payment_term":"Payment in advance","user_id":7699,"dt_current_timestamp":1621424028778},{"id":9393,"uid":"983a6080-a974-4f82-83da-d41a5155a919","plan":"Business","status":"Idle","payment_method":"Paypal","subscription_term":"Biennal","payment_term":"Full subscription","user_id":6452,"dt_current_timestamp":1621424028778},{"id":963,"uid":"255fd30d-c908-4559-b7c8-794368973576","plan":"Starter","status":"Pending","payment_method":"Debit card","subscription_term":"Triennal","payment_term":"Full subscription","user_id":6537,"dt_current_timestamp":1621424028778},{"id":3622,"uid":"1e6448e3-58a2-4f24-8897-b46132169745","plan":"Platinum","status":"Idle","payment_method":"Visa checkout","subscription_term":"Annual","payment_term":"Full subscription","user_id":3238,"dt_current_timestamp":1621424028778},{"id":4019,"uid":"3cf5b9be-3b02-4876-b094-7a8700eecace","plan":"Premium","status":"Blocked","payment_method":"Debit card","subscription_term":"Lifetime","payment_term":"Payment in advance","user_id":2125,"dt_current_timestamp":1621424028778},{"id":5887,"uid":"10f61e88-f706-4c3f-a7a6-9ba345bca02b","plan":"Basic","status":"Pending","payment_method":"WeChat Pay","subscription_term":"Annual","payment_term":"Monthly","user_id":197,"dt_current_timestamp":1621424028778},{"id":7215,"uid":"a53fd8bf-52ef-44f3-8fd8-6aec1cf46713","plan":"Free Trial","status":"Active","payment_method":"Google Pay","subscription_term":"Biennal","payment_term":"Payment in advance","user_id":1430,"dt_current_timestamp":1621424028778},{"id":6499,"uid":"e782869d-e9f5-4e50-a5a5-eb2915f2c4d6","plan":"Starter","status":"Idle","payment_method":"Alipay","subscription_term":"Triennal","payment_term":"Payment in advance","user_id":8027,"dt_current_timestamp":1621424028778},{"id":9728,"uid":"5954d0b7-bdae-47cd-bd02-27eb922093d8","plan":"Bronze","status":"Pending","payment_method":"Debit card","subscription_term":"Triennal","payment_term":"Monthly","user_id":102,"dt_current_timestamp":1621424028778},{"id":8805,"uid":"32582865-c8bc-412d-b1a3-3230b83cac20","plan":"Free Trial","status":"Blocked","payment_method":"Debit card","subscription_term":"Lifetime","payment_term":"Payment in advance","user_id":3826,"dt_current_timestamp":1621424028778},{"id":190,"uid":"d8c3e775-cf89-4126-86ed-31d454844e1e","plan":"Diamond","status":"Idle","payment_method":"Credit card","subscription_term":"Daily","payment_term":"Payment in advance","user_id":3315,"dt_current_timestamp":1621424028778},{"id":952,"uid":"ff7b1fe4-ff06-4ba8-b773-85286abe88c1","plan":"Starter","status":"Idle","payment_method":"Money transfer","subscription_term":"Lifetime","payment_term":"Payment in advance","user_id":3581,"dt_current_timestamp":1621424028778},{"id":3546,"uid":"be7c7642-047f-49c3-ad15-26fd5014b9e9","plan":"Platinum","status":"Idle","payment_method":"Alipay","subscription_term":"Monthly","payment_term":"Monthly","user_id":8105,"dt_current_timestamp":1621424028778},{"id":9445,"uid":"b7344626-7979-49c9-b412-b68188f42772","plan":"Bronze","status":"Blocked","payment_method":"Apple Pay","subscription_term":"Biennal","payment_term":"Annual","user_id":4265,"dt_current_timestamp":1621424028778},{"id":8554,"uid":"adb0536a-d70d-4136-acd6-7cf806867abc","plan":"Professional","status":"Idle","payment_method":"Cheque","subscription_term":"Monthly","payment_term":"Annual","user_id":9291,"dt_current_timestamp":1621424028778},{"id":8642,"uid":"817d6563-e7a8-40bd-8084-5a54ab2fdd5a","plan":"Basic","status":"Blocked","payment_method":"Debit card","subscription_term":"Monthly","payment_term":"Annual","user_id":4492,"dt_current_timestamp":1621424028778},{"id":7347,"uid":"6723e792-7a09-4b7b-a239-d84292be3619","plan":"Premium","status":"Blocked","payment_method":"Cash","subscription_term":"Daily","payment_term":"Annual","user_id":243,"dt_current_timestamp":1621424028778},{"id":5219,"uid":"99a3394f-fe89-4bbc-b15f-408d43f6d653","plan":"Starter","status":"Pending","payment_method":"Bitcoins","subscription_term":"Triennal","payment_term":"Payment in advance","user_id":61,"dt_current_timestamp":1621424028778},{"id":2636,"uid":"538f691f-3adc-413c-b895-50512dfabf81","plan":"Standard","status":"Active","payment_method":"Alipay","subscription_term":"Annual","payment_term":"Monthly","user_id":8740,"dt_current_timestamp":1621424028778},{"id":6508,"uid":"9078ecfa-f0e6-4ee2-8a89-f7ff97671d41","plan":"Free Trial","status":"Active","payment_method":"Cheque","subscription_term":"Annual","payment_term":"Monthly","user_id":9537,"dt_current_timestamp":1621424028778},{"id":8603,"uid":"3e5de8f1-0f46-4cb3-93a7-617ea42806bf","plan":"Student","status":"Idle","payment_method":"WeChat Pay","subscription_term":"Biennal","payment_term":"Annual","user_id":3689,"dt_current_timestamp":1621424028778},{"id":4697,"uid":"7153ef60-401f-45ce-9c25-7278abd8d80a","plan":"Gold","status":"Active","payment_method":"Visa checkout","subscription_term":"Daily","payment_term":"Payment in advance","user_id":914,"dt_current_timestamp":1621424028778},{"id":1437,"uid":"2b185b7a-c3d6-422d-8a56-e8211a95454f","plan":"Bronze","status":"Blocked","payment_method":"Visa checkout","subscription_term":"Triennal","payment_term":"Full subscription","user_id":6372,"dt_current_timestamp":1621424028778},{"id":6452,"uid":"9d7e378c-0a57-4dcd-ae0c-e5449bb5371d","plan":"Bronze","status":"Pending","payment_method":"Apple Pay","subscription_term":"Biennal","payment_term":"Payment in advance","user_id":1696,"dt_current_timestamp":1621424028778},{"id":7091,"uid":"755736d0-6373-47fe-b5fb-de437612f841","plan":"Free Trial","status":"Pending","payment_method":"WeChat Pay","subscription_term":"Quinquennal","payment_term":"Full subscription","user_id":6449,"dt_current_timestamp":1621424028778},{"id":2429,"uid":"1dc25a35-9bfc-4a40-a034-c1cead95dac4","plan":"Diamond","status":"Pending","payment_method":"WeChat Pay","subscription_term":"Lifetime","payment_term":"Full subscription","user_id":5788,"dt_current_timestamp":1621424028778},{"id":8075,"uid":"eaff40f9-3fed-4374-b85d-a31e18244620","plan":"Student","status":"Active","payment_method":"Bitcoins","subscription_term":"Monthly","payment_term":"Full subscription","user_id":7796,"dt_current_timestamp":1621424028778},{"id":2116,"uid":"ee1be0cc-2a26-4cf0-816c-c57d31b6a41e","plan":"Student","status":"Blocked","payment_method":"Bitcoins","subscription_term":"Monthly","payment_term":"Annual","user_id":9337,"dt_current_timestamp":1621424028778},{"id":9609,"uid":"3ea85914-771e-4f48-ac85-a58035bb806b","plan":"Basic","status":"Blocked","payment_method":"Bitcoins","subscription_term":"Daily","payment_term":"Annual","user_id":6253,"dt_current_timestamp":1621424028778},{"id":2044,"uid":"ba26ce58-4cce-4a9a-a861-0083fa7eed6e","plan":"Student","status":"Pending","payment_method":"Money transfer","subscription_term":"Triennal","payment_term":"Monthly","user_id":8823,"dt_current_timestamp":1621424028778},{"id":1894,"uid":"e1a87bee-29cd-46df-a88b-cc1350736a70","plan":"Student","status":"Blocked","payment_method":"Apple Pay","subscription_term":"Biennal","payment_term":"Full subscription","user_id":7628,"dt_current_timestamp":1621424028778},{"id":2516,"uid":"b0e148ac-8418-4e48-86c8-892b0236b8da","plan":"Professional","status":"Active","payment_method":"Cash","subscription_term":"Daily","payment_term":"Annual","user_id":9756,"dt_current_timestamp":1621424028778},{"id":9253,"uid":"8d1d5657-a64a-4f07-9876-2b8502558787","plan":"Premium","status":"Pending","payment_method":"Bitcoins","subscription_term":"Quinquennal","payment_term":"Annual","user_id":8393,"dt_current_timestamp":1621424028778},{"id":8338,"uid":"8d484d36-65ea-4eca-89b3-6afab86d930d","plan":"Bronze","status":"Blocked","payment_method":"Credit card","subscription_term":"Triennal","payment_term":"Full subscription","user_id":171,"dt_current_timestamp":1621424028778},{"id":3750,"uid":"ee31dc11-1c7f-4887-9749-740e61b4660e","plan":"Silver","status":"Active","payment_method":"Cash","subscription_term":"Weekly","payment_term":"Full subscription","user_id":6093,"dt_current_timestamp":1621424028778},{"id":9733,"uid":"40dc63a0-16f2-4ce7-b1f4-53834fb29a23","plan":"Platinum","status":"Blocked","payment_method":"Alipay","subscription_term":"Lifetime","payment_term":"Full subscription","user_id":2131,"dt_current_timestamp":1621424028778},{"id":3686,"uid":"fbfd77b5-b1f0-49af-bcb8-8b691dd89e8d","plan":"Essential","status":"Pending","payment_method":"Google Pay","subscription_term":"Lifetime","payment_term":"Payment in advance","user_id":1352,"dt_current_timestamp":1621424028778},{"id":9667,"uid":"d70a627b-fed6-410a-8692-1444e2ddfb1d","plan":"Standard","status":"Active","payment_method":"WeChat Pay","subscription_term":"Weekly","payment_term":"Payment in advance","user_id":4260,"dt_current_timestamp":1621424028778},{"id":1757,"uid":"04938171-c99a-4ad9-bc50-a41a78bd603b","plan":"Essential","status":"Active","payment_method":"Cheque","subscription_term":"Biennal","payment_term":"Annual","user_id":9684,"dt_current_timestamp":1621424028778},{"id":2477,"uid":"006350fc-0248-4c43-891b-65d35a3b00c2","plan":"Bronze","status":"Pending","payment_method":"Visa checkout","subscription_term":"Triennal","payment_term":"Full subscription","user_id":5290,"dt_current_timestamp":1621424028778},{"id":7495,"uid":"d78f7592-9674-48da-b1d3-b1f3c3b067e1","plan":"Platinum","status":"Blocked","payment_method":"Apple Pay","subscription_term":"Daily","payment_term":"Annual","user_id":5844,"dt_current_timestamp":1621424028778},{"id":1757,"uid":"60d28822-ac1e-4c70-96a8-d4ee1c1991d6","plan":"Essential","status":"Idle","payment_method":"WeChat Pay","subscription_term":"Triennal","payment_term":"Full subscription","user_id":2325,"dt_current_timestamp":1621424028778},{"id":3115,"uid":"2c054704-ddfa-40c8-a69e-b4d5b7a4f046","plan":"Student","status":"Active","payment_method":"Paypal","subscription_term":"Annual","payment_term":"Payment in advance","user_id":3728,"dt_current_timestamp":1621424028778},{"id":6124,"uid":"e132c3ff-470f-45f1-8ad0-12b7b4272f2d","plan":"Business","status":"Blocked","payment_method":"Cheque","subscription_term":"Weekly","payment_term":"Annual","user_id":7125,"dt_current_timestamp":1621424028778},{"id":9626,"uid":"bbdbc614-cf76-4538-b8ec-2352e38f60e7","plan":"Standard","status":"Blocked","payment_method":"Money transfer","subscription_term":"Triennal","payment_term":"Monthly","user_id":695,"dt_current_timestamp":1621424028778},{"id":7301,"uid":"ab576a6d-8924-4f24-b166-98adc4f3fd81","plan":"Standard","status":"Idle","payment_method":"Cash","subscription_term":"Monthly","payment_term":"Full subscription","user_id":7993,"dt_current_timestamp":1621424028778},{"id":2747,"uid":"3127d386-2c6d-4c55-8f9b-c30c050a2e65","plan":"Gold","status":"Idle","payment_method":"Google Pay","subscription_term":"Monthly","payment_term":"Annual","user_id":3466,"dt_current_timestamp":1621424028778},{"id":1204,"uid":"4cd1aa76-37b7-433d-be51-9051131fa07a","plan":"Professional","status":"Blocked","payment_method":"Visa checkout","subscription_term":"Weekly","payment_term":"Payment in advance","user_id":5319,"dt_current_timestamp":1621424028778},{"id":9784,"uid":"77ff82b8-c4d9-4fce-b28a-05f818f5bc53","plan":"Premium","status":"Pending","payment_method":"Bitcoins","subscription_term":"Monthly","payment_term":"Full subscription","user_id":1782,"dt_current_timestamp":1621424028778},{"id":2619,"uid":"98502399-b076-4f84-b96b-c8a7133e2145","plan":"Professional","status":"Active","payment_method":"Money transfer","subscription_term":"Monthly","payment_term":"Monthly","user_id":6548,"dt_current_timestamp":1621424028778},{"id":2414,"uid":"8dcc4905-20f5-4dbc-be50-ca1398888b97","plan":"Essential","status":"Idle","payment_method":"Cheque","subscription_term":"Quinquennal","payment_term":"Annual","user_id":594,"dt_current_timestamp":1621424028778},{"id":6398,"uid":"5f16acf9-9442-466c-8217-e8d8c2118361","plan":"Business","status":"Idle","payment_method":"Money transfer","subscription_term":"Lifetime","payment_term":"Annual","user_id":7001,"dt_current_timestamp":1621424028778},{"id":7877,"uid":"27671bd6-260c-4766-8592-2df5f89b88bb","plan":"Student","status":"Idle","payment_method":"Bitcoins","subscription_term":"Monthly","payment_term":"Full subscription","user_id":2955,"dt_current_timestamp":1621424028778},{"id":6765,"uid":"28033167-6b2b-4c00-ae57-29cc06a08ac7","plan":"Free Trial","status":"Blocked","payment_method":"Alipay","subscription_term":"Biennal","payment_term":"Full subscription","user_id":6865,"dt_current_timestamp":1621424028778},{"id":6073,"uid":"36651d4e-ebb6-41bb-81d0-1fabe7c5fb13","plan":"Professional","status":"Blocked","payment_method":"Money transfer","subscription_term":"Monthly","payment_term":"Payment in advance","user_id":6662,"dt_current_timestamp":1621424028778},{"id":3449,"uid":"e13f3705-d3e5-4adb-ab03-8a8c89772906","plan":"Gold","status":"Idle","payment_method":"Paypal","subscription_term":"Quinquennal","payment_term":"Annual","user_id":8800,"dt_current_timestamp":1621424028778},{"id":8537,"uid":"a68d976c-7621-42f7-8a4c-29f50e8f7e8a","plan":"Free Trial","status":"Pending","payment_method":"Credit card","subscription_term":"Biennal","payment_term":"Monthly","user_id":2196,"dt_current_timestamp":1621424028778},{"id":6354,"uid":"b2815fd4-d5b6-428b-8191-11a1c498c276","plan":"Gold","status":"Idle","payment_method":"Bitcoins","subscription_term":"Quinquennal","payment_term":"Payment in advance","user_id":8740,"dt_current_timestamp":1621424028778},{"id":752,"uid":"22c0fe5d-5371-41e0-94c2-a1fd4fd7d486","plan":"Professional","status":"Idle","payment_method":"Cheque","subscription_term":"Lifetime","payment_term":"Payment in advance","user_id":852,"dt_current_timestamp":1621424028778},{"id":4777,"uid":"cd34f1b5-1f94-4f7e-81e0-8d4bff4ec8f4","plan":"Essential","status":"Active","payment_method":"Cheque","subscription_term":"Monthly","payment_term":"Monthly","user_id":2000,"dt_current_timestamp":1621424028778},{"id":5757,"uid":"31294c03-6c88-4861-b2f1-d8944e1b3e50","plan":"Standard","status":"Pending","payment_method":"Credit card","subscription_term":"Annual","payment_term":"Full subscription","user_id":7343,"dt_current_timestamp":1621424028778},{"id":1024,"uid":"370627a5-90ca-4da6-b975-3c6b72233487","plan":"Student","status":"Active","payment_method":"Bitcoins","subscription_term":"Annual","payment_term":"Monthly","user_id":1886,"dt_current_timestamp":1621424028778},{"id":8519,"uid":"00cead45-4758-4017-b9ba-ac6abd8de324","plan":"Student","status":"Idle","payment_method":"Google Pay","subscription_term":"Monthly","payment_term":"Monthly","user_id":1207,"dt_current_timestamp":1621424028778},{"id":7222,"uid":"adeeb1de-0315-405d-93ce-f3471d3e7f9c","plan":"Bronze","status":"Pending","payment_method":"Bitcoins","subscription_term":"Lifetime","payment_term":"Monthly","user_id":9594,"dt_current_timestamp":1621424028778},{"id":6951,"uid":"e7dcb074-314c-47ae-a0dc-b30f16adb390","plan":"Silver","status":"Idle","payment_method":"Google Pay","subscription_term":"Biennal","payment_term":"Annual","user_id":5065,"dt_current_timestamp":1621424028778},{"id":4308,"uid":"3212368e-c0ed-43ae-b6d9-9888df7acf36","plan":"Business","status":"Blocked","payment_method":"Bitcoins","subscription_term":"Biennal","payment_term":"Full subscription","user_id":1025,"dt_current_timestamp":1621424028778},{"id":204,"uid":"80423894-e069-4108-8a5f-384824c43823","plan":"Standard","status":"Blocked","payment_method":"Cash","subscription_term":"Weekly","payment_term":"Annual","user_id":2320,"dt_current_timestamp":1621424028778},{"id":5455,"uid":"2b243cf8-fe07-4880-8a6d-5ec7f049638c","plan":"Premium","status":"Blocked","payment_method":"WeChat Pay","subscription_term":"Weekly","payment_term":"Payment in advance","user_id":6782,"dt_current_timestamp":1621424028778},{"id":2375,"uid":"e926abe7-7f33-4179-8c9f-4aa7345f95b2","plan":"Silver","status":"Active","payment_method":"Apple Pay","subscription_term":"Weekly","payment_term":"Monthly","user_id":715,"dt_current_timestamp":1621424028778},{"id":3714,"uid":"63f33bce-054b-4639-9844-08f88c620534","plan":"Basic","status":"Blocked","payment_method":"Alipay","subscription_term":"Daily","payment_term":"Full subscription","user_id":5441,"dt_current_timestamp":1621424028778},{"id":8073,"uid":"ee274334-7646-4e6a-b5e6-081ad7a4fcdb","plan":"Free Trial","status":"Blocked","payment_method":"Debit card","subscription_term":"Triennal","payment_term":"Monthly","user_id":5672,"dt_current_timestamp":1621424028778},{"id":821,"uid":"9d1e1d99-ddb9-4f5c-82a8-48ffed6d7bac","plan":"Student","status":"Blocked","payment_method":"WeChat Pay","subscription_term":"Lifetime","payment_term":"Monthly","user_id":4659,"dt_current_timestamp":1621424028778},{"id":5026,"uid":"3ac326f3-68db-4782-96d2-8936bb836e95","plan":"Basic","status":"Pending","payment_method":"Money transfer","subscription_term":"Annual","payment_term":"Annual","user_id":3086,"dt_current_timestamp":1621424028778},{"id":47,"uid":"2aee7eaa-3c3b-4845-80e9-818ff62b1a57","plan":"Diamond","status":"Active","payment_method":"Debit card","subscription_term":"Triennal","payment_term":"Full subscription","user_id":6810,"dt_current_timestamp":1621424028778},{"id":7354,"uid":"aa76ef08-ef0b-4fc5-a5e3-cea4f84ef083","plan":"Business","status":"Pending","payment_method":"Alipay","subscription_term":"Annual","payment_term":"Monthly","user_id":1613,"dt_current_timestamp":1621424028778},{"id":1493,"uid":"6967730b-3660-4f6a-b0c1-f28fc6936c91","plan":"Student","status":"Blocked","payment_method":"Paypal","subscription_term":"Triennal","payment_term":"Full subscription","user_id":8663,"dt_current_timestamp":1621424028778},{"id":5876,"uid":"7bed383e-e440-46fb-9748-db3bccffa87b","plan":"Student","status":"Blocked","payment_method":"Apple Pay","subscription_term":"Annual","payment_term":"Full subscription","user_id":8471,"dt_current_timestamp":1621424028778},{"id":9084,"uid":"65e53ea2-0e03-41bd-b545-b18e498afdf0","plan":"Silver","status":"Active","payment_method":"Debit card","subscription_term":"Lifetime","payment_term":"Full subscription","user_id":2759,"dt_current_timestamp":1621424028778},{"id":8416,"uid":"e0c790fb-c5bd-44b8-bbc9-df269cfbe9f2","plan":"Starter","status":"Active","payment_method":"Paypal","subscription_term":"Biennal","payment_term":"Monthly","user_id":7177,"dt_current_timestamp":1621424028778},{"id":8740,"uid":"07c214cb-da12-4972-9588-6bdb64383e6f","plan":"Diamond","status":"Blocked","payment_method":"WeChat Pay","subscription_term":"Lifetime","payment_term":"Annual","user_id":8903,"dt_current_timestamp":1621424028778},{"id":7992,"uid":"c08db57f-f67f-4211-9493-f52575b40f4a","plan":"Professional","status":"Idle","payment_method":"Google Pay","subscription_term":"Biennal","payment_term":"Payment in advance","user_id":2740,"dt_current_timestamp":1621424028778},{"id":3007,"uid":"ad035b8f-c153-40f5-8f9c-c730102dc74c","plan":"Diamond","status":"Pending","payment_method":"Money transfer","subscription_term":"Biennal","payment_term":"Annual","user_id":7618,"dt_current_timestamp":1621424028778},{"id":4418,"uid":"1eefa1c3-c882-4571-b99e-e54974f66722","plan":"Basic","status":"Pending","payment_method":"Credit card","subscription_term":"Quinquennal","payment_term":"Annual","user_id":6775,"dt_current_timestamp":1621424028778}]
--------------------------------------------------------------------------------
/main.py:
--------------------------------------------------------------------------------
1 | from src.bronze import data_transfer_landing_to_bronze as dtlb
2 | from src.silver import data_process_bronze_to_silver as dpbts
3 | from src.gold import data_process_silver_to_gold as dpstg
4 |
5 | if __name__ == '__main__':
6 | dtlb()
7 | dpbts()
8 | dpstg()
--------------------------------------------------------------------------------
/requirements.txt:
--------------------------------------------------------------------------------
1 | py4j==0.10.9.5
2 | pyspark==3.3.2
3 | delta-spark==2.3.0
4 |
--------------------------------------------------------------------------------
/src/__init__.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/carlosbtech/deltalake-architecture/f0e72a547fd3c3e0999fab08384285ac14b8d432/src/__init__.py
--------------------------------------------------------------------------------
/src/bronze.py:
--------------------------------------------------------------------------------
1 | from aux import aux
2 |
3 | def data_transfer_landing_to_bronze():
4 | spark = aux.create_spark_session('bronze')
5 |
6 | tables = ['vehicle', 'subscription', 'movies' , 'user']
7 |
8 | for table in tables:
9 | data = f'datalake/landing/{table}/*.json'
10 |
11 | df = aux.read_data(spark, data, 'json')
12 |
13 | delta_processing_store_zone = f'datalake/bronze/{table}_bronze'
14 | aux.write_data(df, delta_processing_store_zone, 'append')
15 |
16 | spark.stop()
--------------------------------------------------------------------------------
/src/gold.py:
--------------------------------------------------------------------------------
1 | from aux import aux
2 | from aux.query import GOLD_QUERY
3 |
4 | def data_process_silver_to_gold():
5 | spark = aux.create_spark_session('gold')
6 |
7 | data_path = 'datalake/silver/dataset_user_payments_silver'
8 | df_user_payment = aux.read_data(spark, data_path, 'delta')
9 | df_user_payment.createOrReplaceTempView('vw_user_payment')
10 |
11 | dataset = spark.sql(GOLD_QUERY)
12 | delta_gold_store_zone = 'datalake/gold/dataset_user_payments_gold/'
13 | aux.write_data(dataset, delta_gold_store_zone, 'overwrite')
14 |
15 | spark.stop()
--------------------------------------------------------------------------------
/src/silver.py:
--------------------------------------------------------------------------------
1 | from aux import aux
2 | from aux.query import SILVER_QUERY
3 |
4 | def data_process_bronze_to_silver():
5 | spark = aux.create_spark_session('silver')
6 |
7 | tables = ['vehicle', 'subscription', 'movies' , 'user', 'payments']
8 |
9 | for table in tables:
10 | data_path = f'datalake/bronze/{table}_bronze'
11 | df = aux.read_data(spark, data_path, 'delta')
12 | df.createOrReplaceTempView(table)
13 |
14 | df = spark.sql(SILVER_QUERY)
15 | delta_processing_store_zone = 'datalake/silver/dataset_user_payments_silver'
16 | aux.write_data(df, delta_processing_store_zone, 'append')
17 |
18 | spark.stop()
19 |
--------------------------------------------------------------------------------