diff --git a/app/models/provider/plaid.rb b/app/models/provider/plaid.rb index a1ab698e..44cc9f34 100644 --- a/app/models/provider/plaid.rb +++ b/app/models/provider/plaid.rb @@ -106,8 +106,8 @@ class Provider::Plaid client.item_remove(request) end - def get_item_accounts(item) - request = Plaid::AccountsGetRequest.new(access_token: item.access_token) + def get_item_accounts(access_token) + request = Plaid::AccountsGetRequest.new(access_token: access_token) client.accounts_get(request) end diff --git a/app/models/provider/plaid_sandbox.rb b/app/models/provider/plaid_sandbox.rb index c4f94066..cec6e065 100644 --- a/app/models/provider/plaid_sandbox.rb +++ b/app/models/provider/plaid_sandbox.rb @@ -6,15 +6,13 @@ class Provider::PlaidSandbox < Provider::Plaid @region = :us end - def create_public_token(institution_id: nil, products: nil, user: nil) + def create_public_token(username: nil) client.sandbox_public_token_create( Plaid::SandboxPublicTokenCreateRequest.new( - institution_id: institution_id || "ins_56", # Chase - initial_products: products || [ "transactions", "investments", "liabilities" ], + institution_id: "ins_109508", # "First Platypus Bank" (Plaid's sandbox institution that works with all products) + initial_products: [ "transactions", "investments", "liabilities" ], options: { - # This is a custom user we created in Plaid Dashboard - # See https://dashboard.plaid.com/developers/sandbox - override_username: user || "custom_test" + override_username: username || "custom_test" } ) ).public_token diff --git a/db/schema.rb b/db/schema.rb index 7c4a65ce..ed2e26c9 100644 --- a/db/schema.rb +++ b/db/schema.rb @@ -10,7 +10,7 @@ # # It's strongly recommended that you check this file into your version control system. -ActiveRecord::Schema[7.2].define(version: 2025_05_18_133020) do +ActiveRecord::Schema[7.2].define(version: 2025_05_18_181619) do # These are extensions that must be enabled in order to support this database enable_extension "pgcrypto" enable_extension "plpgsql" diff --git a/test/models/provider/plaid_test.rb b/test/models/provider/plaid_test.rb index ce2c8765..765e31d9 100644 --- a/test/models/provider/plaid_test.rb +++ b/test/models/provider/plaid_test.rb @@ -35,20 +35,34 @@ class Provider::PlaidTest < ActiveSupport::TestCase access_token = get_access_token item = @plaid.get_item(access_token).item - assert_equal "ins_56", item.institution_id - assert_equal "Chase", item.institution_name + assert_equal "ins_109508", item.institution_id + assert_equal "First Platypus Bank", item.institution_name end end + test "gets item accounts" do + VCR.use_cassette("plaid/get_item_accounts") do + access_token = get_access_token + accounts_response = @plaid.get_item_accounts(access_token) + + assert_equal 4, accounts_response.accounts.size + end + end + + # NOTE: This one is a bit tricky because when the item is originally created, + # no transactions will be available yet (Plaid gives no way to pre-populate txns in sandbox). + # + # To get this working on a VCR refresh: + # 1. Run this test once to create the item + # 2. Wait a minute + # 3. Turn on `record: :all` and run the test again (txns should be populated now) + # 4. Turn off `record: :all` test "gets item transactions with optional cursor for partial syncs" do - VCR.use_cassette("plaid/get_transactions_with_next_cursor", record: :all) do + VCR.use_cassette("plaid/get_transactions_with_next_cursor") do access_token = get_access_token - # First call, we get everything transactions_response = @plaid.get_transactions(access_token: access_token) - puts transactions_response.to_json - assert transactions_response.added.size > 0 # Second call, we get only the latest transactions @@ -64,20 +78,30 @@ class Provider::PlaidTest < ActiveSupport::TestCase end test "gets item investments" do - VCR.use_cassette("plaid/get_item_investments", record: :all) do + VCR.use_cassette("plaid/get_item_investments") do access_token = get_access_token investments_response = @plaid.get_item_investments(access_token: access_token) - puts investments_response.to_json + assert_equal 3, investments_response.holdings.size + assert_equal 4, investments_response.transactions.size + end + end + + test "gets item liabilities" do + VCR.use_cassette("plaid/get_item_liabilities") do + access_token = get_access_token + liabilities_response = @plaid.get_item_liabilities(access_token: access_token) + + assert liabilities_response.credit.count > 0 + assert liabilities_response.student.count > 0 end end private def get_access_token - VCR.use_cassette("plaid/exchange_public_token", record: :all) do + VCR.use_cassette("plaid/access_token") do public_token = @plaid.create_public_token exchange_response = @plaid.exchange_public_token(public_token) - exchange_response.access_token end end diff --git a/test/vcr_cassettes/plaid/access_token.yml b/test/vcr_cassettes/plaid/access_token.yml new file mode 100644 index 00000000..f6025485 --- /dev/null +++ b/test/vcr_cassettes/plaid/access_token.yml @@ -0,0 +1,124 @@ +--- +http_interactions: +- request: + method: post + uri: https://sandbox.plaid.com/sandbox/public_token/create + body: + encoding: UTF-8 + string: '{"institution_id":"ins_109508","initial_products":["transactions","investments","liabilities"],"options":{"override_username":"custom_test"}}' + headers: + Content-Type: + - application/json + User-Agent: + - Plaid Ruby v38.0.0 + Accept: + - application/json + Plaid-Client-Id: + - "" + Plaid-Version: + - '2020-09-14' + Plaid-Secret: + - "" + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + response: + status: + code: 200 + message: OK + headers: + Server: + - nginx + Date: + - Mon, 19 May 2025 15:34:39 GMT + Content-Type: + - application/json; charset=utf-8 + Content-Length: + - '110' + Connection: + - keep-alive + Plaid-Version: + - '2020-09-14' + Vary: + - Accept-Encoding + X-Envoy-Upstream-Service-Time: + - '4991' + X-Envoy-Decorator-Operation: + - default.svc-apiv2:8080/* + Strict-Transport-Security: + - max-age=31536000; includeSubDomains; preload + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Xss-Protection: + - 1; mode=block + body: + encoding: ASCII-8BIT + string: |- + { + "public_token": "public-sandbox-cd9e5fdc-bb09-4648-a453-c3debb681883", + "request_id": "mf8QVG1msqNmNs7" + } + recorded_at: Mon, 19 May 2025 15:34:39 GMT +- request: + method: post + uri: https://sandbox.plaid.com/item/public_token/exchange + body: + encoding: UTF-8 + string: '{"public_token":"public-sandbox-cd9e5fdc-bb09-4648-a453-c3debb681883"}' + headers: + Content-Type: + - application/json + User-Agent: + - Plaid Ruby v38.0.0 + Accept: + - application/json + Plaid-Client-Id: + - "" + Plaid-Version: + - '2020-09-14' + Plaid-Secret: + - "" + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + response: + status: + code: 200 + message: OK + headers: + Server: + - nginx + Date: + - Mon, 19 May 2025 15:34:39 GMT + Content-Type: + - application/json; charset=utf-8 + Content-Length: + - '164' + Connection: + - keep-alive + Plaid-Version: + - '2020-09-14' + Vary: + - Accept-Encoding + X-Envoy-Upstream-Service-Time: + - '165' + X-Envoy-Decorator-Operation: + - default.svc-apiv2:8080/* + Strict-Transport-Security: + - max-age=31536000; includeSubDomains; preload + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Xss-Protection: + - 1; mode=block + body: + encoding: ASCII-8BIT + string: |- + { + "access_token": "access-sandbox-d531d3c9-8520-43ca-9e58-5b70b79fd1d4", + "item_id": "ZvlBL5eMPQtnXDV6QrR9sRedKePzMaFgzeVqA", + "request_id": "PfP9W8bCgpIdD2G" + } + recorded_at: Mon, 19 May 2025 15:34:39 GMT +recorded_with: VCR 6.3.1 diff --git a/test/vcr_cassettes/plaid/exchange_public_token.yml b/test/vcr_cassettes/plaid/exchange_public_token.yml index 09911d97..cf701883 100644 --- a/test/vcr_cassettes/plaid/exchange_public_token.yml +++ b/test/vcr_cassettes/plaid/exchange_public_token.yml @@ -5,7 +5,7 @@ http_interactions: uri: https://sandbox.plaid.com/sandbox/public_token/create body: encoding: UTF-8 - string: '{"institution_id":"ins_56","initial_products":["transactions","investments","liabilities"],"options":{"override_username":"custom_test"}}' + string: '{"institution_id":"ins_109508","initial_products":["transactions","investments","liabilities"],"options":{"override_username":"custom_test"}}' headers: Content-Type: - application/json @@ -29,7 +29,7 @@ http_interactions: Server: - nginx Date: - - Mon, 19 May 2025 13:54:31 GMT + - Mon, 19 May 2025 15:34:33 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -41,7 +41,7 @@ http_interactions: Vary: - Accept-Encoding X-Envoy-Upstream-Service-Time: - - '2776' + - '3399' X-Envoy-Decorator-Operation: - default.svc-apiv2:8080/* Strict-Transport-Security: @@ -56,16 +56,16 @@ http_interactions: encoding: ASCII-8BIT string: |- { - "public_token": "public-sandbox-10b2d144-5203-4b0a-93f6-9ce25af4b052", - "request_id": "6zPegA0EukTP72O" + "public_token": "public-sandbox-701c57cf-4a49-44b8-a254-9c3bda72cd66", + "request_id": "kQ07S8tBwKOrExd" } - recorded_at: Mon, 19 May 2025 13:54:31 GMT + recorded_at: Mon, 19 May 2025 15:34:33 GMT - request: method: post uri: https://sandbox.plaid.com/item/public_token/exchange body: encoding: UTF-8 - string: '{"public_token":"public-sandbox-10b2d144-5203-4b0a-93f6-9ce25af4b052"}' + string: '{"public_token":"public-sandbox-701c57cf-4a49-44b8-a254-9c3bda72cd66"}' headers: Content-Type: - application/json @@ -89,7 +89,7 @@ http_interactions: Server: - nginx Date: - - Mon, 19 May 2025 13:54:31 GMT + - Mon, 19 May 2025 15:34:34 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -101,7 +101,7 @@ http_interactions: Vary: - Accept-Encoding X-Envoy-Upstream-Service-Time: - - '151' + - '156' X-Envoy-Decorator-Operation: - default.svc-apiv2:8080/* Strict-Transport-Security: @@ -116,9 +116,9 @@ http_interactions: encoding: ASCII-8BIT string: |- { - "access_token": "access-sandbox-7dd1d7be-e7de-43bd-bdce-5e2d3d757cb2", - "item_id": "PaKznRKQV9TnKx98J5mEhVE33r3MVZC7Xkv73", - "request_id": "SVKjsbMsaqdHLBJ" + "access_token": "access-sandbox-951ad956-da38-4a99-a8fd-c5b945502da8", + "item_id": "5Z6pw4gd9dTA9A6ADx9WhqZBvWgPdofZkJn4z", + "request_id": "JLgpp0qLgiJUeWT" } - recorded_at: Mon, 19 May 2025 13:54:31 GMT + recorded_at: Mon, 19 May 2025 15:34:34 GMT recorded_with: VCR 6.3.1 diff --git a/test/vcr_cassettes/plaid/get_item.yml b/test/vcr_cassettes/plaid/get_item.yml index 7e4695df..261e4a61 100644 --- a/test/vcr_cassettes/plaid/get_item.yml +++ b/test/vcr_cassettes/plaid/get_item.yml @@ -5,7 +5,7 @@ http_interactions: uri: https://sandbox.plaid.com/item/get body: encoding: UTF-8 - string: '{"access_token":"access-sandbox-60ea96d0-fe6c-41aa-a3ab-c88c33bd2f7e"}' + string: '{"access_token":"access-sandbox-d531d3c9-8520-43ca-9e58-5b70b79fd1d4"}' headers: Content-Type: - application/json @@ -29,11 +29,11 @@ http_interactions: Server: - nginx Date: - - Mon, 19 May 2025 13:53:41 GMT + - Mon, 19 May 2025 15:34:42 GMT Content-Type: - application/json; charset=utf-8 Content-Length: - - '972' + - '1071' Connection: - keep-alive Plaid-Version: @@ -41,7 +41,7 @@ http_interactions: Vary: - Accept-Encoding X-Envoy-Upstream-Service-Time: - - '142' + - '148' X-Envoy-Decorator-Operation: - default.svc-apiv2:8080/* Strict-Transport-Security: @@ -61,11 +61,14 @@ http_interactions: "assets", "auth", "balance", + "credit_details", "identity", "identity_match", + "income", "income_verification", "recurring_transactions", - "signal" + "signal", + "statements" ], "billed_products": [ "investments", @@ -73,11 +76,11 @@ http_interactions: "transactions" ], "consent_expiration_time": null, - "created_at": "2025-05-19T13:53:38Z", + "created_at": "2025-05-19T15:34:34Z", "error": null, - "institution_id": "ins_56", - "institution_name": "Chase", - "item_id": "RmaB9v7w3jTVJ6JLllAnSWVzwxvQxJCRw4RRe", + "institution_id": "ins_109508", + "institution_name": "First Platypus Bank", + "item_id": "ZvlBL5eMPQtnXDV6QrR9sRedKePzMaFgzeVqA", "products": [ "investments", "liabilities", @@ -86,18 +89,18 @@ http_interactions: "update_type": "background", "webhook": "" }, - "request_id": "OkYR6qCP5vc6iEk", + "request_id": "dP15rNDzgSoFSjz", "status": { "investments": { "last_failed_update": null, - "last_successful_update": "2025-05-19T13:53:39.616Z" + "last_successful_update": "2025-05-19T15:34:36.251Z" }, "last_webhook": null, "transactions": { "last_failed_update": null, - "last_successful_update": null + "last_successful_update": "2025-05-19T15:34:41.33Z" } } } - recorded_at: Mon, 19 May 2025 13:53:41 GMT + recorded_at: Mon, 19 May 2025 15:34:42 GMT recorded_with: VCR 6.3.1 diff --git a/test/vcr_cassettes/plaid/get_item_accounts.yml b/test/vcr_cassettes/plaid/get_item_accounts.yml new file mode 100644 index 00000000..ef75179d --- /dev/null +++ b/test/vcr_cassettes/plaid/get_item_accounts.yml @@ -0,0 +1,160 @@ +--- +http_interactions: +- request: + method: post + uri: https://sandbox.plaid.com/accounts/get + body: + encoding: UTF-8 + string: '{"access_token":"access-sandbox-d531d3c9-8520-43ca-9e58-5b70b79fd1d4"}' + headers: + Content-Type: + - application/json + User-Agent: + - Plaid Ruby v38.0.0 + Accept: + - application/json + Plaid-Client-Id: + - "" + Plaid-Version: + - '2020-09-14' + Plaid-Secret: + - "" + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + response: + status: + code: 200 + message: OK + headers: + Server: + - nginx + Date: + - Mon, 19 May 2025 15:34:41 GMT + Content-Type: + - application/json; charset=utf-8 + Content-Length: + - '2579' + Connection: + - keep-alive + Plaid-Version: + - '2020-09-14' + Vary: + - Accept-Encoding + X-Envoy-Upstream-Service-Time: + - '187' + X-Envoy-Decorator-Operation: + - default.svc-apiv2:8080/* + Strict-Transport-Security: + - max-age=31536000; includeSubDomains; preload + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Xss-Protection: + - 1; mode=block + body: + encoding: ASCII-8BIT + string: |- + { + "accounts": [ + { + "account_id": "MpWPx5o4yrcpZvwQrdbMuwX699pjDRCLX98NN", + "balances": { + "available": 15000, + "current": 15000, + "iso_currency_code": "USD", + "limit": null, + "unofficial_currency_code": null + }, + "holder_category": "personal", + "mask": "1119", + "name": "Test Student Loan Account", + "official_name": "Plaid student", + "subtype": "student", + "type": "loan" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "balances": { + "available": 11065.71, + "current": 1000, + "iso_currency_code": "USD", + "limit": 12200, + "unofficial_currency_code": null + }, + "holder_category": "personal", + "mask": "3053", + "name": "Test Credit Card Account", + "official_name": "Plaid credit card", + "subtype": "credit card", + "type": "credit" + }, + { + "account_id": "QEbZN5mMrxTnJ4XRxba9s9pKBBx4bnuwPpWZa", + "balances": { + "available": 8000, + "current": 10000, + "iso_currency_code": "USD", + "limit": null, + "unofficial_currency_code": null + }, + "holder_category": "personal", + "mask": "7330", + "name": "Test Brokerage Account", + "official_name": "Plaid brokerage", + "subtype": "brokerage", + "type": "investment" + }, + { + "account_id": "edNwr51XgAcoARVZP68vsdREvv56jafrvLlJ7", + "balances": { + "available": 10000, + "current": 10000, + "iso_currency_code": "USD", + "limit": null, + "unofficial_currency_code": null + }, + "holder_category": "personal", + "mask": "8957", + "name": "Test Depository Account", + "official_name": "Plaid checking", + "subtype": "checking", + "type": "depository" + } + ], + "item": { + "available_products": [ + "assets", + "auth", + "balance", + "credit_details", + "identity", + "identity_match", + "income", + "income_verification", + "recurring_transactions", + "signal", + "statements" + ], + "billed_products": [ + "investments", + "liabilities", + "transactions" + ], + "consent_expiration_time": null, + "error": null, + "institution_id": "ins_109508", + "institution_name": "First Platypus Bank", + "item_id": "ZvlBL5eMPQtnXDV6QrR9sRedKePzMaFgzeVqA", + "products": [ + "investments", + "liabilities", + "transactions" + ], + "update_type": "background", + "webhook": "" + }, + "request_id": "kiCPz2eRTH2DTbA" + } + recorded_at: Mon, 19 May 2025 15:34:41 GMT +recorded_with: VCR 6.3.1 diff --git a/test/vcr_cassettes/plaid/get_item_investments.yml b/test/vcr_cassettes/plaid/get_item_investments.yml index 01b82a9b..3cf7decf 100644 --- a/test/vcr_cassettes/plaid/get_item_investments.yml +++ b/test/vcr_cassettes/plaid/get_item_investments.yml @@ -5,7 +5,7 @@ http_interactions: uri: https://sandbox.plaid.com/investments/holdings/get body: encoding: UTF-8 - string: '{"access_token":"access-sandbox-01f5e5d8-b1f0-47b4-933a-6664c0064173"}' + string: '{"access_token":"access-sandbox-d531d3c9-8520-43ca-9e58-5b70b79fd1d4"}' headers: Content-Type: - application/json @@ -29,11 +29,11 @@ http_interactions: Server: - nginx Date: - - Mon, 19 May 2025 13:53:33 GMT + - Mon, 19 May 2025 15:34:41 GMT Content-Type: - application/json; charset=utf-8 Content-Length: - - '6483' + - '6200' Connection: - keep-alive Plaid-Version: @@ -58,24 +58,7 @@ http_interactions: { "accounts": [ { - "account_id": "9AokBkPa5BfWEVAe7XPqswvgkq5V6kh4J5BG7", - "balances": { - "available": 10000, - "current": 10000, - "iso_currency_code": "USD", - "limit": null, - "unofficial_currency_code": null - }, - "holder_category": "personal", - "mask": "1511", - "name": "Test Depository Account", - "official_name": "Plaid checking", - "persistent_account_id": "efe6f4d74b96154ebd8e40efafd36d8d43682c3f5cecdba620385593", - "subtype": "checking", - "type": "depository" - }, - { - "account_id": "ye6dBd4XDBTgZPB7EJwpUQqAKob31KS4vlM3L", + "account_id": "MpWPx5o4yrcpZvwQrdbMuwX699pjDRCLX98NN", "balances": { "available": 15000, "current": 15000, @@ -84,32 +67,30 @@ http_interactions: "unofficial_currency_code": null }, "holder_category": "personal", - "mask": "2471", + "mask": "1119", "name": "Test Student Loan Account", "official_name": "Plaid student", - "persistent_account_id": "75962201bbe945642e0f2cc9cb45bf6ad3fb70c1109ddac39affd9cc", "subtype": "student", "type": "loan" }, { - "account_id": "mk6JEJmGaEFB5d6Zoevbu5xnW8MmeWig3Wkm3", + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", "balances": { - "available": 11900, + "available": 11065.71, "current": 1000, "iso_currency_code": "USD", - "limit": 12900, + "limit": 12200, "unofficial_currency_code": null }, "holder_category": "personal", - "mask": "7144", + "mask": "3053", "name": "Test Credit Card Account", "official_name": "Plaid credit card", - "persistent_account_id": "43c7fc22e70c7ba9bdac1ec02ee445107d2f166703760a4dc149fdbf", "subtype": "credit card", "type": "credit" }, { - "account_id": "vP6BKBxw3KuwDNKy16v7TDvrWdnzmWiq7EJz9", + "account_id": "QEbZN5mMrxTnJ4XRxba9s9pKBBx4bnuwPpWZa", "balances": { "available": 8000, "current": 10000, @@ -118,17 +99,32 @@ http_interactions: "unofficial_currency_code": null }, "holder_category": "personal", - "mask": "8749", + "mask": "7330", "name": "Test Brokerage Account", "official_name": "Plaid brokerage", - "persistent_account_id": "28933ba7cec01ee3a8823c13aa091fada6fc38a08872dd1e12b76023", "subtype": "brokerage", "type": "investment" + }, + { + "account_id": "edNwr51XgAcoARVZP68vsdREvv56jafrvLlJ7", + "balances": { + "available": 10000, + "current": 10000, + "iso_currency_code": "USD", + "limit": null, + "unofficial_currency_code": null + }, + "holder_category": "personal", + "mask": "8957", + "name": "Test Depository Account", + "official_name": "Plaid checking", + "subtype": "checking", + "type": "depository" } ], "holdings": [ { - "account_id": "vP6BKBxw3KuwDNKy16v7TDvrWdnzmWiq7EJz9", + "account_id": "QEbZN5mMrxTnJ4XRxba9s9pKBBx4bnuwPpWZa", "cost_basis": 2000, "institution_price": 100, "institution_price_as_of": "2025-05-08", @@ -142,7 +138,7 @@ http_interactions: "vested_value": null }, { - "account_id": "vP6BKBxw3KuwDNKy16v7TDvrWdnzmWiq7EJz9", + "account_id": "QEbZN5mMrxTnJ4XRxba9s9pKBBx4bnuwPpWZa", "cost_basis": 3000, "institution_price": 1, "institution_price_as_of": "2025-05-08", @@ -156,7 +152,7 @@ http_interactions: "vested_value": null }, { - "account_id": "vP6BKBxw3KuwDNKy16v7TDvrWdnzmWiq7EJz9", + "account_id": "QEbZN5mMrxTnJ4XRxba9s9pKBBx4bnuwPpWZa", "cost_basis": 5000, "institution_price": 1, "institution_price_as_of": "2025-05-08", @@ -175,11 +171,14 @@ http_interactions: "assets", "auth", "balance", + "credit_details", "identity", "identity_match", + "income", "income_verification", "recurring_transactions", - "signal" + "signal", + "statements" ], "billed_products": [ "investments", @@ -188,9 +187,9 @@ http_interactions: ], "consent_expiration_time": null, "error": null, - "institution_id": "ins_56", - "institution_name": "Chase", - "item_id": "oB6bAblGWACoJlk9Ex8bIJg33domK6uR1yRRv", + "institution_id": "ins_109508", + "institution_name": "First Platypus Bank", + "item_id": "ZvlBL5eMPQtnXDV6QrR9sRedKePzMaFgzeVqA", "products": [ "investments", "liabilities", @@ -199,7 +198,7 @@ http_interactions: "update_type": "background", "webhook": "" }, - "request_id": "ARlPzgbuVxL6rjp", + "request_id": "He6QRKK2d3ujE2q", "securities": [ { "close_price": 1, @@ -272,13 +271,13 @@ http_interactions: } ] } - recorded_at: Mon, 19 May 2025 13:53:33 GMT + recorded_at: Mon, 19 May 2025 15:34:41 GMT - request: method: post uri: https://sandbox.plaid.com/investments/transactions/get body: encoding: UTF-8 - string: '{"access_token":"access-sandbox-01f5e5d8-b1f0-47b4-933a-6664c0064173","start_date":"2023-05-20","end_date":"2025-05-19","options":{"offset":0}}' + string: '{"access_token":"access-sandbox-d531d3c9-8520-43ca-9e58-5b70b79fd1d4","start_date":"2023-05-20","end_date":"2025-05-19","options":{"offset":0}}' headers: Content-Type: - application/json @@ -302,11 +301,11 @@ http_interactions: Server: - nginx Date: - - Mon, 19 May 2025 13:53:33 GMT + - Mon, 19 May 2025 15:34:42 GMT Content-Type: - application/json; charset=utf-8 Content-Length: - - '7248' + - '6965' Connection: - keep-alive Plaid-Version: @@ -314,7 +313,7 @@ http_interactions: Vary: - Accept-Encoding X-Envoy-Upstream-Service-Time: - - '378' + - '341' X-Envoy-Decorator-Operation: - default.svc-apiv2:8080/* Strict-Transport-Security: @@ -331,24 +330,7 @@ http_interactions: { "accounts": [ { - "account_id": "9AokBkPa5BfWEVAe7XPqswvgkq5V6kh4J5BG7", - "balances": { - "available": 10000, - "current": 10000, - "iso_currency_code": "USD", - "limit": null, - "unofficial_currency_code": null - }, - "holder_category": "personal", - "mask": "1511", - "name": "Test Depository Account", - "official_name": "Plaid checking", - "persistent_account_id": "efe6f4d74b96154ebd8e40efafd36d8d43682c3f5cecdba620385593", - "subtype": "checking", - "type": "depository" - }, - { - "account_id": "ye6dBd4XDBTgZPB7EJwpUQqAKob31KS4vlM3L", + "account_id": "MpWPx5o4yrcpZvwQrdbMuwX699pjDRCLX98NN", "balances": { "available": 15000, "current": 15000, @@ -357,32 +339,30 @@ http_interactions: "unofficial_currency_code": null }, "holder_category": "personal", - "mask": "2471", + "mask": "1119", "name": "Test Student Loan Account", "official_name": "Plaid student", - "persistent_account_id": "75962201bbe945642e0f2cc9cb45bf6ad3fb70c1109ddac39affd9cc", "subtype": "student", "type": "loan" }, { - "account_id": "mk6JEJmGaEFB5d6Zoevbu5xnW8MmeWig3Wkm3", + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", "balances": { - "available": 11900, + "available": 11065.71, "current": 1000, "iso_currency_code": "USD", - "limit": 12900, + "limit": 12200, "unofficial_currency_code": null }, "holder_category": "personal", - "mask": "7144", + "mask": "3053", "name": "Test Credit Card Account", "official_name": "Plaid credit card", - "persistent_account_id": "43c7fc22e70c7ba9bdac1ec02ee445107d2f166703760a4dc149fdbf", "subtype": "credit card", "type": "credit" }, { - "account_id": "vP6BKBxw3KuwDNKy16v7TDvrWdnzmWiq7EJz9", + "account_id": "QEbZN5mMrxTnJ4XRxba9s9pKBBx4bnuwPpWZa", "balances": { "available": 8000, "current": 10000, @@ -391,22 +371,37 @@ http_interactions: "unofficial_currency_code": null }, "holder_category": "personal", - "mask": "8749", + "mask": "7330", "name": "Test Brokerage Account", "official_name": "Plaid brokerage", - "persistent_account_id": "28933ba7cec01ee3a8823c13aa091fada6fc38a08872dd1e12b76023", "subtype": "brokerage", "type": "investment" + }, + { + "account_id": "edNwr51XgAcoARVZP68vsdREvv56jafrvLlJ7", + "balances": { + "available": 10000, + "current": 10000, + "iso_currency_code": "USD", + "limit": null, + "unofficial_currency_code": null + }, + "holder_category": "personal", + "mask": "8957", + "name": "Test Depository Account", + "official_name": "Plaid checking", + "subtype": "checking", + "type": "depository" } ], "investment_transactions": [ { - "account_id": "vP6BKBxw3KuwDNKy16v7TDvrWdnzmWiq7EJz9", + "account_id": "QEbZN5mMrxTnJ4XRxba9s9pKBBx4bnuwPpWZa", "amount": -5000, "cancel_transaction_id": null, "date": "2025-05-03", "fees": 0, - "investment_transaction_id": "X53oko4eQkUkKN78A5GmhN9lvl6wdeF1awWEz", + "investment_transaction_id": "oMpyjB9Dlqhb4v8gkyn6tbz4GxgR39iowXK7g", "iso_currency_code": "USD", "name": "retirement contribution", "price": 1, @@ -417,12 +412,12 @@ http_interactions: "unofficial_currency_code": null }, { - "account_id": "vP6BKBxw3KuwDNKy16v7TDvrWdnzmWiq7EJz9", + "account_id": "QEbZN5mMrxTnJ4XRxba9s9pKBBx4bnuwPpWZa", "amount": 5000, "cancel_transaction_id": null, "date": "2025-05-03", "fees": 0, - "investment_transaction_id": "D5EoQogL4QUnaZbVWg4PhB9pLpvl3bc4MKPQA", + "investment_transaction_id": "g4j7B5kXEnCwdLV7NzQPHV5l87zaWeuEklMnW", "iso_currency_code": "USD", "name": "buy money market shares with contribution cash", "price": 1, @@ -433,12 +428,12 @@ http_interactions: "unofficial_currency_code": null }, { - "account_id": "vP6BKBxw3KuwDNKy16v7TDvrWdnzmWiq7EJz9", + "account_id": "QEbZN5mMrxTnJ4XRxba9s9pKBBx4bnuwPpWZa", "amount": 2000, "cancel_transaction_id": null, "date": "2025-05-02", "fees": 0, - "investment_transaction_id": "V5zpKpdjwKUvNGPgAzqnIbgAKAXM3Ecqr38d3", + "investment_transaction_id": "8lBZ7kqmNMflM6N1rBb8udzR5Vp7MXiWExrLG", "iso_currency_code": "USD", "name": "buy AAPL stock", "price": 100, @@ -449,12 +444,12 @@ http_interactions: "unofficial_currency_code": null }, { - "account_id": "vP6BKBxw3KuwDNKy16v7TDvrWdnzmWiq7EJz9", + "account_id": "QEbZN5mMrxTnJ4XRxba9s9pKBBx4bnuwPpWZa", "amount": -5000, "cancel_transaction_id": null, "date": "2025-05-01", "fees": 0, - "investment_transaction_id": "wj63r3dGxrCB6LyZo8vQu68WpWKnE9cE8B7Vn", + "investment_transaction_id": "EjM3A5vK8mCjLea1GE3mCyoKvAE3kjF4djEkP", "iso_currency_code": "USD", "name": "Deposit cash into brokerage account", "price": 1, @@ -470,11 +465,14 @@ http_interactions: "assets", "auth", "balance", + "credit_details", "identity", "identity_match", + "income", "income_verification", "recurring_transactions", - "signal" + "signal", + "statements" ], "billed_products": [ "investments", @@ -483,9 +481,9 @@ http_interactions: ], "consent_expiration_time": null, "error": null, - "institution_id": "ins_56", - "institution_name": "Chase", - "item_id": "oB6bAblGWACoJlk9Ex8bIJg33domK6uR1yRRv", + "institution_id": "ins_109508", + "institution_name": "First Platypus Bank", + "item_id": "ZvlBL5eMPQtnXDV6QrR9sRedKePzMaFgzeVqA", "products": [ "investments", "liabilities", @@ -494,7 +492,7 @@ http_interactions: "update_type": "background", "webhook": "" }, - "request_id": "3PLgnDkJ1iTVixr", + "request_id": "CqfMA8GOfEA1GhG", "securities": [ { "close_price": 1, @@ -568,5 +566,5 @@ http_interactions: ], "total_investment_transactions": 4 } - recorded_at: Mon, 19 May 2025 13:53:33 GMT + recorded_at: Mon, 19 May 2025 15:34:42 GMT recorded_with: VCR 6.3.1 diff --git a/test/vcr_cassettes/plaid/get_item_liabilities.yml b/test/vcr_cassettes/plaid/get_item_liabilities.yml new file mode 100644 index 00000000..4483014f --- /dev/null +++ b/test/vcr_cassettes/plaid/get_item_liabilities.yml @@ -0,0 +1,236 @@ +--- +http_interactions: +- request: + method: post + uri: https://sandbox.plaid.com/liabilities/get + body: + encoding: UTF-8 + string: '{"access_token":"access-sandbox-d531d3c9-8520-43ca-9e58-5b70b79fd1d4"}' + headers: + Content-Type: + - application/json + User-Agent: + - Plaid Ruby v38.0.0 + Accept: + - application/json + Plaid-Client-Id: + - "" + Plaid-Version: + - '2020-09-14' + Plaid-Secret: + - "" + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + response: + status: + code: 200 + message: OK + headers: + Server: + - nginx + Date: + - Mon, 19 May 2025 15:34:40 GMT + Content-Type: + - application/json; charset=utf-8 + Content-Length: + - '4910' + Connection: + - keep-alive + Plaid-Version: + - '2020-09-14' + Vary: + - Accept-Encoding + X-Envoy-Upstream-Service-Time: + - '239' + X-Envoy-Decorator-Operation: + - default.svc-apiv2:8080/* + Strict-Transport-Security: + - max-age=31536000; includeSubDomains; preload + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Xss-Protection: + - 1; mode=block + body: + encoding: ASCII-8BIT + string: |- + { + "accounts": [ + { + "account_id": "MpWPx5o4yrcpZvwQrdbMuwX699pjDRCLX98NN", + "balances": { + "available": 15000, + "current": 15000, + "iso_currency_code": "USD", + "limit": null, + "unofficial_currency_code": null + }, + "holder_category": "personal", + "mask": "1119", + "name": "Test Student Loan Account", + "official_name": "Plaid student", + "subtype": "student", + "type": "loan" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "balances": { + "available": 11065.71, + "current": 1000, + "iso_currency_code": "USD", + "limit": 12200, + "unofficial_currency_code": null + }, + "holder_category": "personal", + "mask": "3053", + "name": "Test Credit Card Account", + "official_name": "Plaid credit card", + "subtype": "credit card", + "type": "credit" + }, + { + "account_id": "QEbZN5mMrxTnJ4XRxba9s9pKBBx4bnuwPpWZa", + "balances": { + "available": 8000, + "current": 10000, + "iso_currency_code": "USD", + "limit": null, + "unofficial_currency_code": null + }, + "holder_category": "personal", + "mask": "7330", + "name": "Test Brokerage Account", + "official_name": "Plaid brokerage", + "subtype": "brokerage", + "type": "investment" + }, + { + "account_id": "edNwr51XgAcoARVZP68vsdREvv56jafrvLlJ7", + "balances": { + "available": 10000, + "current": 10000, + "iso_currency_code": "USD", + "limit": null, + "unofficial_currency_code": null + }, + "holder_category": "personal", + "mask": "8957", + "name": "Test Depository Account", + "official_name": "Plaid checking", + "subtype": "checking", + "type": "depository" + } + ], + "item": { + "available_products": [ + "assets", + "auth", + "balance", + "credit_details", + "identity", + "identity_match", + "income", + "income_verification", + "recurring_transactions", + "signal", + "statements" + ], + "billed_products": [ + "investments", + "liabilities", + "transactions" + ], + "consent_expiration_time": null, + "error": null, + "institution_id": "ins_109508", + "institution_name": "First Platypus Bank", + "item_id": "ZvlBL5eMPQtnXDV6QrR9sRedKePzMaFgzeVqA", + "products": [ + "investments", + "liabilities", + "transactions" + ], + "update_type": "background", + "webhook": "" + }, + "liabilities": { + "credit": [ + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "aprs": [ + { + "apr_percentage": 12.5, + "apr_type": "purchase_apr", + "balance_subject_to_apr": null, + "interest_charge_amount": null + }, + { + "apr_percentage": 27.95, + "apr_type": "cash_apr", + "balance_subject_to_apr": null, + "interest_charge_amount": null + } + ], + "is_overdue": false, + "last_payment_amount": null, + "last_payment_date": "2025-04-24", + "last_statement_balance": 1000, + "last_statement_issue_date": "2025-05-19", + "minimum_payment_amount": 50, + "next_payment_due_date": "2025-06-19" + } + ], + "mortgage": null, + "student": [ + { + "account_id": "MpWPx5o4yrcpZvwQrdbMuwX699pjDRCLX98NN", + "account_number": "52810251119", + "disbursement_dates": [ + "2023-05-01" + ], + "expected_payoff_date": "2036-05-01", + "guarantor": "DEPT OF ED", + "interest_rate_percentage": 5.25, + "is_overdue": false, + "last_payment_amount": null, + "last_payment_date": null, + "last_statement_balance": 16577.16, + "last_statement_issue_date": "2025-05-01", + "loan_name": "Consolidation", + "loan_status": { + "end_date": null, + "type": "in school" + }, + "minimum_payment_amount": 25, + "next_payment_due_date": "2025-06-01", + "origination_date": "2023-05-01", + "origination_principal_amount": 15000, + "outstanding_interest_amount": 1577.16, + "payment_reference_number": "52810251119", + "pslf_status": { + "estimated_eligibility_date": null, + "payments_made": null, + "payments_remaining": null + }, + "repayment_plan": { + "description": "Standard Repayment", + "type": "standard" + }, + "sequence_number": "1", + "servicer_address": { + "city": "San Matias", + "country": "US", + "postal_code": "99415", + "region": "CA", + "street": "123 Relaxation Road" + }, + "ytd_interest_paid": 0, + "ytd_principal_paid": 0 + } + ] + }, + "request_id": "WJhrfTcUFBSLw9j" + } + recorded_at: Mon, 19 May 2025 15:34:40 GMT +recorded_with: VCR 6.3.1 diff --git a/test/vcr_cassettes/plaid/get_transactions_with_next_cursor.yml b/test/vcr_cassettes/plaid/get_transactions_with_next_cursor.yml index 5d085baf..f85f2319 100644 --- a/test/vcr_cassettes/plaid/get_transactions_with_next_cursor.yml +++ b/test/vcr_cassettes/plaid/get_transactions_with_next_cursor.yml @@ -5,7 +5,7 @@ http_interactions: uri: https://sandbox.plaid.com/transactions/sync body: encoding: UTF-8 - string: '{"access_token":"access-sandbox-ffe2eff6-26ab-421e-9e65-92969a070378","count":100,"options":{"include_original_description":true}}' + string: '{"access_token":"access-sandbox-d531d3c9-8520-43ca-9e58-5b70b79fd1d4","count":100,"options":{"include_original_description":true}}' headers: Content-Type: - application/json @@ -29,11 +29,11 @@ http_interactions: Server: - nginx Date: - - Mon, 19 May 2025 13:54:01 GMT + - Mon, 19 May 2025 15:34:55 GMT Content-Type: - application/json; charset=utf-8 - Content-Length: - - '192' + Transfer-Encoding: + - chunked Connection: - keep-alive Plaid-Version: @@ -41,7 +41,7 @@ http_interactions: Vary: - Accept-Encoding X-Envoy-Upstream-Service-Time: - - '328' + - '380' X-Envoy-Decorator-Operation: - default.svc-apiv2:8080/* Strict-Transport-Security: @@ -56,22 +56,6205 @@ http_interactions: encoding: ASCII-8BIT string: |- { - "accounts": [], - "added": [], - "has_more": false, + "accounts": [ + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "balances": { + "available": 11065.71, + "current": 1000, + "iso_currency_code": "USD", + "limit": 12200, + "unofficial_currency_code": null + }, + "holder_category": "personal", + "mask": "3053", + "name": "Test Credit Card Account", + "official_name": "Plaid credit card", + "subtype": "credit card", + "type": "credit" + }, + { + "account_id": "MpWPx5o4yrcpZvwQrdbMuwX699pjDRCLX98NN", + "balances": { + "available": 15000, + "current": 15000, + "iso_currency_code": "USD", + "limit": null, + "unofficial_currency_code": null + }, + "holder_category": "personal", + "mask": "1119", + "name": "Test Student Loan Account", + "official_name": "Plaid student", + "subtype": "student", + "type": "loan" + } + ], + "added": [ + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 15.7, + "authorized_date": "2025-03-12", + "authorized_datetime": null, + "category": [ + "Food and Drink", + "Restaurants", + "Fast Food" + ], + "category_id": "13005032", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "MezwEv82wQZEknrQkzrO7nKBW0qZXo4eL8NXL", + "logo_url": "https://plaid-merchant-logos.plaid.com/whataburger_1118.png", + "name": "Whataburger", + "phone_number": null, + "type": "merchant", + "website": "whataburger.com" + } + ], + "date": "2025-03-13", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": "2018 S Staples St", + "city": "Corpus Christi", + "country": null, + "lat": 27.765787, + "lon": -97.402695, + "postal_code": "78404", + "region": "TX", + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/whataburger_1118.png", + "merchant_entity_id": "MezwEv82wQZEknrQkzrO7nKBW0qZXo4eL8NXL", + "merchant_name": "Whataburger", + "name": "Whataburger", + "original_description": "WHATABURGER 012", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "FOOD_AND_DRINK_FAST_FOOD", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "B4ek869ZpGC41mDnjvVxuBdXVLjPRxC4M8g1B", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "whataburger.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 82.02, + "authorized_date": "2025-03-12", + "authorized_datetime": null, + "category": [ + "Shops" + ], + "category_id": "19000000", + "check_number": null, + "counterparties": [], + "date": "2025-03-13", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "JET.COM", + "original_description": "JET.COM", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "GENERAL_MERCHANDISE_OTHER_GENERAL_MERCHANDISE", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "3ylJapdb3jf8nK3A1z7JF3jlmQa5LBhZlnELj", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 11.24, + "authorized_date": "2025-03-12", + "authorized_datetime": null, + "category": [ + "Shops", + "Digital Purchase" + ], + "category_id": "19019000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "2gOwmq9qK56K60oDm3eLrREV2B2mVadkRn8MW", + "logo_url": "https://plaid-merchant-logos.plaid.com/amazon_44.png", + "name": "Amazon", + "phone_number": null, + "type": "merchant", + "website": "amazon.com" + } + ], + "date": "2025-03-13", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/amazon_44.png", + "merchant_entity_id": "2gOwmq9qK56K60oDm3eLrREV2B2mVadkRn8MW", + "merchant_name": "Amazon", + "name": "Amazon", + "original_description": "Auth : Amzn Mktp Us", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "GENERAL_MERCHANDISE_ONLINE_MARKETPLACES", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "xAbKo75qa4um5aZ8zndpUMd7gW5wbxU64VeZ7", + "transaction_type": "digital", + "unofficial_currency_code": null, + "website": "amazon.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 18.95, + "authorized_date": "2025-03-12", + "authorized_datetime": null, + "category": [ + "Food and Drink", + "Restaurants", + "Fast Food" + ], + "category_id": "13005032", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "1YZ03w08myRAQ0mRgMvD2EBoOb92RmBXN6nmK", + "logo_url": "https://plaid-merchant-logos.plaid.com/wendys_1114.png", + "name": "Wendy's", + "phone_number": null, + "type": "merchant", + "website": "wendys.com" + } + ], + "date": "2025-03-13", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": "0123" + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/wendys_1114.png", + "merchant_entity_id": "1YZ03w08myRAQ0mRgMvD2EBoOb92RmBXN6nmK", + "merchant_name": "Wendy's", + "name": "Wendy's", + "original_description": "WENDY'S #0123", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "FOOD_AND_DRINK_FAST_FOOD", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "dx4ZK58XoWCvbXVZlNgaC9Rl5wkLExCJEQRqN", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "wendys.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 44.24, + "authorized_date": "2025-03-12", + "authorized_datetime": null, + "category": [ + "Shops", + "Digital Purchase" + ], + "category_id": "19019000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "5ngqyLXKYBknN8OywL79Z1qoWmyE0zKq20nz6", + "logo_url": "https://plaid-merchant-logos.plaid.com/etsy_332.png", + "name": "Etsy", + "phone_number": null, + "type": "merchant", + "website": "etsy.com" + } + ], + "date": "2025-03-16", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/etsy_332.png", + "merchant_entity_id": "5ngqyLXKYBknN8OywL79Z1qoWmyE0zKq20nz6", + "merchant_name": "Etsy", + "name": "Etsy", + "original_description": "ETSY.COM", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "GENERAL_MERCHANDISE_ONLINE_MARKETPLACES", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "azx7A59X1gc5orV6dPw3soqAjJ3zZysZ5QDvw", + "transaction_type": "digital", + "unofficial_currency_code": null, + "website": "etsy.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 29.8, + "authorized_date": "2025-03-14", + "authorized_datetime": null, + "category": [ + "Food and Drink", + "Restaurants", + "Fast Food" + ], + "category_id": "13005032", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "9dgV151n418qNVjVLer6JQVrj5YnwgQ7dqVbM", + "logo_url": "https://plaid-merchant-logos.plaid.com/pizza_hut_758.png", + "name": "Pizza Hut", + "phone_number": null, + "type": "merchant", + "website": "pizzahut.com" + } + ], + "date": "2025-03-16", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/pizza_hut_758.png", + "merchant_entity_id": "9dgV151n418qNVjVLer6JQVrj5YnwgQ7dqVbM", + "merchant_name": "Pizza Hut", + "name": "Pizza Hut", + "original_description": "Pizza Hut", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "FOOD_AND_DRINK_FAST_FOOD", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "49qZ4oGbx7T873XDoebnFmlbdW4eDaFJbALKP", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "pizzahut.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 1.75, + "authorized_date": "2025-03-12", + "authorized_datetime": null, + "category": [ + "Food and Drink" + ], + "category_id": "13000000", + "check_number": null, + "counterparties": [], + "date": "2025-03-15", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "MARK VEND CO", + "original_description": "MARK VEND CO", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "FOOD_AND_DRINK_VENDING_MACHINES", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "NokPd5gNlzfoV1byzGkls7JMP5G3Q9sy65Qzz", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 8.42, + "authorized_date": "2025-03-14", + "authorized_datetime": null, + "category": [ + "Food and Drink", + "Restaurants", + "Fast Food" + ], + "category_id": "13005032", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "1YZ03w08myRAQ0mRgMvD2EBoOb92RmBXN6nmK", + "logo_url": "https://plaid-merchant-logos.plaid.com/wendys_1114.png", + "name": "Wendy's", + "phone_number": null, + "type": "merchant", + "website": "wendys.com" + } + ], + "date": "2025-03-15", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": "0123" + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/wendys_1114.png", + "merchant_entity_id": "1YZ03w08myRAQ0mRgMvD2EBoOb92RmBXN6nmK", + "merchant_name": "Wendy's", + "name": "Wendy's", + "original_description": "WENDY'S #0123", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "FOOD_AND_DRINK_FAST_FOOD", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "P8n745oWK3cnXKyW31x9slDB75xZEeio6WAnb", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "wendys.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 13.55, + "authorized_date": "2025-03-12", + "authorized_datetime": null, + "category": [ + "Food and Drink", + "Bar" + ], + "category_id": "13001000", + "check_number": null, + "counterparties": [], + "date": "2025-03-14", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "SLJ BAR", + "original_description": "SLJ BAR", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "GENERAL_MERCHANDISE_OTHER_GENERAL_MERCHANDISE", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "jjQ7dlP5GyCbNavw7rzpty4MQmk9opi6WLajo", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 5.24, + "authorized_date": "2025-03-14", + "authorized_datetime": null, + "category": [ + "Shops", + "Computers and Electronics" + ], + "category_id": "19013000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "wQn4M4dwnYzpK156NqjykAN4DJ0KbrEOLZZ8W", + "logo_url": "https://plaid-merchant-logos.plaid.com/microsoft_635.png", + "name": "Microsoft", + "phone_number": null, + "type": "merchant", + "website": "microsoft.com" + } + ], + "date": "2025-03-14", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": "WA", + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/microsoft_635.png", + "merchant_entity_id": "wQn4M4dwnYzpK156NqjykAN4DJ0KbrEOLZZ8W", + "merchant_name": "Microsoft", + "name": "MICROSOFT *OFFICE 012 msbill.info", + "original_description": "MICROSOFT *OFFICE 012 msbill.info WA", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "GENERAL_MERCHANDISE_ELECTRONICS", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "76zXjElb4Zt8RL4DAzM9F9Zwj8GW6DCdJnxaN", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "microsoft.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 895.83, + "authorized_date": "2025-03-14", + "authorized_datetime": null, + "category": [ + "Travel" + ], + "category_id": "22000000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "KAJKk5XdbJEqb6Z7DdDnAqJQyLX0OmkAZqe75", + "logo_url": "https://plaid-merchant-logos.plaid.com/expedia_336.png", + "name": "Expedia", + "phone_number": null, + "type": "merchant", + "website": "expedia.com" + } + ], + "date": "2025-03-14", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": "WA", + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/expedia_336.png", + "merchant_entity_id": "KAJKk5XdbJEqb6Z7DdDnAqJQyLX0OmkAZqe75", + "merchant_name": "Expedia", + "name": "EXPEDIA 0123456789012 EXPEDIA.COM", + "original_description": "EXPEDIA 0123456789012 EXPEDIA.COM WA", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "TRAVEL_FLIGHTS", + "primary": "TRAVEL" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_TRAVEL.png", + "transaction_code": null, + "transaction_id": "edNwr51XgAcoARVZP68vsdRGzqom9Bur95mXL", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "expedia.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 1.5, + "authorized_date": "2025-03-14", + "authorized_datetime": null, + "category": [ + "Food and Drink", + "Restaurants" + ], + "category_id": "13005000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "4D5V2em9D8Z660wkgKzjBJ2mop2EwbV9VwbDB", + "logo_url": "https://plaid-merchant-logos.plaid.com/tim_hortons_1022.png", + "name": "Tim Hortons", + "phone_number": null, + "type": "merchant", + "website": "timhortons.com" + } + ], + "date": "2025-03-14", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": "0123" + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/tim_hortons_1022.png", + "merchant_entity_id": "4D5V2em9D8Z660wkgKzjBJ2mop2EwbV9VwbDB", + "merchant_name": "Tim Hortons", + "name": "Tim Hortons", + "original_description": "TIM HORTONS #0123", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "FOOD_AND_DRINK_FAST_FOOD", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "QEbZN5mMrxTnJ4XRxba9s9paZDyVQGCwm7Dnw", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "timhortons.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 13.13, + "authorized_date": "2025-03-15", + "authorized_datetime": null, + "category": [ + "Travel", + "Taxi" + ], + "category_id": "22016000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "eyg8o776k0QmNgVpAmaQj4WgzW9Qzo6O51gdd", + "logo_url": "https://plaid-merchant-logos.plaid.com/uber_1060.png", + "name": "Uber", + "phone_number": null, + "type": "merchant", + "website": "uber.com" + } + ], + "date": "2025-03-19", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/uber_1060.png", + "merchant_entity_id": "eyg8o776k0QmNgVpAmaQj4WgzW9Qzo6O51gdd", + "merchant_name": "Uber", + "name": "Uber", + "original_description": "UBER *TRIP", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "TRANSPORTATION_TAXIS_AND_RIDE_SHARES", + "primary": "TRANSPORTATION" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_TRANSPORTATION.png", + "transaction_code": null, + "transaction_id": "ZvlBL5eMPQtnXDV6QrR9sRex8pZayMceqXGvJ", + "transaction_type": "special", + "unofficial_currency_code": null, + "website": "uber.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 14.14, + "authorized_date": "2025-03-19", + "authorized_datetime": null, + "category": [ + "Shops", + "Clothing and Accessories" + ], + "category_id": "19012000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "o88J8OOgX3nMnQWBwk6kq8D32YWjEwaX2D8ra", + "logo_url": "https://plaid-merchant-logos.plaid.com/old_navy_698.png", + "name": "Old Navy", + "phone_number": null, + "type": "merchant", + "website": "oldnavy.com" + } + ], + "date": "2025-03-19", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": "OH", + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/old_navy_698.png", + "merchant_entity_id": "o88J8OOgX3nMnQWBwk6kq8D32YWjEwaX2D8ra", + "merchant_name": "Old Navy", + "name": "Old Navy", + "original_description": "OLD NAVY ON-LINE 012-OLDNAVY OH", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "GENERAL_MERCHANDISE_CLOTHING_AND_ACCESSORIES", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "MpWPx5o4yrcpZvwQrdbMuwXJg8Eze3fL6P15e", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "oldnavy.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 18.75, + "authorized_date": "2025-03-16", + "authorized_datetime": null, + "category": [ + "Travel", + "Airlines and Aviation Services" + ], + "category_id": "22001000", + "check_number": null, + "counterparties": [], + "date": "2025-03-17", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "SWA*EARLYBRD0123456789012", + "original_description": "SWA*EARLYBRD0123456789012", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "GENERAL_MERCHANDISE_OTHER_GENERAL_MERCHANDISE", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "1bXWx1mVzNcQvyzEo34JTXVmegwx94tpjeram", + "transaction_type": "special", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 1.24, + "authorized_date": "2025-03-16", + "authorized_datetime": null, + "category": [ + "Food and Drink", + "Restaurants" + ], + "category_id": "13005000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "4D5V2em9D8Z660wkgKzjBJ2mop2EwbV9VwbDB", + "logo_url": "https://plaid-merchant-logos.plaid.com/tim_hortons_1022.png", + "name": "Tim Hortons", + "phone_number": null, + "type": "merchant", + "website": "timhortons.com" + } + ], + "date": "2025-03-17", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/tim_hortons_1022.png", + "merchant_entity_id": "4D5V2em9D8Z660wkgKzjBJ2mop2EwbV9VwbDB", + "merchant_name": "Tim Hortons", + "name": "Tim Hortons", + "original_description": "TIM HORTONS 0123 QTH", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "FOOD_AND_DRINK_FAST_FOOD", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "LLEP35oamKfLwWGzKa8mCk6Apgx1W7ukjpEmo", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "timhortons.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 14.91, + "authorized_date": "2025-03-16", + "authorized_datetime": null, + "category": [ + "Shops", + "Supermarkets and Groceries" + ], + "category_id": "19047000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "Y0BVyRYwZgNLpDw6Lrvy7yJX38YQWEXBEEoAW", + "logo_url": "https://plaid-merchant-logos.plaid.com/whole_foods_1122.png", + "name": "Whole Foods", + "phone_number": null, + "type": "merchant", + "website": "wholefoods.com" + } + ], + "date": "2025-03-17", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/whole_foods_1122.png", + "merchant_entity_id": "Y0BVyRYwZgNLpDw6Lrvy7yJX38YQWEXBEEoAW", + "merchant_name": "Whole Foods", + "name": "Whole Foods", + "original_description": "Whole Foods Market", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "FOOD_AND_DRINK_GROCERIES", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "p1oA739DqKhR4y8Xk1ZWcxJrdLn6oGtpoVzqb", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "wholefoods.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 70, + "authorized_date": "2025-03-16", + "authorized_datetime": null, + "category": [ + "Service", + "Personal Care" + ], + "category_id": "18045000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "WMddk50Z7yvqb1M1Z1R0qk8A6bk17QaVDQnd9", + "logo_url": "https://plaid-merchant-logos.plaid.com/hair_cuttery_2044.png", + "name": "Hair Cuttery", + "phone_number": null, + "type": "merchant", + "website": "haircuttery.com" + } + ], + "date": "2025-03-17", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": "3084 Stony Point Rd Unit 43", + "city": "Richmond", + "country": null, + "lat": null, + "lon": null, + "postal_code": "23235", + "region": "VA", + "store_number": "0123" + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/hair_cuttery_2044.png", + "merchant_entity_id": "WMddk50Z7yvqb1M1Z1R0qk8A6bk17QaVDQnd9", + "merchant_name": "Hair Cuttery", + "name": "Hair Cuttery", + "original_description": "HAIR CUTTERY #0123", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "HIGH", + "detailed": "PERSONAL_CARE_HAIR_AND_BEAUTY", + "primary": "PERSONAL_CARE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_PERSONAL_CARE.png", + "transaction_code": null, + "transaction_id": "oMpyjB9Dlqhb4v8gkyn6tbzMpZy5G3ioq7bPv", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "haircuttery.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 10.97, + "authorized_date": "2025-03-16", + "authorized_datetime": null, + "category": [ + "Travel", + "Taxi" + ], + "category_id": "22016000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "eyg8o776k0QmNgVpAmaQj4WgzW9Qzo6O51gdd", + "logo_url": "https://plaid-merchant-logos.plaid.com/uber_1060.png", + "name": "Uber", + "phone_number": null, + "type": "merchant", + "website": "uber.com" + } + ], + "date": "2025-03-20", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/uber_1060.png", + "merchant_entity_id": "eyg8o776k0QmNgVpAmaQj4WgzW9Qzo6O51gdd", + "merchant_name": "Uber", + "name": "Uber", + "original_description": "UBER HELP.UBER.COMCA", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "TRANSPORTATION_TAXIS_AND_RIDE_SHARES", + "primary": "TRANSPORTATION" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_TRANSPORTATION.png", + "transaction_code": null, + "transaction_id": "g4j7B5kXEnCwdLV7NzQPHV59dRBP8WcE8n5G9", + "transaction_type": "special", + "unofficial_currency_code": null, + "website": "uber.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 10.35, + "authorized_date": "2025-03-20", + "authorized_datetime": null, + "category": [ + "Shops", + "Discount Stores" + ], + "category_id": "19020000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "rMKJ1dN2kL4NQarZ3oQMW9j14YpL845dDQo7R", + "logo_url": "https://plaid-merchant-logos.plaid.com/dollar_tree_289.png", + "name": "Dollar Tree", + "phone_number": null, + "type": "merchant", + "website": "dollartree.com" + } + ], + "date": "2025-03-20", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/dollar_tree_289.png", + "merchant_entity_id": "rMKJ1dN2kL4NQarZ3oQMW9j14YpL845dDQo7R", + "merchant_name": "Dollar Tree", + "name": "DOLLARTREE", + "original_description": "DOLLARTREE", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "GENERAL_MERCHANDISE_DISCOUNT_STORES", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "8lBZ7kqmNMflM6N1rBb8udzkGwyA5MuW3L8Re", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "dollartree.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 396.54, + "authorized_date": "2025-03-20", + "authorized_datetime": null, + "category": [ + "Service", + "Cable" + ], + "category_id": "18009000", + "check_number": null, + "counterparties": [], + "date": "2025-03-20", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "OPTIMUM 0123", + "original_description": "OPTIMUM 0123", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "ENTERTAINMENT_MUSIC_AND_AUDIO", + "primary": "ENTERTAINMENT" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_ENTERTAINMENT.png", + "transaction_code": null, + "transaction_id": "EjM3A5vK8mCjLea1GE3mCyom95Prvki4xkmMd", + "transaction_type": "special", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 2.92, + "authorized_date": "2025-03-20", + "authorized_datetime": null, + "category": [ + "Shops", + "Pharmacies" + ], + "category_id": "19043000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "qkd60geNmo8qMV0wAXbL3yYbqdnoY4ezwbe1R", + "logo_url": "https://plaid-merchant-logos.plaid.com/cvs_264.png", + "name": "CVS", + "phone_number": null, + "type": "merchant", + "website": "cvs.com" + } + ], + "date": "2025-03-20", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": "208 Elm St", + "city": "Westfield", + "country": null, + "lat": 42.124622, + "lon": -72.750076, + "postal_code": "01085", + "region": "MA", + "store_number": "01234" + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/cvs_264.png", + "merchant_entity_id": "qkd60geNmo8qMV0wAXbL3yYbqdnoY4ezwbe1R", + "merchant_name": "CVS", + "name": "CVS", + "original_description": "CVS/PHARMACY #01234 #...0123", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "MEDICAL_PHARMACIES_AND_SUPPLEMENTS", + "primary": "MEDICAL" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_MEDICAL.png", + "transaction_code": null, + "transaction_id": "Wm6kZ5zMajudb4XV6nyafB8VgNb3znC6Z1j5A", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "cvs.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 8.03, + "authorized_date": "2025-03-16", + "authorized_datetime": null, + "category": [ + "Food and Drink", + "Bar" + ], + "category_id": "13001000", + "check_number": null, + "counterparties": [], + "date": "2025-03-18", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "SLJ BAR", + "original_description": "SLJ BAR", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "GENERAL_MERCHANDISE_OTHER_GENERAL_MERCHANDISE", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "Aa7KgRpVLAhamWlkAvD3s8Dl5KZ7brF9rA5kb", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 71.4, + "authorized_date": "2025-03-18", + "authorized_datetime": null, + "category": [ + "Shops", + "Food and Beverage Store" + ], + "category_id": "19025000", + "check_number": null, + "counterparties": [], + "date": "2025-03-18", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "SP * FIGS, INC.", + "original_description": "SP * FIGS, INC.", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "GENERAL_MERCHANDISE_OTHER_GENERAL_MERCHANDISE", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "GeLdq5ozW9Te8Jd4MGvPT84MZDwPW7F6MPoLz", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 26.25, + "authorized_date": "2025-03-19", + "authorized_datetime": null, + "category": [ + "Food and Drink", + "Restaurants", + "Coffee Shop" + ], + "category_id": "13005043", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "NZAJQ5wYdo1W1p39X5q5gpb15OMe39pj4pJBb", + "logo_url": "https://plaid-merchant-logos.plaid.com/starbucks_956.png", + "name": "Starbucks", + "phone_number": null, + "type": "merchant", + "website": "starbucks.com" + } + ], + "date": "2025-03-23", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/starbucks_956.png", + "merchant_entity_id": "NZAJQ5wYdo1W1p39X5q5gpb15OMe39pj4pJBb", + "merchant_name": "Starbucks", + "name": "Starbucks", + "original_description": "STARBUCKS #...0123", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "FOOD_AND_DRINK_COFFEE", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "nZLAPzwDylibQdva8jeDtG1eMJoEWbtAlWQX1", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "starbucks.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 24.72, + "authorized_date": "2025-03-23", + "authorized_datetime": null, + "category": [ + "Food and Drink", + "Restaurants" + ], + "category_id": "13005000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "LOW", + "entity_id": null, + "logo_url": null, + "name": "Watch", + "phone_number": null, + "type": "merchant", + "website": null + } + ], + "date": "2025-03-23", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": "Watch", + "name": "FIRST WATCH 012", + "original_description": "FIRST WATCH 012", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "GENERAL_MERCHANDISE_OTHER_GENERAL_MERCHANDISE", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "bBdylJgXLku1ryVNQ9XehxReg34KG7tmbZ7JD", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 125.44, + "authorized_date": "2025-03-23", + "authorized_datetime": null, + "category": [ + "Food and Drink", + "Restaurants", + "Fast Food" + ], + "category_id": "13005032", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "DDM7W339RYJwyjZ4A7v6O9m5jVooQWMrJoaO4", + "logo_url": "https://plaid-merchant-logos.plaid.com/jimmy_johns_539.png", + "name": "Jimmy John's", + "phone_number": null, + "type": "merchant", + "website": "jimmyjohns.com" + } + ], + "date": "2025-03-23", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": "012" + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/jimmy_johns_539.png", + "merchant_entity_id": "DDM7W339RYJwyjZ4A7v6O9m5jVooQWMrJoaO4", + "merchant_name": "Jimmy John's", + "name": "Jimmy Johns", + "original_description": "JIMMY JOHNS # 012", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "FOOD_AND_DRINK_RESTAURANT", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "mQ1ANkbDmRfb4yvJ6npMt6LmBj1NyEcgydXK1", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "jimmyjohns.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 444.9, + "authorized_date": "2025-03-19", + "authorized_datetime": null, + "category": [ + "Travel", + "Airlines and Aviation Services" + ], + "category_id": "22001000", + "check_number": null, + "counterparties": [], + "date": "2025-03-22", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "JetBlue", + "original_description": "JETBLUE 0123456789012", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "ENTERTAINMENT_SPORTING_EVENTS_AMUSEMENT_PARKS_AND_MUSEUMS", + "primary": "ENTERTAINMENT" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_ENTERTAINMENT.png", + "transaction_code": null, + "transaction_id": "yGmrge5K4NFpDQweBL4yuPM35rxdXZi46Xw1j", + "transaction_type": "special", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 51.64, + "authorized_date": "2025-03-22", + "authorized_datetime": null, + "category": [ + "Shops", + "Computers and Electronics" + ], + "category_id": "19013000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "q63vdERovbmjyQoYA6k7m6je8EzOv6ywA7Ea2", + "logo_url": "https://plaid-merchant-logos.plaid.com/best_buy_103.png", + "name": "Best Buy", + "phone_number": null, + "type": "merchant", + "website": "bestbuy.com" + } + ], + "date": "2025-03-22", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/best_buy_103.png", + "merchant_entity_id": "q63vdERovbmjyQoYA6k7m6je8EzOv6ywA7Ea2", + "merchant_name": "Best Buy", + "name": "Best Buy", + "original_description": "Best Buy", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "GENERAL_MERCHANDISE_ELECTRONICS", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "9q36eAK7P1iqGMPbA34yUAZV7NmLojI4xQgej", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "bestbuy.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 95.66, + "authorized_date": "2025-03-22", + "authorized_datetime": null, + "category": [ + "Service", + "Photography" + ], + "category_id": "18047000", + "check_number": null, + "counterparties": [], + "date": "2025-03-25", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "SHUTTERFLY", + "original_description": "SHUTTERFLY", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "GENERAL_MERCHANDISE_GIFTS_AND_NOVELTIES", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "vEGlLPADxdT7rVvMKoxpsbozq3NxkGiq6k1GE", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 4.25, + "authorized_date": "2025-03-22", + "authorized_datetime": null, + "category": [ + "Shops", + "Convenience Stores" + ], + "category_id": "19015000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "w32E0jpBeX97vOWgER0n2qVbzLJVm1opNMpoR", + "logo_url": "https://plaid-merchant-logos.plaid.com/7eleven_3.png", + "name": "7-Eleven", + "phone_number": null, + "type": "merchant", + "website": "7-eleven.com" + } + ], + "date": "2025-03-25", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/7eleven_3.png", + "merchant_entity_id": "w32E0jpBeX97vOWgER0n2qVbzLJVm1opNMpoR", + "merchant_name": "7-Eleven", + "name": "7-Eleven", + "original_description": "7-ELEVEN 01234 #...0123", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "GENERAL_MERCHANDISE_CONVENIENCE_STORES", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "RWmGP5oMzdtreRojdm9zi5wEvmqNVpHapbAxW", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "7-eleven.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 107.91, + "authorized_date": "2025-03-22", + "authorized_datetime": null, + "category": [ + "Service", + "Food and Beverage" + ], + "category_id": "18021000", + "check_number": null, + "counterparties": [], + "date": "2025-03-26", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "SUN BASKET", + "original_description": "SUN BASKET", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "GENERAL_MERCHANDISE_OTHER_GENERAL_MERCHANDISE", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "6RrvP8d6aQt8RdaEAwWkFbyD6lRWjLi8DXeaL", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 5.47, + "authorized_date": "2025-03-22", + "authorized_datetime": null, + "category": [ + "Shops", + "Discount Stores" + ], + "category_id": "19020000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "Zzn79pb0YEwA8JD6KeyZABvmpp3w1WVZeJEY6", + "logo_url": "https://plaid-merchant-logos.plaid.com/dollar_general_287.png", + "name": "Dollar General", + "phone_number": null, + "type": "merchant", + "website": "dollargeneral.com" + } + ], + "date": "2025-03-26", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": "0123" + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/dollar_general_287.png", + "merchant_entity_id": "Zzn79pb0YEwA8JD6KeyZABvmpp3w1WVZeJEY6", + "merchant_name": "Dollar General", + "name": "Dollar General", + "original_description": "DOLLAR-GENERAL #0123", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "GENERAL_MERCHANDISE_DISCOUNT_STORES", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "XyXrM5BG47fmPpGD7694U6qPyJX8decbKnLMn", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "dollargeneral.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 167.23, + "authorized_date": "2025-03-23", + "authorized_datetime": null, + "category": [ + "Shops", + "Digital Purchase" + ], + "category_id": "19019000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "2gOwmq9qK56K60oDm3eLrREV2B2mVadkRn8MW", + "logo_url": "https://plaid-merchant-logos.plaid.com/amazon_44.png", + "name": "Amazon", + "phone_number": null, + "type": "merchant", + "website": "amazon.com" + } + ], + "date": "2025-03-26", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/amazon_44.png", + "merchant_entity_id": "2gOwmq9qK56K60oDm3eLrREV2B2mVadkRn8MW", + "merchant_name": "Amazon", + "name": "Amazon.com*MW*A012C*", + "original_description": "Amazon.com*MW*A012C*", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "GENERAL_MERCHANDISE_ONLINE_MARKETPLACES", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "DPZBW5VqgbFP764zbpqmSvjWJDPg3bt3WaJlQ", + "transaction_type": "digital", + "unofficial_currency_code": null, + "website": "amazon.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 16.77, + "authorized_date": "2025-03-25", + "authorized_datetime": null, + "category": [ + "Shops", + "Pharmacies" + ], + "category_id": "19043000", + "check_number": null, + "counterparties": [], + "date": "2025-03-26", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": "01234" + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "LONGS #01234", + "original_description": "LONGS #01234", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "GENERAL_MERCHANDISE_OTHER_GENERAL_MERCHANDISE", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "VbRqQ5rLdPcn6RqVP4QdsXJG18VQ3Et9gPE5E", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 1.49, + "authorized_date": "2025-03-22", + "authorized_datetime": null, + "category": [ + "Service" + ], + "category_id": "18000000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "pM6DgZmaEORp3B2o01rV7MW8dkN30byzJgJwe", + "logo_url": "https://plaid-merchant-logos.plaid.com/google_drive_1427.png", + "name": "Google Drive", + "phone_number": null, + "type": "merchant", + "website": "google.com/drive" + }, + { + "confidence_level": "VERY_HIGH", + "entity_id": "8LVAN69qv4bO21pNgv3VEZqByB2V0MOm87mMB", + "logo_url": "https://plaid-counterparty-logos.plaid.com/google_play_120.png", + "name": "Google Play Store", + "phone_number": null, + "type": "marketplace", + "website": "play.google.com/store" + } + ], + "date": "2025-03-24", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": "CA", + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/google_drive_1427.png", + "merchant_entity_id": "pM6DgZmaEORp3B2o01rV7MW8dkN30byzJgJwe", + "merchant_name": "Google Drive", + "name": "Google Cloud Storage", + "original_description": "GOOGLE *Google Storage 012-012-0123 CA", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": "Google Wallet", + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "GENERAL_SERVICES_OTHER_GENERAL_SERVICES", + "primary": "GENERAL_SERVICES" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_SERVICES.png", + "transaction_code": null, + "transaction_id": "wWnqpjJldatQbrvJydjETKPDB3J4E9cPZomy1", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "google.com/drive" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 32.24, + "authorized_date": "2025-03-24", + "authorized_datetime": null, + "category": [ + "Service", + "Entertainment" + ], + "category_id": "18018000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "8LVAN69qv4bO21pNgv3VEZqByB2V0MOm87mMB", + "logo_url": "https://plaid-counterparty-logos.plaid.com/google_play_120.png", + "name": "Google Play Store", + "phone_number": null, + "type": "marketplace", + "website": "play.google.com/store" + } + ], + "date": "2025-03-24", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": "Google Play", + "name": "Google Play", + "original_description": "GOOGLE *Google Play", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": "Google Wallet", + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "ENTERTAINMENT_VIDEO_GAMES", + "primary": "ENTERTAINMENT" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_ENTERTAINMENT.png", + "transaction_code": null, + "transaction_id": "5vK5Ng6bdetkX4dDA6NbSqZK7QDoXMu5K784X", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 43.4, + "authorized_date": "2025-03-22", + "authorized_datetime": null, + "category": [ + "Shops", + "Supermarkets and Groceries" + ], + "category_id": "19047000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "Wwj2nkj2Ez5b4mVQzWmy8Q0a8YA0LwEaojdZV", + "logo_url": "https://plaid-merchant-logos.plaid.com/albertsons_34.png", + "name": "Albertsons", + "phone_number": null, + "type": "merchant", + "website": "albertsons.com" + } + ], + "date": "2025-03-27", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/albertsons_34.png", + "merchant_entity_id": "Wwj2nkj2Ez5b4mVQzWmy8Q0a8YA0LwEaojdZV", + "merchant_name": "Albertsons", + "name": "Albertsons", + "original_description": "ALBERTSONS STORE 0123", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "FOOD_AND_DRINK_GROCERIES", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "JMgVz59xnlhM1pyKljkeUAXZgLJDw6IB6gkKM", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "albertsons.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 84.05, + "authorized_date": "2025-03-25", + "authorized_datetime": null, + "category": [ + "Shops", + "Furniture and Home Decor" + ], + "category_id": "19027000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "p51LQXRo28X81vDv7WyX48JvrYZQ56vO3WONr", + "logo_url": "https://plaid-merchant-logos.plaid.com/homegoods_492.png", + "name": "HomeGoods", + "phone_number": null, + "type": "merchant", + "website": "homegoods.com" + } + ], + "date": "2025-03-27", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": "0123" + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/homegoods_492.png", + "merchant_entity_id": "p51LQXRo28X81vDv7WyX48JvrYZQ56vO3WONr", + "merchant_name": "HomeGoods", + "name": "HomeGoods", + "original_description": "HOMEGOODS # 0123", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "HOME_IMPROVEMENT_FURNITURE", + "primary": "HOME_IMPROVEMENT" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_HOME_IMPROVEMENT.png", + "transaction_code": null, + "transaction_id": "k7ZAaqkDn9IeLWvPMD3QTQmwjAae61sL6doG6", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "homegoods.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 73.5, + "authorized_date": "2025-03-25", + "authorized_datetime": null, + "category": [ + "Travel", + "Gas Stations" + ], + "category_id": "22009000", + "check_number": null, + "counterparties": [], + "date": "2025-03-28", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "Jet Blue Gate Retail", + "original_description": "Jet Blue Gate Retail", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "GENERAL_MERCHANDISE_OTHER_GENERAL_MERCHANDISE", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "leMA4KdDbvT9Rj8aDw3ASlqwZmdvGDipodRz3", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 14.67, + "authorized_date": "2025-03-28", + "authorized_datetime": null, + "category": [ + "Travel", + "Gas Stations" + ], + "category_id": "22009000", + "check_number": null, + "counterparties": [], + "date": "2025-03-28", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "GATE 0123", + "original_description": "GATE 0123", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "GENERAL_MERCHANDISE_OTHER_GENERAL_MERCHANDISE", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "bBdylJgXLku1ryVNQ9XehxReg34KG7tmbZ79X", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 151.92, + "authorized_date": "2025-03-28", + "authorized_datetime": null, + "category": [ + "Shops", + "Hardware Store" + ], + "category_id": "19030000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "gKVNZovgmgR83m9NWdeBE9WL28w8EJy3MamQv", + "logo_url": "https://plaid-merchant-logos.plaid.com/menards_625.png", + "name": "Menards", + "phone_number": null, + "type": "merchant", + "website": "menards.com" + } + ], + "date": "2025-03-28", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/menards_625.png", + "merchant_entity_id": "gKVNZovgmgR83m9NWdeBE9WL28w8EJy3MamQv", + "merchant_name": "Menards", + "name": "Menards", + "original_description": "Menards", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "HOME_IMPROVEMENT_FURNITURE", + "primary": "HOME_IMPROVEMENT" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_HOME_IMPROVEMENT.png", + "transaction_code": null, + "transaction_id": "mQ1ANkbDmRfb4yvJ6npMt6LmBj1NyEcgydXK5", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "menards.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 121.94, + "authorized_date": "2025-03-28", + "authorized_datetime": null, + "category": [ + "Travel", + "Airlines and Aviation Services" + ], + "category_id": "22001000", + "check_number": null, + "counterparties": [], + "date": "2025-03-28", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "JetBlue", + "original_description": "JETBLUE 0123456789012", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "ENTERTAINMENT_SPORTING_EVENTS_AMUSEMENT_PARKS_AND_MUSEUMS", + "primary": "ENTERTAINMENT" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_ENTERTAINMENT.png", + "transaction_code": null, + "transaction_id": "yGmrge5K4NFpDQweBL4yuPM35rxdXZi46Xw1q", + "transaction_type": "special", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 55.84, + "authorized_date": "2025-03-28", + "authorized_datetime": null, + "category": [ + "Shops", + "Supermarkets and Groceries" + ], + "category_id": "19047000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "rZ8BQewZbBezLVVnKmARnrVqyAnoz2Nz715QJ", + "logo_url": "https://plaid-merchant-logos.plaid.com/frys_food_and_drug_407.png", + "name": "Fry's Food and Drug", + "phone_number": null, + "type": "merchant", + "website": "frysfood.com" + } + ], + "date": "2025-03-28", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/frys_food_and_drug_407.png", + "merchant_entity_id": "rZ8BQewZbBezLVVnKmARnrVqyAnoz2Nz715QJ", + "merchant_name": "Fry's Food and Drug", + "name": "FRY'S FOOD DRG 012", + "original_description": "FRY'S FOOD DRG 012", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "HIGH", + "detailed": "FOOD_AND_DRINK_GROCERIES", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "9q36eAK7P1iqGMPbA34yUAZV7NmLojI4xQgeL", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "frysfood.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 36.38, + "authorized_date": "2025-03-29", + "authorized_datetime": null, + "category": [ + "Travel", + "Car Service", + "Ride Share" + ], + "category_id": "22006001", + "check_number": null, + "counterparties": [], + "date": "2025-03-29", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "BC *UBER CASH", + "original_description": "BC *UBER CASH", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "TRANSPORTATION_TAXIS_AND_RIDE_SHARES", + "primary": "TRANSPORTATION" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_TRANSPORTATION.png", + "transaction_code": null, + "transaction_id": "vEGlLPADxdT7rVvMKoxpsbozq3NxkGiq6k1Gp", + "transaction_type": "special", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 6.13, + "authorized_date": "2025-03-29", + "authorized_datetime": null, + "category": [ + "Travel", + "Parking" + ], + "category_id": "22013000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "Aj7pLjAWWKKBmLzN1NNjaZjNppyjnoXw78qwz", + "logo_url": "https://plaid-merchant-logos.plaid.com/nyc_dot_parking_meters_692.png", + "name": "NYC DOT - Parking Meters", + "phone_number": null, + "type": "merchant", + "website": "nyc.gov/html/dot/html/motorist/meterpark.shtml" + } + ], + "date": "2025-04-01", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": "Long Island City", + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": "NY", + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/nyc_dot_parking_meters_692.png", + "merchant_entity_id": "Aj7pLjAWWKKBmLzN1NNjaZjNppyjnoXw78qwz", + "merchant_name": "NYC DOT - Parking Meters", + "name": "NYCDOT PARKING METERS", + "original_description": "NYCDOT PARKING METERS LONG IS CITY NY", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "TRANSPORTATION_PARKING", + "primary": "TRANSPORTATION" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_TRANSPORTATION.png", + "transaction_code": null, + "transaction_id": "RWmGP5oMzdtreRojdm9zi5wEvmqNVpHapbAxq", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "nyc.gov/html/dot/html/motorist/meterpark.shtml" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 14.68, + "authorized_date": "2025-03-29", + "authorized_datetime": null, + "category": [ + "Travel", + "Taxi" + ], + "category_id": "22016000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "eyg8o776k0QmNgVpAmaQj4WgzW9Qzo6O51gdd", + "logo_url": "https://plaid-merchant-logos.plaid.com/uber_1060.png", + "name": "Uber", + "phone_number": null, + "type": "merchant", + "website": "uber.com" + } + ], + "date": "2025-03-31", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": "CA", + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/uber_1060.png", + "merchant_entity_id": "eyg8o776k0QmNgVpAmaQj4WgzW9Qzo6O51gdd", + "merchant_name": "Uber", + "name": "UBER 0123456789", + "original_description": "UBER 0123456789 CA", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "TRANSPORTATION_TAXIS_AND_RIDE_SHARES", + "primary": "TRANSPORTATION" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_TRANSPORTATION.png", + "transaction_code": null, + "transaction_id": "6RrvP8d6aQt8RdaEAwWkFbyD6lRWjLi8DXea9", + "transaction_type": "special", + "unofficial_currency_code": null, + "website": "uber.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 14.87, + "authorized_date": "2025-03-31", + "authorized_datetime": null, + "category": [ + "Service", + "Food and Beverage" + ], + "category_id": "18021000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "YNRJg5o2djJLv52nBA1Yn1KpL858egYVo4dpm", + "logo_url": "https://plaid-counterparty-logos.plaid.com/doordash_1.png", + "name": "DoorDash", + "phone_number": null, + "type": "marketplace", + "website": "doordash.com" + } + ], + "date": "2025-03-31", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": "DoorDash", + "name": "DoorDash", + "original_description": "DoorDash", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "MEDIUM", + "detailed": "FOOD_AND_DRINK_RESTAURANT", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "XyXrM5BG47fmPpGD7694U6qPyJX8decbKnLMg", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 36.75, + "authorized_date": "2025-04-02", + "authorized_datetime": null, + "category": [ + "Shops", + "Clothing and Accessories", + "Women's Store" + ], + "category_id": "19012001", + "check_number": null, + "counterparties": [ + { + "confidence_level": "LOW", + "entity_id": null, + "logo_url": null, + "name": "Other Stories", + "phone_number": null, + "type": "merchant", + "website": null + } + ], + "date": "2025-04-02", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": "NJ", + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": "Other Stories", + "name": "\u0026 OTHER STORIES WEB", + "original_description": "\u0026 OTHER STORIES WEB 012-012-0123 NJ", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "GENERAL_MERCHANDISE_OTHER_GENERAL_MERCHANDISE", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "DPZBW5VqgbFP764zbpqmSvjWJDPg3bt3WaJlD", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 3.2, + "authorized_date": "2025-04-02", + "authorized_datetime": null, + "category": [ + "Travel", + "Car Service", + "Ride Share" + ], + "category_id": "22006001", + "check_number": null, + "counterparties": [], + "date": "2025-04-02", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "VIA", + "original_description": "VIA", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "GENERAL_MERCHANDISE_OTHER_GENERAL_MERCHANDISE", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "VbRqQ5rLdPcn6RqVP4QdsXJG18VQ3Et9gPE5r", + "transaction_type": "special", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 103.09, + "authorized_date": "2025-04-04", + "authorized_datetime": null, + "category": [ + "Travel", + "Taxi" + ], + "category_id": "22016000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "eyg8o776k0QmNgVpAmaQj4WgzW9Qzo6O51gdd", + "logo_url": "https://plaid-merchant-logos.plaid.com/uber_1060.png", + "name": "Uber", + "phone_number": null, + "type": "merchant", + "website": "uber.com" + } + ], + "date": "2025-04-04", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": "CA", + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/uber_1060.png", + "merchant_entity_id": "eyg8o776k0QmNgVpAmaQj4WgzW9Qzo6O51gdd", + "merchant_name": "Uber", + "name": "Uber", + "original_description": "UBER TRIP 0123456789 CA", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "TRANSPORTATION_TAXIS_AND_RIDE_SHARES", + "primary": "TRANSPORTATION" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_TRANSPORTATION.png", + "transaction_code": null, + "transaction_id": "wWnqpjJldatQbrvJydjETKPDB3J4E9cPZomya", + "transaction_type": "special", + "unofficial_currency_code": null, + "website": "uber.com" + }, + { + "account_id": "MpWPx5o4yrcpZvwQrdbMuwX699pjDRCLX98NN", + "account_owner": null, + "amount": 66.88, + "authorized_date": "2023-06-01", + "authorized_datetime": null, + "category": [ + "Interest", + "Interest Earned" + ], + "category_id": "15001000", + "check_number": null, + "counterparties": [], + "date": "2023-06-01", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "Interest", + "original_description": "Interest", + "payment_channel": "other", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "GENERAL_MERCHANDISE_OTHER_GENERAL_MERCHANDISE", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "DPZBW5VqgbFP764zbpqmSvjWJDPg3bt3WaJvG", + "transaction_type": "special", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "MpWPx5o4yrcpZvwQrdbMuwX699pjDRCLX98NN", + "account_owner": null, + "amount": 64.73, + "authorized_date": "2023-07-01", + "authorized_datetime": null, + "category": [ + "Interest", + "Interest Earned" + ], + "category_id": "15001000", + "check_number": null, + "counterparties": [], + "date": "2023-07-01", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "Interest", + "original_description": "Interest", + "payment_channel": "other", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "GENERAL_MERCHANDISE_OTHER_GENERAL_MERCHANDISE", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "VbRqQ5rLdPcn6RqVP4QdsXJG18VQ3Et9gPEWA", + "transaction_type": "special", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "MpWPx5o4yrcpZvwQrdbMuwX699pjDRCLX98NN", + "account_owner": null, + "amount": 66.88, + "authorized_date": "2023-08-01", + "authorized_datetime": null, + "category": [ + "Interest", + "Interest Earned" + ], + "category_id": "15001000", + "check_number": null, + "counterparties": [], + "date": "2023-08-01", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "Interest", + "original_description": "Interest", + "payment_channel": "other", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "GENERAL_MERCHANDISE_OTHER_GENERAL_MERCHANDISE", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "wWnqpjJldatQbrvJydjETKPDB3J4E9cPZomrD", + "transaction_type": "special", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "MpWPx5o4yrcpZvwQrdbMuwX699pjDRCLX98NN", + "account_owner": null, + "amount": 66.88, + "authorized_date": "2023-09-01", + "authorized_datetime": null, + "category": [ + "Interest", + "Interest Earned" + ], + "category_id": "15001000", + "check_number": null, + "counterparties": [], + "date": "2023-09-01", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "Interest", + "original_description": "Interest", + "payment_channel": "other", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "GENERAL_MERCHANDISE_OTHER_GENERAL_MERCHANDISE", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "5vK5Ng6bdetkX4dDA6NbSqZK7QDoXMu5K78Za", + "transaction_type": "special", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "MpWPx5o4yrcpZvwQrdbMuwX699pjDRCLX98NN", + "account_owner": null, + "amount": 64.73, + "authorized_date": "2023-10-01", + "authorized_datetime": null, + "category": [ + "Interest", + "Interest Earned" + ], + "category_id": "15001000", + "check_number": null, + "counterparties": [], + "date": "2023-10-01", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "Interest", + "original_description": "Interest", + "payment_channel": "other", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "GENERAL_MERCHANDISE_OTHER_GENERAL_MERCHANDISE", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "JMgVz59xnlhM1pyKljkeUAXZgLJDw6IB6gkdV", + "transaction_type": "special", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "MpWPx5o4yrcpZvwQrdbMuwX699pjDRCLX98NN", + "account_owner": null, + "amount": 66.88, + "authorized_date": "2023-11-01", + "authorized_datetime": null, + "category": [ + "Interest", + "Interest Earned" + ], + "category_id": "15001000", + "check_number": null, + "counterparties": [], + "date": "2023-11-01", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "Interest", + "original_description": "Interest", + "payment_channel": "other", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "GENERAL_MERCHANDISE_OTHER_GENERAL_MERCHANDISE", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "k7ZAaqkDn9IeLWvPMD3QTQmwjAae61sL6doWM", + "transaction_type": "special", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "MpWPx5o4yrcpZvwQrdbMuwX699pjDRCLX98NN", + "account_owner": null, + "amount": 64.73, + "authorized_date": "2023-12-01", + "authorized_datetime": null, + "category": [ + "Interest", + "Interest Earned" + ], + "category_id": "15001000", + "check_number": null, + "counterparties": [], + "date": "2023-12-01", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "Interest", + "original_description": "Interest", + "payment_channel": "other", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "GENERAL_MERCHANDISE_OTHER_GENERAL_MERCHANDISE", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "leMA4KdDbvT9Rj8aDw3ASlqwZmdvGDipodRZ9", + "transaction_type": "special", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "MpWPx5o4yrcpZvwQrdbMuwX699pjDRCLX98NN", + "account_owner": null, + "amount": 66.88, + "authorized_date": "2024-01-01", + "authorized_datetime": null, + "category": [ + "Interest", + "Interest Earned" + ], + "category_id": "15001000", + "check_number": null, + "counterparties": [], + "date": "2024-01-01", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "Interest", + "original_description": "Interest", + "payment_channel": "other", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "GENERAL_MERCHANDISE_OTHER_GENERAL_MERCHANDISE", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "qLgAex9DKrfNjEv5oDMaFebVapMmWGhgr7Rgw", + "transaction_type": "special", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "MpWPx5o4yrcpZvwQrdbMuwX699pjDRCLX98NN", + "account_owner": null, + "amount": 66.88, + "authorized_date": "2024-02-01", + "authorized_datetime": null, + "category": [ + "Interest", + "Interest Earned" + ], + "category_id": "15001000", + "check_number": null, + "counterparties": [], + "date": "2024-02-01", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "Interest", + "original_description": "Interest", + "payment_channel": "other", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "GENERAL_MERCHANDISE_OTHER_GENERAL_MERCHANDISE", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "K18PB5Zdbqh17BVgqbRQhyoaA5z1deiRpA1Re", + "transaction_type": "special", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "MpWPx5o4yrcpZvwQrdbMuwX699pjDRCLX98NN", + "account_owner": null, + "amount": 62.57, + "authorized_date": "2024-03-01", + "authorized_datetime": null, + "category": [ + "Interest", + "Interest Earned" + ], + "category_id": "15001000", + "check_number": null, + "counterparties": [], + "date": "2024-03-01", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "Interest", + "original_description": "Interest", + "payment_channel": "other", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "GENERAL_MERCHANDISE_OTHER_GENERAL_MERCHANDISE", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "rp8wQd9Drzc7XxVRZbBNsbxP5JMjG9i7J617E", + "transaction_type": "special", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "MpWPx5o4yrcpZvwQrdbMuwX699pjDRCLX98NN", + "account_owner": null, + "amount": 66.88, + "authorized_date": "2024-04-01", + "authorized_datetime": null, + "category": [ + "Interest", + "Interest Earned" + ], + "category_id": "15001000", + "check_number": null, + "counterparties": [], + "date": "2024-04-01", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "Interest", + "original_description": "Interest", + "payment_channel": "other", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "GENERAL_MERCHANDISE_OTHER_GENERAL_MERCHANDISE", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "zkyz8Q9rNPCXgWQeyj9pIeqPWlmJpdhlNLQlz", + "transaction_type": "special", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "MpWPx5o4yrcpZvwQrdbMuwX699pjDRCLX98NN", + "account_owner": null, + "amount": 64.73, + "authorized_date": "2024-05-01", + "authorized_datetime": null, + "category": [ + "Interest", + "Interest Earned" + ], + "category_id": "15001000", + "check_number": null, + "counterparties": [], + "date": "2024-05-01", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "Interest", + "original_description": "Interest", + "payment_channel": "other", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "GENERAL_MERCHANDISE_OTHER_GENERAL_MERCHANDISE", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "B4ek869ZpGC41mDnjvVxuBdXVLjPRxC4M8g4N", + "transaction_type": "special", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "MpWPx5o4yrcpZvwQrdbMuwX699pjDRCLX98NN", + "account_owner": null, + "amount": 66.88, + "authorized_date": "2024-06-01", + "authorized_datetime": null, + "category": [ + "Interest", + "Interest Earned" + ], + "category_id": "15001000", + "check_number": null, + "counterparties": [], + "date": "2024-06-01", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "Interest", + "original_description": "Interest", + "payment_channel": "other", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "GENERAL_MERCHANDISE_OTHER_GENERAL_MERCHANDISE", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "3ylJapdb3jf8nK3A1z7JF3jlmQa5LBhZlnEZ3", + "transaction_type": "special", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "MpWPx5o4yrcpZvwQrdbMuwX699pjDRCLX98NN", + "account_owner": null, + "amount": 64.73, + "authorized_date": "2024-07-01", + "authorized_datetime": null, + "category": [ + "Interest", + "Interest Earned" + ], + "category_id": "15001000", + "check_number": null, + "counterparties": [], + "date": "2024-07-01", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "Interest", + "original_description": "Interest", + "payment_channel": "other", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "GENERAL_MERCHANDISE_OTHER_GENERAL_MERCHANDISE", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "xAbKo75qa4um5aZ8zndpUMd7gW5wbxU64Ve6V", + "transaction_type": "special", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "MpWPx5o4yrcpZvwQrdbMuwX699pjDRCLX98NN", + "account_owner": null, + "amount": 66.88, + "authorized_date": "2024-08-01", + "authorized_datetime": null, + "category": [ + "Interest", + "Interest Earned" + ], + "category_id": "15001000", + "check_number": null, + "counterparties": [], + "date": "2024-08-01", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "Interest", + "original_description": "Interest", + "payment_channel": "other", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "GENERAL_MERCHANDISE_OTHER_GENERAL_MERCHANDISE", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "dx4ZK58XoWCvbXVZlNgaC9Rl5wkLExCJEQRJa", + "transaction_type": "special", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "MpWPx5o4yrcpZvwQrdbMuwX699pjDRCLX98NN", + "account_owner": null, + "amount": 66.88, + "authorized_date": "2024-09-01", + "authorized_datetime": null, + "category": [ + "Interest", + "Interest Earned" + ], + "category_id": "15001000", + "check_number": null, + "counterparties": [], + "date": "2024-09-01", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "Interest", + "original_description": "Interest", + "payment_channel": "other", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "GENERAL_MERCHANDISE_OTHER_GENERAL_MERCHANDISE", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "azx7A59X1gc5orV6dPw3soqAjJ3zZysZ5QDZD", + "transaction_type": "special", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "MpWPx5o4yrcpZvwQrdbMuwX699pjDRCLX98NN", + "account_owner": null, + "amount": 64.73, + "authorized_date": "2024-10-01", + "authorized_datetime": null, + "category": [ + "Interest", + "Interest Earned" + ], + "category_id": "15001000", + "check_number": null, + "counterparties": [], + "date": "2024-10-01", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "Interest", + "original_description": "Interest", + "payment_channel": "other", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "GENERAL_MERCHANDISE_OTHER_GENERAL_MERCHANDISE", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "49qZ4oGbx7T873XDoebnFmlbdW4eDaFJbALJR", + "transaction_type": "special", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "MpWPx5o4yrcpZvwQrdbMuwX699pjDRCLX98NN", + "account_owner": null, + "amount": 66.88, + "authorized_date": "2024-11-01", + "authorized_datetime": null, + "category": [ + "Interest", + "Interest Earned" + ], + "category_id": "15001000", + "check_number": null, + "counterparties": [], + "date": "2024-11-01", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "Interest", + "original_description": "Interest", + "payment_channel": "other", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "GENERAL_MERCHANDISE_OTHER_GENERAL_MERCHANDISE", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "NokPd5gNlzfoV1byzGkls7JMP5G3Q9sy65Qy8", + "transaction_type": "special", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "MpWPx5o4yrcpZvwQrdbMuwX699pjDRCLX98NN", + "account_owner": null, + "amount": 64.73, + "authorized_date": "2024-12-01", + "authorized_datetime": null, + "category": [ + "Interest", + "Interest Earned" + ], + "category_id": "15001000", + "check_number": null, + "counterparties": [], + "date": "2024-12-01", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "Interest", + "original_description": "Interest", + "payment_channel": "other", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "GENERAL_MERCHANDISE_OTHER_GENERAL_MERCHANDISE", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "P8n745oWK3cnXKyW31x9slDB75xZEeio6WAo5", + "transaction_type": "special", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "MpWPx5o4yrcpZvwQrdbMuwX699pjDRCLX98NN", + "account_owner": null, + "amount": 66.88, + "authorized_date": "2025-01-01", + "authorized_datetime": null, + "category": [ + "Interest", + "Interest Earned" + ], + "category_id": "15001000", + "check_number": null, + "counterparties": [], + "date": "2025-01-01", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "Interest", + "original_description": "Interest", + "payment_channel": "other", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "GENERAL_MERCHANDISE_OTHER_GENERAL_MERCHANDISE", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "jjQ7dlP5GyCbNavw7rzpty4MQmk9opi6WLa6W", + "transaction_type": "special", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "MpWPx5o4yrcpZvwQrdbMuwX699pjDRCLX98NN", + "account_owner": null, + "amount": 66.88, + "authorized_date": "2025-02-01", + "authorized_datetime": null, + "category": [ + "Interest", + "Interest Earned" + ], + "category_id": "15001000", + "check_number": null, + "counterparties": [], + "date": "2025-02-01", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "Interest", + "original_description": "Interest", + "payment_channel": "other", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "GENERAL_MERCHANDISE_OTHER_GENERAL_MERCHANDISE", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "76zXjElb4Zt8RL4DAzM9F9Zwj8GW6DCdJnxdk", + "transaction_type": "special", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "MpWPx5o4yrcpZvwQrdbMuwX699pjDRCLX98NN", + "account_owner": null, + "amount": 60.41, + "authorized_date": "2025-03-01", + "authorized_datetime": null, + "category": [ + "Interest", + "Interest Earned" + ], + "category_id": "15001000", + "check_number": null, + "counterparties": [], + "date": "2025-03-01", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "Interest", + "original_description": "Interest", + "payment_channel": "other", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "GENERAL_MERCHANDISE_OTHER_GENERAL_MERCHANDISE", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "edNwr51XgAcoARVZP68vsdRGzqom9Bur95mr4", + "transaction_type": "special", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "MpWPx5o4yrcpZvwQrdbMuwX699pjDRCLX98NN", + "account_owner": null, + "amount": 66.88, + "authorized_date": "2025-04-01", + "authorized_datetime": null, + "category": [ + "Interest", + "Interest Earned" + ], + "category_id": "15001000", + "check_number": null, + "counterparties": [], + "date": "2025-04-01", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "Interest", + "original_description": "Interest", + "payment_channel": "other", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "GENERAL_MERCHANDISE_OTHER_GENERAL_MERCHANDISE", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "QEbZN5mMrxTnJ4XRxba9s9paZDyVQGCwm7Dwd", + "transaction_type": "special", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 21.47, + "authorized_date": "2025-04-20", + "authorized_datetime": null, + "category": [ + "Shops", + "Supermarkets and Groceries" + ], + "category_id": "19047000", + "check_number": null, + "counterparties": [], + "date": "2025-04-20", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "NEW SEASONS MARKET", + "original_description": "NEW SEASONS MARKET", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "GENERAL_MERCHANDISE_OTHER_GENERAL_MERCHANDISE", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "3ylJapdb3jf8nK3A1z7JF3j39o47aEIZgqeXv", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 11.27, + "authorized_date": "2025-04-20", + "authorized_datetime": null, + "category": [ + "Food and Drink", + "Restaurants", + "Fast Food" + ], + "category_id": "13005032", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "OEkMw43LJ9yzKOJqrLJyJVBY8dyYa4LqeRLLn", + "logo_url": "https://plaid-merchant-logos.plaid.com/jack_in_the_box_528.png", + "name": "Jack in the Box", + "phone_number": null, + "type": "merchant", + "website": "jackinthebox.com" + } + ], + "date": "2025-04-20", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/jack_in_the_box_528.png", + "merchant_entity_id": "OEkMw43LJ9yzKOJqrLJyJVBY8dyYa4LqeRLLn", + "merchant_name": "Jack in the Box", + "name": "Jack in the Box", + "original_description": "Jack in the Box", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "FOOD_AND_DRINK_FAST_FOOD", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "xAbKo75qa4um5aZ8zndpUMdM8E3A5Df6MnRgm", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "jackinthebox.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 126.35, + "authorized_date": "2025-04-21", + "authorized_datetime": null, + "category": [ + "Travel", + "Car and Truck Rentals" + ], + "category_id": "22005000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "p6vABXmp4N26EN7Qo1YVLRveadZLEbX5qDNpD", + "logo_url": "https://plaid-merchant-logos.plaid.com/avis_85.png", + "name": "Avis", + "phone_number": null, + "type": "merchant", + "website": "avis.com" + } + ], + "date": "2025-04-21", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/avis_85.png", + "merchant_entity_id": "p6vABXmp4N26EN7Qo1YVLRveadZLEbX5qDNpD", + "merchant_name": "Avis", + "name": "Avis", + "original_description": "AVIS RENT-A-CAR *", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "TRAVEL_RENTAL_CARS", + "primary": "TRAVEL" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_TRAVEL.png", + "transaction_code": null, + "transaction_id": "dx4ZK58XoWCvbXVZlNgaC9R9N6MXkPUJyZx9P", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "avis.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 10.57, + "authorized_date": "2025-04-21", + "authorized_datetime": null, + "category": [ + "Shops", + "Discount Stores" + ], + "category_id": "19020000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "rMKJ1dN2kL4NQarZ3oQMW9j14YpL845dDQo7R", + "logo_url": "https://plaid-merchant-logos.plaid.com/dollar_tree_289.png", + "name": "Dollar Tree", + "phone_number": null, + "type": "merchant", + "website": "dollartree.com" + } + ], + "date": "2025-04-21", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/dollar_tree_289.png", + "merchant_entity_id": "rMKJ1dN2kL4NQarZ3oQMW9j14YpL845dDQo7R", + "merchant_name": "Dollar Tree", + "name": "DOLLARTREE", + "original_description": "DOLLARTREE", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "GENERAL_MERCHANDISE_DISCOUNT_STORES", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "azx7A59X1gc5orV6dPw3soqoQv5V3WuZ67xn7", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "dollartree.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 52.36, + "authorized_date": "2025-04-21", + "authorized_datetime": null, + "category": [ + "Service", + "Food and Beverage" + ], + "category_id": "18021000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "vrvNr4Y1JAd6gb53bNd9LY3BzdEbnbvgQVkzX", + "logo_url": "https://plaid-counterparty-logos.plaid.com/skipthedishes_205.png", + "name": "SkipTheDishes", + "phone_number": null, + "type": "marketplace", + "website": "skipthedishes.com" + } + ], + "date": "2025-04-22", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": "SkipTheDishes", + "name": "SKIPTHEDISHES.COM", + "original_description": "SKIPTHEDISHES.COM", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "MEDIUM", + "detailed": "FOOD_AND_DRINK_RESTAURANT", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "49qZ4oGbx7T873XDoebnFmlm68Rq4zFJpdwWJ", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 3.71, + "authorized_date": "2025-04-21", + "authorized_datetime": null, + "category": [ + "Service", + "Personal Care" + ], + "category_id": "18045000", + "check_number": null, + "counterparties": [], + "date": "2025-04-22", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "CHANGE POINT LAUNDRY PYMT", + "original_description": "CHANGE POINT LAUNDRY PYMT", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "GENERAL_MERCHANDISE_OTHER_GENERAL_MERCHANDISE", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "NokPd5gNlzfoV1byzGkls7J7bLZaG4fy8WqaX", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 159.16, + "authorized_date": "2025-04-22", + "authorized_datetime": null, + "category": [ + "Shops", + "Clothing and Accessories" + ], + "category_id": "19012000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "5w9DQXA8gzNyboXeWOpOOv748b2BZnZaMnrA1", + "logo_url": "https://plaid-merchant-logos.plaid.com/adidas_16.png", + "name": "Adidas", + "phone_number": null, + "type": "merchant", + "website": "adidas.com" + } + ], + "date": "2025-04-22", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/adidas_16.png", + "merchant_entity_id": "5w9DQXA8gzNyboXeWOpOOv748b2BZnZaMnrA1", + "merchant_name": "Adidas", + "name": "ADIDAS ONLINE STORE OR", + "original_description": "ADIDAS ONLINE STORE 012-012-0123 OR", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "GENERAL_MERCHANDISE_SPORTING_GOODS", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "P8n745oWK3cnXKyW31x9slDl4WdaxPioL7rjQ", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "adidas.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 25.09, + "authorized_date": "2025-04-22", + "authorized_datetime": null, + "category": [ + "Service" + ], + "category_id": "18000000", + "check_number": null, + "counterparties": [], + "date": "2025-04-22", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "Yelp", + "original_description": "Yelp", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "GENERAL_MERCHANDISE_OTHER_GENERAL_MERCHANDISE", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "jjQ7dlP5GyCbNavw7rzpty4yvzEekWu6K189G", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 7.5, + "authorized_date": "2025-04-22", + "authorized_datetime": null, + "category": [ + "Food and Drink", + "Restaurants" + ], + "category_id": "13005000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "4D5V2em9D8Z660wkgKzjBJ2mop2EwbV9VwbDB", + "logo_url": "https://plaid-merchant-logos.plaid.com/tim_hortons_1022.png", + "name": "Tim Hortons", + "phone_number": null, + "type": "merchant", + "website": "timhortons.com" + } + ], + "date": "2025-04-22", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": "on", + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/tim_hortons_1022.png", + "merchant_entity_id": "4D5V2em9D8Z660wkgKzjBJ2mop2EwbV9VwbDB", + "merchant_name": "Tim Hortons", + "name": "Tim Hortons", + "original_description": "TIM HORTONS TORONTO ON", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "FOOD_AND_DRINK_FAST_FOOD", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "76zXjElb4Zt8RL4DAzM9F9Z9derAGxUdbgK3j", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "timhortons.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 45, + "authorized_date": "2025-04-22", + "authorized_datetime": null, + "category": [ + "Travel", + "Rail" + ], + "category_id": "22015000", + "check_number": null, + "counterparties": [], + "date": "2025-04-22", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "Amtrak", + "original_description": "AMTRAK .COM 0123456789012", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "ENTERTAINMENT_SPORTING_EVENTS_AMUSEMENT_PARKS_AND_MUSEUMS", + "primary": "ENTERTAINMENT" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_ENTERTAINMENT.png", + "transaction_code": null, + "transaction_id": "edNwr51XgAcoARVZP68vsdRdxW3boXfrvLlPJ", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 23.35, + "authorized_date": "2025-04-22", + "authorized_datetime": null, + "category": [ + "Service", + "Subscription" + ], + "category_id": "18061000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "rybeAOyg6ZE9z8LdD852ObK3kQ8RRaM0LyDrg", + "logo_url": "https://plaid-merchant-logos.plaid.com/siriusxm_906.png", + "name": "SiriusXM", + "phone_number": null, + "type": "merchant", + "website": "siriusxm.com" + } + ], + "date": "2025-04-22", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/siriusxm_906.png", + "merchant_entity_id": "rybeAOyg6ZE9z8LdD852ObK3kQ8RRaM0LyDrg", + "merchant_name": "SiriusXM", + "name": "SXM*SIRIUSXM.COM/ACCT", + "original_description": "SXM*SIRIUSXM.COM/ACCT", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "ENTERTAINMENT_MUSIC_AND_AUDIO", + "primary": "ENTERTAINMENT" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_ENTERTAINMENT.png", + "transaction_code": null, + "transaction_id": "QEbZN5mMrxTnJ4XRxba9s9p9XJolyjUwPpWBj", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "siriusxm.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 13.03, + "authorized_date": "2025-04-22", + "authorized_datetime": null, + "category": [ + "Shops", + "Discount Stores" + ], + "category_id": "19020000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "YvLB9oWw9XydNLVOdmEYVe53JgagmQ84rKnEj", + "logo_url": "https://plaid-merchant-logos.plaid.com/family_dollar_348.png", + "name": "Family Dollar", + "phone_number": null, + "type": "merchant", + "website": "familydollar.com" + } + ], + "date": "2025-04-24", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/family_dollar_348.png", + "merchant_entity_id": "YvLB9oWw9XydNLVOdmEYVe53JgagmQ84rKnEj", + "merchant_name": "Family Dollar", + "name": "Family Dollar", + "original_description": "Family Dollar", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "GENERAL_MERCHANDISE_DISCOUNT_STORES", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "ZvlBL5eMPQtnXDV6QrR9sReRmWL5ZgFeagDWW", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "familydollar.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 19.7, + "authorized_date": "2025-04-23", + "authorized_datetime": null, + "category": [ + "Service", + "Food and Beverage" + ], + "category_id": "18021000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "WKk6bENeYwvVaLaY8EEOw8Koa2X72m2wJOk1Z", + "logo_url": "https://plaid-counterparty-logos.plaid.com/seamless_5.png", + "name": "Seamless", + "phone_number": null, + "type": "marketplace", + "website": "seamless.com" + } + ], + "date": "2025-04-24", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": "NY", + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": "Seamless", + "name": "Seamless", + "original_description": "SEAMLSSSTEINWAYGOURME SEAMLESS.COM NY", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "MEDIUM", + "detailed": "FOOD_AND_DRINK_RESTAURANT", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "MpWPx5o4yrcpZvwQrdbMuwXwMmxAEaFLX98kG", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 18.97, + "authorized_date": "2025-04-23", + "authorized_datetime": null, + "category": [ + "Food and Drink", + "Restaurants", + "Fast Food" + ], + "category_id": "13005032", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "a4r8Wog9LbWrwqWpXZeJZr9b8rRbgavga0dkM", + "logo_url": "https://plaid-merchant-logos.plaid.com/dominos_292.png", + "name": "Domino's", + "phone_number": null, + "type": "merchant", + "website": "dominos.com" + } + ], + "date": "2025-04-24", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": "FL", + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/dominos_292.png", + "merchant_entity_id": "a4r8Wog9LbWrwqWpXZeJZr9b8rRbgavga0dkM", + "merchant_name": "Domino's", + "name": "Domino's", + "original_description": "0123 Dominos Pizza 012-012-0123 FL", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "FOOD_AND_DRINK_FAST_FOOD", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "1bXWx1mVzNcQvyzEo34JTXVXzaj3wrtp95GVv", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "dominos.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 30.25, + "authorized_date": "2025-04-22", + "authorized_datetime": null, + "category": [ + "Food and Drink", + "Restaurants", + "Fast Food" + ], + "category_id": "13005032", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "9dgV151n418qNVjVLer6JQVrj5YnwgQ7dqVbM", + "logo_url": "https://plaid-merchant-logos.plaid.com/pizza_hut_758.png", + "name": "Pizza Hut", + "phone_number": null, + "type": "merchant", + "website": "pizzahut.com" + } + ], + "date": "2025-04-25", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/pizza_hut_758.png", + "merchant_entity_id": "9dgV151n418qNVjVLer6JQVrj5YnwgQ7dqVbM", + "merchant_name": "Pizza Hut", + "name": "Pizza Hut", + "original_description": "PIZZA HUT 012345", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "FOOD_AND_DRINK_FAST_FOOD", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "LLEP35oamKfLwWGzKa8mCk6kqE8rxdSk6PyBv", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "pizzahut.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 22.46, + "authorized_date": "2025-04-23", + "authorized_datetime": null, + "category": [ + "Service", + "Credit Counseling and Bankruptcy Services" + ], + "category_id": "18014000", + "check_number": null, + "counterparties": [], + "date": "2025-04-25", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": "CA", + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "Experian* Credit Report", + "original_description": "Experian* Credit Report 012-0123456 CA", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "GENERAL_SERVICES_ACCOUNTING_AND_FINANCIAL_PLANNING", + "primary": "GENERAL_SERVICES" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_SERVICES.png", + "transaction_code": null, + "transaction_id": "p1oA739DqKhR4y8Xk1ZWcxJxDXZpn5tplLNe7", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 6.71, + "authorized_date": "2025-04-25", + "authorized_datetime": null, + "category": [ + "Food and Drink", + "Restaurants", + "Fast Food" + ], + "category_id": "13005032", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "9dgV151n418qNVjVLer6JQVrj5YnwgQ7dqVbM", + "logo_url": "https://plaid-merchant-logos.plaid.com/pizza_hut_758.png", + "name": "Pizza Hut", + "phone_number": null, + "type": "merchant", + "website": "pizzahut.com" + } + ], + "date": "2025-04-25", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/pizza_hut_758.png", + "merchant_entity_id": "9dgV151n418qNVjVLer6JQVrj5YnwgQ7dqVbM", + "merchant_name": "Pizza Hut", + "name": "Pizza Hut", + "original_description": "PIZZA HUT 012345678901", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "FOOD_AND_DRINK_FAST_FOOD", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "oMpyjB9Dlqhb4v8gkyn6tbzbw9dXyNuoQRnAW", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "pizzahut.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 8.52, + "authorized_date": "2025-04-25", + "authorized_datetime": null, + "category": [ + "Food and Drink", + "Restaurants", + "Fast Food" + ], + "category_id": "13005032", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "16RXA67KaQVW2JnKrkqndbVkpZW8ykA8YAB28", + "logo_url": "https://plaid-merchant-logos.plaid.com/innout_burger_517.png", + "name": "In-N-Out Burger", + "phone_number": null, + "type": "merchant", + "website": "in-n-out.com" + } + ], + "date": "2025-04-25", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": "11455 Laurel Canyon Blvd", + "city": "San Fernando", + "country": null, + "lat": null, + "lon": null, + "postal_code": "91340", + "region": "CA", + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/innout_burger_517.png", + "merchant_entity_id": "16RXA67KaQVW2JnKrkqndbVkpZW8ykA8YAB28", + "merchant_name": "In-N-Out Burger", + "name": "In-N-Out Burger", + "original_description": "IN N OUT BURGER 012", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "FOOD_AND_DRINK_FAST_FOOD", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "g4j7B5kXEnCwdLV7NzQPHV5VgeoABmfENgQ9A", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "in-n-out.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 1499.25, + "authorized_date": "2025-04-25", + "authorized_datetime": null, + "category": [ + "Shops", + "Computers and Electronics", + "Cameras" + ], + "category_id": "19013003", + "check_number": null, + "counterparties": [ + { + "confidence_level": "LOW", + "entity_id": null, + "logo_url": null, + "name": "B\u0026h Photo", + "phone_number": null, + "type": "merchant", + "website": null + } + ], + "date": "2025-04-25", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": "NY", + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": "B\u0026h Photo", + "name": "B\u0026H PHOTO 012-0123456", + "original_description": "B\u0026H PHOTO 012-012-0123 012-0123456 NY", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "GENERAL_MERCHANDISE_OTHER_GENERAL_MERCHANDISE", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "8lBZ7kqmNMflM6N1rBb8udzd4XJryvfW7wV5d", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 37.08, + "authorized_date": "2025-04-22", + "authorized_datetime": null, + "category": [ + "Shops", + "Sporting Goods" + ], + "category_id": "19046000", + "check_number": null, + "counterparties": [], + "date": "2025-04-23", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "Dick'sSportingGoods.com", + "original_description": "Dick'sSportingGoods.com", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "GENERAL_MERCHANDISE_SPORTING_GOODS", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "EjM3A5vK8mCjLea1GE3mCyoy8jBJPqu48XP3o", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 4.46, + "authorized_date": "2025-04-22", + "authorized_datetime": null, + "category": [ + "Shops", + "Convenience Stores" + ], + "category_id": "19015000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "VDzYgVXKNDqR19N8oRdzd2Y9Z0wobKZ5OjLMO", + "logo_url": "https://plaid-merchant-logos.plaid.com/quickchek_797.png", + "name": "QuickChek", + "phone_number": null, + "type": "merchant", + "website": "quickchek.com" + } + ], + "date": "2025-04-23", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/quickchek_797.png", + "merchant_entity_id": "VDzYgVXKNDqR19N8oRdzd2Y9Z0wobKZ5OjLMO", + "merchant_name": "QuickChek", + "name": "QUICK CHEK CORPORATION", + "original_description": "QUICK CHEK CORPORATION", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "TRANSPORTATION_GAS", + "primary": "TRANSPORTATION" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_TRANSPORTATION.png", + "transaction_code": null, + "transaction_id": "Wm6kZ5zMajudb4XV6nyafB8BkXAEb1f63l7qn", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "quickchek.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 8545.09, + "authorized_date": "2025-04-22", + "authorized_datetime": null, + "category": [ + "Shops", + "Furniture and Home Decor" + ], + "category_id": "19027000", + "check_number": null, + "counterparties": [], + "date": "2025-04-23", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "ASHLEY HOMESTORE 01 #...0123", + "original_description": "ASHLEY HOMESTORE 01 #...0123", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "GENERAL_MERCHANDISE_OTHER_GENERAL_MERCHANDISE", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "Aa7KgRpVLAhamWlkAvD3s8D8vgwBZyf9L1l3z", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 30.25, + "authorized_date": "2025-04-23", + "authorized_datetime": null, + "category": [ + "Food and Drink", + "Restaurants", + "Fast Food" + ], + "category_id": "13005032", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "9dgV151n418qNVjVLer6JQVrj5YnwgQ7dqVbM", + "logo_url": "https://plaid-merchant-logos.plaid.com/pizza_hut_758.png", + "name": "Pizza Hut", + "phone_number": null, + "type": "merchant", + "website": "pizzahut.com" + } + ], + "date": "2025-04-23", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/pizza_hut_758.png", + "merchant_entity_id": "9dgV151n418qNVjVLer6JQVrj5YnwgQ7dqVbM", + "merchant_name": "Pizza Hut", + "name": "Pizza Hut", + "original_description": "PIZZA HUT 012345", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "FOOD_AND_DRINK_FAST_FOOD", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "GeLdq5ozW9Te8Jd4MGvPT848bXagwrf6K1XRQ", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "pizzahut.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 14.96, + "authorized_date": "2025-04-23", + "authorized_datetime": null, + "category": [ + "Service" + ], + "category_id": "18000000", + "check_number": null, + "counterparties": [], + "date": "2025-04-28", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "PCH*INTELIUS", + "original_description": "PCH*INTELIUS 012-012-0123", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "GENERAL_MERCHANDISE_OTHER_GENERAL_MERCHANDISE", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "nZLAPzwDylibQdva8jeDtG1Gx9jmopiA96NgN", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 131.25, + "authorized_date": "2025-04-23", + "authorized_datetime": null, + "category": [ + "Travel", + "Airlines and Aviation Services" + ], + "category_id": "22001000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "NKDjqyAdQQzpyeD8qpLnX0D6yvLe2KYKYYzQ4", + "logo_url": "https://plaid-merchant-logos.plaid.com/united_airlines_1065.png", + "name": "United Airlines", + "phone_number": null, + "type": "merchant", + "website": "united.com" + } + ], + "date": "2025-04-28", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": "TX", + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/united_airlines_1065.png", + "merchant_entity_id": "NKDjqyAdQQzpyeD8qpLnX0D6yvLe2KYKYYzQ4", + "merchant_name": "United Airlines", + "name": "UNITED 0123456789012", + "original_description": "UNITED 0123456789012 012-012-0123 TX", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "HIGH", + "detailed": "TRAVEL_FLIGHTS", + "primary": "TRAVEL" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_TRAVEL.png", + "transaction_code": null, + "transaction_id": "bBdylJgXLku1ryVNQ9XehxRxrWZn4ztmnV1rQ", + "transaction_type": "special", + "unofficial_currency_code": null, + "website": "united.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 27.71, + "authorized_date": "2025-04-25", + "authorized_datetime": null, + "category": [ + "Service", + "Veterinarians" + ], + "category_id": "18069000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "K4KL4mp2wdyW6Wp733QKagKkRQ4rrNV1zeQqE", + "logo_url": "https://plaid-merchant-logos.plaid.com/banfield_pet_hospital_90.png", + "name": "Banfield Pet Hospital", + "phone_number": null, + "type": "merchant", + "website": "banfield.com" + } + ], + "date": "2025-04-28", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/banfield_pet_hospital_90.png", + "merchant_entity_id": "K4KL4mp2wdyW6Wp733QKagKkRQ4rrNV1zeQqE", + "merchant_name": "Banfield Pet Hospital", + "name": "BANFIELD-PET*WPPAYMENT", + "original_description": "BANFIELD-PET*WPPAYMENT", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "HIGH", + "detailed": "MEDICAL_VETERINARY_SERVICES", + "primary": "MEDICAL" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_MEDICAL.png", + "transaction_code": null, + "transaction_id": "mQ1ANkbDmRfb4yvJ6npMt6L6v8D91WFgeLn8d", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "banfield.com" + } + ], + "has_more": true, "modified": [], - "next_cursor": "", + "next_cursor": "CAESJW1RMUFOa2JEbVJmYjR5dko2bnBNdDZMNnY4RDkxV0ZnZUxuOGQiCwian63BBhDQ8JNeKgwImp+twQYQ6NqQoAM=", "removed": [], - "request_id": "w91qd0Xa69KduMa", - "transactions_update_status": "NOT_READY" + "request_id": "9q4Ljt2CTkNDQaa", + "transactions_update_status": "HISTORICAL_UPDATE_COMPLETE" } - recorded_at: Mon, 19 May 2025 13:54:01 GMT + recorded_at: Mon, 19 May 2025 15:34:55 GMT - request: method: post uri: https://sandbox.plaid.com/transactions/sync body: encoding: UTF-8 - string: '{"access_token":"access-sandbox-7dd1d7be-e7de-43bd-bdce-5e2d3d757cb2","count":100,"options":{"include_original_description":true}}' + string: '{"access_token":"access-sandbox-d531d3c9-8520-43ca-9e58-5b70b79fd1d4","cursor":"CAESJW1RMUFOa2JEbVJmYjR5dko2bnBNdDZMNnY4RDkxV0ZnZUxuOGQiCwian63BBhDQ8JNeKgwImp+twQYQ6NqQoAM=","count":100,"options":{"include_original_description":true}}' headers: Content-Type: - application/json @@ -95,11 +6278,11 @@ http_interactions: Server: - nginx Date: - - Mon, 19 May 2025 13:54:31 GMT + - Mon, 19 May 2025 15:34:55 GMT Content-Type: - application/json; charset=utf-8 - Content-Length: - - '192' + Transfer-Encoding: + - chunked Connection: - keep-alive Plaid-Version: @@ -107,7 +6290,89698 @@ http_interactions: Vary: - Accept-Encoding X-Envoy-Upstream-Service-Time: - - '322' + - '371' + X-Envoy-Decorator-Operation: + - default.svc-apiv2:8080/* + Strict-Transport-Security: + - max-age=31536000; includeSubDomains; preload + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Xss-Protection: + - 1; mode=block + body: + encoding: ASCII-8BIT + string: |- + { + "accounts": [ + { + "account_id": "MpWPx5o4yrcpZvwQrdbMuwX699pjDRCLX98NN", + "balances": { + "available": 15000, + "current": 15000, + "iso_currency_code": "USD", + "limit": null, + "unofficial_currency_code": null + }, + "holder_category": "personal", + "mask": "1119", + "name": "Test Student Loan Account", + "official_name": "Plaid student", + "subtype": "student", + "type": "loan" + }, + { + "account_id": "edNwr51XgAcoARVZP68vsdREvv56jafrvLlJ7", + "balances": { + "available": 10000, + "current": 10000, + "iso_currency_code": "USD", + "limit": null, + "unofficial_currency_code": null + }, + "holder_category": "personal", + "mask": "8957", + "name": "Test Depository Account", + "official_name": "Plaid checking", + "subtype": "checking", + "type": "depository" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "balances": { + "available": 11065.71, + "current": 1000, + "iso_currency_code": "USD", + "limit": 12200, + "unofficial_currency_code": null + }, + "holder_category": "personal", + "mask": "3053", + "name": "Test Credit Card Account", + "official_name": "Plaid credit card", + "subtype": "credit card", + "type": "credit" + } + ], + "added": [ + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 1.5, + "authorized_date": "2025-04-25", + "authorized_datetime": null, + "category": [ + "Travel", + "Parking" + ], + "category_id": "22013000", + "check_number": null, + "counterparties": [], + "date": "2025-04-28", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "PKG PS *-*, *, KEC", + "original_description": "PKG PS *-*, *, KEC", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "GENERAL_MERCHANDISE_OTHER_GENERAL_MERCHANDISE", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "yGmrge5K4NFpDQweBL4yuPMPDozlxKu4PybpA", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 114.07, + "authorized_date": "2025-04-27", + "authorized_datetime": null, + "category": [ + "Shops", + "Beauty Products" + ], + "category_id": "19006000", + "check_number": null, + "counterparties": [], + "date": "2025-04-28", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "MORPHE 012345", + "original_description": "MORPHE 012345", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "GENERAL_MERCHANDISE_OTHER_GENERAL_MERCHANDISE", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "9q36eAK7P1iqGMPbA34yUAZAEqylmkh4oRwMg", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 13.79, + "authorized_date": "2025-04-28", + "authorized_datetime": null, + "category": [ + "Shops", + "Clothing and Accessories" + ], + "category_id": "19012000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "BDvWEzZrMED1veZXkp5aD20Er8ZAKnwVJDmd1", + "logo_url": "https://plaid-merchant-logos.plaid.com/ross_stores_841.png", + "name": "Ross Stores", + "phone_number": null, + "type": "merchant", + "website": "rossstores.com" + } + ], + "date": "2025-04-28", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": "012" + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/ross_stores_841.png", + "merchant_entity_id": "BDvWEzZrMED1veZXkp5aD20Er8ZAKnwVJDmd1", + "merchant_name": "Ross Stores", + "name": "Ross Dress for Less", + "original_description": "ROSS STORE #012", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "GENERAL_MERCHANDISE_CLOTHING_AND_ACCESSORIES", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "vEGlLPADxdT7rVvMKoxpsbobZdMaNWuqbWBVZ", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "rossstores.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 157.48, + "authorized_date": "2025-04-28", + "authorized_datetime": null, + "category": [ + "Service", + "Food and Beverage" + ], + "category_id": "18021000", + "check_number": null, + "counterparties": [], + "date": "2025-04-28", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "FRESHLY.COM", + "original_description": "FRESHLY.COM", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "FOOD_AND_DRINK_GROCERIES", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "RWmGP5oMzdtreRojdm9zi5w5objJq7iaNRW5N", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 23.17, + "authorized_date": "2025-04-23", + "authorized_datetime": null, + "category": [ + "Shops" + ], + "category_id": "19000000", + "check_number": null, + "counterparties": [], + "date": "2025-04-26", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "WWW.ALIBABA.COM", + "original_description": "WWW.ALIBABA.COM", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "ENTERTAINMENT_SPORTING_EVENTS_AMUSEMENT_PARKS_AND_MUSEUMS", + "primary": "ENTERTAINMENT" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_ENTERTAINMENT.png", + "transaction_code": null, + "transaction_id": "6RrvP8d6aQt8RdaEAwWkFbybdk78Reu8QgpnK", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 2.45, + "authorized_date": "2025-04-25", + "authorized_datetime": null, + "category": [ + "Shops", + "Bicycles" + ], + "category_id": "19007000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "4pK9RJnqY7N078jeKrn6Zzraq9QDLbQn9kgbd", + "logo_url": null, + "name": "Citibank", + "phone_number": null, + "type": "financial_institution", + "website": "citi.com" + } + ], + "date": "2025-04-26", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "CITI BIKE NYC", + "original_description": "CITI BIKE NYC", + "payment_channel": "other", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "GENERAL_MERCHANDISE_SPORTING_GOODS", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "oMpyjB9Dlqhb4v8gkyn6tbzbw9dXyNuoQRnGq", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 27.44, + "authorized_date": "2025-04-26", + "authorized_datetime": null, + "category": [ + "Recreation", + "Gyms and Fitness Centers" + ], + "category_id": "17018000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "o2ZQBgYwrvw9EJ2wXy922WK0Q3XdvVzYQEmRZ", + "logo_url": "https://plaid-merchant-logos.plaid.com/planet_fitness_760.png", + "name": "Planet Fitness", + "phone_number": null, + "type": "merchant", + "website": "planetfitness.com" + } + ], + "date": "2025-04-26", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/planet_fitness_760.png", + "merchant_entity_id": "o2ZQBgYwrvw9EJ2wXy922WK0Q3XdvVzYQEmRZ", + "merchant_name": "Planet Fitness", + "name": "Planet Fitness", + "original_description": "ABC*PLANET FITNESS", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "PERSONAL_CARE_GYMS_AND_FITNESS_CENTERS", + "primary": "PERSONAL_CARE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_PERSONAL_CARE.png", + "transaction_code": null, + "transaction_id": "g4j7B5kXEnCwdLV7NzQPHV5VgeoABmfENgQdp", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "planetfitness.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 45.5, + "authorized_date": "2025-04-25", + "authorized_datetime": null, + "category": [ + "Shops", + "Digital Purchase" + ], + "category_id": "19019000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "o2b36aaRWwVwoD70pgje1ML938DADoJ2b9LnY", + "logo_url": "https://plaid-merchant-logos.plaid.com/ebay_310.png", + "name": "eBay", + "phone_number": null, + "type": "merchant", + "website": "ebay.com" + } + ], + "date": "2025-04-27", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": "CA", + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/ebay_310.png", + "merchant_entity_id": "o2b36aaRWwVwoD70pgje1ML938DADoJ2b9LnY", + "merchant_name": "eBay", + "name": "EBAY INC.", + "original_description": "EBAY INC. 012-012-0123 CA", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "GENERAL_MERCHANDISE_ONLINE_MARKETPLACES", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "8lBZ7kqmNMflM6N1rBb8udzd4XJryvfW7wVeb", + "transaction_type": "digital", + "unofficial_currency_code": null, + "website": "ebay.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 17.18, + "authorized_date": "2025-04-27", + "authorized_datetime": null, + "category": [ + "Food and Drink", + "Restaurants" + ], + "category_id": "13005000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "VmnapWdRwMn50bwvEaKZRKNkQXW1LvNrwdLeW", + "logo_url": "https://plaid-counterparty-logos.plaid.com/toast_182.png", + "name": "Toast", + "phone_number": null, + "type": "payment_terminal", + "website": "pos.toasttab.com" + } + ], + "date": "2025-04-27", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "TST* SUNLIFE ORG", + "original_description": "TST* SUNLIFE ORG", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "MEDIUM", + "detailed": "FOOD_AND_DRINK_RESTAURANT", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "EjM3A5vK8mCjLea1GE3mCyoy8jBJPqu48XP3L", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 529.9, + "authorized_date": "2025-04-25", + "authorized_datetime": null, + "category": [ + "Travel" + ], + "category_id": "22000000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "KAJKk5XdbJEqb6Z7DdDnAqJQyLX0OmkAZqe75", + "logo_url": "https://plaid-merchant-logos.plaid.com/expedia_336.png", + "name": "Expedia", + "phone_number": null, + "type": "merchant", + "website": "expedia.com" + } + ], + "date": "2025-04-29", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": "WA", + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/expedia_336.png", + "merchant_entity_id": "KAJKk5XdbJEqb6Z7DdDnAqJQyLX0OmkAZqe75", + "merchant_name": "Expedia", + "name": "EXPEDIA 0123456789012 EXPEDIA.COM", + "original_description": "EXPEDIA 0123456789012 EXPEDIA.COM WA", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "TRAVEL_FLIGHTS", + "primary": "TRAVEL" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_TRAVEL.png", + "transaction_code": null, + "transaction_id": "Wm6kZ5zMajudb4XV6nyafB8BkXAEb1f63l7qm", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "expedia.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 155.75, + "authorized_date": "2025-04-25", + "authorized_datetime": null, + "category": [ + "Travel", + "Public Transportation Services" + ], + "category_id": "22014000", + "check_number": null, + "counterparties": [], + "date": "2025-04-29", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "MTA*PATH SMARTCARD/SRT", + "original_description": "MTA*PATH SMARTCARD/SRT", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "TRANSPORTATION_PUBLIC_TRANSIT", + "primary": "TRANSPORTATION" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_TRANSPORTATION.png", + "transaction_code": null, + "transaction_id": "Aa7KgRpVLAhamWlkAvD3s8D8vgwBZyf9L1l37", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 28.93, + "authorized_date": "2025-04-27", + "authorized_datetime": null, + "category": [ + "Shops", + "Convenience Stores" + ], + "category_id": "19015000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "pvO5bNNMEbRvBWnZ2aAbj0qKX1w7RbYyKnQ43", + "logo_url": "https://plaid-merchant-logos.plaid.com/getgo_431.png", + "name": "GetGo", + "phone_number": null, + "type": "merchant", + "website": "getgocafe.com" + } + ], + "date": "2025-04-29", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": "0123" + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/getgo_431.png", + "merchant_entity_id": "pvO5bNNMEbRvBWnZ2aAbj0qKX1w7RbYyKnQ43", + "merchant_name": "GetGo", + "name": "GET GO #0123", + "original_description": "GET GO #0123", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "TRANSPORTATION_GAS", + "primary": "TRANSPORTATION" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_TRANSPORTATION.png", + "transaction_code": null, + "transaction_id": "GeLdq5ozW9Te8Jd4MGvPT848bXagwrf6K1XRa", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "getgocafe.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 820.38, + "authorized_date": "2025-04-28", + "authorized_datetime": null, + "category": [ + "Travel", + "Car and Truck Rentals" + ], + "category_id": "22005000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "5QWXY2baaa5WjMr6pov2y079oOv4pWwq34nwB", + "logo_url": "https://plaid-merchant-logos.plaid.com/uhaul_1057.png", + "name": "U-Haul", + "phone_number": null, + "type": "merchant", + "website": "uhaul.com" + } + ], + "date": "2025-04-29", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/uhaul_1057.png", + "merchant_entity_id": "5QWXY2baaa5WjMr6pov2y079oOv4pWwq34nwB", + "merchant_name": "U-Haul", + "name": "U-Haul", + "original_description": "U-HAUL MOVING \u0026 STORAGE O", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "GENERAL_SERVICES_POSTAGE_AND_SHIPPING", + "primary": "GENERAL_SERVICES" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_SERVICES.png", + "transaction_code": null, + "transaction_id": "nZLAPzwDylibQdva8jeDtG1Gx9jmopiA96Ng5", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "uhaul.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 13.16, + "authorized_date": "2025-04-29", + "authorized_datetime": null, + "category": [ + "Shops", + "Food and Beverage Store" + ], + "category_id": "19025000", + "check_number": null, + "counterparties": [], + "date": "2025-05-01", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "Godiva", + "original_description": "GODIVA 012", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "GENERAL_MERCHANDISE_OTHER_GENERAL_MERCHANDISE", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "bBdylJgXLku1ryVNQ9XehxRxrWZn4ztmnV1rx", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 120.45, + "authorized_date": "2025-04-30", + "authorized_datetime": null, + "category": [ + "Service", + "Internet Services" + ], + "category_id": "18031000", + "check_number": null, + "counterparties": [], + "date": "2025-05-01", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "CTS*FRONTIER ONLINEPAY", + "original_description": "CTS*FRONTIER ONLINEPAY", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "GENERAL_MERCHANDISE_OTHER_GENERAL_MERCHANDISE", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "mQ1ANkbDmRfb4yvJ6npMt6L6v8D91WFgeLn8j", + "transaction_type": "digital", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 64.41, + "authorized_date": "2025-04-30", + "authorized_datetime": null, + "category": [ + "Shops", + "Department Stores" + ], + "category_id": "19018000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "wVy2NR88jw5Z2qro8Vo4oro8E3aErD0gDN0nZ", + "logo_url": "https://plaid-merchant-logos.plaid.com/kohls_553.png", + "name": "Kohl's", + "phone_number": null, + "type": "merchant", + "website": "kohls.com" + } + ], + "date": "2025-05-02", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": "3347 Kohler Memorial Dr", + "city": "Sheboygan", + "country": null, + "lat": 43.753586, + "lon": -87.753265, + "postal_code": "53081", + "region": "WI", + "store_number": "0123" + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/kohls_553.png", + "merchant_entity_id": "wVy2NR88jw5Z2qro8Vo4oro8E3aErD0gDN0nZ", + "merchant_name": "Kohl's", + "name": "Kohl's", + "original_description": "KOHL'S #0123", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "GENERAL_MERCHANDISE_DEPARTMENT_STORES", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "yGmrge5K4NFpDQweBL4yuPMPDozlxKu4Pybpm", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "kohls.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 7.74, + "authorized_date": "2025-05-02", + "authorized_datetime": null, + "category": [ + "Travel", + "Gas Stations" + ], + "category_id": "22009000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "ZM4Jngp0WpL0RW228dA3EoYBbJJnADeA2jDRY", + "logo_url": "https://plaid-merchant-logos.plaid.com/texaco_1003.png", + "name": "Texaco", + "phone_number": null, + "type": "merchant", + "website": "texaco.com" + } + ], + "date": "2025-05-02", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/texaco_1003.png", + "merchant_entity_id": "ZM4Jngp0WpL0RW228dA3EoYBbJJnADeA2jDRY", + "merchant_name": "Texaco", + "name": "Texaco", + "original_description": "TEXACO 0123456", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "TRANSPORTATION_GAS", + "primary": "TRANSPORTATION" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_TRANSPORTATION.png", + "transaction_code": null, + "transaction_id": "9q36eAK7P1iqGMPbA34yUAZAEqylmkh4oRwM6", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "texaco.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 1.92, + "authorized_date": "2025-05-02", + "authorized_datetime": null, + "category": [ + "Service", + "Food and Beverage" + ], + "category_id": "18021000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "Knv5eqDW6wn7mkBMYaAdMz4g4AM1MkQrgvjWW", + "logo_url": "https://plaid-counterparty-logos.plaid.com/postmates_4.png", + "name": "Postmates", + "phone_number": null, + "type": "marketplace", + "website": "postmates.com" + } + ], + "date": "2025-05-02", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": "Postmates", + "name": "Postmates", + "original_description": "POSTMATES TIP", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "MEDIUM", + "detailed": "FOOD_AND_DRINK_RESTAURANT", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "vEGlLPADxdT7rVvMKoxpsbobZdMaNWuqbWBVP", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 76.63, + "authorized_date": "2025-04-30", + "authorized_datetime": null, + "category": [ + "Shops", + "Digital Purchase" + ], + "category_id": "19019000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "2gOwmq9qK56K60oDm3eLrREV2B2mVadkRn8MW", + "logo_url": "https://plaid-merchant-logos.plaid.com/amazon_44.png", + "name": "Amazon", + "phone_number": null, + "type": "merchant", + "website": "amazon.com" + } + ], + "date": "2025-05-04", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/amazon_44.png", + "merchant_entity_id": "2gOwmq9qK56K60oDm3eLrREV2B2mVadkRn8MW", + "merchant_name": "Amazon", + "name": "AMAZON.COM AMZN.COM/BILL AMZN.COM/BILLWA", + "original_description": "AMAZON.COM AMZN.COM/BILL AMZN.COM/BILLWA", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "GENERAL_MERCHANDISE_ONLINE_MARKETPLACES", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "RWmGP5oMzdtreRojdm9zi5w5objJq7iaNRW5x", + "transaction_type": "digital", + "unofficial_currency_code": null, + "website": "amazon.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 18.15, + "authorized_date": "2025-05-02", + "authorized_datetime": null, + "category": [ + "Travel", + "Gas Stations" + ], + "category_id": "22009000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "W3nNYqL3aLq7EJ99L8J88Mk1aRarnLWobLRJQ", + "logo_url": "https://plaid-merchant-logos.plaid.com/kum_go_558.png", + "name": "Kum \u0026 Go", + "phone_number": null, + "type": "merchant", + "website": "kumandgo.com" + } + ], + "date": "2025-05-04", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": "012" + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/kum_go_558.png", + "merchant_entity_id": "W3nNYqL3aLq7EJ99L8J88Mk1aRarnLWobLRJQ", + "merchant_name": "Kum \u0026 Go", + "name": "Kum \u0026 Go", + "original_description": "KUM \u0026 GO #012", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "TRANSPORTATION_GAS", + "primary": "TRANSPORTATION" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_TRANSPORTATION.png", + "transaction_code": null, + "transaction_id": "6RrvP8d6aQt8RdaEAwWkFbybdk78Reu8Qgpnj", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "kumandgo.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 23.04, + "authorized_date": "2025-05-04", + "authorized_datetime": null, + "category": [ + "Shops", + "Supermarkets and Groceries" + ], + "category_id": "19047000", + "check_number": null, + "counterparties": [], + "date": "2025-05-04", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": "0123" + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "01 RANCH #0123", + "original_description": "01 RANCH #0123", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "GENERAL_MERCHANDISE_OTHER_GENERAL_MERCHANDISE", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "XyXrM5BG47fmPpGD7694U6q6ELgBXwFbkdN85", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 53.11, + "authorized_date": "2025-05-04", + "authorized_datetime": null, + "category": [ + "Travel", + "Gas Stations" + ], + "category_id": "22009000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "23RyL8D2rXXAjvJ6VddN6qEg89NDvK2BJw0mq", + "logo_url": "https://plaid-merchant-logos.plaid.com/bjs_wholesale_club_fuel_120.png", + "name": "BJ's Wholesale Club Fuel", + "phone_number": null, + "type": "merchant", + "website": "bjs.com/gas" + } + ], + "date": "2025-05-04", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": "8811 Brier Creek Pkwy", + "city": "Raleigh", + "country": null, + "lat": 35.902161, + "lon": -78.788681, + "postal_code": "27617", + "region": "NC", + "store_number": "0123" + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/bjs_wholesale_club_fuel_120.png", + "merchant_entity_id": "23RyL8D2rXXAjvJ6VddN6qEg89NDvK2BJw0mq", + "merchant_name": "BJ's Wholesale Club Fuel", + "name": "BJS FUEL #0123", + "original_description": "BJS FUEL #0123", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "TRANSPORTATION_GAS", + "primary": "TRANSPORTATION" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_TRANSPORTATION.png", + "transaction_code": null, + "transaction_id": "DPZBW5VqgbFP764zbpqmSvjvRXeNPli3NvBGv", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "bjs.com/gas" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 35, + "authorized_date": "2025-05-04", + "authorized_datetime": null, + "category": [ + "Service", + "Internet Services" + ], + "category_id": "18031000", + "check_number": null, + "counterparties": [], + "date": "2025-05-04", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "HTTP://WWW.GOGOAIR.COM", + "original_description": "HTTP://WWW.GOGOAIR.COM", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "GENERAL_MERCHANDISE_OTHER_GENERAL_MERCHANDISE", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "VbRqQ5rLdPcn6RqVP4QdsXJXvWkBVMt9QWXN9", + "transaction_type": "digital", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 16.65, + "authorized_date": "2025-05-02", + "authorized_datetime": null, + "category": [ + "Recreation", + "Arts and Entertainment" + ], + "category_id": "17001000", + "check_number": null, + "counterparties": [], + "date": "2025-05-05", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "Cinemark Theatres", + "original_description": "Cinemark Theatres", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "ENTERTAINMENT_TV_AND_MOVIES", + "primary": "ENTERTAINMENT" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_ENTERTAINMENT.png", + "transaction_code": null, + "transaction_id": "wWnqpjJldatQbrvJydjETKPKAvbjJnFPzrxKE", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 3.75, + "authorized_date": "2025-05-02", + "authorized_datetime": null, + "category": [ + "Travel", + "Taxi" + ], + "category_id": "22016000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "eyg8o776k0QmNgVpAmaQj4WgzW9Qzo6O51gdd", + "logo_url": "https://plaid-merchant-logos.plaid.com/uber_1060.png", + "name": "Uber", + "phone_number": null, + "type": "merchant", + "website": "uber.com" + } + ], + "date": "2025-05-05", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": "CA", + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/uber_1060.png", + "merchant_entity_id": "eyg8o776k0QmNgVpAmaQj4WgzW9Qzo6O51gdd", + "merchant_name": "Uber", + "name": "UBER 0123456789", + "original_description": "UBER 0123456789 CA", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "TRANSPORTATION_TAXIS_AND_RIDE_SHARES", + "primary": "TRANSPORTATION" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_TRANSPORTATION.png", + "transaction_code": null, + "transaction_id": "5vK5Ng6bdetkX4dDA6NbSqZq4bdRDBi5XZAj3", + "transaction_type": "special", + "unofficial_currency_code": null, + "website": "uber.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 43.51, + "authorized_date": "2025-05-04", + "authorized_datetime": null, + "category": [ + "Shops", + "Digital Purchase" + ], + "category_id": "19019000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "Anyvk4KqqD8Vb1R9YE0y8e91oR2YB0r3qYXjJ", + "logo_url": "https://plaid-merchant-logos.plaid.com/audible_78.png", + "name": "Audible", + "phone_number": null, + "type": "merchant", + "website": "audible.com" + } + ], + "date": "2025-05-05", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/audible_78.png", + "merchant_entity_id": "Anyvk4KqqD8Vb1R9YE0y8e91oR2YB0r3qYXjJ", + "merchant_name": "Audible", + "name": "Audible", + "original_description": "Audible US", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "ENTERTAINMENT_MUSIC_AND_AUDIO", + "primary": "ENTERTAINMENT" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_ENTERTAINMENT.png", + "transaction_code": null, + "transaction_id": "JMgVz59xnlhM1pyKljkeUAXAEkjdJ3hBXdvw5", + "transaction_type": "digital", + "unofficial_currency_code": null, + "website": "audible.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 6.75, + "authorized_date": "2025-05-05", + "authorized_datetime": null, + "category": [ + "Food and Drink", + "Restaurants", + "Fast Food" + ], + "category_id": "13005032", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "yD7z7XqNmON4BRvVQa5gbVpRyqeYNY4gpbgkW", + "logo_url": "https://plaid-merchant-logos.plaid.com/raising_canes_chicken_fingers_806.png", + "name": "Raising Cane's Chicken Fingers", + "phone_number": null, + "type": "merchant", + "website": "raisingcanes.com" + } + ], + "date": "2025-05-05", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": "012" + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/raising_canes_chicken_fingers_806.png", + "merchant_entity_id": "yD7z7XqNmON4BRvVQa5gbVpRyqeYNY4gpbgkW", + "merchant_name": "Raising Cane's Chicken Fingers", + "name": "Raising Cane's Chicken Fingers", + "original_description": "RAISING CANE'S #012", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "FOOD_AND_DRINK_FAST_FOOD", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "k7ZAaqkDn9IeLWvPMD3QTQmQv7GBa4uL7WeAw", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "raisingcanes.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 7.58, + "authorized_date": "2025-05-05", + "authorized_datetime": null, + "category": [ + "Travel", + "Gas Stations" + ], + "category_id": "22009000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "9WWLDa32VDYBXOybW5rw9vZX8BD3nyRR37W6o", + "logo_url": "https://plaid-merchant-logos.plaid.com/gulf_oil_463.png", + "name": "Gulf Oil", + "phone_number": null, + "type": "merchant", + "website": "gulfoil.com" + } + ], + "date": "2025-05-05", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/gulf_oil_463.png", + "merchant_entity_id": "9WWLDa32VDYBXOybW5rw9vZX8BD3nyRR37W6o", + "merchant_name": "Gulf Oil", + "name": "Gulf Oil", + "original_description": "GULF OIL 01234567", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "TRANSPORTATION_GAS", + "primary": "TRANSPORTATION" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_TRANSPORTATION.png", + "transaction_code": null, + "transaction_id": "leMA4KdDbvT9Rj8aDw3ASlqlyB5Xd1ipBZe6n", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "gulfoil.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 39.76, + "authorized_date": "2025-05-02", + "authorized_datetime": null, + "category": [ + "Food and Drink", + "Restaurants", + "Fast Food" + ], + "category_id": "13005032", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "AEmBpp8kDV9okdRZAZMOVLjzr6gL87yn11mY9", + "logo_url": "https://plaid-merchant-logos.plaid.com/papa_johns_716.png", + "name": "Papa John's", + "phone_number": null, + "type": "merchant", + "website": "papajohns.com" + } + ], + "date": "2025-05-06", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": "0123" + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/papa_johns_716.png", + "merchant_entity_id": "AEmBpp8kDV9okdRZAZMOVLjzr6gL87yn11mY9", + "merchant_name": "Papa John's", + "name": "Papa John's", + "original_description": "PAPA JOHN'S #0123", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "FOOD_AND_DRINK_FAST_FOOD", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "qLgAex9DKrfNjEv5oDMaFebegjz4MBHgld1BQ", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "papajohns.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 19.48, + "authorized_date": "2025-05-02", + "authorized_datetime": null, + "category": [ + "Shops", + "Supermarkets and Groceries" + ], + "category_id": "19047000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "Eaq3KXm0jJ61KrmMrV0aw9VaY2grqv517d3ep", + "logo_url": "https://plaid-merchant-logos.plaid.com/target_997.png", + "name": "Target", + "phone_number": null, + "type": "merchant", + "website": "target.com" + } + ], + "date": "2025-05-06", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/target_997.png", + "merchant_entity_id": "Eaq3KXm0jJ61KrmMrV0aw9VaY2grqv517d3ep", + "merchant_name": "Target", + "name": "Target", + "original_description": "TARGET T-0123 #...0123", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "GENERAL_MERCHANDISE_SUPERSTORES", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "K18PB5Zdbqh17BVgqbRQhyoyVG8KzxuRoVarJ", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "target.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 55.12, + "authorized_date": "2025-05-05", + "authorized_datetime": null, + "category": [ + "Shops", + "Supermarkets and Groceries" + ], + "category_id": "19047000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "ejyrAn1BvJ9X5ZXVBq5nN1aqjLzJbE64L4eWQ", + "logo_url": "https://plaid-merchant-logos.plaid.com/jewelosco_537.png", + "name": "Jewel-Osco", + "phone_number": null, + "type": "merchant", + "website": "jewelosco.com" + } + ], + "date": "2025-05-06", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": "7329 Cass Ave", + "city": "Darien", + "country": null, + "lat": 41.753937, + "lon": -87.972435, + "postal_code": "60561", + "region": "IL", + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/jewelosco_537.png", + "merchant_entity_id": "ejyrAn1BvJ9X5ZXVBq5nN1aqjLzJbE64L4eWQ", + "merchant_name": "Jewel-Osco", + "name": "Jewel-Osco", + "original_description": "JEWEL-OSCO 0123", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "FOOD_AND_DRINK_GROCERIES", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "rp8wQd9Drzc7XxVRZbBNsbxb3lemMgu7blVNN", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "jewelosco.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 2.42, + "authorized_date": "2025-05-05", + "authorized_datetime": null, + "category": [ + "Shops", + "Beauty Products" + ], + "category_id": "19006000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "54BEBKODKVz74OKna46dv2ZQDWnNRb1572Lp9", + "logo_url": "https://plaid-merchant-logos.plaid.com/ulta_beauty_1062.png", + "name": "Ulta Beauty", + "phone_number": null, + "type": "merchant", + "website": "ulta.com" + } + ], + "date": "2025-05-06", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": "01" + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/ulta_beauty_1062.png", + "merchant_entity_id": "54BEBKODKVz74OKna46dv2ZQDWnNRb1572Lp9", + "merchant_name": "Ulta Beauty", + "name": "ULTA", + "original_description": "ULTA #01", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "PERSONAL_CARE_HAIR_AND_BEAUTY", + "primary": "PERSONAL_CARE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_PERSONAL_CARE.png", + "transaction_code": null, + "transaction_id": "zkyz8Q9rNPCXgWQeyj9pIeqeR85BmnHldo168", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "ulta.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 293.09, + "authorized_date": "2025-05-06", + "authorized_datetime": null, + "category": [ + "Shops", + "Hardware Store" + ], + "category_id": "19030000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "kVawvV6p0R25gKw3qbp4Kq7kEzDdY5RnjV7RK", + "logo_url": "https://plaid-merchant-logos.plaid.com/home_depot_491.png", + "name": "The Home Depot", + "phone_number": null, + "type": "merchant", + "website": "homedepot.com" + } + ], + "date": "2025-05-06", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/home_depot_491.png", + "merchant_entity_id": "kVawvV6p0R25gKw3qbp4Kq7kEzDdY5RnjV7RK", + "merchant_name": "The Home Depot", + "name": "Home Depot", + "original_description": "Home Depot", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "HOME_IMPROVEMENT_HARDWARE", + "primary": "HOME_IMPROVEMENT" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_HOME_IMPROVEMENT.png", + "transaction_code": null, + "transaction_id": "B4ek869ZpGC41mDnjvVxuBdBk4JqjMf4vwNV6", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "homedepot.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 31.01, + "authorized_date": "2025-05-04", + "authorized_datetime": null, + "category": [ + "Recreation", + "Gyms and Fitness Centers" + ], + "category_id": "17018000", + "check_number": null, + "counterparties": [], + "date": "2025-05-07", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "PELOTON", + "original_description": "PELOTON", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "PERSONAL_CARE_GYMS_AND_FITNESS_CENTERS", + "primary": "PERSONAL_CARE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_PERSONAL_CARE.png", + "transaction_code": null, + "transaction_id": "3ylJapdb3jf8nK3A1z7JF3j39o47aEIZgqe57", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 10.33, + "authorized_date": "2025-05-04", + "authorized_datetime": null, + "category": [ + "Service", + "Subscription" + ], + "category_id": "18061000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "3LEY2bJ6W1vkoaBjgVg3qBgYVEzD6p8d1dQdY", + "logo_url": "https://plaid-merchant-logos.plaid.com/netflix_675.png", + "name": "Netflix", + "phone_number": null, + "type": "merchant", + "website": "netflix.com" + } + ], + "date": "2025-05-07", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": "CA", + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/netflix_675.png", + "merchant_entity_id": "3LEY2bJ6W1vkoaBjgVg3qBgYVEzD6p8d1dQdY", + "merchant_name": "Netflix", + "name": "Netflix", + "original_description": "Netflix.com netflix.com CA", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "ENTERTAINMENT_TV_AND_MOVIES", + "primary": "ENTERTAINMENT" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_ENTERTAINMENT.png", + "transaction_code": null, + "transaction_id": "xAbKo75qa4um5aZ8zndpUMdM8E3A5Df6MnRLd", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "netflix.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 28.55, + "authorized_date": "2025-05-05", + "authorized_datetime": null, + "category": [ + "Service", + "Food and Beverage" + ], + "category_id": "18021000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "LOW", + "entity_id": null, + "logo_url": null, + "name": "Thai", + "phone_number": null, + "type": "merchant", + "website": null + }, + { + "confidence_level": "VERY_HIGH", + "entity_id": "WKk6bENeYwvVaLaY8EEOw8Koa2X72m2wJOk1Z", + "logo_url": "https://plaid-counterparty-logos.plaid.com/seamless_5.png", + "name": "Seamless", + "phone_number": null, + "type": "marketplace", + "website": "seamless.com" + } + ], + "date": "2025-05-07", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": "NY", + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": "Thai", + "name": "Seamless", + "original_description": "SEAMLSSHEROTHAIFORMER SEAMLESS.COM NY", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "FOOD_AND_DRINK_RESTAURANT", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "dx4ZK58XoWCvbXVZlNgaC9R9N6MXkPUJyZxrV", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 10.49, + "authorized_date": "2025-05-06", + "authorized_datetime": null, + "category": [ + "Service", + "Subscription" + ], + "category_id": "18061000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "3LEY2bJ6W1vkoaBjgVg3qBgYVEzD6p8d1dQdY", + "logo_url": "https://plaid-merchant-logos.plaid.com/netflix_675.png", + "name": "Netflix", + "phone_number": null, + "type": "merchant", + "website": "netflix.com" + } + ], + "date": "2025-05-07", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/netflix_675.png", + "merchant_entity_id": "3LEY2bJ6W1vkoaBjgVg3qBgYVEzD6p8d1dQdY", + "merchant_name": "Netflix", + "name": "Netflix", + "original_description": "NETFLIX.COM 012-012-0123 ON", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "ENTERTAINMENT_TV_AND_MOVIES", + "primary": "ENTERTAINMENT" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_ENTERTAINMENT.png", + "transaction_code": null, + "transaction_id": "azx7A59X1gc5orV6dPw3soqoQv5V3WuZ67xVd", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "netflix.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 18.64, + "authorized_date": "2025-05-07", + "authorized_datetime": null, + "category": [ + "Service", + "Subscription" + ], + "category_id": "18061000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "2373QOZJ18DqqK0KWvgpng3nmVDLMvDvy05RN", + "logo_url": "https://plaid-merchant-logos.plaid.com/spotify_947.png", + "name": "Spotify", + "phone_number": null, + "type": "merchant", + "website": "spotify.com" + } + ], + "date": "2025-05-07", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": "NY", + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/spotify_947.png", + "merchant_entity_id": "2373QOZJ18DqqK0KWvgpng3nmVDLMvDvy05RN", + "merchant_name": "Spotify", + "name": "Spotify", + "original_description": "Spotify USA 012-0123456 NY", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "ENTERTAINMENT_MUSIC_AND_AUDIO", + "primary": "ENTERTAINMENT" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_ENTERTAINMENT.png", + "transaction_code": null, + "transaction_id": "49qZ4oGbx7T873XDoebnFmlm68Rq4zFJpdwEa", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "spotify.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 183.89, + "authorized_date": "2025-05-05", + "authorized_datetime": null, + "category": [ + "Shops", + "Clothing and Accessories" + ], + "category_id": "19012000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "o88J8OOgX3nMnQWBwk6kq8D32YWjEwaX2D8ra", + "logo_url": "https://plaid-merchant-logos.plaid.com/old_navy_698.png", + "name": "Old Navy", + "phone_number": null, + "type": "merchant", + "website": "oldnavy.com" + } + ], + "date": "2025-05-10", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/old_navy_698.png", + "merchant_entity_id": "o88J8OOgX3nMnQWBwk6kq8D32YWjEwaX2D8ra", + "merchant_name": "Old Navy", + "name": "Old Navy", + "original_description": "OLD NAVY ON-LINE", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "GENERAL_MERCHANDISE_CLOTHING_AND_ACCESSORIES", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "NokPd5gNlzfoV1byzGkls7J7bLZaG4fy8WqNE", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "oldnavy.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 84, + "authorized_date": "2025-05-06", + "authorized_datetime": null, + "category": [ + "Food and Drink", + "Restaurants" + ], + "category_id": "13005000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "m2M3MJoE27zdYprWD2kpbzeoOm6WMDOY5L92r", + "logo_url": "https://plaid-merchant-logos.plaid.com/dave_busters_268.png", + "name": "Dave \u0026 Buster's", + "phone_number": null, + "type": "merchant", + "website": "daveandbusters.com" + } + ], + "date": "2025-05-10", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": "01" + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/dave_busters_268.png", + "merchant_entity_id": "m2M3MJoE27zdYprWD2kpbzeoOm6WMDOY5L92r", + "merchant_name": "Dave \u0026 Buster's", + "name": "Dave \u0026 Buster's", + "original_description": "DAVE \u0026 BUSTER'S #01", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "HIGH", + "detailed": "FOOD_AND_DRINK_RESTAURANT", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "P8n745oWK3cnXKyW31x9slDl4WdaxPioL7rmg", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "daveandbusters.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 28, + "authorized_date": "2025-05-10", + "authorized_datetime": null, + "category": [ + "Service", + "Food and Beverage" + ], + "category_id": "18021000", + "check_number": null, + "counterparties": [], + "date": "2025-05-10", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "RUSH CARD DELIVERY FEE", + "original_description": "RUSH CARD DELIVERY FEE", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "BANK_FEES_OTHER_BANK_FEES", + "primary": "BANK_FEES" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_BANK_FEES.png", + "transaction_code": null, + "transaction_id": "jjQ7dlP5GyCbNavw7rzpty4yvzEekWu6K18bB", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 18.74, + "authorized_date": "2025-05-07", + "authorized_datetime": null, + "category": [ + "Service", + "Credit Counseling and Bankruptcy Services" + ], + "category_id": "18014000", + "check_number": null, + "counterparties": [], + "date": "2025-05-12", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "Experian* Credit Report", + "original_description": "Experian* Credit Report", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "GENERAL_SERVICES_ACCOUNTING_AND_FINANCIAL_PLANNING", + "primary": "GENERAL_SERVICES" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_SERVICES.png", + "transaction_code": null, + "transaction_id": "76zXjElb4Zt8RL4DAzM9F9Z9derAGxUdbgKVK", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 6.54, + "authorized_date": "2025-05-07", + "authorized_datetime": null, + "category": [ + "Food and Drink", + "Restaurants", + "Fast Food" + ], + "category_id": "13005032", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "1YZ03w08myRAQ0mRgMvD2EBoOb92RmBXN6nmK", + "logo_url": "https://plaid-merchant-logos.plaid.com/wendys_1114.png", + "name": "Wendy's", + "phone_number": null, + "type": "merchant", + "website": "wendys.com" + } + ], + "date": "2025-05-12", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/wendys_1114.png", + "merchant_entity_id": "1YZ03w08myRAQ0mRgMvD2EBoOb92RmBXN6nmK", + "merchant_name": "Wendy's", + "name": "Wendy's", + "original_description": "WENDY'S 01234", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "FOOD_AND_DRINK_FAST_FOOD", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "edNwr51XgAcoARVZP68vsdRdxW3boXfrvLln1", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "wendys.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 287.37, + "authorized_date": "2025-05-11", + "authorized_datetime": null, + "category": [ + "Shops", + "Furniture and Home Decor" + ], + "category_id": "19027000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "p51LQXRo28X81vDv7WyX48JvrYZQ56vO3WONr", + "logo_url": "https://plaid-merchant-logos.plaid.com/homegoods_492.png", + "name": "HomeGoods", + "phone_number": null, + "type": "merchant", + "website": "homegoods.com" + } + ], + "date": "2025-05-12", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": "012" + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/homegoods_492.png", + "merchant_entity_id": "p51LQXRo28X81vDv7WyX48JvrYZQ56vO3WONr", + "merchant_name": "HomeGoods", + "name": "HomeGoods", + "original_description": "HOMEGOODS #012", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "HOME_IMPROVEMENT_FURNITURE", + "primary": "HOME_IMPROVEMENT" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_HOME_IMPROVEMENT.png", + "transaction_code": null, + "transaction_id": "QEbZN5mMrxTnJ4XRxba9s9p9XJolyjUwPpWA7", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "homegoods.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 23.73, + "authorized_date": "2025-05-12", + "authorized_datetime": null, + "category": [ + "Shops", + "Supermarkets and Groceries" + ], + "category_id": "19047000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "5mMjye8YgvJ0KVjL3rYLk0577NKpzn05N1kJv", + "logo_url": "https://plaid-merchant-logos.plaid.com/giant_food_1517.png", + "name": "Giant Food", + "phone_number": null, + "type": "merchant", + "website": "giantfood.com" + } + ], + "date": "2025-05-12", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": "7074 Allentown Rd", + "city": "Camp Springs", + "country": null, + "lat": null, + "lon": null, + "postal_code": "20748", + "region": "MD", + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/giant_food_1517.png", + "merchant_entity_id": "5mMjye8YgvJ0KVjL3rYLk0577NKpzn05N1kJv", + "merchant_name": "Giant Food", + "name": "GIANT 0123", + "original_description": "GIANT 0123", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "FOOD_AND_DRINK_GROCERIES", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "ZvlBL5eMPQtnXDV6QrR9sReRmWL5ZgFeagDkl", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "giantfood.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 3.75, + "authorized_date": "2025-05-12", + "authorized_datetime": null, + "category": [ + "Shops", + "Computers and Electronics", + "Video Games" + ], + "category_id": "19013001", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "3oRMK5OMq55E6LeoK6JeeEQwv1Yv4e55YEVWX", + "logo_url": "https://plaid-merchant-logos.plaid.com/sony_playstation_927.png", + "name": "Sony Playstation", + "phone_number": null, + "type": "merchant", + "website": "playstation.com" + } + ], + "date": "2025-05-12", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/sony_playstation_927.png", + "merchant_entity_id": "3oRMK5OMq55E6LeoK6JeeEQwv1Yv4e55YEVWX", + "merchant_name": "Sony Playstation", + "name": "PlayStation Network", + "original_description": "PlayStation Network", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "ENTERTAINMENT_VIDEO_GAMES", + "primary": "ENTERTAINMENT" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_ENTERTAINMENT.png", + "transaction_code": null, + "transaction_id": "MpWPx5o4yrcpZvwQrdbMuwXwMmxAEaFLX98Z1", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "playstation.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 10.72, + "authorized_date": "2025-05-10", + "authorized_datetime": null, + "category": [ + "Food and Drink", + "Restaurants", + "Fast Food" + ], + "category_id": "13005032", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "O5rrn0EJj31bKQKRJAQO5yRJv2Wn7zyp8BA8b", + "logo_url": "https://plaid-merchant-logos.plaid.com/sonic_926.png", + "name": "Sonic Drive-In", + "phone_number": null, + "type": "merchant", + "website": "sonicdrivein.com" + } + ], + "date": "2025-05-13", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": "0123" + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/sonic_926.png", + "merchant_entity_id": "O5rrn0EJj31bKQKRJAQO5yRJv2Wn7zyp8BA8b", + "merchant_name": "Sonic Drive-In", + "name": "Sonic", + "original_description": "SONIC DRIVE IN #0123", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "FOOD_AND_DRINK_FAST_FOOD", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "1bXWx1mVzNcQvyzEo34JTXVXzaj3wrtp95GvP", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "sonicdrivein.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 45.05, + "authorized_date": "2025-05-11", + "authorized_datetime": null, + "category": [ + "Shops", + "Clothing and Accessories" + ], + "category_id": "19012000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "wY2K5ovrKVkJOaWaQbRW3Z2Lo2kZ1vV2YNLO6", + "logo_url": "https://plaid-merchant-logos.plaid.com/tj_maxx_1026.png", + "name": "TJ Maxx", + "phone_number": null, + "type": "merchant", + "website": "tjmaxx.com" + } + ], + "date": "2025-05-13", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/tj_maxx_1026.png", + "merchant_entity_id": "wY2K5ovrKVkJOaWaQbRW3Z2Lo2kZ1vV2YNLO6", + "merchant_name": "TJ Maxx", + "name": "T.J.Maxx", + "original_description": "T.J.Maxx", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "GENERAL_MERCHANDISE_DEPARTMENT_STORES", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "LLEP35oamKfLwWGzKa8mCk6kqE8rxdSk6Pyz6", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "tjmaxx.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 33.47, + "authorized_date": "2025-05-11", + "authorized_datetime": null, + "category": [ + "Shops", + "Clothing and Accessories", + "Women's Store" + ], + "category_id": "19012001", + "check_number": null, + "counterparties": [], + "date": "2025-05-13", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "LULUS.COM", + "original_description": "LULUS.COM", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "GENERAL_MERCHANDISE_OTHER_GENERAL_MERCHANDISE", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "p1oA739DqKhR4y8Xk1ZWcxJxDXZpn5tplLNmj", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 10.5, + "authorized_date": "2025-05-12", + "authorized_datetime": null, + "category": [ + "Shops" + ], + "category_id": "19000000", + "check_number": null, + "counterparties": [], + "date": "2025-05-13", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "MERCARI", + "original_description": "MERCARI", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "GENERAL_MERCHANDISE_OTHER_GENERAL_MERCHANDISE", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "oMpyjB9Dlqhb4v8gkyn6tbzbw9dXyNuoQRnwq", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 17.63, + "authorized_date": "2025-05-12", + "authorized_datetime": null, + "category": [ + "Food and Drink", + "Restaurants", + "Fast Food" + ], + "category_id": "13005032", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "9dgV151n418qNVjVLer6JQVrj5YnwgQ7dqVbM", + "logo_url": "https://plaid-merchant-logos.plaid.com/pizza_hut_758.png", + "name": "Pizza Hut", + "phone_number": null, + "type": "merchant", + "website": "pizzahut.com" + } + ], + "date": "2025-05-13", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/pizza_hut_758.png", + "merchant_entity_id": "9dgV151n418qNVjVLer6JQVrj5YnwgQ7dqVbM", + "merchant_name": "Pizza Hut", + "name": "Pizza Hut", + "original_description": "PIZZA HUT 012345678901", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "FOOD_AND_DRINK_FAST_FOOD", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "g4j7B5kXEnCwdLV7NzQPHV5VgeoABmfENgQkp", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "pizzahut.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 12.71, + "authorized_date": "2025-05-10", + "authorized_datetime": null, + "category": [ + "Shops", + "Music, Video and DVD" + ], + "category_id": "19036000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "z3XzRe488pMdo7NAnL44L7rv9L550berky6mK", + "logo_url": "https://plaid-merchant-logos.plaid.com/apple_itunes_1434.png", + "name": "Apple iTunes", + "phone_number": null, + "type": "merchant", + "website": "apple.com/itunes" + } + ], + "date": "2025-05-14", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": "CA", + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/apple_itunes_1434.png", + "merchant_entity_id": "z3XzRe488pMdo7NAnL44L7rv9L550berky6mK", + "merchant_name": "Apple iTunes", + "name": "iTunes", + "original_description": "APL*ITUNES.COM/BILL 012-012-0123 CA", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": "Apple", + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "ENTERTAINMENT_MUSIC_AND_AUDIO", + "primary": "ENTERTAINMENT" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_ENTERTAINMENT.png", + "transaction_code": null, + "transaction_id": "8lBZ7kqmNMflM6N1rBb8udzd4XJryvfW7wVEb", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "apple.com/itunes" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 113.73, + "authorized_date": "2025-05-11", + "authorized_datetime": null, + "category": [ + "Service", + "Cable" + ], + "category_id": "18009000", + "check_number": null, + "counterparties": [], + "date": "2025-05-14", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "TIMEWARNERCABLE", + "original_description": "TWC*TIMEWARNERCABLE", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": "Time Warner Cable", + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "GENERAL_MERCHANDISE_OTHER_GENERAL_MERCHANDISE", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "EjM3A5vK8mCjLea1GE3mCyoy8jBJPqu48XPdL", + "transaction_type": "special", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 113.56, + "authorized_date": "2025-05-12", + "authorized_datetime": null, + "category": [ + "Shops", + "Automotive", + "Car Parts and Accessories" + ], + "category_id": "19005006", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "ZMB5QNp60a6gzv3kRg11DbOnDBakqV8bmkMk5", + "logo_url": "https://plaid-merchant-logos.plaid.com/oreilly_auto_parts_693.png", + "name": "O'Reilly Auto Parts", + "phone_number": null, + "type": "merchant", + "website": "oriellyauto.com" + } + ], + "date": "2025-05-14", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/oreilly_auto_parts_693.png", + "merchant_entity_id": "ZMB5QNp60a6gzv3kRg11DbOnDBakqV8bmkMk5", + "merchant_name": "O'Reilly Auto Parts", + "name": "O'Reilly Auto Parts", + "original_description": "O'Reilly Auto Parts", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "GENERAL_SERVICES_AUTOMOTIVE", + "primary": "GENERAL_SERVICES" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_SERVICES.png", + "transaction_code": null, + "transaction_id": "Wm6kZ5zMajudb4XV6nyafB8BkXAEb1f63l7am", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "oriellyauto.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 35.47, + "authorized_date": "2025-05-14", + "authorized_datetime": null, + "category": [ + "Shops", + "Music, Video and DVD" + ], + "category_id": "19036000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "z3XzRe488pMdo7NAnL44L7rv9L550berky6mK", + "logo_url": "https://plaid-merchant-logos.plaid.com/apple_itunes_1434.png", + "name": "Apple iTunes", + "phone_number": null, + "type": "merchant", + "website": "apple.com/itunes" + } + ], + "date": "2025-05-14", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/apple_itunes_1434.png", + "merchant_entity_id": "z3XzRe488pMdo7NAnL44L7rv9L550berky6mK", + "merchant_name": "Apple iTunes", + "name": "iTunes", + "original_description": "APL* ITUNES.COM/BILL", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": "Apple", + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "ENTERTAINMENT_MUSIC_AND_AUDIO", + "primary": "ENTERTAINMENT" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_ENTERTAINMENT.png", + "transaction_code": null, + "transaction_id": "Aa7KgRpVLAhamWlkAvD3s8D8vgwBZyf9L1le7", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "apple.com/itunes" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 32.38, + "authorized_date": "2025-05-14", + "authorized_datetime": null, + "category": [ + "Service", + "Personal Care" + ], + "category_id": "18045000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "WM2k4v8V6QW7BbpzzMj8v555BXjja9L7y0KL5", + "logo_url": "https://plaid-merchant-logos.plaid.com/supercuts_983.png", + "name": "Supercuts", + "phone_number": null, + "type": "merchant", + "website": "supercuts.com" + } + ], + "date": "2025-05-14", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/supercuts_983.png", + "merchant_entity_id": "WM2k4v8V6QW7BbpzzMj8v555BXjja9L7y0KL5", + "merchant_name": "Supercuts", + "name": "Supercuts", + "original_description": "SUPERCUTS", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "PERSONAL_CARE_HAIR_AND_BEAUTY", + "primary": "PERSONAL_CARE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_PERSONAL_CARE.png", + "transaction_code": null, + "transaction_id": "GeLdq5ozW9Te8Jd4MGvPT848bXagwrf6K1Xja", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "supercuts.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 18, + "authorized_date": "2025-05-14", + "authorized_datetime": null, + "category": [ + "Shops", + "Pharmacies" + ], + "category_id": "19043000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "qJ0kRK8E9vpQKom2wJJmm0Oe9bBRJEg5vAqqY", + "logo_url": "https://plaid-merchant-logos.plaid.com/rite_aid_832.png", + "name": "Rite Aid", + "phone_number": null, + "type": "merchant", + "website": "riteaid.com" + } + ], + "date": "2025-05-14", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/rite_aid_832.png", + "merchant_entity_id": "qJ0kRK8E9vpQKom2wJJmm0Oe9bBRJEg5vAqqY", + "merchant_name": "Rite Aid", + "name": "Rite Aid", + "original_description": "RITE AID STORE - 0123", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "MEDICAL_PHARMACIES_AND_SUPPLEMENTS", + "primary": "MEDICAL" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_MEDICAL.png", + "transaction_code": null, + "transaction_id": "nZLAPzwDylibQdva8jeDtG1Gx9jmopiA96Nm5", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "riteaid.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 13.7, + "authorized_date": "2025-05-11", + "authorized_datetime": null, + "category": [ + "Shops", + "Supermarkets and Groceries" + ], + "category_id": "19047000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "QVN97WoJyo9oDd309WYpXBkz47WBA0rew6rRw", + "logo_url": "https://plaid-merchant-logos.plaid.com/stop_shop_968.png", + "name": "Stop \u0026 Shop", + "phone_number": null, + "type": "merchant", + "website": "stopandshop.com" + } + ], + "date": "2025-05-11", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/stop_shop_968.png", + "merchant_entity_id": "QVN97WoJyo9oDd309WYpXBkz47WBA0rew6rRw", + "merchant_name": "Stop \u0026 Shop", + "name": "Stop \u0026 Shop", + "original_description": "STOP \u0026 SHOP 0123", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "FOOD_AND_DRINK_GROCERIES", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "bBdylJgXLku1ryVNQ9XehxRxrWZn4ztmnV1vx", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "stopandshop.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 20.99, + "authorized_date": "2025-05-11", + "authorized_datetime": null, + "category": [ + "Shops", + "Department Stores" + ], + "category_id": "19018000", + "check_number": null, + "counterparties": [], + "date": "2025-05-11", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "WWW.KOHLS.COM #0123", + "original_description": "WWW.KOHLS.COM #0123", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "GENERAL_MERCHANDISE_OTHER_GENERAL_MERCHANDISE", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "mQ1ANkbDmRfb4yvJ6npMt6L6v8D91WFgeLn3j", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 9.62, + "authorized_date": "2025-05-11", + "authorized_datetime": null, + "category": [ + "Food and Drink", + "Restaurants" + ], + "category_id": "13005000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "LOW", + "entity_id": null, + "logo_url": null, + "name": "Pizza", + "phone_number": null, + "type": "merchant", + "website": null + } + ], + "date": "2025-05-16", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": "012" + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": "Pizza", + "name": "Auth : Cicis Pizza #012", + "original_description": "Auth : Cicis Pizza #012", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "FOOD_AND_DRINK_RESTAURANT", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "yGmrge5K4NFpDQweBL4yuPMPDozlxKu4Pybvm", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 133.37, + "authorized_date": "2025-05-12", + "authorized_datetime": null, + "category": [ + "Shops", + "Clothing and Accessories", + "Women's Store" + ], + "category_id": "19012001", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "32BmmW001dD0VYk4Y19QBYjzM6DKROXoZNM0L", + "logo_url": "https://plaid-merchant-logos.plaid.com/anthropologie_61.png", + "name": "Anthropologie", + "phone_number": null, + "type": "merchant", + "website": "anthropologie.com" + } + ], + "date": "2025-05-16", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": "012" + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/anthropologie_61.png", + "merchant_entity_id": "32BmmW001dD0VYk4Y19QBYjzM6DKROXoZNM0L", + "merchant_name": "Anthropologie", + "name": "Anthropologie", + "original_description": "ANTHROPOLOGIE #012", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "HIGH", + "detailed": "GENERAL_MERCHANDISE_CLOTHING_AND_ACCESSORIES", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "9q36eAK7P1iqGMPbA34yUAZAEqylmkh4oRwJ6", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "anthropologie.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 24.85, + "authorized_date": "2025-05-12", + "authorized_datetime": null, + "category": [ + "Food and Drink", + "Restaurants" + ], + "category_id": "13005000", + "check_number": null, + "counterparties": [], + "date": "2025-05-16", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "SUPRA", + "original_description": "SUPRA", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "GENERAL_MERCHANDISE_OTHER_GENERAL_MERCHANDISE", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "vEGlLPADxdT7rVvMKoxpsbobZdMaNWuqbWB7P", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 4.27, + "authorized_date": "2025-05-14", + "authorized_datetime": null, + "category": [ + "Travel", + "Gas Stations" + ], + "category_id": "22009000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "wkW8w9jD57qVwvyDKoWr2A2Ve84ABrMDXv35p", + "logo_url": "https://plaid-merchant-logos.plaid.com/sheetz_889.png", + "name": "Sheetz", + "phone_number": null, + "type": "merchant", + "website": "sheetz.com" + } + ], + "date": "2025-05-16", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": "5300 Route 8", + "city": "Gibsonia", + "country": null, + "lat": null, + "lon": null, + "postal_code": "15044", + "region": "PA", + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/sheetz_889.png", + "merchant_entity_id": "wkW8w9jD57qVwvyDKoWr2A2Ve84ABrMDXv35p", + "merchant_name": "Sheetz", + "name": "Sheetz", + "original_description": "SHEETZ 0123", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "TRANSPORTATION_GAS", + "primary": "TRANSPORTATION" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_TRANSPORTATION.png", + "transaction_code": null, + "transaction_id": "RWmGP5oMzdtreRojdm9zi5w5objJq7iaNRW1x", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "sheetz.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 9, + "authorized_date": "2025-05-14", + "authorized_datetime": null, + "category": [ + "Travel", + "Airlines and Aviation Services" + ], + "category_id": "22001000", + "check_number": null, + "counterparties": [], + "date": "2025-05-16", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "Viasat In-Flight Wi-Fi", + "original_description": "Viasat In-Flight Wi-Fi", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "TRAVEL_OTHER_TRAVEL", + "primary": "TRAVEL" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_TRAVEL.png", + "transaction_code": null, + "transaction_id": "6RrvP8d6aQt8RdaEAwWkFbybdk78Reu8QgpAj", + "transaction_type": "special", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 9.01, + "authorized_date": "2025-05-16", + "authorized_datetime": null, + "category": [ + "Travel", + "Taxi" + ], + "category_id": "22016000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "eyg8o776k0QmNgVpAmaQj4WgzW9Qzo6O51gdd", + "logo_url": "https://plaid-merchant-logos.plaid.com/uber_1060.png", + "name": "Uber", + "phone_number": null, + "type": "merchant", + "website": "uber.com" + } + ], + "date": "2025-05-16", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/uber_1060.png", + "merchant_entity_id": "eyg8o776k0QmNgVpAmaQj4WgzW9Qzo6O51gdd", + "merchant_name": "Uber", + "name": "Uber", + "original_description": "UBER HELP.UBER.COMCA", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": true, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "TRANSPORTATION_TAXIS_AND_RIDE_SHARES", + "primary": "TRANSPORTATION" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_TRANSPORTATION.png", + "transaction_code": null, + "transaction_id": "XyXrM5BG47fmPpGD7694U6q6ELgBXwFbkdNl5", + "transaction_type": "special", + "unofficial_currency_code": null, + "website": "uber.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 1.75, + "authorized_date": "2025-05-16", + "authorized_datetime": null, + "category": [ + "Food and Drink", + "Restaurants" + ], + "category_id": "13005000", + "check_number": null, + "counterparties": [], + "date": "2025-05-16", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "DOSH", + "original_description": "DOSH", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "GENERAL_MERCHANDISE_OTHER_GENERAL_MERCHANDISE", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "DPZBW5VqgbFP764zbpqmSvjvRXeNPli3NvBpv", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 13.77, + "authorized_date": "2025-05-16", + "authorized_datetime": null, + "category": [ + "Travel", + "Taxi" + ], + "category_id": "22016000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "eyg8o776k0QmNgVpAmaQj4WgzW9Qzo6O51gdd", + "logo_url": "https://plaid-merchant-logos.plaid.com/uber_1060.png", + "name": "Uber", + "phone_number": null, + "type": "merchant", + "website": "uber.com" + } + ], + "date": "2025-05-16", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": "CA", + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/uber_1060.png", + "merchant_entity_id": "eyg8o776k0QmNgVpAmaQj4WgzW9Qzo6O51gdd", + "merchant_name": "Uber", + "name": "UBER 0123456789", + "original_description": "UBER 0123456789 CA", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "TRANSPORTATION_TAXIS_AND_RIDE_SHARES", + "primary": "TRANSPORTATION" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_TRANSPORTATION.png", + "transaction_code": null, + "transaction_id": "VbRqQ5rLdPcn6RqVP4QdsXJXvWkBVMt9QWXA9", + "transaction_type": "special", + "unofficial_currency_code": null, + "website": "uber.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 8.21, + "authorized_date": "2025-05-16", + "authorized_datetime": null, + "category": [ + "Shops", + "Pharmacies" + ], + "category_id": "19043000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "qkd60geNmo8qMV0wAXbL3yYbqdnoY4ezwbe1R", + "logo_url": "https://plaid-merchant-logos.plaid.com/cvs_264.png", + "name": "CVS", + "phone_number": null, + "type": "merchant", + "website": "cvs.com" + } + ], + "date": "2025-05-16", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": "208 Elm St", + "city": "Westfield", + "country": null, + "lat": 42.124622, + "lon": -72.750076, + "postal_code": "01085", + "region": "MA", + "store_number": "01234" + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/cvs_264.png", + "merchant_entity_id": "qkd60geNmo8qMV0wAXbL3yYbqdnoY4ezwbe1R", + "merchant_name": "CVS", + "name": "CVS", + "original_description": "CVS/PHARMACY #01234", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "MEDICAL_PHARMACIES_AND_SUPPLEMENTS", + "primary": "MEDICAL" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_MEDICAL.png", + "transaction_code": null, + "transaction_id": "wWnqpjJldatQbrvJydjETKPKAvbjJnFPzrxdE", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "cvs.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 53.99, + "authorized_date": "2025-05-16", + "authorized_datetime": null, + "category": [ + "Shops", + "Department Stores" + ], + "category_id": "19018000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "bN0wJ6wvppDz375EzNJNQv9bBODam4qWOrE3k", + "logo_url": "https://plaid-merchant-logos.plaid.com/nordstrom_684.png", + "name": "Nordstrom", + "phone_number": null, + "type": "merchant", + "website": "nordstrom.com" + } + ], + "date": "2025-05-16", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": "0123" + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/nordstrom_684.png", + "merchant_entity_id": "bN0wJ6wvppDz375EzNJNQv9bBODam4qWOrE3k", + "merchant_name": "Nordstrom", + "name": "Nordstrom Rack", + "original_description": "NORDSTROM RACK #0123", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "GENERAL_MERCHANDISE_DEPARTMENT_STORES", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "5vK5Ng6bdetkX4dDA6NbSqZq4bdRDBi5XZAL3", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "nordstrom.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 13.13, + "authorized_date": "2025-05-12", + "authorized_datetime": null, + "category": [ + "Travel", + "Rail" + ], + "category_id": "22015000", + "check_number": null, + "counterparties": [], + "date": "2025-05-15", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "MTA*LIRR STATION TIX", + "original_description": "MTA*LIRR STATION TIX", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "TRANSPORTATION_PUBLIC_TRANSIT", + "primary": "TRANSPORTATION" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_TRANSPORTATION.png", + "transaction_code": null, + "transaction_id": "JMgVz59xnlhM1pyKljkeUAXAEkjdJ3hBXdvN5", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 0.75, + "authorized_date": "2025-05-14", + "authorized_datetime": null, + "category": [ + "Shops", + "Supermarkets and Groceries" + ], + "category_id": "19047000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "a1wEv51o8g7QQEbN2o9NRa3np6AXn0qZ2ZdL9", + "logo_url": "https://plaid-merchant-logos.plaid.com/hellofresh_479.png", + "name": "HelloFresh", + "phone_number": null, + "type": "merchant", + "website": "hellofresh.com" + } + ], + "date": "2025-05-15", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": "NY", + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/hellofresh_479.png", + "merchant_entity_id": "a1wEv51o8g7QQEbN2o9NRa3np6AXn0qZ2ZdL9", + "merchant_name": "HelloFresh", + "name": "HELLOFRESH", + "original_description": "HELLOFRESH 012-012-0123 NY", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "FOOD_AND_DRINK_GROCERIES", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "k7ZAaqkDn9IeLWvPMD3QTQmQv7GBa4uL7WeRw", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "hellofresh.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 58.47, + "authorized_date": "2025-05-14", + "authorized_datetime": null, + "category": [ + "Shops", + "Beauty Products" + ], + "category_id": "19006000", + "check_number": null, + "counterparties": [], + "date": "2025-05-15", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "Sephora", + "original_description": "SEPHORA.CA SEPHORA.CA QC", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "HIGH", + "detailed": "PERSONAL_CARE_HAIR_AND_BEAUTY", + "primary": "PERSONAL_CARE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_PERSONAL_CARE.png", + "transaction_code": null, + "transaction_id": "leMA4KdDbvT9Rj8aDw3ASlqlyB5Xd1ipBZeAn", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 29.96, + "authorized_date": "2025-05-12", + "authorized_datetime": null, + "category": [ + "Shops" + ], + "category_id": "19000000", + "check_number": null, + "counterparties": [], + "date": "2025-05-17", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "WW INT'L-DIGITAL", + "original_description": "WW INT'L-DIGITAL", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "ENTERTAINMENT_SPORTING_EVENTS_AMUSEMENT_PARKS_AND_MUSEUMS", + "primary": "ENTERTAINMENT" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_ENTERTAINMENT.png", + "transaction_code": null, + "transaction_id": "qLgAex9DKrfNjEv5oDMaFebegjz4MBHgld1XQ", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 55.63, + "authorized_date": "2025-05-16", + "authorized_datetime": null, + "category": [ + "Shops", + "Automotive", + "Car Parts and Accessories" + ], + "category_id": "19005006", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "rv4yRmajYRN9bdbbmp2yvWavvAWROjMpm9dBa", + "logo_url": "https://plaid-merchant-logos.plaid.com/autozone_81.png", + "name": "AutoZone", + "phone_number": null, + "type": "merchant", + "website": "autozone.com" + } + ], + "date": "2025-05-17", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/autozone_81.png", + "merchant_entity_id": "rv4yRmajYRN9bdbbmp2yvWavvAWROjMpm9dBa", + "merchant_name": "AutoZone", + "name": "AutoZone", + "original_description": "Autozone", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "GENERAL_SERVICES_AUTOMOTIVE", + "primary": "GENERAL_SERVICES" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_SERVICES.png", + "transaction_code": null, + "transaction_id": "K18PB5Zdbqh17BVgqbRQhyoyVG8KzxuRoVa3J", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "autozone.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 60.19, + "authorized_date": "2025-05-17", + "authorized_datetime": null, + "category": [ + "Food and Drink", + "Restaurants" + ], + "category_id": "13005000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "LOW", + "entity_id": null, + "logo_url": null, + "name": "LLC", + "phone_number": null, + "type": "merchant", + "website": null + } + ], + "date": "2025-05-17", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": "LLC", + "name": "M\u0026D GOOD VIBES LLC", + "original_description": "M\u0026D GOOD VIBES LLC", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "GENERAL_MERCHANDISE_OTHER_GENERAL_MERCHANDISE", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "rp8wQd9Drzc7XxVRZbBNsbxb3lemMgu7blVBN", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 17.54, + "authorized_date": "2025-05-17", + "authorized_datetime": null, + "category": [ + "Food and Drink", + "Restaurants" + ], + "category_id": "13005000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "g6L6baEzJKkLJqM91RnJrbbkaBEgKp1rA9prE", + "logo_url": "https://plaid-merchant-logos.plaid.com/california_pizza_kitchen_1224.png", + "name": "California Pizza Kitchen", + "phone_number": null, + "type": "merchant", + "website": "cpk.com" + } + ], + "date": "2025-05-17", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": "012" + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/california_pizza_kitchen_1224.png", + "merchant_entity_id": "g6L6baEzJKkLJqM91RnJrbbkaBEgKp1rA9prE", + "merchant_name": "California Pizza Kitchen", + "name": "CALI PIZZA KITC INC #012", + "original_description": "CALI PIZZA KITC INC #012", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "HIGH", + "detailed": "FOOD_AND_DRINK_RESTAURANT", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "zkyz8Q9rNPCXgWQeyj9pIeqeR85BmnHldo188", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "cpk.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 4.13, + "authorized_date": "2025-05-16", + "authorized_datetime": null, + "category": [ + "Recreation", + "Arts and Entertainment" + ], + "category_id": "17001000", + "check_number": null, + "counterparties": [], + "date": "2025-05-19", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "THE UNDERGROUND", + "original_description": "THE UNDERGROUND", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "GENERAL_MERCHANDISE_OTHER_GENERAL_MERCHANDISE", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "B4ek869ZpGC41mDnjvVxuBdBk4JqjMf4vwNJ6", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 2.43, + "authorized_date": "2025-05-19", + "authorized_datetime": null, + "category": [ + "Food and Drink" + ], + "category_id": "13000000", + "check_number": null, + "counterparties": [], + "date": "2025-05-19", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "USA*MICRO MARKET VEND", + "original_description": "USA*MICRO MARKET VEND", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "FOOD_AND_DRINK_VENDING_MACHINES", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "3ylJapdb3jf8nK3A1z7JF3j39o47aEIZgqeN7", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 134.91, + "authorized_date": "2025-05-19", + "authorized_datetime": null, + "category": [ + "Shops", + "Computers and Electronics" + ], + "category_id": "19013000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "nqgNrWMbOpJkJD8Xa8RAvVn8NqaEzOjZXggbZ", + "logo_url": "https://plaid-merchant-logos.plaid.com/adobe_17.png", + "name": "Adobe", + "phone_number": null, + "type": "merchant", + "website": "adobe.com" + } + ], + "date": "2025-05-19", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/adobe_17.png", + "merchant_entity_id": "nqgNrWMbOpJkJD8Xa8RAvVn8NqaEzOjZXggbZ", + "merchant_name": "Adobe", + "name": "Adobe Systems", + "original_description": "Adobe Systems", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "GENERAL_SERVICES_OTHER_GENERAL_SERVICES", + "primary": "GENERAL_SERVICES" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_SERVICES.png", + "transaction_code": null, + "transaction_id": "xAbKo75qa4um5aZ8zndpUMdM8E3A5Df6MnRWd", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "adobe.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 206.57, + "authorized_date": "2025-05-19", + "authorized_datetime": null, + "category": [ + "Shops", + "Department Stores" + ], + "category_id": "19018000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "bN0wJ6wvppDz375EzNJNQv9bBODam4qWOrE3k", + "logo_url": "https://plaid-merchant-logos.plaid.com/nordstrom_684.png", + "name": "Nordstrom", + "phone_number": null, + "type": "merchant", + "website": "nordstrom.com" + } + ], + "date": "2025-05-19", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": "0123" + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/nordstrom_684.png", + "merchant_entity_id": "bN0wJ6wvppDz375EzNJNQv9bBODam4qWOrE3k", + "merchant_name": "Nordstrom", + "name": "Nordstrom Direct", + "original_description": "NORDSTROM DIRECT #0123", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "GENERAL_MERCHANDISE_DEPARTMENT_STORES", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "dx4ZK58XoWCvbXVZlNgaC9R9N6MXkPUJyZxAV", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "nordstrom.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 148.63, + "authorized_date": "2025-05-19", + "authorized_datetime": null, + "category": [ + "Travel", + "Gas Stations" + ], + "category_id": "22009000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "pgvBww362Nz7L4NBq3QY5M7g6pk1mRJWv1w3Q", + "logo_url": "https://plaid-merchant-logos.plaid.com/kwik_trip_562.png", + "name": "Kwik Trip", + "phone_number": null, + "type": "merchant", + "website": "kwiktrip.com" + } + ], + "date": "2025-05-19", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": "012" + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/kwik_trip_562.png", + "merchant_entity_id": "pgvBww362Nz7L4NBq3QY5M7g6pk1mRJWv1w3Q", + "merchant_name": "Kwik Trip", + "name": "Kwik Trip", + "original_description": "KWIK TRIP #012", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "TRANSPORTATION_GAS", + "primary": "TRANSPORTATION" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_TRANSPORTATION.png", + "transaction_code": null, + "transaction_id": "azx7A59X1gc5orV6dPw3soqoQv5V3WuZ67xGd", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "kwiktrip.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 11.46, + "authorized_date": "2025-05-19", + "authorized_datetime": null, + "category": [ + "Food and Drink", + "Restaurants", + "Fast Food" + ], + "category_id": "13005032", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "DDM7W339RYJwyjZ4A7v6O9m5jVooQWMrJoaO4", + "logo_url": "https://plaid-merchant-logos.plaid.com/jimmy_johns_539.png", + "name": "Jimmy John's", + "phone_number": null, + "type": "merchant", + "website": "jimmyjohns.com" + } + ], + "date": "2025-05-19", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/jimmy_johns_539.png", + "merchant_entity_id": "DDM7W339RYJwyjZ4A7v6O9m5jVooQWMrJoaO4", + "merchant_name": "Jimmy John's", + "name": "Jimmy Johns", + "original_description": "JIMMY JOHNS - 012", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": true, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "FOOD_AND_DRINK_RESTAURANT", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "49qZ4oGbx7T873XDoebnFmlm68Rq4zFJpdwNa", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "jimmyjohns.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 20.51, + "authorized_date": "2025-05-19", + "authorized_datetime": null, + "category": [ + "Service", + "Employment Agencies" + ], + "category_id": "18016000", + "check_number": null, + "counterparties": [], + "date": "2025-05-19", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "BT TASKRABBIT, INC", + "original_description": "BT TASKRABBIT, INC", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "GENERAL_MERCHANDISE_OTHER_GENERAL_MERCHANDISE", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "NokPd5gNlzfoV1byzGkls7J7bLZaG4fy8WqBE", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 117.08, + "authorized_date": "2025-05-17", + "authorized_datetime": null, + "category": [ + "Shops", + "Clothing and Accessories" + ], + "category_id": "19012000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": null, + "logo_url": null, + "name": "ASOS", + "phone_number": null, + "type": "merchant", + "website": null + } + ], + "date": "2025-05-18", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": "ASOS", + "name": "ASOS US SALES LLC WWW.ASOS.COM DE", + "original_description": "ASOS US SALES LLC WWW.ASOS.COM DE", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "GENERAL_MERCHANDISE_CLOTHING_AND_ACCESSORIES", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "P8n745oWK3cnXKyW31x9slDl4WdaxPioL7rBg", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 1.1, + "authorized_date": "2025-05-18", + "authorized_datetime": null, + "category": [ + "Travel", + "Gas Stations" + ], + "category_id": "22009000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "8y7851JXryBnkOWOjW163yqzAB01oa8k6e1g9", + "logo_url": "https://plaid-merchant-logos.plaid.com/shell_891.png", + "name": "Shell", + "phone_number": null, + "type": "merchant", + "website": "shell.com" + } + ], + "date": "2025-05-18", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/shell_891.png", + "merchant_entity_id": "8y7851JXryBnkOWOjW163yqzAB01oa8k6e1g9", + "merchant_name": "Shell", + "name": "SHELL/SHELL #...0123", + "original_description": "SHELL/SHELL #...0123", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": true, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "TRANSPORTATION_GAS", + "primary": "TRANSPORTATION" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_TRANSPORTATION.png", + "transaction_code": null, + "transaction_id": "jjQ7dlP5GyCbNavw7rzpty4yvzEekWu6K18zB", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "shell.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 23.57, + "authorized_date": "2025-05-18", + "authorized_datetime": null, + "category": [ + "Shops", + "Supermarkets and Groceries" + ], + "category_id": "19047000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "Wwj2nkj2Ez5b4mVQzWmy8Q0a8YA0LwEaojdZV", + "logo_url": "https://plaid-merchant-logos.plaid.com/albertsons_34.png", + "name": "Albertsons", + "phone_number": null, + "type": "merchant", + "website": "albertsons.com" + } + ], + "date": "2025-05-18", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": "0123" + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/albertsons_34.png", + "merchant_entity_id": "Wwj2nkj2Ez5b4mVQzWmy8Q0a8YA0LwEaojdZV", + "merchant_name": "Albertsons", + "name": "Albertsons", + "original_description": "ALBERTSONS #0123", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": true, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "FOOD_AND_DRINK_GROCERIES", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "76zXjElb4Zt8RL4DAzM9F9Z9derAGxUdbgKAK", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "albertsons.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 6.74, + "authorized_date": "2025-05-18", + "authorized_datetime": null, + "category": [ + "Food and Drink", + "Restaurants", + "Fast Food" + ], + "category_id": "13005032", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "vzWXDWBjB06j5BJoD3Jo84OJZg7JJzmqOZA22", + "logo_url": "https://plaid-merchant-logos.plaid.com/mcdonalds_619.png", + "name": "McDonald's", + "phone_number": null, + "type": "merchant", + "website": "mcdonalds.com" + } + ], + "date": "2025-05-18", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": "6729 Arlington Blvd", + "city": "Falls Church", + "country": null, + "lat": null, + "lon": null, + "postal_code": "22042", + "region": "VA", + "store_number": "0123" + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/mcdonalds_619.png", + "merchant_entity_id": "vzWXDWBjB06j5BJoD3Jo84OJZg7JJzmqOZA22", + "merchant_name": "McDonald's", + "name": "McDonald's", + "original_description": "MCDONALD'S F0123 #...0123", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": true, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "FOOD_AND_DRINK_FAST_FOOD", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "edNwr51XgAcoARVZP68vsdRdxW3boXfrvLlR1", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "mcdonalds.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 31.32, + "authorized_date": "2025-05-18", + "authorized_datetime": null, + "category": [ + "Shops", + "Supermarkets and Groceries" + ], + "category_id": "19047000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "BzJndQpm8ERB0yK25EM6n48raQaNKLK8Vkw5A", + "logo_url": "https://plaid-merchant-logos.plaid.com/vons_1093.png", + "name": "Vons", + "phone_number": null, + "type": "merchant", + "website": "vons.com" + } + ], + "date": "2025-05-18", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": "0123" + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/vons_1093.png", + "merchant_entity_id": "BzJndQpm8ERB0yK25EM6n48raQaNKLK8Vkw5A", + "merchant_name": "Vons", + "name": "Vons", + "original_description": "VONS #0123", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": true, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "FOOD_AND_DRINK_GROCERIES", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "QEbZN5mMrxTnJ4XRxba9s9p9XJolyjUwPpW47", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "vons.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 73.84, + "authorized_date": "2025-05-18", + "authorized_datetime": null, + "category": [ + "Shops", + "Department Stores" + ], + "category_id": "19018000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "wVy2NR88jw5Z2qro8Vo4oro8E3aErD0gDN0nZ", + "logo_url": "https://plaid-merchant-logos.plaid.com/kohls_553.png", + "name": "Kohl's", + "phone_number": null, + "type": "merchant", + "website": "kohls.com" + } + ], + "date": "2025-05-18", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/kohls_553.png", + "merchant_entity_id": "wVy2NR88jw5Z2qro8Vo4oro8E3aErD0gDN0nZ", + "merchant_name": "Kohl's", + "name": "Kohl's", + "original_description": "Kohl's", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "GENERAL_MERCHANDISE_DEPARTMENT_STORES", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "ZvlBL5eMPQtnXDV6QrR9sReRmWL5ZgFeagDAl", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "kohls.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 5.8, + "authorized_date": "2025-05-18", + "authorized_datetime": null, + "category": [ + "Shops", + "Food and Beverage Store", + "Beer, Wine and Spirits" + ], + "category_id": "19025004", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "4jwD3pbW402N3V7qKpma3BWaQDrJ72An7WJEV", + "logo_url": "https://plaid-merchant-logos.plaid.com/specs_932.png", + "name": "Spec's", + "phone_number": null, + "type": "merchant", + "website": "specsonline.com" + } + ], + "date": "2025-05-18", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": "1420 Kingwood Dr", + "city": "Kingwood", + "country": null, + "lat": 30.048712, + "lon": -95.23423, + "postal_code": "77339", + "region": "TX", + "store_number": "01" + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/specs_932.png", + "merchant_entity_id": "4jwD3pbW402N3V7qKpma3BWaQDrJ72An7WJEV", + "merchant_name": "Spec's", + "name": "SPECS #01", + "original_description": "SPECS #01", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": true, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "FOOD_AND_DRINK_BEER_WINE_AND_LIQUOR", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "MpWPx5o4yrcpZvwQrdbMuwXwMmxAEaFLX98w1", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "specsonline.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 17.48, + "authorized_date": "2025-05-18", + "authorized_datetime": null, + "category": [ + "Shops", + "Office Supplies" + ], + "category_id": "19039000", + "check_number": null, + "counterparties": [], + "date": "2025-05-18", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "OfficeMax", + "original_description": "OFFICEMAX/DEPOT 0123", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "GENERAL_MERCHANDISE_OFFICE_SUPPLIES", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "1bXWx1mVzNcQvyzEo34JTXVXzaj3wrtp95GLP", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 22.64, + "authorized_date": "2025-05-18", + "authorized_datetime": null, + "category": [ + "Shops", + "Supermarkets and Groceries" + ], + "category_id": "19047000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "LOW", + "entity_id": null, + "logo_url": null, + "name": "Supermark", + "phone_number": null, + "type": "merchant", + "website": null + } + ], + "date": "2025-05-18", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": "Supermark", + "name": "VALLARTA SUPERMARK", + "original_description": "VALLARTA SUPERMARK", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "FOOD_AND_DRINK_GROCERIES", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "LLEP35oamKfLwWGzKa8mCk6kqE8rxdSk6Pyv6", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 45.29, + "authorized_date": "2025-05-18", + "authorized_datetime": null, + "category": [ + "Shops", + "Food and Beverage Store", + "Beer, Wine and Spirits" + ], + "category_id": "19025004", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "ErkWQQReryywzaa1qNX9yo18wZk4aAQ3XL1k7", + "logo_url": "https://plaid-merchant-logos.plaid.com/total_wine_more_1036.png", + "name": "Total Wine \u0026 More", + "phone_number": null, + "type": "merchant", + "website": "totalwine.com" + } + ], + "date": "2025-05-18", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/total_wine_more_1036.png", + "merchant_entity_id": "ErkWQQReryywzaa1qNX9yo18wZk4aAQ3XL1k7", + "merchant_name": "Total Wine \u0026 More", + "name": "TOTAL WINE AND MORE 0123", + "original_description": "TOTAL WINE AND MORE 0123", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": true, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "FOOD_AND_DRINK_BEER_WINE_AND_LIQUOR", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "p1oA739DqKhR4y8Xk1ZWcxJxDXZpn5tplLNyj", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "totalwine.com" + }, + { + "account_id": "MpWPx5o4yrcpZvwQrdbMuwX699pjDRCLX98NN", + "account_owner": null, + "amount": 64.73, + "authorized_date": "2025-05-01", + "authorized_datetime": null, + "category": [ + "Interest", + "Interest Earned" + ], + "category_id": "15001000", + "check_number": null, + "counterparties": [], + "date": "2025-05-01", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "Interest", + "original_description": "Interest", + "payment_channel": "other", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "GENERAL_MERCHANDISE_OTHER_GENERAL_MERCHANDISE", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "oMpyjB9Dlqhb4v8gkyn6tbzbw9dXyNuoQRnxq", + "transaction_type": "special", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "edNwr51XgAcoARVZP68vsdREvv56jafrvLlJ7", + "account_owner": null, + "amount": 1109.01, + "authorized_date": "2024-12-15", + "authorized_datetime": null, + "category": [ + "Payment", + "Credit Card" + ], + "category_id": "16001000", + "check_number": null, + "counterparties": [], + "date": "2024-12-16", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "CREDIT CRD AUTOPAY 29812 000000000098123 KABCRGKSPKFG YOTALDUXZYA B", + "original_description": "CREDIT CRD AUTOPAY 29812 000000000098123 KABCRGKSPKFG YOTALDUXZYA B", + "payment_channel": "other", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "LOAN_PAYMENTS_CREDIT_CARD_PAYMENT", + "primary": "LOAN_PAYMENTS" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_LOAN_PAYMENTS.png", + "transaction_code": null, + "transaction_id": "dx4ZK58XoWCvbXVZlNgaC9Rggo11KMcJEQal5", + "transaction_type": "special", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "edNwr51XgAcoARVZP68vsdREvv56jafrvLlJ7", + "account_owner": null, + "amount": 398.34, + "authorized_date": "2025-02-11", + "authorized_datetime": null, + "category": [ + "Payment", + "Credit Card" + ], + "category_id": "16001000", + "check_number": null, + "counterparties": [], + "date": "2025-02-12", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "DEBIT CRD AUTOPAY 98712 000000000098712 WRSGTKIUYPKF KJHAUXYOTLL A", + "original_description": "DEBIT CRD AUTOPAY 98712 000000000098712 WRSGTKIUYPKF KJHAUXYOTLL A", + "payment_channel": "other", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "LOAN_PAYMENTS_CREDIT_CARD_PAYMENT", + "primary": "LOAN_PAYMENTS" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_LOAN_PAYMENTS.png", + "transaction_code": null, + "transaction_id": "azx7A59X1gc5orV6dPw3soqNNDmmL5SZ5Q3oj", + "transaction_type": "special", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 18.03, + "authorized_date": "2023-05-17", + "authorized_datetime": null, + "category": [ + "Food and Drink", + "Restaurants" + ], + "category_id": "13005000", + "check_number": null, + "counterparties": [], + "date": "2023-05-22", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "BOTTLED BLONDE", + "original_description": "BOTTLED BLONDE", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "GENERAL_MERCHANDISE_OTHER_GENERAL_MERCHANDISE", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "49qZ4oGbx7T873XDoebnFmlMMvGGjRTJbAM9j", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 51.15, + "authorized_date": "2023-05-18", + "authorized_datetime": null, + "category": [ + "Shops", + "Supermarkets and Groceries" + ], + "category_id": "19047000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "E1Eqdj7BML3NLYNAO562kZj5R0J4EkQo6gYJA", + "logo_url": "https://plaid-merchant-logos.plaid.com/kroger_555.png", + "name": "Kroger", + "phone_number": null, + "type": "merchant", + "website": "kroger.com" + } + ], + "date": "2023-05-22", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/kroger_555.png", + "merchant_entity_id": "E1Eqdj7BML3NLYNAO562kZj5R0J4EkQo6gYJA", + "merchant_name": "Kroger", + "name": "Kroger", + "original_description": "Kroger", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "FOOD_AND_DRINK_GROCERIES", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "NokPd5gNlzfoV1byzGkls7JyypwwrZiy65KoR", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "kroger.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 142.26, + "authorized_date": "2023-05-18", + "authorized_datetime": null, + "category": [ + "Service" + ], + "category_id": "18000000", + "check_number": null, + "counterparties": [], + "date": "2023-05-20", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "Facebook", + "original_description": "Facebook", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "GENERAL_MERCHANDISE_OTHER_GENERAL_MERCHANDISE", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "P8n745oWK3cnXKyW31x9slDNNpggzduo6Wv83", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 25.7, + "authorized_date": "2023-05-21", + "authorized_datetime": null, + "category": [ + "Shops", + "Convenience Stores" + ], + "category_id": "19015000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "653bj4EwY3e1eLKzY5qN2aoW2opqObWEgOvWe", + "logo_url": "https://plaid-merchant-logos.plaid.com/stewarts_shops_964.png", + "name": "Stewart's Shops", + "phone_number": null, + "type": "merchant", + "website": "stewartsshops.com" + } + ], + "date": "2023-05-21", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/stewarts_shops_964.png", + "merchant_entity_id": "653bj4EwY3e1eLKzY5qN2aoW2opqObWEgOvWe", + "merchant_name": "Stewart's Shops", + "name": "STEWARTS SHOP 012", + "original_description": "STEWARTS SHOP 012", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "GENERAL_MERCHANDISE_CONVENIENCE_STORES", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "jjQ7dlP5GyCbNavw7rzpty4wwADDdEu6WLAQJ", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "stewartsshops.com" + } + ], + "has_more": true, + "modified": [], + "next_cursor": "CAESJWpqUTdkbFA1R3lDYk5hdnc3cnpwdHk0d3dBRERkRXU2V0xBUUoiDAian63BBhDg8InkAioMCJqfrcEGEOjakKAD", + "removed": [], + "request_id": "3KC97xNIpBJmZ22", + "transactions_update_status": "HISTORICAL_UPDATE_COMPLETE" + } + recorded_at: Mon, 19 May 2025 15:34:55 GMT +- request: + method: post + uri: https://sandbox.plaid.com/transactions/sync + body: + encoding: UTF-8 + string: '{"access_token":"access-sandbox-d531d3c9-8520-43ca-9e58-5b70b79fd1d4","cursor":"CAESJWpqUTdkbFA1R3lDYk5hdnc3cnpwdHk0d3dBRERkRXU2V0xBUUoiDAian63BBhDg8InkAioMCJqfrcEGEOjakKAD","count":100,"options":{"include_original_description":true}}' + headers: + Content-Type: + - application/json + User-Agent: + - Plaid Ruby v38.0.0 + Accept: + - application/json + Plaid-Client-Id: + - "" + Plaid-Version: + - '2020-09-14' + Plaid-Secret: + - "" + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + response: + status: + code: 200 + message: OK + headers: + Server: + - nginx + Date: + - Mon, 19 May 2025 15:34:56 GMT + Content-Type: + - application/json; charset=utf-8 + Transfer-Encoding: + - chunked + Connection: + - keep-alive + Plaid-Version: + - '2020-09-14' + Vary: + - Accept-Encoding + X-Envoy-Upstream-Service-Time: + - '403' + X-Envoy-Decorator-Operation: + - default.svc-apiv2:8080/* + Strict-Transport-Security: + - max-age=31536000; includeSubDomains; preload + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Xss-Protection: + - 1; mode=block + body: + encoding: ASCII-8BIT + string: |- + { + "accounts": [ + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "balances": { + "available": 11065.71, + "current": 1000, + "iso_currency_code": "USD", + "limit": 12200, + "unofficial_currency_code": null + }, + "holder_category": "personal", + "mask": "3053", + "name": "Test Credit Card Account", + "official_name": "Plaid credit card", + "subtype": "credit card", + "type": "credit" + } + ], + "added": [ + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 308.7, + "authorized_date": "2023-05-21", + "authorized_datetime": null, + "category": [ + "Shops", + "Beauty Products" + ], + "category_id": "19006000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "54BEBKODKVz74OKna46dv2ZQDWnNRb1572Lp9", + "logo_url": "https://plaid-merchant-logos.plaid.com/ulta_beauty_1062.png", + "name": "Ulta Beauty", + "phone_number": null, + "type": "merchant", + "website": "ulta.com" + } + ], + "date": "2023-05-21", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/ulta_beauty_1062.png", + "merchant_entity_id": "54BEBKODKVz74OKna46dv2ZQDWnNRb1572Lp9", + "merchant_name": "Ulta Beauty", + "name": "ULTA Beauty", + "original_description": "ULTA Beauty", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "PERSONAL_CARE_HAIR_AND_BEAUTY", + "primary": "PERSONAL_CARE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_PERSONAL_CARE.png", + "transaction_code": null, + "transaction_id": "76zXjElb4Zt8RL4DAzM9F9Z77ByyVrcdJnpwR", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "ulta.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 25.25, + "authorized_date": "2023-05-21", + "authorized_datetime": null, + "category": [ + "Food and Drink", + "Restaurants", + "Fast Food" + ], + "category_id": "13005032", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "a4r8Wog9LbWrwqWpXZeJZr9b8rRbgavga0dkM", + "logo_url": "https://plaid-merchant-logos.plaid.com/dominos_292.png", + "name": "Domino's", + "phone_number": null, + "type": "merchant", + "website": "dominos.com" + } + ], + "date": "2023-05-21", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/dominos_292.png", + "merchant_entity_id": "a4r8Wog9LbWrwqWpXZeJZr9b8rRbgavga0dkM", + "merchant_name": "Domino's", + "name": "Domino's", + "original_description": "DOMINO'S PIZZA *", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "FOOD_AND_DRINK_FAST_FOOD", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "edNwr51XgAcoARVZP68vsdRKK5ZZQ3Fr95kxp", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "dominos.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 7.29, + "authorized_date": "2023-05-21", + "authorized_datetime": null, + "category": [ + "Shops", + "Supermarkets and Groceries" + ], + "category_id": "19047000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "p2jJA90Jrbmq7m2Oq2mqrvbMJ9Mmw2MLBq36y", + "logo_url": "https://plaid-merchant-logos.plaid.com/king_soopers_550.png", + "name": "King Soopers", + "phone_number": null, + "type": "merchant", + "website": "kingsoopers.com" + } + ], + "date": "2023-05-21", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/king_soopers_550.png", + "merchant_entity_id": "p2jJA90Jrbmq7m2Oq2mqrvbMJ9Mmw2MLBq36y", + "merchant_name": "King Soopers", + "name": "King Soopers", + "original_description": "KING SOOPERS 0123", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "FOOD_AND_DRINK_GROCERIES", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "QEbZN5mMrxTnJ4XRxba9s9pPPx77Rocwm7ejJ", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "kingsoopers.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 7.11, + "authorized_date": "2023-05-24", + "authorized_datetime": null, + "category": [ + "Food and Drink", + "Restaurants", + "Fast Food" + ], + "category_id": "13005032", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "Mjqdpqn3ZgOdrAYpkAKMkArEON7avQ8jV9BX1", + "logo_url": "https://plaid-merchant-logos.plaid.com/chipotle_mexican_grill_202.png", + "name": "Chipotle Mexican Grill", + "phone_number": null, + "type": "merchant", + "website": "chipotle.com" + } + ], + "date": "2023-05-24", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/chipotle_mexican_grill_202.png", + "merchant_entity_id": "Mjqdpqn3ZgOdrAYpkAKMkArEON7avQ8jV9BX1", + "merchant_name": "Chipotle Mexican Grill", + "name": "Chipotle Mexican Grill", + "original_description": "CHIPOTLE ONLINE", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "FOOD_AND_DRINK_FAST_FOOD", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "ZvlBL5eMPQtnXDV6QrR9sReKKzJJqLfeqXlxD", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "chipotle.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 3.51, + "authorized_date": "2023-05-24", + "authorized_datetime": null, + "category": [ + "Service", + "Business Services" + ], + "category_id": "18008000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "NELrAdOaJ071vgdXyE2DOOjQ978bdoKmZ0pv5", + "logo_url": "https://plaid-merchant-logos.plaid.com/aramark_67.png", + "name": "Aramark", + "phone_number": null, + "type": "merchant", + "website": "aramark.com" + } + ], + "date": "2023-05-24", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/aramark_67.png", + "merchant_entity_id": "NELrAdOaJ071vgdXyE2DOOjQ978bdoKmZ0pv5", + "merchant_name": "Aramark", + "name": "Aramark", + "original_description": "Aramark", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "FOOD_AND_DRINK_OTHER_FOOD_AND_DRINK", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "MpWPx5o4yrcpZvwQrdbMuwXqqprrnxhL6PymV", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "aramark.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 36.75, + "authorized_date": "2023-05-24", + "authorized_datetime": null, + "category": [ + "Shops", + "Clothing and Accessories", + "Women's Store" + ], + "category_id": "19012001", + "check_number": null, + "counterparties": [ + { + "confidence_level": "LOW", + "entity_id": null, + "logo_url": null, + "name": "Other Stories", + "phone_number": null, + "type": "merchant", + "website": null + } + ], + "date": "2023-05-27", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": "NJ", + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": "Other Stories", + "name": "\u0026 OTHER STORIES WEB", + "original_description": "\u0026 OTHER STORIES WEB 012-012-0123 NJ", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "GENERAL_MERCHANDISE_OTHER_GENERAL_MERCHANDISE", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "1bXWx1mVzNcQvyzEo34JTXVppWLLKjtpjeoDe", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 1.77, + "authorized_date": "2023-05-24", + "authorized_datetime": null, + "category": [ + "Service", + "Food and Beverage" + ], + "category_id": "18021000", + "check_number": null, + "counterparties": [], + "date": "2023-05-29", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "*CAVA012345678", + "original_description": "LEVELUP*CAVA012345678", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": "Braintree", + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "FOOD_AND_DRINK_OTHER_FOOD_AND_DRINK", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "LLEP35oamKfLwWGzKa8mCk6NNK55v8fkjpa3a", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 27.81, + "authorized_date": "2023-05-26", + "authorized_datetime": null, + "category": [ + "Service", + "Veterinarians" + ], + "category_id": "18069000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "K4KL4mp2wdyW6Wp733QKagKkRQ4rrNV1zeQqE", + "logo_url": "https://plaid-merchant-logos.plaid.com/banfield_pet_hospital_90.png", + "name": "Banfield Pet Hospital", + "phone_number": null, + "type": "merchant", + "website": "banfield.com" + } + ], + "date": "2023-05-29", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/banfield_pet_hospital_90.png", + "merchant_entity_id": "K4KL4mp2wdyW6Wp733QKagKkRQ4rrNV1zeQqE", + "merchant_name": "Banfield Pet Hospital", + "name": "BANFIELD-PET*WPPAYMENT", + "original_description": "BANFIELD-PET*WPPAYMENT", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "HIGH", + "detailed": "MEDICAL_VETERINARY_SERVICES", + "primary": "MEDICAL" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_MEDICAL.png", + "transaction_code": null, + "transaction_id": "p1oA739DqKhR4y8Xk1ZWcxJKKVWW7ZipoVnXz", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "banfield.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 53.42, + "authorized_date": "2023-05-28", + "authorized_datetime": null, + "category": [ + "Food and Drink", + "Restaurants" + ], + "category_id": "13005000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "EZ92VM3NzEaVdzq5eRB2YOb14a3OYk3gRvyZQ", + "logo_url": "https://plaid-counterparty-logos.plaid.com/uber_eats_2.png", + "name": "Uber Eats", + "phone_number": null, + "type": "marketplace", + "website": "ubereats.com" + } + ], + "date": "2023-05-29", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": "CA", + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": "Uber Eats", + "name": "Uber Eats", + "original_description": "UBER EATS 0123456789 CA", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "FOOD_AND_DRINK_RESTAURANT", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "oMpyjB9Dlqhb4v8gkyn6tbzBB6EEDdCoq7yvV", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 5.2, + "authorized_date": "2023-05-24", + "authorized_datetime": null, + "category": [ + "Shops", + "Pets" + ], + "category_id": "19042000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "1y2mqBeXgdqZVXr3nE8m18DdevZ6AdwoR8q1D", + "logo_url": "https://plaid-merchant-logos.plaid.com/petsmart_748.png", + "name": "PetSmart", + "phone_number": null, + "type": "merchant", + "website": "petsmart.com" + } + ], + "date": "2023-05-28", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/petsmart_748.png", + "merchant_entity_id": "1y2mqBeXgdqZVXr3nE8m18DdevZ6AdwoR8q1D", + "merchant_name": "PetSmart", + "name": "PetSmart", + "original_description": "Petsmart", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "GENERAL_MERCHANDISE_PET_SUPPLIES", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "g4j7B5kXEnCwdLV7NzQPHV5ZZnpprotE8n1yN", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "petsmart.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 72.54, + "authorized_date": "2023-05-24", + "authorized_datetime": null, + "category": [ + "Shops", + "Supermarkets and Groceries" + ], + "category_id": "19047000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "E1Eqdj7BML3NLYNAO562kZj5R0J4EkQo6gYJA", + "logo_url": "https://plaid-merchant-logos.plaid.com/kroger_555.png", + "name": "Kroger", + "phone_number": null, + "type": "merchant", + "website": "kroger.com" + } + ], + "date": "2023-05-28", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": "012" + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/kroger_555.png", + "merchant_entity_id": "E1Eqdj7BML3NLYNAO562kZj5R0J4EkQo6gYJA", + "merchant_name": "Kroger", + "name": "Kroger", + "original_description": "KROGER #012 #...0123", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "FOOD_AND_DRINK_GROCERIES", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "8lBZ7kqmNMflM6N1rBb8udzKKnBB1JFW3LmNp", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "kroger.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 34.44, + "authorized_date": "2023-05-24", + "authorized_datetime": null, + "category": [ + "Shops", + "Hardware Store" + ], + "category_id": "19030000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "kVawvV6p0R25gKw3qbp4Kq7kEzDdY5RnjV7RK", + "logo_url": "https://plaid-merchant-logos.plaid.com/home_depot_491.png", + "name": "The Home Depot", + "phone_number": null, + "type": "merchant", + "website": "homedepot.com" + } + ], + "date": "2023-05-26", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": "3885 Jonesboro Rd SE", + "city": "Atlanta", + "country": null, + "lat": 33.648727, + "lon": -84.367844, + "postal_code": "30354", + "region": "GA", + "store_number": "0123" + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/home_depot_491.png", + "merchant_entity_id": "kVawvV6p0R25gKw3qbp4Kq7kEzDdY5RnjV7RK", + "merchant_name": "The Home Depot", + "name": "Home Depot", + "original_description": "THE HOME DEPOT #0123", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "HOME_IMPROVEMENT_HARDWARE", + "primary": "HOME_IMPROVEMENT" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_HOME_IMPROVEMENT.png", + "transaction_code": null, + "transaction_id": "EjM3A5vK8mCjLea1GE3mCyoggWNNGBu4xkl6x", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "homedepot.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 10.73, + "authorized_date": "2023-05-26", + "authorized_datetime": null, + "category": [ + "Food and Drink", + "Restaurants", + "Fast Food" + ], + "category_id": "13005032", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "BO2OAg7nprnK6W7rBvarKXkNJ1qJWYRk7AvqZ", + "logo_url": "https://plaid-merchant-logos.plaid.com/arbys_68.png", + "name": "Arby's", + "phone_number": null, + "type": "merchant", + "website": "arbys.com" + } + ], + "date": "2023-05-26", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/arbys_68.png", + "merchant_entity_id": "BO2OAg7nprnK6W7rBvarKXkNJ1qJWYRk7AvqZ", + "merchant_name": "Arby's", + "name": "Arby's", + "original_description": "Arby's", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "FOOD_AND_DRINK_FAST_FOOD", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "Wm6kZ5zMajudb4XV6nyafB8wwGZZoAF6Z1EBz", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "arbys.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 113.24, + "authorized_date": "2023-05-24", + "authorized_datetime": null, + "category": [ + "Shops", + "Computers and Electronics", + "Video Games" + ], + "category_id": "19013001", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "3oRMK5OMq55E6LeoK6JeeEQwv1Yv4e55YEVWX", + "logo_url": "https://plaid-merchant-logos.plaid.com/sony_playstation_927.png", + "name": "Sony Playstation", + "phone_number": null, + "type": "merchant", + "website": "playstation.com" + } + ], + "date": "2023-05-25", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/sony_playstation_927.png", + "merchant_entity_id": "3oRMK5OMq55E6LeoK6JeeEQwv1Yv4e55YEVWX", + "merchant_name": "Sony Playstation", + "name": "PlayStation Network", + "original_description": "PlayStation Network", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "ENTERTAINMENT_VIDEO_GAMES", + "primary": "ENTERTAINMENT" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_ENTERTAINMENT.png", + "transaction_code": null, + "transaction_id": "Aa7KgRpVLAhamWlkAvD3s8DaaWmmjwC9rAPBQ", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "playstation.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 7.91, + "authorized_date": "2023-05-26", + "authorized_datetime": null, + "category": [ + "Service", + "Subscription" + ], + "category_id": "18061000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "2373QOZJ18DqqK0KWvgpng3nmVDLMvDvy05RN", + "logo_url": "https://plaid-merchant-logos.plaid.com/spotify_947.png", + "name": "Spotify", + "phone_number": null, + "type": "merchant", + "website": "spotify.com" + } + ], + "date": "2023-05-31", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/spotify_947.png", + "merchant_entity_id": "2373QOZJ18DqqK0KWvgpng3nmVDLMvDvy05RN", + "merchant_name": "Spotify", + "name": "Spotify", + "original_description": "Spotify USA", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "ENTERTAINMENT_MUSIC_AND_AUDIO", + "primary": "ENTERTAINMENT" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_ENTERTAINMENT.png", + "transaction_code": null, + "transaction_id": "GeLdq5ozW9Te8Jd4MGvPT84yyAddeaC6MP3Z4", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "spotify.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 3.75, + "authorized_date": "2023-05-27", + "authorized_datetime": null, + "category": [ + "Service", + "Personal Care" + ], + "category_id": "18045000", + "check_number": null, + "counterparties": [], + "date": "2023-05-31", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "QUIP NYC INC QUIP - TO", + "original_description": "QUIP NYC INC QUIP - TO", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "GENERAL_MERCHANDISE_OTHER_GENERAL_MERCHANDISE", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "nZLAPzwDylibQdva8jeDtG1776wwRjFAlWbJy", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 60, + "authorized_date": "2023-05-28", + "authorized_datetime": null, + "category": [ + "Travel", + "Car and Truck Rentals" + ], + "category_id": "22005000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "p6vABXmp4N26EN7Qo1YVLRveadZLEbX5qDNpD", + "logo_url": "https://plaid-merchant-logos.plaid.com/avis_85.png", + "name": "Avis", + "phone_number": null, + "type": "merchant", + "website": "avis.com" + } + ], + "date": "2023-05-31", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/avis_85.png", + "merchant_entity_id": "p6vABXmp4N26EN7Qo1YVLRveadZLEbX5qDNpD", + "merchant_name": "Avis", + "name": "Avis", + "original_description": "AVIS RENT-A-CAR *", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "TRAVEL_RENTAL_CARS", + "primary": "TRAVEL" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_TRAVEL.png", + "transaction_code": null, + "transaction_id": "bBdylJgXLku1ryVNQ9XehxR995ppjZimbZqB5", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "avis.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 70.4, + "authorized_date": "2023-05-29", + "authorized_datetime": null, + "category": [ + "Service", + "Food and Beverage" + ], + "category_id": "18021000", + "check_number": null, + "counterparties": [], + "date": "2023-06-02", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "SUN BASKET", + "original_description": "SUN BASKET", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "GENERAL_MERCHANDISE_OTHER_GENERAL_MERCHANDISE", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "mQ1ANkbDmRfb4yvJ6npMt6LKKoeeADfgydJrE", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 12, + "authorized_date": "2023-05-29", + "authorized_datetime": null, + "category": [ + "Service", + "Internet Services" + ], + "category_id": "18031000", + "check_number": null, + "counterparties": [], + "date": "2023-06-02", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "HTTP://WWW.GOGOAIR.COM", + "original_description": "HTTP://WWW.GOGOAIR.COM", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "GENERAL_MERCHANDISE_OTHER_GENERAL_MERCHANDISE", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "yGmrge5K4NFpDQweBL4yuPMpp711gzC46XAga", + "transaction_type": "digital", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 12.25, + "authorized_date": "2023-06-01", + "authorized_datetime": null, + "category": [ + "Shops", + "Pharmacies" + ], + "category_id": "19043000", + "check_number": null, + "counterparties": [], + "date": "2023-06-02", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "Express Scripts Phrmcy", + "original_description": "Express Scripts Phrmcy", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "MEDICAL_PHARMACIES_AND_SUPPLEMENTS", + "primary": "MEDICAL" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_MEDICAL.png", + "transaction_code": null, + "transaction_id": "9q36eAK7P1iqGMPbA34yUAZPPn66Gyc4xQDKG", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 8.16, + "authorized_date": "2023-05-30", + "authorized_datetime": null, + "category": [ + "Food and Drink", + "Restaurants", + "Fast Food" + ], + "category_id": "13005032", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "rodgjzdRn4zyz3Z7LJR8n9eQgErD0VYLWzKg0", + "logo_url": "https://plaid-merchant-logos.plaid.com/hardees_475.png", + "name": "Hardee's", + "phone_number": null, + "type": "merchant", + "website": "hardees.com" + } + ], + "date": "2023-06-01", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/hardees_475.png", + "merchant_entity_id": "rodgjzdRn4zyz3Z7LJR8n9eQgErD0VYLWzKg0", + "merchant_name": "Hardee's", + "name": "Hardee's", + "original_description": "Hardees", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "FOOD_AND_DRINK_FAST_FOOD", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "vEGlLPADxdT7rVvMKoxpsbo447mmVMCq6kRwx", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "hardees.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 21.38, + "authorized_date": "2023-06-01", + "authorized_datetime": null, + "category": [ + "Recreation", + "Arts and Entertainment" + ], + "category_id": "17001000", + "check_number": null, + "counterparties": [], + "date": "2023-06-01", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "TFI*TICKETFLY EVENTS", + "original_description": "TFI*TICKETFLY EVENTS", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "ENTERTAINMENT_SPORTING_EVENTS_AMUSEMENT_PARKS_AND_MUSEUMS", + "primary": "ENTERTAINMENT" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_ENTERTAINMENT.png", + "transaction_code": null, + "transaction_id": "RWmGP5oMzdtreRojdm9zi5wkkRDDejIapb4Zy", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 1.87, + "authorized_date": "2023-06-01", + "authorized_datetime": null, + "category": [ + "Recreation", + "Gyms and Fitness Centers" + ], + "category_id": "17018000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "o2ZQBgYwrvw9EJ2wXy922WK0Q3XdvVzYQEmRZ", + "logo_url": "https://plaid-merchant-logos.plaid.com/planet_fitness_760.png", + "name": "Planet Fitness", + "phone_number": null, + "type": "merchant", + "website": "planetfitness.com" + } + ], + "date": "2023-06-01", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": "30 Gibbs Ct", + "city": "Middletown", + "country": null, + "lat": null, + "lon": null, + "postal_code": "10940", + "region": "NY", + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/planet_fitness_760.png", + "merchant_entity_id": "o2ZQBgYwrvw9EJ2wXy922WK0Q3XdvVzYQEmRZ", + "merchant_name": "Planet Fitness", + "name": "Planet Fitness", + "original_description": "0123 PLANET FITNESS", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "PERSONAL_CARE_GYMS_AND_FITNESS_CENTERS", + "primary": "PERSONAL_CARE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_PERSONAL_CARE.png", + "transaction_code": null, + "transaction_id": "6RrvP8d6aQt8RdaEAwWkFbyzzgPP97C8DX3z5", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "planetfitness.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 83.91, + "authorized_date": "2023-06-01", + "authorized_datetime": null, + "category": [ + "Shops", + "Supermarkets and Groceries" + ], + "category_id": "19047000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "a1wEv51o8g7QQEbN2o9NRa3np6AXn0qZ2ZdL9", + "logo_url": "https://plaid-merchant-logos.plaid.com/hellofresh_479.png", + "name": "HelloFresh", + "phone_number": null, + "type": "merchant", + "website": "hellofresh.com" + } + ], + "date": "2023-06-01", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": "NY", + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/hellofresh_479.png", + "merchant_entity_id": "a1wEv51o8g7QQEbN2o9NRa3np6AXn0qZ2ZdL9", + "merchant_name": "HelloFresh", + "name": "HELLOFRESH", + "original_description": "HELLOFRESH 012-012-0123 NY", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "FOOD_AND_DRINK_GROCERIES", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "XyXrM5BG47fmPpGD7694U6qAAZzzGgfbKnEDr", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "hellofresh.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 12.02, + "authorized_date": "2023-06-01", + "authorized_datetime": null, + "category": [ + "Shops", + "Supermarkets and Groceries" + ], + "category_id": "19047000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "LOW", + "entity_id": null, + "logo_url": null, + "name": "Market", + "phone_number": null, + "type": "merchant", + "website": null + } + ], + "date": "2023-06-06", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": "Market", + "name": "World Market", + "original_description": "World Market", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "FOOD_AND_DRINK_GROCERIES", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "DPZBW5VqgbFP764zbpqmSvj11GMM5ef3WaQZl", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 614.78, + "authorized_date": "2023-06-01", + "authorized_datetime": null, + "category": [ + "Shops", + "Furniture and Home Decor" + ], + "category_id": "19027000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "LOW", + "entity_id": null, + "logo_url": null, + "name": "Bobs Discount Furniture", + "phone_number": null, + "type": "merchant", + "website": null + } + ], + "date": "2023-06-03", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": "Bobs Discount Furniture", + "name": "BOBS DISCOUNT FURNITURE #...0123", + "original_description": "BOBS DISCOUNT FURNITURE #...0123", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "HOME_IMPROVEMENT_FURNITURE", + "primary": "HOME_IMPROVEMENT" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_HOME_IMPROVEMENT.png", + "transaction_code": null, + "transaction_id": "VbRqQ5rLdPcn6RqVP4QdsXJzzleeDkt9gPdDb", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 31.78, + "authorized_date": "2023-06-02", + "authorized_datetime": null, + "category": [ + "Shops", + "Supermarkets and Groceries" + ], + "category_id": "19047000", + "check_number": null, + "counterparties": [], + "date": "2023-06-03", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "NEW SEASONS MARKET", + "original_description": "NEW SEASONS MARKET", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "GENERAL_MERCHANDISE_OTHER_GENERAL_MERCHANDISE", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "wWnqpjJldatQbrvJydjETKPyygzzwbfPZoVQg", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 26.25, + "authorized_date": "2023-06-03", + "authorized_datetime": null, + "category": [ + "Food and Drink", + "Restaurants", + "Coffee Shop" + ], + "category_id": "13005043", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "NZAJQ5wYdo1W1p39X5q5gpb15OMe39pj4pJBb", + "logo_url": "https://plaid-merchant-logos.plaid.com/starbucks_956.png", + "name": "Starbucks", + "phone_number": null, + "type": "merchant", + "website": "starbucks.com" + } + ], + "date": "2023-06-04", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/starbucks_956.png", + "merchant_entity_id": "NZAJQ5wYdo1W1p39X5q5gpb15OMe39pj4pJBb", + "merchant_name": "Starbucks", + "name": "Starbucks", + "original_description": "STARBUCKS", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "FOOD_AND_DRINK_COFFEE", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "5vK5Ng6bdetkX4dDA6NbSqZWWG113dh5K7d6Z", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "starbucks.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 176.23, + "authorized_date": "2023-06-06", + "authorized_datetime": null, + "category": [ + "Shops", + "Clothing and Accessories", + "Shoe Store" + ], + "category_id": "19012003", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "EZmyWZE5WgA97R98oLM6BKoqOndNgELw0agDb", + "logo_url": "https://plaid-merchant-logos.plaid.com/foot_locker_390.png", + "name": "Foot Locker", + "phone_number": null, + "type": "merchant", + "website": "footlocker.com" + } + ], + "date": "2023-06-07", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/foot_locker_390.png", + "merchant_entity_id": "EZmyWZE5WgA97R98oLM6BKoqOndNgELw0agDb", + "merchant_name": "Foot Locker", + "name": "Foot Locker", + "original_description": "FOOT LOCKER 01234", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "GENERAL_MERCHANDISE_SPORTING_GOODS", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "JMgVz59xnlhM1pyKljkeUAXqqpPPvjcB6gJnB", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "footlocker.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 19.23, + "authorized_date": "2023-06-08", + "authorized_datetime": null, + "category": [ + "Travel", + "Airlines and Aviation Services" + ], + "category_id": "22001000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "LOW", + "entity_id": null, + "logo_url": null, + "name": "Inflt", + "phone_number": null, + "type": "merchant", + "website": null + } + ], + "date": "2023-06-10", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": "Inflt", + "name": "UA INFLT 0123456789012", + "original_description": "UA INFLT 0123456789012", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "ENTERTAINMENT_SPORTING_EVENTS_AMUSEMENT_PARKS_AND_MUSEUMS", + "primary": "ENTERTAINMENT" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_ENTERTAINMENT.png", + "transaction_code": null, + "transaction_id": "k7ZAaqkDn9IeLWvPMD3QTQmLLENNnGCL6dpmJ", + "transaction_type": "special", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 9.74, + "authorized_date": "2023-06-08", + "authorized_datetime": null, + "category": [ + "Service", + "Subscription" + ], + "category_id": "18061000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "XZAmBNLd29wbbLB49r58oD5b6y7kz5A1982j3", + "logo_url": "https://plaid-merchant-logos.plaid.com/amazon_prime_1987.png", + "name": "Amazon Prime", + "phone_number": null, + "type": "merchant", + "website": "amazon.com/amazonprime" + } + ], + "date": "2023-06-13", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": "Seattle", + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": "WA", + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/amazon_prime_1987.png", + "merchant_entity_id": "XZAmBNLd29wbbLB49r58oD5b6y7kz5A1982j3", + "merchant_name": "Amazon Prime", + "name": "Amazon Prime", + "original_description": "Amazon Prime Amzn.com/bill Wa", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "GENERAL_SERVICES_OTHER_GENERAL_SERVICES", + "primary": "GENERAL_SERVICES" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_SERVICES.png", + "transaction_code": null, + "transaction_id": "leMA4KdDbvT9Rj8aDw3ASlqzzM88Q5upod7ME", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "amazon.com/amazonprime" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 72.96, + "authorized_date": "2023-06-11", + "authorized_datetime": null, + "category": [ + "Food and Drink", + "Restaurants" + ], + "category_id": "13005000", + "check_number": null, + "counterparties": [], + "date": "2023-06-13", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "T.G.I. Friday's", + "original_description": "T.G.I. Friday's", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "GENERAL_MERCHANDISE_OTHER_GENERAL_MERCHANDISE", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "qLgAex9DKrfNjEv5oDMaFebvv6nn8zIgr7MQV", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 28.11, + "authorized_date": "2023-06-13", + "authorized_datetime": null, + "category": [ + "Shops", + "Food and Beverage Store" + ], + "category_id": "19025000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "LOW", + "entity_id": null, + "logo_url": null, + "name": "Liquors And Wines", + "phone_number": null, + "type": "merchant", + "website": null + } + ], + "date": "2023-06-13", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": "Liquors And Wines", + "name": "DANIEL LIQUORS AND WINES", + "original_description": "DANIEL LIQUORS AND WINES", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "FOOD_AND_DRINK_BEER_WINE_AND_LIQUOR", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "K18PB5Zdbqh17BVgqbRQhyollkQQR8uRpAN5n", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 81.45, + "authorized_date": "2023-06-13", + "authorized_datetime": null, + "category": [ + "Shops", + "Pets" + ], + "category_id": "19042000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "VQ102bqDQm5vp0eW7B2yOYwJLmkdbWvJporKg", + "logo_url": "https://plaid-merchant-logos.plaid.com/petco_745.png", + "name": "Petco", + "phone_number": null, + "type": "merchant", + "website": "petco.com" + } + ], + "date": "2023-06-13", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/petco_745.png", + "merchant_entity_id": "VQ102bqDQm5vp0eW7B2yOYwJLmkdbWvJporKg", + "merchant_name": "Petco", + "name": "Petco", + "original_description": "Petco", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "GENERAL_MERCHANDISE_PET_SUPPLIES", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "rp8wQd9Drzc7XxVRZbBNsbxWWzZZ4eC7J6MGp", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "petco.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 1.53, + "authorized_date": "2023-06-13", + "authorized_datetime": null, + "category": [ + "Food and Drink", + "Restaurants", + "Fast Food" + ], + "category_id": "13005032", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "9dgV151n418qNVjVLer6JQVrj5YnwgQ7dqVbM", + "logo_url": "https://plaid-merchant-logos.plaid.com/pizza_hut_758.png", + "name": "Pizza Hut", + "phone_number": null, + "type": "merchant", + "website": "pizzahut.com" + } + ], + "date": "2023-06-13", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/pizza_hut_758.png", + "merchant_entity_id": "9dgV151n418qNVjVLer6JQVrj5YnwgQ7dqVbM", + "merchant_name": "Pizza Hut", + "name": "Pizza Hut", + "original_description": "PIZZA HUT 012345", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "FOOD_AND_DRINK_FAST_FOOD", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "zkyz8Q9rNPCXgWQeyj9pIeqZZj77v5IlNLmee", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "pizzahut.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 225.66, + "authorized_date": "2023-06-11", + "authorized_datetime": null, + "category": [ + "Food and Drink", + "Restaurants" + ], + "category_id": "13005000", + "check_number": null, + "counterparties": [], + "date": "2023-06-11", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "STOCKX", + "original_description": "STOCKX", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "GENERAL_MERCHANDISE_OTHER_GENERAL_MERCHANDISE", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "B4ek869ZpGC41mDnjvVxuBdaaEllzJF4M8jka", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 98.65, + "authorized_date": "2023-06-11", + "authorized_datetime": null, + "category": [ + "Shops", + "Supermarkets and Groceries" + ], + "category_id": "19047000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "Wwj2nkj2Ez5b4mVQzWmy8Q0a8YA0LwEaojdZV", + "logo_url": "https://plaid-merchant-logos.plaid.com/albertsons_34.png", + "name": "Albertsons", + "phone_number": null, + "type": "merchant", + "website": "albertsons.com" + } + ], + "date": "2023-06-11", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/albertsons_34.png", + "merchant_entity_id": "Wwj2nkj2Ez5b4mVQzWmy8Q0a8YA0LwEaojdZV", + "merchant_name": "Albertsons", + "name": "Albertsons", + "original_description": "ALBERTSONS 0123", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "FOOD_AND_DRINK_GROCERIES", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "3ylJapdb3jf8nK3A1z7JF3jnnVggW4uZlnRW5", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "albertsons.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 20.07, + "authorized_date": "2023-06-11", + "authorized_datetime": null, + "category": [ + "Shops" + ], + "category_id": "19000000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "LOW", + "entity_id": null, + "logo_url": null, + "name": "The Disney Store", + "phone_number": null, + "type": "merchant", + "website": null + } + ], + "date": "2023-06-16", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": "012" + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": "The Disney Store", + "name": "Disney Store", + "original_description": "THE DISNEY STORE #012", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "GENERAL_MERCHANDISE_OTHER_GENERAL_MERCHANDISE", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "xAbKo75qa4um5aZ8zndpUMdXX6qql3f64VBQW", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 431.42, + "authorized_date": "2023-06-11", + "authorized_datetime": null, + "category": [ + "Shops", + "Computers and Electronics" + ], + "category_id": "19013000", + "check_number": null, + "counterparties": [], + "date": "2023-06-16", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "Best Buy", + "original_description": "BESTBUYCOM012345678901", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "GENERAL_MERCHANDISE_OTHER_GENERAL_MERCHANDISE", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "dx4ZK58XoWCvbXVZlNgaC9Rggo11KMcJEQaX5", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 11.24, + "authorized_date": "2023-06-11", + "authorized_datetime": null, + "category": [ + "Service", + "Security and Safety" + ], + "category_id": "18057000", + "check_number": null, + "counterparties": [], + "date": "2023-06-16", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "SIMPLISAFE.COM", + "original_description": "SIMPLISAFE.COM", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "HOME_IMPROVEMENT_SECURITY", + "primary": "HOME_IMPROVEMENT" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_HOME_IMPROVEMENT.png", + "transaction_code": null, + "transaction_id": "azx7A59X1gc5orV6dPw3soqNNDmmL5SZ5Q3Xj", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 13.23, + "authorized_date": "2023-06-13", + "authorized_datetime": null, + "category": [ + "Food and Drink", + "Restaurants" + ], + "category_id": "13005000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "O5rrn0EJj31bKQKRJAQO5yRJv2Wn7zyp8BA8b", + "logo_url": "https://plaid-merchant-logos.plaid.com/sonic_926.png", + "name": "Sonic Drive-In", + "phone_number": null, + "type": "merchant", + "website": "sonicdrivein.com" + } + ], + "date": "2023-06-16", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/sonic_926.png", + "merchant_entity_id": "O5rrn0EJj31bKQKRJAQO5yRJv2Wn7zyp8BA8b", + "merchant_name": "Sonic Drive-In", + "name": "Sonic", + "original_description": "Sonic Drive-In", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "HIGH", + "detailed": "FOOD_AND_DRINK_FAST_FOOD", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "49qZ4oGbx7T873XDoebnFmlMMvGGjRTJbAMmj", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "sonicdrivein.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 25.08, + "authorized_date": "2023-06-11", + "authorized_datetime": null, + "category": [ + "Travel", + "Gas Stations" + ], + "category_id": "22009000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "BVQanABKyYJ9z2agOMKOV2gzJnXKavm10ajjg", + "logo_url": "https://plaid-merchant-logos.plaid.com/wawa_1104.png", + "name": "Wawa", + "phone_number": null, + "type": "merchant", + "website": "wawa.com" + } + ], + "date": "2023-06-15", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/wawa_1104.png", + "merchant_entity_id": "BVQanABKyYJ9z2agOMKOV2gzJnXKavm10ajjg", + "merchant_name": "Wawa", + "name": "Wawa", + "original_description": "WAWA 0123", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "TRANSPORTATION_GAS", + "primary": "TRANSPORTATION" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_TRANSPORTATION.png", + "transaction_code": null, + "transaction_id": "NokPd5gNlzfoV1byzGkls7JyypwwrZiy65KVR", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "wawa.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 152.23, + "authorized_date": "2023-06-11", + "authorized_datetime": null, + "category": [ + "Shops", + "Computers and Electronics" + ], + "category_id": "19013000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "05V8a0gZmq8Jk1B7V0nJNvvQEBYZa6r4jd3pm", + "logo_url": "https://plaid-merchant-logos.plaid.com/apple_65.png", + "name": "Apple Store", + "phone_number": null, + "type": "merchant", + "website": "apple.com" + } + ], + "date": "2023-06-15", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/apple_65.png", + "merchant_entity_id": "05V8a0gZmq8Jk1B7V0nJNvvQEBYZa6r4jd3pm", + "merchant_name": "Apple Store", + "name": "APPLE ONLINE STORE", + "original_description": "APL*APPLE ONLINE STORE", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": "Apple", + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "GENERAL_MERCHANDISE_ELECTRONICS", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "P8n745oWK3cnXKyW31x9slDNNpggzduo6WvK3", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "apple.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 32.51, + "authorized_date": "2023-06-13", + "authorized_datetime": null, + "category": [ + "Shops", + "Supermarkets and Groceries" + ], + "category_id": "19047000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "LOW", + "entity_id": null, + "logo_url": null, + "name": "T\u0026t Supermarket", + "phone_number": null, + "type": "merchant", + "website": null + } + ], + "date": "2023-06-15", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": "012" + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": "T\u0026t Supermarket", + "name": "T\u0026T SUPERMARKET #012", + "original_description": "T\u0026T SUPERMARKET #012", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "FOOD_AND_DRINK_GROCERIES", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "jjQ7dlP5GyCbNavw7rzpty4wwADDdEu6WLA9J", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 18.75, + "authorized_date": "2023-06-13", + "authorized_datetime": null, + "category": [ + "Food and Drink", + "Restaurants", + "Coffee Shop" + ], + "category_id": "13005043", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "NZAJQ5wYdo1W1p39X5q5gpb15OMe39pj4pJBb", + "logo_url": "https://plaid-merchant-logos.plaid.com/starbucks_956.png", + "name": "Starbucks", + "phone_number": null, + "type": "merchant", + "website": "starbucks.com" + } + ], + "date": "2023-06-15", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": "WA", + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/starbucks_956.png", + "merchant_entity_id": "NZAJQ5wYdo1W1p39X5q5gpb15OMe39pj4pJBb", + "merchant_name": "Starbucks", + "name": "Starbucks", + "original_description": "STARBUCKS 012-012-0123 WA", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "FOOD_AND_DRINK_COFFEE", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "76zXjElb4Zt8RL4DAzM9F9Z77ByyVrcdJnp3R", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "starbucks.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 33.05, + "authorized_date": "2023-06-11", + "authorized_datetime": null, + "category": [ + "Service", + "Shipping and Freight" + ], + "category_id": "18058000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "VXWv7m925jyzYNrE3z0ep8Y838k7wab2qqY5Y", + "logo_url": "https://plaid-merchant-logos.plaid.com/ups_1072.png", + "name": "UPS", + "phone_number": null, + "type": "merchant", + "website": "ups.com" + } + ], + "date": "2023-06-14", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/ups_1072.png", + "merchant_entity_id": "VXWv7m925jyzYNrE3z0ep8Y838k7wab2qqY5Y", + "merchant_name": "UPS", + "name": "UPS", + "original_description": "THE UPS STORE 0123", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "GENERAL_SERVICES_POSTAGE_AND_SHIPPING", + "primary": "GENERAL_SERVICES" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_SERVICES.png", + "transaction_code": null, + "transaction_id": "edNwr51XgAcoARVZP68vsdRKK5ZZQ3Fr95kPp", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "ups.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 7.35, + "authorized_date": "2023-06-13", + "authorized_datetime": null, + "category": [ + "Shops", + "Food and Beverage Store" + ], + "category_id": "19025000", + "check_number": null, + "counterparties": [], + "date": "2023-06-14", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "Hale and Hearty Soups", + "original_description": "HALE AND HEARTY SOUPS - *", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "GENERAL_MERCHANDISE_OTHER_GENERAL_MERCHANDISE", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "QEbZN5mMrxTnJ4XRxba9s9pPPx77Rocwm7eBJ", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 21.93, + "authorized_date": "2023-06-14", + "authorized_datetime": null, + "category": [ + "Shops", + "Supermarkets and Groceries" + ], + "category_id": "19047000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "E7j7q72DD9eNYyJRooJk60BwW81Rjd14aWqZq", + "logo_url": "https://plaid-merchant-logos.plaid.com/marianos_606.png", + "name": "Mariano's", + "phone_number": null, + "type": "merchant", + "website": "marianos.com" + } + ], + "date": "2023-06-14", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/marianos_606.png", + "merchant_entity_id": "E7j7q72DD9eNYyJRooJk60BwW81Rjd14aWqZq", + "merchant_name": "Mariano's", + "name": "Mariano's", + "original_description": "MARIANOS 012", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "FOOD_AND_DRINK_GROCERIES", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "ZvlBL5eMPQtnXDV6QrR9sReKKzJJqLfeqXlWD", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "marianos.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 14.18, + "authorized_date": "2023-06-14", + "authorized_datetime": null, + "category": [ + "Shops", + "Convenience Stores" + ], + "category_id": "19015000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "VDzYgVXKNDqR19N8oRdzd2Y9Z0wobKZ5OjLMO", + "logo_url": "https://plaid-merchant-logos.plaid.com/quickchek_797.png", + "name": "QuickChek", + "phone_number": null, + "type": "merchant", + "website": "quickchek.com" + } + ], + "date": "2023-06-14", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": "012" + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/quickchek_797.png", + "merchant_entity_id": "VDzYgVXKNDqR19N8oRdzd2Y9Z0wobKZ5OjLMO", + "merchant_name": "QuickChek", + "name": "QUICK CHEK #012", + "original_description": "QUICK CHEK #012", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "TRANSPORTATION_GAS", + "primary": "TRANSPORTATION" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_TRANSPORTATION.png", + "transaction_code": null, + "transaction_id": "MpWPx5o4yrcpZvwQrdbMuwXqqprrnxhL6PykV", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "quickchek.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 74.78, + "authorized_date": "2023-06-14", + "authorized_datetime": null, + "category": [ + "Shops", + "Sporting Goods" + ], + "category_id": "19046000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "LOW", + "entity_id": null, + "logo_url": null, + "name": "Sporting Goods", + "phone_number": null, + "type": "merchant", + "website": null + } + ], + "date": "2023-06-14", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": "Sporting Goods", + "name": "DICK'S Sporting Goods", + "original_description": "Dicks Sporting Goods", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "GENERAL_MERCHANDISE_SPORTING_GOODS", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "1bXWx1mVzNcQvyzEo34JTXVppWLLKjtpjeoVe", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 84.39, + "authorized_date": "2023-06-14", + "authorized_datetime": null, + "category": [ + "Food and Drink", + "Restaurants" + ], + "category_id": "13005000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "LOW", + "entity_id": null, + "logo_url": null, + "name": "Fitc", + "phone_number": null, + "type": "merchant", + "website": null + } + ], + "date": "2023-06-14", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": "Fitc", + "name": "Abercrombie", + "original_description": "ABERCROMBIE \u0026 FITC", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "GENERAL_MERCHANDISE_OTHER_GENERAL_MERCHANDISE", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "LLEP35oamKfLwWGzKa8mCk6NNK55v8fkjpaBa", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 26.06, + "authorized_date": "2023-06-14", + "authorized_datetime": null, + "category": [ + "Recreation", + "Arts and Entertainment" + ], + "category_id": "17001000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "MvWV6Y45JMz6qg4WwWk8YXM6dZyyAa2MrW4z1", + "logo_url": "https://plaid-merchant-logos.plaid.com/ticketmaster_1016.png", + "name": "Ticketmaster", + "phone_number": null, + "type": "merchant", + "website": "ticketmaster.com" + } + ], + "date": "2023-06-14", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": "CA", + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/ticketmaster_1016.png", + "merchant_entity_id": "MvWV6Y45JMz6qg4WwWk8YXM6dZyyAa2MrW4z1", + "merchant_name": "Ticketmaster", + "name": "Ticketmaster", + "original_description": "TM *TICKETMASTER TICKT 012-012-0123 CA", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": "Ticketmaster", + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "ENTERTAINMENT_SPORTING_EVENTS_AMUSEMENT_PARKS_AND_MUSEUMS", + "primary": "ENTERTAINMENT" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_ENTERTAINMENT.png", + "transaction_code": null, + "transaction_id": "p1oA739DqKhR4y8Xk1ZWcxJKKVWW7ZipoVnez", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "ticketmaster.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 6.67, + "authorized_date": "2023-06-14", + "authorized_datetime": null, + "category": [ + "Food and Drink", + "Restaurants", + "Fast Food" + ], + "category_id": "13005032", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "vzWXDWBjB06j5BJoD3Jo84OJZg7JJzmqOZA22", + "logo_url": "https://plaid-merchant-logos.plaid.com/mcdonalds_619.png", + "name": "McDonald's", + "phone_number": null, + "type": "merchant", + "website": "mcdonalds.com" + } + ], + "date": "2023-06-14", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": "01234" + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/mcdonalds_619.png", + "merchant_entity_id": "vzWXDWBjB06j5BJoD3Jo84OJZg7JJzmqOZA22", + "merchant_name": "McDonald's", + "name": "McDonald's", + "original_description": "MCDONALD'S #01234", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "FOOD_AND_DRINK_FAST_FOOD", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "oMpyjB9Dlqhb4v8gkyn6tbzBB6EEDdCoq7yAV", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "mcdonalds.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 52.5, + "authorized_date": "2023-06-14", + "authorized_datetime": null, + "category": [ + "Food and Drink", + "Restaurants" + ], + "category_id": "13005000", + "check_number": null, + "counterparties": [], + "date": "2023-06-14", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "RITUAL EFW", + "original_description": "RITUAL EFW", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "GENERAL_MERCHANDISE_OTHER_GENERAL_MERCHANDISE", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "g4j7B5kXEnCwdLV7NzQPHV5ZZnpprotE8n19N", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 23.33, + "authorized_date": "2023-06-14", + "authorized_datetime": null, + "category": [ + "Shops", + "Clothing and Accessories", + "Shoe Store" + ], + "category_id": "19012003", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "ENww3prEqejkVDpkym889gnLk36YaQAkbgOZR", + "logo_url": "https://plaid-merchant-logos.plaid.com/nike_679.png", + "name": "Nike", + "phone_number": null, + "type": "merchant", + "website": "nike.com" + } + ], + "date": "2023-06-14", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/nike_679.png", + "merchant_entity_id": "ENww3prEqejkVDpkym889gnLk36YaQAkbgOZR", + "merchant_name": "Nike", + "name": "NIKE.COM OR", + "original_description": "NIKE.COM 012-012-0123 OR", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "GENERAL_MERCHANDISE_SPORTING_GOODS", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "8lBZ7kqmNMflM6N1rBb8udzKKnBB1JFW3Lm5p", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "nike.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 34.41, + "authorized_date": "2023-06-14", + "authorized_datetime": null, + "category": [ + "Shops", + "Supermarkets and Groceries" + ], + "category_id": "19047000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "Wdo7YbLQR7rXEgVJ6rDoL2EOQgzZXNqd1Zo6n", + "logo_url": "https://plaid-merchant-logos.plaid.com/tops_1033.png", + "name": "Tops", + "phone_number": null, + "type": "merchant", + "website": "topsmarkets.com" + } + ], + "date": "2023-06-19", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": "012" + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/tops_1033.png", + "merchant_entity_id": "Wdo7YbLQR7rXEgVJ6rDoL2EOQgzZXNqd1Zo6n", + "merchant_name": "Tops", + "name": "Tops Friendly Markets", + "original_description": "TOPS MARKETS #012", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "FOOD_AND_DRINK_GROCERIES", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "EjM3A5vK8mCjLea1GE3mCyoggWNNGBu4xklzx", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "topsmarkets.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 34.54, + "authorized_date": "2023-06-18", + "authorized_datetime": null, + "category": [ + "Shops", + "Supermarkets and Groceries" + ], + "category_id": "19047000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "AndorbmbMKgjOazDKwrVBAVqp889Wvy1AEJ0B", + "logo_url": "https://plaid-merchant-logos.plaid.com/heb_466.png", + "name": "H-E-B", + "phone_number": null, + "type": "merchant", + "website": "heb.com" + } + ], + "date": "2023-06-19", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": "012" + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/heb_466.png", + "merchant_entity_id": "AndorbmbMKgjOazDKwrVBAVqp889Wvy1AEJ0B", + "merchant_name": "H-E-B", + "name": "H-E-B", + "original_description": "H-E-B #012", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "FOOD_AND_DRINK_GROCERIES", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "Wm6kZ5zMajudb4XV6nyafB8wwGZZoAF6Z1Exz", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "heb.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 20.24, + "authorized_date": "2023-06-19", + "authorized_datetime": null, + "category": [ + "Shops", + "Supermarkets and Groceries" + ], + "category_id": "19047000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "95bAk9jYLq644z7grLky2qaWpBNZ80Z0eOoJD", + "logo_url": "https://plaid-merchant-logos.plaid.com/publix_787.png", + "name": "Publix", + "phone_number": null, + "type": "merchant", + "website": "publix.com" + } + ], + "date": "2023-06-19", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": "600 N University Dr", + "city": "Pembroke Pines", + "country": null, + "lat": 26.013664, + "lon": -80.251823, + "postal_code": "33024", + "region": "FL", + "store_number": "012" + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/publix_787.png", + "merchant_entity_id": "95bAk9jYLq644z7grLky2qaWpBNZ80Z0eOoJD", + "merchant_name": "Publix", + "name": "Publix", + "original_description": "PUBLIX #012", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "FOOD_AND_DRINK_GROCERIES", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "Aa7KgRpVLAhamWlkAvD3s8DaaWmmjwC9rAPMQ", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "publix.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 12.62, + "authorized_date": "2023-06-14", + "authorized_datetime": null, + "category": [ + "Food and Drink", + "Restaurants", + "Coffee Shop" + ], + "category_id": "13005043", + "check_number": null, + "counterparties": [], + "date": "2023-06-17", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": "01234" + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "PEETS # 01234", + "original_description": "PEETS # 01234", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "GENERAL_MERCHANDISE_OTHER_GENERAL_MERCHANDISE", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "GeLdq5ozW9Te8Jd4MGvPT84yyAddeaC6MP3w4", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 113.75, + "authorized_date": "2023-06-18", + "authorized_datetime": null, + "category": [ + "Shops", + "Department Stores" + ], + "category_id": "19018000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "bN0wJ6wvppDz375EzNJNQv9bBODam4qWOrE3k", + "logo_url": "https://plaid-merchant-logos.plaid.com/nordstrom_684.png", + "name": "Nordstrom", + "phone_number": null, + "type": "merchant", + "website": "nordstrom.com" + } + ], + "date": "2023-06-18", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": "0123" + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/nordstrom_684.png", + "merchant_entity_id": "bN0wJ6wvppDz375EzNJNQv9bBODam4qWOrE3k", + "merchant_name": "Nordstrom", + "name": "Nordstrom", + "original_description": "NORDSTROM #0123", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "GENERAL_MERCHANDISE_DEPARTMENT_STORES", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "nZLAPzwDylibQdva8jeDtG1776wwRjFAlWbDy", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "nordstrom.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 8.75, + "authorized_date": "2023-06-18", + "authorized_datetime": null, + "category": [ + "Travel", + "Parking" + ], + "category_id": "22013000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "AypeXeN8WKnmvm7RAowe0a0Xr9b47dANe0MLk", + "logo_url": "https://plaid-merchant-logos.plaid.com/laz_parking_570.png", + "name": "LAZ Parking", + "phone_number": null, + "type": "merchant", + "website": "lazparking.com" + } + ], + "date": "2023-06-18", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/laz_parking_570.png", + "merchant_entity_id": "AypeXeN8WKnmvm7RAowe0a0Xr9b47dANe0MLk", + "merchant_name": "LAZ Parking", + "name": "LAZ PARKING 012345", + "original_description": "LAZ PARKING 012345", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "TRANSPORTATION_PARKING", + "primary": "TRANSPORTATION" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_TRANSPORTATION.png", + "transaction_code": null, + "transaction_id": "bBdylJgXLku1ryVNQ9XehxR995ppjZimbZqP5", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "lazparking.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 200.25, + "authorized_date": "2023-06-18", + "authorized_datetime": null, + "category": [ + "Travel", + "Rail" + ], + "category_id": "22015000", + "check_number": null, + "counterparties": [], + "date": "2023-06-18", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "Amtrak", + "original_description": "AMTRAK .COM 0123456789012", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "ENTERTAINMENT_SPORTING_EVENTS_AMUSEMENT_PARKS_AND_MUSEUMS", + "primary": "ENTERTAINMENT" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_ENTERTAINMENT.png", + "transaction_code": null, + "transaction_id": "mQ1ANkbDmRfb4yvJ6npMt6LKKoeeADfgydJkE", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 1.69, + "authorized_date": "2023-06-18", + "authorized_datetime": null, + "category": [ + "Food and Drink", + "Restaurants", + "Coffee Shop" + ], + "category_id": "13005043", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "NZAJQ5wYdo1W1p39X5q5gpb15OMe39pj4pJBb", + "logo_url": "https://plaid-merchant-logos.plaid.com/starbucks_956.png", + "name": "Starbucks", + "phone_number": null, + "type": "merchant", + "website": "starbucks.com" + } + ], + "date": "2023-06-18", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/starbucks_956.png", + "merchant_entity_id": "NZAJQ5wYdo1W1p39X5q5gpb15OMe39pj4pJBb", + "merchant_name": "Starbucks", + "name": "Starbucks", + "original_description": "STARBUCKS #01234#", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "FOOD_AND_DRINK_COFFEE", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "yGmrge5K4NFpDQweBL4yuPMpp711gzC46XAMa", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "starbucks.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 7.5, + "authorized_date": "2023-06-18", + "authorized_datetime": null, + "category": [ + "Food and Drink", + "Restaurants", + "Coffee Shop" + ], + "category_id": "13005043", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "NZAJQ5wYdo1W1p39X5q5gpb15OMe39pj4pJBb", + "logo_url": "https://plaid-merchant-logos.plaid.com/starbucks_956.png", + "name": "Starbucks", + "phone_number": null, + "type": "merchant", + "website": "starbucks.com" + } + ], + "date": "2023-06-18", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": "WA", + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/starbucks_956.png", + "merchant_entity_id": "NZAJQ5wYdo1W1p39X5q5gpb15OMe39pj4pJBb", + "merchant_name": "Starbucks", + "name": "Starbucks", + "original_description": "Starbucks 012-012-0123 Wa", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "FOOD_AND_DRINK_COFFEE", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "9q36eAK7P1iqGMPbA34yUAZPPn66Gyc4xQDBG", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "starbucks.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 8.75, + "authorized_date": "2023-06-18", + "authorized_datetime": null, + "category": [ + "Food and Drink", + "Restaurants", + "Fast Food" + ], + "category_id": "13005032", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "vzWXDWBjB06j5BJoD3Jo84OJZg7JJzmqOZA22", + "logo_url": "https://plaid-merchant-logos.plaid.com/mcdonalds_619.png", + "name": "McDonald's", + "phone_number": null, + "type": "merchant", + "website": "mcdonalds.com" + } + ], + "date": "2023-06-18", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": "FL", + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/mcdonalds_619.png", + "merchant_entity_id": "vzWXDWBjB06j5BJoD3Jo84OJZg7JJzmqOZA22", + "merchant_name": "McDonald's", + "name": "McDonald's", + "original_description": "MCDONALD'S M0123 OF FL", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "FOOD_AND_DRINK_FAST_FOOD", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "vEGlLPADxdT7rVvMKoxpsbo447mmVMCq6kRJx", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "mcdonalds.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 4.49, + "authorized_date": "2023-06-18", + "authorized_datetime": null, + "category": [ + "Shops", + "Clothing and Accessories" + ], + "category_id": "19012000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "5Q8Z246OYvabv1ayDv4wK5m8BJkWZMeZQe4K7", + "logo_url": "https://plaid-merchant-logos.plaid.com/hm_467.png", + "name": "H\u0026M", + "phone_number": null, + "type": "merchant", + "website": "hm.com" + } + ], + "date": "2023-06-18", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/hm_467.png", + "merchant_entity_id": "5Q8Z246OYvabv1ayDv4wK5m8BJkWZMeZQe4K7", + "merchant_name": "H\u0026M", + "name": "H\u0026M", + "original_description": "H\u0026M", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "GENERAL_MERCHANDISE_CLOTHING_AND_ACCESSORIES", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "RWmGP5oMzdtreRojdm9zi5wkkRDDejIapb4My", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "hm.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 27.59, + "authorized_date": "2023-06-18", + "authorized_datetime": null, + "category": [ + "Shops", + "Clothing and Accessories", + "Women's Store" + ], + "category_id": "19012001", + "check_number": null, + "counterparties": [], + "date": "2023-06-18", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "POSHMARK", + "original_description": "POSHMARK", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "GENERAL_MERCHANDISE_OTHER_GENERAL_MERCHANDISE", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "6RrvP8d6aQt8RdaEAwWkFbyzzgPP97C8DX3k5", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 54.64, + "authorized_date": "2023-06-19", + "authorized_datetime": null, + "category": [ + "Shops", + "Pets" + ], + "category_id": "19042000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "VQ102bqDQm5vp0eW7B2yOYwJLmkdbWvJporKg", + "logo_url": "https://plaid-merchant-logos.plaid.com/petco_745.png", + "name": "Petco", + "phone_number": null, + "type": "merchant", + "website": "petco.com" + } + ], + "date": "2023-06-24", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/petco_745.png", + "merchant_entity_id": "VQ102bqDQm5vp0eW7B2yOYwJLmkdbWvJporKg", + "merchant_name": "Petco", + "name": "Petco", + "original_description": "Petco", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "GENERAL_MERCHANDISE_PET_SUPPLIES", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "oMpyjB9Dlqhb4v8gkyn6tbzBB6EEDdCoq7yAP", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "petco.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 20.51, + "authorized_date": "2023-06-21", + "authorized_datetime": null, + "category": [ + "Service", + "Employment Agencies" + ], + "category_id": "18016000", + "check_number": null, + "counterparties": [], + "date": "2023-06-24", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "BT TASKRABBIT, INC", + "original_description": "BT TASKRABBIT, INC", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "GENERAL_MERCHANDISE_OTHER_GENERAL_MERCHANDISE", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "g4j7B5kXEnCwdLV7NzQPHV5ZZnpprotE8n19Z", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 12.95, + "authorized_date": "2023-06-22", + "authorized_datetime": null, + "category": [ + "Travel", + "Gas Stations" + ], + "category_id": "22009000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "dr39NnJ5V3EZ9W21yQraB82bk9Bdwo6vwO7aD", + "logo_url": "https://plaid-merchant-logos.plaid.com/sunoco_977.png", + "name": "Sunoco", + "phone_number": null, + "type": "merchant", + "website": "sunoco.com" + } + ], + "date": "2023-06-24", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/sunoco_977.png", + "merchant_entity_id": "dr39NnJ5V3EZ9W21yQraB82bk9Bdwo6vwO7aD", + "merchant_name": "Sunoco", + "name": "Sunoco", + "original_description": "SUNOCO 0123456789 QPS", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "TRANSPORTATION_GAS", + "primary": "TRANSPORTATION" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_TRANSPORTATION.png", + "transaction_code": null, + "transaction_id": "8lBZ7kqmNMflM6N1rBb8udzKKnBB1JFW3Lm5v", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "sunoco.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 5.94, + "authorized_date": "2023-06-22", + "authorized_datetime": null, + "category": [ + "Shops", + "Supermarkets and Groceries" + ], + "category_id": "19047000", + "check_number": null, + "counterparties": [], + "date": "2023-06-24", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "ROCHE BROTHERS012", + "original_description": "ROCHE BROTHERS012", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "GENERAL_MERCHANDISE_OTHER_GENERAL_MERCHANDISE", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "EjM3A5vK8mCjLea1GE3mCyoggWNNGBu4xklzj", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 58.4, + "authorized_date": "2023-06-23", + "authorized_datetime": null, + "category": [ + "Travel", + "Gas Stations" + ], + "category_id": "22009000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "8wYdwMD2rgkV7vJvKopnkp0gLRQvQjmVEgDZm", + "logo_url": "https://plaid-merchant-logos.plaid.com/racetrac_802.png", + "name": "RaceTrac", + "phone_number": null, + "type": "merchant", + "website": "racetrac.com" + } + ], + "date": "2023-06-24", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/racetrac_802.png", + "merchant_entity_id": "8wYdwMD2rgkV7vJvKopnkp0gLRQvQjmVEgDZm", + "merchant_name": "RaceTrac", + "name": "RaceTrac", + "original_description": "Racetrac", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "TRANSPORTATION_GAS", + "primary": "TRANSPORTATION" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_TRANSPORTATION.png", + "transaction_code": null, + "transaction_id": "Wm6kZ5zMajudb4XV6nyafB8wwGZZoAF6Z1Exl", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "racetrac.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 8.24, + "authorized_date": "2023-06-20", + "authorized_datetime": null, + "category": [ + "Service", + "Subscription" + ], + "category_id": "18061000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "3LEY2bJ6W1vkoaBjgVg3qBgYVEzD6p8d1dQdY", + "logo_url": "https://plaid-merchant-logos.plaid.com/netflix_675.png", + "name": "Netflix", + "phone_number": null, + "type": "merchant", + "website": "netflix.com" + } + ], + "date": "2023-06-20", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": "CA", + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/netflix_675.png", + "merchant_entity_id": "3LEY2bJ6W1vkoaBjgVg3qBgYVEzD6p8d1dQdY", + "merchant_name": "Netflix", + "name": "Netflix", + "original_description": "NETFLIX.COM NETFLIX.COM CA", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "ENTERTAINMENT_TV_AND_MOVIES", + "primary": "ENTERTAINMENT" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_ENTERTAINMENT.png", + "transaction_code": null, + "transaction_id": "Aa7KgRpVLAhamWlkAvD3s8DaaWmmjwC9rAPM9", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "netflix.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 9.89, + "authorized_date": "2023-06-20", + "authorized_datetime": null, + "category": [ + "Shops", + "Supermarkets and Groceries" + ], + "category_id": "19047000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "95bAk9jYLq644z7grLky2qaWpBNZ80Z0eOoJD", + "logo_url": "https://plaid-merchant-logos.plaid.com/publix_787.png", + "name": "Publix", + "phone_number": null, + "type": "merchant", + "website": "publix.com" + } + ], + "date": "2023-06-22", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": "600 N University Dr", + "city": "Pembroke Pines", + "country": null, + "lat": 26.013664, + "lon": -80.251823, + "postal_code": "33024", + "region": "FL", + "store_number": "012" + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/publix_787.png", + "merchant_entity_id": "95bAk9jYLq644z7grLky2qaWpBNZ80Z0eOoJD", + "merchant_name": "Publix", + "name": "Publix", + "original_description": "PUBLIX #012", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "FOOD_AND_DRINK_GROCERIES", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "GeLdq5ozW9Te8Jd4MGvPT84yyAddeaC6MP3wG", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "publix.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 1.98, + "authorized_date": "2023-06-20", + "authorized_datetime": null, + "category": [ + "Food and Drink", + "Restaurants", + "Fast Food" + ], + "category_id": "13005032", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "MezwEv82wQZEknrQkzrO7nKBW0qZXo4eL8NXL", + "logo_url": "https://plaid-merchant-logos.plaid.com/whataburger_1118.png", + "name": "Whataburger", + "phone_number": null, + "type": "merchant", + "website": "whataburger.com" + } + ], + "date": "2023-06-22", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": "1121 Waldron Rd", + "city": "Corpus Christi", + "country": null, + "lat": 27.667625, + "lon": -97.282547, + "postal_code": "78418", + "region": "TX", + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/whataburger_1118.png", + "merchant_entity_id": "MezwEv82wQZEknrQkzrO7nKBW0qZXo4eL8NXL", + "merchant_name": "Whataburger", + "name": "Whataburger", + "original_description": "WHATABURGER 0123", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "FOOD_AND_DRINK_FAST_FOOD", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "nZLAPzwDylibQdva8jeDtG1776wwRjFAlWbDK", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "whataburger.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 19.5, + "authorized_date": "2023-06-20", + "authorized_datetime": null, + "category": [ + "Shops", + "Digital Purchase" + ], + "category_id": "19019000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "5ngqyLXKYBknN8OywL79Z1qoWmyE0zKq20nz6", + "logo_url": "https://plaid-merchant-logos.plaid.com/etsy_332.png", + "name": "Etsy", + "phone_number": null, + "type": "merchant", + "website": "etsy.com" + } + ], + "date": "2023-06-22", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/etsy_332.png", + "merchant_entity_id": "5ngqyLXKYBknN8OywL79Z1qoWmyE0zKq20nz6", + "merchant_name": "Etsy", + "name": "Etsy", + "original_description": "ETSY.COM", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "GENERAL_MERCHANDISE_ONLINE_MARKETPLACES", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "bBdylJgXLku1ryVNQ9XehxR995ppjZimbZqP3", + "transaction_type": "digital", + "unofficial_currency_code": null, + "website": "etsy.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 35.21, + "authorized_date": "2023-06-21", + "authorized_datetime": null, + "category": [ + "Service", + "Veterinarians" + ], + "category_id": "18069000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "K4KL4mp2wdyW6Wp733QKagKkRQ4rrNV1zeQqE", + "logo_url": "https://plaid-merchant-logos.plaid.com/banfield_pet_hospital_90.png", + "name": "Banfield Pet Hospital", + "phone_number": null, + "type": "merchant", + "website": "banfield.com" + } + ], + "date": "2023-06-22", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/banfield_pet_hospital_90.png", + "merchant_entity_id": "K4KL4mp2wdyW6Wp733QKagKkRQ4rrNV1zeQqE", + "merchant_name": "Banfield Pet Hospital", + "name": "BANFIELD-PET*WPPAYMENT", + "original_description": "BANFIELD-PET*WPPAYMENT", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "HIGH", + "detailed": "MEDICAL_VETERINARY_SERVICES", + "primary": "MEDICAL" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_MEDICAL.png", + "transaction_code": null, + "transaction_id": "mQ1ANkbDmRfb4yvJ6npMt6LKKoeeADfgydJkP", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "banfield.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 19.97, + "authorized_date": "2023-06-22", + "authorized_datetime": null, + "category": [ + "Food and Drink", + "Restaurants" + ], + "category_id": "13005000", + "check_number": null, + "counterparties": [], + "date": "2023-06-22", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": "01234" + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "SUBWAY # 01234", + "original_description": "SUBWAY # 01234", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "FOOD_AND_DRINK_FAST_FOOD", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "yGmrge5K4NFpDQweBL4yuPMpp711gzC46XAMo", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 185.5, + "authorized_date": "2023-06-22", + "authorized_datetime": null, + "category": [ + "Shops", + "Clothing and Accessories", + "Shoe Store" + ], + "category_id": "19012003", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "EZmyWZE5WgA97R98oLM6BKoqOndNgELw0agDb", + "logo_url": "https://plaid-merchant-logos.plaid.com/foot_locker_390.png", + "name": "Foot Locker", + "phone_number": null, + "type": "merchant", + "website": "footlocker.com" + } + ], + "date": "2023-06-27", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/foot_locker_390.png", + "merchant_entity_id": "EZmyWZE5WgA97R98oLM6BKoqOndNgELw0agDb", + "merchant_name": "Foot Locker", + "name": "Foot Locker", + "original_description": "FOOT LOCKER 01234", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "GENERAL_MERCHANDISE_SPORTING_GOODS", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "9q36eAK7P1iqGMPbA34yUAZPPn66Gyc4xQDBK", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "footlocker.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 7.96, + "authorized_date": "2023-06-25", + "authorized_datetime": null, + "category": [ + "Shops", + "Digital Purchase" + ], + "category_id": "19019000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "8LVAN69qv4bO21pNgv3VEZqByB2V0MOm87mMB", + "logo_url": "https://plaid-counterparty-logos.plaid.com/google_play_120.png", + "name": "Google Play Store", + "phone_number": null, + "type": "marketplace", + "website": "play.google.com/store" + } + ], + "date": "2023-06-27", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": "Google Play Store", + "name": "YouTubePremium", + "original_description": "GOOGLE *YouTubePremium", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": "Google Wallet", + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "MEDIUM", + "detailed": "GENERAL_MERCHANDISE_OTHER_GENERAL_MERCHANDISE", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "vEGlLPADxdT7rVvMKoxpsbo447mmVMCq6kRJJ", + "transaction_type": "digital", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 4.5, + "authorized_date": "2023-06-27", + "authorized_datetime": null, + "category": [ + "Shops" + ], + "category_id": "19000000", + "check_number": null, + "counterparties": [], + "date": "2023-06-27", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "MERCARI", + "original_description": "MERCARI", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "GENERAL_MERCHANDISE_OTHER_GENERAL_MERCHANDISE", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "RWmGP5oMzdtreRojdm9zi5wkkRDDejIapb4M5", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 20.99, + "authorized_date": "2023-06-22", + "authorized_datetime": null, + "category": [ + "Service", + "Food and Beverage" + ], + "category_id": "18021000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "vrvNr4Y1JAd6gb53bNd9LY3BzdEbnbvgQVkzX", + "logo_url": "https://plaid-counterparty-logos.plaid.com/skipthedishes_205.png", + "name": "SkipTheDishes", + "phone_number": null, + "type": "marketplace", + "website": "skipthedishes.com" + } + ], + "date": "2023-06-26", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": "SkipTheDishes", + "name": "SKIPTHEDISHES.COM WINNIPEG MB", + "original_description": "SKIPTHEDISHES.COM WINNIPEG MB", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "MEDIUM", + "detailed": "FOOD_AND_DRINK_RESTAURANT", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "6RrvP8d6aQt8RdaEAwWkFbyzzgPP97C8DX3kA", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 0.77, + "authorized_date": "2023-06-23", + "authorized_datetime": null, + "category": [ + "Shops" + ], + "category_id": "19000000", + "check_number": null, + "counterparties": [], + "date": "2023-06-26", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "WWW.ALIBABA.COM", + "original_description": "WWW.ALIBABA.COM", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "ENTERTAINMENT_SPORTING_EVENTS_AMUSEMENT_PARKS_AND_MUSEUMS", + "primary": "ENTERTAINMENT" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_ENTERTAINMENT.png", + "transaction_code": null, + "transaction_id": "XyXrM5BG47fmPpGD7694U6qAAZzzGgfbKnEJz", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 15.98, + "authorized_date": "2023-06-23", + "authorized_datetime": null, + "category": [ + "Food and Drink", + "Restaurants", + "Fast Food" + ], + "category_id": "13005032", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "Ew00y0rDXn7nvvXkrWe3RQ9Y8e1Bw6pq3pwYJ", + "logo_url": "https://plaid-merchant-logos.plaid.com/panda_express_714.png", + "name": "Panda Express", + "phone_number": null, + "type": "merchant", + "website": "pandaexpress.com" + } + ], + "date": "2023-06-26", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": "0123" + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/panda_express_714.png", + "merchant_entity_id": "Ew00y0rDXn7nvvXkrWe3RQ9Y8e1Bw6pq3pwYJ", + "merchant_name": "Panda Express", + "name": "Panda Express", + "original_description": "PANDA EXPRESS #0123", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "FOOD_AND_DRINK_FAST_FOOD", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "DPZBW5VqgbFP764zbpqmSvj11GMM5ef3WaQdA", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "pandaexpress.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 207.46, + "authorized_date": "2023-06-25", + "authorized_datetime": null, + "category": [ + "Travel", + "Lodging", + "Hotels and Motels" + ], + "category_id": "22012003", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "b5JD7jwmQYwpb9raKaZbLjV8903dVXaJXm5ap", + "logo_url": "https://plaid-merchant-logos.plaid.com/airbnb_29.png", + "name": "Airbnb", + "phone_number": null, + "type": "merchant", + "website": "airbnb.com" + } + ], + "date": "2023-06-26", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/airbnb_29.png", + "merchant_entity_id": "b5JD7jwmQYwpb9raKaZbLjV8903dVXaJXm5ap", + "merchant_name": "Airbnb", + "name": "Airbnb", + "original_description": "Airbnb", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "TRAVEL_LODGING", + "primary": "TRAVEL" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_TRAVEL.png", + "transaction_code": null, + "transaction_id": "VbRqQ5rLdPcn6RqVP4QdsXJzzleeDkt9gPdl3", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "airbnb.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 71.45, + "authorized_date": "2023-06-25", + "authorized_datetime": null, + "category": [ + "Shops" + ], + "category_id": "19000000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "WEWzadX71pNknLnAZwNbdW5VnN71JdBpNO1mr", + "logo_url": "https://plaid-merchant-logos.plaid.com/aliexpress_37.png", + "name": "AliExpress", + "phone_number": null, + "type": "merchant", + "website": "aliexpress.com" + } + ], + "date": "2023-06-26", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/aliexpress_37.png", + "merchant_entity_id": "WEWzadX71pNknLnAZwNbdW5VnN71JdBpNO1mr", + "merchant_name": "AliExpress", + "name": "ALIEXPRESS.COM", + "original_description": "ALIEXPRESS.COM", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "GENERAL_MERCHANDISE_ONLINE_MARKETPLACES", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "wWnqpjJldatQbrvJydjETKPyygzzwbfPZoVMn", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "aliexpress.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 5.75, + "authorized_date": "2023-06-26", + "authorized_datetime": null, + "category": [ + "Food and Drink", + "Restaurants", + "Fast Food" + ], + "category_id": "13005032", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "DDM7W339RYJwyjZ4A7v6O9m5jVooQWMrJoaO4", + "logo_url": "https://plaid-merchant-logos.plaid.com/jimmy_johns_539.png", + "name": "Jimmy John's", + "phone_number": null, + "type": "merchant", + "website": "jimmyjohns.com" + } + ], + "date": "2023-06-26", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/jimmy_johns_539.png", + "merchant_entity_id": "DDM7W339RYJwyjZ4A7v6O9m5jVooQWMrJoaO4", + "merchant_name": "Jimmy John's", + "name": "Jimmy Johns", + "original_description": "JIMMY JOHNS - 012", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "FOOD_AND_DRINK_RESTAURANT", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "5vK5Ng6bdetkX4dDA6NbSqZWWG113dh5K7dJB", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "jimmyjohns.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 23.12, + "authorized_date": "2023-06-25", + "authorized_datetime": null, + "category": [ + "Travel", + "Gas Stations" + ], + "category_id": "22009000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "ZM4Jngp0WpL0RW228dA3EoYBbJJnADeA2jDRY", + "logo_url": "https://plaid-merchant-logos.plaid.com/texaco_1003.png", + "name": "Texaco", + "phone_number": null, + "type": "merchant", + "website": "texaco.com" + } + ], + "date": "2023-06-25", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/texaco_1003.png", + "merchant_entity_id": "ZM4Jngp0WpL0RW228dA3EoYBbJJnADeA2jDRY", + "merchant_name": "Texaco", + "name": "Texaco", + "original_description": "TEXACO 0123456", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "TRANSPORTATION_GAS", + "primary": "TRANSPORTATION" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_TRANSPORTATION.png", + "transaction_code": null, + "transaction_id": "JMgVz59xnlhM1pyKljkeUAXqqpPPvjcB6gJwR", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "texaco.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 15.42, + "authorized_date": "2023-06-25", + "authorized_datetime": null, + "category": [ + "Recreation", + "Arts and Entertainment" + ], + "category_id": "17001000", + "check_number": null, + "counterparties": [], + "date": "2023-06-25", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "THE UNDERGROUND", + "original_description": "THE UNDERGROUND", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "GENERAL_MERCHANDISE_OTHER_GENERAL_MERCHANDISE", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "k7ZAaqkDn9IeLWvPMD3QTQmLLENNnGCL6dpAN", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 32.01, + "authorized_date": "2023-06-25", + "authorized_datetime": null, + "category": [ + "Shops", + "Supermarkets and Groceries" + ], + "category_id": "19047000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "Wwj2nkj2Ez5b4mVQzWmy8Q0a8YA0LwEaojdZV", + "logo_url": "https://plaid-merchant-logos.plaid.com/albertsons_34.png", + "name": "Albertsons", + "phone_number": null, + "type": "merchant", + "website": "albertsons.com" + } + ], + "date": "2023-06-25", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/albertsons_34.png", + "merchant_entity_id": "Wwj2nkj2Ez5b4mVQzWmy8Q0a8YA0LwEaojdZV", + "merchant_name": "Albertsons", + "name": "Albertsons", + "original_description": "ALBERTSONS STORE 0123", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "FOOD_AND_DRINK_GROCERIES", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "leMA4KdDbvT9Rj8aDw3ASlqzzM88Q5upod76l", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "albertsons.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 3.26, + "authorized_date": "2023-06-25", + "authorized_datetime": null, + "category": [ + "Food and Drink", + "Restaurants", + "Fast Food" + ], + "category_id": "13005032", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "BO2OAg7nprnK6W7rBvarKXkNJ1qJWYRk7AvqZ", + "logo_url": "https://plaid-merchant-logos.plaid.com/arbys_68.png", + "name": "Arby's", + "phone_number": null, + "type": "merchant", + "website": "arbys.com" + } + ], + "date": "2023-06-25", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": "5900 W Broad St", + "city": "Richmond", + "country": null, + "lat": 37.591766, + "lon": -77.505295, + "postal_code": "23230", + "region": "VA", + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/arbys_68.png", + "merchant_entity_id": "BO2OAg7nprnK6W7rBvarKXkNJ1qJWYRk7AvqZ", + "merchant_name": "Arby's", + "name": "Arby's", + "original_description": "ARBYS 0123", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "FOOD_AND_DRINK_FAST_FOOD", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "qLgAex9DKrfNjEv5oDMaFebvv6nn8zIgr7MBZ", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "arbys.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 1.63, + "authorized_date": "2023-06-25", + "authorized_datetime": null, + "category": [ + "Food and Drink", + "Restaurants", + "Fast Food" + ], + "category_id": "13005032", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "vzWXDWBjB06j5BJoD3Jo84OJZg7JJzmqOZA22", + "logo_url": "https://plaid-merchant-logos.plaid.com/mcdonalds_619.png", + "name": "McDonald's", + "phone_number": null, + "type": "merchant", + "website": "mcdonalds.com" + } + ], + "date": "2023-06-25", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": "6729 Arlington Blvd", + "city": "Falls Church", + "country": null, + "lat": null, + "lon": null, + "postal_code": "22042", + "region": "VA", + "store_number": "0123" + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/mcdonalds_619.png", + "merchant_entity_id": "vzWXDWBjB06j5BJoD3Jo84OJZg7JJzmqOZA22", + "merchant_name": "McDonald's", + "name": "McDonald's", + "original_description": "MCDONALD'S F0123 #...0123", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "FOOD_AND_DRINK_FAST_FOOD", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "K18PB5Zdbqh17BVgqbRQhyollkQQR8uRpANra", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "mcdonalds.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 3.3, + "authorized_date": "2023-06-25", + "authorized_datetime": null, + "category": [ + "Food and Drink", + "Restaurants", + "Fast Food" + ], + "category_id": "13005032", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "1YZ03w08myRAQ0mRgMvD2EBoOb92RmBXN6nmK", + "logo_url": "https://plaid-merchant-logos.plaid.com/wendys_1114.png", + "name": "Wendy's", + "phone_number": null, + "type": "merchant", + "website": "wendys.com" + } + ], + "date": "2023-06-30", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/wendys_1114.png", + "merchant_entity_id": "1YZ03w08myRAQ0mRgMvD2EBoOb92RmBXN6nmK", + "merchant_name": "Wendy's", + "name": "Wendy's", + "original_description": "WENDY'S 012", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "FOOD_AND_DRINK_FAST_FOOD", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "rp8wQd9Drzc7XxVRZbBNsbxWWzZZ4eC7J6MNg", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "wendys.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 22.72, + "authorized_date": "2023-06-29", + "authorized_datetime": null, + "category": [ + "Service", + "Business Services" + ], + "category_id": "18008000", + "check_number": null, + "counterparties": [], + "date": "2023-06-30", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": "CA", + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "LinkedIn", + "original_description": "LINKEDIN-01234567890 LNKD.IN/BILL CA", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "GENERAL_MERCHANDISE_OTHER_GENERAL_MERCHANDISE", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "zkyz8Q9rNPCXgWQeyj9pIeqZZj77v5IlNLm6L", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 113.63, + "authorized_date": "2023-06-27", + "authorized_datetime": null, + "category": [ + "Payment", + "Rent" + ], + "category_id": "16002000", + "check_number": null, + "counterparties": [], + "date": "2023-06-29", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "RENT THE RUNWAY", + "original_description": "RENT THE RUNWAY", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "RENT_AND_UTILITIES_RENT", + "primary": "RENT_AND_UTILITIES" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_RENT_AND_UTILITIES.png", + "transaction_code": null, + "transaction_id": "B4ek869ZpGC41mDnjvVxuBdaaEllzJF4M8jVj", + "transaction_type": "special", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 14.96, + "authorized_date": "2023-06-27", + "authorized_datetime": null, + "category": [ + "Service" + ], + "category_id": "18000000", + "check_number": null, + "counterparties": [], + "date": "2023-06-29", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "PCH*INTELIUS", + "original_description": "PCH*INTELIUS 012-012-0123", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "GENERAL_MERCHANDISE_OTHER_GENERAL_MERCHANDISE", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "3ylJapdb3jf8nK3A1z7JF3jnnVggW4uZlnR5E", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 9.7, + "authorized_date": "2023-06-29", + "authorized_datetime": null, + "category": [ + "Food and Drink", + "Restaurants" + ], + "category_id": "13005000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "9MO1O44ZL381NAz2QAZpNOvjpbp8EyYpwV5qJ", + "logo_url": "https://plaid-merchant-logos.plaid.com/baskinrobbins_97.png", + "name": "Baskin-Robbins", + "phone_number": null, + "type": "merchant", + "website": "baskinrobbins.com" + } + ], + "date": "2023-06-29", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": "012345" + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/baskinrobbins_97.png", + "merchant_entity_id": "9MO1O44ZL381NAz2QAZpNOvjpbp8EyYpwV5qJ", + "merchant_name": "Baskin-Robbins", + "name": "BASKIN #012345 Q01", + "original_description": "BASKIN #012345 Q01", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "FOOD_AND_DRINK_OTHER_FOOD_AND_DRINK", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "xAbKo75qa4um5aZ8zndpUMdXX6qql3f64VBLK", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "baskinrobbins.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 6.65, + "authorized_date": "2023-06-29", + "authorized_datetime": null, + "category": [ + "Food and Drink", + "Restaurants" + ], + "category_id": "13005000", + "check_number": null, + "counterparties": [], + "date": "2023-06-29", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "Culver's", + "original_description": "Culver's", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "GENERAL_MERCHANDISE_OTHER_GENERAL_MERCHANDISE", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "dx4ZK58XoWCvbXVZlNgaC9Rggo11KMcJEQary", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 2.63, + "authorized_date": "2023-06-29", + "authorized_datetime": null, + "category": [ + "Shops", + "Food and Beverage Store" + ], + "category_id": "19025000", + "check_number": null, + "counterparties": [], + "date": "2023-06-29", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "Le Pain Quotidien", + "original_description": "LE PAIN QUOTIDIEN", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "GENERAL_MERCHANDISE_OTHER_GENERAL_MERCHANDISE", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "azx7A59X1gc5orV6dPw3soqNNDmmL5SZ5Q3VJ", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 85.86, + "authorized_date": "2023-06-29", + "authorized_datetime": null, + "category": [ + "Shops" + ], + "category_id": "19000000", + "check_number": null, + "counterparties": [], + "date": "2023-07-01", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "JET.COM", + "original_description": "JET.COM", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "GENERAL_MERCHANDISE_OTHER_GENERAL_MERCHANDISE", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "49qZ4oGbx7T873XDoebnFmlMMvGGjRTJbAM4b", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + } + ], + "has_more": true, + "modified": [], + "next_cursor": "CAESJTQ5cVo0b0dieDdUODczWERvZWJuRm1sTU12R0dqUlRKYkFNNGIiDAian63BBhDg8InkAioMCJqfrcEGEOjakKAD", + "removed": [], + "request_id": "eDXl4DF7LJCpe1a", + "transactions_update_status": "HISTORICAL_UPDATE_COMPLETE" + } + recorded_at: Mon, 19 May 2025 15:34:56 GMT +- request: + method: post + uri: https://sandbox.plaid.com/transactions/sync + body: + encoding: UTF-8 + string: '{"access_token":"access-sandbox-d531d3c9-8520-43ca-9e58-5b70b79fd1d4","cursor":"CAESJTQ5cVo0b0dieDdUODczWERvZWJuRm1sTU12R0dqUlRKYkFNNGIiDAian63BBhDg8InkAioMCJqfrcEGEOjakKAD","count":100,"options":{"include_original_description":true}}' + headers: + Content-Type: + - application/json + User-Agent: + - Plaid Ruby v38.0.0 + Accept: + - application/json + Plaid-Client-Id: + - "" + Plaid-Version: + - '2020-09-14' + Plaid-Secret: + - "" + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + response: + status: + code: 200 + message: OK + headers: + Server: + - nginx + Date: + - Mon, 19 May 2025 15:34:56 GMT + Content-Type: + - application/json; charset=utf-8 + Transfer-Encoding: + - chunked + Connection: + - keep-alive + Plaid-Version: + - '2020-09-14' + Vary: + - Accept-Encoding + X-Envoy-Upstream-Service-Time: + - '377' + X-Envoy-Decorator-Operation: + - default.svc-apiv2:8080/* + Strict-Transport-Security: + - max-age=31536000; includeSubDomains; preload + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Xss-Protection: + - 1; mode=block + body: + encoding: ASCII-8BIT + string: |- + { + "accounts": [ + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "balances": { + "available": 11065.71, + "current": 1000, + "iso_currency_code": "USD", + "limit": 12200, + "unofficial_currency_code": null + }, + "holder_category": "personal", + "mask": "3053", + "name": "Test Credit Card Account", + "official_name": "Plaid credit card", + "subtype": "credit card", + "type": "credit" + } + ], + "added": [ + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 7.49, + "authorized_date": "2023-07-01", + "authorized_datetime": null, + "category": [ + "Service", + "Entertainment" + ], + "category_id": "18018000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "O4L6j76bqmBv8vN2W2mdnmVYd7R30gDyvRdBy", + "logo_url": "https://plaid-merchant-logos.plaid.com/amazon_prime_video_47.png", + "name": "Amazon Prime Video", + "phone_number": null, + "type": "merchant", + "website": "primevideo.com" + } + ], + "date": "2023-07-01", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/amazon_prime_video_47.png", + "merchant_entity_id": "O4L6j76bqmBv8vN2W2mdnmVYd7R30gDyvRdBy", + "merchant_name": "Amazon Prime Video", + "name": "Prime Video #...0123", + "original_description": "Prime Video #...0123", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "ENTERTAINMENT_TV_AND_MOVIES", + "primary": "ENTERTAINMENT" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_ENTERTAINMENT.png", + "transaction_code": null, + "transaction_id": "NokPd5gNlzfoV1byzGkls7JyypwwrZiy65KkJ", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "primevideo.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 102.86, + "authorized_date": "2023-07-01", + "authorized_datetime": null, + "category": [ + "Shops", + "Digital Purchase" + ], + "category_id": "19019000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "2gOwmq9qK56K60oDm3eLrREV2B2mVadkRn8MW", + "logo_url": "https://plaid-merchant-logos.plaid.com/amazon_44.png", + "name": "Amazon", + "phone_number": null, + "type": "merchant", + "website": "amazon.com" + } + ], + "date": "2023-07-01", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/amazon_44.png", + "merchant_entity_id": "2gOwmq9qK56K60oDm3eLrREV2B2mVadkRn8MW", + "merchant_name": "Amazon", + "name": "Amazon.com Amzn.com/billWA", + "original_description": "Amazon.com Amzn.com/billWA", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "GENERAL_MERCHANDISE_ONLINE_MARKETPLACES", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "P8n745oWK3cnXKyW31x9slDNNpggzduo6WvVP", + "transaction_type": "digital", + "unofficial_currency_code": null, + "website": "amazon.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 22.01, + "authorized_date": "2023-07-01", + "authorized_datetime": null, + "category": [ + "Travel", + "Gas Stations" + ], + "category_id": "22009000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "gKVEwLow3LyK4qbbvKn6oLvBmXXLA0y79YBBz", + "logo_url": "https://plaid-merchant-logos.plaid.com/loves_travel_stops_590.png", + "name": "Love's Travel Stops", + "phone_number": null, + "type": "merchant", + "website": "loves.com" + } + ], + "date": "2023-07-01", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/loves_travel_stops_590.png", + "merchant_entity_id": "gKVEwLow3LyK4qbbvKn6oLvBmXXLA0y79YBBz", + "merchant_name": "Love's Travel Stops", + "name": "LOVE S TRAVEL 01234567", + "original_description": "LOVE S TRAVEL 01234567", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "TRANSPORTATION_GAS", + "primary": "TRANSPORTATION" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_TRANSPORTATION.png", + "transaction_code": null, + "transaction_id": "jjQ7dlP5GyCbNavw7rzpty4wwADDdEu6WLAl3", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "loves.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 951.93, + "authorized_date": "2023-07-01", + "authorized_datetime": null, + "category": [ + "Travel", + "Airlines and Aviation Services" + ], + "category_id": "22001000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "Mr9Rp0VN9KeeNR8XgKgMMm7N0L69JA9zwWogp", + "logo_url": "https://plaid-merchant-logos.plaid.com/southwest_929.png", + "name": "Southwest", + "phone_number": null, + "type": "merchant", + "website": "southwest.com" + } + ], + "date": "2023-07-01", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": "TX", + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/southwest_929.png", + "merchant_entity_id": "Mr9Rp0VN9KeeNR8XgKgMMm7N0L69JA9zwWogp", + "merchant_name": "Southwest", + "name": "SOUTHWES 0123456789012345-012-0123", + "original_description": "SOUTHWES 0123456789012345-012-0123 TX", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "HIGH", + "detailed": "TRAVEL_FLIGHTS", + "primary": "TRAVEL" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_TRAVEL.png", + "transaction_code": null, + "transaction_id": "76zXjElb4Zt8RL4DAzM9F9Z77ByyVrcdJnpr9", + "transaction_type": "special", + "unofficial_currency_code": null, + "website": "southwest.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 3.57, + "authorized_date": "2023-06-29", + "authorized_datetime": null, + "category": [ + "Shops", + "Pharmacies" + ], + "category_id": "19043000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "qkd60geNmo8qMV0wAXbL3yYbqdnoY4ezwbe1R", + "logo_url": "https://plaid-merchant-logos.plaid.com/cvs_264.png", + "name": "CVS", + "phone_number": null, + "type": "merchant", + "website": "cvs.com" + } + ], + "date": "2023-07-02", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/cvs_264.png", + "merchant_entity_id": "qkd60geNmo8qMV0wAXbL3yYbqdnoY4ezwbe1R", + "merchant_name": "CVS", + "name": "CVS", + "original_description": "CVS", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "MEDICAL_PHARMACIES_AND_SUPPLEMENTS", + "primary": "MEDICAL" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_MEDICAL.png", + "transaction_code": null, + "transaction_id": "edNwr51XgAcoARVZP68vsdRKK5ZZQ3Fr95keN", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "cvs.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 36.44, + "authorized_date": "2023-07-01", + "authorized_datetime": null, + "category": [ + "Food and Drink", + "Restaurants", + "Fast Food" + ], + "category_id": "13005032", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "1YZ03w08myRAQ0mRgMvD2EBoOb92RmBXN6nmK", + "logo_url": "https://plaid-merchant-logos.plaid.com/wendys_1114.png", + "name": "Wendy's", + "phone_number": null, + "type": "merchant", + "website": "wendys.com" + } + ], + "date": "2023-07-03", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/wendys_1114.png", + "merchant_entity_id": "1YZ03w08myRAQ0mRgMvD2EBoOb92RmBXN6nmK", + "merchant_name": "Wendy's", + "name": "Wendy's", + "original_description": "WENDYS 0123", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "FOOD_AND_DRINK_FAST_FOOD", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "QEbZN5mMrxTnJ4XRxba9s9pPPx77Rocwm7eR1", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "wendys.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 102.33, + "authorized_date": "2023-07-01", + "authorized_datetime": null, + "category": [ + "Shops", + "Supermarkets and Groceries" + ], + "category_id": "19047000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "mk9mJ322wek9V0Y565eLq210z8W97My52ABen", + "logo_url": "https://plaid-merchant-logos.plaid.com/ingles_markets_520.png", + "name": "Ingles Markets", + "phone_number": null, + "type": "merchant", + "website": "ingles-markets.com" + } + ], + "date": "2023-07-03", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": "1818 W Dixon Blvd", + "city": "Shelby", + "country": null, + "lat": 35.295883, + "lon": -81.572388, + "postal_code": "28152", + "region": "NC", + "store_number": "012" + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/ingles_markets_520.png", + "merchant_entity_id": "mk9mJ322wek9V0Y565eLq210z8W97My52ABen", + "merchant_name": "Ingles Markets", + "name": "INGLES MARKETS #012", + "original_description": "INGLES MARKETS #012", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "FOOD_AND_DRINK_GROCERIES", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "ZvlBL5eMPQtnXDV6QrR9sReKKzJJqLfeqXl9E", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "ingles-markets.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 32.9, + "authorized_date": "2023-07-03", + "authorized_datetime": null, + "category": [ + "Travel", + "Gas Stations" + ], + "category_id": "22009000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "2YqLq71Rkk4Nev2gO7Yqa9EJmdj6ZZd3X4qEK", + "logo_url": "https://plaid-merchant-logos.plaid.com/mapco_602.png", + "name": "Mapco", + "phone_number": null, + "type": "merchant", + "website": "mapcorewards.com" + } + ], + "date": "2023-07-03", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/mapco_602.png", + "merchant_entity_id": "2YqLq71Rkk4Nev2gO7Yqa9EJmdj6ZZd3X4qEK", + "merchant_name": "Mapco", + "name": "MAPCO 0123", + "original_description": "MAPCO 0123", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "TRANSPORTATION_GAS", + "primary": "TRANSPORTATION" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_TRANSPORTATION.png", + "transaction_code": null, + "transaction_id": "MpWPx5o4yrcpZvwQrdbMuwXqqprrnxhL6PyGl", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "mapcorewards.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 41.37, + "authorized_date": "2023-07-03", + "authorized_datetime": null, + "category": [ + "Service", + "Subscription" + ], + "category_id": "18061000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "ZzO1V6gJ8KbO926KrNYONbQqobXpgjWnA28nR", + "logo_url": "https://plaid-merchant-logos.plaid.com/hulu_504.png", + "name": "Hulu", + "phone_number": null, + "type": "merchant", + "website": "hulu.com" + } + ], + "date": "2023-07-03", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/hulu_504.png", + "merchant_entity_id": "ZzO1V6gJ8KbO926KrNYONbQqobXpgjWnA28nR", + "merchant_name": "Hulu", + "name": "HLU*Hulu 012345678901-U", + "original_description": "HLU*Hulu 012345678901-U", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "ENTERTAINMENT_TV_AND_MOVIES", + "primary": "ENTERTAINMENT" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_ENTERTAINMENT.png", + "transaction_code": null, + "transaction_id": "1bXWx1mVzNcQvyzEo34JTXVppWLLKjtpjeoE7", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "hulu.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 78.26, + "authorized_date": "2023-07-03", + "authorized_datetime": null, + "category": [ + "Shops", + "Supermarkets and Groceries" + ], + "category_id": "19047000", + "check_number": null, + "counterparties": [], + "date": "2023-07-03", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "IMPERFECT PRODUCE", + "original_description": "IMPERFECT PRODUCE", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "FOOD_AND_DRINK_GROCERIES", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "LLEP35oamKfLwWGzKa8mCk6NNK55v8fkjpadM", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 47.91, + "authorized_date": "2023-07-01", + "authorized_datetime": null, + "category": [ + "Shops", + "Food and Beverage Store" + ], + "category_id": "19025000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "656BY2adOd1wBK04aLJB5krrrqAOmkk515vQ7", + "logo_url": "https://plaid-merchant-logos.plaid.com/beverage_depot_1684.png", + "name": "Beverage Depot", + "phone_number": null, + "type": "merchant", + "website": "beveragedepot.biz" + } + ], + "date": "2023-07-05", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": "5100 Dempster St", + "city": "Skokie", + "country": null, + "lat": 42.04108, + "lon": -87.755203, + "postal_code": "60077", + "region": "IL", + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/beverage_depot_1684.png", + "merchant_entity_id": "656BY2adOd1wBK04aLJB5krrrqAOmkk515vQ7", + "merchant_name": "Beverage Depot", + "name": "BINNYS BEVERAGE DEPOT 01", + "original_description": "BINNYS BEVERAGE DEPOT 01", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "HIGH", + "detailed": "FOOD_AND_DRINK_BEER_WINE_AND_LIQUOR", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "p1oA739DqKhR4y8Xk1ZWcxJKKVWW7ZipoVn8d", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "beveragedepot.biz" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 54.46, + "authorized_date": "2023-07-03", + "authorized_datetime": null, + "category": [ + "Shops", + "Supermarkets and Groceries" + ], + "category_id": "19047000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "LOW", + "entity_id": null, + "logo_url": null, + "name": "T\u0026t Supermarket", + "phone_number": null, + "type": "merchant", + "website": null + } + ], + "date": "2023-07-05", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": "012" + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": "T\u0026t Supermarket", + "name": "T\u0026T SUPERMARKET #012", + "original_description": "T\u0026T SUPERMARKET #012", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "FOOD_AND_DRINK_GROCERIES", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "oMpyjB9Dlqhb4v8gkyn6tbzBB6EEDdCoq7yGP", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 23.44, + "authorized_date": "2023-07-03", + "authorized_datetime": null, + "category": [ + "Shops", + "Pets" + ], + "category_id": "19042000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "VQ102bqDQm5vp0eW7B2yOYwJLmkdbWvJporKg", + "logo_url": "https://plaid-merchant-logos.plaid.com/petco_745.png", + "name": "Petco", + "phone_number": null, + "type": "merchant", + "website": "petco.com" + } + ], + "date": "2023-07-05", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/petco_745.png", + "merchant_entity_id": "VQ102bqDQm5vp0eW7B2yOYwJLmkdbWvJporKg", + "merchant_name": "Petco", + "name": "PETCO 012 01234567", + "original_description": "PETCO 012 01234567", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "GENERAL_MERCHANDISE_PET_SUPPLIES", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "g4j7B5kXEnCwdLV7NzQPHV5ZZnpprotE8n1dZ", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "petco.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 173.25, + "authorized_date": "2023-07-05", + "authorized_datetime": null, + "category": [ + "Service", + "Subscription" + ], + "category_id": "18061000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "XZAmBNLd29wbbLB49r58oD5b6y7kz5A1982j3", + "logo_url": "https://plaid-merchant-logos.plaid.com/amazon_prime_1987.png", + "name": "Amazon Prime", + "phone_number": null, + "type": "merchant", + "website": "amazon.com/amazonprime" + } + ], + "date": "2023-07-05", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/amazon_prime_1987.png", + "merchant_entity_id": "XZAmBNLd29wbbLB49r58oD5b6y7kz5A1982j3", + "merchant_name": "Amazon Prime", + "name": "Amazon Prime", + "original_description": "AmazonPrime Membership", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "ENTERTAINMENT_TV_AND_MOVIES", + "primary": "ENTERTAINMENT" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_ENTERTAINMENT.png", + "transaction_code": null, + "transaction_id": "8lBZ7kqmNMflM6N1rBb8udzKKnBB1JFW3Lmev", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "amazon.com/amazonprime" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 15, + "authorized_date": "2023-07-05", + "authorized_datetime": null, + "category": [ + "Travel", + "Public Transportation Services" + ], + "category_id": "22014000", + "check_number": null, + "counterparties": [], + "date": "2023-07-05", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": "01th St", + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "BART-CLIPPER 01TH ST", + "original_description": "BART-CLIPPER 01TH ST", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "TRANSPORTATION_PUBLIC_TRANSIT", + "primary": "TRANSPORTATION" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_TRANSPORTATION.png", + "transaction_code": null, + "transaction_id": "EjM3A5vK8mCjLea1GE3mCyoggWNNGBu4xkl3j", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 4.7, + "authorized_date": "2023-07-05", + "authorized_datetime": null, + "category": [ + "Shops", + "Discount Stores" + ], + "category_id": "19020000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "rMKJ1dN2kL4NQarZ3oQMW9j14YpL845dDQo7R", + "logo_url": "https://plaid-merchant-logos.plaid.com/dollar_tree_289.png", + "name": "Dollar Tree", + "phone_number": null, + "type": "merchant", + "website": "dollartree.com" + } + ], + "date": "2023-07-05", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/dollar_tree_289.png", + "merchant_entity_id": "rMKJ1dN2kL4NQarZ3oQMW9j14YpL845dDQo7R", + "merchant_name": "Dollar Tree", + "name": "DOLLARTREE", + "original_description": "DOLLARTREE", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "GENERAL_MERCHANDISE_DISCOUNT_STORES", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "Wm6kZ5zMajudb4XV6nyafB8wwGZZoAF6Z1Eql", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "dollartree.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 22.54, + "authorized_date": "2023-07-05", + "authorized_datetime": null, + "category": [ + "Travel", + "Gas Stations" + ], + "category_id": "22009000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "LOW", + "entity_id": null, + "logo_url": null, + "name": "United Oil", + "phone_number": null, + "type": "merchant", + "website": null + } + ], + "date": "2023-07-05", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": "United Oil", + "name": "01 - UNITED OIL 012", + "original_description": "01 - UNITED OIL 012", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "GENERAL_MERCHANDISE_OTHER_GENERAL_MERCHANDISE", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "Aa7KgRpVLAhamWlkAvD3s8DaaWmmjwC9rAP39", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 135.8, + "authorized_date": "2023-07-01", + "authorized_datetime": null, + "category": [ + "Service" + ], + "category_id": "18000000", + "check_number": null, + "counterparties": [], + "date": "2023-07-06", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "Amway Global Independent Business Owner", + "original_description": "AMW*AMWAY ORDER", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "GENERAL_MERCHANDISE_OTHER_GENERAL_MERCHANDISE", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "GeLdq5ozW9Te8Jd4MGvPT84yyAddeaC6MP3RG", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 6.91, + "authorized_date": "2023-07-03", + "authorized_datetime": null, + "category": [ + "Food and Drink", + "Restaurants" + ], + "category_id": "13005000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "0y81d9veNWk3yL7qqoRqQE3Lg3r1062zVAXKM", + "logo_url": "https://plaid-merchant-logos.plaid.com/popeyes_768.png", + "name": "Popeyes", + "phone_number": null, + "type": "merchant", + "website": "popeyes.com" + } + ], + "date": "2023-07-06", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/popeyes_768.png", + "merchant_entity_id": "0y81d9veNWk3yL7qqoRqQE3Lg3r1062zVAXKM", + "merchant_name": "Popeyes", + "name": "Popeyes", + "original_description": "Popeyes Louisiana Kitchen", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "FOOD_AND_DRINK_FAST_FOOD", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "nZLAPzwDylibQdva8jeDtG1776wwRjFAlWbgK", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "popeyes.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 0.9, + "authorized_date": "2023-07-05", + "authorized_datetime": null, + "category": [ + "Food and Drink" + ], + "category_id": "13000000", + "check_number": null, + "counterparties": [], + "date": "2023-07-06", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "USA*CANTEEN", + "original_description": "USA*CANTEEN", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "FOOD_AND_DRINK_VENDING_MACHINES", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "bBdylJgXLku1ryVNQ9XehxR995ppjZimbZqr3", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 153.54, + "authorized_date": "2023-07-03", + "authorized_datetime": null, + "category": [ + "Shops", + "Warehouses and Wholesale Stores" + ], + "category_id": "19051000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "pBowAoZJMM9DKR37jvNmzM4yWBBXyMzV2rM3A", + "logo_url": "https://plaid-merchant-logos.plaid.com/costco_235.png", + "name": "Costco", + "phone_number": null, + "type": "merchant", + "website": "costco.com" + } + ], + "date": "2023-07-04", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/costco_235.png", + "merchant_entity_id": "pBowAoZJMM9DKR37jvNmzM4yWBBXyMzV2rM3A", + "merchant_name": "Costco", + "name": "Costco", + "original_description": "WWW COSTCO COM #...0123", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "GENERAL_MERCHANDISE_SUPERSTORES", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "mQ1ANkbDmRfb4yvJ6npMt6LKKoeeADfgydJ8P", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "costco.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 75, + "authorized_date": "2023-07-03", + "authorized_datetime": null, + "category": [ + "Travel", + "Public Transportation Services" + ], + "category_id": "22014000", + "check_number": null, + "counterparties": [], + "date": "2023-07-08", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "PRESTO", + "original_description": "PRESTO", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "ENTERTAINMENT_SPORTING_EVENTS_AMUSEMENT_PARKS_AND_MUSEUMS", + "primary": "ENTERTAINMENT" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_ENTERTAINMENT.png", + "transaction_code": null, + "transaction_id": "yGmrge5K4NFpDQweBL4yuPMpp711gzC46XApo", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 1.76, + "authorized_date": "2023-07-05", + "authorized_datetime": null, + "category": [ + "Food and Drink", + "Restaurants" + ], + "category_id": "13005000", + "check_number": null, + "counterparties": [], + "date": "2023-07-08", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "LIME", + "original_description": "LIME", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "GENERAL_MERCHANDISE_OTHER_GENERAL_MERCHANDISE", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "9q36eAK7P1iqGMPbA34yUAZPPn66Gyc4xQDMK", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 43.66, + "authorized_date": "2023-07-05", + "authorized_datetime": null, + "category": [ + "Food and Drink", + "Restaurants", + "Fast Food" + ], + "category_id": "13005032", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "1YZ03w08myRAQ0mRgMvD2EBoOb92RmBXN6nmK", + "logo_url": "https://plaid-merchant-logos.plaid.com/wendys_1114.png", + "name": "Wendy's", + "phone_number": null, + "type": "merchant", + "website": "wendys.com" + } + ], + "date": "2023-07-08", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": "01234" + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/wendys_1114.png", + "merchant_entity_id": "1YZ03w08myRAQ0mRgMvD2EBoOb92RmBXN6nmK", + "merchant_name": "Wendy's", + "name": "Wendy's", + "original_description": "WENDY'S #01234", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "FOOD_AND_DRINK_FAST_FOOD", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "vEGlLPADxdT7rVvMKoxpsbo447mmVMCq6kRVJ", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "wendys.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 15, + "authorized_date": "2023-07-05", + "authorized_datetime": null, + "category": [ + "Travel" + ], + "category_id": "22000000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "KAJKk5XdbJEqb6Z7DdDnAqJQyLX0OmkAZqe75", + "logo_url": "https://plaid-merchant-logos.plaid.com/expedia_336.png", + "name": "Expedia", + "phone_number": null, + "type": "merchant", + "website": "expedia.com" + } + ], + "date": "2023-07-08", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": "WA", + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/expedia_336.png", + "merchant_entity_id": "KAJKk5XdbJEqb6Z7DdDnAqJQyLX0OmkAZqe75", + "merchant_name": "Expedia", + "name": "EXPEDIA 0123456789012 EXPEDIA.COM", + "original_description": "EXPEDIA 0123456789012 EXPEDIA.COM WA", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "TRAVEL_FLIGHTS", + "primary": "TRAVEL" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_TRAVEL.png", + "transaction_code": null, + "transaction_id": "RWmGP5oMzdtreRojdm9zi5wkkRDDejIapb455", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "expedia.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 2.12, + "authorized_date": "2023-07-08", + "authorized_datetime": null, + "category": [ + "Shops", + "Supermarkets and Groceries" + ], + "category_id": "19047000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "LOW", + "entity_id": null, + "logo_url": null, + "name": "D'agostino", + "phone_number": null, + "type": "merchant", + "website": null + } + ], + "date": "2023-07-08", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": "01" + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": "D'agostino", + "name": "D'AGOSTINO #01", + "original_description": "D'AGOSTINO #01", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "GENERAL_MERCHANDISE_OTHER_GENERAL_MERCHANDISE", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "6RrvP8d6aQt8RdaEAwWkFbyzzgPP97C8DX3nA", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 264.57, + "authorized_date": "2023-07-03", + "authorized_datetime": null, + "category": [ + "Shops", + "Computers and Electronics" + ], + "category_id": "19013000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "q63vdERovbmjyQoYA6k7m6je8EzOv6ywA7Ea2", + "logo_url": "https://plaid-merchant-logos.plaid.com/best_buy_103.png", + "name": "Best Buy", + "phone_number": null, + "type": "merchant", + "website": "bestbuy.com" + } + ], + "date": "2023-07-07", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": "575 E Wetmore Rd", + "city": "Tucson", + "country": null, + "lat": 32.288181, + "lon": -110.964485, + "postal_code": "85705", + "region": "AZ", + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/best_buy_103.png", + "merchant_entity_id": "q63vdERovbmjyQoYA6k7m6je8EzOv6ywA7Ea2", + "merchant_name": "Best Buy", + "name": "Best Buy", + "original_description": "BEST BUY 0123", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "GENERAL_MERCHANDISE_ELECTRONICS", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "XyXrM5BG47fmPpGD7694U6qAAZzzGgfbKnE8z", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "bestbuy.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 2.25, + "authorized_date": "2023-07-05", + "authorized_datetime": null, + "category": [ + "Travel", + "Parking" + ], + "category_id": "22013000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "4Yj3Wn5p0yV1bzzEz455r7oOWWgNeA2DMr6Kn", + "logo_url": "https://plaid-merchant-logos.plaid.com/ace_parking_10.png", + "name": "Ace Parking", + "phone_number": null, + "type": "merchant", + "website": "aceparking.com" + } + ], + "date": "2023-07-07", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/ace_parking_10.png", + "merchant_entity_id": "4Yj3Wn5p0yV1bzzEz455r7oOWWgNeA2DMr6Kn", + "merchant_name": "Ace Parking", + "name": "Ace Parking", + "original_description": "ACE PARKING 0123", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "TRANSPORTATION_PARKING", + "primary": "TRANSPORTATION" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_TRANSPORTATION.png", + "transaction_code": null, + "transaction_id": "DPZBW5VqgbFP764zbpqmSvj11GMM5ef3WaQGA", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "aceparking.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 13.65, + "authorized_date": "2023-07-07", + "authorized_datetime": null, + "category": [ + "Shops", + "Food and Beverage Store" + ], + "category_id": "19025000", + "check_number": null, + "counterparties": [], + "date": "2023-07-07", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "MAISON KAYSER *", + "original_description": "MAISON KAYSER *", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "GENERAL_MERCHANDISE_OTHER_GENERAL_MERCHANDISE", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "VbRqQ5rLdPcn6RqVP4QdsXJzzleeDkt9gPdN3", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 15.91, + "authorized_date": "2023-07-08", + "authorized_datetime": null, + "category": [ + "Travel", + "Gas Stations" + ], + "category_id": "22009000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "kZydv7JpzqbMZYXaJXzv7dA10o9XYn2pAXe2n", + "logo_url": "https://plaid-merchant-logos.plaid.com/pilot_flying_j_756.png", + "name": "Pilot Flying J", + "phone_number": null, + "type": "merchant", + "website": "pilotflyingj.com" + } + ], + "date": "2023-07-13", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/pilot_flying_j_756.png", + "merchant_entity_id": "kZydv7JpzqbMZYXaJXzv7dA10o9XYn2pAXe2n", + "merchant_name": "Pilot Flying J", + "name": "Pilot Travel Center", + "original_description": "PILOT 01234567", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "TRANSPORTATION_GAS", + "primary": "TRANSPORTATION" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_TRANSPORTATION.png", + "transaction_code": null, + "transaction_id": "wWnqpjJldatQbrvJydjETKPyygzzwbfPZoVKn", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "pilotflyingj.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 19.5, + "authorized_date": "2023-07-08", + "authorized_datetime": null, + "category": [ + "Shops", + "Digital Purchase" + ], + "category_id": "19019000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "5ngqyLXKYBknN8OywL79Z1qoWmyE0zKq20nz6", + "logo_url": "https://plaid-merchant-logos.plaid.com/etsy_332.png", + "name": "Etsy", + "phone_number": null, + "type": "merchant", + "website": "etsy.com" + } + ], + "date": "2023-07-13", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/etsy_332.png", + "merchant_entity_id": "5ngqyLXKYBknN8OywL79Z1qoWmyE0zKq20nz6", + "merchant_name": "Etsy", + "name": "Etsy", + "original_description": "ETSY.COM", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "GENERAL_MERCHANDISE_ONLINE_MARKETPLACES", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "5vK5Ng6bdetkX4dDA6NbSqZWWG113dh5K7djB", + "transaction_type": "digital", + "unofficial_currency_code": null, + "website": "etsy.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 47.36, + "authorized_date": "2023-07-13", + "authorized_datetime": null, + "category": [ + "Shops", + "Beauty Products" + ], + "category_id": "19006000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "gO9YYkjpjQqeogAv1BRZpr64o3ZBJ9YmwyjRA", + "logo_url": "https://plaid-merchant-logos.plaid.com/sephora_884.png", + "name": "Sephora", + "phone_number": null, + "type": "merchant", + "website": "sephora.com" + } + ], + "date": "2023-07-13", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/sephora_884.png", + "merchant_entity_id": "gO9YYkjpjQqeogAv1BRZpr64o3ZBJ9YmwyjRA", + "merchant_name": "Sephora", + "name": "Sephora", + "original_description": "SEPHORA 01", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "PERSONAL_CARE_HAIR_AND_BEAUTY", + "primary": "PERSONAL_CARE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_PERSONAL_CARE.png", + "transaction_code": null, + "transaction_id": "JMgVz59xnlhM1pyKljkeUAXqqpPPvjcB6gJNR", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "sephora.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 84.91, + "authorized_date": "2023-07-08", + "authorized_datetime": null, + "category": [ + "Shops", + "Bookstores" + ], + "category_id": "19009000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "EQAqZo93r082RkKYndbM1MqNQrYAMDV9YqzDd", + "logo_url": "https://plaid-merchant-logos.plaid.com/barnes_noble_92.png", + "name": "Barnes \u0026 Noble", + "phone_number": null, + "type": "merchant", + "website": "barnesandnoble.com" + } + ], + "date": "2023-07-12", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": "0123" + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/barnes_noble_92.png", + "merchant_entity_id": "EQAqZo93r082RkKYndbM1MqNQrYAMDV9YqzDd", + "merchant_name": "Barnes \u0026 Noble", + "name": "Barnes \u0026 Noble", + "original_description": "BARNES \u0026 NOBLE #0123", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "GENERAL_MERCHANDISE_BOOKSTORES_AND_NEWSSTANDS", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "k7ZAaqkDn9IeLWvPMD3QTQmLLENNnGCL6dpRN", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "barnesandnoble.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 7.72, + "authorized_date": "2023-07-08", + "authorized_datetime": null, + "category": [ + "Travel", + "Taxi" + ], + "category_id": "22016000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "eyg8o776k0QmNgVpAmaQj4WgzW9Qzo6O51gdd", + "logo_url": "https://plaid-merchant-logos.plaid.com/uber_1060.png", + "name": "Uber", + "phone_number": null, + "type": "merchant", + "website": "uber.com" + } + ], + "date": "2023-07-12", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/uber_1060.png", + "merchant_entity_id": "eyg8o776k0QmNgVpAmaQj4WgzW9Qzo6O51gdd", + "merchant_name": "Uber", + "name": "UBER *", + "original_description": "UBER *", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "TRANSPORTATION_TAXIS_AND_RIDE_SHARES", + "primary": "TRANSPORTATION" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_TRANSPORTATION.png", + "transaction_code": null, + "transaction_id": "leMA4KdDbvT9Rj8aDw3ASlqzzM88Q5upod7Al", + "transaction_type": "special", + "unofficial_currency_code": null, + "website": "uber.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 16.94, + "authorized_date": "2023-07-09", + "authorized_datetime": null, + "category": [ + "Shops", + "Supermarkets and Groceries" + ], + "category_id": "19047000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "LOW", + "entity_id": null, + "logo_url": null, + "name": "Market", + "phone_number": null, + "type": "merchant", + "website": null + } + ], + "date": "2023-07-09", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": "Market", + "name": "CITY ACRES MARKET", + "original_description": "CITY ACRES MARKET", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "GENERAL_MERCHANDISE_OTHER_GENERAL_MERCHANDISE", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "qLgAex9DKrfNjEv5oDMaFebvv6nn8zIgr7MXZ", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 1.26, + "authorized_date": "2023-07-15", + "authorized_datetime": null, + "category": [ + "Shops", + "Supermarkets and Groceries" + ], + "category_id": "19047000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "O5W5j4dN9OR3E6ypQmjdkWZZRoXEzVMz2ByWM", + "logo_url": "https://plaid-merchant-logos.plaid.com/walmart_1100.png", + "name": "Walmart", + "phone_number": null, + "type": "merchant", + "website": "walmart.com" + } + ], + "date": "2023-07-15", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/walmart_1100.png", + "merchant_entity_id": "O5W5j4dN9OR3E6ypQmjdkWZZRoXEzVMz2ByWM", + "merchant_name": "Walmart", + "name": "Walmart", + "original_description": "Wal-Mart Super Center", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "GENERAL_MERCHANDISE_SUPERSTORES", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "K18PB5Zdbqh17BVgqbRQhyollkQQR8uRpAN3a", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "walmart.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 14.25, + "authorized_date": "2023-07-15", + "authorized_datetime": null, + "category": [ + "Food and Drink", + "Restaurants", + "Coffee Shop" + ], + "category_id": "13005043", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "DN8w6dnRAQAMzWBAdB51kDER9EQzb64jn0Jvy", + "logo_url": "https://plaid-merchant-logos.plaid.com/coffee_bean_store_222.png", + "name": "Coffee Bean Store", + "phone_number": null, + "type": "merchant", + "website": "coffeebean.com" + } + ], + "date": "2023-07-16", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/coffee_bean_store_222.png", + "merchant_entity_id": "DN8w6dnRAQAMzWBAdB51kDER9EQzb64jn0Jvy", + "merchant_name": "Coffee Bean Store", + "name": "Coffee Bean", + "original_description": "COFFEE BEAN STORE", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "HIGH", + "detailed": "FOOD_AND_DRINK_COFFEE", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "rp8wQd9Drzc7XxVRZbBNsbxWWzZZ4eC7J6MBg", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "coffeebean.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 107.16, + "authorized_date": "2023-07-15", + "authorized_datetime": null, + "category": [ + "Shops", + "Beauty Products" + ], + "category_id": "19006000", + "check_number": null, + "counterparties": [], + "date": "2023-07-16", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "MORPHE 012345", + "original_description": "MORPHE 012345", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "GENERAL_MERCHANDISE_OTHER_GENERAL_MERCHANDISE", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "zkyz8Q9rNPCXgWQeyj9pIeqZZj77v5IlNLm8L", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 1.5, + "authorized_date": "2023-07-15", + "authorized_datetime": null, + "category": [ + "Travel", + "Parking" + ], + "category_id": "22013000", + "check_number": null, + "counterparties": [], + "date": "2023-07-18", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "WEHO Street Meters", + "original_description": "WEHO Street Meters", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "ENTERTAINMENT_MUSIC_AND_AUDIO", + "primary": "ENTERTAINMENT" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_ENTERTAINMENT.png", + "transaction_code": null, + "transaction_id": "B4ek869ZpGC41mDnjvVxuBdaaEllzJF4M8jJj", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 16.21, + "authorized_date": "2023-07-18", + "authorized_datetime": null, + "category": [ + "Food and Drink", + "Restaurants", + "Fast Food" + ], + "category_id": "13005032", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "OEkMw43LJ9yzKOJqrLJyJVBY8dyYa4LqeRLLn", + "logo_url": "https://plaid-merchant-logos.plaid.com/jack_in_the_box_528.png", + "name": "Jack in the Box", + "phone_number": null, + "type": "merchant", + "website": "jackinthebox.com" + } + ], + "date": "2023-07-18", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/jack_in_the_box_528.png", + "merchant_entity_id": "OEkMw43LJ9yzKOJqrLJyJVBY8dyYa4LqeRLLn", + "merchant_name": "Jack in the Box", + "name": "Jack in the Box", + "original_description": "Jack in the Box", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "FOOD_AND_DRINK_FAST_FOOD", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "3ylJapdb3jf8nK3A1z7JF3jnnVggW4uZlnRNE", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "jackinthebox.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 9.19, + "authorized_date": "2023-07-18", + "authorized_datetime": null, + "category": [ + "Food and Drink", + "Restaurants", + "Coffee Shop" + ], + "category_id": "13005043", + "check_number": null, + "counterparties": [ + { + "confidence_level": "LOW", + "entity_id": null, + "logo_url": null, + "name": "Coffee", + "phone_number": null, + "type": "merchant", + "website": null + }, + { + "confidence_level": "VERY_HIGH", + "entity_id": "VmnapWdRwMn50bwvEaKZRKNkQXW1LvNrwdLeW", + "logo_url": "https://plaid-counterparty-logos.plaid.com/toast_182.png", + "name": "Toast", + "phone_number": null, + "type": "payment_terminal", + "website": "pos.toasttab.com" + } + ], + "date": "2023-07-18", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": "Coffee", + "name": "TST*GREGORYS COFFEE - GC*", + "original_description": "TST*GREGORYS COFFEE - GC*", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "HIGH", + "detailed": "FOOD_AND_DRINK_COFFEE", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "xAbKo75qa4um5aZ8zndpUMdXX6qql3f64VBWK", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 2.39, + "authorized_date": "2023-07-17", + "authorized_datetime": null, + "category": [ + "Shops", + "Arts and Crafts" + ], + "category_id": "19003000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "3WK3ARBMW88rayA5RvB6dp2jDjaJJgvyzZmWv", + "logo_url": "https://plaid-merchant-logos.plaid.com/hobby_lobby_486.png", + "name": "Hobby Lobby", + "phone_number": null, + "type": "merchant", + "website": "hobbylobby.com" + } + ], + "date": "2023-07-17", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/hobby_lobby_486.png", + "merchant_entity_id": "3WK3ARBMW88rayA5RvB6dp2jDjaJJgvyzZmWv", + "merchant_name": "Hobby Lobby", + "name": "Hobby Lobby", + "original_description": "Hobby Lobby", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "GENERAL_MERCHANDISE_OTHER_GENERAL_MERCHANDISE", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "dx4ZK58XoWCvbXVZlNgaC9Rggo11KMcJEQaAy", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "hobbylobby.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 2.66, + "authorized_date": "2023-07-18", + "authorized_datetime": null, + "category": [ + "Shops", + "Convenience Stores" + ], + "category_id": "19015000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "neygpr9oYBOd8MmEAg52JjoKD7LWg18MW9qA9", + "logo_url": "https://plaid-merchant-logos.plaid.com/loaf_n_jug_585.png", + "name": "Loaf 'N Jug", + "phone_number": null, + "type": "merchant", + "website": "loafnjug.com" + } + ], + "date": "2023-07-19", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": "0123" + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/loaf_n_jug_585.png", + "merchant_entity_id": "neygpr9oYBOd8MmEAg52JjoKD7LWg18MW9qA9", + "merchant_name": "Loaf 'N Jug", + "name": "LOAF N JUG #0123", + "original_description": "LOAF N JUG #0123", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "TRANSPORTATION_GAS", + "primary": "TRANSPORTATION" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_TRANSPORTATION.png", + "transaction_code": null, + "transaction_id": "azx7A59X1gc5orV6dPw3soqNNDmmL5SZ5Q3GJ", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "loafnjug.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 9, + "authorized_date": "2023-07-19", + "authorized_datetime": null, + "category": [ + "Food and Drink", + "Restaurants" + ], + "category_id": "13005000", + "check_number": null, + "counterparties": [], + "date": "2023-07-19", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "C* FOOD HALL - EMV", + "original_description": "C* FOOD HALL - EMV", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "FOOD_AND_DRINK_GROCERIES", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "49qZ4oGbx7T873XDoebnFmlMMvGGjRTJbAMEb", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 11.96, + "authorized_date": "2023-07-19", + "authorized_datetime": null, + "category": [ + "Food and Drink", + "Restaurants", + "Fast Food" + ], + "category_id": "13005032", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "Ew00y0rDXn7nvvXkrWe3RQ9Y8e1Bw6pq3pwYJ", + "logo_url": "https://plaid-merchant-logos.plaid.com/panda_express_714.png", + "name": "Panda Express", + "phone_number": null, + "type": "merchant", + "website": "pandaexpress.com" + } + ], + "date": "2023-07-19", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/panda_express_714.png", + "merchant_entity_id": "Ew00y0rDXn7nvvXkrWe3RQ9Y8e1Bw6pq3pwYJ", + "merchant_name": "Panda Express", + "name": "Panda Express", + "original_description": "Panda Express", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "FOOD_AND_DRINK_FAST_FOOD", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "NokPd5gNlzfoV1byzGkls7JyypwwrZiy65KNJ", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "pandaexpress.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 34.45, + "authorized_date": "2023-07-19", + "authorized_datetime": null, + "category": [ + "Shops", + "Clothing and Accessories", + "Shoe Store" + ], + "category_id": "19012003", + "check_number": null, + "counterparties": [], + "date": "2023-07-19", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "DSW.", + "original_description": "DSW.", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "GENERAL_MERCHANDISE_OTHER_GENERAL_MERCHANDISE", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "P8n745oWK3cnXKyW31x9slDNNpggzduo6WvmP", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 7.32, + "authorized_date": "2023-07-19", + "authorized_datetime": null, + "category": [ + "Service", + "Entertainment" + ], + "category_id": "18018000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "O4L6j76bqmBv8vN2W2mdnmVYd7R30gDyvRdBy", + "logo_url": "https://plaid-merchant-logos.plaid.com/amazon_prime_video_47.png", + "name": "Amazon Prime Video", + "phone_number": null, + "type": "merchant", + "website": "primevideo.com" + } + ], + "date": "2023-07-19", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/amazon_prime_video_47.png", + "merchant_entity_id": "O4L6j76bqmBv8vN2W2mdnmVYd7R30gDyvRdBy", + "merchant_name": "Amazon Prime Video", + "name": "Prime Video*MW*KQ*JI*", + "original_description": "Prime Video*MW*KQ*JI*", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "ENTERTAINMENT_TV_AND_MOVIES", + "primary": "ENTERTAINMENT" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_ENTERTAINMENT.png", + "transaction_code": null, + "transaction_id": "jjQ7dlP5GyCbNavw7rzpty4wwADDdEu6WLAb3", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "primevideo.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 0.94, + "authorized_date": "2023-07-19", + "authorized_datetime": null, + "category": [ + "Travel", + "Parking" + ], + "category_id": "22013000", + "check_number": null, + "counterparties": [], + "date": "2023-07-19", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "LA CITY PARKING METER", + "original_description": "LA CITY PARKING METER", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "TRANSPORTATION_PARKING", + "primary": "TRANSPORTATION" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_TRANSPORTATION.png", + "transaction_code": null, + "transaction_id": "76zXjElb4Zt8RL4DAzM9F9Z77ByyVrcdJnpV9", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 0.94, + "authorized_date": "2023-07-19", + "authorized_datetime": null, + "category": [ + "Food and Drink" + ], + "category_id": "13000000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "LOW", + "entity_id": null, + "logo_url": null, + "name": "Snack Soda Vending", + "phone_number": null, + "type": "merchant", + "website": null + } + ], + "date": "2023-07-19", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": "Snack Soda Vending", + "name": "USA*SNACK SODA VENDING", + "original_description": "USA*SNACK SODA VENDING", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "FOOD_AND_DRINK_VENDING_MACHINES", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "edNwr51XgAcoARVZP68vsdRKK5ZZQ3Fr95knN", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 78.65, + "authorized_date": "2023-07-18", + "authorized_datetime": null, + "category": [ + "Shops", + "Department Stores" + ], + "category_id": "19018000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "zwkjrQbbDQqZJRk3egOAo0XB7jnygNDJk9Vjz", + "logo_url": "https://plaid-counterparty-logos.plaid.com/paypal_76.png", + "name": "PayPal", + "phone_number": null, + "type": "payment_app", + "website": "paypal.com" + } + ], + "date": "2023-07-22", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "Macy's", + "original_description": "PAYPAL *MACY S", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": "PayPal", + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "GENERAL_MERCHANDISE_OTHER_GENERAL_MERCHANDISE", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "QEbZN5mMrxTnJ4XRxba9s9pPPx77Rocwm7eA1", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 7.49, + "authorized_date": "2023-07-19", + "authorized_datetime": null, + "category": [ + "Shops", + "Music, Video and DVD" + ], + "category_id": "19036000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "z3XzRe488pMdo7NAnL44L7rv9L550berky6mK", + "logo_url": "https://plaid-merchant-logos.plaid.com/apple_itunes_1434.png", + "name": "Apple iTunes", + "phone_number": null, + "type": "merchant", + "website": "apple.com/itunes" + } + ], + "date": "2023-07-22", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": "CA", + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/apple_itunes_1434.png", + "merchant_entity_id": "z3XzRe488pMdo7NAnL44L7rv9L550berky6mK", + "merchant_name": "Apple iTunes", + "name": "iTunes", + "original_description": "APL* ITUNES.COM/BILL 012-012-0123 CA", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": "Apple", + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "ENTERTAINMENT_MUSIC_AND_AUDIO", + "primary": "ENTERTAINMENT" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_ENTERTAINMENT.png", + "transaction_code": null, + "transaction_id": "ZvlBL5eMPQtnXDV6QrR9sReKKzJJqLfeqXlkE", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "apple.com/itunes" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 79.68, + "authorized_date": "2023-07-20", + "authorized_datetime": null, + "category": [ + "Service", + "Cable" + ], + "category_id": "18009000", + "check_number": null, + "counterparties": [], + "date": "2023-07-22", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "DIRECTV*NOW", + "original_description": "DIRECTV*NOW", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "ENTERTAINMENT_TV_AND_MOVIES", + "primary": "ENTERTAINMENT" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_ENTERTAINMENT.png", + "transaction_code": null, + "transaction_id": "MpWPx5o4yrcpZvwQrdbMuwXqqprrnxhL6PyZl", + "transaction_type": "special", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 3.57, + "authorized_date": "2023-07-20", + "authorized_datetime": null, + "category": [ + "Shops", + "Convenience Stores" + ], + "category_id": "19015000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "w32E0jpBeX97vOWgER0n2qVbzLJVm1opNMpoR", + "logo_url": "https://plaid-merchant-logos.plaid.com/7eleven_3.png", + "name": "7-Eleven", + "phone_number": null, + "type": "merchant", + "website": "7-eleven.com" + } + ], + "date": "2023-07-22", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/7eleven_3.png", + "merchant_entity_id": "w32E0jpBeX97vOWgER0n2qVbzLJVm1opNMpoR", + "merchant_name": "7-Eleven", + "name": "7-Eleven", + "original_description": "7-Eleven", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "GENERAL_MERCHANDISE_CONVENIENCE_STORES", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "1bXWx1mVzNcQvyzEo34JTXVppWLLKjtpjeov7", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "7-eleven.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 30.01, + "authorized_date": "2023-07-21", + "authorized_datetime": null, + "category": [ + "Service", + "Food and Beverage" + ], + "category_id": "18021000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "YNRJg5o2djJLv52nBA1Yn1KpL858egYVo4dpm", + "logo_url": "https://plaid-counterparty-logos.plaid.com/doordash_1.png", + "name": "DoorDash", + "phone_number": null, + "type": "marketplace", + "website": "doordash.com" + } + ], + "date": "2023-07-22", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": "DoorDash", + "name": "Wingstop", + "original_description": "DOORDASH*WINGSTOP", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "MEDIUM", + "detailed": "FOOD_AND_DRINK_RESTAURANT", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "LLEP35oamKfLwWGzKa8mCk6NNK55v8fkjpazM", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 166.16, + "authorized_date": "2023-07-22", + "authorized_datetime": null, + "category": [ + "Service", + "Cable" + ], + "category_id": "18009000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "edRWya4NWjyZqeJbjQVAB2qZakY1XvpVN023g", + "logo_url": "https://plaid-merchant-logos.plaid.com/comcast_226.png", + "name": "Comcast", + "phone_number": null, + "type": "merchant", + "website": "comcast.com" + } + ], + "date": "2023-07-22", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/comcast_226.png", + "merchant_entity_id": "edRWya4NWjyZqeJbjQVAB2qZakY1XvpVN023g", + "merchant_name": "Comcast", + "name": "Comcast", + "original_description": "COMCAST CABLE COMM", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "RENT_AND_UTILITIES_INTERNET_AND_CABLE", + "primary": "RENT_AND_UTILITIES" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_RENT_AND_UTILITIES.png", + "transaction_code": null, + "transaction_id": "p1oA739DqKhR4y8Xk1ZWcxJKKVWW7ZipoVnmd", + "transaction_type": "special", + "unofficial_currency_code": null, + "website": "comcast.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 75.86, + "authorized_date": "2023-07-22", + "authorized_datetime": null, + "category": [ + "Shops", + "Supermarkets and Groceries" + ], + "category_id": "19047000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "95bAk9jYLq644z7grLky2qaWpBNZ80Z0eOoJD", + "logo_url": "https://plaid-merchant-logos.plaid.com/publix_787.png", + "name": "Publix", + "phone_number": null, + "type": "merchant", + "website": "publix.com" + } + ], + "date": "2023-07-22", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": "7604 Highway 70 S", + "city": "Nashville", + "country": null, + "lat": 36.078503, + "lon": -86.945427, + "postal_code": "37221", + "region": "TN", + "store_number": "0123" + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/publix_787.png", + "merchant_entity_id": "95bAk9jYLq644z7grLky2qaWpBNZ80Z0eOoJD", + "merchant_name": "Publix", + "name": "Publix", + "original_description": "PUBLIX #0123", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "FOOD_AND_DRINK_GROCERIES", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "oMpyjB9Dlqhb4v8gkyn6tbzBB6EEDdCoq7ywP", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "publix.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 6.51, + "authorized_date": "2023-07-22", + "authorized_datetime": null, + "category": [ + "Shops", + "Beauty Products" + ], + "category_id": "19006000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "gO9YYkjpjQqeogAv1BRZpr64o3ZBJ9YmwyjRA", + "logo_url": "https://plaid-merchant-logos.plaid.com/sephora_884.png", + "name": "Sephora", + "phone_number": null, + "type": "merchant", + "website": "sephora.com" + } + ], + "date": "2023-07-22", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/sephora_884.png", + "merchant_entity_id": "gO9YYkjpjQqeogAv1BRZpr64o3ZBJ9YmwyjRA", + "merchant_name": "Sephora", + "name": "Sephora", + "original_description": "SEPHORA 01", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "PERSONAL_CARE_HAIR_AND_BEAUTY", + "primary": "PERSONAL_CARE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_PERSONAL_CARE.png", + "transaction_code": null, + "transaction_id": "g4j7B5kXEnCwdLV7NzQPHV5ZZnpprotE8n1kZ", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "sephora.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 9.81, + "authorized_date": "2023-07-18", + "authorized_datetime": null, + "category": [ + "Recreation", + "Arts and Entertainment" + ], + "category_id": "17001000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "LOW", + "entity_id": null, + "logo_url": null, + "name": "Tickets LLC", + "phone_number": null, + "type": "merchant", + "website": null + } + ], + "date": "2023-07-20", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": "Tickets LLC", + "name": "ATOM TICKETS, LLC", + "original_description": "ATOM TICKETS, LLC", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "ENTERTAINMENT_SPORTING_EVENTS_AMUSEMENT_PARKS_AND_MUSEUMS", + "primary": "ENTERTAINMENT" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_ENTERTAINMENT.png", + "transaction_code": null, + "transaction_id": "8lBZ7kqmNMflM6N1rBb8udzKKnBB1JFW3LmEv", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 1.13, + "authorized_date": "2023-07-18", + "authorized_datetime": null, + "category": [ + "Service", + "Automotive", + "Car Wash and Detail" + ], + "category_id": "18006004", + "check_number": null, + "counterparties": [], + "date": "2023-07-20", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "AUTO AIR \u0026 VACUUM SERVICE", + "original_description": "AUTO AIR \u0026 VACUUM SERVICE", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "GENERAL_SERVICES_AUTOMOTIVE", + "primary": "GENERAL_SERVICES" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_SERVICES.png", + "transaction_code": null, + "transaction_id": "EjM3A5vK8mCjLea1GE3mCyoggWNNGBu4xkldj", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 83.36, + "authorized_date": "2023-07-18", + "authorized_datetime": null, + "category": [ + "Shops", + "Hardware Store" + ], + "category_id": "19030000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "kVawvV6p0R25gKw3qbp4Kq7kEzDdY5RnjV7RK", + "logo_url": "https://plaid-merchant-logos.plaid.com/home_depot_491.png", + "name": "The Home Depot", + "phone_number": null, + "type": "merchant", + "website": "homedepot.com" + } + ], + "date": "2023-07-20", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": "3885 Jonesboro Rd SE", + "city": "Atlanta", + "country": null, + "lat": 33.648727, + "lon": -84.367844, + "postal_code": "30354", + "region": "GA", + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/home_depot_491.png", + "merchant_entity_id": "kVawvV6p0R25gKw3qbp4Kq7kEzDdY5RnjV7RK", + "merchant_name": "The Home Depot", + "name": "Home Depot", + "original_description": "THE HOME DEPOT 0123", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "HOME_IMPROVEMENT_HARDWARE", + "primary": "HOME_IMPROVEMENT" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_HOME_IMPROVEMENT.png", + "transaction_code": null, + "transaction_id": "Wm6kZ5zMajudb4XV6nyafB8wwGZZoAF6Z1Eal", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "homedepot.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 37.28, + "authorized_date": "2023-07-19", + "authorized_datetime": null, + "category": [ + "Shops", + "Industrial Supplies" + ], + "category_id": "19032000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "mZ0ByW5OQe4akm3nv3jXNy4Q1nwybee9v8YO8", + "logo_url": "https://plaid-merchant-logos.plaid.com/tractor_supply_1040.png", + "name": "Tractor Supply", + "phone_number": null, + "type": "merchant", + "website": "tractorsupply.com" + } + ], + "date": "2023-07-20", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": "2785 Harding Hwy", + "city": "Lima", + "country": null, + "lat": null, + "lon": null, + "postal_code": "45804", + "region": "OH", + "store_number": "0123" + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/tractor_supply_1040.png", + "merchant_entity_id": "mZ0ByW5OQe4akm3nv3jXNy4Q1nwybee9v8YO8", + "merchant_name": "Tractor Supply", + "name": "Tractor Supply", + "original_description": "TRACTOR SUPPLY CO #0123", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "GENERAL_MERCHANDISE_DEPARTMENT_STORES", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "Aa7KgRpVLAhamWlkAvD3s8DaaWmmjwC9rAPe9", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "tractorsupply.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 1.5, + "authorized_date": "2023-07-19", + "authorized_datetime": null, + "category": [ + "Travel", + "Taxi" + ], + "category_id": "22016000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "eyg8o776k0QmNgVpAmaQj4WgzW9Qzo6O51gdd", + "logo_url": "https://plaid-merchant-logos.plaid.com/uber_1060.png", + "name": "Uber", + "phone_number": null, + "type": "merchant", + "website": "uber.com" + } + ], + "date": "2023-07-20", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/uber_1060.png", + "merchant_entity_id": "eyg8o776k0QmNgVpAmaQj4WgzW9Qzo6O51gdd", + "merchant_name": "Uber", + "name": "UBER *", + "original_description": "UBER *", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "TRANSPORTATION_TAXIS_AND_RIDE_SHARES", + "primary": "TRANSPORTATION" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_TRANSPORTATION.png", + "transaction_code": null, + "transaction_id": "GeLdq5ozW9Te8Jd4MGvPT84yyAddeaC6MP3jG", + "transaction_type": "special", + "unofficial_currency_code": null, + "website": "uber.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 26.43, + "authorized_date": "2023-07-19", + "authorized_datetime": null, + "category": [ + "Travel", + "Gas Stations" + ], + "category_id": "22009000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "8y7851JXryBnkOWOjW163yqzAB01oa8k6e1g9", + "logo_url": "https://plaid-merchant-logos.plaid.com/shell_891.png", + "name": "Shell", + "phone_number": null, + "type": "merchant", + "website": "shell.com" + } + ], + "date": "2023-07-20", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/shell_891.png", + "merchant_entity_id": "8y7851JXryBnkOWOjW163yqzAB01oa8k6e1g9", + "merchant_name": "Shell", + "name": "SHELL/SHELL", + "original_description": "SHELL/SHELL", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "TRANSPORTATION_GAS", + "primary": "TRANSPORTATION" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_TRANSPORTATION.png", + "transaction_code": null, + "transaction_id": "nZLAPzwDylibQdva8jeDtG1776wwRjFAlWbmK", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "shell.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 1.13, + "authorized_date": "2023-07-20", + "authorized_datetime": null, + "category": [ + "Service", + "Personal Care" + ], + "category_id": "18045000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "LOW", + "entity_id": null, + "logo_url": null, + "name": "Laundry Waverider", + "phone_number": null, + "type": "merchant", + "website": null + } + ], + "date": "2023-07-23", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": "Laundry Waverider", + "name": "WASH LAUNDRY WAVERIDER", + "original_description": "WASH LAUNDRY WAVERIDER", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "PERSONAL_CARE_LAUNDRY_AND_DRY_CLEANING", + "primary": "PERSONAL_CARE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_PERSONAL_CARE.png", + "transaction_code": null, + "transaction_id": "bBdylJgXLku1ryVNQ9XehxR995ppjZimbZqv3", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 13.96, + "authorized_date": "2023-07-23", + "authorized_datetime": null, + "category": [ + "Shops", + "Music, Video and DVD" + ], + "category_id": "19036000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "z3XzRe488pMdo7NAnL44L7rv9L550berky6mK", + "logo_url": "https://plaid-merchant-logos.plaid.com/apple_itunes_1434.png", + "name": "Apple iTunes", + "phone_number": null, + "type": "merchant", + "website": "apple.com/itunes" + } + ], + "date": "2023-07-23", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/apple_itunes_1434.png", + "merchant_entity_id": "z3XzRe488pMdo7NAnL44L7rv9L550berky6mK", + "merchant_name": "Apple iTunes", + "name": "iTunes", + "original_description": "APL* ITUNES.COM/BILL 012-012-0123 ON", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": "Apple", + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "ENTERTAINMENT_MUSIC_AND_AUDIO", + "primary": "ENTERTAINMENT" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_ENTERTAINMENT.png", + "transaction_code": null, + "transaction_id": "mQ1ANkbDmRfb4yvJ6npMt6LKKoeeADfgydJ3P", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "apple.com/itunes" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 6.65, + "authorized_date": "2023-07-20", + "authorized_datetime": null, + "category": [ + "Food and Drink", + "Restaurants" + ], + "category_id": "13005000", + "check_number": null, + "counterparties": [], + "date": "2023-07-21", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "Culver's", + "original_description": "Culver's", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "GENERAL_MERCHANDISE_OTHER_GENERAL_MERCHANDISE", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "yGmrge5K4NFpDQweBL4yuPMpp711gzC46XAvo", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 75, + "authorized_date": "2023-07-21", + "authorized_datetime": null, + "category": [ + "Travel", + "Gas Stations" + ], + "category_id": "22009000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "8y7851JXryBnkOWOjW163yqzAB01oa8k6e1g9", + "logo_url": "https://plaid-merchant-logos.plaid.com/shell_891.png", + "name": "Shell", + "phone_number": null, + "type": "merchant", + "website": "shell.com" + } + ], + "date": "2023-07-21", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/shell_891.png", + "merchant_entity_id": "8y7851JXryBnkOWOjW163yqzAB01oa8k6e1g9", + "merchant_name": "Shell", + "name": "Shell", + "original_description": "Shell Oil", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "TRANSPORTATION_GAS", + "primary": "TRANSPORTATION" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_TRANSPORTATION.png", + "transaction_code": null, + "transaction_id": "9q36eAK7P1iqGMPbA34yUAZPPn66Gyc4xQDJK", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "shell.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 20.9, + "authorized_date": "2023-07-21", + "authorized_datetime": null, + "category": [ + "Shops", + "Supermarkets and Groceries" + ], + "category_id": "19047000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "AndorbmbMKgjOazDKwrVBAVqp889Wvy1AEJ0B", + "logo_url": "https://plaid-merchant-logos.plaid.com/heb_466.png", + "name": "H-E-B", + "phone_number": null, + "type": "merchant", + "website": "heb.com" + } + ], + "date": "2023-07-25", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": "012" + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/heb_466.png", + "merchant_entity_id": "AndorbmbMKgjOazDKwrVBAVqp889Wvy1AEJ0B", + "merchant_name": "H-E-B", + "name": "H-E-B GAS #012", + "original_description": "H-E-B GAS #012", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "FOOD_AND_DRINK_GROCERIES", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "vEGlLPADxdT7rVvMKoxpsbo447mmVMCq6kR7J", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "heb.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 17.2, + "authorized_date": "2023-07-21", + "authorized_datetime": null, + "category": [ + "Service", + "Business Services" + ], + "category_id": "18008000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "NELrAdOaJ071vgdXyE2DOOjQ978bdoKmZ0pv5", + "logo_url": "https://plaid-merchant-logos.plaid.com/aramark_67.png", + "name": "Aramark", + "phone_number": null, + "type": "merchant", + "website": "aramark.com" + }, + { + "confidence_level": "VERY_HIGH", + "entity_id": "zNKpVMQ4EpdDZek8bjpQLV6a2v6pXwo4dq38a", + "logo_url": "https://plaid-counterparty-logos.plaid.com/goldman_sachs_68.png", + "name": "Goldman Sachs", + "phone_number": null, + "type": "financial_institution", + "website": "goldmansachs.com" + } + ], + "date": "2023-07-25", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/aramark_67.png", + "merchant_entity_id": "NELrAdOaJ071vgdXyE2DOOjQ978bdoKmZ0pv5", + "merchant_name": "Aramark", + "name": "Aramark", + "original_description": "ARAMARK GOLDMAN SACHS 012", + "payment_channel": "other", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "FOOD_AND_DRINK_OTHER_FOOD_AND_DRINK", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "RWmGP5oMzdtreRojdm9zi5wkkRDDejIapb415", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "aramark.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 7.5, + "authorized_date": "2023-07-21", + "authorized_datetime": null, + "category": [ + "Food and Drink", + "Restaurants", + "Coffee Shop" + ], + "category_id": "13005043", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "NZAJQ5wYdo1W1p39X5q5gpb15OMe39pj4pJBb", + "logo_url": "https://plaid-merchant-logos.plaid.com/starbucks_956.png", + "name": "Starbucks", + "phone_number": null, + "type": "merchant", + "website": "starbucks.com" + } + ], + "date": "2023-07-25", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/starbucks_956.png", + "merchant_entity_id": "NZAJQ5wYdo1W1p39X5q5gpb15OMe39pj4pJBb", + "merchant_name": "Starbucks", + "name": "Starbucks Card", + "original_description": "STARBUCKS CARD RELOAD", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "FOOD_AND_DRINK_COFFEE", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "6RrvP8d6aQt8RdaEAwWkFbyzzgPP97C8DX3AA", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "starbucks.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 109.31, + "authorized_date": "2023-07-22", + "authorized_datetime": null, + "category": [ + "Shops", + "Office Supplies" + ], + "category_id": "19039000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "0VYn3dajBB2zowDMzemLMXDEO0O88m9Bwpj1D", + "logo_url": "https://plaid-merchant-logos.plaid.com/staples_955.png", + "name": "Staples", + "phone_number": null, + "type": "merchant", + "website": "staples.com" + } + ], + "date": "2023-07-25", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/staples_955.png", + "merchant_entity_id": "0VYn3dajBB2zowDMzemLMXDEO0O88m9Bwpj1D", + "merchant_name": "Staples", + "name": "STAPLES DIRECT", + "original_description": "STAPLES DIRECT", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "GENERAL_MERCHANDISE_OFFICE_SUPPLIES", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "oMpyjB9Dlqhb4v8gkyn6tbzBB6EEDdCoq7ywx", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "staples.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 43.28, + "authorized_date": "2023-07-22", + "authorized_datetime": null, + "category": [ + "Recreation", + "Arts and Entertainment" + ], + "category_id": "17001000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "LOW", + "entity_id": null, + "logo_url": null, + "name": "Tickets", + "phone_number": null, + "type": "merchant", + "website": null + } + ], + "date": "2023-07-26", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": "Tickets", + "name": "SeatGeek_Tickets", + "original_description": "SeatGeek_Tickets", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "ENTERTAINMENT_SPORTING_EVENTS_AMUSEMENT_PARKS_AND_MUSEUMS", + "primary": "ENTERTAINMENT" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_ENTERTAINMENT.png", + "transaction_code": null, + "transaction_id": "g4j7B5kXEnCwdLV7NzQPHV5ZZnpprotE8n1ke", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 17.18, + "authorized_date": "2023-07-26", + "authorized_datetime": null, + "category": [ + "Food and Drink", + "Restaurants" + ], + "category_id": "13005000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "VmnapWdRwMn50bwvEaKZRKNkQXW1LvNrwdLeW", + "logo_url": "https://plaid-counterparty-logos.plaid.com/toast_182.png", + "name": "Toast", + "phone_number": null, + "type": "payment_terminal", + "website": "pos.toasttab.com" + } + ], + "date": "2023-07-26", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "TST* SUNLIFE ORG", + "original_description": "TST* SUNLIFE ORG", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "MEDIUM", + "detailed": "FOOD_AND_DRINK_RESTAURANT", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "8lBZ7kqmNMflM6N1rBb8udzKKnBB1JFW3LmEk", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 5.03, + "authorized_date": "2023-07-26", + "authorized_datetime": null, + "category": [ + "Food and Drink", + "Restaurants", + "Fast Food" + ], + "category_id": "13005032", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "vzWXDWBjB06j5BJoD3Jo84OJZg7JJzmqOZA22", + "logo_url": "https://plaid-merchant-logos.plaid.com/mcdonalds_619.png", + "name": "McDonald's", + "phone_number": null, + "type": "merchant", + "website": "mcdonalds.com" + } + ], + "date": "2023-07-26", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": "012" + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/mcdonalds_619.png", + "merchant_entity_id": "vzWXDWBjB06j5BJoD3Jo84OJZg7JJzmqOZA22", + "merchant_name": "McDonald's", + "name": "McDonald's", + "original_description": "MCDONALD'S F012", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "FOOD_AND_DRINK_FAST_FOOD", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "EjM3A5vK8mCjLea1GE3mCyoggWNNGBu4xkldW", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "mcdonalds.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 19.39, + "authorized_date": "2023-07-26", + "authorized_datetime": null, + "category": [ + "Food and Drink", + "Restaurants" + ], + "category_id": "13005000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "Y5W786AN4Kr4V7d4nWLKrzngqR76VKzpOBOz4", + "logo_url": "https://plaid-merchant-logos.plaid.com/rubios_849.png", + "name": "Rubio's", + "phone_number": null, + "type": "merchant", + "website": "rubios.com" + } + ], + "date": "2023-07-26", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": "012" + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/rubios_849.png", + "merchant_entity_id": "Y5W786AN4Kr4V7d4nWLKrzngqR76VKzpOBOz4", + "merchant_name": "Rubio's", + "name": "Rubio's", + "original_description": "RUBIO'S #012", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "HIGH", + "detailed": "FOOD_AND_DRINK_RESTAURANT", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "Wm6kZ5zMajudb4XV6nyafB8wwGZZoAF6Z1EaL", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "rubios.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 64.2, + "authorized_date": "2023-07-23", + "authorized_datetime": null, + "category": [ + "Shops", + "Beauty Products" + ], + "category_id": "19006000", + "check_number": null, + "counterparties": [], + "date": "2023-07-27", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "RODANFI*LDS 0123456789", + "original_description": "RODANFI*LDS 0123456789", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "PERSONAL_CARE_HAIR_AND_BEAUTY", + "primary": "PERSONAL_CARE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_PERSONAL_CARE.png", + "transaction_code": null, + "transaction_id": "Aa7KgRpVLAhamWlkAvD3s8DaaWmmjwC9rAPKg", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 5.15, + "authorized_date": "2023-07-26", + "authorized_datetime": null, + "category": [ + "Service", + "Shipping and Freight" + ], + "category_id": "18058000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "87BE46o0VXpZ1DZMmBBnAe7q2wAKbn3kZJZq2", + "logo_url": "https://plaid-merchant-logos.plaid.com/fedex_365.png", + "name": "FedEx", + "phone_number": null, + "type": "merchant", + "website": "fedex.com" + } + ], + "date": "2023-07-27", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/fedex_365.png", + "merchant_entity_id": "87BE46o0VXpZ1DZMmBBnAe7q2wAKbn3kZJZq2", + "merchant_name": "FedEx", + "name": "FedEx", + "original_description": "FEDEXOFFICE 01234567", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "HIGH", + "detailed": "GENERAL_SERVICES_POSTAGE_AND_SHIPPING", + "primary": "GENERAL_SERVICES" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_SERVICES.png", + "transaction_code": null, + "transaction_id": "GeLdq5ozW9Te8Jd4MGvPT84yyAddeaC6MP3rm", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "fedex.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 2.63, + "authorized_date": "2023-07-26", + "authorized_datetime": null, + "category": [ + "Shops", + "Lawn and Garden" + ], + "category_id": "19054000", + "check_number": null, + "counterparties": [], + "date": "2023-07-27", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "SKIP SCOOTERS", + "original_description": "SKIP SCOOTERS", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "GENERAL_MERCHANDISE_OTHER_GENERAL_MERCHANDISE", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "nZLAPzwDylibQdva8jeDtG1776wwRjFAlWbpv", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 9.21, + "authorized_date": "2023-07-26", + "authorized_datetime": null, + "category": [ + "Food and Drink", + "Restaurants" + ], + "category_id": "13005000", + "check_number": null, + "counterparties": [], + "date": "2023-07-30", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": "0123" + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "BRUEGGERS #0123", + "original_description": "BRUEGGERS #0123", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "FOOD_AND_DRINK_OTHER_FOOD_AND_DRINK", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "bBdylJgXLku1ryVNQ9XehxR995ppjZimbZqyd", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 19.47, + "authorized_date": "2023-07-26", + "authorized_datetime": null, + "category": [ + "Shops", + "Hardware Store" + ], + "category_id": "19030000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "B5J7EM948zn5j78MK26488nL2kLD4LrzB35be", + "logo_url": "https://plaid-merchant-logos.plaid.com/harbor_freight_tools_474.png", + "name": "Harbor Freight Tools", + "phone_number": null, + "type": "merchant", + "website": "harborfreight.com" + } + ], + "date": "2023-07-30", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/harbor_freight_tools_474.png", + "merchant_entity_id": "B5J7EM948zn5j78MK26488nL2kLD4LrzB35be", + "merchant_name": "Harbor Freight Tools", + "name": "Harbor Freight Tools", + "original_description": "HARBOR FREIGHT TOOLS *", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "HOME_IMPROVEMENT_HARDWARE", + "primary": "HOME_IMPROVEMENT" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_HOME_IMPROVEMENT.png", + "transaction_code": null, + "transaction_id": "mQ1ANkbDmRfb4yvJ6npMt6LKKoeeADfgydJwn", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "harborfreight.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 45.75, + "authorized_date": "2023-07-27", + "authorized_datetime": null, + "category": [ + "Service", + "Computers", + "Software Development" + ], + "category_id": "18012002", + "check_number": null, + "counterparties": [], + "date": "2023-07-31", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "GITHUB.COM", + "original_description": "GITHUB.COM", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "GENERAL_MERCHANDISE_OTHER_GENERAL_MERCHANDISE", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "yGmrge5K4NFpDQweBL4yuPMpp711gzC46XALe", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 13.49, + "authorized_date": "2023-07-30", + "authorized_datetime": null, + "category": [ + "Food and Drink", + "Restaurants" + ], + "category_id": "13005000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "4D5V2em9D8Z660wkgKzjBJ2mop2EwbV9VwbDB", + "logo_url": "https://plaid-merchant-logos.plaid.com/tim_hortons_1022.png", + "name": "Tim Hortons", + "phone_number": null, + "type": "merchant", + "website": "timhortons.com" + } + ], + "date": "2023-08-01", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": "0123" + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/tim_hortons_1022.png", + "merchant_entity_id": "4D5V2em9D8Z660wkgKzjBJ2mop2EwbV9VwbDB", + "merchant_name": "Tim Hortons", + "name": "Tim Hortons", + "original_description": "TIM HORTONS #0123", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "FOOD_AND_DRINK_FAST_FOOD", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "9q36eAK7P1iqGMPbA34yUAZPPn66Gyc4xQDbQ", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "timhortons.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 150.41, + "authorized_date": "2023-07-30", + "authorized_datetime": null, + "category": [ + "Service", + "Subscription" + ], + "category_id": "18061000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "LOW", + "entity_id": null, + "logo_url": null, + "name": "LLC", + "phone_number": null, + "type": "merchant", + "website": null + }, + { + "confidence_level": "VERY_HIGH", + "entity_id": "KW8b0J0kX53kBAnYRV5VVnbb3WWpb17VBDra2", + "logo_url": "https://plaid-counterparty-logos.plaid.com/roku_91.png", + "name": "Roku", + "phone_number": null, + "type": "marketplace", + "website": "roku.com" + } + ], + "date": "2023-08-03", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": "LLC", + "name": "ROKU FOR HULU LLC", + "original_description": "ROKU FOR HULU LLC", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "ENTERTAINMENT_TV_AND_MOVIES", + "primary": "ENTERTAINMENT" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_ENTERTAINMENT.png", + "transaction_code": null, + "transaction_id": "vEGlLPADxdT7rVvMKoxpsbo447mmVMCq6kR4R", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 359.78, + "authorized_date": "2023-08-03", + "authorized_datetime": null, + "category": [ + "Shops", + "Furniture and Home Decor" + ], + "category_id": "19027000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "8rXDZKKrAZ0Ndo1Rg6mOWZB68B8Xo06ZLBWn7", + "logo_url": "https://plaid-merchant-logos.plaid.com/ikea_514.png", + "name": "IKEA", + "phone_number": null, + "type": "merchant", + "website": "ikea.com" + } + ], + "date": "2023-08-03", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/ikea_514.png", + "merchant_entity_id": "8rXDZKKrAZ0Ndo1Rg6mOWZB68B8Xo06ZLBWn7", + "merchant_name": "IKEA", + "name": "IKEA", + "original_description": "Ikea", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "HOME_IMPROVEMENT_FURNITURE", + "primary": "HOME_IMPROVEMENT" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_HOME_IMPROVEMENT.png", + "transaction_code": null, + "transaction_id": "RWmGP5oMzdtreRojdm9zi5wkkRDDejIapb4rA", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "ikea.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 29.61, + "authorized_date": "2023-08-03", + "authorized_datetime": null, + "category": [ + "Recreation", + "Arts and Entertainment", + "Movie Theatres" + ], + "category_id": "17001009", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "nADWWmL6e6BBZZLzvkvQn3evqKj61KrZanN1O", + "logo_url": "https://plaid-merchant-logos.plaid.com/amc_theatres_49.png", + "name": "AMC Theatres", + "phone_number": null, + "type": "merchant", + "website": "amctheatres.com" + } + ], + "date": "2023-08-04", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": "KS", + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/amc_theatres_49.png", + "merchant_entity_id": "nADWWmL6e6BBZZLzvkvQn3evqKj61KrZanN1O", + "merchant_name": "AMC Theatres", + "name": "0123 AMC ONLINE", + "original_description": "0123 AMC ONLINE 012-012-0123 KS", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "ENTERTAINMENT_TV_AND_MOVIES", + "primary": "ENTERTAINMENT" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_ENTERTAINMENT.png", + "transaction_code": null, + "transaction_id": "6RrvP8d6aQt8RdaEAwWkFbyzzgPP97C8DX3MP", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "amctheatres.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 24.96, + "authorized_date": "2023-08-03", + "authorized_datetime": null, + "category": [ + "Service", + "Employment Agencies" + ], + "category_id": "18016000", + "check_number": null, + "counterparties": [], + "date": "2023-08-06", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "BT TASKRABBIT, INC", + "original_description": "BT TASKRABBIT, INC", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "GENERAL_MERCHANDISE_OTHER_GENERAL_MERCHANDISE", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "XyXrM5BG47fmPpGD7694U6qAAZzzGgfbKnEzk", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 1371.55, + "authorized_date": "2023-08-07", + "authorized_datetime": null, + "category": [ + "Travel", + "Airlines and Aviation Services" + ], + "category_id": "22001000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "12rKN74jzw2Le21BVWZjMvjZk9J7RjB9oKKny", + "logo_url": "https://plaid-merchant-logos.plaid.com/british_airways_1547.png", + "name": "British Airways", + "phone_number": null, + "type": "merchant", + "website": "britishairways.com" + } + ], + "date": "2023-08-07", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/british_airways_1547.png", + "merchant_entity_id": "12rKN74jzw2Le21BVWZjMvjZk9J7RjB9oKKny", + "merchant_name": "British Airways", + "name": "BRITISH A 0123456789012", + "original_description": "BRITISH A 0123456789012", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "TRAVEL_FLIGHTS", + "primary": "TRAVEL" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_TRAVEL.png", + "transaction_code": null, + "transaction_id": "DPZBW5VqgbFP764zbpqmSvj11GMM5ef3WaQ9R", + "transaction_type": "special", + "unofficial_currency_code": null, + "website": "britishairways.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 13.16, + "authorized_date": "2023-08-07", + "authorized_datetime": null, + "category": [ + "Shops", + "Food and Beverage Store" + ], + "category_id": "19025000", + "check_number": null, + "counterparties": [], + "date": "2023-08-08", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "Godiva", + "original_description": "GODIVA 012", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "GENERAL_MERCHANDISE_OTHER_GENERAL_MERCHANDISE", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "VbRqQ5rLdPcn6RqVP4QdsXJzzleeDkt9gPdLg", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 10.33, + "authorized_date": "2023-08-07", + "authorized_datetime": null, + "category": [ + "Service", + "Subscription" + ], + "category_id": "18061000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "XZAmBNLd29wbbLB49r58oD5b6y7kz5A1982j3", + "logo_url": "https://plaid-merchant-logos.plaid.com/amazon_prime_1987.png", + "name": "Amazon Prime", + "phone_number": null, + "type": "merchant", + "website": "amazon.com/amazonprime" + } + ], + "date": "2023-08-08", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": "Seattle", + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": "WA", + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/amazon_prime_1987.png", + "merchant_entity_id": "XZAmBNLd29wbbLB49r58oD5b6y7kz5A1982j3", + "merchant_name": "Amazon Prime", + "name": "Amazon Prime", + "original_description": "Amazon Prime Amzn.com/bill WA", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "GENERAL_SERVICES_OTHER_GENERAL_SERVICES", + "primary": "GENERAL_SERVICES" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_SERVICES.png", + "transaction_code": null, + "transaction_id": "wWnqpjJldatQbrvJydjETKPyygzzwbfPZoVDX", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "amazon.com/amazonprime" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 47.9, + "authorized_date": "2023-08-07", + "authorized_datetime": null, + "category": [ + "Shops", + "Clothing and Accessories" + ], + "category_id": "19012000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "wY2K5ovrKVkJOaWaQbRW3Z2Lo2kZ1vV2YNLO6", + "logo_url": "https://plaid-merchant-logos.plaid.com/tj_maxx_1026.png", + "name": "TJ Maxx", + "phone_number": null, + "type": "merchant", + "website": "tjmaxx.com" + } + ], + "date": "2023-08-12", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": "567 Bullsboro Drive Newnan Xing", + "city": "Newnan", + "country": null, + "lat": null, + "lon": null, + "postal_code": "30263", + "region": "GA", + "store_number": "012" + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/tj_maxx_1026.png", + "merchant_entity_id": "wY2K5ovrKVkJOaWaQbRW3Z2Lo2kZ1vV2YNLO6", + "merchant_name": "TJ Maxx", + "name": "T.J.Maxx", + "original_description": "TJ MAXX #012", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "GENERAL_MERCHANDISE_DEPARTMENT_STORES", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "5vK5Ng6bdetkX4dDA6NbSqZWWG113dh5K7de1", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "tjmaxx.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 8.34, + "authorized_date": "2023-08-07", + "authorized_datetime": null, + "category": [ + "Shops", + "Supermarkets and Groceries" + ], + "category_id": "19047000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "O5W5j4dN9OR3E6ypQmjdkWZZRoXEzVMz2ByWM", + "logo_url": "https://plaid-merchant-logos.plaid.com/walmart_1100.png", + "name": "Walmart", + "phone_number": null, + "type": "merchant", + "website": "walmart.com" + } + ], + "date": "2023-08-11", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/walmart_1100.png", + "merchant_entity_id": "O5W5j4dN9OR3E6ypQmjdkWZZRoXEzVMz2ByWM", + "merchant_name": "Walmart", + "name": "Walmart", + "original_description": "Wal-Mart Super Center", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "GENERAL_MERCHANDISE_SUPERSTORES", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "JMgVz59xnlhM1pyKljkeUAXqqpPPvjcB6gJWL", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "walmart.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 7.54, + "authorized_date": "2023-08-09", + "authorized_datetime": null, + "category": [ + "Service", + "Food and Beverage" + ], + "category_id": "18021000", + "check_number": null, + "counterparties": [], + "date": "2023-08-11", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "*PRETAMANGER012", + "original_description": "LEVELUP*PRETAMANGER012", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": "Braintree", + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "FOOD_AND_DRINK_OTHER_FOOD_AND_DRINK", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "k7ZAaqkDn9IeLWvPMD3QTQmLLENNnGCL6dpgV", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 274.8, + "authorized_date": "2023-08-09", + "authorized_datetime": null, + "category": [ + "Shops", + "Clothing and Accessories", + "Shoe Store" + ], + "category_id": "19012003", + "check_number": null, + "counterparties": [], + "date": "2023-08-14", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "DSW.", + "original_description": "DSW.", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "GENERAL_MERCHANDISE_OTHER_GENERAL_MERCHANDISE", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "leMA4KdDbvT9Rj8aDw3ASlqzzM88Q5upod7Gy", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 34.5, + "authorized_date": "2023-08-14", + "authorized_datetime": null, + "category": [ + "Service" + ], + "category_id": "18000000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "LNOm3ZwokV0pw8oD6j2Qvg1kjLqQop0wXEKnM", + "logo_url": "https://plaid-merchant-logos.plaid.com/google_449.png", + "name": "Google Store", + "phone_number": null, + "type": "merchant", + "website": "store.google.com" + } + ], + "date": "2023-08-14", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/google_449.png", + "merchant_entity_id": "LNOm3ZwokV0pw8oD6j2Qvg1kjLqQop0wXEKnM", + "merchant_name": "Google Store", + "name": "SERVICES", + "original_description": "GOOGLE *SERVICES", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": "Google Wallet", + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "GENERAL_SERVICES_OTHER_GENERAL_SERVICES", + "primary": "GENERAL_SERVICES" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_SERVICES.png", + "transaction_code": null, + "transaction_id": "qLgAex9DKrfNjEv5oDMaFebvv6nn8zIgr7MAE", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "store.google.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 16.19, + "authorized_date": "2023-08-14", + "authorized_datetime": null, + "category": [ + "Service", + "Food and Beverage" + ], + "category_id": "18021000", + "check_number": null, + "counterparties": [], + "date": "2023-08-17", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "BITESQUAD DELIVERY", + "original_description": "BITESQUAD DELIVERY", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "FOOD_AND_DRINK_RESTAURANT", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "K18PB5Zdbqh17BVgqbRQhyollkQQR8uRpANW9", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 7.5, + "authorized_date": "2023-08-15", + "authorized_datetime": null, + "category": [ + "Shops", + "Convenience Stores" + ], + "category_id": "19015000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "B3gNWKRQ1KjaL6BRD1wJNR8EVzpQAK5LAwNbV", + "logo_url": "https://plaid-merchant-logos.plaid.com/circle_k_213.png", + "name": "Circle K", + "phone_number": null, + "type": "merchant", + "website": "circlek.com" + } + ], + "date": "2023-08-17", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/circle_k_213.png", + "merchant_entity_id": "B3gNWKRQ1KjaL6BRD1wJNR8EVzpQAK5LAwNbV", + "merchant_name": "Circle K", + "name": "Circle K", + "original_description": "CIRCLE K 01234", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "TRANSPORTATION_GAS", + "primary": "TRANSPORTATION" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_TRANSPORTATION.png", + "transaction_code": null, + "transaction_id": "rp8wQd9Drzc7XxVRZbBNsbxWWzZZ4eC7J6MqP", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "circlek.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 160.58, + "authorized_date": "2023-08-16", + "authorized_datetime": null, + "category": [ + "Shops", + "Department Stores" + ], + "category_id": "19018000", + "check_number": null, + "counterparties": [], + "date": "2023-08-17", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": "0123" + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "Nordstrom", + "original_description": "NORDSTROM-RACK #0123", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "GENERAL_MERCHANDISE_OTHER_GENERAL_MERCHANDISE", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "zkyz8Q9rNPCXgWQeyj9pIeqZZj77v5IlNLmJa", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 19.04, + "authorized_date": "2023-08-15", + "authorized_datetime": null, + "category": [ + "Service", + "Credit Counseling and Bankruptcy Services" + ], + "category_id": "18014000", + "check_number": null, + "counterparties": [], + "date": "2023-08-15", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": "CA", + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "Experian* Credit Report", + "original_description": "Experian* Credit Report 012-0123456 CA", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "GENERAL_SERVICES_ACCOUNTING_AND_FINANCIAL_PLANNING", + "primary": "GENERAL_SERVICES" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_SERVICES.png", + "transaction_code": null, + "transaction_id": "B4ek869ZpGC41mDnjvVxuBdaaEllzJF4M8j6E", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 119.07, + "authorized_date": "2023-08-15", + "authorized_datetime": null, + "category": [ + "Shops", + "Automotive", + "Car Parts and Accessories" + ], + "category_id": "19005006", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "ZMB5QNp60a6gzv3kRg11DbOnDBakqV8bmkMk5", + "logo_url": "https://plaid-merchant-logos.plaid.com/oreilly_auto_parts_693.png", + "name": "O'Reilly Auto Parts", + "phone_number": null, + "type": "merchant", + "website": "oriellyauto.com" + } + ], + "date": "2023-08-15", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/oreilly_auto_parts_693.png", + "merchant_entity_id": "ZMB5QNp60a6gzv3kRg11DbOnDBakqV8bmkMk5", + "merchant_name": "O'Reilly Auto Parts", + "name": "O'Reilly Auto Parts", + "original_description": "O'Reilly Auto Parts", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "GENERAL_SERVICES_AUTOMOTIVE", + "primary": "GENERAL_SERVICES" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_SERVICES.png", + "transaction_code": null, + "transaction_id": "3ylJapdb3jf8nK3A1z7JF3jnnVggW4uZlnRKx", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "oriellyauto.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 21, + "authorized_date": "2023-08-15", + "authorized_datetime": null, + "category": [ + "Service" + ], + "category_id": "18000000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "1VjDAKp3JvrQ2Vb5ny1yQarZM8b10Xo26eVoJ", + "logo_url": "https://plaid-merchant-logos.plaid.com/google_domains_1394.png", + "name": "Google Domains", + "phone_number": null, + "type": "merchant", + "website": "domains.google.com" + } + ], + "date": "2023-08-15", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/google_domains_1394.png", + "merchant_entity_id": "1VjDAKp3JvrQ2Vb5ny1yQarZM8b10Xo26eVoJ", + "merchant_name": "Google Domains", + "name": "Domains", + "original_description": "GOOGLE *Domains", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": "Google Wallet", + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "GENERAL_SERVICES_OTHER_GENERAL_SERVICES", + "primary": "GENERAL_SERVICES" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_SERVICES.png", + "transaction_code": null, + "transaction_id": "xAbKo75qa4um5aZ8zndpUMdXX6qql3f64VBpZ", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "domains.google.com" + } + ], + "has_more": true, + "modified": [], + "next_cursor": "CAESJXhBYktvNzVxYTR1bTVhWjh6bmRwVU1kWFg2cXFsM2Y2NFZCcFoiDAian63BBhDg8InkAioMCJqfrcEGEOjakKAD", + "removed": [], + "request_id": "9FF9Ytgv7KIysG2", + "transactions_update_status": "HISTORICAL_UPDATE_COMPLETE" + } + recorded_at: Mon, 19 May 2025 15:34:56 GMT +- request: + method: post + uri: https://sandbox.plaid.com/transactions/sync + body: + encoding: UTF-8 + string: '{"access_token":"access-sandbox-d531d3c9-8520-43ca-9e58-5b70b79fd1d4","cursor":"CAESJXhBYktvNzVxYTR1bTVhWjh6bmRwVU1kWFg2cXFsM2Y2NFZCcFoiDAian63BBhDg8InkAioMCJqfrcEGEOjakKAD","count":100,"options":{"include_original_description":true}}' + headers: + Content-Type: + - application/json + User-Agent: + - Plaid Ruby v38.0.0 + Accept: + - application/json + Plaid-Client-Id: + - "" + Plaid-Version: + - '2020-09-14' + Plaid-Secret: + - "" + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + response: + status: + code: 200 + message: OK + headers: + Server: + - nginx + Date: + - Mon, 19 May 2025 15:34:57 GMT + Content-Type: + - application/json; charset=utf-8 + Transfer-Encoding: + - chunked + Connection: + - keep-alive + Plaid-Version: + - '2020-09-14' + Vary: + - Accept-Encoding + X-Envoy-Upstream-Service-Time: + - '353' + X-Envoy-Decorator-Operation: + - default.svc-apiv2:8080/* + Strict-Transport-Security: + - max-age=31536000; includeSubDomains; preload + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Xss-Protection: + - 1; mode=block + body: + encoding: ASCII-8BIT + string: |- + { + "accounts": [ + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "balances": { + "available": 11065.71, + "current": 1000, + "iso_currency_code": "USD", + "limit": 12200, + "unofficial_currency_code": null + }, + "holder_category": "personal", + "mask": "3053", + "name": "Test Credit Card Account", + "official_name": "Plaid credit card", + "subtype": "credit card", + "type": "credit" + } + ], + "added": [ + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 48.91, + "authorized_date": "2023-08-15", + "authorized_datetime": null, + "category": [ + "Shops", + "Supermarkets and Groceries" + ], + "category_id": "19047000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "DgqEw70j77DbJqybaK2rmMq6Zzwjg68J7B7zo", + "logo_url": "https://plaid-merchant-logos.plaid.com/safeway_853.png", + "name": "Safeway", + "phone_number": null, + "type": "merchant", + "website": "safeway.com" + } + ], + "date": "2023-08-15", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/safeway_853.png", + "merchant_entity_id": "DgqEw70j77DbJqybaK2rmMq6Zzwjg68J7B7zo", + "merchant_name": "Safeway", + "name": "Safeway", + "original_description": "SAFEWAY STORE 0123", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "FOOD_AND_DRINK_GROCERIES", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "dx4ZK58XoWCvbXVZlNgaC9Rggo11KMcJEQa5d", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "safeway.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 17.61, + "authorized_date": "2023-08-15", + "authorized_datetime": null, + "category": [ + "Food and Drink", + "Restaurants", + "Fast Food" + ], + "category_id": "13005032", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "3LmdknrdwVy9vm0dqj417rLKeJXW7veV7eb2e", + "logo_url": "https://plaid-merchant-logos.plaid.com/kfc_546.png", + "name": "KFC", + "phone_number": null, + "type": "merchant", + "website": "kfc.com" + } + ], + "date": "2023-08-16", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/kfc_546.png", + "merchant_entity_id": "3LmdknrdwVy9vm0dqj417rLKeJXW7veV7eb2e", + "merchant_name": "KFC", + "name": "KFC", + "original_description": "KFC J012345", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "FOOD_AND_DRINK_FAST_FOOD", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "azx7A59X1gc5orV6dPw3soqNNDmmL5SZ5Q3lp", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "kfc.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 11.21, + "authorized_date": "2023-08-15", + "authorized_datetime": null, + "category": [ + "Shops", + "Bookstores" + ], + "category_id": "19009000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "LOW", + "entity_id": null, + "logo_url": null, + "name": "Order", + "phone_number": null, + "type": "merchant", + "website": null + } + ], + "date": "2023-08-16", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": "CA", + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": "Order", + "name": "CHEGG ORDER", + "original_description": "CHEGG ORDER 012-012-0123 CA", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "GENERAL_SERVICES_EDUCATION", + "primary": "GENERAL_SERVICES" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_SERVICES.png", + "transaction_code": null, + "transaction_id": "49qZ4oGbx7T873XDoebnFmlMMvGGjRTJbAMNg", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 11.57, + "authorized_date": "2023-08-15", + "authorized_datetime": null, + "category": [ + "Food and Drink", + "Restaurants" + ], + "category_id": "13005000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "EZ92VM3NzEaVdzq5eRB2YOb14a3OYk3gRvyZQ", + "logo_url": "https://plaid-counterparty-logos.plaid.com/uber_eats_2.png", + "name": "Uber Eats", + "phone_number": null, + "type": "marketplace", + "website": "ubereats.com" + } + ], + "date": "2023-08-16", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": "Uber Eats", + "name": "Uber Eats", + "original_description": "UBER EATS HELP.UBER.COMCA", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "FOOD_AND_DRINK_RESTAURANT", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "NokPd5gNlzfoV1byzGkls7JyypwwrZiy65KBW", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 15, + "authorized_date": "2023-08-15", + "authorized_datetime": null, + "category": [ + "Shops", + "Pets" + ], + "category_id": "19042000", + "check_number": null, + "counterparties": [], + "date": "2023-08-19", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "WAG! WALKING", + "original_description": "WAG! WALKING", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "ENTERTAINMENT_SPORTING_EVENTS_AMUSEMENT_PARKS_AND_MUSEUMS", + "primary": "ENTERTAINMENT" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_ENTERTAINMENT.png", + "transaction_code": null, + "transaction_id": "P8n745oWK3cnXKyW31x9slDNNpggzduo6WvBo", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 47.3, + "authorized_date": "2023-08-15", + "authorized_datetime": null, + "category": [ + "Food and Drink", + "Restaurants", + "Fast Food" + ], + "category_id": "13005032", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "a4r8Wog9LbWrwqWpXZeJZr9b8rRbgavga0dkM", + "logo_url": "https://plaid-merchant-logos.plaid.com/dominos_292.png", + "name": "Domino's", + "phone_number": null, + "type": "merchant", + "website": "dominos.com" + } + ], + "date": "2023-08-19", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": "1230 N Kickapoo Ave", + "city": "Shawnee", + "country": null, + "lat": null, + "lon": null, + "postal_code": "74801", + "region": "OK", + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/dominos_292.png", + "merchant_entity_id": "a4r8Wog9LbWrwqWpXZeJZr9b8rRbgavga0dkM", + "merchant_name": "Domino's", + "name": "Domino's", + "original_description": "0123 Dominos Pizza", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "FOOD_AND_DRINK_FAST_FOOD", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "jjQ7dlP5GyCbNavw7rzpty4wwADDdEu6WLAzv", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "dominos.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 50.65, + "authorized_date": "2023-08-17", + "authorized_datetime": null, + "category": [ + "Food and Drink", + "Restaurants" + ], + "category_id": "13005000", + "check_number": null, + "counterparties": [], + "date": "2023-08-19", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "CHEDDAR'S 0123456", + "original_description": "CHEDDAR'S 0123456", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "GENERAL_MERCHANDISE_OTHER_GENERAL_MERCHANDISE", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "76zXjElb4Zt8RL4DAzM9F9Z77ByyVrcdJnpAM", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 33.86, + "authorized_date": "2023-08-18", + "authorized_datetime": null, + "category": [ + "Shops", + "Beauty Products" + ], + "category_id": "19006000", + "check_number": null, + "counterparties": [], + "date": "2023-08-19", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "Sephora", + "original_description": "SEPHORA.CA SEPHORA.CA QC", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "HIGH", + "detailed": "PERSONAL_CARE_HAIR_AND_BEAUTY", + "primary": "PERSONAL_CARE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_PERSONAL_CARE.png", + "transaction_code": null, + "transaction_id": "edNwr51XgAcoARVZP68vsdRKK5ZZQ3Fr95kRV", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 3.74, + "authorized_date": "2023-08-18", + "authorized_datetime": null, + "category": [ + "Shops", + "Bookstores" + ], + "category_id": "19009000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "Jm0aKeARgavDqr73LnjVW0KOyJvyOjVdXaRny", + "logo_url": "https://plaid-merchant-logos.plaid.com/amazon_kindle_46.png", + "name": "Amazon Kindle", + "phone_number": null, + "type": "merchant", + "website": "amazon.com/Kindle-eBooks" + } + ], + "date": "2023-08-18", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/amazon_kindle_46.png", + "merchant_entity_id": "Jm0aKeARgavDqr73LnjVW0KOyJvyOjVdXaRny", + "merchant_name": "Amazon Kindle", + "name": "Kindle Svcs", + "original_description": "Kindle Svcs", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "GENERAL_MERCHANDISE_BOOKSTORES_AND_NEWSSTANDS", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "QEbZN5mMrxTnJ4XRxba9s9pPPx77Rocwm7e4z", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "amazon.com/Kindle-eBooks" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 0.75, + "authorized_date": "2023-08-18", + "authorized_datetime": null, + "category": [ + "Travel", + "Gas Stations" + ], + "category_id": "22009000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "8y7851JXryBnkOWOjW163yqzAB01oa8k6e1g9", + "logo_url": "https://plaid-merchant-logos.plaid.com/shell_891.png", + "name": "Shell", + "phone_number": null, + "type": "merchant", + "website": "shell.com" + } + ], + "date": "2023-08-18", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/shell_891.png", + "merchant_entity_id": "8y7851JXryBnkOWOjW163yqzAB01oa8k6e1g9", + "merchant_name": "Shell", + "name": "SHELL/SHELL #...0123", + "original_description": "SHELL/SHELL #...0123", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "TRANSPORTATION_GAS", + "primary": "TRANSPORTATION" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_TRANSPORTATION.png", + "transaction_code": null, + "transaction_id": "ZvlBL5eMPQtnXDV6QrR9sReKKzJJqLfeqXlAP", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "shell.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 41.19, + "authorized_date": "2023-08-18", + "authorized_datetime": null, + "category": [ + "Shops", + "Clothing and Accessories" + ], + "category_id": "19012000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "5Q8Z246OYvabv1ayDv4wK5m8BJkWZMeZQe4K7", + "logo_url": "https://plaid-merchant-logos.plaid.com/hm_467.png", + "name": "H\u0026M", + "phone_number": null, + "type": "merchant", + "website": "hm.com" + } + ], + "date": "2023-08-18", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/hm_467.png", + "merchant_entity_id": "5Q8Z246OYvabv1ayDv4wK5m8BJkWZMeZQe4K7", + "merchant_name": "H\u0026M", + "name": "H\u0026M", + "original_description": "H\u0026M", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "GENERAL_MERCHANDISE_CLOTHING_AND_ACCESSORIES", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "MpWPx5o4yrcpZvwQrdbMuwXqqprrnxhL6Pywm", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "hm.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 47.27, + "authorized_date": "2023-08-18", + "authorized_datetime": null, + "category": [ + "Travel", + "Car and Truck Rentals" + ], + "category_id": "22005000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "5QWXY2baaa5WjMr6pov2y079oOv4pWwq34nwB", + "logo_url": "https://plaid-merchant-logos.plaid.com/uhaul_1057.png", + "name": "U-Haul", + "phone_number": null, + "type": "merchant", + "website": "uhaul.com" + } + ], + "date": "2023-08-21", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/uhaul_1057.png", + "merchant_entity_id": "5QWXY2baaa5WjMr6pov2y079oOv4pWwq34nwB", + "merchant_name": "U-Haul", + "name": "U-Haul", + "original_description": "U-HAUL MOVING \u0026 STORAGE O", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "GENERAL_SERVICES_POSTAGE_AND_SHIPPING", + "primary": "GENERAL_SERVICES" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_SERVICES.png", + "transaction_code": null, + "transaction_id": "1bXWx1mVzNcQvyzEo34JTXVppWLLKjtpjeoLV", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "uhaul.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 18.17, + "authorized_date": "2023-08-18", + "authorized_datetime": null, + "category": [ + "Service", + "Shipping and Freight" + ], + "category_id": "18058000", + "check_number": null, + "counterparties": [], + "date": "2023-08-21", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "CARGO POR INTERESES SOBRE COMPRAS", + "original_description": "CARGO POR INTERESES SOBRE COMPRAS", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "GENERAL_MERCHANDISE_OTHER_GENERAL_MERCHANDISE", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "LLEP35oamKfLwWGzKa8mCk6NNK55v8fkjpavd", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 3.86, + "authorized_date": "2023-08-20", + "authorized_datetime": null, + "category": [ + "Travel", + "Gas Stations" + ], + "category_id": "22009000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "8y7851JXryBnkOWOjW163yqzAB01oa8k6e1g9", + "logo_url": "https://plaid-merchant-logos.plaid.com/shell_891.png", + "name": "Shell", + "phone_number": null, + "type": "merchant", + "website": "shell.com" + } + ], + "date": "2023-08-21", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/shell_891.png", + "merchant_entity_id": "8y7851JXryBnkOWOjW163yqzAB01oa8k6e1g9", + "merchant_name": "Shell", + "name": "SHELL/SHELL", + "original_description": "SHELL/SHELL", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "TRANSPORTATION_GAS", + "primary": "TRANSPORTATION" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_TRANSPORTATION.png", + "transaction_code": null, + "transaction_id": "p1oA739DqKhR4y8Xk1ZWcxJKKVWW7ZipoVnym", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "shell.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 35.63, + "authorized_date": "2023-08-18", + "authorized_datetime": null, + "category": [ + "Shops", + "Digital Purchase" + ], + "category_id": "19019000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "2gOwmq9qK56K60oDm3eLrREV2B2mVadkRn8MW", + "logo_url": "https://plaid-merchant-logos.plaid.com/amazon_44.png", + "name": "Amazon", + "phone_number": null, + "type": "merchant", + "website": "amazon.com" + } + ], + "date": "2023-08-23", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": "WA", + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/amazon_44.png", + "merchant_entity_id": "2gOwmq9qK56K60oDm3eLrREV2B2mVadkRn8MW", + "merchant_name": "Amazon", + "name": "AMAZON MKTPLACE PMTS AMZN.COM/BILL", + "original_description": "AMAZON MKTPLACE PMTS AMZN.COM/BILL WA", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "GENERAL_MERCHANDISE_ONLINE_MARKETPLACES", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "oMpyjB9Dlqhb4v8gkyn6tbzBB6EEDdCoq7yxx", + "transaction_type": "digital", + "unofficial_currency_code": null, + "website": "amazon.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 87.5, + "authorized_date": "2023-08-18", + "authorized_datetime": null, + "category": [ + "Travel", + "Public Transportation Services" + ], + "category_id": "22014000", + "check_number": null, + "counterparties": [], + "date": "2023-08-23", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": "on", + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "PRESTO TORONTO ON", + "original_description": "PRESTO TORONTO ON", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "GENERAL_MERCHANDISE_PET_SUPPLIES", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "g4j7B5kXEnCwdLV7NzQPHV5ZZnpprotE8n1ae", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 5.56, + "authorized_date": "2023-08-18", + "authorized_datetime": null, + "category": [ + "Food and Drink", + "Restaurants", + "Fast Food" + ], + "category_id": "13005032", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "DDM7W339RYJwyjZ4A7v6O9m5jVooQWMrJoaO4", + "logo_url": "https://plaid-merchant-logos.plaid.com/jimmy_johns_539.png", + "name": "Jimmy John's", + "phone_number": null, + "type": "merchant", + "website": "jimmyjohns.com" + } + ], + "date": "2023-08-23", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": "N112 W16268 Mequon Rd", + "city": "Germantown", + "country": null, + "lat": 43.222084, + "lon": -88.111198, + "postal_code": "53022", + "region": "WI", + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/jimmy_johns_539.png", + "merchant_entity_id": "DDM7W339RYJwyjZ4A7v6O9m5jVooQWMrJoaO4", + "merchant_name": "Jimmy John's", + "name": "Jimmy Johns", + "original_description": "JIMMY JOHNS - 0123", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "FOOD_AND_DRINK_RESTAURANT", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "8lBZ7kqmNMflM6N1rBb8udzKKnBB1JFW3Lm4k", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "jimmyjohns.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 26.8, + "authorized_date": "2023-08-20", + "authorized_datetime": null, + "category": [ + "Food and Drink", + "Restaurants" + ], + "category_id": "13005000", + "check_number": null, + "counterparties": [], + "date": "2023-08-23", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "Applebee's", + "original_description": "Applebee's", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "ENTERTAINMENT_SPORTING_EVENTS_AMUSEMENT_PARKS_AND_MUSEUMS", + "primary": "ENTERTAINMENT" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_ENTERTAINMENT.png", + "transaction_code": null, + "transaction_id": "EjM3A5vK8mCjLea1GE3mCyoggWNNGBu4xklvW", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 20.76, + "authorized_date": "2023-08-18", + "authorized_datetime": null, + "category": [ + "Food and Drink", + "Restaurants" + ], + "category_id": "13005000", + "check_number": null, + "counterparties": [], + "date": "2023-08-20", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "ICA MASTERCARD", + "original_description": "ICA MASTERCARD", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "GENERAL_MERCHANDISE_OTHER_GENERAL_MERCHANDISE", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "Wm6kZ5zMajudb4XV6nyafB8wwGZZoAF6Z1EAL", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 37.54, + "authorized_date": "2023-08-20", + "authorized_datetime": null, + "category": [ + "Shops", + "Supermarkets and Groceries" + ], + "category_id": "19047000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "LOW", + "entity_id": null, + "logo_url": null, + "name": "Gristedes", + "phone_number": null, + "type": "merchant", + "website": null + } + ], + "date": "2023-08-22", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": "012" + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": "Gristedes", + "name": "GRISTEDES # 012", + "original_description": "GRISTEDES # 012", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "FOOD_AND_DRINK_GROCERIES", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "Aa7KgRpVLAhamWlkAvD3s8DaaWmmjwC9rAPbg", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 14.69, + "authorized_date": "2023-08-24", + "authorized_datetime": null, + "category": [ + "Shops", + "Pharmacies" + ], + "category_id": "19043000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "XE0b15bEno6BJ1nBbaaXekBOXLeJr46q8EaKR", + "logo_url": "https://plaid-merchant-logos.plaid.com/duane_reade_303.png", + "name": "Duane Reade", + "phone_number": null, + "type": "merchant", + "website": "walgreens.com/topic/duane-reade/duane-reade.jsp" + } + ], + "date": "2023-08-24", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/duane_reade_303.png", + "merchant_entity_id": "XE0b15bEno6BJ1nBbaaXekBOXLeJr46q8EaKR", + "merchant_name": "Duane Reade", + "name": "Duane Reade", + "original_description": "DUANE READE", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "MEDICAL_PHARMACIES_AND_SUPPLEMENTS", + "primary": "MEDICAL" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_MEDICAL.png", + "transaction_code": null, + "transaction_id": "GeLdq5ozW9Te8Jd4MGvPT84yyAddeaC6MP3Vm", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "walgreens.com/topic/duane-reade/duane-reade.jsp" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 96.02, + "authorized_date": "2023-08-24", + "authorized_datetime": null, + "category": [ + "Service", + "Cable" + ], + "category_id": "18009000", + "check_number": null, + "counterparties": [], + "date": "2023-08-26", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "DTV*DIRECTV SERVICE", + "original_description": "DTV*DIRECTV SERVICE", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "GENERAL_SERVICES_OTHER_GENERAL_SERVICES", + "primary": "GENERAL_SERVICES" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_SERVICES.png", + "transaction_code": null, + "transaction_id": "nZLAPzwDylibQdva8jeDtG1776wwRjFAlWbav", + "transaction_type": "special", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 43.31, + "authorized_date": "2023-08-26", + "authorized_datetime": null, + "category": [ + "Food and Drink", + "Restaurants", + "Fast Food" + ], + "category_id": "13005032", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "BO2OAg7nprnK6W7rBvarKXkNJ1qJWYRk7AvqZ", + "logo_url": "https://plaid-merchant-logos.plaid.com/arbys_68.png", + "name": "Arby's", + "phone_number": null, + "type": "merchant", + "website": "arbys.com" + } + ], + "date": "2023-08-26", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": "5900 W Broad St", + "city": "Richmond", + "country": null, + "lat": 37.591766, + "lon": -77.505295, + "postal_code": "23230", + "region": "VA", + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/arbys_68.png", + "merchant_entity_id": "BO2OAg7nprnK6W7rBvarKXkNJ1qJWYRk7AvqZ", + "merchant_name": "Arby's", + "name": "Arby's", + "original_description": "ARBYS 0123", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "FOOD_AND_DRINK_FAST_FOOD", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "bBdylJgXLku1ryVNQ9XehxR995ppjZimbZqRd", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "arbys.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 10.96, + "authorized_date": "2023-08-26", + "authorized_datetime": null, + "category": [ + "Service" + ], + "category_id": "18000000", + "check_number": null, + "counterparties": [], + "date": "2023-08-26", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "Yelp", + "original_description": "Yelp", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "GENERAL_MERCHANDISE_OTHER_GENERAL_MERCHANDISE", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "mQ1ANkbDmRfb4yvJ6npMt6LKKoeeADfgydJGn", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 179.25, + "authorized_date": "2023-08-26", + "authorized_datetime": null, + "category": [ + "Shops", + "Department Stores" + ], + "category_id": "19018000", + "check_number": null, + "counterparties": [], + "date": "2023-08-26", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "JC Penney", + "original_description": "JC Penney", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "GENERAL_MERCHANDISE_OTHER_GENERAL_MERCHANDISE", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "yGmrge5K4NFpDQweBL4yuPMpp711gzC46XAJe", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 29.8, + "authorized_date": "2023-08-26", + "authorized_datetime": null, + "category": [ + "Shops", + "Convenience Stores" + ], + "category_id": "19015000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "neygpr9oYBOd8MmEAg52JjoKD7LWg18MW9qA9", + "logo_url": "https://plaid-merchant-logos.plaid.com/loaf_n_jug_585.png", + "name": "Loaf 'N Jug", + "phone_number": null, + "type": "merchant", + "website": "loafnjug.com" + } + ], + "date": "2023-08-26", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": "0123" + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/loaf_n_jug_585.png", + "merchant_entity_id": "neygpr9oYBOd8MmEAg52JjoKD7LWg18MW9qA9", + "merchant_name": "Loaf 'N Jug", + "name": "LOAF N JUG #0123", + "original_description": "LOAF N JUG #0123", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "TRANSPORTATION_GAS", + "primary": "TRANSPORTATION" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_TRANSPORTATION.png", + "transaction_code": null, + "transaction_id": "9q36eAK7P1iqGMPbA34yUAZPPn66Gyc4xQD7Q", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "loafnjug.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 153.54, + "authorized_date": "2023-08-26", + "authorized_datetime": null, + "category": [ + "Shops", + "Warehouses and Wholesale Stores" + ], + "category_id": "19051000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "pBowAoZJMM9DKR37jvNmzM4yWBBXyMzV2rM3A", + "logo_url": "https://plaid-merchant-logos.plaid.com/costco_235.png", + "name": "Costco", + "phone_number": null, + "type": "merchant", + "website": "costco.com" + } + ], + "date": "2023-08-26", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/costco_235.png", + "merchant_entity_id": "pBowAoZJMM9DKR37jvNmzM4yWBBXyMzV2rM3A", + "merchant_name": "Costco", + "name": "Costco", + "original_description": "WWW COSTCO COM #...0123", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "GENERAL_MERCHANDISE_SUPERSTORES", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "vEGlLPADxdT7rVvMKoxpsbo447mmVMCq6kRLR", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "costco.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 10.6, + "authorized_date": "2023-08-25", + "authorized_datetime": null, + "category": [ + "Shops", + "Supermarkets and Groceries" + ], + "category_id": "19047000", + "check_number": null, + "counterparties": [], + "date": "2023-08-27", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "PATEL BROTHERS", + "original_description": "PATEL BROTHERS", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "GENERAL_MERCHANDISE_OTHER_GENERAL_MERCHANDISE", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "RWmGP5oMzdtreRojdm9zi5wkkRDDejIapb46A", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 34.49, + "authorized_date": "2023-08-26", + "authorized_datetime": null, + "category": [ + "Shops", + "Digital Purchase" + ], + "category_id": "19019000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "o2b36aaRWwVwoD70pgje1ML938DADoJ2b9LnY", + "logo_url": "https://plaid-merchant-logos.plaid.com/ebay_310.png", + "name": "eBay", + "phone_number": null, + "type": "merchant", + "website": "ebay.com" + } + ], + "date": "2023-08-27", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/ebay_310.png", + "merchant_entity_id": "o2b36aaRWwVwoD70pgje1ML938DADoJ2b9LnY", + "merchant_name": "eBay", + "name": "eBay", + "original_description": "eBay", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "GENERAL_MERCHANDISE_ONLINE_MARKETPLACES", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "6RrvP8d6aQt8RdaEAwWkFbyzzgPP97C8DX3EP", + "transaction_type": "digital", + "unofficial_currency_code": null, + "website": "ebay.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 16.42, + "authorized_date": "2023-08-26", + "authorized_datetime": null, + "category": [ + "Shops", + "Supermarkets and Groceries" + ], + "category_id": "19047000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "O5W5j4dN9OR3E6ypQmjdkWZZRoXEzVMz2ByWM", + "logo_url": "https://plaid-merchant-logos.plaid.com/walmart_1100.png", + "name": "Walmart", + "phone_number": null, + "type": "merchant", + "website": "walmart.com" + } + ], + "date": "2023-08-27", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": "1500 E Wrangler Blvd", + "city": "Seminole", + "country": null, + "lat": 35.248352, + "lon": -96.654625, + "postal_code": "74868", + "region": "OK", + "store_number": "0123" + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/walmart_1100.png", + "merchant_entity_id": "O5W5j4dN9OR3E6ypQmjdkWZZRoXEzVMz2ByWM", + "merchant_name": "Walmart", + "name": "Walmart", + "original_description": "WAL-MART #0123", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "GENERAL_MERCHANDISE_SUPERSTORES", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "XyXrM5BG47fmPpGD7694U6qAAZzzGgfbKnE7k", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "walmart.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 8.16, + "authorized_date": "2023-08-26", + "authorized_datetime": null, + "category": [ + "Shops", + "Clothing and Accessories" + ], + "category_id": "19012000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "wY2K5ovrKVkJOaWaQbRW3Z2Lo2kZ1vV2YNLO6", + "logo_url": "https://plaid-merchant-logos.plaid.com/tj_maxx_1026.png", + "name": "TJ Maxx", + "phone_number": null, + "type": "merchant", + "website": "tjmaxx.com" + } + ], + "date": "2023-08-27", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": "48 E 33rd St", + "city": "Edmond", + "country": null, + "lat": 35.621834, + "lon": -97.484398, + "postal_code": "73013", + "region": "OK", + "store_number": "0123" + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/tj_maxx_1026.png", + "merchant_entity_id": "wY2K5ovrKVkJOaWaQbRW3Z2Lo2kZ1vV2YNLO6", + "merchant_name": "TJ Maxx", + "name": "T.J.Maxx", + "original_description": "T J MAXX #0123", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "GENERAL_MERCHANDISE_DEPARTMENT_STORES", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "DPZBW5VqgbFP764zbpqmSvj11GMM5ef3WaQAR", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "tjmaxx.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 160.58, + "authorized_date": "2023-08-28", + "authorized_datetime": null, + "category": [ + "Shops", + "Department Stores" + ], + "category_id": "19018000", + "check_number": null, + "counterparties": [], + "date": "2023-08-28", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": "0123" + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "Nordstrom", + "original_description": "NORDSTROM-RACK #0123", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "GENERAL_MERCHANDISE_OTHER_GENERAL_MERCHANDISE", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "VbRqQ5rLdPcn6RqVP4QdsXJzzleeDkt9gPdjg", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 8.89, + "authorized_date": "2023-08-29", + "authorized_datetime": null, + "category": [ + "Shops", + "Convenience Stores" + ], + "category_id": "19015000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "VDzYgVXKNDqR19N8oRdzd2Y9Z0wobKZ5OjLMO", + "logo_url": "https://plaid-merchant-logos.plaid.com/quickchek_797.png", + "name": "QuickChek", + "phone_number": null, + "type": "merchant", + "website": "quickchek.com" + } + ], + "date": "2023-08-29", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/quickchek_797.png", + "merchant_entity_id": "VDzYgVXKNDqR19N8oRdzd2Y9Z0wobKZ5OjLMO", + "merchant_name": "QuickChek", + "name": "QUICK CHEK FOOD STR", + "original_description": "QUICK CHEK FOOD STR", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "TRANSPORTATION_GAS", + "primary": "TRANSPORTATION" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_TRANSPORTATION.png", + "transaction_code": null, + "transaction_id": "wWnqpjJldatQbrvJydjETKPyygzzwbfPZoV4X", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "quickchek.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 7.95, + "authorized_date": "2023-08-29", + "authorized_datetime": null, + "category": [ + "Shops", + "Computers and Electronics" + ], + "category_id": "19013000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "nqgNrWMbOpJkJD8Xa8RAvVn8NqaEzOjZXggbZ", + "logo_url": "https://plaid-merchant-logos.plaid.com/adobe_17.png", + "name": "Adobe", + "phone_number": null, + "type": "merchant", + "website": "adobe.com" + } + ], + "date": "2023-09-02", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/adobe_17.png", + "merchant_entity_id": "nqgNrWMbOpJkJD8Xa8RAvVn8NqaEzOjZXggbZ", + "merchant_name": "Adobe", + "name": "ADOBE *PRODUCTS", + "original_description": "ADOBE *PRODUCTS", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "GENERAL_SERVICES_OTHER_GENERAL_SERVICES", + "primary": "GENERAL_SERVICES" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_SERVICES.png", + "transaction_code": null, + "transaction_id": "5vK5Ng6bdetkX4dDA6NbSqZWWG113dh5K7da1", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "adobe.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 34.44, + "authorized_date": "2023-08-29", + "authorized_datetime": null, + "category": [ + "Food and Drink", + "Restaurants" + ], + "category_id": "13005000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "EXqpkwmbz7b8mO1A5v24wJMaKONApVvoL9gde", + "logo_url": "https://plaid-merchant-logos.plaid.com/dennys_274.png", + "name": "Denny's", + "phone_number": null, + "type": "merchant", + "website": "dennys.com" + } + ], + "date": "2023-09-02", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/dennys_274.png", + "merchant_entity_id": "EXqpkwmbz7b8mO1A5v24wJMaKONApVvoL9gde", + "merchant_name": "Denny's", + "name": "Denny's", + "original_description": "Denny's", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "FOOD_AND_DRINK_RESTAURANT", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "JMgVz59xnlhM1pyKljkeUAXqqpPPvjcB6gJlL", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "dennys.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 4.49, + "authorized_date": "2023-08-31", + "authorized_datetime": null, + "category": [ + "Service", + "Entertainment" + ], + "category_id": "18018000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "1D6004robEojMNXwKpYgrRY6DrLwzea58AaYE", + "logo_url": "https://plaid-merchant-logos.plaid.com/microsoft_xbox_637.png", + "name": "Microsoft Xbox", + "phone_number": null, + "type": "merchant", + "website": "xbox.com" + } + ], + "date": "2023-08-31", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": "WA", + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/microsoft_xbox_637.png", + "merchant_entity_id": "1D6004robEojMNXwKpYgrRY6DrLwzea58AaYE", + "merchant_name": "Microsoft Xbox", + "name": "Microsoft*Xbox msbill.info", + "original_description": "Microsoft*Xbox msbill.info WA", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "ENTERTAINMENT_VIDEO_GAMES", + "primary": "ENTERTAINMENT" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_ENTERTAINMENT.png", + "transaction_code": null, + "transaction_id": "xAbKo75qa4um5aZ8zndpUMd7gW5wbxU64VB5G", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "xbox.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 1.5, + "authorized_date": "2023-08-31", + "authorized_datetime": null, + "category": [ + "Food and Drink", + "Restaurants" + ], + "category_id": "13005000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "QpojvDpD1bBOJzXRv6bnBz9dbLEE9KwBg1wEr", + "logo_url": "https://plaid-merchant-logos.plaid.com/canteen_vending_163.png", + "name": "Canteen Vending", + "phone_number": null, + "type": "merchant", + "website": "canteen.com" + } + ], + "date": "2023-08-31", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/canteen_vending_163.png", + "merchant_entity_id": "QpojvDpD1bBOJzXRv6bnBz9dbLEE9KwBg1wEr", + "merchant_name": "Canteen Vending", + "name": "USA*CANTEEN VENDING", + "original_description": "USA*CANTEEN VENDING", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "FOOD_AND_DRINK_VENDING_MACHINES", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "dx4ZK58XoWCvbXVZlNgaC9Rl5wkLExCJEQa8w", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "canteen.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 7.96, + "authorized_date": "2023-08-31", + "authorized_datetime": null, + "category": [ + "Shops", + "Digital Purchase" + ], + "category_id": "19019000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "8LVAN69qv4bO21pNgv3VEZqByB2V0MOm87mMB", + "logo_url": "https://plaid-counterparty-logos.plaid.com/google_play_120.png", + "name": "Google Play Store", + "phone_number": null, + "type": "marketplace", + "website": "play.google.com/store" + } + ], + "date": "2023-09-03", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": "Google Play Store", + "name": "YouTubePremium", + "original_description": "GOOGLE *YouTubePremium", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": "Google Wallet", + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "MEDIUM", + "detailed": "GENERAL_MERCHANDISE_OTHER_GENERAL_MERCHANDISE", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "azx7A59X1gc5orV6dPw3soqAjJ3zZysZ5Q3jN", + "transaction_type": "digital", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 1.84, + "authorized_date": "2023-09-02", + "authorized_datetime": null, + "category": [ + "Service", + "Shipping and Freight" + ], + "category_id": "18058000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "9Dn92eaeYEjom88122akjmMnore4Ed76Qd5WZ", + "logo_url": "https://plaid-merchant-logos.plaid.com/us_post_office_1059.png", + "name": "U.S. Post Office", + "phone_number": null, + "type": "merchant", + "website": "usps.com" + } + ], + "date": "2023-09-06", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": "TN", + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/us_post_office_1059.png", + "merchant_entity_id": "9Dn92eaeYEjom88122akjmMnore4Ed76Qd5WZ", + "merchant_name": "U.S. Post Office", + "name": "USPS.COM MOVER'S GUIDE", + "original_description": "USPS.COM MOVER'S GUIDE 012-012-0123 TN", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "HIGH", + "detailed": "GENERAL_SERVICES_POSTAGE_AND_SHIPPING", + "primary": "GENERAL_SERVICES" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_SERVICES.png", + "transaction_code": null, + "transaction_id": "49qZ4oGbx7T873XDoebnFmlbdW4eDaFJbAM6v", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "usps.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 113.94, + "authorized_date": "2023-09-05", + "authorized_datetime": null, + "category": [ + "Service", + "Automotive" + ], + "category_id": "18006000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "pY09wg98N7bZ0mJeZLRO4755bbn7OzeAOAvDY", + "logo_url": "https://plaid-merchant-logos.plaid.com/jiffy_lube_538.png", + "name": "Jiffy Lube", + "phone_number": null, + "type": "merchant", + "website": "jiffylube.com" + } + ], + "date": "2023-09-06", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": "109 N Main St", + "city": "Mauldin", + "country": null, + "lat": 34.779926, + "lon": -82.310928, + "postal_code": "29662", + "region": "SC", + "store_number": "0123" + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/jiffy_lube_538.png", + "merchant_entity_id": "pY09wg98N7bZ0mJeZLRO4755bbn7OzeAOAvDY", + "merchant_name": "Jiffy Lube", + "name": "Jiffy Lube", + "original_description": "JIFFY LUBE #0123", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "GENERAL_SERVICES_AUTOMOTIVE", + "primary": "GENERAL_SERVICES" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_SERVICES.png", + "transaction_code": null, + "transaction_id": "NokPd5gNlzfoV1byzGkls7JMP5G3Q9sy65Klj", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "jiffylube.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 2.39, + "authorized_date": "2023-09-03", + "authorized_datetime": null, + "category": [ + "Travel", + "Taxi" + ], + "category_id": "22016000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "eyg8o776k0QmNgVpAmaQj4WgzW9Qzo6O51gdd", + "logo_url": "https://plaid-merchant-logos.plaid.com/uber_1060.png", + "name": "Uber", + "phone_number": null, + "type": "merchant", + "website": "uber.com" + } + ], + "date": "2023-09-05", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/uber_1060.png", + "merchant_entity_id": "eyg8o776k0QmNgVpAmaQj4WgzW9Qzo6O51gdd", + "merchant_name": "Uber", + "name": "Uber", + "original_description": "UBER TRIP", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "TRANSPORTATION_TAXIS_AND_RIDE_SHARES", + "primary": "TRANSPORTATION" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_TRANSPORTATION.png", + "transaction_code": null, + "transaction_id": "P8n745oWK3cnXKyW31x9slDB75xZEeio6Wvxd", + "transaction_type": "special", + "unofficial_currency_code": null, + "website": "uber.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 25.5, + "authorized_date": "2023-09-03", + "authorized_datetime": null, + "category": [ + "Recreation", + "Gyms and Fitness Centers" + ], + "category_id": "17018000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "LOW", + "entity_id": null, + "logo_url": null, + "name": "Holdings", + "phone_number": null, + "type": "merchant", + "website": null + } + ], + "date": "2023-09-05", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": "Holdings", + "name": "BARRYS BOOTCAMP HOLDINGS", + "original_description": "BARRYS BOOTCAMP HOLDINGS", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "GENERAL_MERCHANDISE_OTHER_GENERAL_MERCHANDISE", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "jjQ7dlP5GyCbNavw7rzpty4MQmk9opi6WLANd", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 34.41, + "authorized_date": "2023-09-04", + "authorized_datetime": null, + "category": [ + "Shops", + "Supermarkets and Groceries" + ], + "category_id": "19047000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "Wdo7YbLQR7rXEgVJ6rDoL2EOQgzZXNqd1Zo6n", + "logo_url": "https://plaid-merchant-logos.plaid.com/tops_1033.png", + "name": "Tops", + "phone_number": null, + "type": "merchant", + "website": "topsmarkets.com" + } + ], + "date": "2023-09-05", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": "012" + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/tops_1033.png", + "merchant_entity_id": "Wdo7YbLQR7rXEgVJ6rDoL2EOQgzZXNqd1Zo6n", + "merchant_name": "Tops", + "name": "Tops Friendly Markets", + "original_description": "TOPS MARKETS #012", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "FOOD_AND_DRINK_GROCERIES", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "76zXjElb4Zt8RL4DAzM9F9Zwj8GW6DCdJnpEq", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "topsmarkets.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 3.99, + "authorized_date": "2023-09-04", + "authorized_datetime": null, + "category": [ + "Travel", + "Taxi" + ], + "category_id": "22016000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "eyg8o776k0QmNgVpAmaQj4WgzW9Qzo6O51gdd", + "logo_url": "https://plaid-merchant-logos.plaid.com/uber_1060.png", + "name": "Uber", + "phone_number": null, + "type": "merchant", + "website": "uber.com" + } + ], + "date": "2023-09-05", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/uber_1060.png", + "merchant_entity_id": "eyg8o776k0QmNgVpAmaQj4WgzW9Qzo6O51gdd", + "merchant_name": "Uber", + "name": "UBER BV", + "original_description": "UBER BV", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "TRANSPORTATION_TAXIS_AND_RIDE_SHARES", + "primary": "TRANSPORTATION" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_TRANSPORTATION.png", + "transaction_code": null, + "transaction_id": "edNwr51XgAcoARVZP68vsdRGzqom9Bur95kqX", + "transaction_type": "special", + "unofficial_currency_code": null, + "website": "uber.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 20.66, + "authorized_date": "2023-09-04", + "authorized_datetime": null, + "category": [ + "Shops", + "Food and Beverage Store" + ], + "category_id": "19025000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "LOW", + "entity_id": null, + "logo_url": null, + "name": "Lcbo Rao", + "phone_number": null, + "type": "merchant", + "website": null + } + ], + "date": "2023-09-05", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": "0123" + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": "Lcbo Rao", + "name": "LCBO/RAO #0123", + "original_description": "LCBO/RAO #0123", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "FOOD_AND_DRINK_BEER_WINE_AND_LIQUOR", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "QEbZN5mMrxTnJ4XRxba9s9paZDyVQGCwm7eNL", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 28.49, + "authorized_date": "2023-09-05", + "authorized_datetime": null, + "category": [ + "Shops", + "Food and Beverage Store" + ], + "category_id": "19025000", + "check_number": null, + "counterparties": [], + "date": "2023-09-05", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "COOPERS HAWK WINERY", + "original_description": "COOPERS HAWK WINERY", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "FOOD_AND_DRINK_RESTAURANT", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "ZvlBL5eMPQtnXDV6QrR9sRex8pZayMceqXlon", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 44.2, + "authorized_date": "2023-09-05", + "authorized_datetime": null, + "category": [ + "Service", + "Food and Beverage" + ], + "category_id": "18021000", + "check_number": null, + "counterparties": [], + "date": "2023-09-05", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "SUN BASKET", + "original_description": "SUN BASKET", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "GENERAL_MERCHANDISE_OTHER_GENERAL_MERCHANDISE", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "MpWPx5o4yrcpZvwQrdbMuwXJg8Eze3fL6PyjD", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 4.09, + "authorized_date": "2023-09-05", + "authorized_datetime": null, + "category": [ + "Service", + "Business Services" + ], + "category_id": "18008000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "DbQM2AYXm3rBVBq741yqeNbN4LOgqO973rWNZ", + "logo_url": "https://plaid-merchant-logos.plaid.com/experian_337.png", + "name": "Experian", + "phone_number": null, + "type": "merchant", + "website": "experian.com" + } + ], + "date": "2023-09-05", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/experian_337.png", + "merchant_entity_id": "DbQM2AYXm3rBVBq741yqeNbN4LOgqO973rWNZ", + "merchant_name": "Experian", + "name": "Experian", + "original_description": "Experian", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "GENERAL_SERVICES_ACCOUNTING_AND_FINANCIAL_PLANNING", + "primary": "GENERAL_SERVICES" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_SERVICES.png", + "transaction_code": null, + "transaction_id": "1bXWx1mVzNcQvyzEo34JTXVmegwx94tpjeon5", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "experian.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 20.28, + "authorized_date": "2023-09-04", + "authorized_datetime": null, + "category": [ + "Shops", + "Sporting Goods" + ], + "category_id": "19046000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "Qv0ynk0A03MEVJnDKrL8wBXB7ga1qVgYbvRW2", + "logo_url": "https://plaid-merchant-logos.plaid.com/academy_sports_outdoors_8.png", + "name": "Academy Sports + Outdoors", + "phone_number": null, + "type": "merchant", + "website": "academy.com" + } + ], + "date": "2023-09-04", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": "01" + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/academy_sports_outdoors_8.png", + "merchant_entity_id": "Qv0ynk0A03MEVJnDKrL8wBXB7ga1qVgYbvRW2", + "merchant_name": "Academy Sports + Outdoors", + "name": "ACADEMY SPORTS #01", + "original_description": "ACADEMY SPORTS #01", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "GENERAL_MERCHANDISE_SPORTING_GOODS", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "LLEP35oamKfLwWGzKa8mCk6Apgx1W7ukjpaAk", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "academy.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 60.58, + "authorized_date": "2023-09-04", + "authorized_datetime": null, + "category": [ + "Shops", + "Convenience Stores" + ], + "category_id": "19015000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "w32E0jpBeX97vOWgER0n2qVbzLJVm1opNMpoR", + "logo_url": "https://plaid-merchant-logos.plaid.com/7eleven_3.png", + "name": "7-Eleven", + "phone_number": null, + "type": "merchant", + "website": "7-eleven.com" + } + ], + "date": "2023-09-04", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/7eleven_3.png", + "merchant_entity_id": "w32E0jpBeX97vOWgER0n2qVbzLJVm1opNMpoR", + "merchant_name": "7-Eleven", + "name": "7-Eleven", + "original_description": "ALON 7-ELEVEN 0123", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "GENERAL_MERCHANDISE_CONVENIENCE_STORES", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "p1oA739DqKhR4y8Xk1ZWcxJrdLn6oGtpoVn7J", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "7-eleven.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 8.75, + "authorized_date": "2023-09-04", + "authorized_datetime": null, + "category": [ + "Recreation", + "Arts and Entertainment" + ], + "category_id": "17001000", + "check_number": null, + "counterparties": [], + "date": "2023-09-04", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "USA*AMI MUSICBOX", + "original_description": "USA*AMI MUSICBOX", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "GENERAL_MERCHANDISE_OTHER_GENERAL_MERCHANDISE", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "oMpyjB9Dlqhb4v8gkyn6tbzMpZy5G3ioq7yJk", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 23.69, + "authorized_date": "2023-09-05", + "authorized_datetime": null, + "category": [ + "Shops", + "Furniture and Home Decor" + ], + "category_id": "19027000", + "check_number": null, + "counterparties": [], + "date": "2023-09-07", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": "MA", + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "Wayfair", + "original_description": "WAYFAIR*Wayfair wayfair.com MA", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "GENERAL_MERCHANDISE_OTHER_GENERAL_MERCHANDISE", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "g4j7B5kXEnCwdLV7NzQPHV59dRBP8WcE8n1eM", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 269, + "authorized_date": "2023-09-07", + "authorized_datetime": null, + "category": [ + "Shops", + "Hardware Store" + ], + "category_id": "19030000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "OvD4k3VrjJYXoar5MNKZQEd333BA1oK8JA8v6", + "logo_url": "https://plaid-merchant-logos.plaid.com/lowes_591.png", + "name": "Lowe's", + "phone_number": null, + "type": "merchant", + "website": "lowes.com" + } + ], + "date": "2023-09-07", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": "NC", + "store_number": "012345" + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/lowes_591.png", + "merchant_entity_id": "OvD4k3VrjJYXoar5MNKZQEd333BA1oK8JA8v6", + "merchant_name": "Lowe's", + "name": "Lowe's Home Improvement", + "original_description": "LOWES #012345 012-012-0123 NC", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "HOME_IMPROVEMENT_HARDWARE", + "primary": "HOME_IMPROVEMENT" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_HOME_IMPROVEMENT.png", + "transaction_code": null, + "transaction_id": "8lBZ7kqmNMflM6N1rBb8udzkGwyA5MuW3LmPz", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "lowes.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 76.72, + "authorized_date": "2023-09-07", + "authorized_datetime": null, + "category": [ + "Food and Drink", + "Restaurants", + "Fast Food" + ], + "category_id": "13005032", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "DDM7W339RYJwyjZ4A7v6O9m5jVooQWMrJoaO4", + "logo_url": "https://plaid-merchant-logos.plaid.com/jimmy_johns_539.png", + "name": "Jimmy John's", + "phone_number": null, + "type": "merchant", + "website": "jimmyjohns.com" + } + ], + "date": "2023-09-07", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": "012" + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/jimmy_johns_539.png", + "merchant_entity_id": "DDM7W339RYJwyjZ4A7v6O9m5jVooQWMrJoaO4", + "merchant_name": "Jimmy John's", + "name": "Jimmy Johns", + "original_description": "JIMMY JOHNS # 012", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "FOOD_AND_DRINK_RESTAURANT", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "EjM3A5vK8mCjLea1GE3mCyom95Prvki4xklar", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "jimmyjohns.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 238.65, + "authorized_date": "2023-09-07", + "authorized_datetime": null, + "category": [ + "Shops", + "Sporting Goods" + ], + "category_id": "19046000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "jyKrBzm66RoBym8rNQBAjBv61eV7EvOq1akLZ", + "logo_url": "https://plaid-merchant-logos.plaid.com/champs_sports_184.png", + "name": "Champs Sports", + "phone_number": null, + "type": "merchant", + "website": "champssports.com" + } + ], + "date": "2023-09-07", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/champs_sports_184.png", + "merchant_entity_id": "jyKrBzm66RoBym8rNQBAjBv61eV7EvOq1akLZ", + "merchant_name": "Champs Sports", + "name": "Champs Sports", + "original_description": "CHAMPS 01234", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "GENERAL_MERCHANDISE_SPORTING_GOODS", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "Wm6kZ5zMajudb4XV6nyafB8VgNb3znC6Z1EdB", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "champssports.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 4.12, + "authorized_date": "2023-09-05", + "authorized_datetime": null, + "category": [ + "Shops", + "Digital Purchase" + ], + "category_id": "19019000", + "check_number": null, + "counterparties": [], + "date": "2023-09-08", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "EA *ORIGIN.COM", + "original_description": "EA *ORIGIN.COM", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "GENERAL_MERCHANDISE_OTHER_GENERAL_MERCHANDISE", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "Aa7KgRpVLAhamWlkAvD3s8Dl5KZ7brF9rAPbM", + "transaction_type": "digital", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 38.03, + "authorized_date": "2023-09-05", + "authorized_datetime": null, + "category": [ + "Shops", + "Digital Purchase" + ], + "category_id": "19019000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "2gOwmq9qK56K60oDm3eLrREV2B2mVadkRn8MW", + "logo_url": "https://plaid-merchant-logos.plaid.com/amazon_44.png", + "name": "Amazon", + "phone_number": null, + "type": "merchant", + "website": "amazon.com" + } + ], + "date": "2023-09-08", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/amazon_44.png", + "merchant_entity_id": "2gOwmq9qK56K60oDm3eLrREV2B2mVadkRn8MW", + "merchant_name": "Amazon", + "name": "Amazon Payments #...0123", + "original_description": "Amazon Payments #...0123", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "GENERAL_MERCHANDISE_ONLINE_MARKETPLACES", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "GeLdq5ozW9Te8Jd4MGvPT84MZDwPW7F6MP3VR", + "transaction_type": "digital", + "unofficial_currency_code": null, + "website": "amazon.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 62.44, + "authorized_date": "2023-09-05", + "authorized_datetime": null, + "category": [ + "Shops", + "Discount Stores" + ], + "category_id": "19020000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "rMKJ1dN2kL4NQarZ3oQMW9j14YpL845dDQo7R", + "logo_url": "https://plaid-merchant-logos.plaid.com/dollar_tree_289.png", + "name": "Dollar Tree", + "phone_number": null, + "type": "merchant", + "website": "dollartree.com" + } + ], + "date": "2023-09-08", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/dollar_tree_289.png", + "merchant_entity_id": "rMKJ1dN2kL4NQarZ3oQMW9j14YpL845dDQo7R", + "merchant_name": "Dollar Tree", + "name": "Dollar Tree", + "original_description": "Dollar Tree", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "GENERAL_MERCHANDISE_DISCOUNT_STORES", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "nZLAPzwDylibQdva8jeDtG1eMJoEWbtAlWbam", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "dollartree.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 19.7, + "authorized_date": "2023-09-07", + "authorized_datetime": null, + "category": [ + "Service", + "Food and Beverage" + ], + "category_id": "18021000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "WKk6bENeYwvVaLaY8EEOw8Koa2X72m2wJOk1Z", + "logo_url": "https://plaid-counterparty-logos.plaid.com/seamless_5.png", + "name": "Seamless", + "phone_number": null, + "type": "marketplace", + "website": "seamless.com" + } + ], + "date": "2023-09-08", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": "NY", + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": "Seamless", + "name": "Seamless", + "original_description": "SEAMLSSSTEINWAYGOURME SEAMLESS.COM NY", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "MEDIUM", + "detailed": "FOOD_AND_DRINK_RESTAURANT", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "bBdylJgXLku1ryVNQ9XehxReg34KG7tmbZqRy", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 43.2, + "authorized_date": "2023-09-08", + "authorized_datetime": null, + "category": [ + "Food and Drink", + "Restaurants" + ], + "category_id": "13005000", + "check_number": null, + "counterparties": [], + "date": "2023-09-08", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "KID ROCKS HONKY TONK\u0026STEA", + "original_description": "KID ROCKS HONKY TONK\u0026STEA", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "GENERAL_MERCHANDISE_OTHER_GENERAL_MERCHANDISE", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "mQ1ANkbDmRfb4yvJ6npMt6LmBj1NyEcgydJGG", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 28, + "authorized_date": "2023-09-08", + "authorized_datetime": null, + "category": [ + "Travel", + "Airlines and Aviation Services" + ], + "category_id": "22001000", + "check_number": null, + "counterparties": [], + "date": "2023-09-08", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "Viasat In-Flight Wi-Fi", + "original_description": "Viasat In-Flight Wi-Fi", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "TRAVEL_OTHER_TRAVEL", + "primary": "TRAVEL" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_TRAVEL.png", + "transaction_code": null, + "transaction_id": "yGmrge5K4NFpDQweBL4yuPM35rxdXZi46XAJ7", + "transaction_type": "special", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 52.5, + "authorized_date": "2023-09-08", + "authorized_datetime": null, + "category": [ + "Service" + ], + "category_id": "18000000", + "check_number": null, + "counterparties": [], + "date": "2023-09-08", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "RING.COM RING YEARLY P", + "original_description": "RING.COM RING YEARLY P", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "GENERAL_MERCHANDISE_PET_SUPPLIES", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "9q36eAK7P1iqGMPbA34yUAZV7NmLojI4xQD7d", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 12.71, + "authorized_date": "2023-09-05", + "authorized_datetime": null, + "category": [ + "Service", + "Subscription" + ], + "category_id": "18061000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "3LEY2bJ6W1vkoaBjgVg3qBgYVEzD6p8d1dQdY", + "logo_url": "https://plaid-merchant-logos.plaid.com/netflix_675.png", + "name": "Netflix", + "phone_number": null, + "type": "merchant", + "website": "netflix.com" + } + ], + "date": "2023-09-09", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": "CA", + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/netflix_675.png", + "merchant_entity_id": "3LEY2bJ6W1vkoaBjgVg3qBgYVEzD6p8d1dQdY", + "merchant_name": "Netflix", + "name": "Netflix", + "original_description": "Netflix.com 012-0123456 CA", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "ENTERTAINMENT_TV_AND_MOVIES", + "primary": "ENTERTAINMENT" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_ENTERTAINMENT.png", + "transaction_code": null, + "transaction_id": "vEGlLPADxdT7rVvMKoxpsbozq3NxkGiq6kRL5", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "netflix.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 8.75, + "authorized_date": "2023-09-08", + "authorized_datetime": null, + "category": [ + "Recreation", + "Arts and Entertainment" + ], + "category_id": "17001000", + "check_number": null, + "counterparties": [], + "date": "2023-09-09", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "USA*AMI MUSICBOX", + "original_description": "USA*AMI MUSICBOX", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "GENERAL_MERCHANDISE_OTHER_GENERAL_MERCHANDISE", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "RWmGP5oMzdtreRojdm9zi5wEvmqNVpHapb4mn", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 27.09, + "authorized_date": "2023-09-07", + "authorized_datetime": null, + "category": [ + "Shops", + "Digital Purchase" + ], + "category_id": "19019000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "2gOwmq9qK56K60oDm3eLrREV2B2mVadkRn8MW", + "logo_url": "https://plaid-merchant-logos.plaid.com/amazon_44.png", + "name": "Amazon", + "phone_number": null, + "type": "merchant", + "website": "amazon.com" + } + ], + "date": "2023-09-11", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/amazon_44.png", + "merchant_entity_id": "2gOwmq9qK56K60oDm3eLrREV2B2mVadkRn8MW", + "merchant_name": "Amazon", + "name": "Amazon.com Amzn.com/billWA", + "original_description": "Amazon.com Amzn.com/billWA", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "GENERAL_MERCHANDISE_ONLINE_MARKETPLACES", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "6RrvP8d6aQt8RdaEAwWkFbyD6lRWjLi8DX3VN", + "transaction_type": "digital", + "unofficial_currency_code": null, + "website": "amazon.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 18.09, + "authorized_date": "2023-09-07", + "authorized_datetime": null, + "category": [ + "Shops", + "Convenience Stores" + ], + "category_id": "19015000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "w32E0jpBeX97vOWgER0n2qVbzLJVm1opNMpoR", + "logo_url": "https://plaid-merchant-logos.plaid.com/7eleven_3.png", + "name": "7-Eleven", + "phone_number": null, + "type": "merchant", + "website": "7-eleven.com" + } + ], + "date": "2023-09-11", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/7eleven_3.png", + "merchant_entity_id": "w32E0jpBeX97vOWgER0n2qVbzLJVm1opNMpoR", + "merchant_name": "7-Eleven", + "name": "7-Eleven", + "original_description": "7-ELEVEN 01234", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "GENERAL_MERCHANDISE_CONVENIENCE_STORES", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "XyXrM5BG47fmPpGD7694U6qPyJX8decbKnEwG", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "7-eleven.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 50.8, + "authorized_date": "2023-09-08", + "authorized_datetime": null, + "category": [ + "Shops", + "Clothing and Accessories", + "Shoe Store" + ], + "category_id": "19012003", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "ENww3prEqejkVDpkym889gnLk36YaQAkbgOZR", + "logo_url": "https://plaid-merchant-logos.plaid.com/nike_679.png", + "name": "Nike", + "phone_number": null, + "type": "merchant", + "website": "nike.com" + } + ], + "date": "2023-09-11", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/nike_679.png", + "merchant_entity_id": "ENww3prEqejkVDpkym889gnLk36YaQAkbgOZR", + "merchant_name": "Nike", + "name": "NIKE.COM", + "original_description": "NIKE.COM", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "GENERAL_MERCHANDISE_SPORTING_GOODS", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "DPZBW5VqgbFP764zbpqmSvjWJDPg3bt3WaQKk", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "nike.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 8.73, + "authorized_date": "2023-09-10", + "authorized_datetime": null, + "category": [ + "Service", + "Subscription" + ], + "category_id": "18061000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "2373QOZJ18DqqK0KWvgpng3nmVDLMvDvy05RN", + "logo_url": "https://plaid-merchant-logos.plaid.com/spotify_947.png", + "name": "Spotify", + "phone_number": null, + "type": "merchant", + "website": "spotify.com" + } + ], + "date": "2023-09-11", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/spotify_947.png", + "merchant_entity_id": "2373QOZJ18DqqK0KWvgpng3nmVDLMvDvy05RN", + "merchant_name": "Spotify", + "name": "Spotify", + "original_description": "Spotify", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "ENTERTAINMENT_MUSIC_AND_AUDIO", + "primary": "ENTERTAINMENT" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_ENTERTAINMENT.png", + "transaction_code": null, + "transaction_id": "VbRqQ5rLdPcn6RqVP4QdsXJG18VQ3Et9gPd3X", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "spotify.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 6.03, + "authorized_date": "2023-09-10", + "authorized_datetime": null, + "category": [ + "Shops", + "Supermarkets and Groceries" + ], + "category_id": "19047000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "AMamYD94X7y1krYK1EBYYyoe7192Kaq5aE42n", + "logo_url": "https://plaid-merchant-logos.plaid.com/aldi_35.png", + "name": "Aldi", + "phone_number": null, + "type": "merchant", + "website": "aldi.us" + } + ], + "date": "2023-09-11", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/aldi_35.png", + "merchant_entity_id": "AMamYD94X7y1krYK1EBYYyoe7192Kaq5aE42n", + "merchant_name": "Aldi", + "name": "Aldi", + "original_description": "ALDI 01234", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "FOOD_AND_DRINK_GROCERIES", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "wWnqpjJldatQbrvJydjETKPDB3J4E9cPZoVBj", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "aldi.us" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 14.29, + "authorized_date": "2023-09-10", + "authorized_datetime": null, + "category": [ + "Food and Drink", + "Restaurants", + "Fast Food" + ], + "category_id": "13005032", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "a4r8Wog9LbWrwqWpXZeJZr9b8rRbgavga0dkM", + "logo_url": "https://plaid-merchant-logos.plaid.com/dominos_292.png", + "name": "Domino's", + "phone_number": null, + "type": "merchant", + "website": "dominos.com" + } + ], + "date": "2023-09-11", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": "FL", + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/dominos_292.png", + "merchant_entity_id": "a4r8Wog9LbWrwqWpXZeJZr9b8rRbgavga0dkM", + "merchant_name": "Domino's", + "name": "Domino's", + "original_description": "0123 Dominos Pizza 012-012-0123 FL", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "FOOD_AND_DRINK_FAST_FOOD", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "5vK5Ng6bdetkX4dDA6NbSqZK7QDoXMu5K7dq7", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "dominos.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 9.05, + "authorized_date": "2023-09-10", + "authorized_datetime": null, + "category": [ + "Food and Drink", + "Restaurants" + ], + "category_id": "13005000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "LOW", + "entity_id": null, + "logo_url": null, + "name": "Wich", + "phone_number": null, + "type": "merchant", + "website": null + } + ], + "date": "2023-09-11", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": "012" + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": "Wich", + "name": "Which Wich", + "original_description": "WHICH WICH #012", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "GENERAL_MERCHANDISE_OTHER_GENERAL_MERCHANDISE", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "JMgVz59xnlhM1pyKljkeUAXZgLJDw6IB6gJVJ", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 16.1, + "authorized_date": "2023-09-08", + "authorized_datetime": null, + "category": [ + "Shops", + "Digital Purchase" + ], + "category_id": "19019000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "o2b36aaRWwVwoD70pgje1ML938DADoJ2b9LnY", + "logo_url": "https://plaid-merchant-logos.plaid.com/ebay_310.png", + "name": "eBay", + "phone_number": null, + "type": "merchant", + "website": "ebay.com" + } + ], + "date": "2023-09-12", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": "CA", + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/ebay_310.png", + "merchant_entity_id": "o2b36aaRWwVwoD70pgje1ML938DADoJ2b9LnY", + "merchant_name": "eBay", + "name": "EBAY INC.", + "original_description": "EBAY INC. 012-012-0123 CA", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "GENERAL_MERCHANDISE_ONLINE_MARKETPLACES", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "k7ZAaqkDn9IeLWvPMD3QTQmwjAae61sL6dpyo", + "transaction_type": "digital", + "unofficial_currency_code": null, + "website": "ebay.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 47.27, + "authorized_date": "2023-09-08", + "authorized_datetime": null, + "category": [ + "Shops", + "Beauty Products" + ], + "category_id": "19006000", + "check_number": null, + "counterparties": [], + "date": "2023-09-12", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "RODANFI*LDS 0123456789", + "original_description": "RODANFI*LDS 0123456789", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "PERSONAL_CARE_HAIR_AND_BEAUTY", + "primary": "PERSONAL_CARE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_PERSONAL_CARE.png", + "transaction_code": null, + "transaction_id": "leMA4KdDbvT9Rj8aDw3ASlqwZmdvGDipod7Dm", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 49.05, + "authorized_date": "2023-09-08", + "authorized_datetime": null, + "category": [ + "Shops", + "Supermarkets and Groceries" + ], + "category_id": "19047000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "Eaq3KXm0jJ61KrmMrV0aw9VaY2grqv517d3ep", + "logo_url": "https://plaid-merchant-logos.plaid.com/target_997.png", + "name": "Target", + "phone_number": null, + "type": "merchant", + "website": "target.com" + } + ], + "date": "2023-09-12", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": "MN", + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/target_997.png", + "merchant_entity_id": "Eaq3KXm0jJ61KrmMrV0aw9VaY2grqv517d3ep", + "merchant_name": "Target", + "name": "Target", + "original_description": "TARGET.COM * 012-012-0123 MN", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "GENERAL_MERCHANDISE_SUPERSTORES", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "bBdylJgXLku1ryVNQ9XehxReg34KG7tmbZqMn", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "target.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 173.25, + "authorized_date": "2023-09-12", + "authorized_datetime": null, + "category": [ + "Service", + "Subscription" + ], + "category_id": "18061000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "XZAmBNLd29wbbLB49r58oD5b6y7kz5A1982j3", + "logo_url": "https://plaid-merchant-logos.plaid.com/amazon_prime_1987.png", + "name": "Amazon Prime", + "phone_number": null, + "type": "merchant", + "website": "amazon.com/amazonprime" + } + ], + "date": "2023-09-12", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/amazon_prime_1987.png", + "merchant_entity_id": "XZAmBNLd29wbbLB49r58oD5b6y7kz5A1982j3", + "merchant_name": "Amazon Prime", + "name": "Amazon Prime", + "original_description": "AmazonPrime Membership", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "ENTERTAINMENT_TV_AND_MOVIES", + "primary": "ENTERTAINMENT" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_ENTERTAINMENT.png", + "transaction_code": null, + "transaction_id": "mQ1ANkbDmRfb4yvJ6npMt6LmBj1NyEcgydJVp", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "amazon.com/amazonprime" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 31.13, + "authorized_date": "2023-09-12", + "authorized_datetime": null, + "category": [ + "Food and Drink", + "Restaurants" + ], + "category_id": "13005000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "5m8NA1RJ892w69jVQ150JrXqyLVJnJ93dVEgg", + "logo_url": "https://plaid-merchant-logos.plaid.com/waffle_house_1097.png", + "name": "Waffle House", + "phone_number": null, + "type": "merchant", + "website": "wafflehouse.com" + } + ], + "date": "2023-09-12", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": "6513 Ringgold Rd", + "city": "East Ridge", + "country": null, + "lat": 34.989765, + "lon": -85.208115, + "postal_code": "37412", + "region": "TN", + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/waffle_house_1097.png", + "merchant_entity_id": "5m8NA1RJ892w69jVQ150JrXqyLVJnJ93dVEgg", + "merchant_name": "Waffle House", + "name": "Waffle House", + "original_description": "WAFFLE HOUSE 0123", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "FOOD_AND_DRINK_RESTAURANT", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "yGmrge5K4NFpDQweBL4yuPM35rxdXZi46XA76", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "wafflehouse.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 14.36, + "authorized_date": "2023-09-12", + "authorized_datetime": null, + "category": [ + "Food and Drink", + "Restaurants", + "Fast Food" + ], + "category_id": "13005032", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "Ew00y0rDXn7nvvXkrWe3RQ9Y8e1Bw6pq3pwYJ", + "logo_url": "https://plaid-merchant-logos.plaid.com/panda_express_714.png", + "name": "Panda Express", + "phone_number": null, + "type": "merchant", + "website": "pandaexpress.com" + } + ], + "date": "2023-09-12", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/panda_express_714.png", + "merchant_entity_id": "Ew00y0rDXn7nvvXkrWe3RQ9Y8e1Bw6pq3pwYJ", + "merchant_name": "Panda Express", + "name": "Panda Express", + "original_description": "PANDA EXPRESS 0123", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "FOOD_AND_DRINK_FAST_FOOD", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "9q36eAK7P1iqGMPbA34yUAZV7NmLojI4xQDXN", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "pandaexpress.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 0.88, + "authorized_date": "2023-09-12", + "authorized_datetime": null, + "category": [ + "Travel", + "Parking" + ], + "category_id": "22013000", + "check_number": null, + "counterparties": [], + "date": "2023-09-12", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "LA CITY PARKING METER", + "original_description": "LA CITY PARKING METER", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "TRANSPORTATION_PARKING", + "primary": "TRANSPORTATION" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_TRANSPORTATION.png", + "transaction_code": null, + "transaction_id": "vEGlLPADxdT7rVvMKoxpsbozq3NxkGiq6kR9M", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 43.86, + "authorized_date": "2023-09-08", + "authorized_datetime": null, + "category": [ + "Shops", + "Beauty Products" + ], + "category_id": "19006000", + "check_number": null, + "counterparties": [], + "date": "2023-09-13", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "Sephora", + "original_description": "SEPHORA.COM", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "GENERAL_MERCHANDISE_OTHER_GENERAL_MERCHANDISE", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "RWmGP5oMzdtreRojdm9zi5wEvmqNVpHapb4mQ", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 4.25, + "authorized_date": "2023-09-10", + "authorized_datetime": null, + "category": [ + "Shops", + "Supermarkets and Groceries" + ], + "category_id": "19047000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "O5W5j4dN9OR3E6ypQmjdkWZZRoXEzVMz2ByWM", + "logo_url": "https://plaid-merchant-logos.plaid.com/walmart_1100.png", + "name": "Walmart", + "phone_number": null, + "type": "merchant", + "website": "walmart.com" + } + ], + "date": "2023-09-13", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": "1500 E Wrangler Blvd", + "city": "Seminole", + "country": null, + "lat": 35.248352, + "lon": -96.654625, + "postal_code": "74868", + "region": "OK", + "store_number": "0123" + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/walmart_1100.png", + "merchant_entity_id": "O5W5j4dN9OR3E6ypQmjdkWZZRoXEzVMz2ByWM", + "merchant_name": "Walmart", + "name": "Walmart", + "original_description": "WAL-MART #0123 #...0123", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "GENERAL_MERCHANDISE_SUPERSTORES", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "6RrvP8d6aQt8RdaEAwWkFbyD6lRWjLi8DX3Vo", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "walmart.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 115.17, + "authorized_date": "2023-09-12", + "authorized_datetime": null, + "category": [ + "Shops", + "Supermarkets and Groceries" + ], + "category_id": "19047000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "AndorbmbMKgjOazDKwrVBAVqp889Wvy1AEJ0B", + "logo_url": "https://plaid-merchant-logos.plaid.com/heb_466.png", + "name": "H-E-B", + "phone_number": null, + "type": "merchant", + "website": "heb.com" + } + ], + "date": "2023-09-13", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": "012" + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/heb_466.png", + "merchant_entity_id": "AndorbmbMKgjOazDKwrVBAVqp889Wvy1AEJ0B", + "merchant_name": "H-E-B", + "name": "H-E-B", + "original_description": "H-E-B #012", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "FOOD_AND_DRINK_GROCERIES", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "XyXrM5BG47fmPpGD7694U6qPyJX8decbKnEw4", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "heb.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 224.78, + "authorized_date": "2023-09-12", + "authorized_datetime": null, + "category": [ + "Travel", + "Car and Truck Rentals" + ], + "category_id": "22005000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "Mpwvjv4Vy4KaNRbjLz9vkOQjq2O3MnZeovoz6", + "logo_url": "https://plaid-merchant-logos.plaid.com/budget_car_rental_152.png", + "name": "Budget Car Rental", + "phone_number": null, + "type": "merchant", + "website": "budget.com" + } + ], + "date": "2023-09-13", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/budget_car_rental_152.png", + "merchant_entity_id": "Mpwvjv4Vy4KaNRbjLz9vkOQjq2O3MnZeovoz6", + "merchant_name": "Budget Car Rental", + "name": "BUDGET RENT-A-CAR", + "original_description": "BUDGET RENT-A-CAR", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "TRAVEL_RENTAL_CARS", + "primary": "TRAVEL" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_TRAVEL.png", + "transaction_code": null, + "transaction_id": "DPZBW5VqgbFP764zbpqmSvjWJDPg3bt3WaQK1", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "budget.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 18.15, + "authorized_date": "2023-09-12", + "authorized_datetime": null, + "category": [ + "Service", + "Business Services" + ], + "category_id": "18008000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "NELrAdOaJ071vgdXyE2DOOjQ978bdoKmZ0pv5", + "logo_url": "https://plaid-merchant-logos.plaid.com/aramark_67.png", + "name": "Aramark", + "phone_number": null, + "type": "merchant", + "website": "aramark.com" + } + ], + "date": "2023-09-13", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/aramark_67.png", + "merchant_entity_id": "NELrAdOaJ071vgdXyE2DOOjQ978bdoKmZ0pv5", + "merchant_name": "Aramark", + "name": "Aramark", + "original_description": "Aramark", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "FOOD_AND_DRINK_OTHER_FOOD_AND_DRINK", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "VbRqQ5rLdPcn6RqVP4QdsXJG18VQ3Et9gPd3V", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "aramark.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 157.57, + "authorized_date": "2023-09-10", + "authorized_datetime": null, + "category": [ + "Shops", + "Department Stores" + ], + "category_id": "19018000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "wVy2NR88jw5Z2qro8Vo4oro8E3aErD0gDN0nZ", + "logo_url": "https://plaid-merchant-logos.plaid.com/kohls_553.png", + "name": "Kohl's", + "phone_number": null, + "type": "merchant", + "website": "kohls.com" + } + ], + "date": "2023-09-10", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": "OH", + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/kohls_553.png", + "merchant_entity_id": "wVy2NR88jw5Z2qro8Vo4oro8E3aErD0gDN0nZ", + "merchant_name": "Kohl's", + "name": "WWW.KOHLS.COM #0123", + "original_description": "WWW.KOHLS.COM #0123 012-012-0123 OH", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "HIGH", + "detailed": "GENERAL_MERCHANDISE_DEPARTMENT_STORES", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "wWnqpjJldatQbrvJydjETKPDB3J4E9cPZoVBN", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "kohls.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 56.25, + "authorized_date": "2023-09-10", + "authorized_datetime": null, + "category": [ + "Travel", + "Parking" + ], + "category_id": "22013000", + "check_number": null, + "counterparties": [], + "date": "2023-09-10", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "DIA PARKING OPERATIONS", + "original_description": "DIA PARKING OPERATIONS", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "TRANSPORTATION_PARKING", + "primary": "TRANSPORTATION" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_TRANSPORTATION.png", + "transaction_code": null, + "transaction_id": "5vK5Ng6bdetkX4dDA6NbSqZK7QDoXMu5K7dqV", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 6.38, + "authorized_date": "2023-09-10", + "authorized_datetime": null, + "category": [ + "Travel", + "Gas Stations" + ], + "category_id": "22009000", + "check_number": null, + "counterparties": [], + "date": "2023-09-10", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "01 - UNITED OIL 01", + "original_description": "01 - UNITED OIL 01", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "GENERAL_MERCHANDISE_OTHER_GENERAL_MERCHANDISE", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "JMgVz59xnlhM1pyKljkeUAXZgLJDw6IB6gJV3", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 86.7, + "authorized_date": "2023-09-10", + "authorized_datetime": null, + "category": [ + "Travel", + "Airlines and Aviation Services" + ], + "category_id": "22001000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "bMX8XMQbeoNK1jdBewBvq34JmV5wDBOLqKk74", + "logo_url": "https://plaid-merchant-logos.plaid.com/spirit_airlines_943.png", + "name": "Spirit Airlines", + "phone_number": null, + "type": "merchant", + "website": "spirit.com" + } + ], + "date": "2023-09-10", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": "FL", + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/spirit_airlines_943.png", + "merchant_entity_id": "bMX8XMQbeoNK1jdBewBvq34JmV5wDBOLqKk74", + "merchant_name": "Spirit Airlines", + "name": "Spirit Airlines", + "original_description": "SPIRIT AIRL 0123456789012345-0123456 FL", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "TRAVEL_FLIGHTS", + "primary": "TRAVEL" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_TRAVEL.png", + "transaction_code": null, + "transaction_id": "k7ZAaqkDn9IeLWvPMD3QTQmwjAae61sL6dpyv", + "transaction_type": "special", + "unofficial_currency_code": null, + "website": "spirit.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 8.7, + "authorized_date": "2023-09-10", + "authorized_datetime": null, + "category": [ + "Food and Drink" + ], + "category_id": "13000000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "m1Vm5pqramMYZD7YO4gADZ447RqaVp681jZrj", + "logo_url": "https://plaid-merchant-logos.plaid.com/jamba_juice_531.png", + "name": "Jamba Juice", + "phone_number": null, + "type": "merchant", + "website": "jamba.com" + } + ], + "date": "2023-09-10", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/jamba_juice_531.png", + "merchant_entity_id": "m1Vm5pqramMYZD7YO4gADZ447RqaVp681jZrj", + "merchant_name": "Jamba Juice", + "name": "Jamba Juice", + "original_description": "JAMBA JUICE 0123", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "FOOD_AND_DRINK_OTHER_FOOD_AND_DRINK", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "leMA4KdDbvT9Rj8aDw3ASlqwZmdvGDipod7D5", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "jamba.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 44.93, + "authorized_date": "2023-09-12", + "authorized_datetime": null, + "category": [ + "Shops", + "Food and Beverage Store" + ], + "category_id": "19025000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "qOk00LRrQ8yVVnoEpJ4KO8mZzXzRRR5wAV7Ng", + "logo_url": "https://plaid-merchant-logos.plaid.com/abc_fine_wine_spirits_1495.png", + "name": "ABC Fine Wine \u0026 Spirits", + "phone_number": null, + "type": "merchant", + "website": "abcfws.com" + } + ], + "date": "2023-09-14", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/abc_fine_wine_spirits_1495.png", + "merchant_entity_id": "qOk00LRrQ8yVVnoEpJ4KO8mZzXzRRR5wAV7Ng", + "merchant_name": "ABC Fine Wine \u0026 Spirits", + "name": "ABC Fine Wine \u0026 Spirits", + "original_description": "ABC FINE WINE/SPIRITS 012", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "HIGH", + "detailed": "FOOD_AND_DRINK_BEER_WINE_AND_LIQUOR", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "qLgAex9DKrfNjEv5oDMaFebVapMmWGhgr7M4v", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "abcfws.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 17.18, + "authorized_date": "2023-09-12", + "authorized_datetime": null, + "category": [ + "Food and Drink", + "Restaurants" + ], + "category_id": "13005000", + "check_number": null, + "counterparties": [], + "date": "2023-09-14", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "SE01234", + "original_description": "SE01234", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "GENERAL_MERCHANDISE_OTHER_GENERAL_MERCHANDISE", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "K18PB5Zdbqh17BVgqbRQhyoaA5z1deiRpAN4g", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 407.44, + "authorized_date": "2023-09-12", + "authorized_datetime": null, + "category": [ + "Shops", + "Supermarkets and Groceries" + ], + "category_id": "19047000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "J5VqjvXoRQjv5vWrMLp3YDmjOjb9ao52b1NQA", + "logo_url": "https://plaid-merchant-logos.plaid.com/hannaford_473.png", + "name": "Hannaford", + "phone_number": null, + "type": "merchant", + "website": "hannaford.com" + } + ], + "date": "2023-09-14", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": "0123" + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/hannaford_473.png", + "merchant_entity_id": "J5VqjvXoRQjv5vWrMLp3YDmjOjb9ao52b1NQA", + "merchant_name": "Hannaford", + "name": "Hannaford", + "original_description": "HANNAFORD #0123", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "FOOD_AND_DRINK_GROCERIES", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "rp8wQd9Drzc7XxVRZbBNsbxP5JMjG9i7J6M3y", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "hannaford.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 18.74, + "authorized_date": "2023-09-13", + "authorized_datetime": null, + "category": [ + "Shops", + "Music, Video and DVD" + ], + "category_id": "19036000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "mBkp5yNnWLzkODb2Xn5BO1d6RbAWNXjejEzvp", + "logo_url": "https://plaid-merchant-logos.plaid.com/vudu_1095.png", + "name": "Vudu", + "phone_number": null, + "type": "merchant", + "website": "vudu.com" + } + ], + "date": "2023-09-14", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": "CA", + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/vudu_1095.png", + "merchant_entity_id": "mBkp5yNnWLzkODb2Xn5BO1d6RbAWNXjejEzvp", + "merchant_name": "Vudu", + "name": "VUDU.COM", + "original_description": "VUDU.COM 012-012-0123 CA", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "ENTERTAINMENT_TV_AND_MOVIES", + "primary": "ENTERTAINMENT" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_ENTERTAINMENT.png", + "transaction_code": null, + "transaction_id": "zkyz8Q9rNPCXgWQeyj9pIeqPWlmJpdhlNLm4o", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "vudu.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 92.05, + "authorized_date": "2023-09-14", + "authorized_datetime": null, + "category": [ + "Shops", + "Supermarkets and Groceries" + ], + "category_id": "19047000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "E1Eqdj7BML3NLYNAO562kZj5R0J4EkQo6gYJA", + "logo_url": "https://plaid-merchant-logos.plaid.com/kroger_555.png", + "name": "Kroger", + "phone_number": null, + "type": "merchant", + "website": "kroger.com" + } + ], + "date": "2023-09-14", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/kroger_555.png", + "merchant_entity_id": "E1Eqdj7BML3NLYNAO562kZj5R0J4EkQo6gYJA", + "merchant_name": "Kroger", + "name": "Kroger", + "original_description": "KROGER 0123", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "FOOD_AND_DRINK_GROCERIES", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "B4ek869ZpGC41mDnjvVxuBdXVLjPRxC4M8jD4", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "kroger.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 37.35, + "authorized_date": "2023-09-13", + "authorized_datetime": null, + "category": [ + "Food and Drink", + "Restaurants" + ], + "category_id": "13005000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "LOW", + "entity_id": null, + "logo_url": null, + "name": "Chef", + "phone_number": null, + "type": "merchant", + "website": null + } + ], + "date": "2023-09-15", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": "Chef", + "name": "HOME CHEF", + "original_description": "HOME CHEF", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "ENTERTAINMENT_SPORTING_EVENTS_AMUSEMENT_PARKS_AND_MUSEUMS", + "primary": "ENTERTAINMENT" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_ENTERTAINMENT.png", + "transaction_code": null, + "transaction_id": "3ylJapdb3jf8nK3A1z7JF3jlmQa5LBhZlnRdm", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 14.1, + "authorized_date": "2023-09-14", + "authorized_datetime": null, + "category": [ + "Shops", + "Pharmacies" + ], + "category_id": "19043000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "XE0b15bEno6BJ1nBbaaXekBOXLeJr46q8EaKR", + "logo_url": "https://plaid-merchant-logos.plaid.com/duane_reade_303.png", + "name": "Duane Reade", + "phone_number": null, + "type": "merchant", + "website": "walgreens.com/topic/duane-reade/duane-reade.jsp" + } + ], + "date": "2023-09-15", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/duane_reade_303.png", + "merchant_entity_id": "XE0b15bEno6BJ1nBbaaXekBOXLeJr46q8EaKR", + "merchant_name": "Duane Reade", + "name": "Duane Reade", + "original_description": "DUANE READE", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "MEDICAL_PHARMACIES_AND_SUPPLEMENTS", + "primary": "MEDICAL" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_MEDICAL.png", + "transaction_code": null, + "transaction_id": "xAbKo75qa4um5aZ8zndpUMd7gW5wbxU64VBdJ", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "walgreens.com/topic/duane-reade/duane-reade.jsp" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 0.75, + "authorized_date": "2023-09-14", + "authorized_datetime": null, + "category": [ + "Travel", + "Gas Stations" + ], + "category_id": "22009000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "W3nNYqL3aLq7EJ99L8J88Mk1aRarnLWobLRJQ", + "logo_url": "https://plaid-merchant-logos.plaid.com/kum_go_558.png", + "name": "Kum \u0026 Go", + "phone_number": null, + "type": "merchant", + "website": "kumandgo.com" + } + ], + "date": "2023-09-17", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/kum_go_558.png", + "merchant_entity_id": "W3nNYqL3aLq7EJ99L8J88Mk1aRarnLWobLRJQ", + "merchant_name": "Kum \u0026 Go", + "name": "Kum \u0026 Go", + "original_description": "Kum \u0026 Go", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "TRANSPORTATION_GAS", + "primary": "TRANSPORTATION" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_TRANSPORTATION.png", + "transaction_code": null, + "transaction_id": "dx4ZK58XoWCvbXVZlNgaC9Rl5wkLExCJEQaL6", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "kumandgo.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 18.74, + "authorized_date": "2023-09-14", + "authorized_datetime": null, + "category": [ + "Service", + "Security and Safety" + ], + "category_id": "18057000", + "check_number": null, + "counterparties": [], + "date": "2023-09-19", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "SIMPLISAFE", + "original_description": "SIMPLISAFE", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "GENERAL_MERCHANDISE_PET_SUPPLIES", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "azx7A59X1gc5orV6dPw3soqAjJ3zZysZ5Q3AP", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 13.27, + "authorized_date": "2023-09-18", + "authorized_datetime": null, + "category": [ + "Food and Drink", + "Restaurants" + ], + "category_id": "13005000", + "check_number": null, + "counterparties": [], + "date": "2023-09-19", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": "01234" + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "SUBWAY # 01234", + "original_description": "SUBWAY # 01234", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "FOOD_AND_DRINK_FAST_FOOD", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "49qZ4oGbx7T873XDoebnFmlbdW4eDaFJbAMj9", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 5.63, + "authorized_date": "2023-09-18", + "authorized_datetime": null, + "category": [ + "Travel", + "Parking" + ], + "category_id": "22013000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "AypeXeN8WKnmvm7RAowe0a0Xr9b47dANe0MLk", + "logo_url": "https://plaid-merchant-logos.plaid.com/laz_parking_570.png", + "name": "LAZ Parking", + "phone_number": null, + "type": "merchant", + "website": "lazparking.com" + } + ], + "date": "2023-09-19", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/laz_parking_570.png", + "merchant_entity_id": "AypeXeN8WKnmvm7RAowe0a0Xr9b47dANe0MLk", + "merchant_name": "LAZ Parking", + "name": "LAZ PARKING 012345", + "original_description": "LAZ PARKING 012345", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "TRANSPORTATION_PARKING", + "primary": "TRANSPORTATION" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_TRANSPORTATION.png", + "transaction_code": null, + "transaction_id": "NokPd5gNlzfoV1byzGkls7JMP5G3Q9sy65KPV", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "lazparking.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 157.48, + "authorized_date": "2023-09-14", + "authorized_datetime": null, + "category": [ + "Service", + "Food and Beverage" + ], + "category_id": "18021000", + "check_number": null, + "counterparties": [], + "date": "2023-09-18", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "FRESHLY.COM", + "original_description": "FRESHLY.COM", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "FOOD_AND_DRINK_GROCERIES", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "P8n745oWK3cnXKyW31x9slDB75xZEeio6Wvpj", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + } + ], + "has_more": true, + "modified": [], + "next_cursor": "CAESJVA4bjc0NW9XSzNjblhLeVczMXg5c2xEQjc1eFpFZWlvNld2cGoiDAian63BBhDg8InkAioMCJqfrcEGEOjakKAD", + "removed": [], + "request_id": "hry51kYfYRWkuv6", + "transactions_update_status": "HISTORICAL_UPDATE_COMPLETE" + } + recorded_at: Mon, 19 May 2025 15:34:57 GMT +- request: + method: post + uri: https://sandbox.plaid.com/transactions/sync + body: + encoding: UTF-8 + string: '{"access_token":"access-sandbox-d531d3c9-8520-43ca-9e58-5b70b79fd1d4","cursor":"CAESJVA4bjc0NW9XSzNjblhLeVczMXg5c2xEQjc1eFpFZWlvNld2cGoiDAian63BBhDg8InkAioMCJqfrcEGEOjakKAD","count":100,"options":{"include_original_description":true}}' + headers: + Content-Type: + - application/json + User-Agent: + - Plaid Ruby v38.0.0 + Accept: + - application/json + Plaid-Client-Id: + - "" + Plaid-Version: + - '2020-09-14' + Plaid-Secret: + - "" + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + response: + status: + code: 200 + message: OK + headers: + Server: + - nginx + Date: + - Mon, 19 May 2025 15:34:58 GMT + Content-Type: + - application/json; charset=utf-8 + Transfer-Encoding: + - chunked + Connection: + - keep-alive + Plaid-Version: + - '2020-09-14' + Vary: + - Accept-Encoding + X-Envoy-Upstream-Service-Time: + - '402' + X-Envoy-Decorator-Operation: + - default.svc-apiv2:8080/* + Strict-Transport-Security: + - max-age=31536000; includeSubDomains; preload + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Xss-Protection: + - 1; mode=block + body: + encoding: ASCII-8BIT + string: |- + { + "accounts": [ + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "balances": { + "available": 11065.71, + "current": 1000, + "iso_currency_code": "USD", + "limit": 12200, + "unofficial_currency_code": null + }, + "holder_category": "personal", + "mask": "3053", + "name": "Test Credit Card Account", + "official_name": "Plaid credit card", + "subtype": "credit card", + "type": "credit" + } + ], + "added": [ + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 22.91, + "authorized_date": "2023-09-18", + "authorized_datetime": null, + "category": [ + "Service", + "Subscription" + ], + "category_id": "18061000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "XZAmBNLd29wbbLB49r58oD5b6y7kz5A1982j3", + "logo_url": "https://plaid-merchant-logos.plaid.com/amazon_prime_1987.png", + "name": "Amazon Prime", + "phone_number": null, + "type": "merchant", + "website": "amazon.com/amazonprime" + } + ], + "date": "2023-09-18", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": "Seattle", + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": "WA", + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/amazon_prime_1987.png", + "merchant_entity_id": "XZAmBNLd29wbbLB49r58oD5b6y7kz5A1982j3", + "merchant_name": "Amazon Prime", + "name": "Amazon Prime", + "original_description": "Amazon Prime 0123456789 WA", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "GENERAL_SERVICES_OTHER_GENERAL_SERVICES", + "primary": "GENERAL_SERVICES" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_SERVICES.png", + "transaction_code": null, + "transaction_id": "jjQ7dlP5GyCbNavw7rzpty4MQmk9opi6WLArl", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "amazon.com/amazonprime" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 547.21, + "authorized_date": "2023-09-15", + "authorized_datetime": null, + "category": [ + "Travel", + "Lodging" + ], + "category_id": "22012000", + "check_number": null, + "counterparties": [], + "date": "2023-09-16", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": "WA", + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "Hotels.com", + "original_description": "HOTELS.COM012345678901 HOTELS.COM WA", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "TRAVEL_LODGING", + "primary": "TRAVEL" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_TRAVEL.png", + "transaction_code": null, + "transaction_id": "76zXjElb4Zt8RL4DAzM9F9Zwj8GW6DCdJnp7V", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 31.27, + "authorized_date": "2023-09-18", + "authorized_datetime": null, + "category": [ + "Shops", + "Department Stores" + ], + "category_id": "19018000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "YRVgYoAb2KaAW6zYRyXkrgnYWq4Lw7eqweQWq", + "logo_url": "https://plaid-merchant-logos.plaid.com/jcpenney_533.png", + "name": "JCPenney", + "phone_number": null, + "type": "merchant", + "website": "jcpenney.com" + } + ], + "date": "2023-09-22", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/jcpenney_533.png", + "merchant_entity_id": "YRVgYoAb2KaAW6zYRyXkrgnYWq4Lw7eqweQWq", + "merchant_name": "JCPenney", + "name": "JCPenney", + "original_description": "JCPENNEY 0123", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "GENERAL_MERCHANDISE_DEPARTMENT_STORES", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "edNwr51XgAcoARVZP68vsdRGzqom9Bur95koR", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "jcpenney.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 29.54, + "authorized_date": "2023-09-18", + "authorized_datetime": null, + "category": [ + "Shops", + "Department Stores" + ], + "category_id": "19018000", + "check_number": null, + "counterparties": [], + "date": "2023-09-22", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "Target", + "original_description": "TARGET 01234567", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "GENERAL_MERCHANDISE_OTHER_GENERAL_MERCHANDISE", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "QEbZN5mMrxTnJ4XRxba9s9paZDyVQGCwm7eqN", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 19.5, + "authorized_date": "2023-09-22", + "authorized_datetime": null, + "category": [ + "Food and Drink", + "Restaurants" + ], + "category_id": "13005000", + "check_number": null, + "counterparties": [], + "date": "2023-09-22", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "THE BACKYARD", + "original_description": "THE BACKYARD", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "GENERAL_MERCHANDISE_OTHER_GENERAL_MERCHANDISE", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "ZvlBL5eMPQtnXDV6QrR9sRex8pZayMceqXldd", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 39.38, + "authorized_date": "2023-09-18", + "authorized_datetime": null, + "category": [ + "Shops", + "Digital Purchase" + ], + "category_id": "19019000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "2gOwmq9qK56K60oDm3eLrREV2B2mVadkRn8MW", + "logo_url": "https://plaid-merchant-logos.plaid.com/amazon_44.png", + "name": "Amazon", + "phone_number": null, + "type": "merchant", + "website": "amazon.com" + } + ], + "date": "2023-09-20", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/amazon_44.png", + "merchant_entity_id": "2gOwmq9qK56K60oDm3eLrREV2B2mVadkRn8MW", + "merchant_name": "Amazon", + "name": "Amazon Fresh", + "original_description": "Amazon Fresh", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "GENERAL_MERCHANDISE_ONLINE_MARKETPLACES", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "MpWPx5o4yrcpZvwQrdbMuwXJg8Eze3fL6Pyda", + "transaction_type": "digital", + "unofficial_currency_code": null, + "website": "amazon.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 5.57, + "authorized_date": "2023-09-20", + "authorized_datetime": null, + "category": [ + "Travel", + "Taxi" + ], + "category_id": "22016000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "eyg8o776k0QmNgVpAmaQj4WgzW9Qzo6O51gdd", + "logo_url": "https://plaid-merchant-logos.plaid.com/uber_1060.png", + "name": "Uber", + "phone_number": null, + "type": "merchant", + "website": "uber.com" + } + ], + "date": "2023-09-20", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": "CA", + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/uber_1060.png", + "merchant_entity_id": "eyg8o776k0QmNgVpAmaQj4WgzW9Qzo6O51gdd", + "merchant_name": "Uber", + "name": "UBER 0123456789", + "original_description": "UBER 0123456789 CA", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "TRANSPORTATION_TAXIS_AND_RIDE_SHARES", + "primary": "TRANSPORTATION" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_TRANSPORTATION.png", + "transaction_code": null, + "transaction_id": "1bXWx1mVzNcQvyzEo34JTXVmegwx94tpjeoAW", + "transaction_type": "special", + "unofficial_currency_code": null, + "website": "uber.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 8.24, + "authorized_date": "2023-09-20", + "authorized_datetime": null, + "category": [ + "Service", + "Cable" + ], + "category_id": "18009000", + "check_number": null, + "counterparties": [], + "date": "2023-09-25", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "SHOWTIME", + "original_description": "SHOWTIME", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "GENERAL_MERCHANDISE_OTHER_GENERAL_MERCHANDISE", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "LLEP35oamKfLwWGzKa8mCk6Apgx1W7ukjpaZN", + "transaction_type": "special", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 1.44, + "authorized_date": "2023-09-25", + "authorized_datetime": null, + "category": [ + "Shops", + "Department Stores" + ], + "category_id": "19018000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "wVy2NR88jw5Z2qro8Vo4oro8E3aErD0gDN0nZ", + "logo_url": "https://plaid-merchant-logos.plaid.com/kohls_553.png", + "name": "Kohl's", + "phone_number": null, + "type": "merchant", + "website": "kohls.com" + } + ], + "date": "2023-09-25", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/kohls_553.png", + "merchant_entity_id": "wVy2NR88jw5Z2qro8Vo4oro8E3aErD0gDN0nZ", + "merchant_name": "Kohl's", + "name": "Kohl's", + "original_description": "Kohl's", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "GENERAL_MERCHANDISE_DEPARTMENT_STORES", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "p1oA739DqKhR4y8Xk1ZWcxJrdLn6oGtpoVnPB", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "kohls.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 129.74, + "authorized_date": "2023-09-25", + "authorized_datetime": null, + "category": [ + "Travel", + "Airlines and Aviation Services" + ], + "category_id": "22001000", + "check_number": null, + "counterparties": [], + "date": "2023-09-25", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "SOUTHWES 0123456789012", + "original_description": "SOUTHWES 0123456789012", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "ENTERTAINMENT_SPORTING_EVENTS_AMUSEMENT_PARKS_AND_MUSEUMS", + "primary": "ENTERTAINMENT" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_ENTERTAINMENT.png", + "transaction_code": null, + "transaction_id": "oMpyjB9Dlqhb4v8gkyn6tbzMpZy5G3ioq7y6E", + "transaction_type": "special", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 71.53, + "authorized_date": "2023-09-22", + "authorized_datetime": null, + "category": [ + "Shops", + "Supermarkets and Groceries" + ], + "category_id": "19047000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "pKKvbWD169V2b0eO0BagKr0g9aKom4Ngm3XnK", + "logo_url": "https://plaid-merchant-logos.plaid.com/the_fresh_market_1007.png", + "name": "The Fresh Market", + "phone_number": null, + "type": "merchant", + "website": "thefreshmarket.com" + } + ], + "date": "2023-09-27", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": "3285 Robinhood Rd", + "city": "Winston Salem", + "country": null, + "lat": 36.115742, + "lon": -80.312691, + "postal_code": "27106", + "region": "NC", + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/the_fresh_market_1007.png", + "merchant_entity_id": "pKKvbWD169V2b0eO0BagKr0g9aKom4Ngm3XnK", + "merchant_name": "The Fresh Market", + "name": "THE FRESH MARKET 012", + "original_description": "THE FRESH MARKET 012", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "HIGH", + "detailed": "FOOD_AND_DRINK_GROCERIES", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "g4j7B5kXEnCwdLV7NzQPHV59dRBP8WcE8n1Aw", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "thefreshmarket.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 25.95, + "authorized_date": "2023-09-24", + "authorized_datetime": null, + "category": [ + "Shops", + "Digital Purchase" + ], + "category_id": "19019000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "2gOwmq9qK56K60oDm3eLrREV2B2mVadkRn8MW", + "logo_url": "https://plaid-merchant-logos.plaid.com/amazon_44.png", + "name": "Amazon", + "phone_number": null, + "type": "merchant", + "website": "amazon.com" + } + ], + "date": "2023-09-27", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/amazon_44.png", + "merchant_entity_id": "2gOwmq9qK56K60oDm3eLrREV2B2mVadkRn8MW", + "merchant_name": "Amazon", + "name": "Amazon Payments #...0123", + "original_description": "Amazon Payments #...0123", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "GENERAL_MERCHANDISE_ONLINE_MARKETPLACES", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "8lBZ7kqmNMflM6N1rBb8udzkGwyA5MuW3LmDV", + "transaction_type": "digital", + "unofficial_currency_code": null, + "website": "amazon.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 8.86, + "authorized_date": "2023-09-27", + "authorized_datetime": null, + "category": [ + "Service", + "Subscription" + ], + "category_id": "18061000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "3LEY2bJ6W1vkoaBjgVg3qBgYVEzD6p8d1dQdY", + "logo_url": "https://plaid-merchant-logos.plaid.com/netflix_675.png", + "name": "Netflix", + "phone_number": null, + "type": "merchant", + "website": "netflix.com" + } + ], + "date": "2023-09-27", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": "CA", + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/netflix_675.png", + "merchant_entity_id": "3LEY2bJ6W1vkoaBjgVg3qBgYVEzD6p8d1dQdY", + "merchant_name": "Netflix", + "name": "Netflix", + "original_description": "NETFLIX.COM NETFLIX.COM CA", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "ENTERTAINMENT_TV_AND_MOVIES", + "primary": "ENTERTAINMENT" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_ENTERTAINMENT.png", + "transaction_code": null, + "transaction_id": "EjM3A5vK8mCjLea1GE3mCyom95Prvki4xklWJ", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "netflix.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 27.06, + "authorized_date": "2023-09-22", + "authorized_datetime": null, + "category": [ + "Shops", + "Supermarkets and Groceries" + ], + "category_id": "19047000", + "check_number": null, + "counterparties": [], + "date": "2023-09-24", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "Hy-Vee", + "original_description": "HY VEE 0123", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "ENTERTAINMENT_SPORTING_EVENTS_AMUSEMENT_PARKS_AND_MUSEUMS", + "primary": "ENTERTAINMENT" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_ENTERTAINMENT.png", + "transaction_code": null, + "transaction_id": "Wm6kZ5zMajudb4XV6nyafB8VgNb3znC6Z1Ee1", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 22.4, + "authorized_date": "2023-09-24", + "authorized_datetime": null, + "category": [ + "Travel", + "Gas Stations" + ], + "category_id": "22009000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "6po0gde1LXeNwK2YoA8ajrDopp3VXW5pw9q2R", + "logo_url": "https://plaid-merchant-logos.plaid.com/kroger_fuel_556.png", + "name": "Kroger Fuel", + "phone_number": null, + "type": "merchant", + "website": "kroger.comfuel" + } + ], + "date": "2023-09-24", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/kroger_fuel_556.png", + "merchant_entity_id": "6po0gde1LXeNwK2YoA8ajrDopp3VXW5pw9q2R", + "merchant_name": "Kroger Fuel", + "name": "Kroger", + "original_description": "KROGER FUEL CTR 0123", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "TRANSPORTATION_GAS", + "primary": "TRANSPORTATION" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_TRANSPORTATION.png", + "transaction_code": null, + "transaction_id": "Aa7KgRpVLAhamWlkAvD3s8Dl5KZ7brF9rAPqP", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "kroger.comfuel" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 14.26, + "authorized_date": "2023-09-24", + "authorized_datetime": null, + "category": [ + "Shops", + "Supermarkets and Groceries" + ], + "category_id": "19047000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "Eaq3KXm0jJ61KrmMrV0aw9VaY2grqv517d3ep", + "logo_url": "https://plaid-merchant-logos.plaid.com/target_997.png", + "name": "Target", + "phone_number": null, + "type": "merchant", + "website": "target.com" + } + ], + "date": "2023-09-26", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/target_997.png", + "merchant_entity_id": "Eaq3KXm0jJ61KrmMrV0aw9VaY2grqv517d3ep", + "merchant_name": "Target", + "name": "Target", + "original_description": "TARGET.COM 012-012-0123", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "GENERAL_MERCHANDISE_SUPERSTORES", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "GeLdq5ozW9Te8Jd4MGvPT84MZDwPW7F6MP3Do", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "target.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 103.31, + "authorized_date": "2023-09-25", + "authorized_datetime": null, + "category": [ + "Travel", + "Lodging", + "Hotels and Motels" + ], + "category_id": "22012003", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "b5JD7jwmQYwpb9raKaZbLjV8903dVXaJXm5ap", + "logo_url": "https://plaid-merchant-logos.plaid.com/airbnb_29.png", + "name": "Airbnb", + "phone_number": null, + "type": "merchant", + "website": "airbnb.com" + } + ], + "date": "2023-09-26", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/airbnb_29.png", + "merchant_entity_id": "b5JD7jwmQYwpb9raKaZbLjV8903dVXaJXm5ap", + "merchant_name": "Airbnb", + "name": "AIRBNB", + "original_description": "AIRBNB", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "TRAVEL_LODGING", + "primary": "TRAVEL" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_TRAVEL.png", + "transaction_code": null, + "transaction_id": "nZLAPzwDylibQdva8jeDtG1eMJoEWbtAlWb1M", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "airbnb.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 3.99, + "authorized_date": "2023-09-24", + "authorized_datetime": null, + "category": [ + "Service", + "Entertainment" + ], + "category_id": "18018000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "1D6004robEojMNXwKpYgrRY6DrLwzea58AaYE", + "logo_url": "https://plaid-merchant-logos.plaid.com/microsoft_xbox_637.png", + "name": "Microsoft Xbox", + "phone_number": null, + "type": "merchant", + "website": "xbox.com" + } + ], + "date": "2023-09-28", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": "WA", + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/microsoft_xbox_637.png", + "merchant_entity_id": "1D6004robEojMNXwKpYgrRY6DrLwzea58AaYE", + "merchant_name": "Microsoft Xbox", + "name": "MICROSOFT*XBOX LIVE GOLD MSBILL.INFO", + "original_description": "MICROSOFT*XBOX LIVE GOLD MSBILL.INFO WA", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "ENTERTAINMENT_VIDEO_GAMES", + "primary": "ENTERTAINMENT" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_ENTERTAINMENT.png", + "transaction_code": null, + "transaction_id": "bBdylJgXLku1ryVNQ9XehxReg34KG7tmbZqAn", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "xbox.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 39.04, + "authorized_date": "2023-09-28", + "authorized_datetime": null, + "category": [ + "Food and Drink", + "Restaurants" + ], + "category_id": "13005000", + "check_number": null, + "counterparties": [], + "date": "2023-09-28", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": "01234" + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "SUBWAY # 01234", + "original_description": "SUBWAY # 01234", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "FOOD_AND_DRINK_FAST_FOOD", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "mQ1ANkbDmRfb4yvJ6npMt6LmBj1NyEcgydJBp", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 138.03, + "authorized_date": "2023-09-28", + "authorized_datetime": null, + "category": [ + "Shops", + "Food and Beverage Store" + ], + "category_id": "19025000", + "check_number": null, + "counterparties": [], + "date": "2023-09-30", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "SP * FIGS, INC.", + "original_description": "SP * FIGS, INC.", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "GENERAL_MERCHANDISE_OTHER_GENERAL_MERCHANDISE", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "yGmrge5K4NFpDQweBL4yuPM35rxdXZi46XAV6", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 3.75, + "authorized_date": "2023-09-28", + "authorized_datetime": null, + "category": [ + "Service", + "Personal Care" + ], + "category_id": "18045000", + "check_number": null, + "counterparties": [], + "date": "2023-09-30", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "QUIP NYC INC QUIP - TO", + "original_description": "QUIP NYC INC QUIP - TO", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "GENERAL_MERCHANDISE_OTHER_GENERAL_MERCHANDISE", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "9q36eAK7P1iqGMPbA34yUAZV7NmLojI4xQDdN", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 34.89, + "authorized_date": "2023-09-28", + "authorized_datetime": null, + "category": [ + "Shops", + "Supermarkets and Groceries" + ], + "category_id": "19047000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "7mk1K28bOEO76459EoRBN498DgKgdnY73qbgn", + "logo_url": "https://plaid-merchant-logos.plaid.com/trader_joes_1041.png", + "name": "Trader Joe's", + "phone_number": null, + "type": "merchant", + "website": "traderjoes.com" + } + ], + "date": "2023-09-30", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": "012" + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/trader_joes_1041.png", + "merchant_entity_id": "7mk1K28bOEO76459EoRBN498DgKgdnY73qbgn", + "merchant_name": "Trader Joe's", + "name": "Trader Joe's", + "original_description": "TRADER JOE'S #012", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "FOOD_AND_DRINK_GROCERIES", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "vEGlLPADxdT7rVvMKoxpsbozq3NxkGiq6kRyM", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "traderjoes.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 147.23, + "authorized_date": "2023-09-28", + "authorized_datetime": null, + "category": [ + "Travel", + "Airlines and Aviation Services" + ], + "category_id": "22001000", + "check_number": null, + "counterparties": [], + "date": "2023-09-30", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "JetBlue", + "original_description": "JETBLUE 0123456789012", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "ENTERTAINMENT_SPORTING_EVENTS_AMUSEMENT_PARKS_AND_MUSEUMS", + "primary": "ENTERTAINMENT" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_ENTERTAINMENT.png", + "transaction_code": null, + "transaction_id": "RWmGP5oMzdtreRojdm9zi5wEvmqNVpHapb4eQ", + "transaction_type": "special", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 5.96, + "authorized_date": "2023-09-28", + "authorized_datetime": null, + "category": [ + "Travel", + "Car and Truck Rentals" + ], + "category_id": "22005000", + "check_number": null, + "counterparties": [], + "date": "2023-09-30", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "CAR*GO", + "original_description": "CAR*GO", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "GENERAL_SERVICES_AUTOMOTIVE", + "primary": "GENERAL_SERVICES" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_SERVICES.png", + "transaction_code": null, + "transaction_id": "6RrvP8d6aQt8RdaEAwWkFbyD6lRWjLi8DX3vo", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 116.79, + "authorized_date": "2023-09-29", + "authorized_datetime": null, + "category": [ + "Travel", + "Lodging", + "Hotels and Motels" + ], + "category_id": "22012003", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "Qm3r3JjDK18jY9De5o1qANrVEyez6Kwpz8bKR", + "logo_url": "https://plaid-merchant-logos.plaid.com/marriott_611.png", + "name": "Marriott", + "phone_number": null, + "type": "merchant", + "website": "marriott.com" + } + ], + "date": "2023-09-30", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/marriott_611.png", + "merchant_entity_id": "Qm3r3JjDK18jY9De5o1qANrVEyez6Kwpz8bKR", + "merchant_name": "Marriott", + "name": "Marriott International", + "original_description": "COURTYARD BY MARRIOTT", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "TRAVEL_LODGING", + "primary": "TRAVEL" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_TRAVEL.png", + "transaction_code": null, + "transaction_id": "XyXrM5BG47fmPpGD7694U6qPyJX8decbKnEo4", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "marriott.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 4.13, + "authorized_date": "2023-09-28", + "authorized_datetime": null, + "category": [ + "Recreation", + "Arts and Entertainment" + ], + "category_id": "17001000", + "check_number": null, + "counterparties": [], + "date": "2023-10-01", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "THE UNDERGROUND", + "original_description": "THE UNDERGROUND", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "GENERAL_MERCHANDISE_OTHER_GENERAL_MERCHANDISE", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "DPZBW5VqgbFP764zbpqmSvjWJDPg3bt3WaQj1", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 4.91, + "authorized_date": "2023-09-28", + "authorized_datetime": null, + "category": [ + "Travel", + "Gas Stations" + ], + "category_id": "22009000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "BVQanABKyYJ9z2agOMKOV2gzJnXKavm10ajjg", + "logo_url": "https://plaid-merchant-logos.plaid.com/wawa_1104.png", + "name": "Wawa", + "phone_number": null, + "type": "merchant", + "website": "wawa.com" + } + ], + "date": "2023-10-01", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": "525 Burmont Rd", + "city": "Drexel Hill", + "country": null, + "lat": 39.946945, + "lon": -75.301537, + "postal_code": "19026", + "region": "PA", + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/wawa_1104.png", + "merchant_entity_id": "BVQanABKyYJ9z2agOMKOV2gzJnXKavm10ajjg", + "merchant_name": "Wawa", + "name": "WAWA 012 01234567", + "original_description": "WAWA 012 01234567", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "TRANSPORTATION_GAS", + "primary": "TRANSPORTATION" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_TRANSPORTATION.png", + "transaction_code": null, + "transaction_id": "VbRqQ5rLdPcn6RqVP4QdsXJG18VQ3Et9gPdGV", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "wawa.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 100.68, + "authorized_date": "2023-09-28", + "authorized_datetime": null, + "category": [ + "Service" + ], + "category_id": "18000000", + "check_number": null, + "counterparties": [], + "date": "2023-09-29", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "Yelp", + "original_description": "Yelp", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "GENERAL_MERCHANDISE_OTHER_GENERAL_MERCHANDISE", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "wWnqpjJldatQbrvJydjETKPDB3J4E9cPZoVnN", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 4.73, + "authorized_date": "2023-10-04", + "authorized_datetime": null, + "category": [ + "Food and Drink" + ], + "category_id": "13000000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "LOW", + "entity_id": null, + "logo_url": null, + "name": "Food", + "phone_number": null, + "type": "merchant", + "website": null + } + ], + "date": "2023-10-05", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": "Food", + "name": "USA*USA*FIVE STAR FOOD", + "original_description": "USA*USA*FIVE STAR FOOD", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "FOOD_AND_DRINK_VENDING_MACHINES", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "5vK5Ng6bdetkX4dDA6NbSqZK7QDoXMu5K7dkV", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 123.15, + "authorized_date": "2023-10-05", + "authorized_datetime": null, + "category": [ + "Shops", + "Supermarkets and Groceries" + ], + "category_id": "19047000", + "check_number": null, + "counterparties": [], + "date": "2023-10-05", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "Stater Bros. Markets", + "original_description": "STATERBROS012", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "FOOD_AND_DRINK_GROCERIES", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "JMgVz59xnlhM1pyKljkeUAXZgLJDw6IB6gJz3", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 5.64, + "authorized_date": "2023-10-05", + "authorized_datetime": null, + "category": [ + "Food and Drink", + "Restaurants", + "Fast Food" + ], + "category_id": "13005032", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "OEkMw43LJ9yzKOJqrLJyJVBY8dyYa4LqeRLLn", + "logo_url": "https://plaid-merchant-logos.plaid.com/jack_in_the_box_528.png", + "name": "Jack in the Box", + "phone_number": null, + "type": "merchant", + "website": "jackinthebox.com" + } + ], + "date": "2023-10-05", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/jack_in_the_box_528.png", + "merchant_entity_id": "OEkMw43LJ9yzKOJqrLJyJVBY8dyYa4LqeRLLn", + "merchant_name": "Jack in the Box", + "name": "Jack in the Box", + "original_description": "Jack in the Box", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "FOOD_AND_DRINK_FAST_FOOD", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "k7ZAaqkDn9IeLWvPMD3QTQmwjAae61sL6dpMv", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "jackinthebox.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 116.78, + "authorized_date": "2023-10-05", + "authorized_datetime": null, + "category": [ + "Shops", + "Supermarkets and Groceries" + ], + "category_id": "19047000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "AndorbmbMKgjOazDKwrVBAVqp889Wvy1AEJ0B", + "logo_url": "https://plaid-merchant-logos.plaid.com/heb_466.png", + "name": "H-E-B", + "phone_number": null, + "type": "merchant", + "website": "heb.com" + } + ], + "date": "2023-10-05", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": "012" + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/heb_466.png", + "merchant_entity_id": "AndorbmbMKgjOazDKwrVBAVqp889Wvy1AEJ0B", + "merchant_name": "H-E-B", + "name": "H-E-B", + "original_description": "H-E-B #012", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "FOOD_AND_DRINK_GROCERIES", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "leMA4KdDbvT9Rj8aDw3ASlqwZmdvGDipod7P5", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "heb.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 255.57, + "authorized_date": "2023-10-04", + "authorized_datetime": null, + "category": [ + "Shops", + "Clothing and Accessories" + ], + "category_id": "19012000", + "check_number": null, + "counterparties": [], + "date": "2023-10-09", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "Gap", + "original_description": "GAP ONLINE", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "GENERAL_MERCHANDISE_OTHER_GENERAL_MERCHANDISE", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "qLgAex9DKrfNjEv5oDMaFebVapMmWGhgr7Mpv", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 4.4, + "authorized_date": "2023-10-05", + "authorized_datetime": null, + "category": [ + "Food and Drink", + "Restaurants", + "Fast Food" + ], + "category_id": "13005032", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "vzWXDWBjB06j5BJoD3Jo84OJZg7JJzmqOZA22", + "logo_url": "https://plaid-merchant-logos.plaid.com/mcdonalds_619.png", + "name": "McDonald's", + "phone_number": null, + "type": "merchant", + "website": "mcdonalds.com" + } + ], + "date": "2023-10-09", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": "6729 Arlington Blvd", + "city": "Falls Church", + "country": null, + "lat": null, + "lon": null, + "postal_code": "22042", + "region": "VA", + "store_number": "0123" + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/mcdonalds_619.png", + "merchant_entity_id": "vzWXDWBjB06j5BJoD3Jo84OJZg7JJzmqOZA22", + "merchant_name": "McDonald's", + "name": "McDonald's", + "original_description": "MCDONALD'S F0123", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "FOOD_AND_DRINK_FAST_FOOD", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "K18PB5Zdbqh17BVgqbRQhyoaA5z1deiRpANdg", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "mcdonalds.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 23.74, + "authorized_date": "2023-10-05", + "authorized_datetime": null, + "category": [ + "Recreation", + "Arts and Entertainment" + ], + "category_id": "17001000", + "check_number": null, + "counterparties": [], + "date": "2023-10-06", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "RAVE 0123", + "original_description": "RAVE 0123", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "GENERAL_MERCHANDISE_OTHER_GENERAL_MERCHANDISE", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "rp8wQd9Drzc7XxVRZbBNsbxP5JMjG9i7J6M8y", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 6.47, + "authorized_date": "2023-10-06", + "authorized_datetime": null, + "category": [ + "Shops", + "Department Stores" + ], + "category_id": "19018000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "rZzNA9QKw4XAAWy9Wz0kwppkDL9B2neJgo7Wr", + "logo_url": "https://plaid-merchant-logos.plaid.com/navy_exchange_669.png", + "name": "Navy Exchange", + "phone_number": null, + "type": "merchant", + "website": "mynavyexchange.com" + } + ], + "date": "2023-10-06", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/navy_exchange_669.png", + "merchant_entity_id": "rZzNA9QKw4XAAWy9Wz0kwppkDL9B2neJgo7Wr", + "merchant_name": "Navy Exchange", + "name": "NAVY EXCHANGE 012345", + "original_description": "NAVY EXCHANGE 012345", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "GENERAL_MERCHANDISE_DEPARTMENT_STORES", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "zkyz8Q9rNPCXgWQeyj9pIeqPWlmJpdhlNLmko", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "mynavyexchange.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 524.25, + "authorized_date": "2023-10-06", + "authorized_datetime": null, + "category": [ + "Travel", + "Lodging" + ], + "category_id": "22012000", + "check_number": null, + "counterparties": [], + "date": "2023-10-06", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "SNOW.COM/VAIL RESORTS SKI", + "original_description": "SNOW.COM/VAIL RESORTS SKI", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "ENTERTAINMENT_SPORTING_EVENTS_AMUSEMENT_PARKS_AND_MUSEUMS", + "primary": "ENTERTAINMENT" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_ENTERTAINMENT.png", + "transaction_code": null, + "transaction_id": "B4ek869ZpGC41mDnjvVxuBdXVLjPRxC4M8jm4", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 173.81, + "authorized_date": "2023-10-06", + "authorized_datetime": null, + "category": [ + "Shops", + "Furniture and Home Decor" + ], + "category_id": "19027000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "p51LQXRo28X81vDv7WyX48JvrYZQ56vO3WONr", + "logo_url": "https://plaid-merchant-logos.plaid.com/homegoods_492.png", + "name": "HomeGoods", + "phone_number": null, + "type": "merchant", + "website": "homegoods.com" + } + ], + "date": "2023-10-07", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": "0123" + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/homegoods_492.png", + "merchant_entity_id": "p51LQXRo28X81vDv7WyX48JvrYZQ56vO3WONr", + "merchant_name": "HomeGoods", + "name": "HomeGoods", + "original_description": "HOMEGOODS #0123", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "HOME_IMPROVEMENT_FURNITURE", + "primary": "HOME_IMPROVEMENT" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_HOME_IMPROVEMENT.png", + "transaction_code": null, + "transaction_id": "3ylJapdb3jf8nK3A1z7JF3jlmQa5LBhZlnR4m", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "homegoods.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 20.15, + "authorized_date": "2023-10-11", + "authorized_datetime": null, + "category": [ + "Shops", + "Digital Purchase" + ], + "category_id": "19019000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "8LVAN69qv4bO21pNgv3VEZqByB2V0MOm87mMB", + "logo_url": "https://plaid-counterparty-logos.plaid.com/google_play_120.png", + "name": "Google Play Store", + "phone_number": null, + "type": "marketplace", + "website": "play.google.com/store" + } + ], + "date": "2023-10-11", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": "Google Play Store", + "name": "Target", + "original_description": "GOOGLE *Target", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": "Google Wallet", + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "MEDIUM", + "detailed": "GENERAL_MERCHANDISE_OTHER_GENERAL_MERCHANDISE", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "xAbKo75qa4um5aZ8zndpUMd7gW5wbxU64VBrJ", + "transaction_type": "digital", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 5.24, + "authorized_date": "2023-10-12", + "authorized_datetime": null, + "category": [ + "Shops", + "Computers and Electronics", + "Video Games" + ], + "category_id": "19013001", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "3oRMK5OMq55E6LeoK6JeeEQwv1Yv4e55YEVWX", + "logo_url": "https://plaid-merchant-logos.plaid.com/sony_playstation_927.png", + "name": "Sony Playstation", + "phone_number": null, + "type": "merchant", + "website": "playstation.com" + } + ], + "date": "2023-10-12", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": "CA", + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/sony_playstation_927.png", + "merchant_entity_id": "3oRMK5OMq55E6LeoK6JeeEQwv1Yv4e55YEVWX", + "merchant_name": "Sony Playstation", + "name": "Playstation", + "original_description": "PLAYSTATIONNETWORK 012-012-0123 CA", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "ENTERTAINMENT_VIDEO_GAMES", + "primary": "ENTERTAINMENT" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_ENTERTAINMENT.png", + "transaction_code": null, + "transaction_id": "dx4ZK58XoWCvbXVZlNgaC9Rl5wkLExCJEQaV6", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "playstation.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 6.83, + "authorized_date": "2023-10-12", + "authorized_datetime": null, + "category": [ + "Food and Drink", + "Restaurants", + "Fast Food" + ], + "category_id": "13005032", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "DDM7W339RYJwyjZ4A7v6O9m5jVooQWMrJoaO4", + "logo_url": "https://plaid-merchant-logos.plaid.com/jimmy_johns_539.png", + "name": "Jimmy John's", + "phone_number": null, + "type": "merchant", + "website": "jimmyjohns.com" + } + ], + "date": "2023-10-12", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": "N112 W16268 Mequon Rd", + "city": "Germantown", + "country": null, + "lat": 43.222084, + "lon": -88.111198, + "postal_code": "53022", + "region": "WI", + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/jimmy_johns_539.png", + "merchant_entity_id": "DDM7W339RYJwyjZ4A7v6O9m5jVooQWMrJoaO4", + "merchant_name": "Jimmy John's", + "name": "Jimmy Johns", + "original_description": "Jimmy Johns - 0123", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "FOOD_AND_DRINK_RESTAURANT", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "azx7A59X1gc5orV6dPw3soqAjJ3zZysZ5Q3yP", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "jimmyjohns.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 11.25, + "authorized_date": "2023-10-12", + "authorized_datetime": null, + "category": [ + "Travel", + "Parking" + ], + "category_id": "22013000", + "check_number": null, + "counterparties": [], + "date": "2023-10-16", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "PLAT PARKING - LOT 012", + "original_description": "PLAT PARKING - LOT 012", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "TRANSPORTATION_PARKING", + "primary": "TRANSPORTATION" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_TRANSPORTATION.png", + "transaction_code": null, + "transaction_id": "49qZ4oGbx7T873XDoebnFmlbdW4eDaFJbAMG9", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 99.39, + "authorized_date": "2023-10-16", + "authorized_datetime": null, + "category": [ + "Shops", + "Supermarkets and Groceries" + ], + "category_id": "19047000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "Q9BvO52amb4bJJZegYWB2XB4DYwdDqXwANVNX", + "logo_url": "https://plaid-merchant-logos.plaid.com/meijer_622.png", + "name": "Meijer", + "phone_number": null, + "type": "merchant", + "website": "meijer.com" + } + ], + "date": "2023-10-16", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": "012" + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/meijer_622.png", + "merchant_entity_id": "Q9BvO52amb4bJJZegYWB2XB4DYwdDqXwANVNX", + "merchant_name": "Meijer", + "name": "Meijer", + "original_description": "MEIJER # 012", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "FOOD_AND_DRINK_GROCERIES", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "NokPd5gNlzfoV1byzGkls7JMP5G3Q9sy65KRV", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "meijer.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 17.52, + "authorized_date": "2023-10-14", + "authorized_datetime": null, + "category": [ + "Food and Drink", + "Restaurants" + ], + "category_id": "13005000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "K172mgkYODR47W5ERMy0zbrMjMvq08qebpKMa", + "logo_url": "https://plaid-merchant-logos.plaid.com/pret_a_manger_776.png", + "name": "Pret A Manger", + "phone_number": null, + "type": "merchant", + "website": "pret.com" + } + ], + "date": "2023-10-14", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": "30 Rockefeller Plz", + "city": "New York", + "country": null, + "lat": 40.759182, + "lon": -73.979645, + "postal_code": "10112", + "region": "NY", + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/pret_a_manger_776.png", + "merchant_entity_id": "K172mgkYODR47W5ERMy0zbrMjMvq08qebpKMa", + "merchant_name": "Pret A Manger", + "name": "Pret A Manger", + "original_description": "PRET A MANGER 012", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "HIGH", + "detailed": "FOOD_AND_DRINK_RESTAURANT", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "P8n745oWK3cnXKyW31x9slDB75xZEeio6Wvqj", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "pret.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 3.1, + "authorized_date": "2023-10-14", + "authorized_datetime": null, + "category": [ + "Travel", + "Gas Stations" + ], + "category_id": "22009000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "8y7851JXryBnkOWOjW163yqzAB01oa8k6e1g9", + "logo_url": "https://plaid-merchant-logos.plaid.com/shell_891.png", + "name": "Shell", + "phone_number": null, + "type": "merchant", + "website": "shell.com" + } + ], + "date": "2023-10-15", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/shell_891.png", + "merchant_entity_id": "8y7851JXryBnkOWOjW163yqzAB01oa8k6e1g9", + "merchant_name": "Shell", + "name": "Shell", + "original_description": "SHELL OIL 012345678QPS", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "TRANSPORTATION_GAS", + "primary": "TRANSPORTATION" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_TRANSPORTATION.png", + "transaction_code": null, + "transaction_id": "jjQ7dlP5GyCbNavw7rzpty4MQmk9opi6WLAnl", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "shell.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 11.22, + "authorized_date": "2023-10-14", + "authorized_datetime": null, + "category": [ + "Shops", + "Supermarkets and Groceries" + ], + "category_id": "19047000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "DgqEw70j77DbJqybaK2rmMq6Zzwjg68J7B7zo", + "logo_url": "https://plaid-merchant-logos.plaid.com/safeway_853.png", + "name": "Safeway", + "phone_number": null, + "type": "merchant", + "website": "safeway.com" + } + ], + "date": "2023-10-15", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/safeway_853.png", + "merchant_entity_id": "DgqEw70j77DbJqybaK2rmMq6Zzwjg68J7B7zo", + "merchant_name": "Safeway", + "name": "Safeway", + "original_description": "Safeway", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "FOOD_AND_DRINK_GROCERIES", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "76zXjElb4Zt8RL4DAzM9F9Zwj8GW6DCdJnpDV", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "safeway.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 33.06, + "authorized_date": "2023-10-14", + "authorized_datetime": null, + "category": [ + "Shops", + "Digital Purchase" + ], + "category_id": "19019000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "2gOwmq9qK56K60oDm3eLrREV2B2mVadkRn8MW", + "logo_url": "https://plaid-merchant-logos.plaid.com/amazon_44.png", + "name": "Amazon", + "phone_number": null, + "type": "merchant", + "website": "amazon.com" + } + ], + "date": "2023-10-17", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/amazon_44.png", + "merchant_entity_id": "2gOwmq9qK56K60oDm3eLrREV2B2mVadkRn8MW", + "merchant_name": "Amazon", + "name": "Amazon.com #...0123", + "original_description": "Amazon.com #...0123", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "GENERAL_MERCHANDISE_ONLINE_MARKETPLACES", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "edNwr51XgAcoARVZP68vsdRGzqom9Bur95kAR", + "transaction_type": "digital", + "unofficial_currency_code": null, + "website": "amazon.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 150, + "authorized_date": "2023-10-18", + "authorized_datetime": null, + "category": [ + "Travel", + "Lodging" + ], + "category_id": "22012000", + "check_number": null, + "counterparties": [], + "date": "2023-10-18", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "DISNEY RESORTS-WDTC", + "original_description": "DISNEY RESORTS-WDTC", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "ENTERTAINMENT_SPORTING_EVENTS_AMUSEMENT_PARKS_AND_MUSEUMS", + "primary": "ENTERTAINMENT" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_ENTERTAINMENT.png", + "transaction_code": null, + "transaction_id": "QEbZN5mMrxTnJ4XRxba9s9paZDyVQGCwm7ebN", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 2.36, + "authorized_date": "2023-10-18", + "authorized_datetime": null, + "category": [ + "Travel", + "Parking" + ], + "category_id": "22013000", + "check_number": null, + "counterparties": [], + "date": "2023-10-20", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "PASSPORT PARKING", + "original_description": "PASSPORT PARKING", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "TRANSPORTATION_PARKING", + "primary": "TRANSPORTATION" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_TRANSPORTATION.png", + "transaction_code": null, + "transaction_id": "ZvlBL5eMPQtnXDV6QrR9sRex8pZayMceqXlZd", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 16.64, + "authorized_date": "2023-10-19", + "authorized_datetime": null, + "category": [ + "Service", + "Shipping and Freight" + ], + "category_id": "18058000", + "check_number": null, + "counterparties": [], + "date": "2023-10-20", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "CARGO POR INTERESES SOBRE COMPRAS", + "original_description": "CARGO POR INTERESES SOBRE COMPRAS", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "GENERAL_MERCHANDISE_OTHER_GENERAL_MERCHANDISE", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "MpWPx5o4yrcpZvwQrdbMuwXJg8Eze3fL6Pyaa", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 10.33, + "authorized_date": "2023-10-18", + "authorized_datetime": null, + "category": [ + "Food and Drink", + "Restaurants" + ], + "category_id": "13005000", + "check_number": null, + "counterparties": [], + "date": "2023-10-19", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "Subway", + "original_description": "Subway", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "FOOD_AND_DRINK_FAST_FOOD", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "1bXWx1mVzNcQvyzEo34JTXVmegwx94tpjeo6W", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 44.82, + "authorized_date": "2023-10-19", + "authorized_datetime": null, + "category": [ + "Shops", + "Clothing and Accessories", + "Shoe Store" + ], + "category_id": "19012003", + "check_number": null, + "counterparties": [], + "date": "2023-10-19", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "Payless Shoesource", + "original_description": "PAYLESS SHOESOURCE", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "GENERAL_MERCHANDISE_OTHER_GENERAL_MERCHANDISE", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "LLEP35oamKfLwWGzKa8mCk6Apgx1W7ukjpaDN", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 36.11, + "authorized_date": "2023-10-19", + "authorized_datetime": null, + "category": [ + "Travel", + "Gas Stations" + ], + "category_id": "22009000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "gKVEwLow3LyK4qbbvKn6oLvBmXXLA0y79YBBz", + "logo_url": "https://plaid-merchant-logos.plaid.com/loves_travel_stops_590.png", + "name": "Love's Travel Stops", + "phone_number": null, + "type": "merchant", + "website": "loves.com" + } + ], + "date": "2023-10-24", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/loves_travel_stops_590.png", + "merchant_entity_id": "gKVEwLow3LyK4qbbvKn6oLvBmXXLA0y79YBBz", + "merchant_name": "Love's Travel Stops", + "name": "Love's Travel Stop", + "original_description": "LOVES TRAVEL S01234567", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "TRANSPORTATION_GAS", + "primary": "TRANSPORTATION" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_TRANSPORTATION.png", + "transaction_code": null, + "transaction_id": "p1oA739DqKhR4y8Xk1ZWcxJrdLn6oGtpoVnRB", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "loves.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 140, + "authorized_date": "2023-10-19", + "authorized_datetime": null, + "category": [ + "Shops" + ], + "category_id": "19000000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "zwkjrQbbDQqZJRk3egOAo0XB7jnygNDJk9Vjz", + "logo_url": "https://plaid-counterparty-logos.plaid.com/paypal_76.png", + "name": "PayPal", + "phone_number": null, + "type": "payment_app", + "website": "paypal.com" + } + ], + "date": "2023-10-24", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "Etsy", + "original_description": "PAYPAL *ETSY", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": "PayPal", + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "GENERAL_MERCHANDISE_OTHER_GENERAL_MERCHANDISE", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "oMpyjB9Dlqhb4v8gkyn6tbzMpZy5G3ioq7yLE", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 33.56, + "authorized_date": "2023-10-19", + "authorized_datetime": null, + "category": [ + "Food and Drink", + "Restaurants" + ], + "category_id": "13005000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "RYJLRvgg1BEX5DYQvBg89zdAevEZ4kJaYoQ69", + "logo_url": "https://plaid-merchant-logos.plaid.com/texas_roadhouse_1004.png", + "name": "Texas Roadhouse", + "phone_number": null, + "type": "merchant", + "website": "texasroadhouse.com" + } + ], + "date": "2023-10-24", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/texas_roadhouse_1004.png", + "merchant_entity_id": "RYJLRvgg1BEX5DYQvBg89zdAevEZ4kJaYoQ69", + "merchant_name": "Texas Roadhouse", + "name": "Texas Roadhouse", + "original_description": "Texas Roadhouse", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "FOOD_AND_DRINK_RESTAURANT", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "g4j7B5kXEnCwdLV7NzQPHV59dRBP8WcE8n13w", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "texasroadhouse.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 14.12, + "authorized_date": "2023-10-22", + "authorized_datetime": null, + "category": [ + "Service", + "Food and Beverage" + ], + "category_id": "18021000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "YNRJg5o2djJLv52nBA1Yn1KpL858egYVo4dpm", + "logo_url": "https://plaid-counterparty-logos.plaid.com/doordash_1.png", + "name": "DoorDash", + "phone_number": null, + "type": "marketplace", + "website": "doordash.com" + } + ], + "date": "2023-10-24", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": "DoorDash", + "name": "DOORDASH", + "original_description": "DOORDASH", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "MEDIUM", + "detailed": "FOOD_AND_DRINK_RESTAURANT", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "8lBZ7kqmNMflM6N1rBb8udzkGwyA5MuW3LmdV", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 231.74, + "authorized_date": "2023-10-24", + "authorized_datetime": null, + "category": [ + "Service", + "Travel Agents and Tour Operators" + ], + "category_id": "18067000", + "check_number": null, + "counterparties": [], + "date": "2023-10-24", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "HOTWIRE-SALES FINAL", + "original_description": "HOTWIRE-SALES FINAL", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "ENTERTAINMENT_SPORTING_EVENTS_AMUSEMENT_PARKS_AND_MUSEUMS", + "primary": "ENTERTAINMENT" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_ENTERTAINMENT.png", + "transaction_code": null, + "transaction_id": "EjM3A5vK8mCjLea1GE3mCyom95Prvki4xklDJ", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 3.22, + "authorized_date": "2023-10-24", + "authorized_datetime": null, + "category": [ + "Travel", + "Gas Stations" + ], + "category_id": "22009000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "ZM4Jngp0WpL0RW228dA3EoYBbJJnADeA2jDRY", + "logo_url": "https://plaid-merchant-logos.plaid.com/texaco_1003.png", + "name": "Texaco", + "phone_number": null, + "type": "merchant", + "website": "texaco.com" + } + ], + "date": "2023-10-24", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/texaco_1003.png", + "merchant_entity_id": "ZM4Jngp0WpL0RW228dA3EoYBbJJnADeA2jDRY", + "merchant_name": "Texaco", + "name": "Texaco", + "original_description": "TEXACO 0123456", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "TRANSPORTATION_GAS", + "primary": "TRANSPORTATION" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_TRANSPORTATION.png", + "transaction_code": null, + "transaction_id": "Wm6kZ5zMajudb4XV6nyafB8VgNb3znC6Z1EL1", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "texaco.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 14.4, + "authorized_date": "2023-10-24", + "authorized_datetime": null, + "category": [ + "Shops", + "Supermarkets and Groceries" + ], + "category_id": "19047000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "LOW", + "entity_id": null, + "logo_url": null, + "name": "Food Company", + "phone_number": null, + "type": "merchant", + "website": null + } + ], + "date": "2023-10-24", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": "Food Company", + "name": "REAL FOOD COMPANY", + "original_description": "REAL FOOD COMPANY", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "FOOD_AND_DRINK_GROCERIES", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "Aa7KgRpVLAhamWlkAvD3s8Dl5KZ7brF9rAPGP", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 16.43, + "authorized_date": "2023-10-24", + "authorized_datetime": null, + "category": [ + "Travel", + "Gas Stations" + ], + "category_id": "22009000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "gKVEwLow3LyK4qbbvKn6oLvBmXXLA0y79YBBz", + "logo_url": "https://plaid-merchant-logos.plaid.com/loves_travel_stops_590.png", + "name": "Love's Travel Stops", + "phone_number": null, + "type": "merchant", + "website": "loves.com" + } + ], + "date": "2023-10-24", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/loves_travel_stops_590.png", + "merchant_entity_id": "gKVEwLow3LyK4qbbvKn6oLvBmXXLA0y79YBBz", + "merchant_name": "Love's Travel Stops", + "name": "Love's Travel Stop", + "original_description": "LOVES TRAVEL S01234567", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "TRANSPORTATION_GAS", + "primary": "TRANSPORTATION" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_TRANSPORTATION.png", + "transaction_code": null, + "transaction_id": "GeLdq5ozW9Te8Jd4MGvPT84MZDwPW7F6MP3Eo", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "loves.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 75.76, + "authorized_date": "2023-10-19", + "authorized_datetime": null, + "category": [ + "Recreation", + "Gyms and Fitness Centers" + ], + "category_id": "17018000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "1VgdDQkWvvEwemEMpaEVY6Z3Q1wdbnwbEJMz9", + "logo_url": "https://plaid-merchant-logos.plaid.com/24_hour_fitness_1.png", + "name": "24 Hour Fitness", + "phone_number": null, + "type": "merchant", + "website": "24hourfitness.com" + } + ], + "date": "2023-10-21", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": "CA", + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/24_hour_fitness_1.png", + "merchant_entity_id": "1VgdDQkWvvEwemEMpaEVY6Z3Q1wdbnwbEJMz9", + "merchant_name": "24 Hour Fitness", + "name": "24 Hour Fitness", + "original_description": "24 Hour Fitness USA, I 012-0123456 CA", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "PERSONAL_CARE_GYMS_AND_FITNESS_CENTERS", + "primary": "PERSONAL_CARE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_PERSONAL_CARE.png", + "transaction_code": null, + "transaction_id": "nZLAPzwDylibQdva8jeDtG1eMJoEWbtAlWbxM", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "24hourfitness.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 5.99, + "authorized_date": "2023-10-19", + "authorized_datetime": null, + "category": [ + "Shops", + "Digital Purchase" + ], + "category_id": "19019000", + "check_number": null, + "counterparties": [], + "date": "2023-10-21", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "ONLY FANS", + "original_description": "ONLY FANS", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "GENERAL_MERCHANDISE_OTHER_GENERAL_MERCHANDISE", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "bBdylJgXLku1ryVNQ9XehxReg34KG7tmbZqDn", + "transaction_type": "digital", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 14.96, + "authorized_date": "2023-10-21", + "authorized_datetime": null, + "category": [ + "Food and Drink", + "Restaurants", + "Fast Food" + ], + "category_id": "13005032", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "1NX0rYe8Wk8NYg6XR7eLW2LoANLXOnvk7Da9j", + "logo_url": "https://plaid-merchant-logos.plaid.com/portillos_770.png", + "name": "Portillo's", + "phone_number": null, + "type": "merchant", + "website": "portillos.com" + } + ], + "date": "2023-10-21", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": "635 1/2 W North Ave", + "city": "Villa Park", + "country": null, + "lat": null, + "lon": null, + "postal_code": "60181", + "region": "IL", + "store_number": "01" + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/portillos_770.png", + "merchant_entity_id": "1NX0rYe8Wk8NYg6XR7eLW2LoANLXOnvk7Da9j", + "merchant_name": "Portillo's", + "name": "PORTILLOS HOT DOGS #01", + "original_description": "PORTILLOS HOT DOGS #01", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "FOOD_AND_DRINK_RESTAURANT", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "mQ1ANkbDmRfb4yvJ6npMt6LmBj1NyEcgydJqp", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "portillos.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 21.74, + "authorized_date": "2023-10-21", + "authorized_datetime": null, + "category": [ + "Shops", + "Convenience Stores" + ], + "category_id": "19015000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "w32E0jpBeX97vOWgER0n2qVbzLJVm1opNMpoR", + "logo_url": "https://plaid-merchant-logos.plaid.com/7eleven_3.png", + "name": "7-Eleven", + "phone_number": null, + "type": "merchant", + "website": "7-eleven.com" + } + ], + "date": "2023-10-21", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/7eleven_3.png", + "merchant_entity_id": "w32E0jpBeX97vOWgER0n2qVbzLJVm1opNMpoR", + "merchant_name": "7-Eleven", + "name": "7-Eleven", + "original_description": "ALON 7-ELEVEN 0123", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "GENERAL_MERCHANDISE_CONVENIENCE_STORES", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "yGmrge5K4NFpDQweBL4yuPM35rxdXZi46XAN6", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "7-eleven.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 1.54, + "authorized_date": "2023-10-19", + "authorized_datetime": null, + "category": [ + "Food and Drink", + "Restaurants" + ], + "category_id": "13005000", + "check_number": null, + "counterparties": [], + "date": "2023-10-22", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "LIME", + "original_description": "LIME", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "GENERAL_MERCHANDISE_OTHER_GENERAL_MERCHANDISE", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "9q36eAK7P1iqGMPbA34yUAZV7NmLojI4xQDPN", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 7.11, + "authorized_date": "2023-10-20", + "authorized_datetime": null, + "category": [ + "Travel", + "Gas Stations" + ], + "category_id": "22009000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "W3nNYqL3aLq7EJ99L8J88Mk1aRarnLWobLRJQ", + "logo_url": "https://plaid-merchant-logos.plaid.com/kum_go_558.png", + "name": "Kum \u0026 Go", + "phone_number": null, + "type": "merchant", + "website": "kumandgo.com" + } + ], + "date": "2023-10-22", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/kum_go_558.png", + "merchant_entity_id": "W3nNYqL3aLq7EJ99L8J88Mk1aRarnLWobLRJQ", + "merchant_name": "Kum \u0026 Go", + "name": "Kum \u0026 Go", + "original_description": "Kum \u0026 Go", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "TRANSPORTATION_GAS", + "primary": "TRANSPORTATION" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_TRANSPORTATION.png", + "transaction_code": null, + "transaction_id": "vEGlLPADxdT7rVvMKoxpsbozq3NxkGiq6kR5M", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "kumandgo.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 9.42, + "authorized_date": "2023-10-21", + "authorized_datetime": null, + "category": [ + "Food and Drink", + "Restaurants", + "Coffee Shop" + ], + "category_id": "13005043", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "NZAJQ5wYdo1W1p39X5q5gpb15OMe39pj4pJBb", + "logo_url": "https://plaid-merchant-logos.plaid.com/starbucks_956.png", + "name": "Starbucks", + "phone_number": null, + "type": "merchant", + "website": "starbucks.com" + } + ], + "date": "2023-10-22", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/starbucks_956.png", + "merchant_entity_id": "NZAJQ5wYdo1W1p39X5q5gpb15OMe39pj4pJBb", + "merchant_name": "Starbucks", + "name": "Starbucks", + "original_description": "STARBUCKS STORE 01234", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "FOOD_AND_DRINK_COFFEE", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "RWmGP5oMzdtreRojdm9zi5wEvmqNVpHapb4dQ", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "starbucks.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 17.48, + "authorized_date": "2023-10-21", + "authorized_datetime": null, + "category": [ + "Service", + "Subscription" + ], + "category_id": "18061000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": null, + "logo_url": null, + "name": "WWE Network", + "phone_number": null, + "type": "merchant", + "website": null + } + ], + "date": "2023-10-22", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": "WWE Network", + "name": "WWE NETWORK", + "original_description": "WWE NETWORK", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "ENTERTAINMENT_TV_AND_MOVIES", + "primary": "ENTERTAINMENT" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_ENTERTAINMENT.png", + "transaction_code": null, + "transaction_id": "6RrvP8d6aQt8RdaEAwWkFbyD6lRWjLi8DX3wo", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 5.55, + "authorized_date": "2023-10-22", + "authorized_datetime": null, + "category": [ + "Food and Drink", + "Restaurants" + ], + "category_id": "13005000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "1WKvazzZXRpRyVQK7Lyk0wp3qNdDVVrA9aw4A", + "logo_url": "https://plaid-merchant-logos.plaid.com/applebees_66.png", + "name": "Applebee's", + "phone_number": null, + "type": "merchant", + "website": "applebees.com" + } + ], + "date": "2023-10-22", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/applebees_66.png", + "merchant_entity_id": "1WKvazzZXRpRyVQK7Lyk0wp3qNdDVVrA9aw4A", + "merchant_name": "Applebee's", + "name": "Applebee's", + "original_description": "APPLEBEES 012345678901", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "FOOD_AND_DRINK_RESTAURANT", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "XyXrM5BG47fmPpGD7694U6qPyJX8decbKnEB4", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "applebees.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 5.67, + "authorized_date": "2023-10-19", + "authorized_datetime": null, + "category": [ + "Food and Drink", + "Restaurants", + "Coffee Shop" + ], + "category_id": "13005043", + "check_number": null, + "counterparties": [ + { + "confidence_level": "LOW", + "entity_id": null, + "logo_url": null, + "name": "Coffee", + "phone_number": null, + "type": "merchant", + "website": null + }, + { + "confidence_level": "VERY_HIGH", + "entity_id": "VmnapWdRwMn50bwvEaKZRKNkQXW1LvNrwdLeW", + "logo_url": "https://plaid-counterparty-logos.plaid.com/toast_182.png", + "name": "Toast", + "phone_number": null, + "type": "payment_terminal", + "website": "pos.toasttab.com" + } + ], + "date": "2023-10-23", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": "Coffee", + "name": "TST*GREGORYS COFFEE - GC*", + "original_description": "TST*GREGORYS COFFEE - GC*", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "HIGH", + "detailed": "FOOD_AND_DRINK_COFFEE", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "DPZBW5VqgbFP764zbpqmSvjWJDPg3bt3WaQy1", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 74, + "authorized_date": "2023-10-20", + "authorized_datetime": null, + "category": [ + "Service", + "Telecommunication Services" + ], + "category_id": "18063000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "AnKWZ5q9wYnkYKg7YDrOwz04jKyEqadoo4K3m", + "logo_url": "https://plaid-merchant-logos.plaid.com/spectrum_933.png", + "name": "Spectrum", + "phone_number": null, + "type": "merchant", + "website": "spectrum.com" + } + ], + "date": "2023-10-23", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/spectrum_933.png", + "merchant_entity_id": "AnKWZ5q9wYnkYKg7YDrOwz04jKyEqadoo4K3m", + "merchant_name": "Spectrum", + "name": "BRIGHT HOUSE NETWORKS", + "original_description": "BRIGHT HOUSE NETWORKS", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "RENT_AND_UTILITIES_INTERNET_AND_CABLE", + "primary": "RENT_AND_UTILITIES" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_RENT_AND_UTILITIES.png", + "transaction_code": null, + "transaction_id": "VbRqQ5rLdPcn6RqVP4QdsXJG18VQ3Et9gPd7V", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "spectrum.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 4.88, + "authorized_date": "2023-10-21", + "authorized_datetime": null, + "category": [ + "Travel", + "Gas Stations" + ], + "category_id": "22009000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "8y7851JXryBnkOWOjW163yqzAB01oa8k6e1g9", + "logo_url": "https://plaid-merchant-logos.plaid.com/shell_891.png", + "name": "Shell", + "phone_number": null, + "type": "merchant", + "website": "shell.com" + } + ], + "date": "2023-10-23", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/shell_891.png", + "merchant_entity_id": "8y7851JXryBnkOWOjW163yqzAB01oa8k6e1g9", + "merchant_name": "Shell", + "name": "Shell", + "original_description": "Shell Oil", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "TRANSPORTATION_GAS", + "primary": "TRANSPORTATION" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_TRANSPORTATION.png", + "transaction_code": null, + "transaction_id": "wWnqpjJldatQbrvJydjETKPDB3J4E9cPZoVeN", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "shell.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 74.41, + "authorized_date": "2023-10-21", + "authorized_datetime": null, + "category": [ + "Shops", + "Supermarkets and Groceries" + ], + "category_id": "19047000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "EEbA48eL8QmaN9KZEzYXVmnwJ4z4YeJ6wOvLm", + "logo_url": "https://plaid-merchant-logos.plaid.com/food_lion_388.png", + "name": "Food Lion", + "phone_number": null, + "type": "merchant", + "website": "foodlion.com" + } + ], + "date": "2023-10-23", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": "0123" + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/food_lion_388.png", + "merchant_entity_id": "EEbA48eL8QmaN9KZEzYXVmnwJ4z4YeJ6wOvLm", + "merchant_name": "Food Lion", + "name": "Food Lion", + "original_description": "FOOD LION #0123", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "FOOD_AND_DRINK_GROCERIES", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "5vK5Ng6bdetkX4dDA6NbSqZK7QDoXMu5K7dBV", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "foodlion.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 116.85, + "authorized_date": "2023-10-21", + "authorized_datetime": null, + "category": [ + "Shops", + "Clothing and Accessories" + ], + "category_id": "19012000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "wY2K5ovrKVkJOaWaQbRW3Z2Lo2kZ1vV2YNLO6", + "logo_url": "https://plaid-merchant-logos.plaid.com/tj_maxx_1026.png", + "name": "TJ Maxx", + "phone_number": null, + "type": "merchant", + "website": "tjmaxx.com" + } + ], + "date": "2023-10-26", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": "567 Bullsboro Drive Newnan Xing", + "city": "Newnan", + "country": null, + "lat": null, + "lon": null, + "postal_code": "30263", + "region": "GA", + "store_number": "012" + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/tj_maxx_1026.png", + "merchant_entity_id": "wY2K5ovrKVkJOaWaQbRW3Z2Lo2kZ1vV2YNLO6", + "merchant_name": "TJ Maxx", + "name": "T.J.Maxx", + "original_description": "TJ MAXX #012", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "GENERAL_MERCHANDISE_DEPARTMENT_STORES", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "JMgVz59xnlhM1pyKljkeUAXZgLJDw6IB6gJ73", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "tjmaxx.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 12.22, + "authorized_date": "2023-10-24", + "authorized_datetime": null, + "category": [ + "Shops", + "Supermarkets and Groceries" + ], + "category_id": "19047000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "VJMjzL8D214p3z76Zr411N4goOLmr4MmQV1Z5", + "logo_url": "https://plaid-merchant-logos.plaid.com/smiths_917.png", + "name": "Smith's", + "phone_number": null, + "type": "merchant", + "website": "smithsfoodanddrug.com" + } + ], + "date": "2023-10-26", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/smiths_917.png", + "merchant_entity_id": "VJMjzL8D214p3z76Zr411N4goOLmr4MmQV1Z5", + "merchant_name": "Smith's", + "name": "SMITH'S FOOD 0123", + "original_description": "SMITH'S FOOD 0123", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "HIGH", + "detailed": "GENERAL_MERCHANDISE_SUPERSTORES", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "k7ZAaqkDn9IeLWvPMD3QTQmwjAae61sL6dpPv", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "smithsfoodanddrug.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 17.58, + "authorized_date": "2023-10-21", + "authorized_datetime": null, + "category": [ + "Shops", + "Supermarkets and Groceries" + ], + "category_id": "19047000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "BzJndQpm8ERB0yK25EM6n48raQaNKLK8Vkw5A", + "logo_url": "https://plaid-merchant-logos.plaid.com/vons_1093.png", + "name": "Vons", + "phone_number": null, + "type": "merchant", + "website": "vons.com" + } + ], + "date": "2023-10-25", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": "0123" + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/vons_1093.png", + "merchant_entity_id": "BzJndQpm8ERB0yK25EM6n48raQaNKLK8Vkw5A", + "merchant_name": "Vons", + "name": "Vons", + "original_description": "VONS #0123", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "FOOD_AND_DRINK_GROCERIES", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "leMA4KdDbvT9Rj8aDw3ASlqwZmdvGDipod795", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "vons.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 6.75, + "authorized_date": "2023-10-22", + "authorized_datetime": null, + "category": [ + "Shops", + "Digital Purchase" + ], + "category_id": "19019000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "2gOwmq9qK56K60oDm3eLrREV2B2mVadkRn8MW", + "logo_url": "https://plaid-merchant-logos.plaid.com/amazon_44.png", + "name": "Amazon", + "phone_number": null, + "type": "merchant", + "website": "amazon.com" + } + ], + "date": "2023-10-25", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": "WA", + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/amazon_44.png", + "merchant_entity_id": "2gOwmq9qK56K60oDm3eLrREV2B2mVadkRn8MW", + "merchant_name": "Amazon", + "name": "Amazon.com Amzn.com/bill", + "original_description": "Amazon.com Amzn.com/bill WA", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "GENERAL_MERCHANDISE_ONLINE_MARKETPLACES", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "bBdylJgXLku1ryVNQ9XehxReg34KG7tmbZqD9", + "transaction_type": "digital", + "unofficial_currency_code": null, + "website": "amazon.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 195, + "authorized_date": "2023-10-22", + "authorized_datetime": null, + "category": [ + "Food and Drink", + "Restaurants" + ], + "category_id": "13005000", + "check_number": null, + "counterparties": [], + "date": "2023-10-25", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "MCTV CPI SUPERNET", + "original_description": "MCTV CPI SUPERNET", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "GENERAL_MERCHANDISE_OTHER_GENERAL_MERCHANDISE", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "mQ1ANkbDmRfb4yvJ6npMt6LmBj1NyEcgydJqR", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 5.42, + "authorized_date": "2023-10-25", + "authorized_datetime": null, + "category": [ + "Food and Drink", + "Restaurants" + ], + "category_id": "13005000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "EZ92VM3NzEaVdzq5eRB2YOb14a3OYk3gRvyZQ", + "logo_url": "https://plaid-counterparty-logos.plaid.com/uber_eats_2.png", + "name": "Uber Eats", + "phone_number": null, + "type": "marketplace", + "website": "ubereats.com" + } + ], + "date": "2023-10-25", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": "CA", + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": "Uber Eats", + "name": "Uber Eats", + "original_description": "UBER EATS HELP.UBER.COM CA", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "FOOD_AND_DRINK_RESTAURANT", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "yGmrge5K4NFpDQweBL4yuPM35rxdXZi46XANr", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 24.14, + "authorized_date": "2023-10-24", + "authorized_datetime": null, + "category": [ + "Food and Drink", + "Restaurants" + ], + "category_id": "13005000", + "check_number": null, + "counterparties": [], + "date": "2023-10-27", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "RITUAL EFW", + "original_description": "RITUAL EFW", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "GENERAL_MERCHANDISE_OTHER_GENERAL_MERCHANDISE", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "9q36eAK7P1iqGMPbA34yUAZV7NmLojI4xQDPR", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 87.26, + "authorized_date": "2023-10-24", + "authorized_datetime": null, + "category": [ + "Shops", + "Beauty Products" + ], + "category_id": "19006000", + "check_number": null, + "counterparties": [], + "date": "2023-10-27", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "ULTA.COM", + "original_description": "ULTA.COM", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "GENERAL_MERCHANDISE_OTHER_GENERAL_MERCHANDISE", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "vEGlLPADxdT7rVvMKoxpsbozq3NxkGiq6kR5q", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 82.49, + "authorized_date": "2023-10-25", + "authorized_datetime": null, + "category": [ + "Shops", + "Warehouses and Wholesale Stores" + ], + "category_id": "19051000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "pBowAoZJMM9DKR37jvNmzM4yWBBXyMzV2rM3A", + "logo_url": "https://plaid-merchant-logos.plaid.com/costco_235.png", + "name": "Costco", + "phone_number": null, + "type": "merchant", + "website": "costco.com" + } + ], + "date": "2023-10-27", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/costco_235.png", + "merchant_entity_id": "pBowAoZJMM9DKR37jvNmzM4yWBBXyMzV2rM3A", + "merchant_name": "Costco", + "name": "Costco", + "original_description": "WWW COSTCO COM", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "GENERAL_MERCHANDISE_SUPERSTORES", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "RWmGP5oMzdtreRojdm9zi5wEvmqNVpHapb4dP", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "costco.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 18.36, + "authorized_date": "2023-10-24", + "authorized_datetime": null, + "category": [ + "Shops", + "Supermarkets and Groceries" + ], + "category_id": "19047000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "E1Eqdj7BML3NLYNAO562kZj5R0J4EkQo6gYJA", + "logo_url": "https://plaid-merchant-logos.plaid.com/kroger_555.png", + "name": "Kroger", + "phone_number": null, + "type": "merchant", + "website": "kroger.com" + } + ], + "date": "2023-10-28", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/kroger_555.png", + "merchant_entity_id": "E1Eqdj7BML3NLYNAO562kZj5R0J4EkQo6gYJA", + "merchant_name": "Kroger", + "name": "Kroger", + "original_description": "KROGER 012", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "FOOD_AND_DRINK_GROCERIES", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "6RrvP8d6aQt8RdaEAwWkFbyD6lRWjLi8DX3wb", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "kroger.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 61.74, + "authorized_date": "2023-10-25", + "authorized_datetime": null, + "category": [ + "Shops", + "Beauty Products" + ], + "category_id": "19006000", + "check_number": null, + "counterparties": [], + "date": "2023-10-30", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "ULTA.COM", + "original_description": "ULTA.COM", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "GENERAL_MERCHANDISE_OTHER_GENERAL_MERCHANDISE", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "XyXrM5BG47fmPpGD7694U6qPyJX8decbKnEBx", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 1.61, + "authorized_date": "2023-10-25", + "authorized_datetime": null, + "category": [ + "Shops", + "Arts and Crafts" + ], + "category_id": "19003000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "aJdOrmqbvDQjzZ3NydaRKJe7bmLzB5D1wOqJM", + "logo_url": "https://plaid-merchant-logos.plaid.com/joann_stores_540.png", + "name": "Jo-Ann Stores", + "phone_number": null, + "type": "merchant", + "website": "joann.com" + } + ], + "date": "2023-10-29", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": "6200 Greenbelt Rd", + "city": "Greenbelt", + "country": null, + "lat": 38.998837, + "lon": -76.907181, + "postal_code": "20770", + "region": "MD", + "store_number": "0123" + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/joann_stores_540.png", + "merchant_entity_id": "aJdOrmqbvDQjzZ3NydaRKJe7bmLzB5D1wOqJM", + "merchant_name": "Jo-Ann Stores", + "name": "Joann Fabric \u0026 Crafts", + "original_description": "JOANN STORES #0123", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "GENERAL_MERCHANDISE_GIFTS_AND_NOVELTIES", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "DPZBW5VqgbFP764zbpqmSvjWJDPg3bt3WaQyn", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "joann.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 21.09, + "authorized_date": "2023-10-26", + "authorized_datetime": null, + "category": [ + "Shops", + "Food and Beverage Store" + ], + "category_id": "19025000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "OvJvDwD1QwwjjgXvKXw2MdNAVLW9K6VEevKV5", + "logo_url": "https://plaid-merchant-logos.plaid.com/gnc_437.png", + "name": "GNC", + "phone_number": null, + "type": "merchant", + "website": "gnc.com" + } + ], + "date": "2023-10-29", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/gnc_437.png", + "merchant_entity_id": "OvJvDwD1QwwjjgXvKXw2MdNAVLW9K6VEevKV5", + "merchant_name": "GNC", + "name": "GNC", + "original_description": "GNC", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "MEDICAL_PHARMACIES_AND_SUPPLEMENTS", + "primary": "MEDICAL" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_MEDICAL.png", + "transaction_code": null, + "transaction_id": "VbRqQ5rLdPcn6RqVP4QdsXJG18VQ3Et9gPd7o", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "gnc.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 1.75, + "authorized_date": "2023-10-26", + "authorized_datetime": null, + "category": [ + "Travel", + "Parking" + ], + "category_id": "22013000", + "check_number": null, + "counterparties": [], + "date": "2023-10-31", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "PARKINGMETER* 0123456789", + "original_description": "PARKINGMETER* 0123456789", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "TRANSPORTATION_PARKING", + "primary": "TRANSPORTATION" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_TRANSPORTATION.png", + "transaction_code": null, + "transaction_id": "wWnqpjJldatQbrvJydjETKPDB3J4E9cPZoVeQ", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 44.75, + "authorized_date": "2023-10-27", + "authorized_datetime": null, + "category": [ + "Travel", + "Gas Stations" + ], + "category_id": "22009000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "23RyL8D2rXXAjvJ6VddN6qEg89NDvK2BJw0mq", + "logo_url": "https://plaid-merchant-logos.plaid.com/bjs_wholesale_club_fuel_120.png", + "name": "BJ's Wholesale Club Fuel", + "phone_number": null, + "type": "merchant", + "website": "bjs.com/gas" + } + ], + "date": "2023-10-31", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": "8811 Brier Creek Pkwy", + "city": "Raleigh", + "country": null, + "lat": 35.902161, + "lon": -78.788681, + "postal_code": "27617", + "region": "NC", + "store_number": "0123" + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/bjs_wholesale_club_fuel_120.png", + "merchant_entity_id": "23RyL8D2rXXAjvJ6VddN6qEg89NDvK2BJw0mq", + "merchant_name": "BJ's Wholesale Club Fuel", + "name": "BJS FUEL #0123", + "original_description": "BJS FUEL #0123", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "TRANSPORTATION_GAS", + "primary": "TRANSPORTATION" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_TRANSPORTATION.png", + "transaction_code": null, + "transaction_id": "5vK5Ng6bdetkX4dDA6NbSqZK7QDoXMu5K7dBJ", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "bjs.com/gas" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 29.09, + "authorized_date": "2023-10-29", + "authorized_datetime": null, + "category": [ + "Service", + "Food and Beverage" + ], + "category_id": "18021000", + "check_number": null, + "counterparties": [], + "date": "2023-10-31", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "GROVE/EPANTRY", + "original_description": "GROVE/EPANTRY", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "GENERAL_MERCHANDISE_OTHER_GENERAL_MERCHANDISE", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "JMgVz59xnlhM1pyKljkeUAXZgLJDw6IB6gJ7w", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 75.88, + "authorized_date": "2023-10-30", + "authorized_datetime": null, + "category": [ + "Shops", + "Beauty Products" + ], + "category_id": "19006000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "54BEBKODKVz74OKna46dv2ZQDWnNRb1572Lp9", + "logo_url": "https://plaid-merchant-logos.plaid.com/ulta_beauty_1062.png", + "name": "Ulta Beauty", + "phone_number": null, + "type": "merchant", + "website": "ulta.com" + } + ], + "date": "2023-10-31", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": "012" + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/ulta_beauty_1062.png", + "merchant_entity_id": "54BEBKODKVz74OKna46dv2ZQDWnNRb1572Lp9", + "merchant_name": "Ulta Beauty", + "name": "ULTA", + "original_description": "ULTA #012", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "PERSONAL_CARE_HAIR_AND_BEAUTY", + "primary": "PERSONAL_CARE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_PERSONAL_CARE.png", + "transaction_code": null, + "transaction_id": "k7ZAaqkDn9IeLWvPMD3QTQmwjAae61sL6dpPR", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "ulta.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 7.52, + "authorized_date": "2023-10-30", + "authorized_datetime": null, + "category": [ + "Recreation", + "Arts and Entertainment" + ], + "category_id": "17001000", + "check_number": null, + "counterparties": [], + "date": "2023-10-31", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "TFI*TICKETFLY EVENTS", + "original_description": "TFI*TICKETFLY EVENTS", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "ENTERTAINMENT_SPORTING_EVENTS_AMUSEMENT_PARKS_AND_MUSEUMS", + "primary": "ENTERTAINMENT" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_ENTERTAINMENT.png", + "transaction_code": null, + "transaction_id": "leMA4KdDbvT9Rj8aDw3ASlqwZmdvGDipod79G", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 156.92, + "authorized_date": "2023-10-27", + "authorized_datetime": null, + "category": [ + "Shops", + "Department Stores" + ], + "category_id": "19018000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "bN0wJ6wvppDz375EzNJNQv9bBODam4qWOrE3k", + "logo_url": "https://plaid-merchant-logos.plaid.com/nordstrom_684.png", + "name": "Nordstrom", + "phone_number": null, + "type": "merchant", + "website": "nordstrom.com" + } + ], + "date": "2023-11-01", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": "0123" + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/nordstrom_684.png", + "merchant_entity_id": "bN0wJ6wvppDz375EzNJNQv9bBODam4qWOrE3k", + "merchant_name": "Nordstrom", + "name": "Nordstrom Rack", + "original_description": "NORDSTROM RACK #0123", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "GENERAL_MERCHANDISE_DEPARTMENT_STORES", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "qLgAex9DKrfNjEv5oDMaFebVapMmWGhgr7Mbe", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "nordstrom.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 4.85, + "authorized_date": "2023-11-01", + "authorized_datetime": null, + "category": [ + "Service", + "Subscription" + ], + "category_id": "18061000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "ZzO1V6gJ8KbO926KrNYONbQqobXpgjWnA28nR", + "logo_url": "https://plaid-merchant-logos.plaid.com/hulu_504.png", + "name": "Hulu", + "phone_number": null, + "type": "merchant", + "website": "hulu.com" + } + ], + "date": "2023-11-05", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/hulu_504.png", + "merchant_entity_id": "ZzO1V6gJ8KbO926KrNYONbQqobXpgjWnA28nR", + "merchant_name": "Hulu", + "name": "Hulu", + "original_description": "Hulu", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "ENTERTAINMENT_TV_AND_MOVIES", + "primary": "ENTERTAINMENT" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_ENTERTAINMENT.png", + "transaction_code": null, + "transaction_id": "K18PB5Zdbqh17BVgqbRQhyoaA5z1deiRpANw4", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "hulu.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 20.62, + "authorized_date": "2023-11-03", + "authorized_datetime": null, + "category": [ + "Shops", + "Hardware Store" + ], + "category_id": "19030000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "gKVNZovgmgR83m9NWdeBE9WL28w8EJy3MamQv", + "logo_url": "https://plaid-merchant-logos.plaid.com/menards_625.png", + "name": "Menards", + "phone_number": null, + "type": "merchant", + "website": "menards.com" + } + ], + "date": "2023-11-05", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/menards_625.png", + "merchant_entity_id": "gKVNZovgmgR83m9NWdeBE9WL28w8EJy3MamQv", + "merchant_name": "Menards", + "name": "Menards", + "original_description": "Menards", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "HOME_IMPROVEMENT_FURNITURE", + "primary": "HOME_IMPROVEMENT" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_HOME_IMPROVEMENT.png", + "transaction_code": null, + "transaction_id": "rp8wQd9Drzc7XxVRZbBNsbxP5JMjG9i7J6MK8", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "menards.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 24.48, + "authorized_date": "2023-11-03", + "authorized_datetime": null, + "category": [ + "Travel", + "Car Service", + "Ride Share" + ], + "category_id": "22006001", + "check_number": null, + "counterparties": [], + "date": "2023-11-05", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "UberBV", + "original_description": "UberBV", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "GENERAL_MERCHANDISE_OTHER_GENERAL_MERCHANDISE", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "zkyz8Q9rNPCXgWQeyj9pIeqPWlmJpdhlNLmPP", + "transaction_type": "special", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 43.77, + "authorized_date": "2023-11-03", + "authorized_datetime": null, + "category": [ + "Travel", + "Gas Stations" + ], + "category_id": "22009000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "8y7851JXryBnkOWOjW163yqzAB01oa8k6e1g9", + "logo_url": "https://plaid-merchant-logos.plaid.com/shell_891.png", + "name": "Shell", + "phone_number": null, + "type": "merchant", + "website": "shell.com" + } + ], + "date": "2023-11-03", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/shell_891.png", + "merchant_entity_id": "8y7851JXryBnkOWOjW163yqzAB01oa8k6e1g9", + "merchant_name": "Shell", + "name": "Shell", + "original_description": "SHELL", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "TRANSPORTATION_GAS", + "primary": "TRANSPORTATION" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_TRANSPORTATION.png", + "transaction_code": null, + "transaction_id": "B4ek869ZpGC41mDnjvVxuBdXVLjPRxC4M8g33", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "shell.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 47.25, + "authorized_date": "2023-11-03", + "authorized_datetime": null, + "category": [ + "Travel", + "Gas Stations" + ], + "category_id": "22009000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "wkW8w9jD57qVwvyDKoWr2A2Ve84ABrMDXv35p", + "logo_url": "https://plaid-merchant-logos.plaid.com/sheetz_889.png", + "name": "Sheetz", + "phone_number": null, + "type": "merchant", + "website": "sheetz.com" + } + ], + "date": "2023-11-03", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/sheetz_889.png", + "merchant_entity_id": "wkW8w9jD57qVwvyDKoWr2A2Ve84ABrMDXv35p", + "merchant_name": "Sheetz", + "name": "Sheetz", + "original_description": "SHEETZ 01234567", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "TRANSPORTATION_GAS", + "primary": "TRANSPORTATION" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_TRANSPORTATION.png", + "transaction_code": null, + "transaction_id": "3ylJapdb3jf8nK3A1z7JF3jlmQa5LBhZlnE9k", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "sheetz.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 19.28, + "authorized_date": "2023-11-03", + "authorized_datetime": null, + "category": [ + "Recreation", + "Arts and Entertainment", + "Movie Theatres" + ], + "category_id": "17001009", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "nADWWmL6e6BBZZLzvkvQn3evqKj61KrZanN1O", + "logo_url": "https://plaid-merchant-logos.plaid.com/amc_theatres_49.png", + "name": "AMC Theatres", + "phone_number": null, + "type": "merchant", + "website": "amctheatres.com" + } + ], + "date": "2023-11-07", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": "KS", + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/amc_theatres_49.png", + "merchant_entity_id": "nADWWmL6e6BBZZLzvkvQn3evqKj61KrZanN1O", + "merchant_name": "AMC Theatres", + "name": "0123 AMC ONLINE", + "original_description": "0123 AMC ONLINE 012-012-0123 KS", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "ENTERTAINMENT_TV_AND_MOVIES", + "primary": "ENTERTAINMENT" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_ENTERTAINMENT.png", + "transaction_code": null, + "transaction_id": "xAbKo75qa4um5aZ8zndpUMd7gW5wbxU64VeD8", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "amctheatres.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 11.36, + "authorized_date": "2023-11-06", + "authorized_datetime": null, + "category": [ + "Service", + "Subscription" + ], + "category_id": "18061000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "3LEY2bJ6W1vkoaBjgVg3qBgYVEzD6p8d1dQdY", + "logo_url": "https://plaid-merchant-logos.plaid.com/netflix_675.png", + "name": "Netflix", + "phone_number": null, + "type": "merchant", + "website": "netflix.com" + } + ], + "date": "2023-11-07", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/netflix_675.png", + "merchant_entity_id": "3LEY2bJ6W1vkoaBjgVg3qBgYVEzD6p8d1dQdY", + "merchant_name": "Netflix", + "name": "Netflix", + "original_description": "Netflix.com", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "ENTERTAINMENT_TV_AND_MOVIES", + "primary": "ENTERTAINMENT" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_ENTERTAINMENT.png", + "transaction_code": null, + "transaction_id": "dx4ZK58XoWCvbXVZlNgaC9Rl5wkLExCJEQR4m", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "netflix.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 11.22, + "authorized_date": "2023-11-06", + "authorized_datetime": null, + "category": [ + "Travel", + "Gas Stations" + ], + "category_id": "22009000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "wkW8w9jD57qVwvyDKoWr2A2Ve84ABrMDXv35p", + "logo_url": "https://plaid-merchant-logos.plaid.com/sheetz_889.png", + "name": "Sheetz", + "phone_number": null, + "type": "merchant", + "website": "sheetz.com" + } + ], + "date": "2023-11-07", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/sheetz_889.png", + "merchant_entity_id": "wkW8w9jD57qVwvyDKoWr2A2Ve84ABrMDXv35p", + "merchant_name": "Sheetz", + "name": "Sheetz", + "original_description": "SHEETZ 01234567", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "TRANSPORTATION_GAS", + "primary": "TRANSPORTATION" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_TRANSPORTATION.png", + "transaction_code": null, + "transaction_id": "azx7A59X1gc5orV6dPw3soqAjJ3zZysZ5QDgx", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "sheetz.com" + } + ], + "has_more": true, + "modified": [], + "next_cursor": "CAESJWF6eDdBNTlYMWdjNW9yVjZkUHczc29xQWpKM3paeXNaNVFEZ3giDAian63BBhDg8InkAioMCJqfrcEGEOjakKAD", + "removed": [], + "request_id": "gqx2HSlFj1Ict8x", + "transactions_update_status": "HISTORICAL_UPDATE_COMPLETE" + } + recorded_at: Mon, 19 May 2025 15:34:58 GMT +- request: + method: post + uri: https://sandbox.plaid.com/transactions/sync + body: + encoding: UTF-8 + string: '{"access_token":"access-sandbox-d531d3c9-8520-43ca-9e58-5b70b79fd1d4","cursor":"CAESJWF6eDdBNTlYMWdjNW9yVjZkUHczc29xQWpKM3paeXNaNVFEZ3giDAian63BBhDg8InkAioMCJqfrcEGEOjakKAD","count":100,"options":{"include_original_description":true}}' + headers: + Content-Type: + - application/json + User-Agent: + - Plaid Ruby v38.0.0 + Accept: + - application/json + Plaid-Client-Id: + - "" + Plaid-Version: + - '2020-09-14' + Plaid-Secret: + - "" + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + response: + status: + code: 200 + message: OK + headers: + Server: + - nginx + Date: + - Mon, 19 May 2025 15:34:58 GMT + Content-Type: + - application/json; charset=utf-8 + Transfer-Encoding: + - chunked + Connection: + - keep-alive + Plaid-Version: + - '2020-09-14' + Vary: + - Accept-Encoding + X-Envoy-Upstream-Service-Time: + - '389' + X-Envoy-Decorator-Operation: + - default.svc-apiv2:8080/* + Strict-Transport-Security: + - max-age=31536000; includeSubDomains; preload + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Xss-Protection: + - 1; mode=block + body: + encoding: ASCII-8BIT + string: |- + { + "accounts": [ + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "balances": { + "available": 11065.71, + "current": 1000, + "iso_currency_code": "USD", + "limit": 12200, + "unofficial_currency_code": null + }, + "holder_category": "personal", + "mask": "3053", + "name": "Test Credit Card Account", + "official_name": "Plaid credit card", + "subtype": "credit card", + "type": "credit" + } + ], + "added": [ + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 3.75, + "authorized_date": "2023-11-06", + "authorized_datetime": null, + "category": [ + "Food and Drink", + "Restaurants" + ], + "category_id": "13005000", + "check_number": null, + "counterparties": [], + "date": "2023-11-06", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "PARKWHIZ, INC.", + "original_description": "PARKWHIZ, INC.", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "ENTERTAINMENT_SPORTING_EVENTS_AMUSEMENT_PARKS_AND_MUSEUMS", + "primary": "ENTERTAINMENT" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_ENTERTAINMENT.png", + "transaction_code": null, + "transaction_id": "49qZ4oGbx7T873XDoebnFmlbdW4eDaFJbALa7", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 31.95, + "authorized_date": "2023-11-06", + "authorized_datetime": null, + "category": [ + "Shops", + "Beauty Products" + ], + "category_id": "19006000", + "check_number": null, + "counterparties": [], + "date": "2023-11-11", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "ULTA.COM", + "original_description": "ULTA.COM", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "GENERAL_MERCHANDISE_OTHER_GENERAL_MERCHANDISE", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "NokPd5gNlzfoV1byzGkls7JMP5G3Q9sy65QM5", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 8.99, + "authorized_date": "2023-11-10", + "authorized_datetime": null, + "category": [ + "Service", + "Subscription" + ], + "category_id": "18061000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "ZzO1V6gJ8KbO926KrNYONbQqobXpgjWnA28nR", + "logo_url": "https://plaid-merchant-logos.plaid.com/hulu_504.png", + "name": "Hulu", + "phone_number": null, + "type": "merchant", + "website": "hulu.com" + } + ], + "date": "2023-11-11", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/hulu_504.png", + "merchant_entity_id": "ZzO1V6gJ8KbO926KrNYONbQqobXpgjWnA28nR", + "merchant_name": "Hulu", + "name": "HLU*Hulu 012345678901-U", + "original_description": "HLU*Hulu 012345678901-U", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "ENTERTAINMENT_TV_AND_MOVIES", + "primary": "ENTERTAINMENT" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_ENTERTAINMENT.png", + "transaction_code": null, + "transaction_id": "P8n745oWK3cnXKyW31x9slDB75xZEeio6WAzv", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "hulu.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 15, + "authorized_date": "2023-11-11", + "authorized_datetime": null, + "category": [ + "Travel", + "Public Transportation Services" + ], + "category_id": "22014000", + "check_number": null, + "counterparties": [], + "date": "2023-11-11", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": "01th St", + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "BART-CLIPPER 01TH ST", + "original_description": "BART-CLIPPER 01TH ST", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "TRANSPORTATION_PUBLIC_TRANSIT", + "primary": "TRANSPORTATION" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_TRANSPORTATION.png", + "transaction_code": null, + "transaction_id": "jjQ7dlP5GyCbNavw7rzpty4MQmk9opi6WLaJa", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 3.75, + "authorized_date": "2023-11-07", + "authorized_datetime": null, + "category": [ + "Shops", + "Computers and Electronics" + ], + "category_id": "19013000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "wQn4M4dwnYzpK156NqjykAN4DJ0KbrEOLZZ8W", + "logo_url": "https://plaid-merchant-logos.plaid.com/microsoft_635.png", + "name": "Microsoft", + "phone_number": null, + "type": "merchant", + "website": "microsoft.com" + } + ], + "date": "2023-11-12", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/microsoft_635.png", + "merchant_entity_id": "wQn4M4dwnYzpK156NqjykAN4DJ0KbrEOLZZ8W", + "merchant_name": "Microsoft", + "name": "Microsoft", + "original_description": "Microsoft", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "GENERAL_MERCHANDISE_ELECTRONICS", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "76zXjElb4Zt8RL4DAzM9F9Zwj8GW6DCdJnxXB", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "microsoft.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 33.14, + "authorized_date": "2023-11-10", + "authorized_datetime": null, + "category": [ + "Travel", + "Gas Stations" + ], + "category_id": "22009000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "dr39NnJ5V3EZ9W21yQraB82bk9Bdwo6vwO7aD", + "logo_url": "https://plaid-merchant-logos.plaid.com/sunoco_977.png", + "name": "Sunoco", + "phone_number": null, + "type": "merchant", + "website": "sunoco.com" + } + ], + "date": "2023-11-12", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/sunoco_977.png", + "merchant_entity_id": "dr39NnJ5V3EZ9W21yQraB82bk9Bdwo6vwO7aD", + "merchant_name": "Sunoco", + "name": "Sunoco", + "original_description": "Sunoco Gas", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "TRANSPORTATION_GAS", + "primary": "TRANSPORTATION" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_TRANSPORTATION.png", + "transaction_code": null, + "transaction_id": "edNwr51XgAcoARVZP68vsdRGzqom9Bur95mWv", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "sunoco.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 2.23, + "authorized_date": "2023-11-10", + "authorized_datetime": null, + "category": [ + "Food and Drink", + "Restaurants", + "Fast Food" + ], + "category_id": "13005032", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "vzWXDWBjB06j5BJoD3Jo84OJZg7JJzmqOZA22", + "logo_url": "https://plaid-merchant-logos.plaid.com/mcdonalds_619.png", + "name": "McDonald's", + "phone_number": null, + "type": "merchant", + "website": "mcdonalds.com" + } + ], + "date": "2023-11-12", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/mcdonalds_619.png", + "merchant_entity_id": "vzWXDWBjB06j5BJoD3Jo84OJZg7JJzmqOZA22", + "merchant_name": "McDonald's", + "name": "McDonald's", + "original_description": "McDonald's", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "FOOD_AND_DRINK_FAST_FOOD", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "QEbZN5mMrxTnJ4XRxba9s9paZDyVQGCwm7DK6", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "mcdonalds.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 273.75, + "authorized_date": "2023-11-10", + "authorized_datetime": null, + "category": [ + "Service", + "Cable" + ], + "category_id": "18009000", + "check_number": null, + "counterparties": [], + "date": "2023-11-12", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "OPTIMUM 0123", + "original_description": "OPTIMUM 0123", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "GENERAL_MERCHANDISE_OTHER_GENERAL_MERCHANDISE", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "ZvlBL5eMPQtnXDV6QrR9sRex8pZayMceqXG7q", + "transaction_type": "special", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 9.95, + "authorized_date": "2023-11-11", + "authorized_datetime": null, + "category": [ + "Travel", + "Taxi" + ], + "category_id": "22016000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "eyg8o776k0QmNgVpAmaQj4WgzW9Qzo6O51gdd", + "logo_url": "https://plaid-merchant-logos.plaid.com/uber_1060.png", + "name": "Uber", + "phone_number": null, + "type": "merchant", + "website": "uber.com" + } + ], + "date": "2023-11-12", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": "CA", + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/uber_1060.png", + "merchant_entity_id": "eyg8o776k0QmNgVpAmaQj4WgzW9Qzo6O51gdd", + "merchant_name": "Uber", + "name": "Uber", + "original_description": "UBER TRIP 0123456789 CA", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "TRANSPORTATION_TAXIS_AND_RIDE_SHARES", + "primary": "TRANSPORTATION" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_TRANSPORTATION.png", + "transaction_code": null, + "transaction_id": "MpWPx5o4yrcpZvwQrdbMuwXJg8Eze3fL6P1Qg", + "transaction_type": "special", + "unofficial_currency_code": null, + "website": "uber.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 66.43, + "authorized_date": "2023-11-10", + "authorized_datetime": null, + "category": [ + "Shops", + "Furniture and Home Decor" + ], + "category_id": "19027000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "p51LQXRo28X81vDv7WyX48JvrYZQ56vO3WONr", + "logo_url": "https://plaid-merchant-logos.plaid.com/homegoods_492.png", + "name": "HomeGoods", + "phone_number": null, + "type": "merchant", + "website": "homegoods.com" + } + ], + "date": "2023-11-10", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": "0123" + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/homegoods_492.png", + "merchant_entity_id": "p51LQXRo28X81vDv7WyX48JvrYZQ56vO3WONr", + "merchant_name": "HomeGoods", + "name": "HomeGoods", + "original_description": "HOMEGOODS # 0123", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "HOME_IMPROVEMENT_FURNITURE", + "primary": "HOME_IMPROVEMENT" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_HOME_IMPROVEMENT.png", + "transaction_code": null, + "transaction_id": "1bXWx1mVzNcQvyzEo34JTXVmegwx94tpjerM8", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "homegoods.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 7.11, + "authorized_date": "2023-11-10", + "authorized_datetime": null, + "category": [ + "Food and Drink", + "Restaurants", + "Fast Food" + ], + "category_id": "13005032", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "vzWXDWBjB06j5BJoD3Jo84OJZg7JJzmqOZA22", + "logo_url": "https://plaid-merchant-logos.plaid.com/mcdonalds_619.png", + "name": "McDonald's", + "phone_number": null, + "type": "merchant", + "website": "mcdonalds.com" + } + ], + "date": "2023-11-10", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": "6729 Arlington Blvd", + "city": "Falls Church", + "country": null, + "lat": null, + "lon": null, + "postal_code": "22042", + "region": "VA", + "store_number": "0123" + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/mcdonalds_619.png", + "merchant_entity_id": "vzWXDWBjB06j5BJoD3Jo84OJZg7JJzmqOZA22", + "merchant_name": "McDonald's", + "name": "McDonald's", + "original_description": "Auth : Mcdonald's F0123", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "FOOD_AND_DRINK_FAST_FOOD", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "LLEP35oamKfLwWGzKa8mCk6Apgx1W7ukjpENJ", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "mcdonalds.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 16.4, + "authorized_date": "2023-11-10", + "authorized_datetime": null, + "category": [ + "Recreation", + "Gyms and Fitness Centers" + ], + "category_id": "17018000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "o2ZQBgYwrvw9EJ2wXy922WK0Q3XdvVzYQEmRZ", + "logo_url": "https://plaid-merchant-logos.plaid.com/planet_fitness_760.png", + "name": "Planet Fitness", + "phone_number": null, + "type": "merchant", + "website": "planetfitness.com" + } + ], + "date": "2023-11-10", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": "30 Gibbs Ct", + "city": "Middletown", + "country": null, + "lat": null, + "lon": null, + "postal_code": "10940", + "region": "NY", + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/planet_fitness_760.png", + "merchant_entity_id": "o2ZQBgYwrvw9EJ2wXy922WK0Q3XdvVzYQEmRZ", + "merchant_name": "Planet Fitness", + "name": "Planet Fitness", + "original_description": "0123 PLANET FITNESS", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "PERSONAL_CARE_GYMS_AND_FITNESS_CENTERS", + "primary": "PERSONAL_CARE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_PERSONAL_CARE.png", + "transaction_code": null, + "transaction_id": "p1oA739DqKhR4y8Xk1ZWcxJrdLn6oGtpoVz51", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "planetfitness.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 18.9, + "authorized_date": "2023-11-10", + "authorized_datetime": null, + "category": [ + "Travel", + "Gas Stations" + ], + "category_id": "22009000", + "check_number": null, + "counterparties": [], + "date": "2023-11-15", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "RACETRAC012 01234567", + "original_description": "RACETRAC012 01234567", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "ENTERTAINMENT_SPORTING_EVENTS_AMUSEMENT_PARKS_AND_MUSEUMS", + "primary": "ENTERTAINMENT" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_ENTERTAINMENT.png", + "transaction_code": null, + "transaction_id": "oMpyjB9Dlqhb4v8gkyn6tbzMpZy5G3ioq7bNa", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 75.37, + "authorized_date": "2023-11-10", + "authorized_datetime": null, + "category": [ + "Shops", + "Digital Purchase" + ], + "category_id": "19019000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "2gOwmq9qK56K60oDm3eLrREV2B2mVadkRn8MW", + "logo_url": "https://plaid-merchant-logos.plaid.com/amazon_44.png", + "name": "Amazon", + "phone_number": null, + "type": "merchant", + "website": "amazon.com" + } + ], + "date": "2023-11-15", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/amazon_44.png", + "merchant_entity_id": "2gOwmq9qK56K60oDm3eLrREV2B2mVadkRn8MW", + "merchant_name": "Amazon", + "name": "Amazon.com Amzn.com/billWA", + "original_description": "Amazon.com Amzn.com/billWA", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "GENERAL_MERCHANDISE_ONLINE_MARKETPLACES", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "g4j7B5kXEnCwdLV7NzQPHV59dRBP8WcE8n5Ko", + "transaction_type": "digital", + "unofficial_currency_code": null, + "website": "amazon.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 8.27, + "authorized_date": "2023-11-15", + "authorized_datetime": null, + "category": [ + "Food and Drink", + "Restaurants", + "Fast Food" + ], + "category_id": "13005032", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "E78LovOpN8rmEZDEBAagmyL05kp3oAp6yJv22", + "logo_url": "https://plaid-merchant-logos.plaid.com/freddys_frozen_custard_steakburgers_399.png", + "name": "Freddy's Frozen Custard \u0026 Steakburgers", + "phone_number": null, + "type": "merchant", + "website": "freddysusa.com" + } + ], + "date": "2023-11-15", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/freddys_frozen_custard_steakburgers_399.png", + "merchant_entity_id": "E78LovOpN8rmEZDEBAagmyL05kp3oAp6yJv22", + "merchant_name": "Freddy's Frozen Custard \u0026 Steakburgers", + "name": "FREDDY'S 01-0123", + "original_description": "FREDDY'S 01-0123", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "FOOD_AND_DRINK_FAST_FOOD", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "8lBZ7kqmNMflM6N1rBb8udzkGwyA5MuW3L89X", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "freddysusa.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 52.24, + "authorized_date": "2023-11-11", + "authorized_datetime": null, + "category": [ + "Shops", + "Digital Purchase" + ], + "category_id": "19019000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "2gOwmq9qK56K60oDm3eLrREV2B2mVadkRn8MW", + "logo_url": "https://plaid-merchant-logos.plaid.com/amazon_44.png", + "name": "Amazon", + "phone_number": null, + "type": "merchant", + "website": "amazon.com" + } + ], + "date": "2023-11-14", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/amazon_44.png", + "merchant_entity_id": "2gOwmq9qK56K60oDm3eLrREV2B2mVadkRn8MW", + "merchant_name": "Amazon", + "name": "Amazon", + "original_description": "AMZN Mktp US #...0123", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "GENERAL_MERCHANDISE_ONLINE_MARKETPLACES", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "EjM3A5vK8mCjLea1GE3mCyom95Prvki4xkmoR", + "transaction_type": "digital", + "unofficial_currency_code": null, + "website": "amazon.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 25.15, + "authorized_date": "2023-11-11", + "authorized_datetime": null, + "category": [ + "Shops", + "Supermarkets and Groceries" + ], + "category_id": "19047000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "E3BNWgdVvvOWAyA3eqmmMEAv1o5Q05jrzg8Ba", + "logo_url": "https://plaid-merchant-logos.plaid.com/hyvee_507.png", + "name": "Hy-Vee", + "phone_number": null, + "type": "merchant", + "website": "hy-vee.com" + } + ], + "date": "2023-11-14", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/hyvee_507.png", + "merchant_entity_id": "E3BNWgdVvvOWAyA3eqmmMEAv1o5Q05jrzg8Ba", + "merchant_name": "Hy-Vee", + "name": "Hy-Vee", + "original_description": "Hy-Vee", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "FOOD_AND_DRINK_GROCERIES", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "Wm6kZ5zMajudb4XV6nyafB8VgNb3znC6Z1jpM", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "hy-vee.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 98.47, + "authorized_date": "2023-11-12", + "authorized_datetime": null, + "category": [ + "Service", + "Food and Beverage" + ], + "category_id": "18021000", + "check_number": null, + "counterparties": [], + "date": "2023-11-14", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": "NY", + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "MEALPAL 0123456789", + "original_description": "MEALPAL 0123456789 NY", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "GENERAL_MERCHANDISE_OTHER_GENERAL_MERCHANDISE", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "Aa7KgRpVLAhamWlkAvD3s8Dl5KZ7brF9rA5gD", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 37.49, + "authorized_date": "2023-11-11", + "authorized_datetime": null, + "category": [ + "Service", + "Cable" + ], + "category_id": "18009000", + "check_number": null, + "counterparties": [], + "date": "2023-11-16", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "TIMEWARNERCABLE", + "original_description": "TWC*TIMEWARNERCABLE", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": "Time Warner Cable", + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "GENERAL_MERCHANDISE_OTHER_GENERAL_MERCHANDISE", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "GeLdq5ozW9Te8Jd4MGvPT84MZDwPW7F6MPobd", + "transaction_type": "special", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 4.9, + "authorized_date": "2023-11-11", + "authorized_datetime": null, + "category": [ + "Food and Drink", + "Restaurants" + ], + "category_id": "13005000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "EJ70Mg1YmVNWVyXj85wvmNzjzg5madJyLYgo1", + "logo_url": "https://plaid-merchant-logos.plaid.com/dairy_queen_265.png", + "name": "Dairy Queen", + "phone_number": null, + "type": "merchant", + "website": "dairyqueen.com" + } + ], + "date": "2023-11-16", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": "01234" + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/dairy_queen_265.png", + "merchant_entity_id": "EJ70Mg1YmVNWVyXj85wvmNzjzg5madJyLYgo1", + "merchant_name": "Dairy Queen", + "name": "Dairy Queen", + "original_description": "DAIRY QUEEN #01234", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "FOOD_AND_DRINK_FAST_FOOD", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "nZLAPzwDylibQdva8jeDtG1eMJoEWbtAlWQzX", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "dairyqueen.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 24.81, + "authorized_date": "2023-11-13", + "authorized_datetime": null, + "category": [ + "Travel", + "Gas Stations" + ], + "category_id": "22009000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "ZM4Jngp0WpL0RW228dA3EoYBbJJnADeA2jDRY", + "logo_url": "https://plaid-merchant-logos.plaid.com/texaco_1003.png", + "name": "Texaco", + "phone_number": null, + "type": "merchant", + "website": "texaco.com" + } + ], + "date": "2023-11-17", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/texaco_1003.png", + "merchant_entity_id": "ZM4Jngp0WpL0RW228dA3EoYBbJJnADeA2jDRY", + "merchant_name": "Texaco", + "name": "Texaco", + "original_description": "TEXACO 0123456", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "TRANSPORTATION_GAS", + "primary": "TRANSPORTATION" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_TRANSPORTATION.png", + "transaction_code": null, + "transaction_id": "bBdylJgXLku1ryVNQ9XehxReg34KG7tmbZ7W9", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "texaco.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 1.13, + "authorized_date": "2023-11-17", + "authorized_datetime": null, + "category": [ + "Food and Drink" + ], + "category_id": "13000000", + "check_number": null, + "counterparties": [], + "date": "2023-11-17", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "PepsiCo", + "original_description": "012PEPSIVEN0123456789", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "FOOD_AND_DRINK_VENDING_MACHINES", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "mQ1ANkbDmRfb4yvJ6npMt6LmBj1NyEcgydX1R", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 103.22, + "authorized_date": "2023-11-15", + "authorized_datetime": null, + "category": [ + "Service", + "Subscription" + ], + "category_id": "18061000", + "check_number": null, + "counterparties": [], + "date": "2023-11-18", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "SLING.COM", + "original_description": "SLING.COM", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "ENTERTAINMENT_TV_AND_MOVIES", + "primary": "ENTERTAINMENT" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_ENTERTAINMENT.png", + "transaction_code": null, + "transaction_id": "yGmrge5K4NFpDQweBL4yuPM35rxdXZi46XwEr", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 9.78, + "authorized_date": "2023-11-16", + "authorized_datetime": null, + "category": [ + "Travel", + "Taxi" + ], + "category_id": "22016000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "eyg8o776k0QmNgVpAmaQj4WgzW9Qzo6O51gdd", + "logo_url": "https://plaid-merchant-logos.plaid.com/uber_1060.png", + "name": "Uber", + "phone_number": null, + "type": "merchant", + "website": "uber.com" + } + ], + "date": "2023-11-18", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": "CA", + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/uber_1060.png", + "merchant_entity_id": "eyg8o776k0QmNgVpAmaQj4WgzW9Qzo6O51gdd", + "merchant_name": "Uber", + "name": "Uber", + "original_description": "UBER TRIP NJSE* 0123456789 CA", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "TRANSPORTATION_TAXIS_AND_RIDE_SHARES", + "primary": "TRANSPORTATION" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_TRANSPORTATION.png", + "transaction_code": null, + "transaction_id": "9q36eAK7P1iqGMPbA34yUAZV7NmLojI4xQgZR", + "transaction_type": "special", + "unofficial_currency_code": null, + "website": "uber.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 9.99, + "authorized_date": "2023-11-17", + "authorized_datetime": null, + "category": [ + "Food and Drink" + ], + "category_id": "13000000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "m1Vm5pqramMYZD7YO4gADZ447RqaVp681jZrj", + "logo_url": "https://plaid-merchant-logos.plaid.com/jamba_juice_531.png", + "name": "Jamba Juice", + "phone_number": null, + "type": "merchant", + "website": "jamba.com" + } + ], + "date": "2023-11-18", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/jamba_juice_531.png", + "merchant_entity_id": "m1Vm5pqramMYZD7YO4gADZ447RqaVp681jZrj", + "merchant_name": "Jamba Juice", + "name": "Jamba Juice", + "original_description": "JAMBA JUICE 0123", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "FOOD_AND_DRINK_OTHER_FOOD_AND_DRINK", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "vEGlLPADxdT7rVvMKoxpsbozq3NxkGiq6k18q", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "jamba.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 5.39, + "authorized_date": "2023-11-18", + "authorized_datetime": null, + "category": [ + "Shops", + "Supermarkets and Groceries" + ], + "category_id": "19047000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "63KwMnKk3J265qpyvVYbOndQnA0Eo2LMeAM5e", + "logo_url": "https://plaid-merchant-logos.plaid.com/pick_n_save_754.png", + "name": "Pick 'n Save", + "phone_number": null, + "type": "merchant", + "website": "picknsave.com" + } + ], + "date": "2023-11-18", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/pick_n_save_754.png", + "merchant_entity_id": "63KwMnKk3J265qpyvVYbOndQnA0Eo2LMeAM5e", + "merchant_name": "Pick 'n Save", + "name": "PICK N SAVE 012", + "original_description": "PICK N SAVE 012", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "FOOD_AND_DRINK_GROCERIES", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "RWmGP5oMzdtreRojdm9zi5wEvmqNVpHapbAnP", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "picknsave.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 78.75, + "authorized_date": "2023-11-18", + "authorized_datetime": null, + "category": [ + "Service", + "Personal Care" + ], + "category_id": "18045000", + "check_number": null, + "counterparties": [], + "date": "2023-11-18", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "QUIP NYC INC", + "original_description": "QUIP NYC INC", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "GENERAL_MERCHANDISE_OTHER_GENERAL_MERCHANDISE", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "6RrvP8d6aQt8RdaEAwWkFbyD6lRWjLi8DXedb", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 79.49, + "authorized_date": "2023-11-18", + "authorized_datetime": null, + "category": [ + "Shops", + "Computers and Electronics" + ], + "category_id": "19013000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "q63vdERovbmjyQoYA6k7m6je8EzOv6ywA7Ea2", + "logo_url": "https://plaid-merchant-logos.plaid.com/best_buy_103.png", + "name": "Best Buy", + "phone_number": null, + "type": "merchant", + "website": "bestbuy.com" + } + ], + "date": "2023-11-20", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/best_buy_103.png", + "merchant_entity_id": "q63vdERovbmjyQoYA6k7m6je8EzOv6ywA7Ea2", + "merchant_name": "Best Buy", + "name": "Best Buy", + "original_description": "BEST BUY MHT 01234567", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "GENERAL_MERCHANDISE_ELECTRONICS", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "XyXrM5BG47fmPpGD7694U6qPyJX8decbKnLex", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "bestbuy.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 13.32, + "authorized_date": "2023-11-18", + "authorized_datetime": null, + "category": [ + "Shops", + "Supermarkets and Groceries" + ], + "category_id": "19047000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "VAKjJ7D3QY8RQO5aRo5jkW17yzjKXEQBE4jdk", + "logo_url": "https://plaid-merchant-logos.plaid.com/key_food_stores_545.png", + "name": "Key Food Stores", + "phone_number": null, + "type": "merchant", + "website": "keyfooddeals.com" + } + ], + "date": "2023-11-20", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/key_food_stores_545.png", + "merchant_entity_id": "VAKjJ7D3QY8RQO5aRo5jkW17yzjKXEQBE4jdk", + "merchant_name": "Key Food Stores", + "name": "Key Food Stores Co-op, Inc.", + "original_description": "KEY FOOD 0123", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "FOOD_AND_DRINK_GROCERIES", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "DPZBW5VqgbFP764zbpqmSvjWJDPg3bt3WaJ6n", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "keyfooddeals.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 52.5, + "authorized_date": "2023-11-20", + "authorized_datetime": null, + "category": [ + "Service" + ], + "category_id": "18000000", + "check_number": null, + "counterparties": [], + "date": "2023-11-20", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "RING.COM RING YEARLY P", + "original_description": "RING.COM RING YEARLY P", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "GENERAL_MERCHANDISE_PET_SUPPLIES", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "VbRqQ5rLdPcn6RqVP4QdsXJG18VQ3Et9gPEKo", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 45.75, + "authorized_date": "2023-11-18", + "authorized_datetime": null, + "category": [ + "Service", + "Computers", + "Software Development" + ], + "category_id": "18012002", + "check_number": null, + "counterparties": [], + "date": "2023-11-22", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "GITHUB.COM", + "original_description": "GITHUB.COM", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "GENERAL_MERCHANDISE_OTHER_GENERAL_MERCHANDISE", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "wWnqpjJldatQbrvJydjETKPDB3J4E9cPZomWQ", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 39.92, + "authorized_date": "2023-11-22", + "authorized_datetime": null, + "category": [ + "Service", + "Food and Beverage" + ], + "category_id": "18021000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "YNRJg5o2djJLv52nBA1Yn1KpL858egYVo4dpm", + "logo_url": "https://plaid-counterparty-logos.plaid.com/doordash_1.png", + "name": "DoorDash", + "phone_number": null, + "type": "marketplace", + "website": "doordash.com" + } + ], + "date": "2023-11-22", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": "DoorDash", + "name": "DOORDASH*CHIPOTLE", + "original_description": "DOORDASH*CHIPOTLE", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "MEDIUM", + "detailed": "FOOD_AND_DRINK_RESTAURANT", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "5vK5Ng6bdetkX4dDA6NbSqZK7QDoXMu5K78NJ", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 24.96, + "authorized_date": "2023-11-18", + "authorized_datetime": null, + "category": [ + "Service", + "Employment Agencies" + ], + "category_id": "18016000", + "check_number": null, + "counterparties": [], + "date": "2023-11-23", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "BT TASKRABBIT, INC", + "original_description": "BT TASKRABBIT, INC", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "GENERAL_MERCHANDISE_OTHER_GENERAL_MERCHANDISE", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "JMgVz59xnlhM1pyKljkeUAXZgLJDw6IB6gkRw", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 16.35, + "authorized_date": "2023-11-23", + "authorized_datetime": null, + "category": [ + "Food and Drink", + "Restaurants", + "Fast Food" + ], + "category_id": "13005032", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "1YZ03w08myRAQ0mRgMvD2EBoOb92RmBXN6nmK", + "logo_url": "https://plaid-merchant-logos.plaid.com/wendys_1114.png", + "name": "Wendy's", + "phone_number": null, + "type": "merchant", + "website": "wendys.com" + } + ], + "date": "2023-11-23", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": "0123" + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/wendys_1114.png", + "merchant_entity_id": "1YZ03w08myRAQ0mRgMvD2EBoOb92RmBXN6nmK", + "merchant_name": "Wendy's", + "name": "Wendy's", + "original_description": "WENDY'S #0123", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "FOOD_AND_DRINK_FAST_FOOD", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "k7ZAaqkDn9IeLWvPMD3QTQmwjAae61sL6doZR", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "wendys.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 65.19, + "authorized_date": "2023-11-23", + "authorized_datetime": null, + "category": [ + "Shops", + "Supermarkets and Groceries" + ], + "category_id": "19047000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "DgqEw70j77DbJqybaK2rmMq6Zzwjg68J7B7zo", + "logo_url": "https://plaid-merchant-logos.plaid.com/safeway_853.png", + "name": "Safeway", + "phone_number": null, + "type": "merchant", + "website": "safeway.com" + } + ], + "date": "2023-11-23", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": "0123" + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/safeway_853.png", + "merchant_entity_id": "DgqEw70j77DbJqybaK2rmMq6Zzwjg68J7B7zo", + "merchant_name": "Safeway", + "name": "Safeway", + "original_description": "SAFEWAY FUEL #0123", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "FOOD_AND_DRINK_GROCERIES", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "leMA4KdDbvT9Rj8aDw3ASlqwZmdvGDipodRbG", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "safeway.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 4.2, + "authorized_date": "2023-11-23", + "authorized_datetime": null, + "category": [ + "Food and Drink" + ], + "category_id": "13000000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "m1Vm5pqramMYZD7YO4gADZ447RqaVp681jZrj", + "logo_url": "https://plaid-merchant-logos.plaid.com/jamba_juice_531.png", + "name": "Jamba Juice", + "phone_number": null, + "type": "merchant", + "website": "jamba.com" + } + ], + "date": "2023-11-23", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/jamba_juice_531.png", + "merchant_entity_id": "m1Vm5pqramMYZD7YO4gADZ447RqaVp681jZrj", + "merchant_name": "Jamba Juice", + "name": "Jamba Juice", + "original_description": "JAMBA JUICE 0123", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "FOOD_AND_DRINK_OTHER_FOOD_AND_DRINK", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "qLgAex9DKrfNjEv5oDMaFebVapMmWGhgr7Rwe", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "jamba.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 46.91, + "authorized_date": "2023-11-18", + "authorized_datetime": null, + "category": [ + "Service", + "Food and Beverage" + ], + "category_id": "18021000", + "check_number": null, + "counterparties": [], + "date": "2023-11-21", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "READYREFRESH BY NESTLE", + "original_description": "READYREFRESH BY NESTLE", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "FOOD_AND_DRINK_GROCERIES", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "K18PB5Zdbqh17BVgqbRQhyoaA5z1deiRpA1z4", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 12.17, + "authorized_date": "2023-11-18", + "authorized_datetime": null, + "category": [ + "Service" + ], + "category_id": "18000000", + "check_number": null, + "counterparties": [], + "date": "2023-11-19", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "TWX*HBONOW", + "original_description": "TWX*HBONOW", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "GENERAL_MERCHANDISE_OTHER_GENERAL_MERCHANDISE", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "rp8wQd9Drzc7XxVRZbBNsbxP5JMjG9i7J61Z8", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 185.5, + "authorized_date": "2023-11-20", + "authorized_datetime": null, + "category": [ + "Shops", + "Clothing and Accessories", + "Shoe Store" + ], + "category_id": "19012003", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "EZmyWZE5WgA97R98oLM6BKoqOndNgELw0agDb", + "logo_url": "https://plaid-merchant-logos.plaid.com/foot_locker_390.png", + "name": "Foot Locker", + "phone_number": null, + "type": "merchant", + "website": "footlocker.com" + } + ], + "date": "2023-11-24", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/foot_locker_390.png", + "merchant_entity_id": "EZmyWZE5WgA97R98oLM6BKoqOndNgELw0agDb", + "merchant_name": "Foot Locker", + "name": "Foot Locker", + "original_description": "FOOT LOCKER 01234", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "GENERAL_MERCHANDISE_SPORTING_GOODS", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "zkyz8Q9rNPCXgWQeyj9pIeqPWlmJpdhlNLQxP", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "footlocker.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 17.55, + "authorized_date": "2023-11-23", + "authorized_datetime": null, + "category": [ + "Shops", + "Music, Video and DVD" + ], + "category_id": "19036000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "zwkjrQbbDQqZJRk3egOAo0XB7jnygNDJk9Vjz", + "logo_url": "https://plaid-counterparty-logos.plaid.com/paypal_76.png", + "name": "PayPal", + "phone_number": null, + "type": "payment_app", + "website": "paypal.com" + } + ], + "date": "2023-11-24", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "iTunes", + "original_description": "PAYPAL *ITUNESCOMBILL", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": "PayPal", + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "GENERAL_MERCHANDISE_OTHER_GENERAL_MERCHANDISE", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "B4ek869ZpGC41mDnjvVxuBdXVLjPRxC4M8gd3", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 31.55, + "authorized_date": "2023-11-22", + "authorized_datetime": null, + "category": [ + "Shops", + "Supermarkets and Groceries" + ], + "category_id": "19047000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "Eaq3KXm0jJ61KrmMrV0aw9VaY2grqv517d3ep", + "logo_url": "https://plaid-merchant-logos.plaid.com/target_997.png", + "name": "Target", + "phone_number": null, + "type": "merchant", + "website": "target.com" + } + ], + "date": "2023-11-27", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/target_997.png", + "merchant_entity_id": "Eaq3KXm0jJ61KrmMrV0aw9VaY2grqv517d3ep", + "merchant_name": "Target", + "name": "Target", + "original_description": "TARGET.COM", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "GENERAL_MERCHANDISE_SUPERSTORES", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "3ylJapdb3jf8nK3A1z7JF3jlmQa5LBhZlnEkk", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "target.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 51.68, + "authorized_date": "2023-11-23", + "authorized_datetime": null, + "category": [ + "Shops", + "Supermarkets and Groceries" + ], + "category_id": "19047000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "EEbA48eL8QmaN9KZEzYXVmnwJ4z4YeJ6wOvLm", + "logo_url": "https://plaid-merchant-logos.plaid.com/food_lion_388.png", + "name": "Food Lion", + "phone_number": null, + "type": "merchant", + "website": "foodlion.com" + } + ], + "date": "2023-11-27", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": "0123" + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/food_lion_388.png", + "merchant_entity_id": "EEbA48eL8QmaN9KZEzYXVmnwJ4z4YeJ6wOvLm", + "merchant_name": "Food Lion", + "name": "Food Lion", + "original_description": "FOOD LION #0123", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "FOOD_AND_DRINK_GROCERIES", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "xAbKo75qa4um5aZ8zndpUMd7gW5wbxU64Vex8", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "foodlion.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 1.95, + "authorized_date": "2023-11-26", + "authorized_datetime": null, + "category": [ + "Shops", + "Convenience Stores" + ], + "category_id": "19015000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "w32E0jpBeX97vOWgER0n2qVbzLJVm1opNMpoR", + "logo_url": "https://plaid-merchant-logos.plaid.com/7eleven_3.png", + "name": "7-Eleven", + "phone_number": null, + "type": "merchant", + "website": "7-eleven.com" + } + ], + "date": "2023-11-27", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/7eleven_3.png", + "merchant_entity_id": "w32E0jpBeX97vOWgER0n2qVbzLJVm1opNMpoR", + "merchant_name": "7-Eleven", + "name": "7-Eleven", + "original_description": "7-Eleven", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "GENERAL_MERCHANDISE_CONVENIENCE_STORES", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "dx4ZK58XoWCvbXVZlNgaC9Rl5wkLExCJEQRvm", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "7-eleven.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 11.24, + "authorized_date": "2023-11-23", + "authorized_datetime": null, + "category": [ + "Service", + "Food and Beverage" + ], + "category_id": "18021000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "LOW", + "entity_id": null, + "logo_url": null, + "name": "Prime Fresh", + "phone_number": null, + "type": "merchant", + "website": null + } + ], + "date": "2023-11-28", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": "Prime Fresh", + "name": "Prime Fresh", + "original_description": "Prime Fresh", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "FOOD_AND_DRINK_GROCERIES", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "azx7A59X1gc5orV6dPw3soqAjJ3zZysZ5QD8x", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 80.76, + "authorized_date": "2023-11-26", + "authorized_datetime": null, + "category": [ + "Food and Drink", + "Restaurants" + ], + "category_id": "13005000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "dAvMprboDvKNyXr252aNO8Nj3E2b5qgz5vEKm", + "logo_url": "https://plaid-merchant-logos.plaid.com/marcos_pizza_604.png", + "name": "Marco's Pizza", + "phone_number": null, + "type": "merchant", + "website": "marcos.com" + } + ], + "date": "2023-11-28", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/marcos_pizza_604.png", + "merchant_entity_id": "dAvMprboDvKNyXr252aNO8Nj3E2b5qgz5vEKm", + "merchant_name": "Marco's Pizza", + "name": "MARCOS PIZZA - 0123", + "original_description": "MARCOS PIZZA - 0123", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "FOOD_AND_DRINK_RESTAURANT", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "49qZ4oGbx7T873XDoebnFmlbdW4eDaFJbALX7", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "marcos.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 63.33, + "authorized_date": "2023-11-26", + "authorized_datetime": null, + "category": [ + "Shops", + "Warehouses and Wholesale Stores" + ], + "category_id": "19051000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "pBowAoZJMM9DKR37jvNmzM4yWBBXyMzV2rM3A", + "logo_url": "https://plaid-merchant-logos.plaid.com/costco_235.png", + "name": "Costco", + "phone_number": null, + "type": "merchant", + "website": "costco.com" + } + ], + "date": "2023-11-28", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": "0123" + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/costco_235.png", + "merchant_entity_id": "pBowAoZJMM9DKR37jvNmzM4yWBBXyMzV2rM3A", + "merchant_name": "Costco", + "name": "Costco", + "original_description": "COSTCO WHSE #0123", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "GENERAL_MERCHANDISE_SUPERSTORES", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "NokPd5gNlzfoV1byzGkls7JMP5G3Q9sy65QE5", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "costco.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 7.13, + "authorized_date": "2023-11-23", + "authorized_datetime": null, + "category": [ + "Travel", + "Car and Truck Rentals" + ], + "category_id": "22005000", + "check_number": null, + "counterparties": [], + "date": "2023-11-26", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "GETAROUND.COM GETAROUN", + "original_description": "GETAROUND.COM GETAROUN", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "TRAVEL_RENTAL_CARS", + "primary": "TRAVEL" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_TRAVEL.png", + "transaction_code": null, + "transaction_id": "P8n745oWK3cnXKyW31x9slDB75xZEeio6WAGv", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 28.09, + "authorized_date": "2023-11-23", + "authorized_datetime": null, + "category": [ + "Shops", + "Music, Video and DVD" + ], + "category_id": "19036000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "r7MA910JJELKpYekdAz6n34373RQw2a3Nn52E", + "logo_url": "https://plaid-merchant-logos.plaid.com/redbox_816.png", + "name": "Redbox", + "phone_number": null, + "type": "merchant", + "website": "redbox.com" + } + ], + "date": "2023-11-26", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": "IL", + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/redbox_816.png", + "merchant_entity_id": "r7MA910JJELKpYekdAz6n34373RQw2a3Nn52E", + "merchant_name": "Redbox", + "name": "Redbox", + "original_description": "REDBOX *DVD RENTAL 012-012-0123 IL", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "ENTERTAINMENT_TV_AND_MOVIES", + "primary": "ENTERTAINMENT" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_ENTERTAINMENT.png", + "transaction_code": null, + "transaction_id": "jjQ7dlP5GyCbNavw7rzpty4MQmk9opi6WLaPa", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "redbox.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 11.9, + "authorized_date": "2023-11-26", + "authorized_datetime": null, + "category": [ + "Shops", + "Pharmacies" + ], + "category_id": "19043000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "XE0b15bEno6BJ1nBbaaXekBOXLeJr46q8EaKR", + "logo_url": "https://plaid-merchant-logos.plaid.com/duane_reade_303.png", + "name": "Duane Reade", + "phone_number": null, + "type": "merchant", + "website": "walgreens.com/topic/duane-reade/duane-reade.jsp" + } + ], + "date": "2023-11-26", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/duane_reade_303.png", + "merchant_entity_id": "XE0b15bEno6BJ1nBbaaXekBOXLeJr46q8EaKR", + "merchant_name": "Duane Reade", + "name": "Duane Reade", + "original_description": "Duane Reade", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "MEDICAL_PHARMACIES_AND_SUPPLEMENTS", + "primary": "MEDICAL" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_MEDICAL.png", + "transaction_code": null, + "transaction_id": "76zXjElb4Zt8RL4DAzM9F9Zwj8GW6DCdJnxRB", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "walgreens.com/topic/duane-reade/duane-reade.jsp" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 33.57, + "authorized_date": "2023-11-26", + "authorized_datetime": null, + "category": [ + "Shops", + "Convenience Stores" + ], + "category_id": "19015000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "653VyK5wvdzKeawWqXpWv0XDXN1BBomVg7LBR", + "logo_url": "https://plaid-merchant-logos.plaid.com/bucees_150.png", + "name": "Buc-ee's", + "phone_number": null, + "type": "merchant", + "website": "buc-ees.com" + } + ], + "date": "2023-11-26", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": "899 Oyster Creek Dr", + "city": "Lake Jackson", + "country": null, + "lat": null, + "lon": null, + "postal_code": "77566", + "region": "TX", + "store_number": "01" + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/bucees_150.png", + "merchant_entity_id": "653VyK5wvdzKeawWqXpWv0XDXN1BBomVg7LBR", + "merchant_name": "Buc-ee's", + "name": "BUC-EE'S #01", + "original_description": "BUC-EE'S #01", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "GENERAL_MERCHANDISE_CONVENIENCE_STORES", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "edNwr51XgAcoARVZP68vsdRGzqom9Bur95m8v", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "buc-ees.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 157.95, + "authorized_date": "2023-11-23", + "authorized_datetime": null, + "category": [ + "Recreation", + "Arts and Entertainment" + ], + "category_id": "17001000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "MvWV6Y45JMz6qg4WwWk8YXM6dZyyAa2MrW4z1", + "logo_url": "https://plaid-merchant-logos.plaid.com/ticketmaster_1016.png", + "name": "Ticketmaster", + "phone_number": null, + "type": "merchant", + "website": "ticketmaster.com" + } + ], + "date": "2023-11-25", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/ticketmaster_1016.png", + "merchant_entity_id": "MvWV6Y45JMz6qg4WwWk8YXM6dZyyAa2MrW4z1", + "merchant_name": "Ticketmaster", + "name": "Ticketmaster", + "original_description": "TM TICKETMASTER", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "ENTERTAINMENT_SPORTING_EVENTS_AMUSEMENT_PARKS_AND_MUSEUMS", + "primary": "ENTERTAINMENT" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_ENTERTAINMENT.png", + "transaction_code": null, + "transaction_id": "QEbZN5mMrxTnJ4XRxba9s9paZDyVQGCwm7D96", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "ticketmaster.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 97.73, + "authorized_date": "2023-11-26", + "authorized_datetime": null, + "category": [ + "Service", + "Subscription" + ], + "category_id": "18061000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "XZAmBNLd29wbbLB49r58oD5b6y7kz5A1982j3", + "logo_url": "https://plaid-merchant-logos.plaid.com/amazon_prime_1987.png", + "name": "Amazon Prime", + "phone_number": null, + "type": "merchant", + "website": "amazon.com/amazonprime" + } + ], + "date": "2023-11-29", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": "Seattle", + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": "WA", + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/amazon_prime_1987.png", + "merchant_entity_id": "XZAmBNLd29wbbLB49r58oD5b6y7kz5A1982j3", + "merchant_name": "Amazon Prime", + "name": "Amazon Prime", + "original_description": "Amazon Prime Amzn.com/bill WA", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "GENERAL_SERVICES_OTHER_GENERAL_SERVICES", + "primary": "GENERAL_SERVICES" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_SERVICES.png", + "transaction_code": null, + "transaction_id": "ZvlBL5eMPQtnXDV6QrR9sRex8pZayMceqXGMq", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "amazon.com/amazonprime" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 56.52, + "authorized_date": "2023-11-28", + "authorized_datetime": null, + "category": [ + "Shops", + "Hardware Store" + ], + "category_id": "19030000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "OvD4k3VrjJYXoar5MNKZQEd333BA1oK8JA8v6", + "logo_url": "https://plaid-merchant-logos.plaid.com/lowes_591.png", + "name": "Lowe's", + "phone_number": null, + "type": "merchant", + "website": "lowes.com" + } + ], + "date": "2023-11-29", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": "012345" + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/lowes_591.png", + "merchant_entity_id": "OvD4k3VrjJYXoar5MNKZQEd333BA1oK8JA8v6", + "merchant_name": "Lowe's", + "name": "Lowe's Home Improvement", + "original_description": "LOWES #012345", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "HOME_IMPROVEMENT_HARDWARE", + "primary": "HOME_IMPROVEMENT" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_HOME_IMPROVEMENT.png", + "transaction_code": null, + "transaction_id": "MpWPx5o4yrcpZvwQrdbMuwXJg8Eze3fL6P13g", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "lowes.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 18.16, + "authorized_date": "2023-11-29", + "authorized_datetime": null, + "category": [ + "Shops", + "Supermarkets and Groceries" + ], + "category_id": "19047000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "mZWB34y9W3pqDBznaNaaZ8BzKjeWvz2pJQg1M", + "logo_url": "https://plaid-merchant-logos.plaid.com/ralphs_809.png", + "name": "Ralphs", + "phone_number": null, + "type": "merchant", + "website": "ralphs.com" + } + ], + "date": "2023-11-29", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": "101 G St", + "city": "San Diego", + "country": null, + "lat": 32.712082, + "lon": -117.163422, + "postal_code": "92101", + "region": "CA", + "store_number": "0123" + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/ralphs_809.png", + "merchant_entity_id": "mZWB34y9W3pqDBznaNaaZ8BzKjeWvz2pJQg1M", + "merchant_name": "Ralphs", + "name": "Ralphs", + "original_description": "RALPHS #0123", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "FOOD_AND_DRINK_GROCERIES", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "1bXWx1mVzNcQvyzEo34JTXVmegwx94tpjer48", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "ralphs.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 9.63, + "authorized_date": "2023-11-26", + "authorized_datetime": null, + "category": [ + "Food and Drink", + "Restaurants" + ], + "category_id": "13005000", + "check_number": null, + "counterparties": [], + "date": "2023-11-30", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "Subway", + "original_description": "SUBWAY 01234567", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "FOOD_AND_DRINK_FAST_FOOD", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "LLEP35oamKfLwWGzKa8mCk6Apgx1W7ukjpE1J", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 32.06, + "authorized_date": "2023-11-29", + "authorized_datetime": null, + "category": [ + "Shops", + "Hardware Store" + ], + "category_id": "19030000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "kVawvV6p0R25gKw3qbp4Kq7kEzDdY5RnjV7RK", + "logo_url": "https://plaid-merchant-logos.plaid.com/home_depot_491.png", + "name": "The Home Depot", + "phone_number": null, + "type": "merchant", + "website": "homedepot.com" + } + ], + "date": "2023-11-30", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": "3885 Jonesboro Rd SE", + "city": "Atlanta", + "country": null, + "lat": 33.648727, + "lon": -84.367844, + "postal_code": "30354", + "region": "GA", + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/home_depot_491.png", + "merchant_entity_id": "kVawvV6p0R25gKw3qbp4Kq7kEzDdY5RnjV7RK", + "merchant_name": "The Home Depot", + "name": "Home Depot", + "original_description": "THE HOME DEPOT 0123", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "HOME_IMPROVEMENT_HARDWARE", + "primary": "HOME_IMPROVEMENT" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_HOME_IMPROVEMENT.png", + "transaction_code": null, + "transaction_id": "p1oA739DqKhR4y8Xk1ZWcxJrdLn6oGtpoVzB1", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "homedepot.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 10.49, + "authorized_date": "2023-11-26", + "authorized_datetime": null, + "category": [ + "Service", + "Subscription" + ], + "category_id": "18061000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "3LEY2bJ6W1vkoaBjgVg3qBgYVEzD6p8d1dQdY", + "logo_url": "https://plaid-merchant-logos.plaid.com/netflix_675.png", + "name": "Netflix", + "phone_number": null, + "type": "merchant", + "website": "netflix.com" + } + ], + "date": "2023-12-01", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/netflix_675.png", + "merchant_entity_id": "3LEY2bJ6W1vkoaBjgVg3qBgYVEzD6p8d1dQdY", + "merchant_name": "Netflix", + "name": "Netflix", + "original_description": "NETFLIX.COM 012-012-0123 ON", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "ENTERTAINMENT_TV_AND_MOVIES", + "primary": "ENTERTAINMENT" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_ENTERTAINMENT.png", + "transaction_code": null, + "transaction_id": "oMpyjB9Dlqhb4v8gkyn6tbzMpZy5G3ioq7bga", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "netflix.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 2.81, + "authorized_date": "2023-11-29", + "authorized_datetime": null, + "category": [ + "Shops", + "Music, Video and DVD" + ], + "category_id": "19036000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "z3XzRe488pMdo7NAnL44L7rv9L550berky6mK", + "logo_url": "https://plaid-merchant-logos.plaid.com/apple_itunes_1434.png", + "name": "Apple iTunes", + "phone_number": null, + "type": "merchant", + "website": "apple.com/itunes" + } + ], + "date": "2023-12-01", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/apple_itunes_1434.png", + "merchant_entity_id": "z3XzRe488pMdo7NAnL44L7rv9L550berky6mK", + "merchant_name": "Apple iTunes", + "name": "iTunes", + "original_description": "Apple iTunes", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "ENTERTAINMENT_MUSIC_AND_AUDIO", + "primary": "ENTERTAINMENT" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_ENTERTAINMENT.png", + "transaction_code": null, + "transaction_id": "g4j7B5kXEnCwdLV7NzQPHV59dRBP8WcE8n5zo", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "apple.com/itunes" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 29.96, + "authorized_date": "2023-11-29", + "authorized_datetime": null, + "category": [ + "Shops" + ], + "category_id": "19000000", + "check_number": null, + "counterparties": [], + "date": "2023-12-01", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "WW INT'L-DIGITAL", + "original_description": "WW INT'L-DIGITAL", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "ENTERTAINMENT_SPORTING_EVENTS_AMUSEMENT_PARKS_AND_MUSEUMS", + "primary": "ENTERTAINMENT" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_ENTERTAINMENT.png", + "transaction_code": null, + "transaction_id": "8lBZ7kqmNMflM6N1rBb8udzkGwyA5MuW3L8MX", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 13.87, + "authorized_date": "2023-11-29", + "authorized_datetime": null, + "category": [ + "Shops", + "Supermarkets and Groceries" + ], + "category_id": "19047000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "ejyrAn1BvJ9X5ZXVBq5nN1aqjLzJbE64L4eWQ", + "logo_url": "https://plaid-merchant-logos.plaid.com/jewelosco_537.png", + "name": "Jewel-Osco", + "phone_number": null, + "type": "merchant", + "website": "jewelosco.com" + } + ], + "date": "2023-12-03", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/jewelosco_537.png", + "merchant_entity_id": "ejyrAn1BvJ9X5ZXVBq5nN1aqjLzJbE64L4eWQ", + "merchant_name": "Jewel-Osco", + "name": "Jewel-Osco", + "original_description": "JEWEL-OSCO", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "FOOD_AND_DRINK_GROCERIES", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "EjM3A5vK8mCjLea1GE3mCyom95Prvki4xkmGR", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "jewelosco.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 11.21, + "authorized_date": "2023-11-29", + "authorized_datetime": null, + "category": [ + "Shops", + "Bookstores" + ], + "category_id": "19009000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "LOW", + "entity_id": null, + "logo_url": null, + "name": "Order", + "phone_number": null, + "type": "merchant", + "website": null + } + ], + "date": "2023-12-02", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": "CA", + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": "Order", + "name": "CHEGG ORDER", + "original_description": "CHEGG ORDER 012-012-0123 CA", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "GENERAL_SERVICES_EDUCATION", + "primary": "GENERAL_SERVICES" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_SERVICES.png", + "transaction_code": null, + "transaction_id": "Wm6kZ5zMajudb4XV6nyafB8VgNb3znC6Z1jnM", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 9.66, + "authorized_date": "2023-12-01", + "authorized_datetime": null, + "category": [ + "Shops", + "Supermarkets and Groceries" + ], + "category_id": "19047000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "m7r7AXy8EObAKV8QJOME20Y691QB2mAZ7Rb84", + "logo_url": "https://plaid-counterparty-logos.plaid.com/instacart_6.png", + "name": "Instacart", + "phone_number": null, + "type": "marketplace", + "website": "instacart.com" + } + ], + "date": "2023-12-02", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": "Instacart", + "name": "INSTACART HTTPSINSTACARCA", + "original_description": "INSTACART HTTPSINSTACARCA", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "FOOD_AND_DRINK_GROCERIES", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "Aa7KgRpVLAhamWlkAvD3s8Dl5KZ7brF9rA5ZD", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 42.88, + "authorized_date": "2023-11-29", + "authorized_datetime": null, + "category": [ + "Travel", + "Car Service", + "Ride Share" + ], + "category_id": "22006001", + "check_number": null, + "counterparties": [], + "date": "2023-12-04", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "BC *UBER CASH", + "original_description": "BC *UBER CASH", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "TRANSPORTATION_TAXIS_AND_RIDE_SHARES", + "primary": "TRANSPORTATION" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_TRANSPORTATION.png", + "transaction_code": null, + "transaction_id": "GeLdq5ozW9Te8Jd4MGvPT84MZDwPW7F6MPomd", + "transaction_type": "special", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 43.89, + "authorized_date": "2023-11-30", + "authorized_datetime": null, + "category": [ + "Food and Drink", + "Restaurants" + ], + "category_id": "13005000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "LOW", + "entity_id": null, + "logo_url": null, + "name": "The Halal Guys", + "phone_number": null, + "type": "merchant", + "website": null + } + ], + "date": "2023-12-05", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": "The Halal Guys", + "name": "THE HALAL GUYS", + "original_description": "THE HALAL GUYS", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "FOOD_AND_DRINK_GROCERIES", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "nZLAPzwDylibQdva8jeDtG1eMJoEWbtAlWQrX", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 59.84, + "authorized_date": "2023-12-05", + "authorized_datetime": null, + "category": [ + "Food and Drink", + "Restaurants" + ], + "category_id": "13005000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "kpvEdVDo86ka3N2mzMbZrED6No8q35k2kpgAa", + "logo_url": "https://plaid-merchant-logos.plaid.com/jasons_deli_532.png", + "name": "Jason's Deli", + "phone_number": null, + "type": "merchant", + "website": "jasonsdeli.com" + } + ], + "date": "2023-12-06", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/jasons_deli_532.png", + "merchant_entity_id": "kpvEdVDo86ka3N2mzMbZrED6No8q35k2kpgAa", + "merchant_name": "Jason's Deli", + "name": "Jason's Deli", + "original_description": "Jason's Deli", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "FOOD_AND_DRINK_RESTAURANT", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "bBdylJgXLku1ryVNQ9XehxReg34KG7tmbZ7a9", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "jasonsdeli.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 443.12, + "authorized_date": "2023-12-06", + "authorized_datetime": null, + "category": [ + "Shops", + "Furniture and Home Decor" + ], + "category_id": "19027000", + "check_number": null, + "counterparties": [], + "date": "2023-12-06", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "Wayfair", + "original_description": "WAYFAIR*Wayfair", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "GENERAL_MERCHANDISE_OTHER_GENERAL_MERCHANDISE", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "mQ1ANkbDmRfb4yvJ6npMt6LmBj1NyEcgydXxR", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 39.74, + "authorized_date": "2023-12-06", + "authorized_datetime": null, + "category": [ + "Service" + ], + "category_id": "18000000", + "check_number": null, + "counterparties": [], + "date": "2023-12-06", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "GEEKSQUAD RENEW", + "original_description": "GEEKSQUAD RENEW", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "GENERAL_MERCHANDISE_OTHER_GENERAL_MERCHANDISE", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "yGmrge5K4NFpDQweBL4yuPM35rxdXZi46Xwjr", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 3.3, + "authorized_date": "2023-12-06", + "authorized_datetime": null, + "category": [ + "Food and Drink", + "Restaurants", + "Fast Food" + ], + "category_id": "13005032", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "1YZ03w08myRAQ0mRgMvD2EBoOb92RmBXN6nmK", + "logo_url": "https://plaid-merchant-logos.plaid.com/wendys_1114.png", + "name": "Wendy's", + "phone_number": null, + "type": "merchant", + "website": "wendys.com" + } + ], + "date": "2023-12-07", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/wendys_1114.png", + "merchant_entity_id": "1YZ03w08myRAQ0mRgMvD2EBoOb92RmBXN6nmK", + "merchant_name": "Wendy's", + "name": "Wendy's", + "original_description": "WENDY'S 012", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "FOOD_AND_DRINK_FAST_FOOD", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "9q36eAK7P1iqGMPbA34yUAZV7NmLojI4xQgAR", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "wendys.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 1.64, + "authorized_date": "2023-12-07", + "authorized_datetime": null, + "category": [ + "Recreation", + "Gyms and Fitness Centers" + ], + "category_id": "17018000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "o2ZQBgYwrvw9EJ2wXy922WK0Q3XdvVzYQEmRZ", + "logo_url": "https://plaid-merchant-logos.plaid.com/planet_fitness_760.png", + "name": "Planet Fitness", + "phone_number": null, + "type": "merchant", + "website": "planetfitness.com" + } + ], + "date": "2023-12-07", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": "30 Gibbs Ct", + "city": "Middletown", + "country": null, + "lat": null, + "lon": null, + "postal_code": "10940", + "region": "NY", + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/planet_fitness_760.png", + "merchant_entity_id": "o2ZQBgYwrvw9EJ2wXy922WK0Q3XdvVzYQEmRZ", + "merchant_name": "Planet Fitness", + "name": "Planet Fitness", + "original_description": "0123 PLANET FITNESS", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "PERSONAL_CARE_GYMS_AND_FITNESS_CENTERS", + "primary": "PERSONAL_CARE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_PERSONAL_CARE.png", + "transaction_code": null, + "transaction_id": "vEGlLPADxdT7rVvMKoxpsbozq3NxkGiq6k1Nq", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "planetfitness.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 11.64, + "authorized_date": "2025-04-04", + "authorized_datetime": null, + "category": [ + "Food and Drink", + "Restaurants", + "Coffee Shop" + ], + "category_id": "13005043", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "eLeV8rVr65z60oKdd926qoWqwXzNNvyMp4m1Z", + "logo_url": "https://plaid-merchant-logos.plaid.com/peets_738.png", + "name": "Peet's", + "phone_number": null, + "type": "merchant", + "website": "peets.com" + } + ], + "date": "2025-04-06", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": "01234" + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/peets_738.png", + "merchant_entity_id": "eLeV8rVr65z60oKdd926qoWqwXzNNvyMp4m1Z", + "merchant_name": "Peet's", + "name": "Peet's Coffee \u0026 Tea", + "original_description": "PEET'S #01234", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "HIGH", + "detailed": "FOOD_AND_DRINK_COFFEE", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "5vK5Ng6bdetkX4dDA6NbSqZK7QDoXMu5K7844", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "peets.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 41.81, + "authorized_date": "2025-04-04", + "authorized_datetime": null, + "category": [ + "Shops", + "Supermarkets and Groceries" + ], + "category_id": "19047000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "LOW", + "entity_id": null, + "logo_url": null, + "name": "Less", + "phone_number": null, + "type": "merchant", + "website": null + } + ], + "date": "2025-04-06", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": "Less", + "name": "FOOD*LESS 0123", + "original_description": "FOOD*LESS 0123", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "FOOD_AND_DRINK_GROCERIES", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "JMgVz59xnlhM1pyKljkeUAXZgLJDw6IB6gkKp", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 4.82, + "authorized_date": "2025-04-04", + "authorized_datetime": null, + "category": [ + "Food and Drink", + "Restaurants", + "Fast Food" + ], + "category_id": "13005032", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "rodgjzdRn4zyz3Z7LJR8n9eQgErD0VYLWzKg0", + "logo_url": "https://plaid-merchant-logos.plaid.com/hardees_475.png", + "name": "Hardee's", + "phone_number": null, + "type": "merchant", + "website": "hardees.com" + } + ], + "date": "2025-04-08", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/hardees_475.png", + "merchant_entity_id": "rodgjzdRn4zyz3Z7LJR8n9eQgErD0VYLWzKg0", + "merchant_name": "Hardee's", + "name": "Hardee's", + "original_description": "Hardees", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "FOOD_AND_DRINK_FAST_FOOD", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "k7ZAaqkDn9IeLWvPMD3QTQmwjAae61sL6doGx", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "hardees.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 41.54, + "authorized_date": "2025-04-04", + "authorized_datetime": null, + "category": [ + "Shops", + "Department Stores" + ], + "category_id": "19018000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "wVy2NR88jw5Z2qro8Vo4oro8E3aErD0gDN0nZ", + "logo_url": "https://plaid-merchant-logos.plaid.com/kohls_553.png", + "name": "Kohl's", + "phone_number": null, + "type": "merchant", + "website": "kohls.com" + } + ], + "date": "2025-04-08", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": "OH", + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/kohls_553.png", + "merchant_entity_id": "wVy2NR88jw5Z2qro8Vo4oro8E3aErD0gDN0nZ", + "merchant_name": "Kohl's", + "name": "WWW.KOHLS.COM #0123", + "original_description": "WWW.KOHLS.COM #0123 012-012-0123 OH", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "HIGH", + "detailed": "GENERAL_MERCHANDISE_DEPARTMENT_STORES", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "leMA4KdDbvT9Rj8aDw3ASlqwZmdvGDipodRzZ", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "kohls.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 1.6, + "authorized_date": "2025-04-08", + "authorized_datetime": null, + "category": [ + "Shops", + "Music, Video and DVD" + ], + "category_id": "19036000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "z3XzRe488pMdo7NAnL44L7rv9L550berky6mK", + "logo_url": "https://plaid-merchant-logos.plaid.com/apple_itunes_1434.png", + "name": "Apple iTunes", + "phone_number": null, + "type": "merchant", + "website": "apple.com/itunes" + } + ], + "date": "2025-04-08", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/apple_itunes_1434.png", + "merchant_entity_id": "z3XzRe488pMdo7NAnL44L7rv9L550berky6mK", + "merchant_name": "Apple iTunes", + "name": "iTunes", + "original_description": "Apple iTunes", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "ENTERTAINMENT_MUSIC_AND_AUDIO", + "primary": "ENTERTAINMENT" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_ENTERTAINMENT.png", + "transaction_code": null, + "transaction_id": "qLgAex9DKrfNjEv5oDMaFebVapMmWGhgr7Rvg", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "apple.com/itunes" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 55.82, + "authorized_date": "2025-04-08", + "authorized_datetime": null, + "category": [ + "Service", + "Subscription" + ], + "category_id": "18061000", + "check_number": null, + "counterparties": [], + "date": "2025-04-08", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "Sling TV", + "original_description": "Sling TV", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "GENERAL_MERCHANDISE_OTHER_GENERAL_MERCHANDISE", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "K18PB5Zdbqh17BVgqbRQhyoaA5z1deiRpA17E", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 13.94, + "authorized_date": "2025-04-08", + "authorized_datetime": null, + "category": [ + "Food and Drink", + "Restaurants", + "Fast Food" + ], + "category_id": "13005032", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "BO2OAg7nprnK6W7rBvarKXkNJ1qJWYRk7AvqZ", + "logo_url": "https://plaid-merchant-logos.plaid.com/arbys_68.png", + "name": "Arby's", + "phone_number": null, + "type": "merchant", + "website": "arbys.com" + } + ], + "date": "2025-04-11", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/arbys_68.png", + "merchant_entity_id": "BO2OAg7nprnK6W7rBvarKXkNJ1qJWYRk7AvqZ", + "merchant_name": "Arby's", + "name": "Arby's", + "original_description": "Arby's", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "FOOD_AND_DRINK_FAST_FOOD", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "rp8wQd9Drzc7XxVRZbBNsbxP5JMjG9i7J61Wa", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "arbys.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 20.91, + "authorized_date": "2025-04-08", + "authorized_datetime": null, + "category": [ + "Food and Drink", + "Restaurants" + ], + "category_id": "13005000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "VmnapWdRwMn50bwvEaKZRKNkQXW1LvNrwdLeW", + "logo_url": "https://plaid-counterparty-logos.plaid.com/toast_182.png", + "name": "Toast", + "phone_number": null, + "type": "payment_terminal", + "website": "pos.toasttab.com" + } + ], + "date": "2025-04-11", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "TST* SUNLIFE ORG", + "original_description": "TST* SUNLIFE ORG", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "MEDIUM", + "detailed": "FOOD_AND_DRINK_RESTAURANT", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "zkyz8Q9rNPCXgWQeyj9pIeqPWlmJpdhlNLQZg", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 24.83, + "authorized_date": "2025-04-09", + "authorized_datetime": null, + "category": [ + "Shops", + "Digital Purchase" + ], + "category_id": "19019000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "5ngqyLXKYBknN8OywL79Z1qoWmyE0zKq20nz6", + "logo_url": "https://plaid-merchant-logos.plaid.com/etsy_332.png", + "name": "Etsy", + "phone_number": null, + "type": "merchant", + "website": "etsy.com" + } + ], + "date": "2025-04-11", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/etsy_332.png", + "merchant_entity_id": "5ngqyLXKYBknN8OywL79Z1qoWmyE0zKq20nz6", + "merchant_name": "Etsy", + "name": "Etsy.com - Multiple Shops", + "original_description": "Etsy.com - Multiple Shops", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "GENERAL_MERCHANDISE_ONLINE_MARKETPLACES", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "B4ek869ZpGC41mDnjvVxuBdXVLjPRxC4M8gRZ", + "transaction_type": "digital", + "unofficial_currency_code": null, + "website": "etsy.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 56.56, + "authorized_date": "2025-04-11", + "authorized_datetime": null, + "category": [ + "Shops", + "Clothing and Accessories" + ], + "category_id": "19012000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "LOW", + "entity_id": null, + "logo_url": null, + "name": "Express", + "phone_number": null, + "type": "merchant", + "website": null + } + ], + "date": "2025-04-11", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": "0123" + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": "Express", + "name": "EXPRESS#0123", + "original_description": "EXPRESS#0123", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "GENERAL_MERCHANDISE_GIFTS_AND_NOVELTIES", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "3ylJapdb3jf8nK3A1z7JF3jlmQa5LBhZlnEvQ", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 21.96, + "authorized_date": "2025-04-08", + "authorized_datetime": null, + "category": [ + "Shops", + "Digital Purchase" + ], + "category_id": "19019000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "2gOwmq9qK56K60oDm3eLrREV2B2mVadkRn8MW", + "logo_url": "https://plaid-merchant-logos.plaid.com/amazon_44.png", + "name": "Amazon", + "phone_number": null, + "type": "merchant", + "website": "amazon.com" + } + ], + "date": "2025-04-13", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/amazon_44.png", + "merchant_entity_id": "2gOwmq9qK56K60oDm3eLrREV2B2mVadkRn8MW", + "merchant_name": "Amazon", + "name": "AMAZON MKTPLACE PMTS AMZN.COM/BILLWA", + "original_description": "AMAZON MKTPLACE PMTS AMZN.COM/BILLWA", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "GENERAL_MERCHANDISE_ONLINE_MARKETPLACES", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "xAbKo75qa4um5aZ8zndpUMd7gW5wbxU64VeXQ", + "transaction_type": "digital", + "unofficial_currency_code": null, + "website": "amazon.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 6.45, + "authorized_date": "2025-04-09", + "authorized_datetime": null, + "category": [ + "Food and Drink", + "Restaurants" + ], + "category_id": "13005000", + "check_number": null, + "counterparties": [], + "date": "2025-04-13", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "TOUS LES JOURS", + "original_description": "TOUS LES JOURS", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "FOOD_AND_DRINK_OTHER_FOOD_AND_DRINK", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "dx4ZK58XoWCvbXVZlNgaC9Rl5wkLExCJEQRd9", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 121.7, + "authorized_date": "2025-04-09", + "authorized_datetime": null, + "category": [ + "Shops", + "Supermarkets and Groceries" + ], + "category_id": "19047000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "95bAk9jYLq644z7grLky2qaWpBNZ80Z0eOoJD", + "logo_url": "https://plaid-merchant-logos.plaid.com/publix_787.png", + "name": "Publix", + "phone_number": null, + "type": "merchant", + "website": "publix.com" + } + ], + "date": "2025-04-13", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": "600 N University Dr", + "city": "Pembroke Pines", + "country": null, + "lat": 26.013664, + "lon": -80.251823, + "postal_code": "33024", + "region": "FL", + "store_number": "012" + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/publix_787.png", + "merchant_entity_id": "95bAk9jYLq644z7grLky2qaWpBNZ80Z0eOoJD", + "merchant_name": "Publix", + "name": "Publix", + "original_description": "PUBLIX #012", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "FOOD_AND_DRINK_GROCERIES", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "azx7A59X1gc5orV6dPw3soqAjJ3zZysZ5QDbV", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "publix.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 6.74, + "authorized_date": "2025-04-09", + "authorized_datetime": null, + "category": [ + "Recreation", + "Arts and Entertainment" + ], + "category_id": "17001000", + "check_number": null, + "counterparties": [], + "date": "2025-04-13", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "Cinemark Theatres", + "original_description": "CNK*CINEMARK.COM 0123", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "ENTERTAINMENT_TV_AND_MOVIES", + "primary": "ENTERTAINMENT" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_ENTERTAINMENT.png", + "transaction_code": null, + "transaction_id": "49qZ4oGbx7T873XDoebnFmlbdW4eDaFJbALqE", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 4.19, + "authorized_date": "2025-04-12", + "authorized_datetime": null, + "category": [ + "Food and Drink", + "Restaurants", + "Coffee Shop" + ], + "category_id": "13005043", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "NZAJQ5wYdo1W1p39X5q5gpb15OMe39pj4pJBb", + "logo_url": "https://plaid-merchant-logos.plaid.com/starbucks_956.png", + "name": "Starbucks", + "phone_number": null, + "type": "merchant", + "website": "starbucks.com" + } + ], + "date": "2025-04-13", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/starbucks_956.png", + "merchant_entity_id": "NZAJQ5wYdo1W1p39X5q5gpb15OMe39pj4pJBb", + "merchant_name": "Starbucks", + "name": "Starbucks", + "original_description": "STARBUCKS 01234", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "FOOD_AND_DRINK_COFFEE", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "NokPd5gNlzfoV1byzGkls7JMP5G3Q9sy65QbB", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "starbucks.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 2.03, + "authorized_date": "2025-04-09", + "authorized_datetime": null, + "category": [ + "Food and Drink" + ], + "category_id": "13000000", + "check_number": null, + "counterparties": [], + "date": "2025-04-09", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "USA*CANTEEN", + "original_description": "USA*CANTEEN", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "FOOD_AND_DRINK_VENDING_MACHINES", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "P8n745oWK3cnXKyW31x9slDB75xZEeio6WAbx", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 16.04, + "authorized_date": "2025-04-09", + "authorized_datetime": null, + "category": [ + "Shops", + "Food and Beverage Store", + "Beer, Wine and Spirits" + ], + "category_id": "19025004", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "Q0gnRQogjMLpMQ29MmYvN49aaz3ALgj7Er4e9", + "logo_url": "https://plaid-merchant-logos.plaid.com/fine_wine_good_spirits_1886.png", + "name": "Fine Wine \u0026 Good Spirits", + "phone_number": null, + "type": "merchant", + "website": "finewineandgoodspirits.com" + } + ], + "date": "2025-04-09", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/fine_wine_good_spirits_1886.png", + "merchant_entity_id": "Q0gnRQogjMLpMQ29MmYvN49aaz3ALgj7Er4e9", + "merchant_name": "Fine Wine \u0026 Good Spirits", + "name": "WINE AND SPIRITS 0123", + "original_description": "WINE AND SPIRITS 0123", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "FOOD_AND_DRINK_BEER_WINE_AND_LIQUOR", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "jjQ7dlP5GyCbNavw7rzpty4MQmk9opi6WLakr", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "finewineandgoodspirits.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 30.24, + "authorized_date": "2025-04-09", + "authorized_datetime": null, + "category": [ + "Shops", + "Discount Stores" + ], + "category_id": "19020000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "Zzn79pb0YEwA8JD6KeyZABvmpp3w1WVZeJEY6", + "logo_url": "https://plaid-merchant-logos.plaid.com/dollar_general_287.png", + "name": "Dollar General", + "phone_number": null, + "type": "merchant", + "website": "dollargeneral.com" + } + ], + "date": "2025-04-09", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": "0123" + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/dollar_general_287.png", + "merchant_entity_id": "Zzn79pb0YEwA8JD6KeyZABvmpp3w1WVZeJEY6", + "merchant_name": "Dollar General", + "name": "Dollar General", + "original_description": "DOLLAR-GENERAL #0123", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "GENERAL_MERCHANDISE_DISCOUNT_STORES", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "76zXjElb4Zt8RL4DAzM9F9Zwj8GW6DCdJnxzD", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "dollargeneral.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 58.36, + "authorized_date": "2025-04-09", + "authorized_datetime": null, + "category": [ + "Travel", + "Gas Stations" + ], + "category_id": "22009000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "VJbr0AXZe7383gambdZWMrLRrpjAk5pZkW46X", + "logo_url": "https://plaid-merchant-logos.plaid.com/lukoil_594.png", + "name": "Lukoil", + "phone_number": null, + "type": "merchant", + "website": "lukoil.com" + } + ], + "date": "2025-04-10", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/lukoil_594.png", + "merchant_entity_id": "VJbr0AXZe7383gambdZWMrLRrpjAk5pZkW46X", + "merchant_name": "Lukoil", + "name": "LUKOIL 01234", + "original_description": "LUKOIL 01234", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "TRANSPORTATION_GAS", + "primary": "TRANSPORTATION" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_TRANSPORTATION.png", + "transaction_code": null, + "transaction_id": "edNwr51XgAcoARVZP68vsdRGzqom9Bur95mK6", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "lukoil.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 25.94, + "authorized_date": "2025-04-09", + "authorized_datetime": null, + "category": [ + "Recreation", + "Arts and Entertainment", + "Movie Theatres" + ], + "category_id": "17001009", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "nADWWmL6e6BBZZLzvkvQn3evqKj61KrZanN1O", + "logo_url": "https://plaid-merchant-logos.plaid.com/amc_theatres_49.png", + "name": "AMC Theatres", + "phone_number": null, + "type": "merchant", + "website": "amctheatres.com" + } + ], + "date": "2025-04-14", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": "KS", + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/amc_theatres_49.png", + "merchant_entity_id": "nADWWmL6e6BBZZLzvkvQn3evqKj61KrZanN1O", + "merchant_name": "AMC Theatres", + "name": "0123 AMC ONLINE", + "original_description": "0123 AMC ONLINE 012-012-0123 KS", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "ENTERTAINMENT_TV_AND_MOVIES", + "primary": "ENTERTAINMENT" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_ENTERTAINMENT.png", + "transaction_code": null, + "transaction_id": "QEbZN5mMrxTnJ4XRxba9s9paZDyVQGCwm7DrK", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "amctheatres.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 2.91, + "authorized_date": "2025-04-12", + "authorized_datetime": null, + "category": [ + "Service", + "Shipping and Freight" + ], + "category_id": "18058000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "zwkjrQbbDQqZJRk3egOAo0XB7jnygNDJk9Vjz", + "logo_url": "https://plaid-counterparty-logos.plaid.com/paypal_76.png", + "name": "PayPal", + "phone_number": null, + "type": "payment_app", + "website": "paypal.com" + } + ], + "date": "2025-04-14", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "USPOSTALSER", + "original_description": "PAYPAL *USPOSTALSER", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": "PayPal", + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "GENERAL_SERVICES_POSTAGE_AND_SHIPPING", + "primary": "GENERAL_SERVICES" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_SERVICES.png", + "transaction_code": null, + "transaction_id": "ZvlBL5eMPQtnXDV6QrR9sRex8pZayMceqXGnM", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 96.37, + "authorized_date": "2025-04-11", + "authorized_datetime": null, + "category": [ + "Shops", + "Hardware Store" + ], + "category_id": "19030000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "kVawvV6p0R25gKw3qbp4Kq7kEzDdY5RnjV7RK", + "logo_url": "https://plaid-merchant-logos.plaid.com/home_depot_491.png", + "name": "The Home Depot", + "phone_number": null, + "type": "merchant", + "website": "homedepot.com" + } + ], + "date": "2025-04-12", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": "3885 Jonesboro Rd SE", + "city": "Atlanta", + "country": null, + "lat": 33.648727, + "lon": -84.367844, + "postal_code": "30354", + "region": "GA", + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/home_depot_491.png", + "merchant_entity_id": "kVawvV6p0R25gKw3qbp4Kq7kEzDdY5RnjV7RK", + "merchant_name": "The Home Depot", + "name": "Home Depot", + "original_description": "THE HOME DEPOT 0123", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "HOME_IMPROVEMENT_HARDWARE", + "primary": "HOME_IMPROVEMENT" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_HOME_IMPROVEMENT.png", + "transaction_code": null, + "transaction_id": "MpWPx5o4yrcpZvwQrdbMuwXJg8Eze3fL6P1bq", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "homedepot.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 70.4, + "authorized_date": "2025-04-12", + "authorized_datetime": null, + "category": [ + "Service", + "Food and Beverage" + ], + "category_id": "18021000", + "check_number": null, + "counterparties": [], + "date": "2025-04-12", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "SUN BASKET", + "original_description": "SUN BASKET", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "GENERAL_MERCHANDISE_OTHER_GENERAL_MERCHANDISE", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "1bXWx1mVzNcQvyzEo34JTXVmegwx94tpjerbx", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 116.59, + "authorized_date": "2025-04-15", + "authorized_datetime": null, + "category": [ + "Shops", + "Clothing and Accessories" + ], + "category_id": "19012000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": null, + "logo_url": null, + "name": "ASOS", + "phone_number": null, + "type": "merchant", + "website": null + } + ], + "date": "2025-04-16", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": "ASOS", + "name": "ASOS US SALES LLC", + "original_description": "ASOS US SALES LLC", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "GENERAL_MERCHANDISE_CLOTHING_AND_ACCESSORIES", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "LLEP35oamKfLwWGzKa8mCk6Apgx1W7ukjpEgy", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 57.06, + "authorized_date": "2025-04-15", + "authorized_datetime": null, + "category": [ + "Shops", + "Office Supplies" + ], + "category_id": "19039000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "0VYn3dajBB2zowDMzemLMXDEO0O88m9Bwpj1D", + "logo_url": "https://plaid-merchant-logos.plaid.com/staples_955.png", + "name": "Staples", + "phone_number": null, + "type": "merchant", + "website": "staples.com" + } + ], + "date": "2025-04-16", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/staples_955.png", + "merchant_entity_id": "0VYn3dajBB2zowDMzemLMXDEO0O88m9Bwpj1D", + "merchant_name": "Staples", + "name": "Staples", + "original_description": "STAPLES 01234567", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "GENERAL_MERCHANDISE_OFFICE_SUPPLIES", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "p1oA739DqKhR4y8Xk1ZWcxJrdLn6oGtpoVz93", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "staples.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 72.64, + "authorized_date": "2023-12-06", + "authorized_datetime": null, + "category": [ + "Food and Drink", + "Restaurants" + ], + "category_id": "13005000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "yDMZv90bZMYN5eQKM3k6qaKjO4aLM0BQkXnOr", + "logo_url": "https://plaid-merchant-logos.plaid.com/longhorn_steakhouse_588.png", + "name": "LongHorn Steakhouse", + "phone_number": null, + "type": "merchant", + "website": "longhornsteakhouse.com" + } + ], + "date": "2023-12-09", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/longhorn_steakhouse_588.png", + "merchant_entity_id": "yDMZv90bZMYN5eQKM3k6qaKjO4aLM0BQkXnOr", + "merchant_name": "LongHorn Steakhouse", + "name": "LONGHORN STEAK 0123456", + "original_description": "LONGHORN STEAK 0123456", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "FOOD_AND_DRINK_RESTAURANT", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "RWmGP5oMzdtreRojdm9zi5wEvmqNVpHapbADP", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "longhornsteakhouse.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 12.35, + "authorized_date": "2023-12-06", + "authorized_datetime": null, + "category": [ + "Service", + "Subscription" + ], + "category_id": "18061000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "3LEY2bJ6W1vkoaBjgVg3qBgYVEzD6p8d1dQdY", + "logo_url": "https://plaid-merchant-logos.plaid.com/netflix_675.png", + "name": "Netflix", + "phone_number": null, + "type": "merchant", + "website": "netflix.com" + } + ], + "date": "2023-12-08", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/netflix_675.png", + "merchant_entity_id": "3LEY2bJ6W1vkoaBjgVg3qBgYVEzD6p8d1dQdY", + "merchant_name": "Netflix", + "name": "Netflix", + "original_description": "NETFLIX.COM", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "ENTERTAINMENT_TV_AND_MOVIES", + "primary": "ENTERTAINMENT" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_ENTERTAINMENT.png", + "transaction_code": null, + "transaction_id": "6RrvP8d6aQt8RdaEAwWkFbyD6lRWjLi8DXeNb", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "netflix.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 4.37, + "authorized_date": "2023-12-06", + "authorized_datetime": null, + "category": [ + "Food and Drink", + "Restaurants", + "Fast Food" + ], + "category_id": "13005032", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "OO4K4Nr899JXvmoegRQvMrRkNkb7bNvQq14Bg", + "logo_url": "https://plaid-merchant-logos.plaid.com/braums_140.png", + "name": "Braum's", + "phone_number": null, + "type": "merchant", + "website": "braums.com" + } + ], + "date": "2023-12-08", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": "012 Braums Store", + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/braums_140.png", + "merchant_entity_id": "OO4K4Nr899JXvmoegRQvMrRkNkb7bNvQq14Bg", + "merchant_name": "Braum's", + "name": "012 BRAUMS STORE", + "original_description": "012 BRAUMS STORE", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "FOOD_AND_DRINK_OTHER_FOOD_AND_DRINK", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "XyXrM5BG47fmPpGD7694U6qPyJX8decbKnLVx", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "braums.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 18.09, + "authorized_date": "2023-12-07", + "authorized_datetime": null, + "category": [ + "Travel", + "Gas Stations" + ], + "category_id": "22009000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "8wYdwMD2rgkV7vJvKopnkp0gLRQvQjmVEgDZm", + "logo_url": "https://plaid-merchant-logos.plaid.com/racetrac_802.png", + "name": "RaceTrac", + "phone_number": null, + "type": "merchant", + "website": "racetrac.com" + } + ], + "date": "2023-12-08", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": "1840 Eastchase Pkwy", + "city": "Fort Worth", + "country": null, + "lat": 32.752529, + "lon": -97.171921, + "postal_code": "76120", + "region": "TX", + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/racetrac_802.png", + "merchant_entity_id": "8wYdwMD2rgkV7vJvKopnkp0gLRQvQjmVEgDZm", + "merchant_name": "RaceTrac", + "name": "RACETRAC 0123 01234567", + "original_description": "RACETRAC 0123 01234567", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "TRANSPORTATION_GAS", + "primary": "TRANSPORTATION" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_TRANSPORTATION.png", + "transaction_code": null, + "transaction_id": "DPZBW5VqgbFP764zbpqmSvjWJDPg3bt3WaJVn", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "racetrac.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 5.18, + "authorized_date": "2023-12-07", + "authorized_datetime": null, + "category": [ + "Food and Drink", + "Restaurants", + "Coffee Shop" + ], + "category_id": "13005043", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "p64nrAXvN7r7mjrdp0qNKnB137Da6BWbbrEwz", + "logo_url": "https://plaid-merchant-logos.plaid.com/dunkin_donuts_305.png", + "name": "Dunkin'", + "phone_number": null, + "type": "merchant", + "website": "dunkindonuts.com" + } + ], + "date": "2023-12-08", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": "012345" + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/dunkin_donuts_305.png", + "merchant_entity_id": "p64nrAXvN7r7mjrdp0qNKnB137Da6BWbbrEwz", + "merchant_name": "Dunkin'", + "name": "DD/BR #012345", + "original_description": "DD/BR #012345", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "FOOD_AND_DRINK_COFFEE", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "VbRqQ5rLdPcn6RqVP4QdsXJG18VQ3Et9gPExo", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "dunkindonuts.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 9.86, + "authorized_date": "2023-12-07", + "authorized_datetime": null, + "category": [ + "Food and Drink", + "Restaurants", + "Fast Food" + ], + "category_id": "13005032", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "yD7z7XqNmON4BRvVQa5gbVpRyqeYNY4gpbgkW", + "logo_url": "https://plaid-merchant-logos.plaid.com/raising_canes_chicken_fingers_806.png", + "name": "Raising Cane's Chicken Fingers", + "phone_number": null, + "type": "merchant", + "website": "raisingcanes.com" + } + ], + "date": "2023-12-08", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": "012" + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/raising_canes_chicken_fingers_806.png", + "merchant_entity_id": "yD7z7XqNmON4BRvVQa5gbVpRyqeYNY4gpbgkW", + "merchant_name": "Raising Cane's Chicken Fingers", + "name": "Raising Cane's Chicken Fingers", + "original_description": "RAISING CANE'S #012", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "FOOD_AND_DRINK_FAST_FOOD", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "wWnqpjJldatQbrvJydjETKPDB3J4E9cPZomkQ", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "raisingcanes.com" + } + ], + "has_more": true, + "modified": [], + "next_cursor": "CAESJXdXbnFwakpsZGF0UWJydkp5ZGpFVEtQREIzSjRFOWNQWm9ta1EiDAian63BBhCYuabxAioMCJqfrcEGEOjakKAD", + "removed": [], + "request_id": "65mZnutQJkxMlze", + "transactions_update_status": "HISTORICAL_UPDATE_COMPLETE" + } + recorded_at: Mon, 19 May 2025 15:34:58 GMT +- request: + method: post + uri: https://sandbox.plaid.com/transactions/sync + body: + encoding: UTF-8 + string: '{"access_token":"access-sandbox-d531d3c9-8520-43ca-9e58-5b70b79fd1d4","cursor":"CAESJXdXbnFwakpsZGF0UWJydkp5ZGpFVEtQREIzSjRFOWNQWm9ta1EiDAian63BBhCYuabxAioMCJqfrcEGEOjakKAD","count":100,"options":{"include_original_description":true}}' + headers: + Content-Type: + - application/json + User-Agent: + - Plaid Ruby v38.0.0 + Accept: + - application/json + Plaid-Client-Id: + - "" + Plaid-Version: + - '2020-09-14' + Plaid-Secret: + - "" + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + response: + status: + code: 200 + message: OK + headers: + Server: + - nginx + Date: + - Mon, 19 May 2025 15:34:59 GMT + Content-Type: + - application/json; charset=utf-8 + Transfer-Encoding: + - chunked + Connection: + - keep-alive + Plaid-Version: + - '2020-09-14' + Vary: + - Accept-Encoding + X-Envoy-Upstream-Service-Time: + - '507' + X-Envoy-Decorator-Operation: + - default.svc-apiv2:8080/* + Strict-Transport-Security: + - max-age=31536000; includeSubDomains; preload + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Xss-Protection: + - 1; mode=block + body: + encoding: ASCII-8BIT + string: !binary |- + ewogICJhY2NvdW50cyI6IFsKICAgIHsKICAgICAgImFjY291bnRfaWQiOiAiWnZsQkw1ZU1QUXRuWERWNlFyUjlzUmVOVlZ6MVhBaWVhZ0RQeiIsCiAgICAgICJiYWxhbmNlcyI6IHsKICAgICAgICAiYXZhaWxhYmxlIjogMTEwNjUuNzEsCiAgICAgICAgImN1cnJlbnQiOiAxMDAwLAogICAgICAgICJpc29fY3VycmVuY3lfY29kZSI6ICJVU0QiLAogICAgICAgICJsaW1pdCI6IDEyMjAwLAogICAgICAgICJ1bm9mZmljaWFsX2N1cnJlbmN5X2NvZGUiOiBudWxsCiAgICAgIH0sCiAgICAgICJob2xkZXJfY2F0ZWdvcnkiOiAicGVyc29uYWwiLAogICAgICAibWFzayI6ICIzMDUzIiwKICAgICAgIm5hbWUiOiAiVGVzdCBDcmVkaXQgQ2FyZCBBY2NvdW50IiwKICAgICAgIm9mZmljaWFsX25hbWUiOiAiUGxhaWQgY3JlZGl0IGNhcmQiLAogICAgICAic3VidHlwZSI6ICJjcmVkaXQgY2FyZCIsCiAgICAgICJ0eXBlIjogImNyZWRpdCIKICAgIH0KICBdLAogICJhZGRlZCI6IFsKICAgIHsKICAgICAgImFjY291bnRfaWQiOiAiWnZsQkw1ZU1QUXRuWERWNlFyUjlzUmVOVlZ6MVhBaWVhZ0RQeiIsCiAgICAgICJhY2NvdW50X293bmVyIjogbnVsbCwKICAgICAgImFtb3VudCI6IDI5Ljk5LAogICAgICAiYXV0aG9yaXplZF9kYXRlIjogIjIwMjMtMTItMDciLAogICAgICAiYXV0aG9yaXplZF9kYXRldGltZSI6IG51bGwsCiAgICAgICJjYXRlZ29yeSI6IFsKICAgICAgICAiU2hvcHMiLAogICAgICAgICJEaWdpdGFsIFB1cmNoYXNlIgogICAgICBdLAogICAgICAiY2F0ZWdvcnlfaWQiOiAiMTkwMTkwMDAiLAogICAgICAiY2hlY2tfbnVtYmVyIjogbnVsbCwKICAgICAgImNvdW50ZXJwYXJ0aWVzIjogWwogICAgICAgIHsKICAgICAgICAgICJjb25maWRlbmNlX2xldmVsIjogIlZFUllfSElHSCIsCiAgICAgICAgICAiZW50aXR5X2lkIjogIjJnT3dtcTlxSzU2SzYwb0RtM2VMclJFVjJCMm1WYWRrUm44TVciLAogICAgICAgICAgImxvZ29fdXJsIjogImh0dHBzOi8vcGxhaWQtbWVyY2hhbnQtbG9nb3MucGxhaWQuY29tL2FtYXpvbl80NC5wbmciLAogICAgICAgICAgIm5hbWUiOiAiQW1hem9uIiwKICAgICAgICAgICJwaG9uZV9udW1iZXIiOiBudWxsLAogICAgICAgICAgInR5cGUiOiAibWVyY2hhbnQiLAogICAgICAgICAgIndlYnNpdGUiOiAiYW1hem9uLmNvbSIKICAgICAgICB9CiAgICAgIF0sCiAgICAgICJkYXRlIjogIjIwMjMtMTItMTAiLAogICAgICAiZGF0ZXRpbWUiOiBudWxsLAogICAgICAiaXNvX2N1cnJlbmN5X2NvZGUiOiAiVVNEIiwKICAgICAgImxvY2F0aW9uIjogewogICAgICAgICJhZGRyZXNzIjogbnVsbCwKICAgICAgICAiY2l0eSI6IG51bGwsCiAgICAgICAgImNvdW50cnkiOiBudWxsLAogICAgICAgICJsYXQiOiBudWxsLAogICAgICAgICJsb24iOiBudWxsLAogICAgICAgICJwb3N0YWxfY29kZSI6IG51bGwsCiAgICAgICAgInJlZ2lvbiI6IG51bGwsCiAgICAgICAgInN0b3JlX251bWJlciI6IG51bGwKICAgICAgfSwKICAgICAgImxvZ29fdXJsIjogImh0dHBzOi8vcGxhaWQtbWVyY2hhbnQtbG9nb3MucGxhaWQuY29tL2FtYXpvbl80NC5wbmciLAogICAgICAibWVyY2hhbnRfZW50aXR5X2lkIjogIjJnT3dtcTlxSzU2SzYwb0RtM2VMclJFVjJCMm1WYWRrUm44TVciLAogICAgICAibWVyY2hhbnRfbmFtZSI6ICJBbWF6b24iLAogICAgICAibmFtZSI6ICJBbWF6b24gc2VsbGVyIHJlcGF5IiwKICAgICAgIm9yaWdpbmFsX2Rlc2NyaXB0aW9uIjogIkFtYXpvbiBzZWxsZXIgcmVwYXkiLAogICAgICAicGF5bWVudF9jaGFubmVsIjogIm9ubGluZSIsCiAgICAgICJwYXltZW50X21ldGEiOiB7CiAgICAgICAgImJ5X29yZGVyX29mIjogbnVsbCwKICAgICAgICAicGF5ZWUiOiBudWxsLAogICAgICAgICJwYXllciI6IG51bGwsCiAgICAgICAgInBheW1lbnRfbWV0aG9kIjogbnVsbCwKICAgICAgICAicGF5bWVudF9wcm9jZXNzb3IiOiBudWxsLAogICAgICAgICJwcGRfaWQiOiBudWxsLAogICAgICAgICJyZWFzb24iOiBudWxsLAogICAgICAgICJyZWZlcmVuY2VfbnVtYmVyIjogbnVsbAogICAgICB9LAogICAgICAicGVuZGluZyI6IGZhbHNlLAogICAgICAicGVuZGluZ190cmFuc2FjdGlvbl9pZCI6IG51bGwsCiAgICAgICJwZXJzb25hbF9maW5hbmNlX2NhdGVnb3J5IjogewogICAgICAgICJjb25maWRlbmNlX2xldmVsIjogIlZFUllfSElHSCIsCiAgICAgICAgImRldGFpbGVkIjogIkdFTkVSQUxfTUVSQ0hBTkRJU0VfT05MSU5FX01BUktFVFBMQUNFUyIsCiAgICAgICAgInByaW1hcnkiOiAiR0VORVJBTF9NRVJDSEFORElTRSIKICAgICAgfSwKICAgICAgInBlcnNvbmFsX2ZpbmFuY2VfY2F0ZWdvcnlfaWNvbl91cmwiOiAiaHR0cHM6Ly9wbGFpZC1jYXRlZ29yeS1pY29ucy5wbGFpZC5jb20vUEZDX0dFTkVSQUxfTUVSQ0hBTkRJU0UucG5nIiwKICAgICAgInRyYW5zYWN0aW9uX2NvZGUiOiBudWxsLAogICAgICAidHJhbnNhY3Rpb25faWQiOiAiNXZLNU5nNmJkZXRrWDRkREE2TmJTcVpLN1FEb1hNdTVLNzhSSiIsCiAgICAgICJ0cmFuc2FjdGlvbl90eXBlIjogImRpZ2l0YWwiLAogICAgICAidW5vZmZpY2lhbF9jdXJyZW5jeV9jb2RlIjogbnVsbCwKICAgICAgIndlYnNpdGUiOiAiYW1hem9uLmNvbSIKICAgIH0sCiAgICB7CiAgICAgICJhY2NvdW50X2lkIjogIlp2bEJMNWVNUFF0blhEVjZRclI5c1JlTlZWejFYQWllYWdEUHoiLAogICAgICAiYWNjb3VudF9vd25lciI6IG51bGwsCiAgICAgICJhbW91bnQiOiAyOCwKICAgICAgImF1dGhvcml6ZWRfZGF0ZSI6ICIyMDIzLTEyLTA3IiwKICAgICAgImF1dGhvcml6ZWRfZGF0ZXRpbWUiOiBudWxsLAogICAgICAiY2F0ZWdvcnkiOiBbCiAgICAgICAgIlNlcnZpY2UiLAogICAgICAgICJGb29kIGFuZCBCZXZlcmFnZSIKICAgICAgXSwKICAgICAgImNhdGVnb3J5X2lkIjogIjE4MDIxMDAwIiwKICAgICAgImNoZWNrX251bWJlciI6IG51bGwsCiAgICAgICJjb3VudGVycGFydGllcyI6IFtdLAogICAgICAiZGF0ZSI6ICIyMDIzLTEyLTEwIiwKICAgICAgImRhdGV0aW1lIjogbnVsbCwKICAgICAgImlzb19jdXJyZW5jeV9jb2RlIjogIlVTRCIsCiAgICAgICJsb2NhdGlvbiI6IHsKICAgICAgICAiYWRkcmVzcyI6IG51bGwsCiAgICAgICAgImNpdHkiOiBudWxsLAogICAgICAgICJjb3VudHJ5IjogbnVsbCwKICAgICAgICAibGF0IjogbnVsbCwKICAgICAgICAibG9uIjogbnVsbCwKICAgICAgICAicG9zdGFsX2NvZGUiOiBudWxsLAogICAgICAgICJyZWdpb24iOiBudWxsLAogICAgICAgICJzdG9yZV9udW1iZXIiOiBudWxsCiAgICAgIH0sCiAgICAgICJsb2dvX3VybCI6IG51bGwsCiAgICAgICJtZXJjaGFudF9lbnRpdHlfaWQiOiBudWxsLAogICAgICAibWVyY2hhbnRfbmFtZSI6IG51bGwsCiAgICAgICJuYW1lIjogIlJVU0ggQ0FSRCBERUxJVkVSWSBGRUUiLAogICAgICAib3JpZ2luYWxfZGVzY3JpcHRpb24iOiAiUlVTSCBDQVJEIERFTElWRVJZIEZFRSIsCiAgICAgICJwYXltZW50X2NoYW5uZWwiOiAib25saW5lIiwKICAgICAgInBheW1lbnRfbWV0YSI6IHsKICAgICAgICAiYnlfb3JkZXJfb2YiOiBudWxsLAogICAgICAgICJwYXllZSI6IG51bGwsCiAgICAgICAgInBheWVyIjogbnVsbCwKICAgICAgICAicGF5bWVudF9tZXRob2QiOiBudWxsLAogICAgICAgICJwYXltZW50X3Byb2Nlc3NvciI6IG51bGwsCiAgICAgICAgInBwZF9pZCI6IG51bGwsCiAgICAgICAgInJlYXNvbiI6IG51bGwsCiAgICAgICAgInJlZmVyZW5jZV9udW1iZXIiOiBudWxsCiAgICAgIH0sCiAgICAgICJwZW5kaW5nIjogZmFsc2UsCiAgICAgICJwZW5kaW5nX3RyYW5zYWN0aW9uX2lkIjogbnVsbCwKICAgICAgInBlcnNvbmFsX2ZpbmFuY2VfY2F0ZWdvcnkiOiB7CiAgICAgICAgImNvbmZpZGVuY2VfbGV2ZWwiOiAiTE9XIiwKICAgICAgICAiZGV0YWlsZWQiOiAiQkFOS19GRUVTX09USEVSX0JBTktfRkVFUyIsCiAgICAgICAgInByaW1hcnkiOiAiQkFOS19GRUVTIgogICAgICB9LAogICAgICAicGVyc29uYWxfZmluYW5jZV9jYXRlZ29yeV9pY29uX3VybCI6ICJodHRwczovL3BsYWlkLWNhdGVnb3J5LWljb25zLnBsYWlkLmNvbS9QRkNfQkFOS19GRUVTLnBuZyIsCiAgICAgICJ0cmFuc2FjdGlvbl9jb2RlIjogbnVsbCwKICAgICAgInRyYW5zYWN0aW9uX2lkIjogIkpNZ1Z6NTl4bmxoTTFweUtsamtlVUFYWmdMSkR3NklCNmdrYXciLAogICAgICAidHJhbnNhY3Rpb25fdHlwZSI6ICJwbGFjZSIsCiAgICAgICJ1bm9mZmljaWFsX2N1cnJlbmN5X2NvZGUiOiBudWxsLAogICAgICAid2Vic2l0ZSI6IG51bGwKICAgIH0sCiAgICB7CiAgICAgICJhY2NvdW50X2lkIjogIlp2bEJMNWVNUFF0blhEVjZRclI5c1JlTlZWejFYQWllYWdEUHoiLAogICAgICAiYWNjb3VudF9vd25lciI6IG51bGwsCiAgICAgICJhbW91bnQiOiAzNi44NywKICAgICAgImF1dGhvcml6ZWRfZGF0ZSI6ICIyMDIzLTEyLTA3IiwKICAgICAgImF1dGhvcml6ZWRfZGF0ZXRpbWUiOiBudWxsLAogICAgICAiY2F0ZWdvcnkiOiBbCiAgICAgICAgIkZvb2QgYW5kIERyaW5rIiwKICAgICAgICAiUmVzdGF1cmFudHMiCiAgICAgIF0sCiAgICAgICJjYXRlZ29yeV9pZCI6ICIxMzAwNTAwMCIsCiAgICAgICJjaGVja19udW1iZXIiOiBudWxsLAogICAgICAiY291bnRlcnBhcnRpZXMiOiBbXSwKICAgICAgImRhdGUiOiAiMjAyMy0xMi0xMiIsCiAgICAgICJkYXRldGltZSI6IG51bGwsCiAgICAgICJpc29fY3VycmVuY3lfY29kZSI6ICJVU0QiLAogICAgICAibG9jYXRpb24iOiB7CiAgICAgICAgImFkZHJlc3MiOiBudWxsLAogICAgICAgICJjaXR5IjogbnVsbCwKICAgICAgICAiY291bnRyeSI6IG51bGwsCiAgICAgICAgImxhdCI6IG51bGwsCiAgICAgICAgImxvbiI6IG51bGwsCiAgICAgICAgInBvc3RhbF9jb2RlIjogbnVsbCwKICAgICAgICAicmVnaW9uIjogbnVsbCwKICAgICAgICAic3RvcmVfbnVtYmVyIjogbnVsbAogICAgICB9LAogICAgICAibG9nb191cmwiOiBudWxsLAogICAgICAibWVyY2hhbnRfZW50aXR5X2lkIjogbnVsbCwKICAgICAgIm1lcmNoYW50X25hbWUiOiBudWxsLAogICAgICAibmFtZSI6ICJDSFAiLAogICAgICAib3JpZ2luYWxfZGVzY3JpcHRpb24iOiAiQ0hQIiwKICAgICAgInBheW1lbnRfY2hhbm5lbCI6ICJpbiBzdG9yZSIsCiAgICAgICJwYXltZW50X21ldGEiOiB7CiAgICAgICAgImJ5X29yZGVyX29mIjogbnVsbCwKICAgICAgICAicGF5ZWUiOiBudWxsLAogICAgICAgICJwYXllciI6IG51bGwsCiAgICAgICAgInBheW1lbnRfbWV0aG9kIjogbnVsbCwKICAgICAgICAicGF5bWVudF9wcm9jZXNzb3IiOiBudWxsLAogICAgICAgICJwcGRfaWQiOiBudWxsLAogICAgICAgICJyZWFzb24iOiBudWxsLAogICAgICAgICJyZWZlcmVuY2VfbnVtYmVyIjogbnVsbAogICAgICB9LAogICAgICAicGVuZGluZyI6IGZhbHNlLAogICAgICAicGVuZGluZ190cmFuc2FjdGlvbl9pZCI6IG51bGwsCiAgICAgICJwZXJzb25hbF9maW5hbmNlX2NhdGVnb3J5IjogewogICAgICAgICJjb25maWRlbmNlX2xldmVsIjogIkxPVyIsCiAgICAgICAgImRldGFpbGVkIjogIkdFTkVSQUxfTUVSQ0hBTkRJU0VfT1RIRVJfR0VORVJBTF9NRVJDSEFORElTRSIsCiAgICAgICAgInByaW1hcnkiOiAiR0VORVJBTF9NRVJDSEFORElTRSIKICAgICAgfSwKICAgICAgInBlcnNvbmFsX2ZpbmFuY2VfY2F0ZWdvcnlfaWNvbl91cmwiOiAiaHR0cHM6Ly9wbGFpZC1jYXRlZ29yeS1pY29ucy5wbGFpZC5jb20vUEZDX0dFTkVSQUxfTUVSQ0hBTkRJU0UucG5nIiwKICAgICAgInRyYW5zYWN0aW9uX2NvZGUiOiBudWxsLAogICAgICAidHJhbnNhY3Rpb25faWQiOiAiazdaQWFxa0RuOUllTFd2UE1EM1FUUW13akFhZTYxc0w2ZG9OUiIsCiAgICAgICJ0cmFuc2FjdGlvbl90eXBlIjogInBsYWNlIiwKICAgICAgInVub2ZmaWNpYWxfY3VycmVuY3lfY29kZSI6IG51bGwsCiAgICAgICJ3ZWJzaXRlIjogbnVsbAogICAgfSwKICAgIHsKICAgICAgImFjY291bnRfaWQiOiAiWnZsQkw1ZU1QUXRuWERWNlFyUjlzUmVOVlZ6MVhBaWVhZ0RQeiIsCiAgICAgICJhY2NvdW50X293bmVyIjogbnVsbCwKICAgICAgImFtb3VudCI6IDcyLjY0LAogICAgICAiYXV0aG9yaXplZF9kYXRlIjogIjIwMjMtMTItMTIiLAogICAgICAiYXV0aG9yaXplZF9kYXRldGltZSI6IG51bGwsCiAgICAgICJjYXRlZ29yeSI6IFsKICAgICAgICAiRm9vZCBhbmQgRHJpbmsiLAogICAgICAgICJSZXN0YXVyYW50cyIKICAgICAgXSwKICAgICAgImNhdGVnb3J5X2lkIjogIjEzMDA1MDAwIiwKICAgICAgImNoZWNrX251bWJlciI6IG51bGwsCiAgICAgICJjb3VudGVycGFydGllcyI6IFsKICAgICAgICB7CiAgICAgICAgICAiY29uZmlkZW5jZV9sZXZlbCI6ICJWRVJZX0hJR0giLAogICAgICAgICAgImVudGl0eV9pZCI6ICJ5RE1adjkwYlpNWU41ZVFLTTNrNnFhS2pPNGFMTTBCUWtYbk9yIiwKICAgICAgICAgICJsb2dvX3VybCI6ICJodHRwczovL3BsYWlkLW1lcmNoYW50LWxvZ29zLnBsYWlkLmNvbS9sb25naG9ybl9zdGVha2hvdXNlXzU4OC5wbmciLAogICAgICAgICAgIm5hbWUiOiAiTG9uZ0hvcm4gU3RlYWtob3VzZSIsCiAgICAgICAgICAicGhvbmVfbnVtYmVyIjogbnVsbCwKICAgICAgICAgICJ0eXBlIjogIm1lcmNoYW50IiwKICAgICAgICAgICJ3ZWJzaXRlIjogImxvbmdob3Juc3RlYWtob3VzZS5jb20iCiAgICAgICAgfQogICAgICBdLAogICAgICAiZGF0ZSI6ICIyMDIzLTEyLTEyIiwKICAgICAgImRhdGV0aW1lIjogbnVsbCwKICAgICAgImlzb19jdXJyZW5jeV9jb2RlIjogIlVTRCIsCiAgICAgICJsb2NhdGlvbiI6IHsKICAgICAgICAiYWRkcmVzcyI6IG51bGwsCiAgICAgICAgImNpdHkiOiBudWxsLAogICAgICAgICJjb3VudHJ5IjogbnVsbCwKICAgICAgICAibGF0IjogbnVsbCwKICAgICAgICAibG9uIjogbnVsbCwKICAgICAgICAicG9zdGFsX2NvZGUiOiBudWxsLAogICAgICAgICJyZWdpb24iOiBudWxsLAogICAgICAgICJzdG9yZV9udW1iZXIiOiBudWxsCiAgICAgIH0sCiAgICAgICJsb2dvX3VybCI6ICJodHRwczovL3BsYWlkLW1lcmNoYW50LWxvZ29zLnBsYWlkLmNvbS9sb25naG9ybl9zdGVha2hvdXNlXzU4OC5wbmciLAogICAgICAibWVyY2hhbnRfZW50aXR5X2lkIjogInlETVp2OTBiWk1ZTjVlUUtNM2s2cWFLak80YUxNMEJRa1huT3IiLAogICAgICAibWVyY2hhbnRfbmFtZSI6ICJMb25nSG9ybiBTdGVha2hvdXNlIiwKICAgICAgIm5hbWUiOiAiTE9OR0hPUk4gU1RFQUsgMDEyMzQ1NiIsCiAgICAgICJvcmlnaW5hbF9kZXNjcmlwdGlvbiI6ICJMT05HSE9STiBTVEVBSyAwMTIzNDU2IiwKICAgICAgInBheW1lbnRfY2hhbm5lbCI6ICJpbiBzdG9yZSIsCiAgICAgICJwYXltZW50X21ldGEiOiB7CiAgICAgICAgImJ5X29yZGVyX29mIjogbnVsbCwKICAgICAgICAicGF5ZWUiOiBudWxsLAogICAgICAgICJwYXllciI6IG51bGwsCiAgICAgICAgInBheW1lbnRfbWV0aG9kIjogbnVsbCwKICAgICAgICAicGF5bWVudF9wcm9jZXNzb3IiOiBudWxsLAogICAgICAgICJwcGRfaWQiOiBudWxsLAogICAgICAgICJyZWFzb24iOiBudWxsLAogICAgICAgICJyZWZlcmVuY2VfbnVtYmVyIjogbnVsbAogICAgICB9LAogICAgICAicGVuZGluZyI6IGZhbHNlLAogICAgICAicGVuZGluZ190cmFuc2FjdGlvbl9pZCI6IG51bGwsCiAgICAgICJwZXJzb25hbF9maW5hbmNlX2NhdGVnb3J5IjogewogICAgICAgICJjb25maWRlbmNlX2xldmVsIjogIlZFUllfSElHSCIsCiAgICAgICAgImRldGFpbGVkIjogIkZPT0RfQU5EX0RSSU5LX1JFU1RBVVJBTlQiLAogICAgICAgICJwcmltYXJ5IjogIkZPT0RfQU5EX0RSSU5LIgogICAgICB9LAogICAgICAicGVyc29uYWxfZmluYW5jZV9jYXRlZ29yeV9pY29uX3VybCI6ICJodHRwczovL3BsYWlkLWNhdGVnb3J5LWljb25zLnBsYWlkLmNvbS9QRkNfRk9PRF9BTkRfRFJJTksucG5nIiwKICAgICAgInRyYW5zYWN0aW9uX2NvZGUiOiBudWxsLAogICAgICAidHJhbnNhY3Rpb25faWQiOiAibGVNQTRLZERidlQ5Umo4YUR3M0FTbHF3Wm1kdkdEaXBvZFJqRyIsCiAgICAgICJ0cmFuc2FjdGlvbl90eXBlIjogInBsYWNlIiwKICAgICAgInVub2ZmaWNpYWxfY3VycmVuY3lfY29kZSI6IG51bGwsCiAgICAgICJ3ZWJzaXRlIjogImxvbmdob3Juc3RlYWtob3VzZS5jb20iCiAgICB9LAogICAgewogICAgICAiYWNjb3VudF9pZCI6ICJadmxCTDVlTVBRdG5YRFY2UXJSOXNSZU5WVnoxWEFpZWFnRFB6IiwKICAgICAgImFjY291bnRfb3duZXIiOiBudWxsLAogICAgICAiYW1vdW50IjogMzkxLjIsCiAgICAgICJhdXRob3JpemVkX2RhdGUiOiAiMjAyMy0xMi0xMiIsCiAgICAgICJhdXRob3JpemVkX2RhdGV0aW1lIjogbnVsbCwKICAgICAgImNhdGVnb3J5IjogWwogICAgICAgICJTZXJ2aWNlIiwKICAgICAgICAiVHJhdmVsIEFnZW50cyBhbmQgVG91ciBPcGVyYXRvcnMiCiAgICAgIF0sCiAgICAgICJjYXRlZ29yeV9pZCI6ICIxODA2NzAwMCIsCiAgICAgICJjaGVja19udW1iZXIiOiBudWxsLAogICAgICAiY291bnRlcnBhcnRpZXMiOiBbXSwKICAgICAgImRhdGUiOiAiMjAyMy0xMi0xMiIsCiAgICAgICJkYXRldGltZSI6IG51bGwsCiAgICAgICJpc29fY3VycmVuY3lfY29kZSI6ICJVU0QiLAogICAgICAibG9jYXRpb24iOiB7CiAgICAgICAgImFkZHJlc3MiOiBudWxsLAogICAgICAgICJjaXR5IjogbnVsbCwKICAgICAgICAiY291bnRyeSI6IG51bGwsCiAgICAgICAgImxhdCI6IG51bGwsCiAgICAgICAgImxvbiI6IG51bGwsCiAgICAgICAgInBvc3RhbF9jb2RlIjogbnVsbCwKICAgICAgICAicmVnaW9uIjogbnVsbCwKICAgICAgICAic3RvcmVfbnVtYmVyIjogbnVsbAogICAgICB9LAogICAgICAibG9nb191cmwiOiBudWxsLAogICAgICAibWVyY2hhbnRfZW50aXR5X2lkIjogbnVsbCwKICAgICAgIm1lcmNoYW50X25hbWUiOiBudWxsLAogICAgICAibmFtZSI6ICJPcmJpdHowMTIzNDU2Nzg5MDEyMyIsCiAgICAgICJvcmlnaW5hbF9kZXNjcmlwdGlvbiI6ICJPcmJpdHowMTIzNDU2Nzg5MDEyMyIsCiAgICAgICJwYXltZW50X2NoYW5uZWwiOiAiaW4gc3RvcmUiLAogICAgICAicGF5bWVudF9tZXRhIjogewogICAgICAgICJieV9vcmRlcl9vZiI6IG51bGwsCiAgICAgICAgInBheWVlIjogbnVsbCwKICAgICAgICAicGF5ZXIiOiBudWxsLAogICAgICAgICJwYXltZW50X21ldGhvZCI6IG51bGwsCiAgICAgICAgInBheW1lbnRfcHJvY2Vzc29yIjogbnVsbCwKICAgICAgICAicHBkX2lkIjogbnVsbCwKICAgICAgICAicmVhc29uIjogbnVsbCwKICAgICAgICAicmVmZXJlbmNlX251bWJlciI6IG51bGwKICAgICAgfSwKICAgICAgInBlbmRpbmciOiBmYWxzZSwKICAgICAgInBlbmRpbmdfdHJhbnNhY3Rpb25faWQiOiBudWxsLAogICAgICAicGVyc29uYWxfZmluYW5jZV9jYXRlZ29yeSI6IHsKICAgICAgICAiY29uZmlkZW5jZV9sZXZlbCI6ICJMT1ciLAogICAgICAgICJkZXRhaWxlZCI6ICJFTlRFUlRBSU5NRU5UX1NQT1JUSU5HX0VWRU5UU19BTVVTRU1FTlRfUEFSS1NfQU5EX01VU0VVTVMiLAogICAgICAgICJwcmltYXJ5IjogIkVOVEVSVEFJTk1FTlQiCiAgICAgIH0sCiAgICAgICJwZXJzb25hbF9maW5hbmNlX2NhdGVnb3J5X2ljb25fdXJsIjogImh0dHBzOi8vcGxhaWQtY2F0ZWdvcnktaWNvbnMucGxhaWQuY29tL1BGQ19FTlRFUlRBSU5NRU5ULnBuZyIsCiAgICAgICJ0cmFuc2FjdGlvbl9jb2RlIjogbnVsbCwKICAgICAgInRyYW5zYWN0aW9uX2lkIjogImJCZHlsSmdYTGt1MXJ5Vk5ROVhlaHhSZWczNEtHN3RtYlo3YVIiLAogICAgICAidHJhbnNhY3Rpb25fdHlwZSI6ICJwbGFjZSIsCiAgICAgICJ1bm9mZmljaWFsX2N1cnJlbmN5X2NvZGUiOiBudWxsLAogICAgICAid2Vic2l0ZSI6IG51bGwKICAgIH0sCiAgICB7CiAgICAgICJhY2NvdW50X2lkIjogIlp2bEJMNWVNUFF0blhEVjZRclI5c1JlTlZWejFYQWllYWdEUHoiLAogICAgICAiYWNjb3VudF9vd25lciI6IG51bGwsCiAgICAgICJhbW91bnQiOiAxNi45MSwKICAgICAgImF1dGhvcml6ZWRfZGF0ZSI6ICIyMDIzLTEyLTEyIiwKICAgICAgImF1dGhvcml6ZWRfZGF0ZXRpbWUiOiBudWxsLAogICAgICAiY2F0ZWdvcnkiOiBbCiAgICAgICAgIlNob3BzIiwKICAgICAgICAiU3VwZXJtYXJrZXRzIGFuZCBHcm9jZXJpZXMiCiAgICAgIF0sCiAgICAgICJjYXRlZ29yeV9pZCI6ICIxOTA0NzAwMCIsCiAgICAgICJjaGVja19udW1iZXIiOiBudWxsLAogICAgICAiY291bnRlcnBhcnRpZXMiOiBbCiAgICAgICAgewogICAgICAgICAgImNvbmZpZGVuY2VfbGV2ZWwiOiAiVkVSWV9ISUdIIiwKICAgICAgICAgICJlbnRpdHlfaWQiOiAiRGdxRXc3MGo3N0RiSnF5YmFLMnJtTXE2Wnp3amc2OEo3Qjd6byIsCiAgICAgICAgICAibG9nb191cmwiOiAiaHR0cHM6Ly9wbGFpZC1tZXJjaGFudC1sb2dvcy5wbGFpZC5jb20vc2FmZXdheV84NTMucG5nIiwKICAgICAgICAgICJuYW1lIjogIlNhZmV3YXkiLAogICAgICAgICAgInBob25lX251bWJlciI6IG51bGwsCiAgICAgICAgICAidHlwZSI6ICJtZXJjaGFudCIsCiAgICAgICAgICAid2Vic2l0ZSI6ICJzYWZld2F5LmNvbSIKICAgICAgICB9CiAgICAgIF0sCiAgICAgICJkYXRlIjogIjIwMjMtMTItMTIiLAogICAgICAiZGF0ZXRpbWUiOiBudWxsLAogICAgICAiaXNvX2N1cnJlbmN5X2NvZGUiOiAiVVNEIiwKICAgICAgImxvY2F0aW9uIjogewogICAgICAgICJhZGRyZXNzIjogbnVsbCwKICAgICAgICAiY2l0eSI6IG51bGwsCiAgICAgICAgImNvdW50cnkiOiBudWxsLAogICAgICAgICJsYXQiOiBudWxsLAogICAgICAgICJsb24iOiBudWxsLAogICAgICAgICJwb3N0YWxfY29kZSI6IG51bGwsCiAgICAgICAgInJlZ2lvbiI6IG51bGwsCiAgICAgICAgInN0b3JlX251bWJlciI6IG51bGwKICAgICAgfSwKICAgICAgImxvZ29fdXJsIjogImh0dHBzOi8vcGxhaWQtbWVyY2hhbnQtbG9nb3MucGxhaWQuY29tL3NhZmV3YXlfODUzLnBuZyIsCiAgICAgICJtZXJjaGFudF9lbnRpdHlfaWQiOiAiRGdxRXc3MGo3N0RiSnF5YmFLMnJtTXE2Wnp3amc2OEo3Qjd6byIsCiAgICAgICJtZXJjaGFudF9uYW1lIjogIlNhZmV3YXkiLAogICAgICAibmFtZSI6ICJTYWZld2F5IiwKICAgICAgIm9yaWdpbmFsX2Rlc2NyaXB0aW9uIjogIlNhZmV3YXkiLAogICAgICAicGF5bWVudF9jaGFubmVsIjogImluIHN0b3JlIiwKICAgICAgInBheW1lbnRfbWV0YSI6IHsKICAgICAgICAiYnlfb3JkZXJfb2YiOiBudWxsLAogICAgICAgICJwYXllZSI6IG51bGwsCiAgICAgICAgInBheWVyIjogbnVsbCwKICAgICAgICAicGF5bWVudF9tZXRob2QiOiBudWxsLAogICAgICAgICJwYXltZW50X3Byb2Nlc3NvciI6IG51bGwsCiAgICAgICAgInBwZF9pZCI6IG51bGwsCiAgICAgICAgInJlYXNvbiI6IG51bGwsCiAgICAgICAgInJlZmVyZW5jZV9udW1iZXIiOiBudWxsCiAgICAgIH0sCiAgICAgICJwZW5kaW5nIjogZmFsc2UsCiAgICAgICJwZW5kaW5nX3RyYW5zYWN0aW9uX2lkIjogbnVsbCwKICAgICAgInBlcnNvbmFsX2ZpbmFuY2VfY2F0ZWdvcnkiOiB7CiAgICAgICAgImNvbmZpZGVuY2VfbGV2ZWwiOiAiVkVSWV9ISUdIIiwKICAgICAgICAiZGV0YWlsZWQiOiAiRk9PRF9BTkRfRFJJTktfR1JPQ0VSSUVTIiwKICAgICAgICAicHJpbWFyeSI6ICJGT09EX0FORF9EUklOSyIKICAgICAgfSwKICAgICAgInBlcnNvbmFsX2ZpbmFuY2VfY2F0ZWdvcnlfaWNvbl91cmwiOiAiaHR0cHM6Ly9wbGFpZC1jYXRlZ29yeS1pY29ucy5wbGFpZC5jb20vUEZDX0ZPT0RfQU5EX0RSSU5LLnBuZyIsCiAgICAgICJ0cmFuc2FjdGlvbl9jb2RlIjogbnVsbCwKICAgICAgInRyYW5zYWN0aW9uX2lkIjogIm1RMUFOa2JEbVJmYjR5dko2bnBNdDZMbUJqMU55RWNneWRYeFYiLAogICAgICAidHJhbnNhY3Rpb25fdHlwZSI6ICJwbGFjZSIsCiAgICAgICJ1bm9mZmljaWFsX2N1cnJlbmN5X2NvZGUiOiBudWxsLAogICAgICAid2Vic2l0ZSI6ICJzYWZld2F5LmNvbSIKICAgIH0sCiAgICB7CiAgICAgICJhY2NvdW50X2lkIjogIlp2bEJMNWVNUFF0blhEVjZRclI5c1JlTlZWejFYQWllYWdEUHoiLAogICAgICAiYWNjb3VudF9vd25lciI6IG51bGwsCiAgICAgICJhbW91bnQiOiA0OC4xNCwKICAgICAgImF1dGhvcml6ZWRfZGF0ZSI6ICIyMDIzLTEyLTA4IiwKICAgICAgImF1dGhvcml6ZWRfZGF0ZXRpbWUiOiBudWxsLAogICAgICAiY2F0ZWdvcnkiOiBbCiAgICAgICAgIlNob3BzIiwKICAgICAgICAiQ29tcHV0ZXJzIGFuZCBFbGVjdHJvbmljcyIKICAgICAgXSwKICAgICAgImNhdGVnb3J5X2lkIjogIjE5MDEzMDAwIiwKICAgICAgImNoZWNrX251bWJlciI6IG51bGwsCiAgICAgICJjb3VudGVycGFydGllcyI6IFtdLAogICAgICAiZGF0ZSI6ICIyMDIzLTEyLTExIiwKICAgICAgImRhdGV0aW1lIjogbnVsbCwKICAgICAgImlzb19jdXJyZW5jeV9jb2RlIjogIlVTRCIsCiAgICAgICJsb2NhdGlvbiI6IHsKICAgICAgICAiYWRkcmVzcyI6IG51bGwsCiAgICAgICAgImNpdHkiOiBudWxsLAogICAgICAgICJjb3VudHJ5IjogbnVsbCwKICAgICAgICAibGF0IjogbnVsbCwKICAgICAgICAibG9uIjogbnVsbCwKICAgICAgICAicG9zdGFsX2NvZGUiOiBudWxsLAogICAgICAgICJyZWdpb24iOiBudWxsLAogICAgICAgICJzdG9yZV9udW1iZXIiOiBudWxsCiAgICAgIH0sCiAgICAgICJsb2dvX3VybCI6IG51bGwsCiAgICAgICJtZXJjaGFudF9lbnRpdHlfaWQiOiBudWxsLAogICAgICAibWVyY2hhbnRfbmFtZSI6IG51bGwsCiAgICAgICJuYW1lIjogIkJlc3QgQnV5IiwKICAgICAgIm9yaWdpbmFsX2Rlc2NyaXB0aW9uIjogIkJFU1RCVVlDT00wMTIzNDU2Nzg5MDEiLAogICAgICAicGF5bWVudF9jaGFubmVsIjogImluIHN0b3JlIiwKICAgICAgInBheW1lbnRfbWV0YSI6IHsKICAgICAgICAiYnlfb3JkZXJfb2YiOiBudWxsLAogICAgICAgICJwYXllZSI6IG51bGwsCiAgICAgICAgInBheWVyIjogbnVsbCwKICAgICAgICAicGF5bWVudF9tZXRob2QiOiBudWxsLAogICAgICAgICJwYXltZW50X3Byb2Nlc3NvciI6IG51bGwsCiAgICAgICAgInBwZF9pZCI6IG51bGwsCiAgICAgICAgInJlYXNvbiI6IG51bGwsCiAgICAgICAgInJlZmVyZW5jZV9udW1iZXIiOiBudWxsCiAgICAgIH0sCiAgICAgICJwZW5kaW5nIjogZmFsc2UsCiAgICAgICJwZW5kaW5nX3RyYW5zYWN0aW9uX2lkIjogbnVsbCwKICAgICAgInBlcnNvbmFsX2ZpbmFuY2VfY2F0ZWdvcnkiOiB7CiAgICAgICAgImNvbmZpZGVuY2VfbGV2ZWwiOiAiTE9XIiwKICAgICAgICAiZGV0YWlsZWQiOiAiR0VORVJBTF9NRVJDSEFORElTRV9PVEhFUl9HRU5FUkFMX01FUkNIQU5ESVNFIiwKICAgICAgICAicHJpbWFyeSI6ICJHRU5FUkFMX01FUkNIQU5ESVNFIgogICAgICB9LAogICAgICAicGVyc29uYWxfZmluYW5jZV9jYXRlZ29yeV9pY29uX3VybCI6ICJodHRwczovL3BsYWlkLWNhdGVnb3J5LWljb25zLnBsYWlkLmNvbS9QRkNfR0VORVJBTF9NRVJDSEFORElTRS5wbmciLAogICAgICAidHJhbnNhY3Rpb25fY29kZSI6IG51bGwsCiAgICAgICJ0cmFuc2FjdGlvbl9pZCI6ICJ5R21yZ2U1SzRORnBEUXdlQkw0eXVQTTM1cnhkWFppNDZYd2pWIiwKICAgICAgInRyYW5zYWN0aW9uX3R5cGUiOiAicGxhY2UiLAogICAgICAidW5vZmZpY2lhbF9jdXJyZW5jeV9jb2RlIjogbnVsbCwKICAgICAgIndlYnNpdGUiOiBudWxsCiAgICB9LAogICAgewogICAgICAiYWNjb3VudF9pZCI6ICJadmxCTDVlTVBRdG5YRFY2UXJSOXNSZU5WVnoxWEFpZWFnRFB6IiwKICAgICAgImFjY291bnRfb3duZXIiOiBudWxsLAogICAgICAiYW1vdW50IjogNiwKICAgICAgImF1dGhvcml6ZWRfZGF0ZSI6ICIyMDIzLTEyLTEyIiwKICAgICAgImF1dGhvcml6ZWRfZGF0ZXRpbWUiOiBudWxsLAogICAgICAiY2F0ZWdvcnkiOiBbCiAgICAgICAgIlNlcnZpY2UiLAogICAgICAgICJQZXJzb25hbCBDYXJlIgogICAgICBdLAogICAgICAiY2F0ZWdvcnlfaWQiOiAiMTgwNDUwMDAiLAogICAgICAiY2hlY2tfbnVtYmVyIjogbnVsbCwKICAgICAgImNvdW50ZXJwYXJ0aWVzIjogWwogICAgICAgIHsKICAgICAgICAgICJjb25maWRlbmNlX2xldmVsIjogIkxPVyIsCiAgICAgICAgICAiZW50aXR5X2lkIjogbnVsbCwKICAgICAgICAgICJsb2dvX3VybCI6IG51bGwsCiAgICAgICAgICAibmFtZSI6ICJMYXVuZHJ5IFdhdmVyaWRlciIsCiAgICAgICAgICAicGhvbmVfbnVtYmVyIjogbnVsbCwKICAgICAgICAgICJ0eXBlIjogIm1lcmNoYW50IiwKICAgICAgICAgICJ3ZWJzaXRlIjogbnVsbAogICAgICAgIH0KICAgICAgXSwKICAgICAgImRhdGUiOiAiMjAyMy0xMi0xNyIsCiAgICAgICJkYXRldGltZSI6IG51bGwsCiAgICAgICJpc29fY3VycmVuY3lfY29kZSI6ICJVU0QiLAogICAgICAibG9jYXRpb24iOiB7CiAgICAgICAgImFkZHJlc3MiOiBudWxsLAogICAgICAgICJjaXR5IjogbnVsbCwKICAgICAgICAiY291bnRyeSI6IG51bGwsCiAgICAgICAgImxhdCI6IG51bGwsCiAgICAgICAgImxvbiI6IG51bGwsCiAgICAgICAgInBvc3RhbF9jb2RlIjogbnVsbCwKICAgICAgICAicmVnaW9uIjogbnVsbCwKICAgICAgICAic3RvcmVfbnVtYmVyIjogbnVsbAogICAgICB9LAogICAgICAibG9nb191cmwiOiBudWxsLAogICAgICAibWVyY2hhbnRfZW50aXR5X2lkIjogbnVsbCwKICAgICAgIm1lcmNoYW50X25hbWUiOiAiTGF1bmRyeSBXYXZlcmlkZXIiLAogICAgICAibmFtZSI6ICJXQVNIIExBVU5EUlkgV0FWRVJJREVSIiwKICAgICAgIm9yaWdpbmFsX2Rlc2NyaXB0aW9uIjogIldBU0ggTEFVTkRSWSBXQVZFUklERVIiLAogICAgICAicGF5bWVudF9jaGFubmVsIjogImluIHN0b3JlIiwKICAgICAgInBheW1lbnRfbWV0YSI6IHsKICAgICAgICAiYnlfb3JkZXJfb2YiOiBudWxsLAogICAgICAgICJwYXllZSI6IG51bGwsCiAgICAgICAgInBheWVyIjogbnVsbCwKICAgICAgICAicGF5bWVudF9tZXRob2QiOiBudWxsLAogICAgICAgICJwYXltZW50X3Byb2Nlc3NvciI6IG51bGwsCiAgICAgICAgInBwZF9pZCI6IG51bGwsCiAgICAgICAgInJlYXNvbiI6IG51bGwsCiAgICAgICAgInJlZmVyZW5jZV9udW1iZXIiOiBudWxsCiAgICAgIH0sCiAgICAgICJwZW5kaW5nIjogZmFsc2UsCiAgICAgICJwZW5kaW5nX3RyYW5zYWN0aW9uX2lkIjogbnVsbCwKICAgICAgInBlcnNvbmFsX2ZpbmFuY2VfY2F0ZWdvcnkiOiB7CiAgICAgICAgImNvbmZpZGVuY2VfbGV2ZWwiOiAiTE9XIiwKICAgICAgICAiZGV0YWlsZWQiOiAiUEVSU09OQUxfQ0FSRV9MQVVORFJZX0FORF9EUllfQ0xFQU5JTkciLAogICAgICAgICJwcmltYXJ5IjogIlBFUlNPTkFMX0NBUkUiCiAgICAgIH0sCiAgICAgICJwZXJzb25hbF9maW5hbmNlX2NhdGVnb3J5X2ljb25fdXJsIjogImh0dHBzOi8vcGxhaWQtY2F0ZWdvcnktaWNvbnMucGxhaWQuY29tL1BGQ19QRVJTT05BTF9DQVJFLnBuZyIsCiAgICAgICJ0cmFuc2FjdGlvbl9jb2RlIjogbnVsbCwKICAgICAgInRyYW5zYWN0aW9uX2lkIjogIjlxMzZlQUs3UDFpcUdNUGJBMzR5VUFaVjdObUxvakk0eFFnQVAiLAogICAgICAidHJhbnNhY3Rpb25fdHlwZSI6ICJwbGFjZSIsCiAgICAgICJ1bm9mZmljaWFsX2N1cnJlbmN5X2NvZGUiOiBudWxsLAogICAgICAid2Vic2l0ZSI6IG51bGwKICAgIH0sCiAgICB7CiAgICAgICJhY2NvdW50X2lkIjogIlp2bEJMNWVNUFF0blhEVjZRclI5c1JlTlZWejFYQWllYWdEUHoiLAogICAgICAiYWNjb3VudF9vd25lciI6IG51bGwsCiAgICAgICJhbW91bnQiOiAxMjUuMjMsCiAgICAgICJhdXRob3JpemVkX2RhdGUiOiAiMjAyMy0xMi0xNiIsCiAgICAgICJhdXRob3JpemVkX2RhdGV0aW1lIjogbnVsbCwKICAgICAgImNhdGVnb3J5IjogWwogICAgICAgICJTaG9wcyIsCiAgICAgICAgIkNsb3RoaW5nIGFuZCBBY2Nlc3NvcmllcyIKICAgICAgXSwKICAgICAgImNhdGVnb3J5X2lkIjogIjE5MDEyMDAwIiwKICAgICAgImNoZWNrX251bWJlciI6IG51bGwsCiAgICAgICJjb3VudGVycGFydGllcyI6IFsKICAgICAgICB7CiAgICAgICAgICAiY29uZmlkZW5jZV9sZXZlbCI6ICJWRVJZX0hJR0giLAogICAgICAgICAgImVudGl0eV9pZCI6ICJvODhKOE9PZ1gzbk1uUVdCd2s2a3E4RDMyWVdqRXdhWDJEOHJhIiwKICAgICAgICAgICJsb2dvX3VybCI6ICJodHRwczovL3BsYWlkLW1lcmNoYW50LWxvZ29zLnBsYWlkLmNvbS9vbGRfbmF2eV82OTgucG5nIiwKICAgICAgICAgICJuYW1lIjogIk9sZCBOYXZ5IiwKICAgICAgICAgICJwaG9uZV9udW1iZXIiOiBudWxsLAogICAgICAgICAgInR5cGUiOiAibWVyY2hhbnQiLAogICAgICAgICAgIndlYnNpdGUiOiAib2xkbmF2eS5jb20iCiAgICAgICAgfQogICAgICBdLAogICAgICAiZGF0ZSI6ICIyMDIzLTEyLTE3IiwKICAgICAgImRhdGV0aW1lIjogbnVsbCwKICAgICAgImlzb19jdXJyZW5jeV9jb2RlIjogIlVTRCIsCiAgICAgICJsb2NhdGlvbiI6IHsKICAgICAgICAiYWRkcmVzcyI6IG51bGwsCiAgICAgICAgImNpdHkiOiBudWxsLAogICAgICAgICJjb3VudHJ5IjogbnVsbCwKICAgICAgICAibGF0IjogbnVsbCwKICAgICAgICAibG9uIjogbnVsbCwKICAgICAgICAicG9zdGFsX2NvZGUiOiBudWxsLAogICAgICAgICJyZWdpb24iOiBudWxsLAogICAgICAgICJzdG9yZV9udW1iZXIiOiBudWxsCiAgICAgIH0sCiAgICAgICJsb2dvX3VybCI6ICJodHRwczovL3BsYWlkLW1lcmNoYW50LWxvZ29zLnBsYWlkLmNvbS9vbGRfbmF2eV82OTgucG5nIiwKICAgICAgIm1lcmNoYW50X2VudGl0eV9pZCI6ICJvODhKOE9PZ1gzbk1uUVdCd2s2a3E4RDMyWVdqRXdhWDJEOHJhIiwKICAgICAgIm1lcmNoYW50X25hbWUiOiAiT2xkIE5hdnkiLAogICAgICAibmFtZSI6ICJPbGQgTmF2eSIsCiAgICAgICJvcmlnaW5hbF9kZXNjcmlwdGlvbiI6ICJPTEQgTkFWWSBPTi1MSU5FIiwKICAgICAgInBheW1lbnRfY2hhbm5lbCI6ICJpbiBzdG9yZSIsCiAgICAgICJwYXltZW50X21ldGEiOiB7CiAgICAgICAgImJ5X29yZGVyX29mIjogbnVsbCwKICAgICAgICAicGF5ZWUiOiBudWxsLAogICAgICAgICJwYXllciI6IG51bGwsCiAgICAgICAgInBheW1lbnRfbWV0aG9kIjogbnVsbCwKICAgICAgICAicGF5bWVudF9wcm9jZXNzb3IiOiBudWxsLAogICAgICAgICJwcGRfaWQiOiBudWxsLAogICAgICAgICJyZWFzb24iOiBudWxsLAogICAgICAgICJyZWZlcmVuY2VfbnVtYmVyIjogbnVsbAogICAgICB9LAogICAgICAicGVuZGluZyI6IGZhbHNlLAogICAgICAicGVuZGluZ190cmFuc2FjdGlvbl9pZCI6IG51bGwsCiAgICAgICJwZXJzb25hbF9maW5hbmNlX2NhdGVnb3J5IjogewogICAgICAgICJjb25maWRlbmNlX2xldmVsIjogIlZFUllfSElHSCIsCiAgICAgICAgImRldGFpbGVkIjogIkdFTkVSQUxfTUVSQ0hBTkRJU0VfQ0xPVEhJTkdfQU5EX0FDQ0VTU09SSUVTIiwKICAgICAgICAicHJpbWFyeSI6ICJHRU5FUkFMX01FUkNIQU5ESVNFIgogICAgICB9LAogICAgICAicGVyc29uYWxfZmluYW5jZV9jYXRlZ29yeV9pY29uX3VybCI6ICJodHRwczovL3BsYWlkLWNhdGVnb3J5LWljb25zLnBsYWlkLmNvbS9QRkNfR0VORVJBTF9NRVJDSEFORElTRS5wbmciLAogICAgICAidHJhbnNhY3Rpb25fY29kZSI6IG51bGwsCiAgICAgICJ0cmFuc2FjdGlvbl9pZCI6ICJ2RUdsTFBBRHhkVDdyVnZNS294cHNib3pxM054a0dpcTZrMXI4IiwKICAgICAgInRyYW5zYWN0aW9uX3R5cGUiOiAicGxhY2UiLAogICAgICAidW5vZmZpY2lhbF9jdXJyZW5jeV9jb2RlIjogbnVsbCwKICAgICAgIndlYnNpdGUiOiAib2xkbmF2eS5jb20iCiAgICB9LAogICAgewogICAgICAiYWNjb3VudF9pZCI6ICJadmxCTDVlTVBRdG5YRFY2UXJSOXNSZU5WVnoxWEFpZWFnRFB6IiwKICAgICAgImFjY291bnRfb3duZXIiOiBudWxsLAogICAgICAiYW1vdW50IjogOC4xNiwKICAgICAgImF1dGhvcml6ZWRfZGF0ZSI6ICIyMDIzLTEyLTEyIiwKICAgICAgImF1dGhvcml6ZWRfZGF0ZXRpbWUiOiBudWxsLAogICAgICAiY2F0ZWdvcnkiOiBbCiAgICAgICAgIlNob3BzIgogICAgICBdLAogICAgICAiY2F0ZWdvcnlfaWQiOiAiMTkwMDAwMDAiLAogICAgICAiY2hlY2tfbnVtYmVyIjogbnVsbCwKICAgICAgImNvdW50ZXJwYXJ0aWVzIjogW10sCiAgICAgICJkYXRlIjogIjIwMjMtMTItMTQiLAogICAgICAiZGF0ZXRpbWUiOiBudWxsLAogICAgICAiaXNvX2N1cnJlbmN5X2NvZGUiOiAiVVNEIiwKICAgICAgImxvY2F0aW9uIjogewogICAgICAgICJhZGRyZXNzIjogbnVsbCwKICAgICAgICAiY2l0eSI6IG51bGwsCiAgICAgICAgImNvdW50cnkiOiBudWxsLAogICAgICAgICJsYXQiOiBudWxsLAogICAgICAgICJsb24iOiBudWxsLAogICAgICAgICJwb3N0YWxfY29kZSI6IG51bGwsCiAgICAgICAgInJlZ2lvbiI6IG51bGwsCiAgICAgICAgInN0b3JlX251bWJlciI6IG51bGwKICAgICAgfSwKICAgICAgImxvZ29fdXJsIjogbnVsbCwKICAgICAgIm1lcmNoYW50X2VudGl0eV9pZCI6IG51bGwsCiAgICAgICJtZXJjaGFudF9uYW1lIjogbnVsbCwKICAgICAgIm5hbWUiOiAiV1dXLkdJTFQuQ09NIiwKICAgICAgIm9yaWdpbmFsX2Rlc2NyaXB0aW9uIjogIldXVy5HSUxULkNPTSIsCiAgICAgICJwYXltZW50X2NoYW5uZWwiOiAib25saW5lIiwKICAgICAgInBheW1lbnRfbWV0YSI6IHsKICAgICAgICAiYnlfb3JkZXJfb2YiOiBudWxsLAogICAgICAgICJwYXllZSI6IG51bGwsCiAgICAgICAgInBheWVyIjogbnVsbCwKICAgICAgICAicGF5bWVudF9tZXRob2QiOiBudWxsLAogICAgICAgICJwYXltZW50X3Byb2Nlc3NvciI6IG51bGwsCiAgICAgICAgInBwZF9pZCI6IG51bGwsCiAgICAgICAgInJlYXNvbiI6IG51bGwsCiAgICAgICAgInJlZmVyZW5jZV9udW1iZXIiOiBudWxsCiAgICAgIH0sCiAgICAgICJwZW5kaW5nIjogZmFsc2UsCiAgICAgICJwZW5kaW5nX3RyYW5zYWN0aW9uX2lkIjogbnVsbCwKICAgICAgInBlcnNvbmFsX2ZpbmFuY2VfY2F0ZWdvcnkiOiB7CiAgICAgICAgImNvbmZpZGVuY2VfbGV2ZWwiOiAiTE9XIiwKICAgICAgICAiZGV0YWlsZWQiOiAiR0VORVJBTF9NRVJDSEFORElTRV9PVEhFUl9HRU5FUkFMX01FUkNIQU5ESVNFIiwKICAgICAgICAicHJpbWFyeSI6ICJHRU5FUkFMX01FUkNIQU5ESVNFIgogICAgICB9LAogICAgICAicGVyc29uYWxfZmluYW5jZV9jYXRlZ29yeV9pY29uX3VybCI6ICJodHRwczovL3BsYWlkLWNhdGVnb3J5LWljb25zLnBsYWlkLmNvbS9QRkNfR0VORVJBTF9NRVJDSEFORElTRS5wbmciLAogICAgICAidHJhbnNhY3Rpb25fY29kZSI6IG51bGwsCiAgICAgICJ0cmFuc2FjdGlvbl9pZCI6ICJSV21HUDVvTXpkdHJlUm9qZG05emk1d0V2bXFOVnBIYXBiQThEIiwKICAgICAgInRyYW5zYWN0aW9uX3R5cGUiOiAicGxhY2UiLAogICAgICAidW5vZmZpY2lhbF9jdXJyZW5jeV9jb2RlIjogbnVsbCwKICAgICAgIndlYnNpdGUiOiBudWxsCiAgICB9LAogICAgewogICAgICAiYWNjb3VudF9pZCI6ICJadmxCTDVlTVBRdG5YRFY2UXJSOXNSZU5WVnoxWEFpZWFnRFB6IiwKICAgICAgImFjY291bnRfb3duZXIiOiBudWxsLAogICAgICAiYW1vdW50IjogMjIuMDUsCiAgICAgICJhdXRob3JpemVkX2RhdGUiOiAiMjAyMy0xMi0xMiIsCiAgICAgICJhdXRob3JpemVkX2RhdGV0aW1lIjogbnVsbCwKICAgICAgImNhdGVnb3J5IjogWwogICAgICAgICJTaG9wcyIsCiAgICAgICAgIk11c2ljLCBWaWRlbyBhbmQgRFZEIgogICAgICBdLAogICAgICAiY2F0ZWdvcnlfaWQiOiAiMTkwMzYwMDAiLAogICAgICAiY2hlY2tfbnVtYmVyIjogbnVsbCwKICAgICAgImNvdW50ZXJwYXJ0aWVzIjogWwogICAgICAgIHsKICAgICAgICAgICJjb25maWRlbmNlX2xldmVsIjogIlZFUllfSElHSCIsCiAgICAgICAgICAiZW50aXR5X2lkIjogInozWHpSZTQ4OHBNZG83TkFuTDQ0TDdydjlMNTUwYmVya3k2bUsiLAogICAgICAgICAgImxvZ29fdXJsIjogImh0dHBzOi8vcGxhaWQtbWVyY2hhbnQtbG9nb3MucGxhaWQuY29tL2FwcGxlX2l0dW5lc18xNDM0LnBuZyIsCiAgICAgICAgICAibmFtZSI6ICJBcHBsZSBpVHVuZXMiLAogICAgICAgICAgInBob25lX251bWJlciI6IG51bGwsCiAgICAgICAgICAidHlwZSI6ICJtZXJjaGFudCIsCiAgICAgICAgICAid2Vic2l0ZSI6ICJhcHBsZS5jb20vaXR1bmVzIgogICAgICAgIH0KICAgICAgXSwKICAgICAgImRhdGUiOiAiMjAyMy0xMi0xMyIsCiAgICAgICJkYXRldGltZSI6IG51bGwsCiAgICAgICJpc29fY3VycmVuY3lfY29kZSI6ICJVU0QiLAogICAgICAibG9jYXRpb24iOiB7CiAgICAgICAgImFkZHJlc3MiOiBudWxsLAogICAgICAgICJjaXR5IjogbnVsbCwKICAgICAgICAiY291bnRyeSI6IG51bGwsCiAgICAgICAgImxhdCI6IG51bGwsCiAgICAgICAgImxvbiI6IG51bGwsCiAgICAgICAgInBvc3RhbF9jb2RlIjogbnVsbCwKICAgICAgICAicmVnaW9uIjogIkNBIiwKICAgICAgICAic3RvcmVfbnVtYmVyIjogbnVsbAogICAgICB9LAogICAgICAibG9nb191cmwiOiAiaHR0cHM6Ly9wbGFpZC1tZXJjaGFudC1sb2dvcy5wbGFpZC5jb20vYXBwbGVfaXR1bmVzXzE0MzQucG5nIiwKICAgICAgIm1lcmNoYW50X2VudGl0eV9pZCI6ICJ6M1h6UmU0ODhwTWRvN05Bbkw0NEw3cnY5TDU1MGJlcmt5Nm1LIiwKICAgICAgIm1lcmNoYW50X25hbWUiOiAiQXBwbGUgaVR1bmVzIiwKICAgICAgIm5hbWUiOiAiaVR1bmVzIiwKICAgICAgIm9yaWdpbmFsX2Rlc2NyaXB0aW9uIjogIkFwbCppdHVuZXMuY29tL2JpbGwgMDEyLTAxMi0wMTIzIENhIiwKICAgICAgInBheW1lbnRfY2hhbm5lbCI6ICJvbmxpbmUiLAogICAgICAicGF5bWVudF9tZXRhIjogewogICAgICAgICJieV9vcmRlcl9vZiI6IG51bGwsCiAgICAgICAgInBheWVlIjogbnVsbCwKICAgICAgICAicGF5ZXIiOiBudWxsLAogICAgICAgICJwYXltZW50X21ldGhvZCI6IG51bGwsCiAgICAgICAgInBheW1lbnRfcHJvY2Vzc29yIjogIkFwcGxlIiwKICAgICAgICAicHBkX2lkIjogbnVsbCwKICAgICAgICAicmVhc29uIjogbnVsbCwKICAgICAgICAicmVmZXJlbmNlX251bWJlciI6IG51bGwKICAgICAgfSwKICAgICAgInBlbmRpbmciOiBmYWxzZSwKICAgICAgInBlbmRpbmdfdHJhbnNhY3Rpb25faWQiOiBudWxsLAogICAgICAicGVyc29uYWxfZmluYW5jZV9jYXRlZ29yeSI6IHsKICAgICAgICAiY29uZmlkZW5jZV9sZXZlbCI6ICJWRVJZX0hJR0giLAogICAgICAgICJkZXRhaWxlZCI6ICJFTlRFUlRBSU5NRU5UX01VU0lDX0FORF9BVURJTyIsCiAgICAgICAgInByaW1hcnkiOiAiRU5URVJUQUlOTUVOVCIKICAgICAgfSwKICAgICAgInBlcnNvbmFsX2ZpbmFuY2VfY2F0ZWdvcnlfaWNvbl91cmwiOiAiaHR0cHM6Ly9wbGFpZC1jYXRlZ29yeS1pY29ucy5wbGFpZC5jb20vUEZDX0VOVEVSVEFJTk1FTlQucG5nIiwKICAgICAgInRyYW5zYWN0aW9uX2NvZGUiOiBudWxsLAogICAgICAidHJhbnNhY3Rpb25faWQiOiAiNlJydlA4ZDZhUXQ4UmRhRUF3V2tGYnlENmxSV2pMaThEWGU0NCIsCiAgICAgICJ0cmFuc2FjdGlvbl90eXBlIjogInBsYWNlIiwKICAgICAgInVub2ZmaWNpYWxfY3VycmVuY3lfY29kZSI6IG51bGwsCiAgICAgICJ3ZWJzaXRlIjogImFwcGxlLmNvbS9pdHVuZXMiCiAgICB9LAogICAgewogICAgICAiYWNjb3VudF9pZCI6ICJadmxCTDVlTVBRdG5YRFY2UXJSOXNSZU5WVnoxWEFpZWFnRFB6IiwKICAgICAgImFjY291bnRfb3duZXIiOiBudWxsLAogICAgICAiYW1vdW50IjogMjguMTEsCiAgICAgICJhdXRob3JpemVkX2RhdGUiOiAiMjAyMy0xMi0xMyIsCiAgICAgICJhdXRob3JpemVkX2RhdGV0aW1lIjogbnVsbCwKICAgICAgImNhdGVnb3J5IjogWwogICAgICAgICJTaG9wcyIsCiAgICAgICAgIkZvb2QgYW5kIEJldmVyYWdlIFN0b3JlIgogICAgICBdLAogICAgICAiY2F0ZWdvcnlfaWQiOiAiMTkwMjUwMDAiLAogICAgICAiY2hlY2tfbnVtYmVyIjogbnVsbCwKICAgICAgImNvdW50ZXJwYXJ0aWVzIjogWwogICAgICAgIHsKICAgICAgICAgICJjb25maWRlbmNlX2xldmVsIjogIkxPVyIsCiAgICAgICAgICAiZW50aXR5X2lkIjogbnVsbCwKICAgICAgICAgICJsb2dvX3VybCI6IG51bGwsCiAgICAgICAgICAibmFtZSI6ICJMaXF1b3JzIEFuZCBXaW5lcyIsCiAgICAgICAgICAicGhvbmVfbnVtYmVyIjogbnVsbCwKICAgICAgICAgICJ0eXBlIjogIm1lcmNoYW50IiwKICAgICAgICAgICJ3ZWJzaXRlIjogbnVsbAogICAgICAgIH0KICAgICAgXSwKICAgICAgImRhdGUiOiAiMjAyMy0xMi0xMyIsCiAgICAgICJkYXRldGltZSI6IG51bGwsCiAgICAgICJpc29fY3VycmVuY3lfY29kZSI6ICJVU0QiLAogICAgICAibG9jYXRpb24iOiB7CiAgICAgICAgImFkZHJlc3MiOiBudWxsLAogICAgICAgICJjaXR5IjogbnVsbCwKICAgICAgICAiY291bnRyeSI6IG51bGwsCiAgICAgICAgImxhdCI6IG51bGwsCiAgICAgICAgImxvbiI6IG51bGwsCiAgICAgICAgInBvc3RhbF9jb2RlIjogbnVsbCwKICAgICAgICAicmVnaW9uIjogbnVsbCwKICAgICAgICAic3RvcmVfbnVtYmVyIjogbnVsbAogICAgICB9LAogICAgICAibG9nb191cmwiOiBudWxsLAogICAgICAibWVyY2hhbnRfZW50aXR5X2lkIjogbnVsbCwKICAgICAgIm1lcmNoYW50X25hbWUiOiAiTGlxdW9ycyBBbmQgV2luZXMiLAogICAgICAibmFtZSI6ICJEQU5JRUwgTElRVU9SUyBBTkQgV0lORVMiLAogICAgICAib3JpZ2luYWxfZGVzY3JpcHRpb24iOiAiREFOSUVMIExJUVVPUlMgQU5EIFdJTkVTIiwKICAgICAgInBheW1lbnRfY2hhbm5lbCI6ICJpbiBzdG9yZSIsCiAgICAgICJwYXltZW50X21ldGEiOiB7CiAgICAgICAgImJ5X29yZGVyX29mIjogbnVsbCwKICAgICAgICAicGF5ZWUiOiBudWxsLAogICAgICAgICJwYXllciI6IG51bGwsCiAgICAgICAgInBheW1lbnRfbWV0aG9kIjogbnVsbCwKICAgICAgICAicGF5bWVudF9wcm9jZXNzb3IiOiBudWxsLAogICAgICAgICJwcGRfaWQiOiBudWxsLAogICAgICAgICJyZWFzb24iOiBudWxsLAogICAgICAgICJyZWZlcmVuY2VfbnVtYmVyIjogbnVsbAogICAgICB9LAogICAgICAicGVuZGluZyI6IGZhbHNlLAogICAgICAicGVuZGluZ190cmFuc2FjdGlvbl9pZCI6IG51bGwsCiAgICAgICJwZXJzb25hbF9maW5hbmNlX2NhdGVnb3J5IjogewogICAgICAgICJjb25maWRlbmNlX2xldmVsIjogIkxPVyIsCiAgICAgICAgImRldGFpbGVkIjogIkZPT0RfQU5EX0RSSU5LX0JFRVJfV0lORV9BTkRfTElRVU9SIiwKICAgICAgICAicHJpbWFyeSI6ICJGT09EX0FORF9EUklOSyIKICAgICAgfSwKICAgICAgInBlcnNvbmFsX2ZpbmFuY2VfY2F0ZWdvcnlfaWNvbl91cmwiOiAiaHR0cHM6Ly9wbGFpZC1jYXRlZ29yeS1pY29ucy5wbGFpZC5jb20vUEZDX0ZPT0RfQU5EX0RSSU5LLnBuZyIsCiAgICAgICJ0cmFuc2FjdGlvbl9jb2RlIjogbnVsbCwKICAgICAgInRyYW5zYWN0aW9uX2lkIjogIlh5WHJNNUJHNDdmbVBwR0Q3Njk0VTZxUHlKWDhkZWNiS25MRzMiLAogICAgICAidHJhbnNhY3Rpb25fdHlwZSI6ICJwbGFjZSIsCiAgICAgICJ1bm9mZmljaWFsX2N1cnJlbmN5X2NvZGUiOiBudWxsLAogICAgICAid2Vic2l0ZSI6IG51bGwKICAgIH0sCiAgICB7CiAgICAgICJhY2NvdW50X2lkIjogIlp2bEJMNWVNUFF0blhEVjZRclI5c1JlTlZWejFYQWllYWdEUHoiLAogICAgICAiYWNjb3VudF9vd25lciI6IG51bGwsCiAgICAgICJhbW91bnQiOiA0Mi4wMSwKICAgICAgImF1dGhvcml6ZWRfZGF0ZSI6ICIyMDIzLTEyLTEzIiwKICAgICAgImF1dGhvcml6ZWRfZGF0ZXRpbWUiOiBudWxsLAogICAgICAiY2F0ZWdvcnkiOiBbCiAgICAgICAgIlNob3BzIiwKICAgICAgICAiU3VwZXJtYXJrZXRzIGFuZCBHcm9jZXJpZXMiCiAgICAgIF0sCiAgICAgICJjYXRlZ29yeV9pZCI6ICIxOTA0NzAwMCIsCiAgICAgICJjaGVja19udW1iZXIiOiBudWxsLAogICAgICAiY291bnRlcnBhcnRpZXMiOiBbXSwKICAgICAgImRhdGUiOiAiMjAyMy0xMi0xMyIsCiAgICAgICJkYXRldGltZSI6IG51bGwsCiAgICAgICJpc29fY3VycmVuY3lfY29kZSI6ICJVU0QiLAogICAgICAibG9jYXRpb24iOiB7CiAgICAgICAgImFkZHJlc3MiOiBudWxsLAogICAgICAgICJjaXR5IjogbnVsbCwKICAgICAgICAiY291bnRyeSI6IG51bGwsCiAgICAgICAgImxhdCI6IG51bGwsCiAgICAgICAgImxvbiI6IG51bGwsCiAgICAgICAgInBvc3RhbF9jb2RlIjogbnVsbCwKICAgICAgICAicmVnaW9uIjogbnVsbCwKICAgICAgICAic3RvcmVfbnVtYmVyIjogbnVsbAogICAgICB9LAogICAgICAibG9nb191cmwiOiBudWxsLAogICAgICAibWVyY2hhbnRfZW50aXR5X2lkIjogbnVsbCwKICAgICAgIm1lcmNoYW50X25hbWUiOiBudWxsLAogICAgICAibmFtZSI6ICJTdGF0ZXIgQnJvcy4gTWFya2V0cyIsCiAgICAgICJvcmlnaW5hbF9kZXNjcmlwdGlvbiI6ICJTVEFURVJCUk9TMDEyIiwKICAgICAgInBheW1lbnRfY2hhbm5lbCI6ICJpbiBzdG9yZSIsCiAgICAgICJwYXltZW50X21ldGEiOiB7CiAgICAgICAgImJ5X29yZGVyX29mIjogbnVsbCwKICAgICAgICAicGF5ZWUiOiBudWxsLAogICAgICAgICJwYXllciI6IG51bGwsCiAgICAgICAgInBheW1lbnRfbWV0aG9kIjogbnVsbCwKICAgICAgICAicGF5bWVudF9wcm9jZXNzb3IiOiBudWxsLAogICAgICAgICJwcGRfaWQiOiBudWxsLAogICAgICAgICJyZWFzb24iOiBudWxsLAogICAgICAgICJyZWZlcmVuY2VfbnVtYmVyIjogbnVsbAogICAgICB9LAogICAgICAicGVuZGluZyI6IGZhbHNlLAogICAgICAicGVuZGluZ190cmFuc2FjdGlvbl9pZCI6IG51bGwsCiAgICAgICJwZXJzb25hbF9maW5hbmNlX2NhdGVnb3J5IjogewogICAgICAgICJjb25maWRlbmNlX2xldmVsIjogIkxPVyIsCiAgICAgICAgImRldGFpbGVkIjogIkZPT0RfQU5EX0RSSU5LX0dST0NFUklFUyIsCiAgICAgICAgInByaW1hcnkiOiAiRk9PRF9BTkRfRFJJTksiCiAgICAgIH0sCiAgICAgICJwZXJzb25hbF9maW5hbmNlX2NhdGVnb3J5X2ljb25fdXJsIjogImh0dHBzOi8vcGxhaWQtY2F0ZWdvcnktaWNvbnMucGxhaWQuY29tL1BGQ19GT09EX0FORF9EUklOSy5wbmciLAogICAgICAidHJhbnNhY3Rpb25fY29kZSI6IG51bGwsCiAgICAgICJ0cmFuc2FjdGlvbl9pZCI6ICJEUFpCVzVWcWdiRlA3NjR6YnBxbVN2aldKRFBnM2J0M1dhSmJCIiwKICAgICAgInRyYW5zYWN0aW9uX3R5cGUiOiAicGxhY2UiLAogICAgICAidW5vZmZpY2lhbF9jdXJyZW5jeV9jb2RlIjogbnVsbCwKICAgICAgIndlYnNpdGUiOiBudWxsCiAgICB9LAogICAgewogICAgICAiYWNjb3VudF9pZCI6ICJadmxCTDVlTVBRdG5YRFY2UXJSOXNSZU5WVnoxWEFpZWFnRFB6IiwKICAgICAgImFjY291bnRfb3duZXIiOiBudWxsLAogICAgICAiYW1vdW50IjogODIzLjIyLAogICAgICAiYXV0aG9yaXplZF9kYXRlIjogIjIwMjMtMTItMTMiLAogICAgICAiYXV0aG9yaXplZF9kYXRldGltZSI6IG51bGwsCiAgICAgICJjYXRlZ29yeSI6IFsKICAgICAgICAiVHJhdmVsIgogICAgICBdLAogICAgICAiY2F0ZWdvcnlfaWQiOiAiMjIwMDAwMDAiLAogICAgICAiY2hlY2tfbnVtYmVyIjogbnVsbCwKICAgICAgImNvdW50ZXJwYXJ0aWVzIjogWwogICAgICAgIHsKICAgICAgICAgICJjb25maWRlbmNlX2xldmVsIjogIlZFUllfSElHSCIsCiAgICAgICAgICAiZW50aXR5X2lkIjogIktBSktrNVhkYkpFcWI2WjdEZERuQXFKUXlMWDBPbWtBWnFlNzUiLAogICAgICAgICAgImxvZ29fdXJsIjogImh0dHBzOi8vcGxhaWQtbWVyY2hhbnQtbG9nb3MucGxhaWQuY29tL2V4cGVkaWFfMzM2LnBuZyIsCiAgICAgICAgICAibmFtZSI6ICJFeHBlZGlhIiwKICAgICAgICAgICJwaG9uZV9udW1iZXIiOiBudWxsLAogICAgICAgICAgInR5cGUiOiAibWVyY2hhbnQiLAogICAgICAgICAgIndlYnNpdGUiOiAiZXhwZWRpYS5jb20iCiAgICAgICAgfQogICAgICBdLAogICAgICAiZGF0ZSI6ICIyMDIzLTEyLTEzIiwKICAgICAgImRhdGV0aW1lIjogbnVsbCwKICAgICAgImlzb19jdXJyZW5jeV9jb2RlIjogIlVTRCIsCiAgICAgICJsb2NhdGlvbiI6IHsKICAgICAgICAiYWRkcmVzcyI6IG51bGwsCiAgICAgICAgImNpdHkiOiBudWxsLAogICAgICAgICJjb3VudHJ5IjogbnVsbCwKICAgICAgICAibGF0IjogbnVsbCwKICAgICAgICAibG9uIjogbnVsbCwKICAgICAgICAicG9zdGFsX2NvZGUiOiBudWxsLAogICAgICAgICJyZWdpb24iOiBudWxsLAogICAgICAgICJzdG9yZV9udW1iZXIiOiBudWxsCiAgICAgIH0sCiAgICAgICJsb2dvX3VybCI6ICJodHRwczovL3BsYWlkLW1lcmNoYW50LWxvZ29zLnBsYWlkLmNvbS9leHBlZGlhXzMzNi5wbmciLAogICAgICAibWVyY2hhbnRfZW50aXR5X2lkIjogIktBSktrNVhkYkpFcWI2WjdEZERuQXFKUXlMWDBPbWtBWnFlNzUiLAogICAgICAibWVyY2hhbnRfbmFtZSI6ICJFeHBlZGlhIiwKICAgICAgIm5hbWUiOiAiRVhQRURJQSAwMTIzNDU2Nzg5MDEyIiwKICAgICAgIm9yaWdpbmFsX2Rlc2NyaXB0aW9uIjogIkVYUEVESUEgMDEyMzQ1Njc4OTAxMiIsCiAgICAgICJwYXltZW50X2NoYW5uZWwiOiAib25saW5lIiwKICAgICAgInBheW1lbnRfbWV0YSI6IHsKICAgICAgICAiYnlfb3JkZXJfb2YiOiBudWxsLAogICAgICAgICJwYXllZSI6IG51bGwsCiAgICAgICAgInBheWVyIjogbnVsbCwKICAgICAgICAicGF5bWVudF9tZXRob2QiOiBudWxsLAogICAgICAgICJwYXltZW50X3Byb2Nlc3NvciI6IG51bGwsCiAgICAgICAgInBwZF9pZCI6IG51bGwsCiAgICAgICAgInJlYXNvbiI6IG51bGwsCiAgICAgICAgInJlZmVyZW5jZV9udW1iZXIiOiBudWxsCiAgICAgIH0sCiAgICAgICJwZW5kaW5nIjogZmFsc2UsCiAgICAgICJwZW5kaW5nX3RyYW5zYWN0aW9uX2lkIjogbnVsbCwKICAgICAgInBlcnNvbmFsX2ZpbmFuY2VfY2F0ZWdvcnkiOiB7CiAgICAgICAgImNvbmZpZGVuY2VfbGV2ZWwiOiAiVkVSWV9ISUdIIiwKICAgICAgICAiZGV0YWlsZWQiOiAiVFJBVkVMX0ZMSUdIVFMiLAogICAgICAgICJwcmltYXJ5IjogIlRSQVZFTCIKICAgICAgfSwKICAgICAgInBlcnNvbmFsX2ZpbmFuY2VfY2F0ZWdvcnlfaWNvbl91cmwiOiAiaHR0cHM6Ly9wbGFpZC1jYXRlZ29yeS1pY29ucy5wbGFpZC5jb20vUEZDX1RSQVZFTC5wbmciLAogICAgICAidHJhbnNhY3Rpb25fY29kZSI6IG51bGwsCiAgICAgICJ0cmFuc2FjdGlvbl9pZCI6ICJWYlJxUTVyTGRQY242UnFWUDRRZHNYSkcxOFZRM0V0OWdQRXplIiwKICAgICAgInRyYW5zYWN0aW9uX3R5cGUiOiAicGxhY2UiLAogICAgICAidW5vZmZpY2lhbF9jdXJyZW5jeV9jb2RlIjogbnVsbCwKICAgICAgIndlYnNpdGUiOiAiZXhwZWRpYS5jb20iCiAgICB9LAogICAgewogICAgICAiYWNjb3VudF9pZCI6ICJadmxCTDVlTVBRdG5YRFY2UXJSOXNSZU5WVnoxWEFpZWFnRFB6IiwKICAgICAgImFjY291bnRfb3duZXIiOiBudWxsLAogICAgICAiYW1vdW50IjogMTgxLjkxLAogICAgICAiYXV0aG9yaXplZF9kYXRlIjogIjIwMjMtMTItMTMiLAogICAgICAiYXV0aG9yaXplZF9kYXRldGltZSI6IG51bGwsCiAgICAgICJjYXRlZ29yeSI6IFsKICAgICAgICAiQ29tbXVuaXR5IiwKICAgICAgICAiRWR1Y2F0aW9uIgogICAgICBdLAogICAgICAiY2F0ZWdvcnlfaWQiOiAiMTIwMDgwMDAiLAogICAgICAiY2hlY2tfbnVtYmVyIjogbnVsbCwKICAgICAgImNvdW50ZXJwYXJ0aWVzIjogW10sCiAgICAgICJkYXRlIjogIjIwMjMtMTItMTMiLAogICAgICAiZGF0ZXRpbWUiOiBudWxsLAogICAgICAiaXNvX2N1cnJlbmN5X2NvZGUiOiAiVVNEIiwKICAgICAgImxvY2F0aW9uIjogewogICAgICAgICJhZGRyZXNzIjogbnVsbCwKICAgICAgICAiY2l0eSI6IG51bGwsCiAgICAgICAgImNvdW50cnkiOiBudWxsLAogICAgICAgICJsYXQiOiBudWxsLAogICAgICAgICJsb24iOiBudWxsLAogICAgICAgICJwb3N0YWxfY29kZSI6IG51bGwsCiAgICAgICAgInJlZ2lvbiI6ICJOSiIsCiAgICAgICAgInN0b3JlX251bWJlciI6IG51bGwKICAgICAgfSwKICAgICAgImxvZ29fdXJsIjogbnVsbCwKICAgICAgIm1lcmNoYW50X2VudGl0eV9pZCI6IG51bGwsCiAgICAgICJtZXJjaGFudF9uYW1lIjogbnVsbCwKICAgICAgIm5hbWUiOiAiQVdMKlBFQVJTT04gRURVQ0FUSU9OIFBSU09OQ1MuQ09NIiwKICAgICAgIm9yaWdpbmFsX2Rlc2NyaXB0aW9uIjogIkFXTCpQRUFSU09OIEVEVUNBVElPTiBQUlNPTkNTLkNPTSBOSiIsCiAgICAgICJwYXltZW50X2NoYW5uZWwiOiAib25saW5lIiwKICAgICAgInBheW1lbnRfbWV0YSI6IHsKICAgICAgICAiYnlfb3JkZXJfb2YiOiBudWxsLAogICAgICAgICJwYXllZSI6IG51bGwsCiAgICAgICAgInBheWVyIjogbnVsbCwKICAgICAgICAicGF5bWVudF9tZXRob2QiOiBudWxsLAogICAgICAgICJwYXltZW50X3Byb2Nlc3NvciI6IG51bGwsCiAgICAgICAgInBwZF9pZCI6IG51bGwsCiAgICAgICAgInJlYXNvbiI6IG51bGwsCiAgICAgICAgInJlZmVyZW5jZV9udW1iZXIiOiBudWxsCiAgICAgIH0sCiAgICAgICJwZW5kaW5nIjogZmFsc2UsCiAgICAgICJwZW5kaW5nX3RyYW5zYWN0aW9uX2lkIjogbnVsbCwKICAgICAgInBlcnNvbmFsX2ZpbmFuY2VfY2F0ZWdvcnkiOiB7CiAgICAgICAgImNvbmZpZGVuY2VfbGV2ZWwiOiAiTE9XIiwKICAgICAgICAiZGV0YWlsZWQiOiAiR0VORVJBTF9TRVJWSUNFU19FRFVDQVRJT04iLAogICAgICAgICJwcmltYXJ5IjogIkdFTkVSQUxfU0VSVklDRVMiCiAgICAgIH0sCiAgICAgICJwZXJzb25hbF9maW5hbmNlX2NhdGVnb3J5X2ljb25fdXJsIjogImh0dHBzOi8vcGxhaWQtY2F0ZWdvcnktaWNvbnMucGxhaWQuY29tL1BGQ19HRU5FUkFMX1NFUlZJQ0VTLnBuZyIsCiAgICAgICJ0cmFuc2FjdGlvbl9jb2RlIjogbnVsbCwKICAgICAgInRyYW5zYWN0aW9uX2lkIjogIndXbnFwakpsZGF0UWJydkp5ZGpFVEtQREIzSjRFOWNQWm9tSm8iLAogICAgICAidHJhbnNhY3Rpb25fdHlwZSI6ICJwbGFjZSIsCiAgICAgICJ1bm9mZmljaWFsX2N1cnJlbmN5X2NvZGUiOiBudWxsLAogICAgICAid2Vic2l0ZSI6IG51bGwKICAgIH0sCiAgICB7CiAgICAgICJhY2NvdW50X2lkIjogIlp2bEJMNWVNUFF0blhEVjZRclI5c1JlTlZWejFYQWllYWdEUHoiLAogICAgICAiYWNjb3VudF9vd25lciI6IG51bGwsCiAgICAgICJhbW91bnQiOiA0LjY0LAogICAgICAiYXV0aG9yaXplZF9kYXRlIjogIjIwMjMtMTItMTMiLAogICAgICAiYXV0aG9yaXplZF9kYXRldGltZSI6IG51bGwsCiAgICAgICJjYXRlZ29yeSI6IFsKICAgICAgICAiVHJhdmVsIiwKICAgICAgICAiR2FzIFN0YXRpb25zIgogICAgICBdLAogICAgICAiY2F0ZWdvcnlfaWQiOiAiMjIwMDkwMDAiLAogICAgICAiY2hlY2tfbnVtYmVyIjogbnVsbCwKICAgICAgImNvdW50ZXJwYXJ0aWVzIjogWwogICAgICAgIHsKICAgICAgICAgICJjb25maWRlbmNlX2xldmVsIjogIlZFUllfSElHSCIsCiAgICAgICAgICAiZW50aXR5X2lkIjogIlpNNEpuZ3AwV3BMMFJXMjI4ZEEzRW9ZQmJKSm5BRGVBMmpEUlkiLAogICAgICAgICAgImxvZ29fdXJsIjogImh0dHBzOi8vcGxhaWQtbWVyY2hhbnQtbG9nb3MucGxhaWQuY29tL3RleGFjb18xMDAzLnBuZyIsCiAgICAgICAgICAibmFtZSI6ICJUZXhhY28iLAogICAgICAgICAgInBob25lX251bWJlciI6IG51bGwsCiAgICAgICAgICAidHlwZSI6ICJtZXJjaGFudCIsCiAgICAgICAgICAid2Vic2l0ZSI6ICJ0ZXhhY28uY29tIgogICAgICAgIH0KICAgICAgXSwKICAgICAgImRhdGUiOiAiMjAyMy0xMi0xMyIsCiAgICAgICJkYXRldGltZSI6IG51bGwsCiAgICAgICJpc29fY3VycmVuY3lfY29kZSI6ICJVU0QiLAogICAgICAibG9jYXRpb24iOiB7CiAgICAgICAgImFkZHJlc3MiOiBudWxsLAogICAgICAgICJjaXR5IjogbnVsbCwKICAgICAgICAiY291bnRyeSI6IG51bGwsCiAgICAgICAgImxhdCI6IG51bGwsCiAgICAgICAgImxvbiI6IG51bGwsCiAgICAgICAgInBvc3RhbF9jb2RlIjogbnVsbCwKICAgICAgICAicmVnaW9uIjogbnVsbCwKICAgICAgICAic3RvcmVfbnVtYmVyIjogbnVsbAogICAgICB9LAogICAgICAibG9nb191cmwiOiAiaHR0cHM6Ly9wbGFpZC1tZXJjaGFudC1sb2dvcy5wbGFpZC5jb20vdGV4YWNvXzEwMDMucG5nIiwKICAgICAgIm1lcmNoYW50X2VudGl0eV9pZCI6ICJaTTRKbmdwMFdwTDBSVzIyOGRBM0VvWUJiSkpuQURlQTJqRFJZIiwKICAgICAgIm1lcmNoYW50X25hbWUiOiAiVGV4YWNvIiwKICAgICAgIm5hbWUiOiAiVGV4YWNvIiwKICAgICAgIm9yaWdpbmFsX2Rlc2NyaXB0aW9uIjogIlRleGFjbyIsCiAgICAgICJwYXltZW50X2NoYW5uZWwiOiAiaW4gc3RvcmUiLAogICAgICAicGF5bWVudF9tZXRhIjogewogICAgICAgICJieV9vcmRlcl9vZiI6IG51bGwsCiAgICAgICAgInBheWVlIjogbnVsbCwKICAgICAgICAicGF5ZXIiOiBudWxsLAogICAgICAgICJwYXltZW50X21ldGhvZCI6IG51bGwsCiAgICAgICAgInBheW1lbnRfcHJvY2Vzc29yIjogbnVsbCwKICAgICAgICAicHBkX2lkIjogbnVsbCwKICAgICAgICAicmVhc29uIjogbnVsbCwKICAgICAgICAicmVmZXJlbmNlX251bWJlciI6IG51bGwKICAgICAgfSwKICAgICAgInBlbmRpbmciOiBmYWxzZSwKICAgICAgInBlbmRpbmdfdHJhbnNhY3Rpb25faWQiOiBudWxsLAogICAgICAicGVyc29uYWxfZmluYW5jZV9jYXRlZ29yeSI6IHsKICAgICAgICAiY29uZmlkZW5jZV9sZXZlbCI6ICJWRVJZX0hJR0giLAogICAgICAgICJkZXRhaWxlZCI6ICJUUkFOU1BPUlRBVElPTl9HQVMiLAogICAgICAgICJwcmltYXJ5IjogIlRSQU5TUE9SVEFUSU9OIgogICAgICB9LAogICAgICAicGVyc29uYWxfZmluYW5jZV9jYXRlZ29yeV9pY29uX3VybCI6ICJodHRwczovL3BsYWlkLWNhdGVnb3J5LWljb25zLnBsYWlkLmNvbS9QRkNfVFJBTlNQT1JUQVRJT04ucG5nIiwKICAgICAgInRyYW5zYWN0aW9uX2NvZGUiOiBudWxsLAogICAgICAidHJhbnNhY3Rpb25faWQiOiAiNXZLNU5nNmJkZXRrWDRkREE2TmJTcVpLN1FEb1hNdTVLNzg5ZCIsCiAgICAgICJ0cmFuc2FjdGlvbl90eXBlIjogInBsYWNlIiwKICAgICAgInVub2ZmaWNpYWxfY3VycmVuY3lfY29kZSI6IG51bGwsCiAgICAgICJ3ZWJzaXRlIjogInRleGFjby5jb20iCiAgICB9LAogICAgewogICAgICAiYWNjb3VudF9pZCI6ICJadmxCTDVlTVBRdG5YRFY2UXJSOXNSZU5WVnoxWEFpZWFnRFB6IiwKICAgICAgImFjY291bnRfb3duZXIiOiBudWxsLAogICAgICAiYW1vdW50IjogNS41LAogICAgICAiYXV0aG9yaXplZF9kYXRlIjogIjIwMjMtMTItMTMiLAogICAgICAiYXV0aG9yaXplZF9kYXRldGltZSI6IG51bGwsCiAgICAgICJjYXRlZ29yeSI6IFsKICAgICAgICAiRm9vZCBhbmQgRHJpbmsiLAogICAgICAgICJSZXN0YXVyYW50cyIKICAgICAgXSwKICAgICAgImNhdGVnb3J5X2lkIjogIjEzMDA1MDAwIiwKICAgICAgImNoZWNrX251bWJlciI6IG51bGwsCiAgICAgICJjb3VudGVycGFydGllcyI6IFtdLAogICAgICAiZGF0ZSI6ICIyMDIzLTEyLTE2IiwKICAgICAgImRhdGV0aW1lIjogbnVsbCwKICAgICAgImlzb19jdXJyZW5jeV9jb2RlIjogIlVTRCIsCiAgICAgICJsb2NhdGlvbiI6IHsKICAgICAgICAiYWRkcmVzcyI6IG51bGwsCiAgICAgICAgImNpdHkiOiBudWxsLAogICAgICAgICJjb3VudHJ5IjogbnVsbCwKICAgICAgICAibGF0IjogbnVsbCwKICAgICAgICAibG9uIjogbnVsbCwKICAgICAgICAicG9zdGFsX2NvZGUiOiBudWxsLAogICAgICAgICJyZWdpb24iOiBudWxsLAogICAgICAgICJzdG9yZV9udW1iZXIiOiBudWxsCiAgICAgIH0sCiAgICAgICJsb2dvX3VybCI6IG51bGwsCiAgICAgICJtZXJjaGFudF9lbnRpdHlfaWQiOiBudWxsLAogICAgICAibWVyY2hhbnRfbmFtZSI6IG51bGwsCiAgICAgICJuYW1lIjogIldldHplbCdzIFByZXR6ZWxzIiwKICAgICAgIm9yaWdpbmFsX2Rlc2NyaXB0aW9uIjogIldFVFpFTCdTIFBSRVRaRUxTIiwKICAgICAgInBheW1lbnRfY2hhbm5lbCI6ICJpbiBzdG9yZSIsCiAgICAgICJwYXltZW50X21ldGEiOiB7CiAgICAgICAgImJ5X29yZGVyX29mIjogbnVsbCwKICAgICAgICAicGF5ZWUiOiBudWxsLAogICAgICAgICJwYXllciI6IG51bGwsCiAgICAgICAgInBheW1lbnRfbWV0aG9kIjogbnVsbCwKICAgICAgICAicGF5bWVudF9wcm9jZXNzb3IiOiBudWxsLAogICAgICAgICJwcGRfaWQiOiBudWxsLAogICAgICAgICJyZWFzb24iOiBudWxsLAogICAgICAgICJyZWZlcmVuY2VfbnVtYmVyIjogbnVsbAogICAgICB9LAogICAgICAicGVuZGluZyI6IGZhbHNlLAogICAgICAicGVuZGluZ190cmFuc2FjdGlvbl9pZCI6IG51bGwsCiAgICAgICJwZXJzb25hbF9maW5hbmNlX2NhdGVnb3J5IjogewogICAgICAgICJjb25maWRlbmNlX2xldmVsIjogIkxPVyIsCiAgICAgICAgImRldGFpbGVkIjogIkZPT0RfQU5EX0RSSU5LX09USEVSX0ZPT0RfQU5EX0RSSU5LIiwKICAgICAgICAicHJpbWFyeSI6ICJGT09EX0FORF9EUklOSyIKICAgICAgfSwKICAgICAgInBlcnNvbmFsX2ZpbmFuY2VfY2F0ZWdvcnlfaWNvbl91cmwiOiAiaHR0cHM6Ly9wbGFpZC1jYXRlZ29yeS1pY29ucy5wbGFpZC5jb20vUEZDX0ZPT0RfQU5EX0RSSU5LLnBuZyIsCiAgICAgICJ0cmFuc2FjdGlvbl9jb2RlIjogbnVsbCwKICAgICAgInRyYW5zYWN0aW9uX2lkIjogIkpNZ1Z6NTl4bmxoTTFweUtsamtlVUFYWmdMSkR3NklCNmdrbWsiLAogICAgICAidHJhbnNhY3Rpb25fdHlwZSI6ICJwbGFjZSIsCiAgICAgICJ1bm9mZmljaWFsX2N1cnJlbmN5X2NvZGUiOiBudWxsLAogICAgICAid2Vic2l0ZSI6IG51bGwKICAgIH0sCiAgICB7CiAgICAgICJhY2NvdW50X2lkIjogIlp2bEJMNWVNUFF0blhEVjZRclI5c1JlTlZWejFYQWllYWdEUHoiLAogICAgICAiYWNjb3VudF9vd25lciI6IG51bGwsCiAgICAgICJhbW91bnQiOiA2NC45NSwKICAgICAgImF1dGhvcml6ZWRfZGF0ZSI6ICIyMDIzLTEyLTE2IiwKICAgICAgImF1dGhvcml6ZWRfZGF0ZXRpbWUiOiBudWxsLAogICAgICAiY2F0ZWdvcnkiOiBbCiAgICAgICAgIlNob3BzIiwKICAgICAgICAiUGV0cyIKICAgICAgXSwKICAgICAgImNhdGVnb3J5X2lkIjogIjE5MDQyMDAwIiwKICAgICAgImNoZWNrX251bWJlciI6IG51bGwsCiAgICAgICJjb3VudGVycGFydGllcyI6IFsKICAgICAgICB7CiAgICAgICAgICAiY29uZmlkZW5jZV9sZXZlbCI6ICJWRVJZX0hJR0giLAogICAgICAgICAgImVudGl0eV9pZCI6ICIxeTJtcUJlWGdkcVpWWHIzbkU4bTE4RGRldlo2QWR3b1I4cTFEIiwKICAgICAgICAgICJsb2dvX3VybCI6ICJodHRwczovL3BsYWlkLW1lcmNoYW50LWxvZ29zLnBsYWlkLmNvbS9wZXRzbWFydF83NDgucG5nIiwKICAgICAgICAgICJuYW1lIjogIlBldFNtYXJ0IiwKICAgICAgICAgICJwaG9uZV9udW1iZXIiOiBudWxsLAogICAgICAgICAgInR5cGUiOiAibWVyY2hhbnQiLAogICAgICAgICAgIndlYnNpdGUiOiAicGV0c21hcnQuY29tIgogICAgICAgIH0KICAgICAgXSwKICAgICAgImRhdGUiOiAiMjAyMy0xMi0xNiIsCiAgICAgICJkYXRldGltZSI6IG51bGwsCiAgICAgICJpc29fY3VycmVuY3lfY29kZSI6ICJVU0QiLAogICAgICAibG9jYXRpb24iOiB7CiAgICAgICAgImFkZHJlc3MiOiAiMTE5NDUgQ2VudHJhbCBBdmUiLAogICAgICAgICJjaXR5IjogIkNoaW5vIiwKICAgICAgICAiY291bnRyeSI6IG51bGwsCiAgICAgICAgImxhdCI6IDM0LjAzNjUyNiwKICAgICAgICAibG9uIjogLTExNy42ODc5NDMsCiAgICAgICAgInBvc3RhbF9jb2RlIjogIjkxNzEwIiwKICAgICAgICAicmVnaW9uIjogIkNBIiwKICAgICAgICAic3RvcmVfbnVtYmVyIjogIjAxMjMiCiAgICAgIH0sCiAgICAgICJsb2dvX3VybCI6ICJodHRwczovL3BsYWlkLW1lcmNoYW50LWxvZ29zLnBsYWlkLmNvbS9wZXRzbWFydF83NDgucG5nIiwKICAgICAgIm1lcmNoYW50X2VudGl0eV9pZCI6ICIxeTJtcUJlWGdkcVpWWHIzbkU4bTE4RGRldlo2QWR3b1I4cTFEIiwKICAgICAgIm1lcmNoYW50X25hbWUiOiAiUGV0U21hcnQiLAogICAgICAibmFtZSI6ICJQZXRTbWFydCIsCiAgICAgICJvcmlnaW5hbF9kZXNjcmlwdGlvbiI6ICJQRVRTTUFSVCAjMDEyMyIsCiAgICAgICJwYXltZW50X2NoYW5uZWwiOiAiaW4gc3RvcmUiLAogICAgICAicGF5bWVudF9tZXRhIjogewogICAgICAgICJieV9vcmRlcl9vZiI6IG51bGwsCiAgICAgICAgInBheWVlIjogbnVsbCwKICAgICAgICAicGF5ZXIiOiBudWxsLAogICAgICAgICJwYXltZW50X21ldGhvZCI6IG51bGwsCiAgICAgICAgInBheW1lbnRfcHJvY2Vzc29yIjogbnVsbCwKICAgICAgICAicHBkX2lkIjogbnVsbCwKICAgICAgICAicmVhc29uIjogbnVsbCwKICAgICAgICAicmVmZXJlbmNlX251bWJlciI6IG51bGwKICAgICAgfSwKICAgICAgInBlbmRpbmciOiBmYWxzZSwKICAgICAgInBlbmRpbmdfdHJhbnNhY3Rpb25faWQiOiBudWxsLAogICAgICAicGVyc29uYWxfZmluYW5jZV9jYXRlZ29yeSI6IHsKICAgICAgICAiY29uZmlkZW5jZV9sZXZlbCI6ICJWRVJZX0hJR0giLAogICAgICAgICJkZXRhaWxlZCI6ICJHRU5FUkFMX01FUkNIQU5ESVNFX1BFVF9TVVBQTElFUyIsCiAgICAgICAgInByaW1hcnkiOiAiR0VORVJBTF9NRVJDSEFORElTRSIKICAgICAgfSwKICAgICAgInBlcnNvbmFsX2ZpbmFuY2VfY2F0ZWdvcnlfaWNvbl91cmwiOiAiaHR0cHM6Ly9wbGFpZC1jYXRlZ29yeS1pY29ucy5wbGFpZC5jb20vUEZDX0dFTkVSQUxfTUVSQ0hBTkRJU0UucG5nIiwKICAgICAgInRyYW5zYWN0aW9uX2NvZGUiOiBudWxsLAogICAgICAidHJhbnNhY3Rpb25faWQiOiAiazdaQWFxa0RuOUllTFd2UE1EM1FUUW13akFhZTYxc0w2ZG9rMSIsCiAgICAgICJ0cmFuc2FjdGlvbl90eXBlIjogInBsYWNlIiwKICAgICAgInVub2ZmaWNpYWxfY3VycmVuY3lfY29kZSI6IG51bGwsCiAgICAgICJ3ZWJzaXRlIjogInBldHNtYXJ0LmNvbSIKICAgIH0sCiAgICB7CiAgICAgICJhY2NvdW50X2lkIjogIlp2bEJMNWVNUFF0blhEVjZRclI5c1JlTlZWejFYQWllYWdEUHoiLAogICAgICAiYWNjb3VudF9vd25lciI6IG51bGwsCiAgICAgICJhbW91bnQiOiAzNi44NywKICAgICAgImF1dGhvcml6ZWRfZGF0ZSI6ICIyMDIzLTEyLTE2IiwKICAgICAgImF1dGhvcml6ZWRfZGF0ZXRpbWUiOiBudWxsLAogICAgICAiY2F0ZWdvcnkiOiBbCiAgICAgICAgIkZvb2QgYW5kIERyaW5rIiwKICAgICAgICAiUmVzdGF1cmFudHMiCiAgICAgIF0sCiAgICAgICJjYXRlZ29yeV9pZCI6ICIxMzAwNTAwMCIsCiAgICAgICJjaGVja19udW1iZXIiOiBudWxsLAogICAgICAiY291bnRlcnBhcnRpZXMiOiBbXSwKICAgICAgImRhdGUiOiAiMjAyMy0xMi0xNiIsCiAgICAgICJkYXRldGltZSI6IG51bGwsCiAgICAgICJpc29fY3VycmVuY3lfY29kZSI6ICJVU0QiLAogICAgICAibG9jYXRpb24iOiB7CiAgICAgICAgImFkZHJlc3MiOiBudWxsLAogICAgICAgICJjaXR5IjogbnVsbCwKICAgICAgICAiY291bnRyeSI6IG51bGwsCiAgICAgICAgImxhdCI6IG51bGwsCiAgICAgICAgImxvbiI6IG51bGwsCiAgICAgICAgInBvc3RhbF9jb2RlIjogbnVsbCwKICAgICAgICAicmVnaW9uIjogbnVsbCwKICAgICAgICAic3RvcmVfbnVtYmVyIjogbnVsbAogICAgICB9LAogICAgICAibG9nb191cmwiOiBudWxsLAogICAgICAibWVyY2hhbnRfZW50aXR5X2lkIjogbnVsbCwKICAgICAgIm1lcmNoYW50X25hbWUiOiBudWxsLAogICAgICAibmFtZSI6ICJDSFAiLAogICAgICAib3JpZ2luYWxfZGVzY3JpcHRpb24iOiAiQ0hQIiwKICAgICAgInBheW1lbnRfY2hhbm5lbCI6ICJpbiBzdG9yZSIsCiAgICAgICJwYXltZW50X21ldGEiOiB7CiAgICAgICAgImJ5X29yZGVyX29mIjogbnVsbCwKICAgICAgICAicGF5ZWUiOiBudWxsLAogICAgICAgICJwYXllciI6IG51bGwsCiAgICAgICAgInBheW1lbnRfbWV0aG9kIjogbnVsbCwKICAgICAgICAicGF5bWVudF9wcm9jZXNzb3IiOiBudWxsLAogICAgICAgICJwcGRfaWQiOiBudWxsLAogICAgICAgICJyZWFzb24iOiBudWxsLAogICAgICAgICJyZWZlcmVuY2VfbnVtYmVyIjogbnVsbAogICAgICB9LAogICAgICAicGVuZGluZyI6IGZhbHNlLAogICAgICAicGVuZGluZ190cmFuc2FjdGlvbl9pZCI6IG51bGwsCiAgICAgICJwZXJzb25hbF9maW5hbmNlX2NhdGVnb3J5IjogewogICAgICAgICJjb25maWRlbmNlX2xldmVsIjogIkxPVyIsCiAgICAgICAgImRldGFpbGVkIjogIkdFTkVSQUxfTUVSQ0hBTkRJU0VfT1RIRVJfR0VORVJBTF9NRVJDSEFORElTRSIsCiAgICAgICAgInByaW1hcnkiOiAiR0VORVJBTF9NRVJDSEFORElTRSIKICAgICAgfSwKICAgICAgInBlcnNvbmFsX2ZpbmFuY2VfY2F0ZWdvcnlfaWNvbl91cmwiOiAiaHR0cHM6Ly9wbGFpZC1jYXRlZ29yeS1pY29ucy5wbGFpZC5jb20vUEZDX0dFTkVSQUxfTUVSQ0hBTkRJU0UucG5nIiwKICAgICAgInRyYW5zYWN0aW9uX2NvZGUiOiBudWxsLAogICAgICAidHJhbnNhY3Rpb25faWQiOiAibGVNQTRLZERidlQ5Umo4YUR3M0FTbHF3Wm1kdkdEaXBvZFJsQiIsCiAgICAgICJ0cmFuc2FjdGlvbl90eXBlIjogInBsYWNlIiwKICAgICAgInVub2ZmaWNpYWxfY3VycmVuY3lfY29kZSI6IG51bGwsCiAgICAgICJ3ZWJzaXRlIjogbnVsbAogICAgfSwKICAgIHsKICAgICAgImFjY291bnRfaWQiOiAiWnZsQkw1ZU1QUXRuWERWNlFyUjlzUmVOVlZ6MVhBaWVhZ0RQeiIsCiAgICAgICJhY2NvdW50X293bmVyIjogbnVsbCwKICAgICAgImFtb3VudCI6IDMuOTgsCiAgICAgICJhdXRob3JpemVkX2RhdGUiOiAiMjAyMy0xMi0xNiIsCiAgICAgICJhdXRob3JpemVkX2RhdGV0aW1lIjogbnVsbCwKICAgICAgImNhdGVnb3J5IjogWwogICAgICAgICJTaG9wcyIsCiAgICAgICAgIkRpc2NvdW50IFN0b3JlcyIKICAgICAgXSwKICAgICAgImNhdGVnb3J5X2lkIjogIjE5MDIwMDAwIiwKICAgICAgImNoZWNrX251bWJlciI6IG51bGwsCiAgICAgICJjb3VudGVycGFydGllcyI6IFsKICAgICAgICB7CiAgICAgICAgICAiY29uZmlkZW5jZV9sZXZlbCI6ICJWRVJZX0hJR0giLAogICAgICAgICAgImVudGl0eV9pZCI6ICJyTUtKMWROMmtMNE5RYXJaM29RTVc5ajE0WXBMODQ1ZERRbzdSIiwKICAgICAgICAgICJsb2dvX3VybCI6ICJodHRwczovL3BsYWlkLW1lcmNoYW50LWxvZ29zLnBsYWlkLmNvbS9kb2xsYXJfdHJlZV8yODkucG5nIiwKICAgICAgICAgICJuYW1lIjogIkRvbGxhciBUcmVlIiwKICAgICAgICAgICJwaG9uZV9udW1iZXIiOiBudWxsLAogICAgICAgICAgInR5cGUiOiAibWVyY2hhbnQiLAogICAgICAgICAgIndlYnNpdGUiOiAiZG9sbGFydHJlZS5jb20iCiAgICAgICAgfQogICAgICBdLAogICAgICAiZGF0ZSI6ICIyMDIzLTEyLTE2IiwKICAgICAgImRhdGV0aW1lIjogbnVsbCwKICAgICAgImlzb19jdXJyZW5jeV9jb2RlIjogIlVTRCIsCiAgICAgICJsb2NhdGlvbiI6IHsKICAgICAgICAiYWRkcmVzcyI6IG51bGwsCiAgICAgICAgImNpdHkiOiBudWxsLAogICAgICAgICJjb3VudHJ5IjogbnVsbCwKICAgICAgICAibGF0IjogbnVsbCwKICAgICAgICAibG9uIjogbnVsbCwKICAgICAgICAicG9zdGFsX2NvZGUiOiBudWxsLAogICAgICAgICJyZWdpb24iOiBudWxsLAogICAgICAgICJzdG9yZV9udW1iZXIiOiBudWxsCiAgICAgIH0sCiAgICAgICJsb2dvX3VybCI6ICJodHRwczovL3BsYWlkLW1lcmNoYW50LWxvZ29zLnBsYWlkLmNvbS9kb2xsYXJfdHJlZV8yODkucG5nIiwKICAgICAgIm1lcmNoYW50X2VudGl0eV9pZCI6ICJyTUtKMWROMmtMNE5RYXJaM29RTVc5ajE0WXBMODQ1ZERRbzdSIiwKICAgICAgIm1lcmNoYW50X25hbWUiOiAiRG9sbGFyIFRyZWUiLAogICAgICAibmFtZSI6ICJET0xMQVJUUkVFIiwKICAgICAgIm9yaWdpbmFsX2Rlc2NyaXB0aW9uIjogIkRPTExBUlRSRUUiLAogICAgICAicGF5bWVudF9jaGFubmVsIjogImluIHN0b3JlIiwKICAgICAgInBheW1lbnRfbWV0YSI6IHsKICAgICAgICAiYnlfb3JkZXJfb2YiOiBudWxsLAogICAgICAgICJwYXllZSI6IG51bGwsCiAgICAgICAgInBheWVyIjogbnVsbCwKICAgICAgICAicGF5bWVudF9tZXRob2QiOiBudWxsLAogICAgICAgICJwYXltZW50X3Byb2Nlc3NvciI6IG51bGwsCiAgICAgICAgInBwZF9pZCI6IG51bGwsCiAgICAgICAgInJlYXNvbiI6IG51bGwsCiAgICAgICAgInJlZmVyZW5jZV9udW1iZXIiOiBudWxsCiAgICAgIH0sCiAgICAgICJwZW5kaW5nIjogZmFsc2UsCiAgICAgICJwZW5kaW5nX3RyYW5zYWN0aW9uX2lkIjogbnVsbCwKICAgICAgInBlcnNvbmFsX2ZpbmFuY2VfY2F0ZWdvcnkiOiB7CiAgICAgICAgImNvbmZpZGVuY2VfbGV2ZWwiOiAiVkVSWV9ISUdIIiwKICAgICAgICAiZGV0YWlsZWQiOiAiR0VORVJBTF9NRVJDSEFORElTRV9ESVNDT1VOVF9TVE9SRVMiLAogICAgICAgICJwcmltYXJ5IjogIkdFTkVSQUxfTUVSQ0hBTkRJU0UiCiAgICAgIH0sCiAgICAgICJwZXJzb25hbF9maW5hbmNlX2NhdGVnb3J5X2ljb25fdXJsIjogImh0dHBzOi8vcGxhaWQtY2F0ZWdvcnktaWNvbnMucGxhaWQuY29tL1BGQ19HRU5FUkFMX01FUkNIQU5ESVNFLnBuZyIsCiAgICAgICJ0cmFuc2FjdGlvbl9jb2RlIjogbnVsbCwKICAgICAgInRyYW5zYWN0aW9uX2lkIjogInFMZ0FleDlES3JmTmpFdjVvRE1hRmViVmFwTW1XR2hncjdSblAiLAogICAgICAidHJhbnNhY3Rpb25fdHlwZSI6ICJwbGFjZSIsCiAgICAgICJ1bm9mZmljaWFsX2N1cnJlbmN5X2NvZGUiOiBudWxsLAogICAgICAid2Vic2l0ZSI6ICJkb2xsYXJ0cmVlLmNvbSIKICAgIH0sCiAgICB7CiAgICAgICJhY2NvdW50X2lkIjogIlp2bEJMNWVNUFF0blhEVjZRclI5c1JlTlZWejFYQWllYWdEUHoiLAogICAgICAiYWNjb3VudF9vd25lciI6IG51bGwsCiAgICAgICJhbW91bnQiOiA0LjMxLAogICAgICAiYXV0aG9yaXplZF9kYXRlIjogIjIwMjMtMTItMTMiLAogICAgICAiYXV0aG9yaXplZF9kYXRldGltZSI6IG51bGwsCiAgICAgICJjYXRlZ29yeSI6IFsKICAgICAgICAiRm9vZCBhbmQgRHJpbmsiLAogICAgICAgICJSZXN0YXVyYW50cyIsCiAgICAgICAgIkZhc3QgRm9vZCIKICAgICAgXSwKICAgICAgImNhdGVnb3J5X2lkIjogIjEzMDA1MDMyIiwKICAgICAgImNoZWNrX251bWJlciI6IG51bGwsCiAgICAgICJjb3VudGVycGFydGllcyI6IFsKICAgICAgICB7CiAgICAgICAgICAiY29uZmlkZW5jZV9sZXZlbCI6ICJWRVJZX0hJR0giLAogICAgICAgICAgImVudGl0eV9pZCI6ICJtVnJ3NTM4d2Ftd2RtMjJtSzhqcXBwN3FkNWJyMGVlVjlvNGExIiwKICAgICAgICAgICJsb2dvX3VybCI6ICJodHRwczovL3BsYWlkLW1lcmNoYW50LWxvZ29zLnBsYWlkLmNvbS9idXJnZXJfa2luZ18xNTUucG5nIiwKICAgICAgICAgICJuYW1lIjogIkJ1cmdlciBLaW5nIiwKICAgICAgICAgICJwaG9uZV9udW1iZXIiOiBudWxsLAogICAgICAgICAgInR5cGUiOiAibWVyY2hhbnQiLAogICAgICAgICAgIndlYnNpdGUiOiAiYnVyZ2Vya2luZy5jb20iCiAgICAgICAgfQogICAgICBdLAogICAgICAiZGF0ZSI6ICIyMDIzLTEyLTE4IiwKICAgICAgImRhdGV0aW1lIjogbnVsbCwKICAgICAgImlzb19jdXJyZW5jeV9jb2RlIjogIlVTRCIsCiAgICAgICJsb2NhdGlvbiI6IHsKICAgICAgICAiYWRkcmVzcyI6ICIxOTEwIE5FIDE2M3JkIFN0IiwKICAgICAgICAiY2l0eSI6ICJOb3J0aCBNaWFtaSBCZWFjaCIsCiAgICAgICAgImNvdW50cnkiOiBudWxsLAogICAgICAgICJsYXQiOiAyNS45MjU1OTYsCiAgICAgICAgImxvbiI6IC04MC4xNjE2MzYsCiAgICAgICAgInBvc3RhbF9jb2RlIjogIjMzMTYyIiwKICAgICAgICAicmVnaW9uIjogIkZMIiwKICAgICAgICAic3RvcmVfbnVtYmVyIjogIjAxMiIKICAgICAgfSwKICAgICAgImxvZ29fdXJsIjogImh0dHBzOi8vcGxhaWQtbWVyY2hhbnQtbG9nb3MucGxhaWQuY29tL2J1cmdlcl9raW5nXzE1NS5wbmciLAogICAgICAibWVyY2hhbnRfZW50aXR5X2lkIjogIm1Wcnc1Mzh3YW13ZG0yMm1LOGpxcHA3cWQ1YnIwZWVWOW80YTEiLAogICAgICAibWVyY2hhbnRfbmFtZSI6ICJCdXJnZXIgS2luZyIsCiAgICAgICJuYW1lIjogIkJ1cmdlciBLaW5nIiwKICAgICAgIm9yaWdpbmFsX2Rlc2NyaXB0aW9uIjogIkJVUkdFUiBLSU5HICMwMTIiLAogICAgICAicGF5bWVudF9jaGFubmVsIjogImluIHN0b3JlIiwKICAgICAgInBheW1lbnRfbWV0YSI6IHsKICAgICAgICAiYnlfb3JkZXJfb2YiOiBudWxsLAogICAgICAgICJwYXllZSI6IG51bGwsCiAgICAgICAgInBheWVyIjogbnVsbCwKICAgICAgICAicGF5bWVudF9tZXRob2QiOiBudWxsLAogICAgICAgICJwYXltZW50X3Byb2Nlc3NvciI6IG51bGwsCiAgICAgICAgInBwZF9pZCI6IG51bGwsCiAgICAgICAgInJlYXNvbiI6IG51bGwsCiAgICAgICAgInJlZmVyZW5jZV9udW1iZXIiOiBudWxsCiAgICAgIH0sCiAgICAgICJwZW5kaW5nIjogZmFsc2UsCiAgICAgICJwZW5kaW5nX3RyYW5zYWN0aW9uX2lkIjogbnVsbCwKICAgICAgInBlcnNvbmFsX2ZpbmFuY2VfY2F0ZWdvcnkiOiB7CiAgICAgICAgImNvbmZpZGVuY2VfbGV2ZWwiOiAiVkVSWV9ISUdIIiwKICAgICAgICAiZGV0YWlsZWQiOiAiRk9PRF9BTkRfRFJJTktfRkFTVF9GT09EIiwKICAgICAgICAicHJpbWFyeSI6ICJGT09EX0FORF9EUklOSyIKICAgICAgfSwKICAgICAgInBlcnNvbmFsX2ZpbmFuY2VfY2F0ZWdvcnlfaWNvbl91cmwiOiAiaHR0cHM6Ly9wbGFpZC1jYXRlZ29yeS1pY29ucy5wbGFpZC5jb20vUEZDX0ZPT0RfQU5EX0RSSU5LLnBuZyIsCiAgICAgICJ0cmFuc2FjdGlvbl9jb2RlIjogbnVsbCwKICAgICAgInRyYW5zYWN0aW9uX2lkIjogIksxOFBCNVpkYnFoMTdCVmdxYlJRaHlvYUE1ejFkZWlScEExTXAiLAogICAgICAidHJhbnNhY3Rpb25fdHlwZSI6ICJwbGFjZSIsCiAgICAgICJ1bm9mZmljaWFsX2N1cnJlbmN5X2NvZGUiOiBudWxsLAogICAgICAid2Vic2l0ZSI6ICJidXJnZXJraW5nLmNvbSIKICAgIH0sCiAgICB7CiAgICAgICJhY2NvdW50X2lkIjogIlp2bEJMNWVNUFF0blhEVjZRclI5c1JlTlZWejFYQWllYWdEUHoiLAogICAgICAiYWNjb3VudF9vd25lciI6IG51bGwsCiAgICAgICJhbW91bnQiOiAxNi43NSwKICAgICAgImF1dGhvcml6ZWRfZGF0ZSI6ICIyMDIzLTEyLTE4IiwKICAgICAgImF1dGhvcml6ZWRfZGF0ZXRpbWUiOiBudWxsLAogICAgICAiY2F0ZWdvcnkiOiBbCiAgICAgICAgIkZvb2QgYW5kIERyaW5rIiwKICAgICAgICAiUmVzdGF1cmFudHMiCiAgICAgIF0sCiAgICAgICJjYXRlZ29yeV9pZCI6ICIxMzAwNTAwMCIsCiAgICAgICJjaGVja19udW1iZXIiOiBudWxsLAogICAgICAiY291bnRlcnBhcnRpZXMiOiBbCiAgICAgICAgewogICAgICAgICAgImNvbmZpZGVuY2VfbGV2ZWwiOiAiVkVSWV9ISUdIIiwKICAgICAgICAgICJlbnRpdHlfaWQiOiAiTTdLOFdaQkpqS20wZExrZEU3TnlLT09xZVI1MDZvbzFFdjhKcCIsCiAgICAgICAgICAibG9nb191cmwiOiAiaHR0cHM6Ly9wbGFpZC1tZXJjaGFudC1sb2dvcy5wbGFpZC5jb20vemF4YnlzXzExNTEucG5nIiwKICAgICAgICAgICJuYW1lIjogIlpheGJ5J3MiLAogICAgICAgICAgInBob25lX251bWJlciI6IG51bGwsCiAgICAgICAgICAidHlwZSI6ICJtZXJjaGFudCIsCiAgICAgICAgICAid2Vic2l0ZSI6ICJ6YXhieXMuY29tIgogICAgICAgIH0KICAgICAgXSwKICAgICAgImRhdGUiOiAiMjAyMy0xMi0xOCIsCiAgICAgICJkYXRldGltZSI6IG51bGwsCiAgICAgICJpc29fY3VycmVuY3lfY29kZSI6ICJVU0QiLAogICAgICAibG9jYXRpb24iOiB7CiAgICAgICAgImFkZHJlc3MiOiAiMjczNSBNYWluIFN0IFciLAogICAgICAgICJjaXR5IjogIlNuZWxsdmlsbGUiLAogICAgICAgICJjb3VudHJ5IjogbnVsbCwKICAgICAgICAibGF0IjogbnVsbCwKICAgICAgICAibG9uIjogbnVsbCwKICAgICAgICAicG9zdGFsX2NvZGUiOiAiMzAwNzgiLAogICAgICAgICJyZWdpb24iOiAiR0EiLAogICAgICAgICJzdG9yZV9udW1iZXIiOiBudWxsCiAgICAgIH0sCiAgICAgICJsb2dvX3VybCI6ICJodHRwczovL3BsYWlkLW1lcmNoYW50LWxvZ29zLnBsYWlkLmNvbS96YXhieXNfMTE1MS5wbmciLAogICAgICAibWVyY2hhbnRfZW50aXR5X2lkIjogIk03SzhXWkJKakttMGRMa2RFN055S09PcWVSNTA2b28xRXY4SnAiLAogICAgICAibWVyY2hhbnRfbmFtZSI6ICJaYXhieSdzIiwKICAgICAgIm5hbWUiOiAiWmF4YnkncyIsCiAgICAgICJvcmlnaW5hbF9kZXNjcmlwdGlvbiI6ICJaQVhCWVMgMDEyMyIsCiAgICAgICJwYXltZW50X2NoYW5uZWwiOiAiaW4gc3RvcmUiLAogICAgICAicGF5bWVudF9tZXRhIjogewogICAgICAgICJieV9vcmRlcl9vZiI6IG51bGwsCiAgICAgICAgInBheWVlIjogbnVsbCwKICAgICAgICAicGF5ZXIiOiBudWxsLAogICAgICAgICJwYXltZW50X21ldGhvZCI6IG51bGwsCiAgICAgICAgInBheW1lbnRfcHJvY2Vzc29yIjogbnVsbCwKICAgICAgICAicHBkX2lkIjogbnVsbCwKICAgICAgICAicmVhc29uIjogbnVsbCwKICAgICAgICAicmVmZXJlbmNlX251bWJlciI6IG51bGwKICAgICAgfSwKICAgICAgInBlbmRpbmciOiBmYWxzZSwKICAgICAgInBlbmRpbmdfdHJhbnNhY3Rpb25faWQiOiBudWxsLAogICAgICAicGVyc29uYWxfZmluYW5jZV9jYXRlZ29yeSI6IHsKICAgICAgICAiY29uZmlkZW5jZV9sZXZlbCI6ICJWRVJZX0hJR0giLAogICAgICAgICJkZXRhaWxlZCI6ICJGT09EX0FORF9EUklOS19GQVNUX0ZPT0QiLAogICAgICAgICJwcmltYXJ5IjogIkZPT0RfQU5EX0RSSU5LIgogICAgICB9LAogICAgICAicGVyc29uYWxfZmluYW5jZV9jYXRlZ29yeV9pY29uX3VybCI6ICJodHRwczovL3BsYWlkLWNhdGVnb3J5LWljb25zLnBsYWlkLmNvbS9QRkNfRk9PRF9BTkRfRFJJTksucG5nIiwKICAgICAgInRyYW5zYWN0aW9uX2NvZGUiOiBudWxsLAogICAgICAidHJhbnNhY3Rpb25faWQiOiAicnA4d1FkOURyemM3WHhWUlpiQk5zYnhQNUpNakc5aTdKNjFFUiIsCiAgICAgICJ0cmFuc2FjdGlvbl90eXBlIjogInBsYWNlIiwKICAgICAgInVub2ZmaWNpYWxfY3VycmVuY3lfY29kZSI6IG51bGwsCiAgICAgICJ3ZWJzaXRlIjogInpheGJ5cy5jb20iCiAgICB9LAogICAgewogICAgICAiYWNjb3VudF9pZCI6ICJadmxCTDVlTVBRdG5YRFY2UXJSOXNSZU5WVnoxWEFpZWFnRFB6IiwKICAgICAgImFjY291bnRfb3duZXIiOiBudWxsLAogICAgICAiYW1vdW50IjogOC4yMiwKICAgICAgImF1dGhvcml6ZWRfZGF0ZSI6ICIyMDIzLTEyLTE1IiwKICAgICAgImF1dGhvcml6ZWRfZGF0ZXRpbWUiOiBudWxsLAogICAgICAiY2F0ZWdvcnkiOiBbCiAgICAgICAgIkZvb2QgYW5kIERyaW5rIiwKICAgICAgICAiUmVzdGF1cmFudHMiLAogICAgICAgICJGYXN0IEZvb2QiCiAgICAgIF0sCiAgICAgICJjYXRlZ29yeV9pZCI6ICIxMzAwNTAzMiIsCiAgICAgICJjaGVja19udW1iZXIiOiBudWxsLAogICAgICAiY291bnRlcnBhcnRpZXMiOiBbCiAgICAgICAgewogICAgICAgICAgImNvbmZpZGVuY2VfbGV2ZWwiOiAiVkVSWV9ISUdIIiwKICAgICAgICAgICJlbnRpdHlfaWQiOiAiMVlaMDN3MDhteVJBUTBtUmdNdkQyRUJvT2I5MlJtQlhONm5tSyIsCiAgICAgICAgICAibG9nb191cmwiOiAiaHR0cHM6Ly9wbGFpZC1tZXJjaGFudC1sb2dvcy5wbGFpZC5jb20vd2VuZHlzXzExMTQucG5nIiwKICAgICAgICAgICJuYW1lIjogIldlbmR5J3MiLAogICAgICAgICAgInBob25lX251bWJlciI6IG51bGwsCiAgICAgICAgICAidHlwZSI6ICJtZXJjaGFudCIsCiAgICAgICAgICAid2Vic2l0ZSI6ICJ3ZW5keXMuY29tIgogICAgICAgIH0KICAgICAgXSwKICAgICAgImRhdGUiOiAiMjAyMy0xMi0xNSIsCiAgICAgICJkYXRldGltZSI6IG51bGwsCiAgICAgICJpc29fY3VycmVuY3lfY29kZSI6ICJVU0QiLAogICAgICAibG9jYXRpb24iOiB7CiAgICAgICAgImFkZHJlc3MiOiBudWxsLAogICAgICAgICJjaXR5IjogbnVsbCwKICAgICAgICAiY291bnRyeSI6IG51bGwsCiAgICAgICAgImxhdCI6IG51bGwsCiAgICAgICAgImxvbiI6IG51bGwsCiAgICAgICAgInBvc3RhbF9jb2RlIjogbnVsbCwKICAgICAgICAicmVnaW9uIjogbnVsbCwKICAgICAgICAic3RvcmVfbnVtYmVyIjogbnVsbAogICAgICB9LAogICAgICAibG9nb191cmwiOiAiaHR0cHM6Ly9wbGFpZC1tZXJjaGFudC1sb2dvcy5wbGFpZC5jb20vd2VuZHlzXzExMTQucG5nIiwKICAgICAgIm1lcmNoYW50X2VudGl0eV9pZCI6ICIxWVowM3cwOG15UkFRMG1SZ012RDJFQm9PYjkyUm1CWE42bm1LIiwKICAgICAgIm1lcmNoYW50X25hbWUiOiAiV2VuZHkncyIsCiAgICAgICJuYW1lIjogIldlbmR5J3MiLAogICAgICAib3JpZ2luYWxfZGVzY3JpcHRpb24iOiAiV0VORFknUyAwMTIiLAogICAgICAicGF5bWVudF9jaGFubmVsIjogImluIHN0b3JlIiwKICAgICAgInBheW1lbnRfbWV0YSI6IHsKICAgICAgICAiYnlfb3JkZXJfb2YiOiBudWxsLAogICAgICAgICJwYXllZSI6IG51bGwsCiAgICAgICAgInBheWVyIjogbnVsbCwKICAgICAgICAicGF5bWVudF9tZXRob2QiOiBudWxsLAogICAgICAgICJwYXltZW50X3Byb2Nlc3NvciI6IG51bGwsCiAgICAgICAgInBwZF9pZCI6IG51bGwsCiAgICAgICAgInJlYXNvbiI6IG51bGwsCiAgICAgICAgInJlZmVyZW5jZV9udW1iZXIiOiBudWxsCiAgICAgIH0sCiAgICAgICJwZW5kaW5nIjogZmFsc2UsCiAgICAgICJwZW5kaW5nX3RyYW5zYWN0aW9uX2lkIjogbnVsbCwKICAgICAgInBlcnNvbmFsX2ZpbmFuY2VfY2F0ZWdvcnkiOiB7CiAgICAgICAgImNvbmZpZGVuY2VfbGV2ZWwiOiAiVkVSWV9ISUdIIiwKICAgICAgICAiZGV0YWlsZWQiOiAiRk9PRF9BTkRfRFJJTktfRkFTVF9GT09EIiwKICAgICAgICAicHJpbWFyeSI6ICJGT09EX0FORF9EUklOSyIKICAgICAgfSwKICAgICAgInBlcnNvbmFsX2ZpbmFuY2VfY2F0ZWdvcnlfaWNvbl91cmwiOiAiaHR0cHM6Ly9wbGFpZC1jYXRlZ29yeS1pY29ucy5wbGFpZC5jb20vUEZDX0ZPT0RfQU5EX0RSSU5LLnBuZyIsCiAgICAgICJ0cmFuc2FjdGlvbl9jb2RlIjogbnVsbCwKICAgICAgInRyYW5zYWN0aW9uX2lkIjogInpreXo4UTlyTlBDWGdXUWV5ajlwSWVxUFdsbUpwZGhsTkxRcDUiLAogICAgICAidHJhbnNhY3Rpb25fdHlwZSI6ICJwbGFjZSIsCiAgICAgICJ1bm9mZmljaWFsX2N1cnJlbmN5X2NvZGUiOiBudWxsLAogICAgICAid2Vic2l0ZSI6ICJ3ZW5keXMuY29tIgogICAgfSwKICAgIHsKICAgICAgImFjY291bnRfaWQiOiAiWnZsQkw1ZU1QUXRuWERWNlFyUjlzUmVOVlZ6MVhBaWVhZ0RQeiIsCiAgICAgICJhY2NvdW50X293bmVyIjogbnVsbCwKICAgICAgImFtb3VudCI6IDguOTksCiAgICAgICJhdXRob3JpemVkX2RhdGUiOiAiMjAyMy0xMi0xNiIsCiAgICAgICJhdXRob3JpemVkX2RhdGV0aW1lIjogbnVsbCwKICAgICAgImNhdGVnb3J5IjogWwogICAgICAgICJTaG9wcyIsCiAgICAgICAgIlN1cGVybWFya2V0cyBhbmQgR3JvY2VyaWVzIgogICAgICBdLAogICAgICAiY2F0ZWdvcnlfaWQiOiAiMTkwNDcwMDAiLAogICAgICAiY2hlY2tfbnVtYmVyIjogbnVsbCwKICAgICAgImNvdW50ZXJwYXJ0aWVzIjogWwogICAgICAgIHsKICAgICAgICAgICJjb25maWRlbmNlX2xldmVsIjogIlZFUllfSElHSCIsCiAgICAgICAgICAiZW50aXR5X2lkIjogInF6Z1JqWkw4YW5lMzVYQjlOdlZ3WDVPQTVMQXdiSzkydzZPV0IiLAogICAgICAgICAgImxvZ29fdXJsIjogImh0dHBzOi8vcGxhaWQtbWVyY2hhbnQtbG9nb3MucGxhaWQuY29tL3NlZGFub3Nfc3VwZXJtYXJrZXRfMTIyOC5wbmciLAogICAgICAgICAgIm5hbWUiOiAiU2VkYW5vJ3MgU3VwZXJtYXJrZXQiLAogICAgICAgICAgInBob25lX251bWJlciI6IG51bGwsCiAgICAgICAgICAidHlwZSI6ICJtZXJjaGFudCIsCiAgICAgICAgICAid2Vic2l0ZSI6ICJzZWRhbm9zLmNvbSIKICAgICAgICB9CiAgICAgIF0sCiAgICAgICJkYXRlIjogIjIwMjMtMTItMjEiLAogICAgICAiZGF0ZXRpbWUiOiBudWxsLAogICAgICAiaXNvX2N1cnJlbmN5X2NvZGUiOiAiVVNEIiwKICAgICAgImxvY2F0aW9uIjogewogICAgICAgICJhZGRyZXNzIjogbnVsbCwKICAgICAgICAiY2l0eSI6IG51bGwsCiAgICAgICAgImNvdW50cnkiOiBudWxsLAogICAgICAgICJsYXQiOiBudWxsLAogICAgICAgICJsb24iOiBudWxsLAogICAgICAgICJwb3N0YWxfY29kZSI6IG51bGwsCiAgICAgICAgInJlZ2lvbiI6IG51bGwsCiAgICAgICAgInN0b3JlX251bWJlciI6ICIwMSIKICAgICAgfSwKICAgICAgImxvZ29fdXJsIjogImh0dHBzOi8vcGxhaWQtbWVyY2hhbnQtbG9nb3MucGxhaWQuY29tL3NlZGFub3Nfc3VwZXJtYXJrZXRfMTIyOC5wbmciLAogICAgICAibWVyY2hhbnRfZW50aXR5X2lkIjogInF6Z1JqWkw4YW5lMzVYQjlOdlZ3WDVPQTVMQXdiSzkydzZPV0IiLAogICAgICAibWVyY2hhbnRfbmFtZSI6ICJTZWRhbm8ncyBTdXBlcm1hcmtldCIsCiAgICAgICJuYW1lIjogIlNFREFOTydTICMwMSIsCiAgICAgICJvcmlnaW5hbF9kZXNjcmlwdGlvbiI6ICJTRURBTk8nUyAjMDEiLAogICAgICAicGF5bWVudF9jaGFubmVsIjogImluIHN0b3JlIiwKICAgICAgInBheW1lbnRfbWV0YSI6IHsKICAgICAgICAiYnlfb3JkZXJfb2YiOiBudWxsLAogICAgICAgICJwYXllZSI6IG51bGwsCiAgICAgICAgInBheWVyIjogbnVsbCwKICAgICAgICAicGF5bWVudF9tZXRob2QiOiBudWxsLAogICAgICAgICJwYXltZW50X3Byb2Nlc3NvciI6IG51bGwsCiAgICAgICAgInBwZF9pZCI6IG51bGwsCiAgICAgICAgInJlYXNvbiI6IG51bGwsCiAgICAgICAgInJlZmVyZW5jZV9udW1iZXIiOiBudWxsCiAgICAgIH0sCiAgICAgICJwZW5kaW5nIjogZmFsc2UsCiAgICAgICJwZW5kaW5nX3RyYW5zYWN0aW9uX2lkIjogbnVsbCwKICAgICAgInBlcnNvbmFsX2ZpbmFuY2VfY2F0ZWdvcnkiOiB7CiAgICAgICAgImNvbmZpZGVuY2VfbGV2ZWwiOiAiSElHSCIsCiAgICAgICAgImRldGFpbGVkIjogIkZPT0RfQU5EX0RSSU5LX0dST0NFUklFUyIsCiAgICAgICAgInByaW1hcnkiOiAiRk9PRF9BTkRfRFJJTksiCiAgICAgIH0sCiAgICAgICJwZXJzb25hbF9maW5hbmNlX2NhdGVnb3J5X2ljb25fdXJsIjogImh0dHBzOi8vcGxhaWQtY2F0ZWdvcnktaWNvbnMucGxhaWQuY29tL1BGQ19GT09EX0FORF9EUklOSy5wbmciLAogICAgICAidHJhbnNhY3Rpb25fY29kZSI6IG51bGwsCiAgICAgICJ0cmFuc2FjdGlvbl9pZCI6ICJCNGVrODY5WnBHQzQxbURuanZWeHVCZFhWTGpQUnhDNE04Z3JHIiwKICAgICAgInRyYW5zYWN0aW9uX3R5cGUiOiAicGxhY2UiLAogICAgICAidW5vZmZpY2lhbF9jdXJyZW5jeV9jb2RlIjogbnVsbCwKICAgICAgIndlYnNpdGUiOiAic2VkYW5vcy5jb20iCiAgICB9LAogICAgewogICAgICAiYWNjb3VudF9pZCI6ICJadmxCTDVlTVBRdG5YRFY2UXJSOXNSZU5WVnoxWEFpZWFnRFB6IiwKICAgICAgImFjY291bnRfb3duZXIiOiBudWxsLAogICAgICAiYW1vdW50IjogMy4xOCwKICAgICAgImF1dGhvcml6ZWRfZGF0ZSI6ICIyMDIzLTEyLTE3IiwKICAgICAgImF1dGhvcml6ZWRfZGF0ZXRpbWUiOiBudWxsLAogICAgICAiY2F0ZWdvcnkiOiBbCiAgICAgICAgIlNob3BzIiwKICAgICAgICAiU3VwZXJtYXJrZXRzIGFuZCBHcm9jZXJpZXMiCiAgICAgIF0sCiAgICAgICJjYXRlZ29yeV9pZCI6ICIxOTA0NzAwMCIsCiAgICAgICJjaGVja19udW1iZXIiOiBudWxsLAogICAgICAiY291bnRlcnBhcnRpZXMiOiBbCiAgICAgICAgewogICAgICAgICAgImNvbmZpZGVuY2VfbGV2ZWwiOiAiVkVSWV9ISUdIIiwKICAgICAgICAgICJlbnRpdHlfaWQiOiAiTzVXNWo0ZE45T1IzRTZ5cFFtamRrV1paUm9YRXpWTXoyQnlXTSIsCiAgICAgICAgICAibG9nb191cmwiOiAiaHR0cHM6Ly9wbGFpZC1tZXJjaGFudC1sb2dvcy5wbGFpZC5jb20vd2FsbWFydF8xMTAwLnBuZyIsCiAgICAgICAgICAibmFtZSI6ICJXYWxtYXJ0IiwKICAgICAgICAgICJwaG9uZV9udW1iZXIiOiBudWxsLAogICAgICAgICAgInR5cGUiOiAibWVyY2hhbnQiLAogICAgICAgICAgIndlYnNpdGUiOiAid2FsbWFydC5jb20iCiAgICAgICAgfQogICAgICBdLAogICAgICAiZGF0ZSI6ICIyMDIzLTEyLTE5IiwKICAgICAgImRhdGV0aW1lIjogbnVsbCwKICAgICAgImlzb19jdXJyZW5jeV9jb2RlIjogIlVTRCIsCiAgICAgICJsb2NhdGlvbiI6IHsKICAgICAgICAiYWRkcmVzcyI6ICIxNTAwIEUgV3JhbmdsZXIgQmx2ZCIsCiAgICAgICAgImNpdHkiOiAiU2VtaW5vbGUiLAogICAgICAgICJjb3VudHJ5IjogbnVsbCwKICAgICAgICAibGF0IjogMzUuMjQ4MzUyLAogICAgICAgICJsb24iOiAtOTYuNjU0NjI1LAogICAgICAgICJwb3N0YWxfY29kZSI6ICI3NDg2OCIsCiAgICAgICAgInJlZ2lvbiI6ICJPSyIsCiAgICAgICAgInN0b3JlX251bWJlciI6ICIwMTIzIgogICAgICB9LAogICAgICAibG9nb191cmwiOiAiaHR0cHM6Ly9wbGFpZC1tZXJjaGFudC1sb2dvcy5wbGFpZC5jb20vd2FsbWFydF8xMTAwLnBuZyIsCiAgICAgICJtZXJjaGFudF9lbnRpdHlfaWQiOiAiTzVXNWo0ZE45T1IzRTZ5cFFtamRrV1paUm9YRXpWTXoyQnlXTSIsCiAgICAgICJtZXJjaGFudF9uYW1lIjogIldhbG1hcnQiLAogICAgICAibmFtZSI6ICJXYWxtYXJ0IiwKICAgICAgIm9yaWdpbmFsX2Rlc2NyaXB0aW9uIjogIldBTC1NQVJUICMwMTIzIiwKICAgICAgInBheW1lbnRfY2hhbm5lbCI6ICJpbiBzdG9yZSIsCiAgICAgICJwYXltZW50X21ldGEiOiB7CiAgICAgICAgImJ5X29yZGVyX29mIjogbnVsbCwKICAgICAgICAicGF5ZWUiOiBudWxsLAogICAgICAgICJwYXllciI6IG51bGwsCiAgICAgICAgInBheW1lbnRfbWV0aG9kIjogbnVsbCwKICAgICAgICAicGF5bWVudF9wcm9jZXNzb3IiOiBudWxsLAogICAgICAgICJwcGRfaWQiOiBudWxsLAogICAgICAgICJyZWFzb24iOiBudWxsLAogICAgICAgICJyZWZlcmVuY2VfbnVtYmVyIjogbnVsbAogICAgICB9LAogICAgICAicGVuZGluZyI6IGZhbHNlLAogICAgICAicGVuZGluZ190cmFuc2FjdGlvbl9pZCI6IG51bGwsCiAgICAgICJwZXJzb25hbF9maW5hbmNlX2NhdGVnb3J5IjogewogICAgICAgICJjb25maWRlbmNlX2xldmVsIjogIlZFUllfSElHSCIsCiAgICAgICAgImRldGFpbGVkIjogIkdFTkVSQUxfTUVSQ0hBTkRJU0VfU1VQRVJTVE9SRVMiLAogICAgICAgICJwcmltYXJ5IjogIkdFTkVSQUxfTUVSQ0hBTkRJU0UiCiAgICAgIH0sCiAgICAgICJwZXJzb25hbF9maW5hbmNlX2NhdGVnb3J5X2ljb25fdXJsIjogImh0dHBzOi8vcGxhaWQtY2F0ZWdvcnktaWNvbnMucGxhaWQuY29tL1BGQ19HRU5FUkFMX01FUkNIQU5ESVNFLnBuZyIsCiAgICAgICJ0cmFuc2FjdGlvbl9jb2RlIjogbnVsbCwKICAgICAgInRyYW5zYWN0aW9uX2lkIjogIjN5bEphcGRiM2pmOG5LM0ExejdKRjNqbG1RYTVMQmhabG5FejEiLAogICAgICAidHJhbnNhY3Rpb25fdHlwZSI6ICJwbGFjZSIsCiAgICAgICJ1bm9mZmljaWFsX2N1cnJlbmN5X2NvZGUiOiBudWxsLAogICAgICAid2Vic2l0ZSI6ICJ3YWxtYXJ0LmNvbSIKICAgIH0sCiAgICB7CiAgICAgICJhY2NvdW50X2lkIjogIlp2bEJMNWVNUFF0blhEVjZRclI5c1JlTlZWejFYQWllYWdEUHoiLAogICAgICAiYWNjb3VudF9vd25lciI6IG51bGwsCiAgICAgICJhbW91bnQiOiAyNTQuNTIsCiAgICAgICJhdXRob3JpemVkX2RhdGUiOiAiMjAyMy0xMi0yMyIsCiAgICAgICJhdXRob3JpemVkX2RhdGV0aW1lIjogbnVsbCwKICAgICAgImNhdGVnb3J5IjogWwogICAgICAgICJTaG9wcyIsCiAgICAgICAgIldhcmVob3VzZXMgYW5kIFdob2xlc2FsZSBTdG9yZXMiCiAgICAgIF0sCiAgICAgICJjYXRlZ29yeV9pZCI6ICIxOTA1MTAwMCIsCiAgICAgICJjaGVja19udW1iZXIiOiBudWxsLAogICAgICAiY291bnRlcnBhcnRpZXMiOiBbCiAgICAgICAgewogICAgICAgICAgImNvbmZpZGVuY2VfbGV2ZWwiOiAiVkVSWV9ISUdIIiwKICAgICAgICAgICJlbnRpdHlfaWQiOiAicEJvd0FvWkpNTTlES1IzN2p2Tm16TTR5V0JCWHlNelYyck0zQSIsCiAgICAgICAgICAibG9nb191cmwiOiAiaHR0cHM6Ly9wbGFpZC1tZXJjaGFudC1sb2dvcy5wbGFpZC5jb20vY29zdGNvXzIzNS5wbmciLAogICAgICAgICAgIm5hbWUiOiAiQ29zdGNvIiwKICAgICAgICAgICJwaG9uZV9udW1iZXIiOiBudWxsLAogICAgICAgICAgInR5cGUiOiAibWVyY2hhbnQiLAogICAgICAgICAgIndlYnNpdGUiOiAiY29zdGNvLmNvbSIKICAgICAgICB9CiAgICAgIF0sCiAgICAgICJkYXRlIjogIjIwMjMtMTItMjMiLAogICAgICAiZGF0ZXRpbWUiOiBudWxsLAogICAgICAiaXNvX2N1cnJlbmN5X2NvZGUiOiAiVVNEIiwKICAgICAgImxvY2F0aW9uIjogewogICAgICAgICJhZGRyZXNzIjogIjUwMzAgSGFtbmVyIEF2ZSIsCiAgICAgICAgImNpdHkiOiAiRWFzdHZhbGUiLAogICAgICAgICJjb3VudHJ5IjogbnVsbCwKICAgICAgICAibGF0IjogMzMuOTk3MTUsCiAgICAgICAgImxvbiI6IC0xMTcuNTU1Njc5LAogICAgICAgICJwb3N0YWxfY29kZSI6ICI5MTc1MiIsCiAgICAgICAgInJlZ2lvbiI6ICJDQSIsCiAgICAgICAgInN0b3JlX251bWJlciI6ICIwMTIzIgogICAgICB9LAogICAgICAibG9nb191cmwiOiAiaHR0cHM6Ly9wbGFpZC1tZXJjaGFudC1sb2dvcy5wbGFpZC5jb20vY29zdGNvXzIzNS5wbmciLAogICAgICAibWVyY2hhbnRfZW50aXR5X2lkIjogInBCb3dBb1pKTU05REtSMzdqdk5tek00eVdCQlh5TXpWMnJNM0EiLAogICAgICAibWVyY2hhbnRfbmFtZSI6ICJDb3N0Y28iLAogICAgICAibmFtZSI6ICJDb3N0Y28iLAogICAgICAib3JpZ2luYWxfZGVzY3JpcHRpb24iOiAiQ09TVENPIFdIU0UjMDEyMyBFQVNUVkFMRSBDQSIsCiAgICAgICJwYXltZW50X2NoYW5uZWwiOiAiaW4gc3RvcmUiLAogICAgICAicGF5bWVudF9tZXRhIjogewogICAgICAgICJieV9vcmRlcl9vZiI6IG51bGwsCiAgICAgICAgInBheWVlIjogbnVsbCwKICAgICAgICAicGF5ZXIiOiBudWxsLAogICAgICAgICJwYXltZW50X21ldGhvZCI6IG51bGwsCiAgICAgICAgInBheW1lbnRfcHJvY2Vzc29yIjogbnVsbCwKICAgICAgICAicHBkX2lkIjogbnVsbCwKICAgICAgICAicmVhc29uIjogbnVsbCwKICAgICAgICAicmVmZXJlbmNlX251bWJlciI6IG51bGwKICAgICAgfSwKICAgICAgInBlbmRpbmciOiBmYWxzZSwKICAgICAgInBlbmRpbmdfdHJhbnNhY3Rpb25faWQiOiBudWxsLAogICAgICAicGVyc29uYWxfZmluYW5jZV9jYXRlZ29yeSI6IHsKICAgICAgICAiY29uZmlkZW5jZV9sZXZlbCI6ICJWRVJZX0hJR0giLAogICAgICAgICJkZXRhaWxlZCI6ICJHRU5FUkFMX01FUkNIQU5ESVNFX1NVUEVSU1RPUkVTIiwKICAgICAgICAicHJpbWFyeSI6ICJHRU5FUkFMX01FUkNIQU5ESVNFIgogICAgICB9LAogICAgICAicGVyc29uYWxfZmluYW5jZV9jYXRlZ29yeV9pY29uX3VybCI6ICJodHRwczovL3BsYWlkLWNhdGVnb3J5LWljb25zLnBsYWlkLmNvbS9QRkNfR0VORVJBTF9NRVJDSEFORElTRS5wbmciLAogICAgICAidHJhbnNhY3Rpb25fY29kZSI6IG51bGwsCiAgICAgICJ0cmFuc2FjdGlvbl9pZCI6ICJ4QWJLbzc1cWE0dW01YVo4em5kcFVNZDdnVzV3YnhVNjRWZThvIiwKICAgICAgInRyYW5zYWN0aW9uX3R5cGUiOiAicGxhY2UiLAogICAgICAidW5vZmZpY2lhbF9jdXJyZW5jeV9jb2RlIjogbnVsbCwKICAgICAgIndlYnNpdGUiOiAiY29zdGNvLmNvbSIKICAgIH0sCiAgICB7CiAgICAgICJhY2NvdW50X2lkIjogIlp2bEJMNWVNUFF0blhEVjZRclI5c1JlTlZWejFYQWllYWdEUHoiLAogICAgICAiYWNjb3VudF9vd25lciI6IG51bGwsCiAgICAgICJhbW91bnQiOiAxOTQuMjcsCiAgICAgICJhdXRob3JpemVkX2RhdGUiOiAiMjAyMy0xMi0yMyIsCiAgICAgICJhdXRob3JpemVkX2RhdGV0aW1lIjogbnVsbCwKICAgICAgImNhdGVnb3J5IjogWwogICAgICAgICJTaG9wcyIsCiAgICAgICAgIkZvb2QgYW5kIEJldmVyYWdlIFN0b3JlIgogICAgICBdLAogICAgICAiY2F0ZWdvcnlfaWQiOiAiMTkwMjUwMDAiLAogICAgICAiY2hlY2tfbnVtYmVyIjogbnVsbCwKICAgICAgImNvdW50ZXJwYXJ0aWVzIjogWwogICAgICAgIHsKICAgICAgICAgICJjb25maWRlbmNlX2xldmVsIjogIkxPVyIsCiAgICAgICAgICAiZW50aXR5X2lkIjogbnVsbCwKICAgICAgICAgICJsb2dvX3VybCI6IG51bGwsCiAgICAgICAgICAibmFtZSI6ICJKby1hbm4gRmFicmljIFx1MDAyNiBDcmFmdCBTdG9yZXMiLAogICAgICAgICAgInBob25lX251bWJlciI6IG51bGwsCiAgICAgICAgICAidHlwZSI6ICJtZXJjaGFudCIsCiAgICAgICAgICAid2Vic2l0ZSI6IG51bGwKICAgICAgICB9CiAgICAgIF0sCiAgICAgICJkYXRlIjogIjIwMjMtMTItMjMiLAogICAgICAiZGF0ZXRpbWUiOiBudWxsLAogICAgICAiaXNvX2N1cnJlbmN5X2NvZGUiOiAiVVNEIiwKICAgICAgImxvY2F0aW9uIjogewogICAgICAgICJhZGRyZXNzIjogbnVsbCwKICAgICAgICAiY2l0eSI6IG51bGwsCiAgICAgICAgImNvdW50cnkiOiBudWxsLAogICAgICAgICJsYXQiOiBudWxsLAogICAgICAgICJsb24iOiBudWxsLAogICAgICAgICJwb3N0YWxfY29kZSI6IG51bGwsCiAgICAgICAgInJlZ2lvbiI6IG51bGwsCiAgICAgICAgInN0b3JlX251bWJlciI6IG51bGwKICAgICAgfSwKICAgICAgImxvZ29fdXJsIjogbnVsbCwKICAgICAgIm1lcmNoYW50X2VudGl0eV9pZCI6IG51bGwsCiAgICAgICJtZXJjaGFudF9uYW1lIjogIkpvLWFubiBGYWJyaWMgXHUwMDI2IENyYWZ0IFN0b3JlcyIsCiAgICAgICJuYW1lIjogIkpvLUFubiBGYWJyaWMgXHUwMDI2IENyYWZ0IiwKICAgICAgIm9yaWdpbmFsX2Rlc2NyaXB0aW9uIjogIkpvLUFubiBGYWJyaWMgXHUwMDI2IENyYWZ0IFN0b3JlcyIsCiAgICAgICJwYXltZW50X2NoYW5uZWwiOiAiaW4gc3RvcmUiLAogICAgICAicGF5bWVudF9tZXRhIjogewogICAgICAgICJieV9vcmRlcl9vZiI6IG51bGwsCiAgICAgICAgInBheWVlIjogbnVsbCwKICAgICAgICAicGF5ZXIiOiBudWxsLAogICAgICAgICJwYXltZW50X21ldGhvZCI6IG51bGwsCiAgICAgICAgInBheW1lbnRfcHJvY2Vzc29yIjogbnVsbCwKICAgICAgICAicHBkX2lkIjogbnVsbCwKICAgICAgICAicmVhc29uIjogbnVsbCwKICAgICAgICAicmVmZXJlbmNlX251bWJlciI6IG51bGwKICAgICAgfSwKICAgICAgInBlbmRpbmciOiBmYWxzZSwKICAgICAgInBlbmRpbmdfdHJhbnNhY3Rpb25faWQiOiBudWxsLAogICAgICAicGVyc29uYWxfZmluYW5jZV9jYXRlZ29yeSI6IHsKICAgICAgICAiY29uZmlkZW5jZV9sZXZlbCI6ICJMT1ciLAogICAgICAgICJkZXRhaWxlZCI6ICJHRU5FUkFMX01FUkNIQU5ESVNFX0dJRlRTX0FORF9OT1ZFTFRJRVMiLAogICAgICAgICJwcmltYXJ5IjogIkdFTkVSQUxfTUVSQ0hBTkRJU0UiCiAgICAgIH0sCiAgICAgICJwZXJzb25hbF9maW5hbmNlX2NhdGVnb3J5X2ljb25fdXJsIjogImh0dHBzOi8vcGxhaWQtY2F0ZWdvcnktaWNvbnMucGxhaWQuY29tL1BGQ19HRU5FUkFMX01FUkNIQU5ESVNFLnBuZyIsCiAgICAgICJ0cmFuc2FjdGlvbl9jb2RlIjogbnVsbCwKICAgICAgInRyYW5zYWN0aW9uX2lkIjogImR4NFpLNThYb1dDdmJYVlpsTmdhQzlSbDV3a0xFeENKRVFSN2siLAogICAgICAidHJhbnNhY3Rpb25fdHlwZSI6ICJwbGFjZSIsCiAgICAgICJ1bm9mZmljaWFsX2N1cnJlbmN5X2NvZGUiOiBudWxsLAogICAgICAid2Vic2l0ZSI6IG51bGwKICAgIH0sCiAgICB7CiAgICAgICJhY2NvdW50X2lkIjogIlp2bEJMNWVNUFF0blhEVjZRclI5c1JlTlZWejFYQWllYWdEUHoiLAogICAgICAiYWNjb3VudF9vd25lciI6IG51bGwsCiAgICAgICJhbW91bnQiOiA0NDkuNzUsCiAgICAgICJhdXRob3JpemVkX2RhdGUiOiAiMjAyMy0xMi0yMyIsCiAgICAgICJhdXRob3JpemVkX2RhdGV0aW1lIjogbnVsbCwKICAgICAgImNhdGVnb3J5IjogWwogICAgICAgICJUcmF2ZWwiLAogICAgICAgICJBaXJsaW5lcyBhbmQgQXZpYXRpb24gU2VydmljZXMiCiAgICAgIF0sCiAgICAgICJjYXRlZ29yeV9pZCI6ICIyMjAwMTAwMCIsCiAgICAgICJjaGVja19udW1iZXIiOiBudWxsLAogICAgICAiY291bnRlcnBhcnRpZXMiOiBbCiAgICAgICAgewogICAgICAgICAgImNvbmZpZGVuY2VfbGV2ZWwiOiAiVkVSWV9ISUdIIiwKICAgICAgICAgICJlbnRpdHlfaWQiOiAiTktEanF5QWRRUXpweWVEOHFwTG5YMEQ2eXZMZTJLWUtZWXpRNCIsCiAgICAgICAgICAibG9nb191cmwiOiAiaHR0cHM6Ly9wbGFpZC1tZXJjaGFudC1sb2dvcy5wbGFpZC5jb20vdW5pdGVkX2FpcmxpbmVzXzEwNjUucG5nIiwKICAgICAgICAgICJuYW1lIjogIlVuaXRlZCBBaXJsaW5lcyIsCiAgICAgICAgICAicGhvbmVfbnVtYmVyIjogbnVsbCwKICAgICAgICAgICJ0eXBlIjogIm1lcmNoYW50IiwKICAgICAgICAgICJ3ZWJzaXRlIjogInVuaXRlZC5jb20iCiAgICAgICAgfQogICAgICBdLAogICAgICAiZGF0ZSI6ICIyMDIzLTEyLTI0IiwKICAgICAgImRhdGV0aW1lIjogbnVsbCwKICAgICAgImlzb19jdXJyZW5jeV9jb2RlIjogIlVTRCIsCiAgICAgICJsb2NhdGlvbiI6IHsKICAgICAgICAiYWRkcmVzcyI6IG51bGwsCiAgICAgICAgImNpdHkiOiBudWxsLAogICAgICAgICJjb3VudHJ5IjogbnVsbCwKICAgICAgICAibGF0IjogbnVsbCwKICAgICAgICAibG9uIjogbnVsbCwKICAgICAgICAicG9zdGFsX2NvZGUiOiBudWxsLAogICAgICAgICJyZWdpb24iOiAiVFgiLAogICAgICAgICJzdG9yZV9udW1iZXIiOiBudWxsCiAgICAgIH0sCiAgICAgICJsb2dvX3VybCI6ICJodHRwczovL3BsYWlkLW1lcmNoYW50LWxvZ29zLnBsYWlkLmNvbS91bml0ZWRfYWlybGluZXNfMTA2NS5wbmciLAogICAgICAibWVyY2hhbnRfZW50aXR5X2lkIjogIk5LRGpxeUFkUVF6cHllRDhxcExuWDBENnl2TGUyS1lLWVl6UTQiLAogICAgICAibWVyY2hhbnRfbmFtZSI6ICJVbml0ZWQgQWlybGluZXMiLAogICAgICAibmFtZSI6ICJVTklURUQgMDEyMzQ1Njc4OTAxMjM0NS0wMTItMDEyMyIsCiAgICAgICJvcmlnaW5hbF9kZXNjcmlwdGlvbiI6ICJVTklURUQgMDEyMzQ1Njc4OTAxMjM0NS0wMTItMDEyMyBUWCIsCiAgICAgICJwYXltZW50X2NoYW5uZWwiOiAiaW4gc3RvcmUiLAogICAgICAicGF5bWVudF9tZXRhIjogewogICAgICAgICJieV9vcmRlcl9vZiI6IG51bGwsCiAgICAgICAgInBheWVlIjogbnVsbCwKICAgICAgICAicGF5ZXIiOiBudWxsLAogICAgICAgICJwYXltZW50X21ldGhvZCI6IG51bGwsCiAgICAgICAgInBheW1lbnRfcHJvY2Vzc29yIjogbnVsbCwKICAgICAgICAicHBkX2lkIjogbnVsbCwKICAgICAgICAicmVhc29uIjogbnVsbCwKICAgICAgICAicmVmZXJlbmNlX251bWJlciI6IG51bGwKICAgICAgfSwKICAgICAgInBlbmRpbmciOiBmYWxzZSwKICAgICAgInBlbmRpbmdfdHJhbnNhY3Rpb25faWQiOiBudWxsLAogICAgICAicGVyc29uYWxfZmluYW5jZV9jYXRlZ29yeSI6IHsKICAgICAgICAiY29uZmlkZW5jZV9sZXZlbCI6ICJISUdIIiwKICAgICAgICAiZGV0YWlsZWQiOiAiVFJBVkVMX0ZMSUdIVFMiLAogICAgICAgICJwcmltYXJ5IjogIlRSQVZFTCIKICAgICAgfSwKICAgICAgInBlcnNvbmFsX2ZpbmFuY2VfY2F0ZWdvcnlfaWNvbl91cmwiOiAiaHR0cHM6Ly9wbGFpZC1jYXRlZ29yeS1pY29ucy5wbGFpZC5jb20vUEZDX1RSQVZFTC5wbmciLAogICAgICAidHJhbnNhY3Rpb25fY29kZSI6IG51bGwsCiAgICAgICJ0cmFuc2FjdGlvbl9pZCI6ICJheng3QTU5WDFnYzVvclY2ZFB3M3NvcUFqSjN6WnlzWjVRRHJFIiwKICAgICAgInRyYW5zYWN0aW9uX3R5cGUiOiAic3BlY2lhbCIsCiAgICAgICJ1bm9mZmljaWFsX2N1cnJlbmN5X2NvZGUiOiBudWxsLAogICAgICAid2Vic2l0ZSI6ICJ1bml0ZWQuY29tIgogICAgfSwKICAgIHsKICAgICAgImFjY291bnRfaWQiOiAiWnZsQkw1ZU1QUXRuWERWNlFyUjlzUmVOVlZ6MVhBaWVhZ0RQeiIsCiAgICAgICJhY2NvdW50X293bmVyIjogbnVsbCwKICAgICAgImFtb3VudCI6IDEwLjY4LAogICAgICAiYXV0aG9yaXplZF9kYXRlIjogIjIwMjMtMTItMjUiLAogICAgICAiYXV0aG9yaXplZF9kYXRldGltZSI6IG51bGwsCiAgICAgICJjYXRlZ29yeSI6IFsKICAgICAgICAiRm9vZCBhbmQgRHJpbmsiLAogICAgICAgICJSZXN0YXVyYW50cyIsCiAgICAgICAgIkZhc3QgRm9vZCIKICAgICAgXSwKICAgICAgImNhdGVnb3J5X2lkIjogIjEzMDA1MDMyIiwKICAgICAgImNoZWNrX251bWJlciI6IG51bGwsCiAgICAgICJjb3VudGVycGFydGllcyI6IFsKICAgICAgICB7CiAgICAgICAgICAiY29uZmlkZW5jZV9sZXZlbCI6ICJWRVJZX0hJR0giLAogICAgICAgICAgImVudGl0eV9pZCI6ICIxTlgwclllOFdrOE5ZZzZYUjdlTFcyTG9BTkxYT252azdEYTlqIiwKICAgICAgICAgICJsb2dvX3VybCI6ICJodHRwczovL3BsYWlkLW1lcmNoYW50LWxvZ29zLnBsYWlkLmNvbS9wb3J0aWxsb3NfNzcwLnBuZyIsCiAgICAgICAgICAibmFtZSI6ICJQb3J0aWxsbydzIiwKICAgICAgICAgICJwaG9uZV9udW1iZXIiOiBudWxsLAogICAgICAgICAgInR5cGUiOiAibWVyY2hhbnQiLAogICAgICAgICAgIndlYnNpdGUiOiAicG9ydGlsbG9zLmNvbSIKICAgICAgICB9CiAgICAgIF0sCiAgICAgICJkYXRlIjogIjIwMjMtMTItMjUiLAogICAgICAiZGF0ZXRpbWUiOiBudWxsLAogICAgICAiaXNvX2N1cnJlbmN5X2NvZGUiOiAiVVNEIiwKICAgICAgImxvY2F0aW9uIjogewogICAgICAgICJhZGRyZXNzIjogIjYzNSAxLzIgVyBOb3J0aCBBdmUiLAogICAgICAgICJjaXR5IjogIlZpbGxhIFBhcmsiLAogICAgICAgICJjb3VudHJ5IjogbnVsbCwKICAgICAgICAibGF0IjogbnVsbCwKICAgICAgICAibG9uIjogbnVsbCwKICAgICAgICAicG9zdGFsX2NvZGUiOiAiNjAxODEiLAogICAgICAgICJyZWdpb24iOiAiSUwiLAogICAgICAgICJzdG9yZV9udW1iZXIiOiAiMDEiCiAgICAgIH0sCiAgICAgICJsb2dvX3VybCI6ICJodHRwczovL3BsYWlkLW1lcmNoYW50LWxvZ29zLnBsYWlkLmNvbS9wb3J0aWxsb3NfNzcwLnBuZyIsCiAgICAgICJtZXJjaGFudF9lbnRpdHlfaWQiOiAiMU5YMHJZZThXazhOWWc2WFI3ZUxXMkxvQU5MWE9udms3RGE5aiIsCiAgICAgICJtZXJjaGFudF9uYW1lIjogIlBvcnRpbGxvJ3MiLAogICAgICAibmFtZSI6ICJQT1JUSUxMT1MgSE9UIERPR1MgIzAxIiwKICAgICAgIm9yaWdpbmFsX2Rlc2NyaXB0aW9uIjogIlBPUlRJTExPUyBIT1QgRE9HUyAjMDEiLAogICAgICAicGF5bWVudF9jaGFubmVsIjogImluIHN0b3JlIiwKICAgICAgInBheW1lbnRfbWV0YSI6IHsKICAgICAgICAiYnlfb3JkZXJfb2YiOiBudWxsLAogICAgICAgICJwYXllZSI6IG51bGwsCiAgICAgICAgInBheWVyIjogbnVsbCwKICAgICAgICAicGF5bWVudF9tZXRob2QiOiBudWxsLAogICAgICAgICJwYXltZW50X3Byb2Nlc3NvciI6IG51bGwsCiAgICAgICAgInBwZF9pZCI6IG51bGwsCiAgICAgICAgInJlYXNvbiI6IG51bGwsCiAgICAgICAgInJlZmVyZW5jZV9udW1iZXIiOiBudWxsCiAgICAgIH0sCiAgICAgICJwZW5kaW5nIjogZmFsc2UsCiAgICAgICJwZW5kaW5nX3RyYW5zYWN0aW9uX2lkIjogbnVsbCwKICAgICAgInBlcnNvbmFsX2ZpbmFuY2VfY2F0ZWdvcnkiOiB7CiAgICAgICAgImNvbmZpZGVuY2VfbGV2ZWwiOiAiVkVSWV9ISUdIIiwKICAgICAgICAiZGV0YWlsZWQiOiAiRk9PRF9BTkRfRFJJTktfUkVTVEFVUkFOVCIsCiAgICAgICAgInByaW1hcnkiOiAiRk9PRF9BTkRfRFJJTksiCiAgICAgIH0sCiAgICAgICJwZXJzb25hbF9maW5hbmNlX2NhdGVnb3J5X2ljb25fdXJsIjogImh0dHBzOi8vcGxhaWQtY2F0ZWdvcnktaWNvbnMucGxhaWQuY29tL1BGQ19GT09EX0FORF9EUklOSy5wbmciLAogICAgICAidHJhbnNhY3Rpb25fY29kZSI6IG51bGwsCiAgICAgICJ0cmFuc2FjdGlvbl9pZCI6ICI0OXFaNG9HYng3VDg3M1hEb2VibkZtbGJkVzRlRGFGSmJBTEJyIiwKICAgICAgInRyYW5zYWN0aW9uX3R5cGUiOiAicGxhY2UiLAogICAgICAidW5vZmZpY2lhbF9jdXJyZW5jeV9jb2RlIjogbnVsbCwKICAgICAgIndlYnNpdGUiOiAicG9ydGlsbG9zLmNvbSIKICAgIH0sCiAgICB7CiAgICAgICJhY2NvdW50X2lkIjogIlp2bEJMNWVNUFF0blhEVjZRclI5c1JlTlZWejFYQWllYWdEUHoiLAogICAgICAiYWNjb3VudF9vd25lciI6IG51bGwsCiAgICAgICJhbW91bnQiOiAyLjI0LAogICAgICAiYXV0aG9yaXplZF9kYXRlIjogIjIwMjMtMTItMjUiLAogICAgICAiYXV0aG9yaXplZF9kYXRldGltZSI6IG51bGwsCiAgICAgICJjYXRlZ29yeSI6IFsKICAgICAgICAiU2hvcHMiLAogICAgICAgICJDbG90aGluZyBhbmQgQWNjZXNzb3JpZXMiCiAgICAgIF0sCiAgICAgICJjYXRlZ29yeV9pZCI6ICIxOTAxMjAwMCIsCiAgICAgICJjaGVja19udW1iZXIiOiBudWxsLAogICAgICAiY291bnRlcnBhcnRpZXMiOiBbCiAgICAgICAgewogICAgICAgICAgImNvbmZpZGVuY2VfbGV2ZWwiOiAiVkVSWV9ISUdIIiwKICAgICAgICAgICJlbnRpdHlfaWQiOiAiQkR2V0V6WnJNRUQxdmVaWGtwNWFEMjBFcjhaQUtud1ZKRG1kMSIsCiAgICAgICAgICAibG9nb191cmwiOiAiaHR0cHM6Ly9wbGFpZC1tZXJjaGFudC1sb2dvcy5wbGFpZC5jb20vcm9zc19zdG9yZXNfODQxLnBuZyIsCiAgICAgICAgICAibmFtZSI6ICJSb3NzIFN0b3JlcyIsCiAgICAgICAgICAicGhvbmVfbnVtYmVyIjogbnVsbCwKICAgICAgICAgICJ0eXBlIjogIm1lcmNoYW50IiwKICAgICAgICAgICJ3ZWJzaXRlIjogInJvc3NzdG9yZXMuY29tIgogICAgICAgIH0KICAgICAgXSwKICAgICAgImRhdGUiOiAiMjAyMy0xMi0yNSIsCiAgICAgICJkYXRldGltZSI6IG51bGwsCiAgICAgICJpc29fY3VycmVuY3lfY29kZSI6ICJVU0QiLAogICAgICAibG9jYXRpb24iOiB7CiAgICAgICAgImFkZHJlc3MiOiAiNjQwIENvbmNhciBEciIsCiAgICAgICAgImNpdHkiOiAiU2FuIE1hdGVvIiwKICAgICAgICAiY291bnRyeSI6IG51bGwsCiAgICAgICAgImxhdCI6IDM3LjU1MzU1NSwKICAgICAgICAibG9uIjogLTEyMi4zMDQ3NTYsCiAgICAgICAgInBvc3RhbF9jb2RlIjogIjk0NDAyIiwKICAgICAgICAicmVnaW9uIjogIkNBIiwKICAgICAgICAic3RvcmVfbnVtYmVyIjogIjAxMjMiCiAgICAgIH0sCiAgICAgICJsb2dvX3VybCI6ICJodHRwczovL3BsYWlkLW1lcmNoYW50LWxvZ29zLnBsYWlkLmNvbS9yb3NzX3N0b3Jlc184NDEucG5nIiwKICAgICAgIm1lcmNoYW50X2VudGl0eV9pZCI6ICJCRHZXRXpack1FRDF2ZVpYa3A1YUQyMEVyOFpBS253VkpEbWQxIiwKICAgICAgIm1lcmNoYW50X25hbWUiOiAiUm9zcyBTdG9yZXMiLAogICAgICAibmFtZSI6ICJSb3NzIERyZXNzIGZvciBMZXNzIiwKICAgICAgIm9yaWdpbmFsX2Rlc2NyaXB0aW9uIjogIlJPU1MgU1RPUkVTICMwMTIzIiwKICAgICAgInBheW1lbnRfY2hhbm5lbCI6ICJpbiBzdG9yZSIsCiAgICAgICJwYXltZW50X21ldGEiOiB7CiAgICAgICAgImJ5X29yZGVyX29mIjogbnVsbCwKICAgICAgICAicGF5ZWUiOiBudWxsLAogICAgICAgICJwYXllciI6IG51bGwsCiAgICAgICAgInBheW1lbnRfbWV0aG9kIjogbnVsbCwKICAgICAgICAicGF5bWVudF9wcm9jZXNzb3IiOiBudWxsLAogICAgICAgICJwcGRfaWQiOiBudWxsLAogICAgICAgICJyZWFzb24iOiBudWxsLAogICAgICAgICJyZWZlcmVuY2VfbnVtYmVyIjogbnVsbAogICAgICB9LAogICAgICAicGVuZGluZyI6IGZhbHNlLAogICAgICAicGVuZGluZ190cmFuc2FjdGlvbl9pZCI6IG51bGwsCiAgICAgICJwZXJzb25hbF9maW5hbmNlX2NhdGVnb3J5IjogewogICAgICAgICJjb25maWRlbmNlX2xldmVsIjogIlZFUllfSElHSCIsCiAgICAgICAgImRldGFpbGVkIjogIkdFTkVSQUxfTUVSQ0hBTkRJU0VfQ0xPVEhJTkdfQU5EX0FDQ0VTU09SSUVTIiwKICAgICAgICAicHJpbWFyeSI6ICJHRU5FUkFMX01FUkNIQU5ESVNFIgogICAgICB9LAogICAgICAicGVyc29uYWxfZmluYW5jZV9jYXRlZ29yeV9pY29uX3VybCI6ICJodHRwczovL3BsYWlkLWNhdGVnb3J5LWljb25zLnBsYWlkLmNvbS9QRkNfR0VORVJBTF9NRVJDSEFORElTRS5wbmciLAogICAgICAidHJhbnNhY3Rpb25fY29kZSI6IG51bGwsCiAgICAgICJ0cmFuc2FjdGlvbl9pZCI6ICJOb2tQZDVnTmx6Zm9WMWJ5ekdrbHM3Sk1QNUczUTlzeTY1UTlaIiwKICAgICAgInRyYW5zYWN0aW9uX3R5cGUiOiAicGxhY2UiLAogICAgICAidW5vZmZpY2lhbF9jdXJyZW5jeV9jb2RlIjogbnVsbCwKICAgICAgIndlYnNpdGUiOiAicm9zc3N0b3Jlcy5jb20iCiAgICB9LAogICAgewogICAgICAiYWNjb3VudF9pZCI6ICJadmxCTDVlTVBRdG5YRFY2UXJSOXNSZU5WVnoxWEFpZWFnRFB6IiwKICAgICAgImFjY291bnRfb3duZXIiOiBudWxsLAogICAgICAiYW1vdW50IjogNC40OSwKICAgICAgImF1dGhvcml6ZWRfZGF0ZSI6ICIyMDIzLTEyLTI1IiwKICAgICAgImF1dGhvcml6ZWRfZGF0ZXRpbWUiOiBudWxsLAogICAgICAiY2F0ZWdvcnkiOiBbCiAgICAgICAgIlNlcnZpY2UiLAogICAgICAgICJTdWJzY3JpcHRpb24iCiAgICAgIF0sCiAgICAgICJjYXRlZ29yeV9pZCI6ICIxODA2MTAwMCIsCiAgICAgICJjaGVja19udW1iZXIiOiBudWxsLAogICAgICAiY291bnRlcnBhcnRpZXMiOiBbCiAgICAgICAgewogICAgICAgICAgImNvbmZpZGVuY2VfbGV2ZWwiOiAiVkVSWV9ISUdIIiwKICAgICAgICAgICJlbnRpdHlfaWQiOiAiWnpPMVY2Z0o4S2JPOTI2S3JOWU9OYlFxb2JYcGdqV25BMjhuUiIsCiAgICAgICAgICAibG9nb191cmwiOiAiaHR0cHM6Ly9wbGFpZC1tZXJjaGFudC1sb2dvcy5wbGFpZC5jb20vaHVsdV81MDQucG5nIiwKICAgICAgICAgICJuYW1lIjogIkh1bHUiLAogICAgICAgICAgInBob25lX251bWJlciI6IG51bGwsCiAgICAgICAgICAidHlwZSI6ICJtZXJjaGFudCIsCiAgICAgICAgICAid2Vic2l0ZSI6ICJodWx1LmNvbSIKICAgICAgICB9CiAgICAgIF0sCiAgICAgICJkYXRlIjogIjIwMjMtMTItMjUiLAogICAgICAiZGF0ZXRpbWUiOiBudWxsLAogICAgICAiaXNvX2N1cnJlbmN5X2NvZGUiOiAiVVNEIiwKICAgICAgImxvY2F0aW9uIjogewogICAgICAgICJhZGRyZXNzIjogbnVsbCwKICAgICAgICAiY2l0eSI6IG51bGwsCiAgICAgICAgImNvdW50cnkiOiBudWxsLAogICAgICAgICJsYXQiOiBudWxsLAogICAgICAgICJsb24iOiBudWxsLAogICAgICAgICJwb3N0YWxfY29kZSI6IG51bGwsCiAgICAgICAgInJlZ2lvbiI6IG51bGwsCiAgICAgICAgInN0b3JlX251bWJlciI6IG51bGwKICAgICAgfSwKICAgICAgImxvZ29fdXJsIjogImh0dHBzOi8vcGxhaWQtbWVyY2hhbnQtbG9nb3MucGxhaWQuY29tL2h1bHVfNTA0LnBuZyIsCiAgICAgICJtZXJjaGFudF9lbnRpdHlfaWQiOiAiWnpPMVY2Z0o4S2JPOTI2S3JOWU9OYlFxb2JYcGdqV25BMjhuUiIsCiAgICAgICJtZXJjaGFudF9uYW1lIjogIkh1bHUiLAogICAgICAibmFtZSI6ICJITFUqSHVsdSAwMTIzNDU2Nzg5MDEtVSBIVUxVLkNPTS9CSUxMQ0EiLAogICAgICAib3JpZ2luYWxfZGVzY3JpcHRpb24iOiAiSExVKkh1bHUgMDEyMzQ1Njc4OTAxLVUgSFVMVS5DT00vQklMTENBIiwKICAgICAgInBheW1lbnRfY2hhbm5lbCI6ICJvbmxpbmUiLAogICAgICAicGF5bWVudF9tZXRhIjogewogICAgICAgICJieV9vcmRlcl9vZiI6IG51bGwsCiAgICAgICAgInBheWVlIjogbnVsbCwKICAgICAgICAicGF5ZXIiOiBudWxsLAogICAgICAgICJwYXltZW50X21ldGhvZCI6IG51bGwsCiAgICAgICAgInBheW1lbnRfcHJvY2Vzc29yIjogbnVsbCwKICAgICAgICAicHBkX2lkIjogbnVsbCwKICAgICAgICAicmVhc29uIjogbnVsbCwKICAgICAgICAicmVmZXJlbmNlX251bWJlciI6IG51bGwKICAgICAgfSwKICAgICAgInBlbmRpbmciOiBmYWxzZSwKICAgICAgInBlbmRpbmdfdHJhbnNhY3Rpb25faWQiOiBudWxsLAogICAgICAicGVyc29uYWxfZmluYW5jZV9jYXRlZ29yeSI6IHsKICAgICAgICAiY29uZmlkZW5jZV9sZXZlbCI6ICJWRVJZX0hJR0giLAogICAgICAgICJkZXRhaWxlZCI6ICJFTlRFUlRBSU5NRU5UX1RWX0FORF9NT1ZJRVMiLAogICAgICAgICJwcmltYXJ5IjogIkVOVEVSVEFJTk1FTlQiCiAgICAgIH0sCiAgICAgICJwZXJzb25hbF9maW5hbmNlX2NhdGVnb3J5X2ljb25fdXJsIjogImh0dHBzOi8vcGxhaWQtY2F0ZWdvcnktaWNvbnMucGxhaWQuY29tL1BGQ19FTlRFUlRBSU5NRU5ULnBuZyIsCiAgICAgICJ0cmFuc2FjdGlvbl9jb2RlIjogbnVsbCwKICAgICAgInRyYW5zYWN0aW9uX2lkIjogIlA4bjc0NW9XSzNjblhLeVczMXg5c2xEQjc1eFpFZWlvNldBZ2EiLAogICAgICAidHJhbnNhY3Rpb25fdHlwZSI6ICJwbGFjZSIsCiAgICAgICJ1bm9mZmljaWFsX2N1cnJlbmN5X2NvZGUiOiBudWxsLAogICAgICAid2Vic2l0ZSI6ICJodWx1LmNvbSIKICAgIH0sCiAgICB7CiAgICAgICJhY2NvdW50X2lkIjogIlp2bEJMNWVNUFF0blhEVjZRclI5c1JlTlZWejFYQWllYWdEUHoiLAogICAgICAiYWNjb3VudF9vd25lciI6IG51bGwsCiAgICAgICJhbW91bnQiOiAyOS44LAogICAgICAiYXV0aG9yaXplZF9kYXRlIjogIjIwMjMtMTItMjUiLAogICAgICAiYXV0aG9yaXplZF9kYXRldGltZSI6IG51bGwsCiAgICAgICJjYXRlZ29yeSI6IFsKICAgICAgICAiVHJhdmVsIiwKICAgICAgICAiR2FzIFN0YXRpb25zIgogICAgICBdLAogICAgICAiY2F0ZWdvcnlfaWQiOiAiMjIwMDkwMDAiLAogICAgICAiY2hlY2tfbnVtYmVyIjogbnVsbCwKICAgICAgImNvdW50ZXJwYXJ0aWVzIjogWwogICAgICAgIHsKICAgICAgICAgICJjb25maWRlbmNlX2xldmVsIjogIlZFUllfSElHSCIsCiAgICAgICAgICAiZW50aXR5X2lkIjogIjZwbzBnZGUxTFhlTndLMllvQThhanJEb3BwM1ZYVzVwdzlxMlIiLAogICAgICAgICAgImxvZ29fdXJsIjogImh0dHBzOi8vcGxhaWQtbWVyY2hhbnQtbG9nb3MucGxhaWQuY29tL2tyb2dlcl9mdWVsXzU1Ni5wbmciLAogICAgICAgICAgIm5hbWUiOiAiS3JvZ2VyIEZ1ZWwiLAogICAgICAgICAgInBob25lX251bWJlciI6IG51bGwsCiAgICAgICAgICAidHlwZSI6ICJtZXJjaGFudCIsCiAgICAgICAgICAid2Vic2l0ZSI6ICJrcm9nZXIuY29tZnVlbCIKICAgICAgICB9CiAgICAgIF0sCiAgICAgICJkYXRlIjogIjIwMjMtMTItMjUiLAogICAgICAiZGF0ZXRpbWUiOiBudWxsLAogICAgICAiaXNvX2N1cnJlbmN5X2NvZGUiOiAiVVNEIiwKICAgICAgImxvY2F0aW9uIjogewogICAgICAgICJhZGRyZXNzIjogbnVsbCwKICAgICAgICAiY2l0eSI6IG51bGwsCiAgICAgICAgImNvdW50cnkiOiBudWxsLAogICAgICAgICJsYXQiOiBudWxsLAogICAgICAgICJsb24iOiBudWxsLAogICAgICAgICJwb3N0YWxfY29kZSI6IG51bGwsCiAgICAgICAgInJlZ2lvbiI6IG51bGwsCiAgICAgICAgInN0b3JlX251bWJlciI6IG51bGwKICAgICAgfSwKICAgICAgImxvZ29fdXJsIjogImh0dHBzOi8vcGxhaWQtbWVyY2hhbnQtbG9nb3MucGxhaWQuY29tL2tyb2dlcl9mdWVsXzU1Ni5wbmciLAogICAgICAibWVyY2hhbnRfZW50aXR5X2lkIjogIjZwbzBnZGUxTFhlTndLMllvQThhanJEb3BwM1ZYVzVwdzlxMlIiLAogICAgICAibWVyY2hhbnRfbmFtZSI6ICJLcm9nZXIgRnVlbCIsCiAgICAgICJuYW1lIjogIktyb2dlciIsCiAgICAgICJvcmlnaW5hbF9kZXNjcmlwdGlvbiI6ICJLUk9HRVIgRlVFTCAwMTIzIiwKICAgICAgInBheW1lbnRfY2hhbm5lbCI6ICJpbiBzdG9yZSIsCiAgICAgICJwYXltZW50X21ldGEiOiB7CiAgICAgICAgImJ5X29yZGVyX29mIjogbnVsbCwKICAgICAgICAicGF5ZWUiOiBudWxsLAogICAgICAgICJwYXllciI6IG51bGwsCiAgICAgICAgInBheW1lbnRfbWV0aG9kIjogbnVsbCwKICAgICAgICAicGF5bWVudF9wcm9jZXNzb3IiOiBudWxsLAogICAgICAgICJwcGRfaWQiOiBudWxsLAogICAgICAgICJyZWFzb24iOiBudWxsLAogICAgICAgICJyZWZlcmVuY2VfbnVtYmVyIjogbnVsbAogICAgICB9LAogICAgICAicGVuZGluZyI6IGZhbHNlLAogICAgICAicGVuZGluZ190cmFuc2FjdGlvbl9pZCI6IG51bGwsCiAgICAgICJwZXJzb25hbF9maW5hbmNlX2NhdGVnb3J5IjogewogICAgICAgICJjb25maWRlbmNlX2xldmVsIjogIlZFUllfSElHSCIsCiAgICAgICAgImRldGFpbGVkIjogIlRSQU5TUE9SVEFUSU9OX0dBUyIsCiAgICAgICAgInByaW1hcnkiOiAiVFJBTlNQT1JUQVRJT04iCiAgICAgIH0sCiAgICAgICJwZXJzb25hbF9maW5hbmNlX2NhdGVnb3J5X2ljb25fdXJsIjogImh0dHBzOi8vcGxhaWQtY2F0ZWdvcnktaWNvbnMucGxhaWQuY29tL1BGQ19UUkFOU1BPUlRBVElPTi5wbmciLAogICAgICAidHJhbnNhY3Rpb25fY29kZSI6IG51bGwsCiAgICAgICJ0cmFuc2FjdGlvbl9pZCI6ICJqalE3ZGxQNUd5Q2JOYXZ3N3J6cHR5NE1RbWs5b3BpNldMYURlIiwKICAgICAgInRyYW5zYWN0aW9uX3R5cGUiOiAicGxhY2UiLAogICAgICAidW5vZmZpY2lhbF9jdXJyZW5jeV9jb2RlIjogbnVsbCwKICAgICAgIndlYnNpdGUiOiAia3JvZ2VyLmNvbWZ1ZWwiCiAgICB9LAogICAgewogICAgICAiYWNjb3VudF9pZCI6ICJadmxCTDVlTVBRdG5YRFY2UXJSOXNSZU5WVnoxWEFpZWFnRFB6IiwKICAgICAgImFjY291bnRfb3duZXIiOiBudWxsLAogICAgICAiYW1vdW50IjogNy4xOSwKICAgICAgImF1dGhvcml6ZWRfZGF0ZSI6ICIyMDIzLTEyLTI1IiwKICAgICAgImF1dGhvcml6ZWRfZGF0ZXRpbWUiOiBudWxsLAogICAgICAiY2F0ZWdvcnkiOiBbCiAgICAgICAgIlNob3BzIiwKICAgICAgICAiRm9vZCBhbmQgQmV2ZXJhZ2UgU3RvcmUiCiAgICAgIF0sCiAgICAgICJjYXRlZ29yeV9pZCI6ICIxOTAyNTAwMCIsCiAgICAgICJjaGVja19udW1iZXIiOiBudWxsLAogICAgICAiY291bnRlcnBhcnRpZXMiOiBbXSwKICAgICAgImRhdGUiOiAiMjAyMy0xMi0yNSIsCiAgICAgICJkYXRldGltZSI6IG51bGwsCiAgICAgICJpc29fY3VycmVuY3lfY29kZSI6ICJVU0QiLAogICAgICAibG9jYXRpb24iOiB7CiAgICAgICAgImFkZHJlc3MiOiBudWxsLAogICAgICAgICJjaXR5IjogbnVsbCwKICAgICAgICAiY291bnRyeSI6IG51bGwsCiAgICAgICAgImxhdCI6IG51bGwsCiAgICAgICAgImxvbiI6IG51bGwsCiAgICAgICAgInBvc3RhbF9jb2RlIjogbnVsbCwKICAgICAgICAicmVnaW9uIjogbnVsbCwKICAgICAgICAic3RvcmVfbnVtYmVyIjogbnVsbAogICAgICB9LAogICAgICAibG9nb191cmwiOiBudWxsLAogICAgICAibWVyY2hhbnRfZW50aXR5X2lkIjogbnVsbCwKICAgICAgIm1lcmNoYW50X25hbWUiOiBudWxsLAogICAgICAibmFtZSI6ICJNQUlTT04gS0FZU0VSICoiLAogICAgICAib3JpZ2luYWxfZGVzY3JpcHRpb24iOiAiTUFJU09OIEtBWVNFUiAqIiwKICAgICAgInBheW1lbnRfY2hhbm5lbCI6ICJpbiBzdG9yZSIsCiAgICAgICJwYXltZW50X21ldGEiOiB7CiAgICAgICAgImJ5X29yZGVyX29mIjogbnVsbCwKICAgICAgICAicGF5ZWUiOiBudWxsLAogICAgICAgICJwYXllciI6IG51bGwsCiAgICAgICAgInBheW1lbnRfbWV0aG9kIjogbnVsbCwKICAgICAgICAicGF5bWVudF9wcm9jZXNzb3IiOiBudWxsLAogICAgICAgICJwcGRfaWQiOiBudWxsLAogICAgICAgICJyZWFzb24iOiBudWxsLAogICAgICAgICJyZWZlcmVuY2VfbnVtYmVyIjogbnVsbAogICAgICB9LAogICAgICAicGVuZGluZyI6IGZhbHNlLAogICAgICAicGVuZGluZ190cmFuc2FjdGlvbl9pZCI6IG51bGwsCiAgICAgICJwZXJzb25hbF9maW5hbmNlX2NhdGVnb3J5IjogewogICAgICAgICJjb25maWRlbmNlX2xldmVsIjogIkxPVyIsCiAgICAgICAgImRldGFpbGVkIjogIkdFTkVSQUxfTUVSQ0hBTkRJU0VfT1RIRVJfR0VORVJBTF9NRVJDSEFORElTRSIsCiAgICAgICAgInByaW1hcnkiOiAiR0VORVJBTF9NRVJDSEFORElTRSIKICAgICAgfSwKICAgICAgInBlcnNvbmFsX2ZpbmFuY2VfY2F0ZWdvcnlfaWNvbl91cmwiOiAiaHR0cHM6Ly9wbGFpZC1jYXRlZ29yeS1pY29ucy5wbGFpZC5jb20vUEZDX0dFTkVSQUxfTUVSQ0hBTkRJU0UucG5nIiwKICAgICAgInRyYW5zYWN0aW9uX2NvZGUiOiBudWxsLAogICAgICAidHJhbnNhY3Rpb25faWQiOiAiNzZ6WGpFbGI0WnQ4Ukw0REF6TTlGOVp3ajhHVzZEQ2RKbnhlYSIsCiAgICAgICJ0cmFuc2FjdGlvbl90eXBlIjogInBsYWNlIiwKICAgICAgInVub2ZmaWNpYWxfY3VycmVuY3lfY29kZSI6IG51bGwsCiAgICAgICJ3ZWJzaXRlIjogbnVsbAogICAgfSwKICAgIHsKICAgICAgImFjY291bnRfaWQiOiAiWnZsQkw1ZU1QUXRuWERWNlFyUjlzUmVOVlZ6MVhBaWVhZ0RQeiIsCiAgICAgICJhY2NvdW50X293bmVyIjogbnVsbCwKICAgICAgImFtb3VudCI6IDgxLjM3LAogICAgICAiYXV0aG9yaXplZF9kYXRlIjogIjIwMjMtMTItMjUiLAogICAgICAiYXV0aG9yaXplZF9kYXRldGltZSI6IG51bGwsCiAgICAgICJjYXRlZ29yeSI6IFsKICAgICAgICAiU2hvcHMiLAogICAgICAgICJDbG90aGluZyBhbmQgQWNjZXNzb3JpZXMiLAogICAgICAgICJNZW4ncyBTdG9yZSIKICAgICAgXSwKICAgICAgImNhdGVnb3J5X2lkIjogIjE5MDEyMDA0IiwKICAgICAgImNoZWNrX251bWJlciI6IG51bGwsCiAgICAgICJjb3VudGVycGFydGllcyI6IFsKICAgICAgICB7CiAgICAgICAgICAiY29uZmlkZW5jZV9sZXZlbCI6ICJWRVJZX0hJR0giLAogICAgICAgICAgImVudGl0eV9pZCI6ICJxYTB2TkQ5OUI5RWc5TUpBNXk3S3llT0txNExNbnFXWDl2d3k0IiwKICAgICAgICAgICJsb2dvX3VybCI6ICJodHRwczovL3BsYWlkLW1lcmNoYW50LWxvZ29zLnBsYWlkLmNvbS9tZW5zX3dlYXJob3VzZV82MjcucG5nIiwKICAgICAgICAgICJuYW1lIjogIk1lbnMgV2VhcmhvdXNlIiwKICAgICAgICAgICJwaG9uZV9udW1iZXIiOiBudWxsLAogICAgICAgICAgInR5cGUiOiAibWVyY2hhbnQiLAogICAgICAgICAgIndlYnNpdGUiOiAibWVuc3dlYXJob3VzZS5jb20iCiAgICAgICAgfQogICAgICBdLAogICAgICAiZGF0ZSI6ICIyMDIzLTEyLTI3IiwKICAgICAgImRhdGV0aW1lIjogbnVsbCwKICAgICAgImlzb19jdXJyZW5jeV9jb2RlIjogIlVTRCIsCiAgICAgICJsb2NhdGlvbiI6IHsKICAgICAgICAiYWRkcmVzcyI6IG51bGwsCiAgICAgICAgImNpdHkiOiBudWxsLAogICAgICAgICJjb3VudHJ5IjogbnVsbCwKICAgICAgICAibGF0IjogbnVsbCwKICAgICAgICAibG9uIjogbnVsbCwKICAgICAgICAicG9zdGFsX2NvZGUiOiBudWxsLAogICAgICAgICJyZWdpb24iOiBudWxsLAogICAgICAgICJzdG9yZV9udW1iZXIiOiAiMDEyMyIKICAgICAgfSwKICAgICAgImxvZ29fdXJsIjogImh0dHBzOi8vcGxhaWQtbWVyY2hhbnQtbG9nb3MucGxhaWQuY29tL21lbnNfd2VhcmhvdXNlXzYyNy5wbmciLAogICAgICAibWVyY2hhbnRfZW50aXR5X2lkIjogInFhMHZORDk5QjlFZzlNSkE1eTdLeWVPS3E0TE1ucVdYOXZ3eTQiLAogICAgICAibWVyY2hhbnRfbmFtZSI6ICJNZW5zIFdlYXJob3VzZSIsCiAgICAgICJuYW1lIjogIk1lbidzIFdlYXJob3VzZSIsCiAgICAgICJvcmlnaW5hbF9kZXNjcmlwdGlvbiI6ICJUSEUgTUVOUyBXRUFSSE9VU0UgIzAxMjMiLAogICAgICAicGF5bWVudF9jaGFubmVsIjogImluIHN0b3JlIiwKICAgICAgInBheW1lbnRfbWV0YSI6IHsKICAgICAgICAiYnlfb3JkZXJfb2YiOiBudWxsLAogICAgICAgICJwYXllZSI6IG51bGwsCiAgICAgICAgInBheWVyIjogbnVsbCwKICAgICAgICAicGF5bWVudF9tZXRob2QiOiBudWxsLAogICAgICAgICJwYXltZW50X3Byb2Nlc3NvciI6IG51bGwsCiAgICAgICAgInBwZF9pZCI6IG51bGwsCiAgICAgICAgInJlYXNvbiI6IG51bGwsCiAgICAgICAgInJlZmVyZW5jZV9udW1iZXIiOiBudWxsCiAgICAgIH0sCiAgICAgICJwZW5kaW5nIjogZmFsc2UsCiAgICAgICJwZW5kaW5nX3RyYW5zYWN0aW9uX2lkIjogbnVsbCwKICAgICAgInBlcnNvbmFsX2ZpbmFuY2VfY2F0ZWdvcnkiOiB7CiAgICAgICAgImNvbmZpZGVuY2VfbGV2ZWwiOiAiSElHSCIsCiAgICAgICAgImRldGFpbGVkIjogIkdFTkVSQUxfTUVSQ0hBTkRJU0VfQ0xPVEhJTkdfQU5EX0FDQ0VTU09SSUVTIiwKICAgICAgICAicHJpbWFyeSI6ICJHRU5FUkFMX01FUkNIQU5ESVNFIgogICAgICB9LAogICAgICAicGVyc29uYWxfZmluYW5jZV9jYXRlZ29yeV9pY29uX3VybCI6ICJodHRwczovL3BsYWlkLWNhdGVnb3J5LWljb25zLnBsYWlkLmNvbS9QRkNfR0VORVJBTF9NRVJDSEFORElTRS5wbmciLAogICAgICAidHJhbnNhY3Rpb25fY29kZSI6IG51bGwsCiAgICAgICJ0cmFuc2FjdGlvbl9pZCI6ICJlZE53cjUxWGdBY29BUlZaUDY4dnNkUkd6cW9tOUJ1cjk1bXBLIiwKICAgICAgInRyYW5zYWN0aW9uX3R5cGUiOiAicGxhY2UiLAogICAgICAidW5vZmZpY2lhbF9jdXJyZW5jeV9jb2RlIjogbnVsbCwKICAgICAgIndlYnNpdGUiOiAibWVuc3dlYXJob3VzZS5jb20iCiAgICB9LAogICAgewogICAgICAiYWNjb3VudF9pZCI6ICJadmxCTDVlTVBRdG5YRFY2UXJSOXNSZU5WVnoxWEFpZWFnRFB6IiwKICAgICAgImFjY291bnRfb3duZXIiOiBudWxsLAogICAgICAiYW1vdW50IjogMTMuMzIsCiAgICAgICJhdXRob3JpemVkX2RhdGUiOiAiMjAyMy0xMi0yNSIsCiAgICAgICJhdXRob3JpemVkX2RhdGV0aW1lIjogbnVsbCwKICAgICAgImNhdGVnb3J5IjogWwogICAgICAgICJGb29kIGFuZCBEcmluayIsCiAgICAgICAgIlJlc3RhdXJhbnRzIgogICAgICBdLAogICAgICAiY2F0ZWdvcnlfaWQiOiAiMTMwMDUwMDAiLAogICAgICAiY2hlY2tfbnVtYmVyIjogbnVsbCwKICAgICAgImNvdW50ZXJwYXJ0aWVzIjogWwogICAgICAgIHsKICAgICAgICAgICJjb25maWRlbmNlX2xldmVsIjogIkxPVyIsCiAgICAgICAgICAiZW50aXR5X2lkIjogbnVsbCwKICAgICAgICAgICJsb2dvX3VybCI6IG51bGwsCiAgICAgICAgICAibmFtZSI6ICJUaGUgSGFsYWwgR3V5cyIsCiAgICAgICAgICAicGhvbmVfbnVtYmVyIjogbnVsbCwKICAgICAgICAgICJ0eXBlIjogIm1lcmNoYW50IiwKICAgICAgICAgICJ3ZWJzaXRlIjogbnVsbAogICAgICAgIH0KICAgICAgXSwKICAgICAgImRhdGUiOiAiMjAyMy0xMi0yNyIsCiAgICAgICJkYXRldGltZSI6IG51bGwsCiAgICAgICJpc29fY3VycmVuY3lfY29kZSI6ICJVU0QiLAogICAgICAibG9jYXRpb24iOiB7CiAgICAgICAgImFkZHJlc3MiOiBudWxsLAogICAgICAgICJjaXR5IjogbnVsbCwKICAgICAgICAiY291bnRyeSI6IG51bGwsCiAgICAgICAgImxhdCI6IG51bGwsCiAgICAgICAgImxvbiI6IG51bGwsCiAgICAgICAgInBvc3RhbF9jb2RlIjogbnVsbCwKICAgICAgICAicmVnaW9uIjogbnVsbCwKICAgICAgICAic3RvcmVfbnVtYmVyIjogbnVsbAogICAgICB9LAogICAgICAibG9nb191cmwiOiBudWxsLAogICAgICAibWVyY2hhbnRfZW50aXR5X2lkIjogbnVsbCwKICAgICAgIm1lcmNoYW50X25hbWUiOiAiVGhlIEhhbGFsIEd1eXMiLAogICAgICAibmFtZSI6ICJUSEUgSEFMQUwgR1VZUyIsCiAgICAgICJvcmlnaW5hbF9kZXNjcmlwdGlvbiI6ICJUSEUgSEFMQUwgR1VZUyIsCiAgICAgICJwYXltZW50X2NoYW5uZWwiOiAiaW4gc3RvcmUiLAogICAgICAicGF5bWVudF9tZXRhIjogewogICAgICAgICJieV9vcmRlcl9vZiI6IG51bGwsCiAgICAgICAgInBheWVlIjogbnVsbCwKICAgICAgICAicGF5ZXIiOiBudWxsLAogICAgICAgICJwYXltZW50X21ldGhvZCI6IG51bGwsCiAgICAgICAgInBheW1lbnRfcHJvY2Vzc29yIjogbnVsbCwKICAgICAgICAicHBkX2lkIjogbnVsbCwKICAgICAgICAicmVhc29uIjogbnVsbCwKICAgICAgICAicmVmZXJlbmNlX251bWJlciI6IG51bGwKICAgICAgfSwKICAgICAgInBlbmRpbmciOiBmYWxzZSwKICAgICAgInBlbmRpbmdfdHJhbnNhY3Rpb25faWQiOiBudWxsLAogICAgICAicGVyc29uYWxfZmluYW5jZV9jYXRlZ29yeSI6IHsKICAgICAgICAiY29uZmlkZW5jZV9sZXZlbCI6ICJMT1ciLAogICAgICAgICJkZXRhaWxlZCI6ICJGT09EX0FORF9EUklOS19HUk9DRVJJRVMiLAogICAgICAgICJwcmltYXJ5IjogIkZPT0RfQU5EX0RSSU5LIgogICAgICB9LAogICAgICAicGVyc29uYWxfZmluYW5jZV9jYXRlZ29yeV9pY29uX3VybCI6ICJodHRwczovL3BsYWlkLWNhdGVnb3J5LWljb25zLnBsYWlkLmNvbS9QRkNfRk9PRF9BTkRfRFJJTksucG5nIiwKICAgICAgInRyYW5zYWN0aW9uX2NvZGUiOiBudWxsLAogICAgICAidHJhbnNhY3Rpb25faWQiOiAiUUViWk41bU1yeFRuSjRYUnhiYTlzOXBhWkR5VlFHQ3dtN0R2ciIsCiAgICAgICJ0cmFuc2FjdGlvbl90eXBlIjogInBsYWNlIiwKICAgICAgInVub2ZmaWNpYWxfY3VycmVuY3lfY29kZSI6IG51bGwsCiAgICAgICJ3ZWJzaXRlIjogbnVsbAogICAgfSwKICAgIHsKICAgICAgImFjY291bnRfaWQiOiAiWnZsQkw1ZU1QUXRuWERWNlFyUjlzUmVOVlZ6MVhBaWVhZ0RQeiIsCiAgICAgICJhY2NvdW50X293bmVyIjogbnVsbCwKICAgICAgImFtb3VudCI6IDIwLjY2LAogICAgICAiYXV0aG9yaXplZF9kYXRlIjogIjIwMjMtMTItMjUiLAogICAgICAiYXV0aG9yaXplZF9kYXRldGltZSI6IG51bGwsCiAgICAgICJjYXRlZ29yeSI6IFsKICAgICAgICAiRm9vZCBhbmQgRHJpbmsiLAogICAgICAgICJSZXN0YXVyYW50cyIKICAgICAgXSwKICAgICAgImNhdGVnb3J5X2lkIjogIjEzMDA1MDAwIiwKICAgICAgImNoZWNrX251bWJlciI6IG51bGwsCiAgICAgICJjb3VudGVycGFydGllcyI6IFsKICAgICAgICB7CiAgICAgICAgICAiY29uZmlkZW5jZV9sZXZlbCI6ICJMT1ciLAogICAgICAgICAgImVudGl0eV9pZCI6IG51bGwsCiAgICAgICAgICAibG9nb191cmwiOiBudWxsLAogICAgICAgICAgIm5hbWUiOiAiVHJ1ZSBGb29kIEtpdGNoZW4iLAogICAgICAgICAgInBob25lX251bWJlciI6IG51bGwsCiAgICAgICAgICAidHlwZSI6ICJtZXJjaGFudCIsCiAgICAgICAgICAid2Vic2l0ZSI6IG51bGwKICAgICAgICB9CiAgICAgIF0sCiAgICAgICJkYXRlIjogIjIwMjMtMTItMjYiLAogICAgICAiZGF0ZXRpbWUiOiBudWxsLAogICAgICAiaXNvX2N1cnJlbmN5X2NvZGUiOiAiVVNEIiwKICAgICAgImxvY2F0aW9uIjogewogICAgICAgICJhZGRyZXNzIjogbnVsbCwKICAgICAgICAiY2l0eSI6IG51bGwsCiAgICAgICAgImNvdW50cnkiOiBudWxsLAogICAgICAgICJsYXQiOiBudWxsLAogICAgICAgICJsb24iOiBudWxsLAogICAgICAgICJwb3N0YWxfY29kZSI6IG51bGwsCiAgICAgICAgInJlZ2lvbiI6IG51bGwsCiAgICAgICAgInN0b3JlX251bWJlciI6ICIwMTIzIgogICAgICB9LAogICAgICAibG9nb191cmwiOiBudWxsLAogICAgICAibWVyY2hhbnRfZW50aXR5X2lkIjogbnVsbCwKICAgICAgIm1lcmNoYW50X25hbWUiOiAiVHJ1ZSBGb29kIEtpdGNoZW4iLAogICAgICAibmFtZSI6ICJUUlVFIEZPT0QgS0lUQ0hFTiAjMDEyMyIsCiAgICAgICJvcmlnaW5hbF9kZXNjcmlwdGlvbiI6ICJUUlVFIEZPT0QgS0lUQ0hFTiAjMDEyMyIsCiAgICAgICJwYXltZW50X2NoYW5uZWwiOiAiaW4gc3RvcmUiLAogICAgICAicGF5bWVudF9tZXRhIjogewogICAgICAgICJieV9vcmRlcl9vZiI6IG51bGwsCiAgICAgICAgInBheWVlIjogbnVsbCwKICAgICAgICAicGF5ZXIiOiBudWxsLAogICAgICAgICJwYXltZW50X21ldGhvZCI6IG51bGwsCiAgICAgICAgInBheW1lbnRfcHJvY2Vzc29yIjogbnVsbCwKICAgICAgICAicHBkX2lkIjogbnVsbCwKICAgICAgICAicmVhc29uIjogbnVsbCwKICAgICAgICAicmVmZXJlbmNlX251bWJlciI6IG51bGwKICAgICAgfSwKICAgICAgInBlbmRpbmciOiBmYWxzZSwKICAgICAgInBlbmRpbmdfdHJhbnNhY3Rpb25faWQiOiBudWxsLAogICAgICAicGVyc29uYWxfZmluYW5jZV9jYXRlZ29yeSI6IHsKICAgICAgICAiY29uZmlkZW5jZV9sZXZlbCI6ICJMT1ciLAogICAgICAgICJkZXRhaWxlZCI6ICJGT09EX0FORF9EUklOS19SRVNUQVVSQU5UIiwKICAgICAgICAicHJpbWFyeSI6ICJGT09EX0FORF9EUklOSyIKICAgICAgfSwKICAgICAgInBlcnNvbmFsX2ZpbmFuY2VfY2F0ZWdvcnlfaWNvbl91cmwiOiAiaHR0cHM6Ly9wbGFpZC1jYXRlZ29yeS1pY29ucy5wbGFpZC5jb20vUEZDX0ZPT0RfQU5EX0RSSU5LLnBuZyIsCiAgICAgICJ0cmFuc2FjdGlvbl9jb2RlIjogbnVsbCwKICAgICAgInRyYW5zYWN0aW9uX2lkIjogIlp2bEJMNWVNUFF0blhEVjZRclI5c1JleDhwWmF5TWNlcVhHNDgiLAogICAgICAidHJhbnNhY3Rpb25fdHlwZSI6ICJwbGFjZSIsCiAgICAgICJ1bm9mZmljaWFsX2N1cnJlbmN5X2NvZGUiOiBudWxsLAogICAgICAid2Vic2l0ZSI6IG51bGwKICAgIH0sCiAgICB7CiAgICAgICJhY2NvdW50X2lkIjogIlp2bEJMNWVNUFF0blhEVjZRclI5c1JlTlZWejFYQWllYWdEUHoiLAogICAgICAiYWNjb3VudF9vd25lciI6IG51bGwsCiAgICAgICJhbW91bnQiOiAxMTYuNzcsCiAgICAgICJhdXRob3JpemVkX2RhdGUiOiAiMjAyMy0xMi0yNiIsCiAgICAgICJhdXRob3JpemVkX2RhdGV0aW1lIjogbnVsbCwKICAgICAgImNhdGVnb3J5IjogWwogICAgICAgICJTaG9wcyIKICAgICAgXSwKICAgICAgImNhdGVnb3J5X2lkIjogIjE5MDAwMDAwIiwKICAgICAgImNoZWNrX251bWJlciI6IG51bGwsCiAgICAgICJjb3VudGVycGFydGllcyI6IFtdLAogICAgICAiZGF0ZSI6ICIyMDIzLTEyLTI2IiwKICAgICAgImRhdGV0aW1lIjogbnVsbCwKICAgICAgImlzb19jdXJyZW5jeV9jb2RlIjogIlVTRCIsCiAgICAgICJsb2NhdGlvbiI6IHsKICAgICAgICAiYWRkcmVzcyI6IG51bGwsCiAgICAgICAgImNpdHkiOiBudWxsLAogICAgICAgICJjb3VudHJ5IjogbnVsbCwKICAgICAgICAibGF0IjogbnVsbCwKICAgICAgICAibG9uIjogbnVsbCwKICAgICAgICAicG9zdGFsX2NvZGUiOiBudWxsLAogICAgICAgICJyZWdpb24iOiBudWxsLAogICAgICAgICJzdG9yZV9udW1iZXIiOiBudWxsCiAgICAgIH0sCiAgICAgICJsb2dvX3VybCI6IG51bGwsCiAgICAgICJtZXJjaGFudF9lbnRpdHlfaWQiOiBudWxsLAogICAgICAibWVyY2hhbnRfbmFtZSI6IG51bGwsCiAgICAgICJuYW1lIjogIk9WUipPLkNPL09WRVJTVE9DSy5DT00iLAogICAgICAib3JpZ2luYWxfZGVzY3JpcHRpb24iOiAiT1ZSKk8uQ08vT1ZFUlNUT0NLLkNPTSIsCiAgICAgICJwYXltZW50X2NoYW5uZWwiOiAib25saW5lIiwKICAgICAgInBheW1lbnRfbWV0YSI6IHsKICAgICAgICAiYnlfb3JkZXJfb2YiOiBudWxsLAogICAgICAgICJwYXllZSI6IG51bGwsCiAgICAgICAgInBheWVyIjogbnVsbCwKICAgICAgICAicGF5bWVudF9tZXRob2QiOiBudWxsLAogICAgICAgICJwYXltZW50X3Byb2Nlc3NvciI6IG51bGwsCiAgICAgICAgInBwZF9pZCI6IG51bGwsCiAgICAgICAgInJlYXNvbiI6IG51bGwsCiAgICAgICAgInJlZmVyZW5jZV9udW1iZXIiOiBudWxsCiAgICAgIH0sCiAgICAgICJwZW5kaW5nIjogZmFsc2UsCiAgICAgICJwZW5kaW5nX3RyYW5zYWN0aW9uX2lkIjogbnVsbCwKICAgICAgInBlcnNvbmFsX2ZpbmFuY2VfY2F0ZWdvcnkiOiB7CiAgICAgICAgImNvbmZpZGVuY2VfbGV2ZWwiOiAiTE9XIiwKICAgICAgICAiZGV0YWlsZWQiOiAiR0VORVJBTF9NRVJDSEFORElTRV9PVEhFUl9HRU5FUkFMX01FUkNIQU5ESVNFIiwKICAgICAgICAicHJpbWFyeSI6ICJHRU5FUkFMX01FUkNIQU5ESVNFIgogICAgICB9LAogICAgICAicGVyc29uYWxfZmluYW5jZV9jYXRlZ29yeV9pY29uX3VybCI6ICJodHRwczovL3BsYWlkLWNhdGVnb3J5LWljb25zLnBsYWlkLmNvbS9QRkNfR0VORVJBTF9NRVJDSEFORElTRS5wbmciLAogICAgICAidHJhbnNhY3Rpb25fY29kZSI6IG51bGwsCiAgICAgICJ0cmFuc2FjdGlvbl9pZCI6ICJNcFdQeDVvNHlyY3BadndRcmRiTXV3WEpnOEV6ZTNmTDZQMXE5IiwKICAgICAgInRyYW5zYWN0aW9uX3R5cGUiOiAicGxhY2UiLAogICAgICAidW5vZmZpY2lhbF9jdXJyZW5jeV9jb2RlIjogbnVsbCwKICAgICAgIndlYnNpdGUiOiBudWxsCiAgICB9LAogICAgewogICAgICAiYWNjb3VudF9pZCI6ICJadmxCTDVlTVBRdG5YRFY2UXJSOXNSZU5WVnoxWEFpZWFnRFB6IiwKICAgICAgImFjY291bnRfb3duZXIiOiBudWxsLAogICAgICAiYW1vdW50IjogNS41NCwKICAgICAgImF1dGhvcml6ZWRfZGF0ZSI6ICIyMDIzLTEyLTI2IiwKICAgICAgImF1dGhvcml6ZWRfZGF0ZXRpbWUiOiBudWxsLAogICAgICAiY2F0ZWdvcnkiOiBbCiAgICAgICAgIkZvb2QgYW5kIERyaW5rIiwKICAgICAgICAiUmVzdGF1cmFudHMiCiAgICAgIF0sCiAgICAgICJjYXRlZ29yeV9pZCI6ICIxMzAwNTAwMCIsCiAgICAgICJjaGVja19udW1iZXIiOiBudWxsLAogICAgICAiY291bnRlcnBhcnRpZXMiOiBbCiAgICAgICAgewogICAgICAgICAgImNvbmZpZGVuY2VfbGV2ZWwiOiAiVkVSWV9ISUdIIiwKICAgICAgICAgICJlbnRpdHlfaWQiOiAiMHk4MWQ5dmVOV2szeUw3cXFvUnFRRTNMZzNyMTA2MnpWQVhLTSIsCiAgICAgICAgICAibG9nb191cmwiOiAiaHR0cHM6Ly9wbGFpZC1tZXJjaGFudC1sb2dvcy5wbGFpZC5jb20vcG9wZXllc183NjgucG5nIiwKICAgICAgICAgICJuYW1lIjogIlBvcGV5ZXMiLAogICAgICAgICAgInBob25lX251bWJlciI6IG51bGwsCiAgICAgICAgICAidHlwZSI6ICJtZXJjaGFudCIsCiAgICAgICAgICAid2Vic2l0ZSI6ICJwb3BleWVzLmNvbSIKICAgICAgICB9CiAgICAgIF0sCiAgICAgICJkYXRlIjogIjIwMjMtMTItMjgiLAogICAgICAiZGF0ZXRpbWUiOiBudWxsLAogICAgICAiaXNvX2N1cnJlbmN5X2NvZGUiOiAiVVNEIiwKICAgICAgImxvY2F0aW9uIjogewogICAgICAgICJhZGRyZXNzIjogbnVsbCwKICAgICAgICAiY2l0eSI6IG51bGwsCiAgICAgICAgImNvdW50cnkiOiBudWxsLAogICAgICAgICJsYXQiOiBudWxsLAogICAgICAgICJsb24iOiBudWxsLAogICAgICAgICJwb3N0YWxfY29kZSI6IG51bGwsCiAgICAgICAgInJlZ2lvbiI6IG51bGwsCiAgICAgICAgInN0b3JlX251bWJlciI6IG51bGwKICAgICAgfSwKICAgICAgImxvZ29fdXJsIjogImh0dHBzOi8vcGxhaWQtbWVyY2hhbnQtbG9nb3MucGxhaWQuY29tL3BvcGV5ZXNfNzY4LnBuZyIsCiAgICAgICJtZXJjaGFudF9lbnRpdHlfaWQiOiAiMHk4MWQ5dmVOV2szeUw3cXFvUnFRRTNMZzNyMTA2MnpWQVhLTSIsCiAgICAgICJtZXJjaGFudF9uYW1lIjogIlBvcGV5ZXMiLAogICAgICAibmFtZSI6ICJQb3BleWVzIiwKICAgICAgIm9yaWdpbmFsX2Rlc2NyaXB0aW9uIjogIlBvcGV5ZXMgTG91aXNpYW5hIEtpdGNoZW4iLAogICAgICAicGF5bWVudF9jaGFubmVsIjogImluIHN0b3JlIiwKICAgICAgInBheW1lbnRfbWV0YSI6IHsKICAgICAgICAiYnlfb3JkZXJfb2YiOiBudWxsLAogICAgICAgICJwYXllZSI6IG51bGwsCiAgICAgICAgInBheWVyIjogbnVsbCwKICAgICAgICAicGF5bWVudF9tZXRob2QiOiBudWxsLAogICAgICAgICJwYXltZW50X3Byb2Nlc3NvciI6IG51bGwsCiAgICAgICAgInBwZF9pZCI6IG51bGwsCiAgICAgICAgInJlYXNvbiI6IG51bGwsCiAgICAgICAgInJlZmVyZW5jZV9udW1iZXIiOiBudWxsCiAgICAgIH0sCiAgICAgICJwZW5kaW5nIjogZmFsc2UsCiAgICAgICJwZW5kaW5nX3RyYW5zYWN0aW9uX2lkIjogbnVsbCwKICAgICAgInBlcnNvbmFsX2ZpbmFuY2VfY2F0ZWdvcnkiOiB7CiAgICAgICAgImNvbmZpZGVuY2VfbGV2ZWwiOiAiVkVSWV9ISUdIIiwKICAgICAgICAiZGV0YWlsZWQiOiAiRk9PRF9BTkRfRFJJTktfRkFTVF9GT09EIiwKICAgICAgICAicHJpbWFyeSI6ICJGT09EX0FORF9EUklOSyIKICAgICAgfSwKICAgICAgInBlcnNvbmFsX2ZpbmFuY2VfY2F0ZWdvcnlfaWNvbl91cmwiOiAiaHR0cHM6Ly9wbGFpZC1jYXRlZ29yeS1pY29ucy5wbGFpZC5jb20vUEZDX0ZPT0RfQU5EX0RSSU5LLnBuZyIsCiAgICAgICJ0cmFuc2FjdGlvbl9jb2RlIjogbnVsbCwKICAgICAgInRyYW5zYWN0aW9uX2lkIjogIjFiWFd4MW1Wek5jUXZ5ekVvMzRKVFhWbWVnd3g5NHRwamVyQnAiLAogICAgICAidHJhbnNhY3Rpb25fdHlwZSI6ICJwbGFjZSIsCiAgICAgICJ1bm9mZmljaWFsX2N1cnJlbmN5X2NvZGUiOiBudWxsLAogICAgICAid2Vic2l0ZSI6ICJwb3BleWVzLmNvbSIKICAgIH0sCiAgICB7CiAgICAgICJhY2NvdW50X2lkIjogIlp2bEJMNWVNUFF0blhEVjZRclI5c1JlTlZWejFYQWllYWdEUHoiLAogICAgICAiYWNjb3VudF9vd25lciI6IG51bGwsCiAgICAgICJhbW91bnQiOiAxNy4yNSwKICAgICAgImF1dGhvcml6ZWRfZGF0ZSI6ICIyMDIzLTEyLTI3IiwKICAgICAgImF1dGhvcml6ZWRfZGF0ZXRpbWUiOiBudWxsLAogICAgICAiY2F0ZWdvcnkiOiBbCiAgICAgICAgIlNlcnZpY2UiLAogICAgICAgICJGb29kIGFuZCBCZXZlcmFnZSIKICAgICAgXSwKICAgICAgImNhdGVnb3J5X2lkIjogIjE4MDIxMDAwIiwKICAgICAgImNoZWNrX251bWJlciI6IG51bGwsCiAgICAgICJjb3VudGVycGFydGllcyI6IFsKICAgICAgICB7CiAgICAgICAgICAiY29uZmlkZW5jZV9sZXZlbCI6ICJWRVJZX0hJR0giLAogICAgICAgICAgImVudGl0eV9pZCI6ICJ2cnZOcjRZMUpBZDZnYjUzYk5kOUxZM0J6ZEVibmJ2Z1FWa3pYIiwKICAgICAgICAgICJsb2dvX3VybCI6ICJodHRwczovL3BsYWlkLWNvdW50ZXJwYXJ0eS1sb2dvcy5wbGFpZC5jb20vc2tpcHRoZWRpc2hlc18yMDUucG5nIiwKICAgICAgICAgICJuYW1lIjogIlNraXBUaGVEaXNoZXMiLAogICAgICAgICAgInBob25lX251bWJlciI6IG51bGwsCiAgICAgICAgICAidHlwZSI6ICJtYXJrZXRwbGFjZSIsCiAgICAgICAgICAid2Vic2l0ZSI6ICJza2lwdGhlZGlzaGVzLmNvbSIKICAgICAgICB9CiAgICAgIF0sCiAgICAgICJkYXRlIjogIjIwMjMtMTItMjkiLAogICAgICAiZGF0ZXRpbWUiOiBudWxsLAogICAgICAiaXNvX2N1cnJlbmN5X2NvZGUiOiAiVVNEIiwKICAgICAgImxvY2F0aW9uIjogewogICAgICAgICJhZGRyZXNzIjogbnVsbCwKICAgICAgICAiY2l0eSI6IG51bGwsCiAgICAgICAgImNvdW50cnkiOiBudWxsLAogICAgICAgICJsYXQiOiBudWxsLAogICAgICAgICJsb24iOiBudWxsLAogICAgICAgICJwb3N0YWxfY29kZSI6IG51bGwsCiAgICAgICAgInJlZ2lvbiI6IG51bGwsCiAgICAgICAgInN0b3JlX251bWJlciI6IG51bGwKICAgICAgfSwKICAgICAgImxvZ29fdXJsIjogbnVsbCwKICAgICAgIm1lcmNoYW50X2VudGl0eV9pZCI6IG51bGwsCiAgICAgICJtZXJjaGFudF9uYW1lIjogIlNraXBUaGVEaXNoZXMiLAogICAgICAibmFtZSI6ICJTS0lQVEhFRElTSEVTLkNPTSBXSU5OSVBFRyBNQiIsCiAgICAgICJvcmlnaW5hbF9kZXNjcmlwdGlvbiI6ICJTS0lQVEhFRElTSEVTLkNPTSBXSU5OSVBFRyBNQiIsCiAgICAgICJwYXltZW50X2NoYW5uZWwiOiAib25saW5lIiwKICAgICAgInBheW1lbnRfbWV0YSI6IHsKICAgICAgICAiYnlfb3JkZXJfb2YiOiBudWxsLAogICAgICAgICJwYXllZSI6IG51bGwsCiAgICAgICAgInBheWVyIjogbnVsbCwKICAgICAgICAicGF5bWVudF9tZXRob2QiOiBudWxsLAogICAgICAgICJwYXltZW50X3Byb2Nlc3NvciI6IG51bGwsCiAgICAgICAgInBwZF9pZCI6IG51bGwsCiAgICAgICAgInJlYXNvbiI6IG51bGwsCiAgICAgICAgInJlZmVyZW5jZV9udW1iZXIiOiBudWxsCiAgICAgIH0sCiAgICAgICJwZW5kaW5nIjogZmFsc2UsCiAgICAgICJwZW5kaW5nX3RyYW5zYWN0aW9uX2lkIjogbnVsbCwKICAgICAgInBlcnNvbmFsX2ZpbmFuY2VfY2F0ZWdvcnkiOiB7CiAgICAgICAgImNvbmZpZGVuY2VfbGV2ZWwiOiAiTUVESVVNIiwKICAgICAgICAiZGV0YWlsZWQiOiAiRk9PRF9BTkRfRFJJTktfUkVTVEFVUkFOVCIsCiAgICAgICAgInByaW1hcnkiOiAiRk9PRF9BTkRfRFJJTksiCiAgICAgIH0sCiAgICAgICJwZXJzb25hbF9maW5hbmNlX2NhdGVnb3J5X2ljb25fdXJsIjogImh0dHBzOi8vcGxhaWQtY2F0ZWdvcnktaWNvbnMucGxhaWQuY29tL1BGQ19GT09EX0FORF9EUklOSy5wbmciLAogICAgICAidHJhbnNhY3Rpb25fY29kZSI6IG51bGwsCiAgICAgICJ0cmFuc2FjdGlvbl9pZCI6ICJMTEVQMzVvYW1LZkx3V0d6S2E4bUNrNkFwZ3gxVzd1a2pwRXdlIiwKICAgICAgInRyYW5zYWN0aW9uX3R5cGUiOiAicGxhY2UiLAogICAgICAidW5vZmZpY2lhbF9jdXJyZW5jeV9jb2RlIjogbnVsbCwKICAgICAgIndlYnNpdGUiOiBudWxsCiAgICB9LAogICAgewogICAgICAiYWNjb3VudF9pZCI6ICJadmxCTDVlTVBRdG5YRFY2UXJSOXNSZU5WVnoxWEFpZWFnRFB6IiwKICAgICAgImFjY291bnRfb3duZXIiOiBudWxsLAogICAgICAiYW1vdW50IjogMjkuMjEsCiAgICAgICJhdXRob3JpemVkX2RhdGUiOiAiMjAyMy0xMi0zMSIsCiAgICAgICJhdXRob3JpemVkX2RhdGV0aW1lIjogbnVsbCwKICAgICAgImNhdGVnb3J5IjogWwogICAgICAgICJTaG9wcyIsCiAgICAgICAgIkNvbXB1dGVycyBhbmQgRWxlY3Ryb25pY3MiLAogICAgICAgICJDYW1lcmFzIgogICAgICBdLAogICAgICAiY2F0ZWdvcnlfaWQiOiAiMTkwMTMwMDMiLAogICAgICAiY2hlY2tfbnVtYmVyIjogbnVsbCwKICAgICAgImNvdW50ZXJwYXJ0aWVzIjogWwogICAgICAgIHsKICAgICAgICAgICJjb25maWRlbmNlX2xldmVsIjogIkxPVyIsCiAgICAgICAgICAiZW50aXR5X2lkIjogbnVsbCwKICAgICAgICAgICJsb2dvX3VybCI6IG51bGwsCiAgICAgICAgICAibmFtZSI6ICJCXHUwMDI2aCBQaG90byIsCiAgICAgICAgICAicGhvbmVfbnVtYmVyIjogbnVsbCwKICAgICAgICAgICJ0eXBlIjogIm1lcmNoYW50IiwKICAgICAgICAgICJ3ZWJzaXRlIjogbnVsbAogICAgICAgIH0KICAgICAgXSwKICAgICAgImRhdGUiOiAiMjAyMy0xMi0zMSIsCiAgICAgICJkYXRldGltZSI6IG51bGwsCiAgICAgICJpc29fY3VycmVuY3lfY29kZSI6ICJVU0QiLAogICAgICAibG9jYXRpb24iOiB7CiAgICAgICAgImFkZHJlc3MiOiBudWxsLAogICAgICAgICJjaXR5IjogbnVsbCwKICAgICAgICAiY291bnRyeSI6IG51bGwsCiAgICAgICAgImxhdCI6IG51bGwsCiAgICAgICAgImxvbiI6IG51bGwsCiAgICAgICAgInBvc3RhbF9jb2RlIjogbnVsbCwKICAgICAgICAicmVnaW9uIjogIk5ZIiwKICAgICAgICAic3RvcmVfbnVtYmVyIjogbnVsbAogICAgICB9LAogICAgICAibG9nb191cmwiOiBudWxsLAogICAgICAibWVyY2hhbnRfZW50aXR5X2lkIjogbnVsbCwKICAgICAgIm1lcmNoYW50X25hbWUiOiAiQlx1MDAyNmggUGhvdG8iLAogICAgICAibmFtZSI6ICJCXHUwMDI2SCBQSE9UTyAwMTItMDEyMzQ1NiIsCiAgICAgICJvcmlnaW5hbF9kZXNjcmlwdGlvbiI6ICJCXHUwMDI2SCBQSE9UTyAwMTItMDEyLTAxMjMgMDEyLTAxMjM0NTYgTlkiLAogICAgICAicGF5bWVudF9jaGFubmVsIjogIm9ubGluZSIsCiAgICAgICJwYXltZW50X21ldGEiOiB7CiAgICAgICAgImJ5X29yZGVyX29mIjogbnVsbCwKICAgICAgICAicGF5ZWUiOiBudWxsLAogICAgICAgICJwYXllciI6IG51bGwsCiAgICAgICAgInBheW1lbnRfbWV0aG9kIjogbnVsbCwKICAgICAgICAicGF5bWVudF9wcm9jZXNzb3IiOiBudWxsLAogICAgICAgICJwcGRfaWQiOiBudWxsLAogICAgICAgICJyZWFzb24iOiBudWxsLAogICAgICAgICJyZWZlcmVuY2VfbnVtYmVyIjogbnVsbAogICAgICB9LAogICAgICAicGVuZGluZyI6IGZhbHNlLAogICAgICAicGVuZGluZ190cmFuc2FjdGlvbl9pZCI6IG51bGwsCiAgICAgICJwZXJzb25hbF9maW5hbmNlX2NhdGVnb3J5IjogewogICAgICAgICJjb25maWRlbmNlX2xldmVsIjogIkxPVyIsCiAgICAgICAgImRldGFpbGVkIjogIkdFTkVSQUxfTUVSQ0hBTkRJU0VfT1RIRVJfR0VORVJBTF9NRVJDSEFORElTRSIsCiAgICAgICAgInByaW1hcnkiOiAiR0VORVJBTF9NRVJDSEFORElTRSIKICAgICAgfSwKICAgICAgInBlcnNvbmFsX2ZpbmFuY2VfY2F0ZWdvcnlfaWNvbl91cmwiOiAiaHR0cHM6Ly9wbGFpZC1jYXRlZ29yeS1pY29ucy5wbGFpZC5jb20vUEZDX0dFTkVSQUxfTUVSQ0hBTkRJU0UucG5nIiwKICAgICAgInRyYW5zYWN0aW9uX2NvZGUiOiBudWxsLAogICAgICAidHJhbnNhY3Rpb25faWQiOiAicDFvQTczOURxS2hSNHk4WGsxWldjeEpyZExuNm9HdHBvVnphRSIsCiAgICAgICJ0cmFuc2FjdGlvbl90eXBlIjogInBsYWNlIiwKICAgICAgInVub2ZmaWNpYWxfY3VycmVuY3lfY29kZSI6IG51bGwsCiAgICAgICJ3ZWJzaXRlIjogbnVsbAogICAgfSwKICAgIHsKICAgICAgImFjY291bnRfaWQiOiAiWnZsQkw1ZU1QUXRuWERWNlFyUjlzUmVOVlZ6MVhBaWVhZ0RQeiIsCiAgICAgICJhY2NvdW50X293bmVyIjogbnVsbCwKICAgICAgImFtb3VudCI6IDM1Ljg0LAogICAgICAiYXV0aG9yaXplZF9kYXRlIjogIjIwMjMtMTItMzEiLAogICAgICAiYXV0aG9yaXplZF9kYXRldGltZSI6IG51bGwsCiAgICAgICJjYXRlZ29yeSI6IFsKICAgICAgICAiVHJhdmVsIiwKICAgICAgICAiR2FzIFN0YXRpb25zIgogICAgICBdLAogICAgICAiY2F0ZWdvcnlfaWQiOiAiMjIwMDkwMDAiLAogICAgICAiY2hlY2tfbnVtYmVyIjogbnVsbCwKICAgICAgImNvdW50ZXJwYXJ0aWVzIjogWwogICAgICAgIHsKICAgICAgICAgICJjb25maWRlbmNlX2xldmVsIjogIlZFUllfSElHSCIsCiAgICAgICAgICAiZW50aXR5X2lkIjogInBndkJ3dzM2Mk56N0w0TkJxM1FZNU03ZzZwazFtUkpXdjF3M1EiLAogICAgICAgICAgImxvZ29fdXJsIjogImh0dHBzOi8vcGxhaWQtbWVyY2hhbnQtbG9nb3MucGxhaWQuY29tL2t3aWtfdHJpcF81NjIucG5nIiwKICAgICAgICAgICJuYW1lIjogIkt3aWsgVHJpcCIsCiAgICAgICAgICAicGhvbmVfbnVtYmVyIjogbnVsbCwKICAgICAgICAgICJ0eXBlIjogIm1lcmNoYW50IiwKICAgICAgICAgICJ3ZWJzaXRlIjogImt3aWt0cmlwLmNvbSIKICAgICAgICB9CiAgICAgIF0sCiAgICAgICJkYXRlIjogIjIwMjQtMDEtMDUiLAogICAgICAiZGF0ZXRpbWUiOiBudWxsLAogICAgICAiaXNvX2N1cnJlbmN5X2NvZGUiOiAiVVNEIiwKICAgICAgImxvY2F0aW9uIjogewogICAgICAgICJhZGRyZXNzIjogbnVsbCwKICAgICAgICAiY2l0eSI6IG51bGwsCiAgICAgICAgImNvdW50cnkiOiBudWxsLAogICAgICAgICJsYXQiOiBudWxsLAogICAgICAgICJsb24iOiBudWxsLAogICAgICAgICJwb3N0YWxfY29kZSI6IG51bGwsCiAgICAgICAgInJlZ2lvbiI6IG51bGwsCiAgICAgICAgInN0b3JlX251bWJlciI6IG51bGwKICAgICAgfSwKICAgICAgImxvZ29fdXJsIjogImh0dHBzOi8vcGxhaWQtbWVyY2hhbnQtbG9nb3MucGxhaWQuY29tL2t3aWtfdHJpcF81NjIucG5nIiwKICAgICAgIm1lcmNoYW50X2VudGl0eV9pZCI6ICJwZ3ZCd3czNjJOejdMNE5CcTNRWTVNN2c2cGsxbVJKV3YxdzNRIiwKICAgICAgIm1lcmNoYW50X25hbWUiOiAiS3dpayBUcmlwIiwKICAgICAgIm5hbWUiOiAiS3dpayBUcmlwIiwKICAgICAgIm9yaWdpbmFsX2Rlc2NyaXB0aW9uIjogIkt3aWsgVHJpcCIsCiAgICAgICJwYXltZW50X2NoYW5uZWwiOiAiaW4gc3RvcmUiLAogICAgICAicGF5bWVudF9tZXRhIjogewogICAgICAgICJieV9vcmRlcl9vZiI6IG51bGwsCiAgICAgICAgInBheWVlIjogbnVsbCwKICAgICAgICAicGF5ZXIiOiBudWxsLAogICAgICAgICJwYXltZW50X21ldGhvZCI6IG51bGwsCiAgICAgICAgInBheW1lbnRfcHJvY2Vzc29yIjogbnVsbCwKICAgICAgICAicHBkX2lkIjogbnVsbCwKICAgICAgICAicmVhc29uIjogbnVsbCwKICAgICAgICAicmVmZXJlbmNlX251bWJlciI6IG51bGwKICAgICAgfSwKICAgICAgInBlbmRpbmciOiBmYWxzZSwKICAgICAgInBlbmRpbmdfdHJhbnNhY3Rpb25faWQiOiBudWxsLAogICAgICAicGVyc29uYWxfZmluYW5jZV9jYXRlZ29yeSI6IHsKICAgICAgICAiY29uZmlkZW5jZV9sZXZlbCI6ICJWRVJZX0hJR0giLAogICAgICAgICJkZXRhaWxlZCI6ICJUUkFOU1BPUlRBVElPTl9HQVMiLAogICAgICAgICJwcmltYXJ5IjogIlRSQU5TUE9SVEFUSU9OIgogICAgICB9LAogICAgICAicGVyc29uYWxfZmluYW5jZV9jYXRlZ29yeV9pY29uX3VybCI6ICJodHRwczovL3BsYWlkLWNhdGVnb3J5LWljb25zLnBsYWlkLmNvbS9QRkNfVFJBTlNQT1JUQVRJT04ucG5nIiwKICAgICAgInRyYW5zYWN0aW9uX2NvZGUiOiBudWxsLAogICAgICAidHJhbnNhY3Rpb25faWQiOiAib01weWpCOURscWhiNHY4Z2t5bjZ0YnpNcFp5NUczaW9xN2JFSyIsCiAgICAgICJ0cmFuc2FjdGlvbl90eXBlIjogInBsYWNlIiwKICAgICAgInVub2ZmaWNpYWxfY3VycmVuY3lfY29kZSI6IG51bGwsCiAgICAgICJ3ZWJzaXRlIjogImt3aWt0cmlwLmNvbSIKICAgIH0sCiAgICB7CiAgICAgICJhY2NvdW50X2lkIjogIlp2bEJMNWVNUFF0blhEVjZRclI5c1JlTlZWejFYQWllYWdEUHoiLAogICAgICAiYWNjb3VudF9vd25lciI6IG51bGwsCiAgICAgICJhbW91bnQiOiA4Ljc1LAogICAgICAiYXV0aG9yaXplZF9kYXRlIjogIjIwMjMtMTItMzEiLAogICAgICAiYXV0aG9yaXplZF9kYXRldGltZSI6IG51bGwsCiAgICAgICJjYXRlZ29yeSI6IFsKICAgICAgICAiUmVjcmVhdGlvbiIsCiAgICAgICAgIkFydHMgYW5kIEVudGVydGFpbm1lbnQiCiAgICAgIF0sCiAgICAgICJjYXRlZ29yeV9pZCI6ICIxNzAwMTAwMCIsCiAgICAgICJjaGVja19udW1iZXIiOiBudWxsLAogICAgICAiY291bnRlcnBhcnRpZXMiOiBbXSwKICAgICAgImRhdGUiOiAiMjAyNC0wMS0wNSIsCiAgICAgICJkYXRldGltZSI6IG51bGwsCiAgICAgICJpc29fY3VycmVuY3lfY29kZSI6ICJVU0QiLAogICAgICAibG9jYXRpb24iOiB7CiAgICAgICAgImFkZHJlc3MiOiBudWxsLAogICAgICAgICJjaXR5IjogbnVsbCwKICAgICAgICAiY291bnRyeSI6IG51bGwsCiAgICAgICAgImxhdCI6IG51bGwsCiAgICAgICAgImxvbiI6IG51bGwsCiAgICAgICAgInBvc3RhbF9jb2RlIjogbnVsbCwKICAgICAgICAicmVnaW9uIjogbnVsbCwKICAgICAgICAic3RvcmVfbnVtYmVyIjogbnVsbAogICAgICB9LAogICAgICAibG9nb191cmwiOiBudWxsLAogICAgICAibWVyY2hhbnRfZW50aXR5X2lkIjogbnVsbCwKICAgICAgIm1lcmNoYW50X25hbWUiOiBudWxsLAogICAgICAibmFtZSI6ICJVU0EqQU1JIE1VU0lDQk9YIiwKICAgICAgIm9yaWdpbmFsX2Rlc2NyaXB0aW9uIjogIlVTQSpBTUkgTVVTSUNCT1giLAogICAgICAicGF5bWVudF9jaGFubmVsIjogImluIHN0b3JlIiwKICAgICAgInBheW1lbnRfbWV0YSI6IHsKICAgICAgICAiYnlfb3JkZXJfb2YiOiBudWxsLAogICAgICAgICJwYXllZSI6IG51bGwsCiAgICAgICAgInBheWVyIjogbnVsbCwKICAgICAgICAicGF5bWVudF9tZXRob2QiOiBudWxsLAogICAgICAgICJwYXltZW50X3Byb2Nlc3NvciI6IG51bGwsCiAgICAgICAgInBwZF9pZCI6IG51bGwsCiAgICAgICAgInJlYXNvbiI6IG51bGwsCiAgICAgICAgInJlZmVyZW5jZV9udW1iZXIiOiBudWxsCiAgICAgIH0sCiAgICAgICJwZW5kaW5nIjogZmFsc2UsCiAgICAgICJwZW5kaW5nX3RyYW5zYWN0aW9uX2lkIjogbnVsbCwKICAgICAgInBlcnNvbmFsX2ZpbmFuY2VfY2F0ZWdvcnkiOiB7CiAgICAgICAgImNvbmZpZGVuY2VfbGV2ZWwiOiAiTE9XIiwKICAgICAgICAiZGV0YWlsZWQiOiAiR0VORVJBTF9NRVJDSEFORElTRV9PVEhFUl9HRU5FUkFMX01FUkNIQU5ESVNFIiwKICAgICAgICAicHJpbWFyeSI6ICJHRU5FUkFMX01FUkNIQU5ESVNFIgogICAgICB9LAogICAgICAicGVyc29uYWxfZmluYW5jZV9jYXRlZ29yeV9pY29uX3VybCI6ICJodHRwczovL3BsYWlkLWNhdGVnb3J5LWljb25zLnBsYWlkLmNvbS9QRkNfR0VORVJBTF9NRVJDSEFORElTRS5wbmciLAogICAgICAidHJhbnNhY3Rpb25fY29kZSI6IG51bGwsCiAgICAgICJ0cmFuc2FjdGlvbl9pZCI6ICJnNGo3QjVrWEVuQ3dkTFY3TnpRUEhWNTlkUkJQOFdjRThuNVdyIiwKICAgICAgInRyYW5zYWN0aW9uX3R5cGUiOiAicGxhY2UiLAogICAgICAidW5vZmZpY2lhbF9jdXJyZW5jeV9jb2RlIjogbnVsbCwKICAgICAgIndlYnNpdGUiOiBudWxsCiAgICB9LAogICAgewogICAgICAiYWNjb3VudF9pZCI6ICJadmxCTDVlTVBRdG5YRFY2UXJSOXNSZU5WVnoxWEFpZWFnRFB6IiwKICAgICAgImFjY291bnRfb3duZXIiOiBudWxsLAogICAgICAiYW1vdW50IjogMjEuNjUsCiAgICAgICJhdXRob3JpemVkX2RhdGUiOiAiMjAyMy0xMi0zMSIsCiAgICAgICJhdXRob3JpemVkX2RhdGV0aW1lIjogbnVsbCwKICAgICAgImNhdGVnb3J5IjogWwogICAgICAgICJUcmF2ZWwiLAogICAgICAgICJHYXMgU3RhdGlvbnMiCiAgICAgIF0sCiAgICAgICJjYXRlZ29yeV9pZCI6ICIyMjAwOTAwMCIsCiAgICAgICJjaGVja19udW1iZXIiOiBudWxsLAogICAgICAiY291bnRlcnBhcnRpZXMiOiBbCiAgICAgICAgewogICAgICAgICAgImNvbmZpZGVuY2VfbGV2ZWwiOiAiVkVSWV9ISUdIIiwKICAgICAgICAgICJlbnRpdHlfaWQiOiAiZE1xd09ENXFLdkp6MmJxYXkyYlhqT21nOGRRRE45QlZ6OFZOeiIsCiAgICAgICAgICAibG9nb191cmwiOiAiaHR0cHM6Ly9wbGFpZC1tZXJjaGFudC1sb2dvcy5wbGFpZC5jb20vZXh4b25tb2JpbF8zNDEucG5nIiwKICAgICAgICAgICJuYW1lIjogIkV4eG9uTW9iaWwiLAogICAgICAgICAgInBob25lX251bWJlciI6IG51bGwsCiAgICAgICAgICAidHlwZSI6ICJtZXJjaGFudCIsCiAgICAgICAgICAid2Vic2l0ZSI6ICJleHhvbm1vYmlsLmNvbSIKICAgICAgICB9CiAgICAgIF0sCiAgICAgICJkYXRlIjogIjIwMjQtMDEtMDMiLAogICAgICAiZGF0ZXRpbWUiOiBudWxsLAogICAgICAiaXNvX2N1cnJlbmN5X2NvZGUiOiAiVVNEIiwKICAgICAgImxvY2F0aW9uIjogewogICAgICAgICJhZGRyZXNzIjogbnVsbCwKICAgICAgICAiY2l0eSI6IG51bGwsCiAgICAgICAgImNvdW50cnkiOiBudWxsLAogICAgICAgICJsYXQiOiBudWxsLAogICAgICAgICJsb24iOiBudWxsLAogICAgICAgICJwb3N0YWxfY29kZSI6IG51bGwsCiAgICAgICAgInJlZ2lvbiI6IG51bGwsCiAgICAgICAgInN0b3JlX251bWJlciI6IG51bGwKICAgICAgfSwKICAgICAgImxvZ29fdXJsIjogImh0dHBzOi8vcGxhaWQtbWVyY2hhbnQtbG9nb3MucGxhaWQuY29tL2V4eG9ubW9iaWxfMzQxLnBuZyIsCiAgICAgICJtZXJjaGFudF9lbnRpdHlfaWQiOiAiZE1xd09ENXFLdkp6MmJxYXkyYlhqT21nOGRRRE45QlZ6OFZOeiIsCiAgICAgICJtZXJjaGFudF9uYW1lIjogIkV4eG9uTW9iaWwiLAogICAgICAibmFtZSI6ICJFeHhvbk1vYmlsIiwKICAgICAgIm9yaWdpbmFsX2Rlc2NyaXB0aW9uIjogIkVYWE9OTU9CSUwgICAgMDEyMzQ1NjciLAogICAgICAicGF5bWVudF9jaGFubmVsIjogImluIHN0b3JlIiwKICAgICAgInBheW1lbnRfbWV0YSI6IHsKICAgICAgICAiYnlfb3JkZXJfb2YiOiBudWxsLAogICAgICAgICJwYXllZSI6IG51bGwsCiAgICAgICAgInBheWVyIjogbnVsbCwKICAgICAgICAicGF5bWVudF9tZXRob2QiOiBudWxsLAogICAgICAgICJwYXltZW50X3Byb2Nlc3NvciI6IG51bGwsCiAgICAgICAgInBwZF9pZCI6IG51bGwsCiAgICAgICAgInJlYXNvbiI6IG51bGwsCiAgICAgICAgInJlZmVyZW5jZV9udW1iZXIiOiBudWxsCiAgICAgIH0sCiAgICAgICJwZW5kaW5nIjogZmFsc2UsCiAgICAgICJwZW5kaW5nX3RyYW5zYWN0aW9uX2lkIjogbnVsbCwKICAgICAgInBlcnNvbmFsX2ZpbmFuY2VfY2F0ZWdvcnkiOiB7CiAgICAgICAgImNvbmZpZGVuY2VfbGV2ZWwiOiAiVkVSWV9ISUdIIiwKICAgICAgICAiZGV0YWlsZWQiOiAiVFJBTlNQT1JUQVRJT05fR0FTIiwKICAgICAgICAicHJpbWFyeSI6ICJUUkFOU1BPUlRBVElPTiIKICAgICAgfSwKICAgICAgInBlcnNvbmFsX2ZpbmFuY2VfY2F0ZWdvcnlfaWNvbl91cmwiOiAiaHR0cHM6Ly9wbGFpZC1jYXRlZ29yeS1pY29ucy5wbGFpZC5jb20vUEZDX1RSQU5TUE9SVEFUSU9OLnBuZyIsCiAgICAgICJ0cmFuc2FjdGlvbl9jb2RlIjogbnVsbCwKICAgICAgInRyYW5zYWN0aW9uX2lkIjogIjhsQlo3a3FtTk1mbE02TjFyQmI4dWR6a0d3eUE1TXVXM0w4cWciLAogICAgICAidHJhbnNhY3Rpb25fdHlwZSI6ICJwbGFjZSIsCiAgICAgICJ1bm9mZmljaWFsX2N1cnJlbmN5X2NvZGUiOiBudWxsLAogICAgICAid2Vic2l0ZSI6ICJleHhvbm1vYmlsLmNvbSIKICAgIH0sCiAgICB7CiAgICAgICJhY2NvdW50X2lkIjogIlp2bEJMNWVNUFF0blhEVjZRclI5c1JlTlZWejFYQWllYWdEUHoiLAogICAgICAiYWNjb3VudF9vd25lciI6IG51bGwsCiAgICAgICJhbW91bnQiOiA0LjIsCiAgICAgICJhdXRob3JpemVkX2RhdGUiOiAiMjAyMy0xMi0zMSIsCiAgICAgICJhdXRob3JpemVkX2RhdGV0aW1lIjogbnVsbCwKICAgICAgImNhdGVnb3J5IjogWwogICAgICAgICJUcmF2ZWwiLAogICAgICAgICJBaXJsaW5lcyBhbmQgQXZpYXRpb24gU2VydmljZXMiCiAgICAgIF0sCiAgICAgICJjYXRlZ29yeV9pZCI6ICIyMjAwMTAwMCIsCiAgICAgICJjaGVja19udW1iZXIiOiBudWxsLAogICAgICAiY291bnRlcnBhcnRpZXMiOiBbCiAgICAgICAgewogICAgICAgICAgImNvbmZpZGVuY2VfbGV2ZWwiOiAiVkVSWV9ISUdIIiwKICAgICAgICAgICJlbnRpdHlfaWQiOiAiTXI5UnAwVk45S2VlTlI4WGdLZ01NbTdOMEw2OUpBOXp3V29ncCIsCiAgICAgICAgICAibG9nb191cmwiOiAiaHR0cHM6Ly9wbGFpZC1tZXJjaGFudC1sb2dvcy5wbGFpZC5jb20vc291dGh3ZXN0XzkyOS5wbmciLAogICAgICAgICAgIm5hbWUiOiAiU291dGh3ZXN0IiwKICAgICAgICAgICJwaG9uZV9udW1iZXIiOiBudWxsLAogICAgICAgICAgInR5cGUiOiAibWVyY2hhbnQiLAogICAgICAgICAgIndlYnNpdGUiOiAic291dGh3ZXN0LmNvbSIKICAgICAgICB9CiAgICAgIF0sCiAgICAgICJkYXRlIjogIjIwMjQtMDEtMDQiLAogICAgICAiZGF0ZXRpbWUiOiBudWxsLAogICAgICAiaXNvX2N1cnJlbmN5X2NvZGUiOiAiVVNEIiwKICAgICAgImxvY2F0aW9uIjogewogICAgICAgICJhZGRyZXNzIjogbnVsbCwKICAgICAgICAiY2l0eSI6IG51bGwsCiAgICAgICAgImNvdW50cnkiOiBudWxsLAogICAgICAgICJsYXQiOiBudWxsLAogICAgICAgICJsb24iOiBudWxsLAogICAgICAgICJwb3N0YWxfY29kZSI6IG51bGwsCiAgICAgICAgInJlZ2lvbiI6ICJUWCIsCiAgICAgICAgInN0b3JlX251bWJlciI6IG51bGwKICAgICAgfSwKICAgICAgImxvZ29fdXJsIjogImh0dHBzOi8vcGxhaWQtbWVyY2hhbnQtbG9nb3MucGxhaWQuY29tL3NvdXRod2VzdF85MjkucG5nIiwKICAgICAgIm1lcmNoYW50X2VudGl0eV9pZCI6ICJNcjlScDBWTjlLZWVOUjhYZ0tnTU1tN04wTDY5SkE5endXb2dwIiwKICAgICAgIm1lcmNoYW50X25hbWUiOiAiU291dGh3ZXN0IiwKICAgICAgIm5hbWUiOiAiU09VVEhXRVMgMDEyMzQ1Njc4OTAxMjM0NS0wMTItMDEyMyIsCiAgICAgICJvcmlnaW5hbF9kZXNjcmlwdGlvbiI6ICJTT1VUSFdFUyAwMTIzNDU2Nzg5MDEyMzQ1LTAxMi0wMTIzIFRYIiwKICAgICAgInBheW1lbnRfY2hhbm5lbCI6ICJpbiBzdG9yZSIsCiAgICAgICJwYXltZW50X21ldGEiOiB7CiAgICAgICAgImJ5X29yZGVyX29mIjogbnVsbCwKICAgICAgICAicGF5ZWUiOiBudWxsLAogICAgICAgICJwYXllciI6IG51bGwsCiAgICAgICAgInBheW1lbnRfbWV0aG9kIjogbnVsbCwKICAgICAgICAicGF5bWVudF9wcm9jZXNzb3IiOiBudWxsLAogICAgICAgICJwcGRfaWQiOiBudWxsLAogICAgICAgICJyZWFzb24iOiBudWxsLAogICAgICAgICJyZWZlcmVuY2VfbnVtYmVyIjogbnVsbAogICAgICB9LAogICAgICAicGVuZGluZyI6IGZhbHNlLAogICAgICAicGVuZGluZ190cmFuc2FjdGlvbl9pZCI6IG51bGwsCiAgICAgICJwZXJzb25hbF9maW5hbmNlX2NhdGVnb3J5IjogewogICAgICAgICJjb25maWRlbmNlX2xldmVsIjogIkhJR0giLAogICAgICAgICJkZXRhaWxlZCI6ICJUUkFWRUxfRkxJR0hUUyIsCiAgICAgICAgInByaW1hcnkiOiAiVFJBVkVMIgogICAgICB9LAogICAgICAicGVyc29uYWxfZmluYW5jZV9jYXRlZ29yeV9pY29uX3VybCI6ICJodHRwczovL3BsYWlkLWNhdGVnb3J5LWljb25zLnBsYWlkLmNvbS9QRkNfVFJBVkVMLnBuZyIsCiAgICAgICJ0cmFuc2FjdGlvbl9jb2RlIjogbnVsbCwKICAgICAgInRyYW5zYWN0aW9uX2lkIjogIkVqTTNBNXZLOG1DakxlYTFHRTNtQ3lvbTk1UHJ2a2k0eGttYjYiLAogICAgICAidHJhbnNhY3Rpb25fdHlwZSI6ICJzcGVjaWFsIiwKICAgICAgInVub2ZmaWNpYWxfY3VycmVuY3lfY29kZSI6IG51bGwsCiAgICAgICJ3ZWJzaXRlIjogInNvdXRod2VzdC5jb20iCiAgICB9LAogICAgewogICAgICAiYWNjb3VudF9pZCI6ICJadmxCTDVlTVBRdG5YRFY2UXJSOXNSZU5WVnoxWEFpZWFnRFB6IiwKICAgICAgImFjY291bnRfb3duZXIiOiBudWxsLAogICAgICAiYW1vdW50IjogMy43LAogICAgICAiYXV0aG9yaXplZF9kYXRlIjogIjIwMjMtMTItMzEiLAogICAgICAiYXV0aG9yaXplZF9kYXRldGltZSI6IG51bGwsCiAgICAgICJjYXRlZ29yeSI6IFsKICAgICAgICAiVHJhdmVsIiwKICAgICAgICAiR2FzIFN0YXRpb25zIgogICAgICBdLAogICAgICAiY2F0ZWdvcnlfaWQiOiAiMjIwMDkwMDAiLAogICAgICAiY2hlY2tfbnVtYmVyIjogbnVsbCwKICAgICAgImNvdW50ZXJwYXJ0aWVzIjogWwogICAgICAgIHsKICAgICAgICAgICJjb25maWRlbmNlX2xldmVsIjogIlZFUllfSElHSCIsCiAgICAgICAgICAiZW50aXR5X2lkIjogImRyMzlObko1VjNFWjlXMjF5UXJhQjgyYms5QmR3bzZ2d083YUQiLAogICAgICAgICAgImxvZ29fdXJsIjogImh0dHBzOi8vcGxhaWQtbWVyY2hhbnQtbG9nb3MucGxhaWQuY29tL3N1bm9jb185NzcucG5nIiwKICAgICAgICAgICJuYW1lIjogIlN1bm9jbyIsCiAgICAgICAgICAicGhvbmVfbnVtYmVyIjogbnVsbCwKICAgICAgICAgICJ0eXBlIjogIm1lcmNoYW50IiwKICAgICAgICAgICJ3ZWJzaXRlIjogInN1bm9jby5jb20iCiAgICAgICAgfQogICAgICBdLAogICAgICAiZGF0ZSI6ICIyMDI0LTAxLTAyIiwKICAgICAgImRhdGV0aW1lIjogbnVsbCwKICAgICAgImlzb19jdXJyZW5jeV9jb2RlIjogIlVTRCIsCiAgICAgICJsb2NhdGlvbiI6IHsKICAgICAgICAiYWRkcmVzcyI6IG51bGwsCiAgICAgICAgImNpdHkiOiBudWxsLAogICAgICAgICJjb3VudHJ5IjogbnVsbCwKICAgICAgICAibGF0IjogbnVsbCwKICAgICAgICAibG9uIjogbnVsbCwKICAgICAgICAicG9zdGFsX2NvZGUiOiBudWxsLAogICAgICAgICJyZWdpb24iOiBudWxsLAogICAgICAgICJzdG9yZV9udW1iZXIiOiBudWxsCiAgICAgIH0sCiAgICAgICJsb2dvX3VybCI6ICJodHRwczovL3BsYWlkLW1lcmNoYW50LWxvZ29zLnBsYWlkLmNvbS9zdW5vY29fOTc3LnBuZyIsCiAgICAgICJtZXJjaGFudF9lbnRpdHlfaWQiOiAiZHIzOU5uSjVWM0VaOVcyMXlRcmFCODJiazlCZHdvNnZ3TzdhRCIsCiAgICAgICJtZXJjaGFudF9uYW1lIjogIlN1bm9jbyIsCiAgICAgICJuYW1lIjogIlN1bm9jbyIsCiAgICAgICJvcmlnaW5hbF9kZXNjcmlwdGlvbiI6ICJTVU5PQ08gMDEyMzQ1Njc4OSIsCiAgICAgICJwYXltZW50X2NoYW5uZWwiOiAiaW4gc3RvcmUiLAogICAgICAicGF5bWVudF9tZXRhIjogewogICAgICAgICJieV9vcmRlcl9vZiI6IG51bGwsCiAgICAgICAgInBheWVlIjogbnVsbCwKICAgICAgICAicGF5ZXIiOiBudWxsLAogICAgICAgICJwYXltZW50X21ldGhvZCI6IG51bGwsCiAgICAgICAgInBheW1lbnRfcHJvY2Vzc29yIjogbnVsbCwKICAgICAgICAicHBkX2lkIjogbnVsbCwKICAgICAgICAicmVhc29uIjogbnVsbCwKICAgICAgICAicmVmZXJlbmNlX251bWJlciI6IG51bGwKICAgICAgfSwKICAgICAgInBlbmRpbmciOiBmYWxzZSwKICAgICAgInBlbmRpbmdfdHJhbnNhY3Rpb25faWQiOiBudWxsLAogICAgICAicGVyc29uYWxfZmluYW5jZV9jYXRlZ29yeSI6IHsKICAgICAgICAiY29uZmlkZW5jZV9sZXZlbCI6ICJWRVJZX0hJR0giLAogICAgICAgICJkZXRhaWxlZCI6ICJUUkFOU1BPUlRBVElPTl9HQVMiLAogICAgICAgICJwcmltYXJ5IjogIlRSQU5TUE9SVEFUSU9OIgogICAgICB9LAogICAgICAicGVyc29uYWxfZmluYW5jZV9jYXRlZ29yeV9pY29uX3VybCI6ICJodHRwczovL3BsYWlkLWNhdGVnb3J5LWljb25zLnBsYWlkLmNvbS9QRkNfVFJBTlNQT1JUQVRJT04ucG5nIiwKICAgICAgInRyYW5zYWN0aW9uX2NvZGUiOiBudWxsLAogICAgICAidHJhbnNhY3Rpb25faWQiOiAiV202a1o1ek1hanVkYjRYVjZueWFmQjhWZ05iM3puQzZaMWpneCIsCiAgICAgICJ0cmFuc2FjdGlvbl90eXBlIjogInBsYWNlIiwKICAgICAgInVub2ZmaWNpYWxfY3VycmVuY3lfY29kZSI6IG51bGwsCiAgICAgICJ3ZWJzaXRlIjogInN1bm9jby5jb20iCiAgICB9LAogICAgewogICAgICAiYWNjb3VudF9pZCI6ICJadmxCTDVlTVBRdG5YRFY2UXJSOXNSZU5WVnoxWEFpZWFnRFB6IiwKICAgICAgImFjY291bnRfb3duZXIiOiBudWxsLAogICAgICAiYW1vdW50IjogOS44MywKICAgICAgImF1dGhvcml6ZWRfZGF0ZSI6ICIyMDI0LTAxLTAxIiwKICAgICAgImF1dGhvcml6ZWRfZGF0ZXRpbWUiOiBudWxsLAogICAgICAiY2F0ZWdvcnkiOiBbCiAgICAgICAgIlNob3BzIiwKICAgICAgICAiUGV0cyIKICAgICAgXSwKICAgICAgImNhdGVnb3J5X2lkIjogIjE5MDQyMDAwIiwKICAgICAgImNoZWNrX251bWJlciI6IG51bGwsCiAgICAgICJjb3VudGVycGFydGllcyI6IFsKICAgICAgICB7CiAgICAgICAgICAiY29uZmlkZW5jZV9sZXZlbCI6ICJWRVJZX0hJR0giLAogICAgICAgICAgImVudGl0eV9pZCI6ICJWUTEwMmJxRFFtNXZwMGVXN0IyeU9Zd0pMbWtkYld2SnBvcktnIiwKICAgICAgICAgICJsb2dvX3VybCI6ICJodHRwczovL3BsYWlkLW1lcmNoYW50LWxvZ29zLnBsYWlkLmNvbS9wZXRjb183NDUucG5nIiwKICAgICAgICAgICJuYW1lIjogIlBldGNvIiwKICAgICAgICAgICJwaG9uZV9udW1iZXIiOiBudWxsLAogICAgICAgICAgInR5cGUiOiAibWVyY2hhbnQiLAogICAgICAgICAgIndlYnNpdGUiOiAicGV0Y28uY29tIgogICAgICAgIH0KICAgICAgXSwKICAgICAgImRhdGUiOiAiMjAyNC0wMS0wMiIsCiAgICAgICJkYXRldGltZSI6IG51bGwsCiAgICAgICJpc29fY3VycmVuY3lfY29kZSI6ICJVU0QiLAogICAgICAibG9jYXRpb24iOiB7CiAgICAgICAgImFkZHJlc3MiOiBudWxsLAogICAgICAgICJjaXR5IjogbnVsbCwKICAgICAgICAiY291bnRyeSI6IG51bGwsCiAgICAgICAgImxhdCI6IG51bGwsCiAgICAgICAgImxvbiI6IG51bGwsCiAgICAgICAgInBvc3RhbF9jb2RlIjogbnVsbCwKICAgICAgICAicmVnaW9uIjogbnVsbCwKICAgICAgICAic3RvcmVfbnVtYmVyIjogbnVsbAogICAgICB9LAogICAgICAibG9nb191cmwiOiAiaHR0cHM6Ly9wbGFpZC1tZXJjaGFudC1sb2dvcy5wbGFpZC5jb20vcGV0Y29fNzQ1LnBuZyIsCiAgICAgICJtZXJjaGFudF9lbnRpdHlfaWQiOiAiVlExMDJicURRbTV2cDBlVzdCMnlPWXdKTG1rZGJXdkpwb3JLZyIsCiAgICAgICJtZXJjaGFudF9uYW1lIjogIlBldGNvIiwKICAgICAgIm5hbWUiOiAiUGV0Y28iLAogICAgICAib3JpZ2luYWxfZGVzY3JpcHRpb24iOiAiUGV0Y28iLAogICAgICAicGF5bWVudF9jaGFubmVsIjogImluIHN0b3JlIiwKICAgICAgInBheW1lbnRfbWV0YSI6IHsKICAgICAgICAiYnlfb3JkZXJfb2YiOiBudWxsLAogICAgICAgICJwYXllZSI6IG51bGwsCiAgICAgICAgInBheWVyIjogbnVsbCwKICAgICAgICAicGF5bWVudF9tZXRob2QiOiBudWxsLAogICAgICAgICJwYXltZW50X3Byb2Nlc3NvciI6IG51bGwsCiAgICAgICAgInBwZF9pZCI6IG51bGwsCiAgICAgICAgInJlYXNvbiI6IG51bGwsCiAgICAgICAgInJlZmVyZW5jZV9udW1iZXIiOiBudWxsCiAgICAgIH0sCiAgICAgICJwZW5kaW5nIjogZmFsc2UsCiAgICAgICJwZW5kaW5nX3RyYW5zYWN0aW9uX2lkIjogbnVsbCwKICAgICAgInBlcnNvbmFsX2ZpbmFuY2VfY2F0ZWdvcnkiOiB7CiAgICAgICAgImNvbmZpZGVuY2VfbGV2ZWwiOiAiVkVSWV9ISUdIIiwKICAgICAgICAiZGV0YWlsZWQiOiAiR0VORVJBTF9NRVJDSEFORElTRV9QRVRfU1VQUExJRVMiLAogICAgICAgICJwcmltYXJ5IjogIkdFTkVSQUxfTUVSQ0hBTkRJU0UiCiAgICAgIH0sCiAgICAgICJwZXJzb25hbF9maW5hbmNlX2NhdGVnb3J5X2ljb25fdXJsIjogImh0dHBzOi8vcGxhaWQtY2F0ZWdvcnktaWNvbnMucGxhaWQuY29tL1BGQ19HRU5FUkFMX01FUkNIQU5ESVNFLnBuZyIsCiAgICAgICJ0cmFuc2FjdGlvbl9jb2RlIjogbnVsbCwKICAgICAgInRyYW5zYWN0aW9uX2lkIjogIkFhN0tnUnBWTEFoYW1XbGtBdkQzczhEbDVLWjdickY5ckE1ejMiLAogICAgICAidHJhbnNhY3Rpb25fdHlwZSI6ICJwbGFjZSIsCiAgICAgICJ1bm9mZmljaWFsX2N1cnJlbmN5X2NvZGUiOiBudWxsLAogICAgICAid2Vic2l0ZSI6ICJwZXRjby5jb20iCiAgICB9LAogICAgewogICAgICAiYWNjb3VudF9pZCI6ICJadmxCTDVlTVBRdG5YRFY2UXJSOXNSZU5WVnoxWEFpZWFnRFB6IiwKICAgICAgImFjY291bnRfb3duZXIiOiBudWxsLAogICAgICAiYW1vdW50IjogMS4xMywKICAgICAgImF1dGhvcml6ZWRfZGF0ZSI6ICIyMDI0LTAxLTA4IiwKICAgICAgImF1dGhvcml6ZWRfZGF0ZXRpbWUiOiBudWxsLAogICAgICAiY2F0ZWdvcnkiOiBbCiAgICAgICAgIlNlcnZpY2UiLAogICAgICAgICJQZXJzb25hbCBDYXJlIgogICAgICBdLAogICAgICAiY2F0ZWdvcnlfaWQiOiAiMTgwNDUwMDAiLAogICAgICAiY2hlY2tfbnVtYmVyIjogbnVsbCwKICAgICAgImNvdW50ZXJwYXJ0aWVzIjogWwogICAgICAgIHsKICAgICAgICAgICJjb25maWRlbmNlX2xldmVsIjogIkxPVyIsCiAgICAgICAgICAiZW50aXR5X2lkIjogbnVsbCwKICAgICAgICAgICJsb2dvX3VybCI6IG51bGwsCiAgICAgICAgICAibmFtZSI6ICJMYXVuZHJ5IFdhdmVyaWRlciIsCiAgICAgICAgICAicGhvbmVfbnVtYmVyIjogbnVsbCwKICAgICAgICAgICJ0eXBlIjogIm1lcmNoYW50IiwKICAgICAgICAgICJ3ZWJzaXRlIjogbnVsbAogICAgICAgIH0KICAgICAgXSwKICAgICAgImRhdGUiOiAiMjAyNC0wMS0wOCIsCiAgICAgICJkYXRldGltZSI6IG51bGwsCiAgICAgICJpc29fY3VycmVuY3lfY29kZSI6ICJVU0QiLAogICAgICAibG9jYXRpb24iOiB7CiAgICAgICAgImFkZHJlc3MiOiBudWxsLAogICAgICAgICJjaXR5IjogbnVsbCwKICAgICAgICAiY291bnRyeSI6IG51bGwsCiAgICAgICAgImxhdCI6IG51bGwsCiAgICAgICAgImxvbiI6IG51bGwsCiAgICAgICAgInBvc3RhbF9jb2RlIjogbnVsbCwKICAgICAgICAicmVnaW9uIjogbnVsbCwKICAgICAgICAic3RvcmVfbnVtYmVyIjogbnVsbAogICAgICB9LAogICAgICAibG9nb191cmwiOiBudWxsLAogICAgICAibWVyY2hhbnRfZW50aXR5X2lkIjogbnVsbCwKICAgICAgIm1lcmNoYW50X25hbWUiOiAiTGF1bmRyeSBXYXZlcmlkZXIiLAogICAgICAibmFtZSI6ICJXQVNIIExBVU5EUlkgV0FWRVJJREVSIiwKICAgICAgIm9yaWdpbmFsX2Rlc2NyaXB0aW9uIjogIldBU0ggTEFVTkRSWSBXQVZFUklERVIiLAogICAgICAicGF5bWVudF9jaGFubmVsIjogImluIHN0b3JlIiwKICAgICAgInBheW1lbnRfbWV0YSI6IHsKICAgICAgICAiYnlfb3JkZXJfb2YiOiBudWxsLAogICAgICAgICJwYXllZSI6IG51bGwsCiAgICAgICAgInBheWVyIjogbnVsbCwKICAgICAgICAicGF5bWVudF9tZXRob2QiOiBudWxsLAogICAgICAgICJwYXltZW50X3Byb2Nlc3NvciI6IG51bGwsCiAgICAgICAgInBwZF9pZCI6IG51bGwsCiAgICAgICAgInJlYXNvbiI6IG51bGwsCiAgICAgICAgInJlZmVyZW5jZV9udW1iZXIiOiBudWxsCiAgICAgIH0sCiAgICAgICJwZW5kaW5nIjogZmFsc2UsCiAgICAgICJwZW5kaW5nX3RyYW5zYWN0aW9uX2lkIjogbnVsbCwKICAgICAgInBlcnNvbmFsX2ZpbmFuY2VfY2F0ZWdvcnkiOiB7CiAgICAgICAgImNvbmZpZGVuY2VfbGV2ZWwiOiAiTE9XIiwKICAgICAgICAiZGV0YWlsZWQiOiAiUEVSU09OQUxfQ0FSRV9MQVVORFJZX0FORF9EUllfQ0xFQU5JTkciLAogICAgICAgICJwcmltYXJ5IjogIlBFUlNPTkFMX0NBUkUiCiAgICAgIH0sCiAgICAgICJwZXJzb25hbF9maW5hbmNlX2NhdGVnb3J5X2ljb25fdXJsIjogImh0dHBzOi8vcGxhaWQtY2F0ZWdvcnktaWNvbnMucGxhaWQuY29tL1BGQ19QRVJTT05BTF9DQVJFLnBuZyIsCiAgICAgICJ0cmFuc2FjdGlvbl9jb2RlIjogbnVsbCwKICAgICAgInRyYW5zYWN0aW9uX2lkIjogIkdlTGRxNW96VzlUZThKZDRNR3ZQVDg0TVpEd1BXN0Y2TVBva2oiLAogICAgICAidHJhbnNhY3Rpb25fdHlwZSI6ICJwbGFjZSIsCiAgICAgICJ1bm9mZmljaWFsX2N1cnJlbmN5X2NvZGUiOiBudWxsLAogICAgICAid2Vic2l0ZSI6IG51bGwKICAgIH0sCiAgICB7CiAgICAgICJhY2NvdW50X2lkIjogIlp2bEJMNWVNUFF0blhEVjZRclI5c1JlTlZWejFYQWllYWdEUHoiLAogICAgICAiYWNjb3VudF9vd25lciI6IG51bGwsCiAgICAgICJhbW91bnQiOiAyNS4wMSwKICAgICAgImF1dGhvcml6ZWRfZGF0ZSI6ICIyMDI0LTAxLTA4IiwKICAgICAgImF1dGhvcml6ZWRfZGF0ZXRpbWUiOiBudWxsLAogICAgICAiY2F0ZWdvcnkiOiBbCiAgICAgICAgIlNob3BzIiwKICAgICAgICAiRGlzY291bnQgU3RvcmVzIgogICAgICBdLAogICAgICAiY2F0ZWdvcnlfaWQiOiAiMTkwMjAwMDAiLAogICAgICAiY2hlY2tfbnVtYmVyIjogbnVsbCwKICAgICAgImNvdW50ZXJwYXJ0aWVzIjogWwogICAgICAgIHsKICAgICAgICAgICJjb25maWRlbmNlX2xldmVsIjogIlZFUllfSElHSCIsCiAgICAgICAgICAiZW50aXR5X2lkIjogIlp6bjc5cGIwWUV3QThKRDZLZXlaQUJ2bXBwM3cxV1ZaZUpFWTYiLAogICAgICAgICAgImxvZ29fdXJsIjogImh0dHBzOi8vcGxhaWQtbWVyY2hhbnQtbG9nb3MucGxhaWQuY29tL2RvbGxhcl9nZW5lcmFsXzI4Ny5wbmciLAogICAgICAgICAgIm5hbWUiOiAiRG9sbGFyIEdlbmVyYWwiLAogICAgICAgICAgInBob25lX251bWJlciI6IG51bGwsCiAgICAgICAgICAidHlwZSI6ICJtZXJjaGFudCIsCiAgICAgICAgICAid2Vic2l0ZSI6ICJkb2xsYXJnZW5lcmFsLmNvbSIKICAgICAgICB9CiAgICAgIF0sCiAgICAgICJkYXRlIjogIjIwMjQtMDEtMTIiLAogICAgICAiZGF0ZXRpbWUiOiBudWxsLAogICAgICAiaXNvX2N1cnJlbmN5X2NvZGUiOiAiVVNEIiwKICAgICAgImxvY2F0aW9uIjogewogICAgICAgICJhZGRyZXNzIjogIjU2OTcgT2xkIFN0YXRlIFJvdXRlIDIxIiwKICAgICAgICAiY2l0eSI6ICJIb3VzZSBTcHJpbmdzIiwKICAgICAgICAiY291bnRyeSI6IG51bGwsCiAgICAgICAgImxhdCI6IDM4LjM3MTU2NywKICAgICAgICAibG9uIjogLTkwLjUwMTIzNiwKICAgICAgICAicG9zdGFsX2NvZGUiOiAiNjMwNTEiLAogICAgICAgICJyZWdpb24iOiAiTU8iLAogICAgICAgICJzdG9yZV9udW1iZXIiOiAiMDEyMzQiCiAgICAgIH0sCiAgICAgICJsb2dvX3VybCI6ICJodHRwczovL3BsYWlkLW1lcmNoYW50LWxvZ29zLnBsYWlkLmNvbS9kb2xsYXJfZ2VuZXJhbF8yODcucG5nIiwKICAgICAgIm1lcmNoYW50X2VudGl0eV9pZCI6ICJaem43OXBiMFlFd0E4SkQ2S2V5WkFCdm1wcDN3MVdWWmVKRVk2IiwKICAgICAgIm1lcmNoYW50X25hbWUiOiAiRG9sbGFyIEdlbmVyYWwiLAogICAgICAibmFtZSI6ICJEb2xsYXIgR2VuZXJhbCIsCiAgICAgICJvcmlnaW5hbF9kZXNjcmlwdGlvbiI6ICJET0xMQVIgR0VORVJBTCAjMDEyMzQiLAogICAgICAicGF5bWVudF9jaGFubmVsIjogImluIHN0b3JlIiwKICAgICAgInBheW1lbnRfbWV0YSI6IHsKICAgICAgICAiYnlfb3JkZXJfb2YiOiBudWxsLAogICAgICAgICJwYXllZSI6IG51bGwsCiAgICAgICAgInBheWVyIjogbnVsbCwKICAgICAgICAicGF5bWVudF9tZXRob2QiOiBudWxsLAogICAgICAgICJwYXltZW50X3Byb2Nlc3NvciI6IG51bGwsCiAgICAgICAgInBwZF9pZCI6IG51bGwsCiAgICAgICAgInJlYXNvbiI6IG51bGwsCiAgICAgICAgInJlZmVyZW5jZV9udW1iZXIiOiBudWxsCiAgICAgIH0sCiAgICAgICJwZW5kaW5nIjogZmFsc2UsCiAgICAgICJwZW5kaW5nX3RyYW5zYWN0aW9uX2lkIjogbnVsbCwKICAgICAgInBlcnNvbmFsX2ZpbmFuY2VfY2F0ZWdvcnkiOiB7CiAgICAgICAgImNvbmZpZGVuY2VfbGV2ZWwiOiAiVkVSWV9ISUdIIiwKICAgICAgICAiZGV0YWlsZWQiOiAiR0VORVJBTF9NRVJDSEFORElTRV9ESVNDT1VOVF9TVE9SRVMiLAogICAgICAgICJwcmltYXJ5IjogIkdFTkVSQUxfTUVSQ0hBTkRJU0UiCiAgICAgIH0sCiAgICAgICJwZXJzb25hbF9maW5hbmNlX2NhdGVnb3J5X2ljb25fdXJsIjogImh0dHBzOi8vcGxhaWQtY2F0ZWdvcnktaWNvbnMucGxhaWQuY29tL1BGQ19HRU5FUkFMX01FUkNIQU5ESVNFLnBuZyIsCiAgICAgICJ0cmFuc2FjdGlvbl9jb2RlIjogbnVsbCwKICAgICAgInRyYW5zYWN0aW9uX2lkIjogIm5aTEFQendEeWxpYlFkdmE4amVEdEcxZU1Kb0VXYnRBbFdRdnAiLAogICAgICAidHJhbnNhY3Rpb25fdHlwZSI6ICJwbGFjZSIsCiAgICAgICJ1bm9mZmljaWFsX2N1cnJlbmN5X2NvZGUiOiBudWxsLAogICAgICAid2Vic2l0ZSI6ICJkb2xsYXJnZW5lcmFsLmNvbSIKICAgIH0sCiAgICB7CiAgICAgICJhY2NvdW50X2lkIjogIlp2bEJMNWVNUFF0blhEVjZRclI5c1JlTlZWejFYQWllYWdEUHoiLAogICAgICAiYWNjb3VudF9vd25lciI6IG51bGwsCiAgICAgICJhbW91bnQiOiA3Ljg5LAogICAgICAiYXV0aG9yaXplZF9kYXRlIjogIjIwMjQtMDEtMDgiLAogICAgICAiYXV0aG9yaXplZF9kYXRldGltZSI6IG51bGwsCiAgICAgICJjYXRlZ29yeSI6IFsKICAgICAgICAiVHJhdmVsIiwKICAgICAgICAiR2FzIFN0YXRpb25zIgogICAgICBdLAogICAgICAiY2F0ZWdvcnlfaWQiOiAiMjIwMDkwMDAiLAogICAgICAiY2hlY2tfbnVtYmVyIjogbnVsbCwKICAgICAgImNvdW50ZXJwYXJ0aWVzIjogWwogICAgICAgIHsKICAgICAgICAgICJjb25maWRlbmNlX2xldmVsIjogIlZFUllfSElHSCIsCiAgICAgICAgICAiZW50aXR5X2lkIjogIjh3WWR3TUQycmdrVjd2SnZLb3Bua3AwZ0xSUXZRam1WRWdEWm0iLAogICAgICAgICAgImxvZ29fdXJsIjogImh0dHBzOi8vcGxhaWQtbWVyY2hhbnQtbG9nb3MucGxhaWQuY29tL3JhY2V0cmFjXzgwMi5wbmciLAogICAgICAgICAgIm5hbWUiOiAiUmFjZVRyYWMiLAogICAgICAgICAgInBob25lX251bWJlciI6IG51bGwsCiAgICAgICAgICAidHlwZSI6ICJtZXJjaGFudCIsCiAgICAgICAgICAid2Vic2l0ZSI6ICJyYWNldHJhYy5jb20iCiAgICAgICAgfQogICAgICBdLAogICAgICAiZGF0ZSI6ICIyMDI0LTAxLTEyIiwKICAgICAgImRhdGV0aW1lIjogbnVsbCwKICAgICAgImlzb19jdXJyZW5jeV9jb2RlIjogIlVTRCIsCiAgICAgICJsb2NhdGlvbiI6IHsKICAgICAgICAiYWRkcmVzcyI6IG51bGwsCiAgICAgICAgImNpdHkiOiBudWxsLAogICAgICAgICJjb3VudHJ5IjogbnVsbCwKICAgICAgICAibGF0IjogbnVsbCwKICAgICAgICAibG9uIjogbnVsbCwKICAgICAgICAicG9zdGFsX2NvZGUiOiBudWxsLAogICAgICAgICJyZWdpb24iOiBudWxsLAogICAgICAgICJzdG9yZV9udW1iZXIiOiBudWxsCiAgICAgIH0sCiAgICAgICJsb2dvX3VybCI6ICJodHRwczovL3BsYWlkLW1lcmNoYW50LWxvZ29zLnBsYWlkLmNvbS9yYWNldHJhY184MDIucG5nIiwKICAgICAgIm1lcmNoYW50X2VudGl0eV9pZCI6ICI4d1lkd01EMnJna1Y3dkp2S29wbmtwMGdMUlF2UWptVkVnRFptIiwKICAgICAgIm1lcmNoYW50X25hbWUiOiAiUmFjZVRyYWMiLAogICAgICAibmFtZSI6ICJSYWNlVHJhYyIsCiAgICAgICJvcmlnaW5hbF9kZXNjcmlwdGlvbiI6ICJSYWNldHJhYyIsCiAgICAgICJwYXltZW50X2NoYW5uZWwiOiAiaW4gc3RvcmUiLAogICAgICAicGF5bWVudF9tZXRhIjogewogICAgICAgICJieV9vcmRlcl9vZiI6IG51bGwsCiAgICAgICAgInBheWVlIjogbnVsbCwKICAgICAgICAicGF5ZXIiOiBudWxsLAogICAgICAgICJwYXltZW50X21ldGhvZCI6IG51bGwsCiAgICAgICAgInBheW1lbnRfcHJvY2Vzc29yIjogbnVsbCwKICAgICAgICAicHBkX2lkIjogbnVsbCwKICAgICAgICAicmVhc29uIjogbnVsbCwKICAgICAgICAicmVmZXJlbmNlX251bWJlciI6IG51bGwKICAgICAgfSwKICAgICAgInBlbmRpbmciOiBmYWxzZSwKICAgICAgInBlbmRpbmdfdHJhbnNhY3Rpb25faWQiOiBudWxsLAogICAgICAicGVyc29uYWxfZmluYW5jZV9jYXRlZ29yeSI6IHsKICAgICAgICAiY29uZmlkZW5jZV9sZXZlbCI6ICJWRVJZX0hJR0giLAogICAgICAgICJkZXRhaWxlZCI6ICJUUkFOU1BPUlRBVElPTl9HQVMiLAogICAgICAgICJwcmltYXJ5IjogIlRSQU5TUE9SVEFUSU9OIgogICAgICB9LAogICAgICAicGVyc29uYWxfZmluYW5jZV9jYXRlZ29yeV9pY29uX3VybCI6ICJodHRwczovL3BsYWlkLWNhdGVnb3J5LWljb25zLnBsYWlkLmNvbS9QRkNfVFJBTlNQT1JUQVRJT04ucG5nIiwKICAgICAgInRyYW5zYWN0aW9uX2NvZGUiOiBudWxsLAogICAgICAidHJhbnNhY3Rpb25faWQiOiAiYkJkeWxKZ1hMa3UxcnlWTlE5WGVoeFJlZzM0S0c3dG1iWjc4UiIsCiAgICAgICJ0cmFuc2FjdGlvbl90eXBlIjogInBsYWNlIiwKICAgICAgInVub2ZmaWNpYWxfY3VycmVuY3lfY29kZSI6IG51bGwsCiAgICAgICJ3ZWJzaXRlIjogInJhY2V0cmFjLmNvbSIKICAgIH0sCiAgICB7CiAgICAgICJhY2NvdW50X2lkIjogIlp2bEJMNWVNUFF0blhEVjZRclI5c1JlTlZWejFYQWllYWdEUHoiLAogICAgICAiYWNjb3VudF9vd25lciI6IG51bGwsCiAgICAgICJhbW91bnQiOiAxMDcuOTYsCiAgICAgICJhdXRob3JpemVkX2RhdGUiOiAiMjAyNC0wMS0wOCIsCiAgICAgICJhdXRob3JpemVkX2RhdGV0aW1lIjogbnVsbCwKICAgICAgImNhdGVnb3J5IjogWwogICAgICAgICJTaG9wcyIsCiAgICAgICAgIkRlcGFydG1lbnQgU3RvcmVzIgogICAgICBdLAogICAgICAiY2F0ZWdvcnlfaWQiOiAiMTkwMTgwMDAiLAogICAgICAiY2hlY2tfbnVtYmVyIjogbnVsbCwKICAgICAgImNvdW50ZXJwYXJ0aWVzIjogWwogICAgICAgIHsKICAgICAgICAgICJjb25maWRlbmNlX2xldmVsIjogIlZFUllfSElHSCIsCiAgICAgICAgICAiZW50aXR5X2lkIjogIndWeTJOUjg4anc1WjJxcm84Vm80b3JvOEUzYUVyRDBnRE4wbloiLAogICAgICAgICAgImxvZ29fdXJsIjogImh0dHBzOi8vcGxhaWQtbWVyY2hhbnQtbG9nb3MucGxhaWQuY29tL2tvaGxzXzU1My5wbmciLAogICAgICAgICAgIm5hbWUiOiAiS29obCdzIiwKICAgICAgICAgICJwaG9uZV9udW1iZXIiOiBudWxsLAogICAgICAgICAgInR5cGUiOiAibWVyY2hhbnQiLAogICAgICAgICAgIndlYnNpdGUiOiAia29obHMuY29tIgogICAgICAgIH0KICAgICAgXSwKICAgICAgImRhdGUiOiAiMjAyNC0wMS0xMiIsCiAgICAgICJkYXRldGltZSI6IG51bGwsCiAgICAgICJpc29fY3VycmVuY3lfY29kZSI6ICJVU0QiLAogICAgICAibG9jYXRpb24iOiB7CiAgICAgICAgImFkZHJlc3MiOiBudWxsLAogICAgICAgICJjaXR5IjogbnVsbCwKICAgICAgICAiY291bnRyeSI6IG51bGwsCiAgICAgICAgImxhdCI6IG51bGwsCiAgICAgICAgImxvbiI6IG51bGwsCiAgICAgICAgInBvc3RhbF9jb2RlIjogbnVsbCwKICAgICAgICAicmVnaW9uIjogIk9IIiwKICAgICAgICAic3RvcmVfbnVtYmVyIjogbnVsbAogICAgICB9LAogICAgICAibG9nb191cmwiOiAiaHR0cHM6Ly9wbGFpZC1tZXJjaGFudC1sb2dvcy5wbGFpZC5jb20va29obHNfNTUzLnBuZyIsCiAgICAgICJtZXJjaGFudF9lbnRpdHlfaWQiOiAid1Z5Mk5SODhqdzVaMnFybzhWbzRvcm84RTNhRXJEMGdETjBuWiIsCiAgICAgICJtZXJjaGFudF9uYW1lIjogIktvaGwncyIsCiAgICAgICJuYW1lIjogIldXVy5LT0hMUy5DT00gIzAxMjMiLAogICAgICAib3JpZ2luYWxfZGVzY3JpcHRpb24iOiAiV1dXLktPSExTLkNPTSAjMDEyMyAwMTItMDEyLTAxMjMgT0giLAogICAgICAicGF5bWVudF9jaGFubmVsIjogIm9ubGluZSIsCiAgICAgICJwYXltZW50X21ldGEiOiB7CiAgICAgICAgImJ5X29yZGVyX29mIjogbnVsbCwKICAgICAgICAicGF5ZWUiOiBudWxsLAogICAgICAgICJwYXllciI6IG51bGwsCiAgICAgICAgInBheW1lbnRfbWV0aG9kIjogbnVsbCwKICAgICAgICAicGF5bWVudF9wcm9jZXNzb3IiOiBudWxsLAogICAgICAgICJwcGRfaWQiOiBudWxsLAogICAgICAgICJyZWFzb24iOiBudWxsLAogICAgICAgICJyZWZlcmVuY2VfbnVtYmVyIjogbnVsbAogICAgICB9LAogICAgICAicGVuZGluZyI6IGZhbHNlLAogICAgICAicGVuZGluZ190cmFuc2FjdGlvbl9pZCI6IG51bGwsCiAgICAgICJwZXJzb25hbF9maW5hbmNlX2NhdGVnb3J5IjogewogICAgICAgICJjb25maWRlbmNlX2xldmVsIjogIkhJR0giLAogICAgICAgICJkZXRhaWxlZCI6ICJHRU5FUkFMX01FUkNIQU5ESVNFX0RFUEFSVE1FTlRfU1RPUkVTIiwKICAgICAgICAicHJpbWFyeSI6ICJHRU5FUkFMX01FUkNIQU5ESVNFIgogICAgICB9LAogICAgICAicGVyc29uYWxfZmluYW5jZV9jYXRlZ29yeV9pY29uX3VybCI6ICJodHRwczovL3BsYWlkLWNhdGVnb3J5LWljb25zLnBsYWlkLmNvbS9QRkNfR0VORVJBTF9NRVJDSEFORElTRS5wbmciLAogICAgICAidHJhbnNhY3Rpb25fY29kZSI6IG51bGwsCiAgICAgICJ0cmFuc2FjdGlvbl9pZCI6ICJtUTFBTmtiRG1SZmI0eXZKNm5wTXQ2TG1CajFOeUVjZ3lkWDZWIiwKICAgICAgInRyYW5zYWN0aW9uX3R5cGUiOiAicGxhY2UiLAogICAgICAidW5vZmZpY2lhbF9jdXJyZW5jeV9jb2RlIjogbnVsbCwKICAgICAgIndlYnNpdGUiOiAia29obHMuY29tIgogICAgfSwKICAgIHsKICAgICAgImFjY291bnRfaWQiOiAiWnZsQkw1ZU1QUXRuWERWNlFyUjlzUmVOVlZ6MVhBaWVhZ0RQeiIsCiAgICAgICJhY2NvdW50X293bmVyIjogbnVsbCwKICAgICAgImFtb3VudCI6IDIzLjg0LAogICAgICAiYXV0aG9yaXplZF9kYXRlIjogIjIwMjQtMDEtMDgiLAogICAgICAiYXV0aG9yaXplZF9kYXRldGltZSI6IG51bGwsCiAgICAgICJjYXRlZ29yeSI6IFsKICAgICAgICAiU2hvcHMiLAogICAgICAgICJEZXBhcnRtZW50IFN0b3JlcyIKICAgICAgXSwKICAgICAgImNhdGVnb3J5X2lkIjogIjE5MDE4MDAwIiwKICAgICAgImNoZWNrX251bWJlciI6IG51bGwsCiAgICAgICJjb3VudGVycGFydGllcyI6IFtdLAogICAgICAiZGF0ZSI6ICIyMDI0LTAxLTEyIiwKICAgICAgImRhdGV0aW1lIjogbnVsbCwKICAgICAgImlzb19jdXJyZW5jeV9jb2RlIjogIlVTRCIsCiAgICAgICJsb2NhdGlvbiI6IHsKICAgICAgICAiYWRkcmVzcyI6IG51bGwsCiAgICAgICAgImNpdHkiOiBudWxsLAogICAgICAgICJjb3VudHJ5IjogbnVsbCwKICAgICAgICAibGF0IjogbnVsbCwKICAgICAgICAibG9uIjogbnVsbCwKICAgICAgICAicG9zdGFsX2NvZGUiOiBudWxsLAogICAgICAgICJyZWdpb24iOiBudWxsLAogICAgICAgICJzdG9yZV9udW1iZXIiOiBudWxsCiAgICAgIH0sCiAgICAgICJsb2dvX3VybCI6IG51bGwsCiAgICAgICJtZXJjaGFudF9lbnRpdHlfaWQiOiBudWxsLAogICAgICAibWVyY2hhbnRfbmFtZSI6IG51bGwsCiAgICAgICJuYW1lIjogIkttYXJ0IiwKICAgICAgIm9yaWdpbmFsX2Rlc2NyaXB0aW9uIjogIktNQVJUIDAxMjMiLAogICAgICAicGF5bWVudF9jaGFubmVsIjogImluIHN0b3JlIiwKICAgICAgInBheW1lbnRfbWV0YSI6IHsKICAgICAgICAiYnlfb3JkZXJfb2YiOiBudWxsLAogICAgICAgICJwYXllZSI6IG51bGwsCiAgICAgICAgInBheWVyIjogbnVsbCwKICAgICAgICAicGF5bWVudF9tZXRob2QiOiBudWxsLAogICAgICAgICJwYXltZW50X3Byb2Nlc3NvciI6IG51bGwsCiAgICAgICAgInBwZF9pZCI6IG51bGwsCiAgICAgICAgInJlYXNvbiI6IG51bGwsCiAgICAgICAgInJlZmVyZW5jZV9udW1iZXIiOiBudWxsCiAgICAgIH0sCiAgICAgICJwZW5kaW5nIjogZmFsc2UsCiAgICAgICJwZW5kaW5nX3RyYW5zYWN0aW9uX2lkIjogbnVsbCwKICAgICAgInBlcnNvbmFsX2ZpbmFuY2VfY2F0ZWdvcnkiOiB7CiAgICAgICAgImNvbmZpZGVuY2VfbGV2ZWwiOiAiTE9XIiwKICAgICAgICAiZGV0YWlsZWQiOiAiR0VORVJBTF9NRVJDSEFORElTRV9DT05WRU5JRU5DRV9TVE9SRVMiLAogICAgICAgICJwcmltYXJ5IjogIkdFTkVSQUxfTUVSQ0hBTkRJU0UiCiAgICAgIH0sCiAgICAgICJwZXJzb25hbF9maW5hbmNlX2NhdGVnb3J5X2ljb25fdXJsIjogImh0dHBzOi8vcGxhaWQtY2F0ZWdvcnktaWNvbnMucGxhaWQuY29tL1BGQ19HRU5FUkFMX01FUkNIQU5ESVNFLnBuZyIsCiAgICAgICJ0cmFuc2FjdGlvbl9jb2RlIjogbnVsbCwKICAgICAgInRyYW5zYWN0aW9uX2lkIjogInlHbXJnZTVLNE5GcERRd2VCTDR5dVBNMzVyeGRYWmk0Nlh3eFYiLAogICAgICAidHJhbnNhY3Rpb25fdHlwZSI6ICJwbGFjZSIsCiAgICAgICJ1bm9mZmljaWFsX2N1cnJlbmN5X2NvZGUiOiBudWxsLAogICAgICAid2Vic2l0ZSI6IG51bGwKICAgIH0sCiAgICB7CiAgICAgICJhY2NvdW50X2lkIjogIlp2bEJMNWVNUFF0blhEVjZRclI5c1JlTlZWejFYQWllYWdEUHoiLAogICAgICAiYWNjb3VudF9vd25lciI6IG51bGwsCiAgICAgICJhbW91bnQiOiAxMTcuOTMsCiAgICAgICJhdXRob3JpemVkX2RhdGUiOiAiMjAyNC0wMS0wOCIsCiAgICAgICJhdXRob3JpemVkX2RhdGV0aW1lIjogbnVsbCwKICAgICAgImNhdGVnb3J5IjogWwogICAgICAgICJTaG9wcyIsCiAgICAgICAgIlN1cGVybWFya2V0cyBhbmQgR3JvY2VyaWVzIgogICAgICBdLAogICAgICAiY2F0ZWdvcnlfaWQiOiAiMTkwNDcwMDAiLAogICAgICAiY2hlY2tfbnVtYmVyIjogbnVsbCwKICAgICAgImNvdW50ZXJwYXJ0aWVzIjogWwogICAgICAgIHsKICAgICAgICAgICJjb25maWRlbmNlX2xldmVsIjogIlZFUllfSElHSCIsCiAgICAgICAgICAiZW50aXR5X2lkIjogInAyakpBOTBKcmJtcTdtMk9xMm1xcnZiTUo5TW13Mk1MQnEzNnkiLAogICAgICAgICAgImxvZ29fdXJsIjogImh0dHBzOi8vcGxhaWQtbWVyY2hhbnQtbG9nb3MucGxhaWQuY29tL2tpbmdfc29vcGVyc181NTAucG5nIiwKICAgICAgICAgICJuYW1lIjogIktpbmcgU29vcGVycyIsCiAgICAgICAgICAicGhvbmVfbnVtYmVyIjogbnVsbCwKICAgICAgICAgICJ0eXBlIjogIm1lcmNoYW50IiwKICAgICAgICAgICJ3ZWJzaXRlIjogImtpbmdzb29wZXJzLmNvbSIKICAgICAgICB9CiAgICAgIF0sCiAgICAgICJkYXRlIjogIjIwMjQtMDEtMTIiLAogICAgICAiZGF0ZXRpbWUiOiBudWxsLAogICAgICAiaXNvX2N1cnJlbmN5X2NvZGUiOiAiVVNEIiwKICAgICAgImxvY2F0aW9uIjogewogICAgICAgICJhZGRyZXNzIjogbnVsbCwKICAgICAgICAiY2l0eSI6IG51bGwsCiAgICAgICAgImNvdW50cnkiOiBudWxsLAogICAgICAgICJsYXQiOiBudWxsLAogICAgICAgICJsb24iOiBudWxsLAogICAgICAgICJwb3N0YWxfY29kZSI6IG51bGwsCiAgICAgICAgInJlZ2lvbiI6IG51bGwsCiAgICAgICAgInN0b3JlX251bWJlciI6IG51bGwKICAgICAgfSwKICAgICAgImxvZ29fdXJsIjogImh0dHBzOi8vcGxhaWQtbWVyY2hhbnQtbG9nb3MucGxhaWQuY29tL2tpbmdfc29vcGVyc181NTAucG5nIiwKICAgICAgIm1lcmNoYW50X2VudGl0eV9pZCI6ICJwMmpKQTkwSnJibXE3bTJPcTJtcXJ2Yk1KOU1tdzJNTEJxMzZ5IiwKICAgICAgIm1lcmNoYW50X25hbWUiOiAiS2luZyBTb29wZXJzIiwKICAgICAgIm5hbWUiOiAiS2luZyBTb29wZXJzIiwKICAgICAgIm9yaWdpbmFsX2Rlc2NyaXB0aW9uIjogIktJTkcgU09PUEVSUyIsCiAgICAgICJwYXltZW50X2NoYW5uZWwiOiAiaW4gc3RvcmUiLAogICAgICAicGF5bWVudF9tZXRhIjogewogICAgICAgICJieV9vcmRlcl9vZiI6IG51bGwsCiAgICAgICAgInBheWVlIjogbnVsbCwKICAgICAgICAicGF5ZXIiOiBudWxsLAogICAgICAgICJwYXltZW50X21ldGhvZCI6IG51bGwsCiAgICAgICAgInBheW1lbnRfcHJvY2Vzc29yIjogbnVsbCwKICAgICAgICAicHBkX2lkIjogbnVsbCwKICAgICAgICAicmVhc29uIjogbnVsbCwKICAgICAgICAicmVmZXJlbmNlX251bWJlciI6IG51bGwKICAgICAgfSwKICAgICAgInBlbmRpbmciOiBmYWxzZSwKICAgICAgInBlbmRpbmdfdHJhbnNhY3Rpb25faWQiOiBudWxsLAogICAgICAicGVyc29uYWxfZmluYW5jZV9jYXRlZ29yeSI6IHsKICAgICAgICAiY29uZmlkZW5jZV9sZXZlbCI6ICJWRVJZX0hJR0giLAogICAgICAgICJkZXRhaWxlZCI6ICJGT09EX0FORF9EUklOS19HUk9DRVJJRVMiLAogICAgICAgICJwcmltYXJ5IjogIkZPT0RfQU5EX0RSSU5LIgogICAgICB9LAogICAgICAicGVyc29uYWxfZmluYW5jZV9jYXRlZ29yeV9pY29uX3VybCI6ICJodHRwczovL3BsYWlkLWNhdGVnb3J5LWljb25zLnBsYWlkLmNvbS9QRkNfRk9PRF9BTkRfRFJJTksucG5nIiwKICAgICAgInRyYW5zYWN0aW9uX2NvZGUiOiBudWxsLAogICAgICAidHJhbnNhY3Rpb25faWQiOiAiOXEzNmVBSzdQMWlxR01QYkEzNHlVQVpWN05tTG9qSTR4UWdqUCIsCiAgICAgICJ0cmFuc2FjdGlvbl90eXBlIjogInBsYWNlIiwKICAgICAgInVub2ZmaWNpYWxfY3VycmVuY3lfY29kZSI6IG51bGwsCiAgICAgICJ3ZWJzaXRlIjogImtpbmdzb29wZXJzLmNvbSIKICAgIH0sCiAgICB7CiAgICAgICJhY2NvdW50X2lkIjogIlp2bEJMNWVNUFF0blhEVjZRclI5c1JlTlZWejFYQWllYWdEUHoiLAogICAgICAiYWNjb3VudF9vd25lciI6IG51bGwsCiAgICAgICJhbW91bnQiOiAxMDcuMTYsCiAgICAgICJhdXRob3JpemVkX2RhdGUiOiAiMjAyNC0wMS0xMCIsCiAgICAgICJhdXRob3JpemVkX2RhdGV0aW1lIjogbnVsbCwKICAgICAgImNhdGVnb3J5IjogWwogICAgICAgICJTaG9wcyIsCiAgICAgICAgIkJlYXV0eSBQcm9kdWN0cyIKICAgICAgXSwKICAgICAgImNhdGVnb3J5X2lkIjogIjE5MDA2MDAwIiwKICAgICAgImNoZWNrX251bWJlciI6IG51bGwsCiAgICAgICJjb3VudGVycGFydGllcyI6IFtdLAogICAgICAiZGF0ZSI6ICIyMDI0LTAxLTEyIiwKICAgICAgImRhdGV0aW1lIjogbnVsbCwKICAgICAgImlzb19jdXJyZW5jeV9jb2RlIjogIlVTRCIsCiAgICAgICJsb2NhdGlvbiI6IHsKICAgICAgICAiYWRkcmVzcyI6IG51bGwsCiAgICAgICAgImNpdHkiOiBudWxsLAogICAgICAgICJjb3VudHJ5IjogbnVsbCwKICAgICAgICAibGF0IjogbnVsbCwKICAgICAgICAibG9uIjogbnVsbCwKICAgICAgICAicG9zdGFsX2NvZGUiOiBudWxsLAogICAgICAgICJyZWdpb24iOiBudWxsLAogICAgICAgICJzdG9yZV9udW1iZXIiOiBudWxsCiAgICAgIH0sCiAgICAgICJsb2dvX3VybCI6IG51bGwsCiAgICAgICJtZXJjaGFudF9lbnRpdHlfaWQiOiBudWxsLAogICAgICAibWVyY2hhbnRfbmFtZSI6IG51bGwsCiAgICAgICJuYW1lIjogIk1PUlBIRSAwMTIzNDUiLAogICAgICAib3JpZ2luYWxfZGVzY3JpcHRpb24iOiAiTU9SUEhFIDAxMjM0NSIsCiAgICAgICJwYXltZW50X2NoYW5uZWwiOiAiaW4gc3RvcmUiLAogICAgICAicGF5bWVudF9tZXRhIjogewogICAgICAgICJieV9vcmRlcl9vZiI6IG51bGwsCiAgICAgICAgInBheWVlIjogbnVsbCwKICAgICAgICAicGF5ZXIiOiBudWxsLAogICAgICAgICJwYXltZW50X21ldGhvZCI6IG51bGwsCiAgICAgICAgInBheW1lbnRfcHJvY2Vzc29yIjogbnVsbCwKICAgICAgICAicHBkX2lkIjogbnVsbCwKICAgICAgICAicmVhc29uIjogbnVsbCwKICAgICAgICAicmVmZXJlbmNlX251bWJlciI6IG51bGwKICAgICAgfSwKICAgICAgInBlbmRpbmciOiBmYWxzZSwKICAgICAgInBlbmRpbmdfdHJhbnNhY3Rpb25faWQiOiBudWxsLAogICAgICAicGVyc29uYWxfZmluYW5jZV9jYXRlZ29yeSI6IHsKICAgICAgICAiY29uZmlkZW5jZV9sZXZlbCI6ICJMT1ciLAogICAgICAgICJkZXRhaWxlZCI6ICJHRU5FUkFMX01FUkNIQU5ESVNFX09USEVSX0dFTkVSQUxfTUVSQ0hBTkRJU0UiLAogICAgICAgICJwcmltYXJ5IjogIkdFTkVSQUxfTUVSQ0hBTkRJU0UiCiAgICAgIH0sCiAgICAgICJwZXJzb25hbF9maW5hbmNlX2NhdGVnb3J5X2ljb25fdXJsIjogImh0dHBzOi8vcGxhaWQtY2F0ZWdvcnktaWNvbnMucGxhaWQuY29tL1BGQ19HRU5FUkFMX01FUkNIQU5ESVNFLnBuZyIsCiAgICAgICJ0cmFuc2FjdGlvbl9jb2RlIjogbnVsbCwKICAgICAgInRyYW5zYWN0aW9uX2lkIjogInZFR2xMUEFEeGRUN3JWdk1Lb3hwc2JvenEzTnhrR2lxNmsxRTgiLAogICAgICAidHJhbnNhY3Rpb25fdHlwZSI6ICJwbGFjZSIsCiAgICAgICJ1bm9mZmljaWFsX2N1cnJlbmN5X2NvZGUiOiBudWxsLAogICAgICAid2Vic2l0ZSI6IG51bGwKICAgIH0sCiAgICB7CiAgICAgICJhY2NvdW50X2lkIjogIlp2bEJMNWVNUFF0blhEVjZRclI5c1JlTlZWejFYQWllYWdEUHoiLAogICAgICAiYWNjb3VudF9vd25lciI6IG51bGwsCiAgICAgICJhbW91bnQiOiAzMzcuODcsCiAgICAgICJhdXRob3JpemVkX2RhdGUiOiAiMjAyNC0wMS0wOCIsCiAgICAgICJhdXRob3JpemVkX2RhdGV0aW1lIjogbnVsbCwKICAgICAgImNhdGVnb3J5IjogWwogICAgICAgICJTaG9wcyIsCiAgICAgICAgIkRlcGFydG1lbnQgU3RvcmVzIgogICAgICBdLAogICAgICAiY2F0ZWdvcnlfaWQiOiAiMTkwMTgwMDAiLAogICAgICAiY2hlY2tfbnVtYmVyIjogbnVsbCwKICAgICAgImNvdW50ZXJwYXJ0aWVzIjogW10sCiAgICAgICJkYXRlIjogIjIwMjQtMDEtMTMiLAogICAgICAiZGF0ZXRpbWUiOiBudWxsLAogICAgICAiaXNvX2N1cnJlbmN5X2NvZGUiOiAiVVNEIiwKICAgICAgImxvY2F0aW9uIjogewogICAgICAgICJhZGRyZXNzIjogbnVsbCwKICAgICAgICAiY2l0eSI6IG51bGwsCiAgICAgICAgImNvdW50cnkiOiBudWxsLAogICAgICAgICJsYXQiOiBudWxsLAogICAgICAgICJsb24iOiBudWxsLAogICAgICAgICJwb3N0YWxfY29kZSI6IG51bGwsCiAgICAgICAgInJlZ2lvbiI6IG51bGwsCiAgICAgICAgInN0b3JlX251bWJlciI6ICIwMTIzIgogICAgICB9LAogICAgICAibG9nb191cmwiOiBudWxsLAogICAgICAibWVyY2hhbnRfZW50aXR5X2lkIjogbnVsbCwKICAgICAgIm1lcmNoYW50X25hbWUiOiBudWxsLAogICAgICAibmFtZSI6ICJOb3Jkc3Ryb20iLAogICAgICAib3JpZ2luYWxfZGVzY3JpcHRpb24iOiAiTk9SRFNUUk9NLVJBQ0sgIzAxMjMiLAogICAgICAicGF5bWVudF9jaGFubmVsIjogImluIHN0b3JlIiwKICAgICAgInBheW1lbnRfbWV0YSI6IHsKICAgICAgICAiYnlfb3JkZXJfb2YiOiBudWxsLAogICAgICAgICJwYXllZSI6IG51bGwsCiAgICAgICAgInBheWVyIjogbnVsbCwKICAgICAgICAicGF5bWVudF9tZXRob2QiOiBudWxsLAogICAgICAgICJwYXltZW50X3Byb2Nlc3NvciI6IG51bGwsCiAgICAgICAgInBwZF9pZCI6IG51bGwsCiAgICAgICAgInJlYXNvbiI6IG51bGwsCiAgICAgICAgInJlZmVyZW5jZV9udW1iZXIiOiBudWxsCiAgICAgIH0sCiAgICAgICJwZW5kaW5nIjogZmFsc2UsCiAgICAgICJwZW5kaW5nX3RyYW5zYWN0aW9uX2lkIjogbnVsbCwKICAgICAgInBlcnNvbmFsX2ZpbmFuY2VfY2F0ZWdvcnkiOiB7CiAgICAgICAgImNvbmZpZGVuY2VfbGV2ZWwiOiAiTE9XIiwKICAgICAgICAiZGV0YWlsZWQiOiAiR0VORVJBTF9NRVJDSEFORElTRV9PVEhFUl9HRU5FUkFMX01FUkNIQU5ESVNFIiwKICAgICAgICAicHJpbWFyeSI6ICJHRU5FUkFMX01FUkNIQU5ESVNFIgogICAgICB9LAogICAgICAicGVyc29uYWxfZmluYW5jZV9jYXRlZ29yeV9pY29uX3VybCI6ICJodHRwczovL3BsYWlkLWNhdGVnb3J5LWljb25zLnBsYWlkLmNvbS9QRkNfR0VORVJBTF9NRVJDSEFORElTRS5wbmciLAogICAgICAidHJhbnNhY3Rpb25fY29kZSI6IG51bGwsCiAgICAgICJ0cmFuc2FjdGlvbl9pZCI6ICJSV21HUDVvTXpkdHJlUm9qZG05emk1d0V2bXFOVnBIYXBiQUJEIiwKICAgICAgInRyYW5zYWN0aW9uX3R5cGUiOiAicGxhY2UiLAogICAgICAidW5vZmZpY2lhbF9jdXJyZW5jeV9jb2RlIjogbnVsbCwKICAgICAgIndlYnNpdGUiOiBudWxsCiAgICB9LAogICAgewogICAgICAiYWNjb3VudF9pZCI6ICJadmxCTDVlTVBRdG5YRFY2UXJSOXNSZU5WVnoxWEFpZWFnRFB6IiwKICAgICAgImFjY291bnRfb3duZXIiOiBudWxsLAogICAgICAiYW1vdW50IjogMTEuMTIsCiAgICAgICJhdXRob3JpemVkX2RhdGUiOiAiMjAyNC0wMS0xMCIsCiAgICAgICJhdXRob3JpemVkX2RhdGV0aW1lIjogbnVsbCwKICAgICAgImNhdGVnb3J5IjogWwogICAgICAgICJTZXJ2aWNlIiwKICAgICAgICAiRm9vZCBhbmQgQmV2ZXJhZ2UiCiAgICAgIF0sCiAgICAgICJjYXRlZ29yeV9pZCI6ICIxODAyMTAwMCIsCiAgICAgICJjaGVja19udW1iZXIiOiBudWxsLAogICAgICAiY291bnRlcnBhcnRpZXMiOiBbCiAgICAgICAgewogICAgICAgICAgImNvbmZpZGVuY2VfbGV2ZWwiOiAiVkVSWV9ISUdIIiwKICAgICAgICAgICJlbnRpdHlfaWQiOiAiWU5SSmc1bzJkakpMdjUybkJBMVluMUtwTDg1OGVnWVZvNGRwbSIsCiAgICAgICAgICAibG9nb191cmwiOiAiaHR0cHM6Ly9wbGFpZC1jb3VudGVycGFydHktbG9nb3MucGxhaWQuY29tL2Rvb3JkYXNoXzEucG5nIiwKICAgICAgICAgICJuYW1lIjogIkRvb3JEYXNoIiwKICAgICAgICAgICJwaG9uZV9udW1iZXIiOiBudWxsLAogICAgICAgICAgInR5cGUiOiAibWFya2V0cGxhY2UiLAogICAgICAgICAgIndlYnNpdGUiOiAiZG9vcmRhc2guY29tIgogICAgICAgIH0KICAgICAgXSwKICAgICAgImRhdGUiOiAiMjAyNC0wMS0xMyIsCiAgICAgICJkYXRldGltZSI6IG51bGwsCiAgICAgICJpc29fY3VycmVuY3lfY29kZSI6ICJVU0QiLAogICAgICAibG9jYXRpb24iOiB7CiAgICAgICAgImFkZHJlc3MiOiBudWxsLAogICAgICAgICJjaXR5IjogbnVsbCwKICAgICAgICAiY291bnRyeSI6IG51bGwsCiAgICAgICAgImxhdCI6IG51bGwsCiAgICAgICAgImxvbiI6IG51bGwsCiAgICAgICAgInBvc3RhbF9jb2RlIjogbnVsbCwKICAgICAgICAicmVnaW9uIjogbnVsbCwKICAgICAgICAic3RvcmVfbnVtYmVyIjogbnVsbAogICAgICB9LAogICAgICAibG9nb191cmwiOiBudWxsLAogICAgICAibWVyY2hhbnRfZW50aXR5X2lkIjogbnVsbCwKICAgICAgIm1lcmNoYW50X25hbWUiOiAiRG9vckRhc2giLAogICAgICAibmFtZSI6ICJXZW5keSdzIiwKICAgICAgIm9yaWdpbmFsX2Rlc2NyaXB0aW9uIjogIkRPT1JEQVNIKldFTkRZUyIsCiAgICAgICJwYXltZW50X2NoYW5uZWwiOiAib25saW5lIiwKICAgICAgInBheW1lbnRfbWV0YSI6IHsKICAgICAgICAiYnlfb3JkZXJfb2YiOiBudWxsLAogICAgICAgICJwYXllZSI6IG51bGwsCiAgICAgICAgInBheWVyIjogbnVsbCwKICAgICAgICAicGF5bWVudF9tZXRob2QiOiBudWxsLAogICAgICAgICJwYXltZW50X3Byb2Nlc3NvciI6IG51bGwsCiAgICAgICAgInBwZF9pZCI6IG51bGwsCiAgICAgICAgInJlYXNvbiI6IG51bGwsCiAgICAgICAgInJlZmVyZW5jZV9udW1iZXIiOiBudWxsCiAgICAgIH0sCiAgICAgICJwZW5kaW5nIjogZmFsc2UsCiAgICAgICJwZW5kaW5nX3RyYW5zYWN0aW9uX2lkIjogbnVsbCwKICAgICAgInBlcnNvbmFsX2ZpbmFuY2VfY2F0ZWdvcnkiOiB7CiAgICAgICAgImNvbmZpZGVuY2VfbGV2ZWwiOiAiTUVESVVNIiwKICAgICAgICAiZGV0YWlsZWQiOiAiRk9PRF9BTkRfRFJJTktfUkVTVEFVUkFOVCIsCiAgICAgICAgInByaW1hcnkiOiAiRk9PRF9BTkRfRFJJTksiCiAgICAgIH0sCiAgICAgICJwZXJzb25hbF9maW5hbmNlX2NhdGVnb3J5X2ljb25fdXJsIjogImh0dHBzOi8vcGxhaWQtY2F0ZWdvcnktaWNvbnMucGxhaWQuY29tL1BGQ19GT09EX0FORF9EUklOSy5wbmciLAogICAgICAidHJhbnNhY3Rpb25fY29kZSI6IG51bGwsCiAgICAgICJ0cmFuc2FjdGlvbl9pZCI6ICI2UnJ2UDhkNmFRdDhSZGFFQXdXa0ZieUQ2bFJXakxpOERYZXk0IiwKICAgICAgInRyYW5zYWN0aW9uX3R5cGUiOiAicGxhY2UiLAogICAgICAidW5vZmZpY2lhbF9jdXJyZW5jeV9jb2RlIjogbnVsbCwKICAgICAgIndlYnNpdGUiOiBudWxsCiAgICB9LAogICAgewogICAgICAiYWNjb3VudF9pZCI6ICJadmxCTDVlTVBRdG5YRFY2UXJSOXNSZU5WVnoxWEFpZWFnRFB6IiwKICAgICAgImFjY291bnRfb3duZXIiOiBudWxsLAogICAgICAiYW1vdW50IjogMzguOTksCiAgICAgICJhdXRob3JpemVkX2RhdGUiOiAiMjAyNC0wMS0xMiIsCiAgICAgICJhdXRob3JpemVkX2RhdGV0aW1lIjogbnVsbCwKICAgICAgImNhdGVnb3J5IjogWwogICAgICAgICJTaG9wcyIsCiAgICAgICAgIkNsb3RoaW5nIGFuZCBBY2Nlc3NvcmllcyIKICAgICAgXSwKICAgICAgImNhdGVnb3J5X2lkIjogIjE5MDEyMDAwIiwKICAgICAgImNoZWNrX251bWJlciI6IG51bGwsCiAgICAgICJjb3VudGVycGFydGllcyI6IFsKICAgICAgICB7CiAgICAgICAgICAiY29uZmlkZW5jZV9sZXZlbCI6ICJWRVJZX0hJR0giLAogICAgICAgICAgImVudGl0eV9pZCI6ICI1dzlEUVhBOGd6Tnlib1hlV09wT092NzQ4YjJCWm5aYU1uckExIiwKICAgICAgICAgICJsb2dvX3VybCI6ICJodHRwczovL3BsYWlkLW1lcmNoYW50LWxvZ29zLnBsYWlkLmNvbS9hZGlkYXNfMTYucG5nIiwKICAgICAgICAgICJuYW1lIjogIkFkaWRhcyIsCiAgICAgICAgICAicGhvbmVfbnVtYmVyIjogbnVsbCwKICAgICAgICAgICJ0eXBlIjogIm1lcmNoYW50IiwKICAgICAgICAgICJ3ZWJzaXRlIjogImFkaWRhcy5jb20iCiAgICAgICAgfQogICAgICBdLAogICAgICAiZGF0ZSI6ICIyMDI0LTAxLTEzIiwKICAgICAgImRhdGV0aW1lIjogbnVsbCwKICAgICAgImlzb19jdXJyZW5jeV9jb2RlIjogIlVTRCIsCiAgICAgICJsb2NhdGlvbiI6IHsKICAgICAgICAiYWRkcmVzcyI6IG51bGwsCiAgICAgICAgImNpdHkiOiBudWxsLAogICAgICAgICJjb3VudHJ5IjogbnVsbCwKICAgICAgICAibGF0IjogbnVsbCwKICAgICAgICAibG9uIjogbnVsbCwKICAgICAgICAicG9zdGFsX2NvZGUiOiBudWxsLAogICAgICAgICJyZWdpb24iOiBudWxsLAogICAgICAgICJzdG9yZV9udW1iZXIiOiBudWxsCiAgICAgIH0sCiAgICAgICJsb2dvX3VybCI6ICJodHRwczovL3BsYWlkLW1lcmNoYW50LWxvZ29zLnBsYWlkLmNvbS9hZGlkYXNfMTYucG5nIiwKICAgICAgIm1lcmNoYW50X2VudGl0eV9pZCI6ICI1dzlEUVhBOGd6Tnlib1hlV09wT092NzQ4YjJCWm5aYU1uckExIiwKICAgICAgIm1lcmNoYW50X25hbWUiOiAiQWRpZGFzIiwKICAgICAgIm5hbWUiOiAiQURJREFTIDAxMjMiLAogICAgICAib3JpZ2luYWxfZGVzY3JpcHRpb24iOiAiQURJREFTIDAxMjMiLAogICAgICAicGF5bWVudF9jaGFubmVsIjogImluIHN0b3JlIiwKICAgICAgInBheW1lbnRfbWV0YSI6IHsKICAgICAgICAiYnlfb3JkZXJfb2YiOiBudWxsLAogICAgICAgICJwYXllZSI6IG51bGwsCiAgICAgICAgInBheWVyIjogbnVsbCwKICAgICAgICAicGF5bWVudF9tZXRob2QiOiBudWxsLAogICAgICAgICJwYXltZW50X3Byb2Nlc3NvciI6IG51bGwsCiAgICAgICAgInBwZF9pZCI6IG51bGwsCiAgICAgICAgInJlYXNvbiI6IG51bGwsCiAgICAgICAgInJlZmVyZW5jZV9udW1iZXIiOiBudWxsCiAgICAgIH0sCiAgICAgICJwZW5kaW5nIjogZmFsc2UsCiAgICAgICJwZW5kaW5nX3RyYW5zYWN0aW9uX2lkIjogbnVsbCwKICAgICAgInBlcnNvbmFsX2ZpbmFuY2VfY2F0ZWdvcnkiOiB7CiAgICAgICAgImNvbmZpZGVuY2VfbGV2ZWwiOiAiVkVSWV9ISUdIIiwKICAgICAgICAiZGV0YWlsZWQiOiAiR0VORVJBTF9NRVJDSEFORElTRV9TUE9SVElOR19HT09EUyIsCiAgICAgICAgInByaW1hcnkiOiAiR0VORVJBTF9NRVJDSEFORElTRSIKICAgICAgfSwKICAgICAgInBlcnNvbmFsX2ZpbmFuY2VfY2F0ZWdvcnlfaWNvbl91cmwiOiAiaHR0cHM6Ly9wbGFpZC1jYXRlZ29yeS1pY29ucy5wbGFpZC5jb20vUEZDX0dFTkVSQUxfTUVSQ0hBTkRJU0UucG5nIiwKICAgICAgInRyYW5zYWN0aW9uX2NvZGUiOiBudWxsLAogICAgICAidHJhbnNhY3Rpb25faWQiOiAiWHlYck01Qkc0N2ZtUHBHRDc2OTRVNnFQeUpYOGRlY2JLbkwzMyIsCiAgICAgICJ0cmFuc2FjdGlvbl90eXBlIjogInBsYWNlIiwKICAgICAgInVub2ZmaWNpYWxfY3VycmVuY3lfY29kZSI6IG51bGwsCiAgICAgICJ3ZWJzaXRlIjogImFkaWRhcy5jb20iCiAgICB9LAogICAgewogICAgICAiYWNjb3VudF9pZCI6ICJadmxCTDVlTVBRdG5YRFY2UXJSOXNSZU5WVnoxWEFpZWFnRFB6IiwKICAgICAgImFjY291bnRfb3duZXIiOiBudWxsLAogICAgICAiYW1vdW50IjogMy4yMywKICAgICAgImF1dGhvcml6ZWRfZGF0ZSI6ICIyMDI0LTAxLTEyIiwKICAgICAgImF1dGhvcml6ZWRfZGF0ZXRpbWUiOiBudWxsLAogICAgICAiY2F0ZWdvcnkiOiBbCiAgICAgICAgIlRyYXZlbCIsCiAgICAgICAgIkdhcyBTdGF0aW9ucyIKICAgICAgXSwKICAgICAgImNhdGVnb3J5X2lkIjogIjIyMDA5MDAwIiwKICAgICAgImNoZWNrX251bWJlciI6IG51bGwsCiAgICAgICJjb3VudGVycGFydGllcyI6IFsKICAgICAgICB7CiAgICAgICAgICAiY29uZmlkZW5jZV9sZXZlbCI6ICJWRVJZX0hJR0giLAogICAgICAgICAgImVudGl0eV9pZCI6ICJnS1ZFd0xvdzNMeUs0cWJidktuNm9MdkJtWFhMQTB5NzlZQkJ6IiwKICAgICAgICAgICJsb2dvX3VybCI6ICJodHRwczovL3BsYWlkLW1lcmNoYW50LWxvZ29zLnBsYWlkLmNvbS9sb3Zlc190cmF2ZWxfc3RvcHNfNTkwLnBuZyIsCiAgICAgICAgICAibmFtZSI6ICJMb3ZlJ3MgVHJhdmVsIFN0b3BzIiwKICAgICAgICAgICJwaG9uZV9udW1iZXIiOiBudWxsLAogICAgICAgICAgInR5cGUiOiAibWVyY2hhbnQiLAogICAgICAgICAgIndlYnNpdGUiOiAibG92ZXMuY29tIgogICAgICAgIH0KICAgICAgXSwKICAgICAgImRhdGUiOiAiMjAyNC0wMS0xMyIsCiAgICAgICJkYXRldGltZSI6IG51bGwsCiAgICAgICJpc29fY3VycmVuY3lfY29kZSI6ICJVU0QiLAogICAgICAibG9jYXRpb24iOiB7CiAgICAgICAgImFkZHJlc3MiOiBudWxsLAogICAgICAgICJjaXR5IjogbnVsbCwKICAgICAgICAiY291bnRyeSI6IG51bGwsCiAgICAgICAgImxhdCI6IG51bGwsCiAgICAgICAgImxvbiI6IG51bGwsCiAgICAgICAgInBvc3RhbF9jb2RlIjogbnVsbCwKICAgICAgICAicmVnaW9uIjogbnVsbCwKICAgICAgICAic3RvcmVfbnVtYmVyIjogbnVsbAogICAgICB9LAogICAgICAibG9nb191cmwiOiAiaHR0cHM6Ly9wbGFpZC1tZXJjaGFudC1sb2dvcy5wbGFpZC5jb20vbG92ZXNfdHJhdmVsX3N0b3BzXzU5MC5wbmciLAogICAgICAibWVyY2hhbnRfZW50aXR5X2lkIjogImdLVkV3TG93M0x5SzRxYmJ2S242b0x2Qm1YWExBMHk3OVlCQnoiLAogICAgICAibWVyY2hhbnRfbmFtZSI6ICJMb3ZlJ3MgVHJhdmVsIFN0b3BzIiwKICAgICAgIm5hbWUiOiAiTE9WRSBTIFRSQVZFTCAwMTIzNDU2NyIsCiAgICAgICJvcmlnaW5hbF9kZXNjcmlwdGlvbiI6ICJMT1ZFIFMgVFJBVkVMIDAxMjM0NTY3IiwKICAgICAgInBheW1lbnRfY2hhbm5lbCI6ICJpbiBzdG9yZSIsCiAgICAgICJwYXltZW50X21ldGEiOiB7CiAgICAgICAgImJ5X29yZGVyX29mIjogbnVsbCwKICAgICAgICAicGF5ZWUiOiBudWxsLAogICAgICAgICJwYXllciI6IG51bGwsCiAgICAgICAgInBheW1lbnRfbWV0aG9kIjogbnVsbCwKICAgICAgICAicGF5bWVudF9wcm9jZXNzb3IiOiBudWxsLAogICAgICAgICJwcGRfaWQiOiBudWxsLAogICAgICAgICJyZWFzb24iOiBudWxsLAogICAgICAgICJyZWZlcmVuY2VfbnVtYmVyIjogbnVsbAogICAgICB9LAogICAgICAicGVuZGluZyI6IGZhbHNlLAogICAgICAicGVuZGluZ190cmFuc2FjdGlvbl9pZCI6IG51bGwsCiAgICAgICJwZXJzb25hbF9maW5hbmNlX2NhdGVnb3J5IjogewogICAgICAgICJjb25maWRlbmNlX2xldmVsIjogIlZFUllfSElHSCIsCiAgICAgICAgImRldGFpbGVkIjogIlRSQU5TUE9SVEFUSU9OX0dBUyIsCiAgICAgICAgInByaW1hcnkiOiAiVFJBTlNQT1JUQVRJT04iCiAgICAgIH0sCiAgICAgICJwZXJzb25hbF9maW5hbmNlX2NhdGVnb3J5X2ljb25fdXJsIjogImh0dHBzOi8vcGxhaWQtY2F0ZWdvcnktaWNvbnMucGxhaWQuY29tL1BGQ19UUkFOU1BPUlRBVElPTi5wbmciLAogICAgICAidHJhbnNhY3Rpb25fY29kZSI6IG51bGwsCiAgICAgICJ0cmFuc2FjdGlvbl9pZCI6ICJEUFpCVzVWcWdiRlA3NjR6YnBxbVN2aldKRFBnM2J0M1dhSmtCIiwKICAgICAgInRyYW5zYWN0aW9uX3R5cGUiOiAicGxhY2UiLAogICAgICAidW5vZmZpY2lhbF9jdXJyZW5jeV9jb2RlIjogbnVsbCwKICAgICAgIndlYnNpdGUiOiAibG92ZXMuY29tIgogICAgfSwKICAgIHsKICAgICAgImFjY291bnRfaWQiOiAiWnZsQkw1ZU1QUXRuWERWNlFyUjlzUmVOVlZ6MVhBaWVhZ0RQeiIsCiAgICAgICJhY2NvdW50X293bmVyIjogbnVsbCwKICAgICAgImFtb3VudCI6IDczLjE4LAogICAgICAiYXV0aG9yaXplZF9kYXRlIjogIjIwMjQtMDEtMTIiLAogICAgICAiYXV0aG9yaXplZF9kYXRldGltZSI6IG51bGwsCiAgICAgICJjYXRlZ29yeSI6IFsKICAgICAgICAiU2VydmljZSIsCiAgICAgICAgIkZvb2QgYW5kIEJldmVyYWdlIgogICAgICBdLAogICAgICAiY2F0ZWdvcnlfaWQiOiAiMTgwMjEwMDAiLAogICAgICAiY2hlY2tfbnVtYmVyIjogbnVsbCwKICAgICAgImNvdW50ZXJwYXJ0aWVzIjogW10sCiAgICAgICJkYXRlIjogIjIwMjQtMDEtMTMiLAogICAgICAiZGF0ZXRpbWUiOiBudWxsLAogICAgICAiaXNvX2N1cnJlbmN5X2NvZGUiOiAiVVNEIiwKICAgICAgImxvY2F0aW9uIjogewogICAgICAgICJhZGRyZXNzIjogbnVsbCwKICAgICAgICAiY2l0eSI6IG51bGwsCiAgICAgICAgImNvdW50cnkiOiBudWxsLAogICAgICAgICJsYXQiOiBudWxsLAogICAgICAgICJsb24iOiBudWxsLAogICAgICAgICJwb3N0YWxfY29kZSI6IG51bGwsCiAgICAgICAgInJlZ2lvbiI6ICJOWSIsCiAgICAgICAgInN0b3JlX251bWJlciI6IG51bGwKICAgICAgfSwKICAgICAgImxvZ29fdXJsIjogbnVsbCwKICAgICAgIm1lcmNoYW50X2VudGl0eV9pZCI6IG51bGwsCiAgICAgICJtZXJjaGFudF9uYW1lIjogbnVsbCwKICAgICAgIm5hbWUiOiAiRkRIKkZSRVNIIERJUkVDVCIsCiAgICAgICJvcmlnaW5hbF9kZXNjcmlwdGlvbiI6ICJGREgqRlJFU0ggRElSRUNUIDAxMi0wMTItMDEyMyBOWSIsCiAgICAgICJwYXltZW50X2NoYW5uZWwiOiAib25saW5lIiwKICAgICAgInBheW1lbnRfbWV0YSI6IHsKICAgICAgICAiYnlfb3JkZXJfb2YiOiBudWxsLAogICAgICAgICJwYXllZSI6IG51bGwsCiAgICAgICAgInBheWVyIjogbnVsbCwKICAgICAgICAicGF5bWVudF9tZXRob2QiOiBudWxsLAogICAgICAgICJwYXltZW50X3Byb2Nlc3NvciI6IG51bGwsCiAgICAgICAgInBwZF9pZCI6IG51bGwsCiAgICAgICAgInJlYXNvbiI6IG51bGwsCiAgICAgICAgInJlZmVyZW5jZV9udW1iZXIiOiBudWxsCiAgICAgIH0sCiAgICAgICJwZW5kaW5nIjogZmFsc2UsCiAgICAgICJwZW5kaW5nX3RyYW5zYWN0aW9uX2lkIjogbnVsbCwKICAgICAgInBlcnNvbmFsX2ZpbmFuY2VfY2F0ZWdvcnkiOiB7CiAgICAgICAgImNvbmZpZGVuY2VfbGV2ZWwiOiAiTE9XIiwKICAgICAgICAiZGV0YWlsZWQiOiAiR0VORVJBTF9NRVJDSEFORElTRV9HSUZUU19BTkRfTk9WRUxUSUVTIiwKICAgICAgICAicHJpbWFyeSI6ICJHRU5FUkFMX01FUkNIQU5ESVNFIgogICAgICB9LAogICAgICAicGVyc29uYWxfZmluYW5jZV9jYXRlZ29yeV9pY29uX3VybCI6ICJodHRwczovL3BsYWlkLWNhdGVnb3J5LWljb25zLnBsYWlkLmNvbS9QRkNfR0VORVJBTF9NRVJDSEFORElTRS5wbmciLAogICAgICAidHJhbnNhY3Rpb25fY29kZSI6IG51bGwsCiAgICAgICJ0cmFuc2FjdGlvbl9pZCI6ICJWYlJxUTVyTGRQY242UnFWUDRRZHNYSkcxOFZRM0V0OWdQRXdlIiwKICAgICAgInRyYW5zYWN0aW9uX3R5cGUiOiAicGxhY2UiLAogICAgICAidW5vZmZpY2lhbF9jdXJyZW5jeV9jb2RlIjogbnVsbCwKICAgICAgIndlYnNpdGUiOiBudWxsCiAgICB9LAogICAgewogICAgICAiYWNjb3VudF9pZCI6ICJadmxCTDVlTVBRdG5YRFY2UXJSOXNSZU5WVnoxWEFpZWFnRFB6IiwKICAgICAgImFjY291bnRfb3duZXIiOiBudWxsLAogICAgICAiYW1vdW50IjogMjQuMSwKICAgICAgImF1dGhvcml6ZWRfZGF0ZSI6ICIyMDI0LTAxLTA4IiwKICAgICAgImF1dGhvcml6ZWRfZGF0ZXRpbWUiOiBudWxsLAogICAgICAiY2F0ZWdvcnkiOiBbCiAgICAgICAgIlNob3BzIiwKICAgICAgICAiTXVzaWMsIFZpZGVvIGFuZCBEVkQiCiAgICAgIF0sCiAgICAgICJjYXRlZ29yeV9pZCI6ICIxOTAzNjAwMCIsCiAgICAgICJjaGVja19udW1iZXIiOiBudWxsLAogICAgICAiY291bnRlcnBhcnRpZXMiOiBbCiAgICAgICAgewogICAgICAgICAgImNvbmZpZGVuY2VfbGV2ZWwiOiAiVkVSWV9ISUdIIiwKICAgICAgICAgICJlbnRpdHlfaWQiOiAibUJrcDV5Tm5XTHprT0RiMlhuNUJPMWQ2UmJBV05YamVqRXp2cCIsCiAgICAgICAgICAibG9nb191cmwiOiAiaHR0cHM6Ly9wbGFpZC1tZXJjaGFudC1sb2dvcy5wbGFpZC5jb20vdnVkdV8xMDk1LnBuZyIsCiAgICAgICAgICAibmFtZSI6ICJWdWR1IiwKICAgICAgICAgICJwaG9uZV9udW1iZXIiOiBudWxsLAogICAgICAgICAgInR5cGUiOiAibWVyY2hhbnQiLAogICAgICAgICAgIndlYnNpdGUiOiAidnVkdS5jb20iCiAgICAgICAgfQogICAgICBdLAogICAgICAiZGF0ZSI6ICIyMDI0LTAxLTEwIiwKICAgICAgImRhdGV0aW1lIjogbnVsbCwKICAgICAgImlzb19jdXJyZW5jeV9jb2RlIjogIlVTRCIsCiAgICAgICJsb2NhdGlvbiI6IHsKICAgICAgICAiYWRkcmVzcyI6IG51bGwsCiAgICAgICAgImNpdHkiOiBudWxsLAogICAgICAgICJjb3VudHJ5IjogbnVsbCwKICAgICAgICAibGF0IjogbnVsbCwKICAgICAgICAibG9uIjogbnVsbCwKICAgICAgICAicG9zdGFsX2NvZGUiOiBudWxsLAogICAgICAgICJyZWdpb24iOiBudWxsLAogICAgICAgICJzdG9yZV9udW1iZXIiOiBudWxsCiAgICAgIH0sCiAgICAgICJsb2dvX3VybCI6ICJodHRwczovL3BsYWlkLW1lcmNoYW50LWxvZ29zLnBsYWlkLmNvbS92dWR1XzEwOTUucG5nIiwKICAgICAgIm1lcmNoYW50X2VudGl0eV9pZCI6ICJtQmtwNXlObldMemtPRGIyWG41Qk8xZDZSYkFXTlhqZWpFenZwIiwKICAgICAgIm1lcmNoYW50X25hbWUiOiAiVnVkdSIsCiAgICAgICJuYW1lIjogIlZVRFUuQ09NIiwKICAgICAgIm9yaWdpbmFsX2Rlc2NyaXB0aW9uIjogIlZVRFUuQ09NIiwKICAgICAgInBheW1lbnRfY2hhbm5lbCI6ICJvbmxpbmUiLAogICAgICAicGF5bWVudF9tZXRhIjogewogICAgICAgICJieV9vcmRlcl9vZiI6IG51bGwsCiAgICAgICAgInBheWVlIjogbnVsbCwKICAgICAgICAicGF5ZXIiOiBudWxsLAogICAgICAgICJwYXltZW50X21ldGhvZCI6IG51bGwsCiAgICAgICAgInBheW1lbnRfcHJvY2Vzc29yIjogbnVsbCwKICAgICAgICAicHBkX2lkIjogbnVsbCwKICAgICAgICAicmVhc29uIjogbnVsbCwKICAgICAgICAicmVmZXJlbmNlX251bWJlciI6IG51bGwKICAgICAgfSwKICAgICAgInBlbmRpbmciOiBmYWxzZSwKICAgICAgInBlbmRpbmdfdHJhbnNhY3Rpb25faWQiOiBudWxsLAogICAgICAicGVyc29uYWxfZmluYW5jZV9jYXRlZ29yeSI6IHsKICAgICAgICAiY29uZmlkZW5jZV9sZXZlbCI6ICJWRVJZX0hJR0giLAogICAgICAgICJkZXRhaWxlZCI6ICJFTlRFUlRBSU5NRU5UX1RWX0FORF9NT1ZJRVMiLAogICAgICAgICJwcmltYXJ5IjogIkVOVEVSVEFJTk1FTlQiCiAgICAgIH0sCiAgICAgICJwZXJzb25hbF9maW5hbmNlX2NhdGVnb3J5X2ljb25fdXJsIjogImh0dHBzOi8vcGxhaWQtY2F0ZWdvcnktaWNvbnMucGxhaWQuY29tL1BGQ19FTlRFUlRBSU5NRU5ULnBuZyIsCiAgICAgICJ0cmFuc2FjdGlvbl9jb2RlIjogbnVsbCwKICAgICAgInRyYW5zYWN0aW9uX2lkIjogIndXbnFwakpsZGF0UWJydkp5ZGpFVEtQREIzSjRFOWNQWm9tNW8iLAogICAgICAidHJhbnNhY3Rpb25fdHlwZSI6ICJwbGFjZSIsCiAgICAgICJ1bm9mZmljaWFsX2N1cnJlbmN5X2NvZGUiOiBudWxsLAogICAgICAid2Vic2l0ZSI6ICJ2dWR1LmNvbSIKICAgIH0sCiAgICB7CiAgICAgICJhY2NvdW50X2lkIjogIlp2bEJMNWVNUFF0blhEVjZRclI5c1JlTlZWejFYQWllYWdEUHoiLAogICAgICAiYWNjb3VudF9vd25lciI6IG51bGwsCiAgICAgICJhbW91bnQiOiAyMi41NCwKICAgICAgImF1dGhvcml6ZWRfZGF0ZSI6ICIyMDI0LTAxLTA4IiwKICAgICAgImF1dGhvcml6ZWRfZGF0ZXRpbWUiOiBudWxsLAogICAgICAiY2F0ZWdvcnkiOiBbCiAgICAgICAgIlRyYXZlbCIsCiAgICAgICAgIkdhcyBTdGF0aW9ucyIKICAgICAgXSwKICAgICAgImNhdGVnb3J5X2lkIjogIjIyMDA5MDAwIiwKICAgICAgImNoZWNrX251bWJlciI6IG51bGwsCiAgICAgICJjb3VudGVycGFydGllcyI6IFsKICAgICAgICB7CiAgICAgICAgICAiY29uZmlkZW5jZV9sZXZlbCI6ICJMT1ciLAogICAgICAgICAgImVudGl0eV9pZCI6IG51bGwsCiAgICAgICAgICAibG9nb191cmwiOiBudWxsLAogICAgICAgICAgIm5hbWUiOiAiVW5pdGVkIE9pbCIsCiAgICAgICAgICAicGhvbmVfbnVtYmVyIjogbnVsbCwKICAgICAgICAgICJ0eXBlIjogIm1lcmNoYW50IiwKICAgICAgICAgICJ3ZWJzaXRlIjogbnVsbAogICAgICAgIH0KICAgICAgXSwKICAgICAgImRhdGUiOiAiMjAyNC0wMS0xMCIsCiAgICAgICJkYXRldGltZSI6IG51bGwsCiAgICAgICJpc29fY3VycmVuY3lfY29kZSI6ICJVU0QiLAogICAgICAibG9jYXRpb24iOiB7CiAgICAgICAgImFkZHJlc3MiOiBudWxsLAogICAgICAgICJjaXR5IjogbnVsbCwKICAgICAgICAiY291bnRyeSI6IG51bGwsCiAgICAgICAgImxhdCI6IG51bGwsCiAgICAgICAgImxvbiI6IG51bGwsCiAgICAgICAgInBvc3RhbF9jb2RlIjogbnVsbCwKICAgICAgICAicmVnaW9uIjogbnVsbCwKICAgICAgICAic3RvcmVfbnVtYmVyIjogbnVsbAogICAgICB9LAogICAgICAibG9nb191cmwiOiBudWxsLAogICAgICAibWVyY2hhbnRfZW50aXR5X2lkIjogbnVsbCwKICAgICAgIm1lcmNoYW50X25hbWUiOiAiVW5pdGVkIE9pbCIsCiAgICAgICJuYW1lIjogIjAxIC0gVU5JVEVEIE9JTCAwMTIiLAogICAgICAib3JpZ2luYWxfZGVzY3JpcHRpb24iOiAiMDEgLSBVTklURUQgT0lMIDAxMiIsCiAgICAgICJwYXltZW50X2NoYW5uZWwiOiAiaW4gc3RvcmUiLAogICAgICAicGF5bWVudF9tZXRhIjogewogICAgICAgICJieV9vcmRlcl9vZiI6IG51bGwsCiAgICAgICAgInBheWVlIjogbnVsbCwKICAgICAgICAicGF5ZXIiOiBudWxsLAogICAgICAgICJwYXltZW50X21ldGhvZCI6IG51bGwsCiAgICAgICAgInBheW1lbnRfcHJvY2Vzc29yIjogbnVsbCwKICAgICAgICAicHBkX2lkIjogbnVsbCwKICAgICAgICAicmVhc29uIjogbnVsbCwKICAgICAgICAicmVmZXJlbmNlX251bWJlciI6IG51bGwKICAgICAgfSwKICAgICAgInBlbmRpbmciOiBmYWxzZSwKICAgICAgInBlbmRpbmdfdHJhbnNhY3Rpb25faWQiOiBudWxsLAogICAgICAicGVyc29uYWxfZmluYW5jZV9jYXRlZ29yeSI6IHsKICAgICAgICAiY29uZmlkZW5jZV9sZXZlbCI6ICJMT1ciLAogICAgICAgICJkZXRhaWxlZCI6ICJHRU5FUkFMX01FUkNIQU5ESVNFX09USEVSX0dFTkVSQUxfTUVSQ0hBTkRJU0UiLAogICAgICAgICJwcmltYXJ5IjogIkdFTkVSQUxfTUVSQ0hBTkRJU0UiCiAgICAgIH0sCiAgICAgICJwZXJzb25hbF9maW5hbmNlX2NhdGVnb3J5X2ljb25fdXJsIjogImh0dHBzOi8vcGxhaWQtY2F0ZWdvcnktaWNvbnMucGxhaWQuY29tL1BGQ19HRU5FUkFMX01FUkNIQU5ESVNFLnBuZyIsCiAgICAgICJ0cmFuc2FjdGlvbl9jb2RlIjogbnVsbCwKICAgICAgInRyYW5zYWN0aW9uX2lkIjogIjV2SzVOZzZiZGV0a1g0ZERBNk5iU3FaSzdRRG9YTXU1Szc4V2QiLAogICAgICAidHJhbnNhY3Rpb25fdHlwZSI6ICJwbGFjZSIsCiAgICAgICJ1bm9mZmljaWFsX2N1cnJlbmN5X2NvZGUiOiBudWxsLAogICAgICAid2Vic2l0ZSI6IG51bGwKICAgIH0sCiAgICB7CiAgICAgICJhY2NvdW50X2lkIjogIlp2bEJMNWVNUFF0blhEVjZRclI5c1JlTlZWejFYQWllYWdEUHoiLAogICAgICAiYWNjb3VudF9vd25lciI6IG51bGwsCiAgICAgICJhbW91bnQiOiAyNTYuNDEsCiAgICAgICJhdXRob3JpemVkX2RhdGUiOiAiMjAyNC0wMS0xMCIsCiAgICAgICJhdXRob3JpemVkX2RhdGV0aW1lIjogbnVsbCwKICAgICAgImNhdGVnb3J5IjogbnVsbCwKICAgICAgImNhdGVnb3J5X2lkIjogbnVsbCwKICAgICAgImNoZWNrX251bWJlciI6IG51bGwsCiAgICAgICJjb3VudGVycGFydGllcyI6IFsKICAgICAgICB7CiAgICAgICAgICAiY29uZmlkZW5jZV9sZXZlbCI6ICJWRVJZX0hJR0giLAogICAgICAgICAgImVudGl0eV9pZCI6ICI2NXZZYm1BV040TXo4bW1lSzhYTTh2b055NWVZMktKcHZCSlhBIiwKICAgICAgICAgICJsb2dvX3VybCI6ICJodHRwczovL3BsYWlkLW1lcmNoYW50LWxvZ29zLnBsYWlkLmNvbS9nb29nbGVfYWRzXzEzOTMucG5nIiwKICAgICAgICAgICJuYW1lIjogIkdvb2dsZSBBZHMiLAogICAgICAgICAgInBob25lX251bWJlciI6IG51bGwsCiAgICAgICAgICAidHlwZSI6ICJtZXJjaGFudCIsCiAgICAgICAgICAid2Vic2l0ZSI6ICJhZHMuZ29vZ2xlLmNvbSIKICAgICAgICB9LAogICAgICAgIHsKICAgICAgICAgICJjb25maWRlbmNlX2xldmVsIjogIlZFUllfSElHSCIsCiAgICAgICAgICAiZW50aXR5X2lkIjogIjhMVkFONjlxdjRiTzIxcE5ndjNWRVpxQnlCMlYwTU9tODdtTUIiLAogICAgICAgICAgImxvZ29fdXJsIjogImh0dHBzOi8vcGxhaWQtY291bnRlcnBhcnR5LWxvZ29zLnBsYWlkLmNvbS9nb29nbGVfcGxheV8xMjAucG5nIiwKICAgICAgICAgICJuYW1lIjogIkdvb2dsZSBQbGF5IFN0b3JlIiwKICAgICAgICAgICJwaG9uZV9udW1iZXIiOiBudWxsLAogICAgICAgICAgInR5cGUiOiAibWFya2V0cGxhY2UiLAogICAgICAgICAgIndlYnNpdGUiOiAicGxheS5nb29nbGUuY29tL3N0b3JlIgogICAgICAgIH0KICAgICAgXSwKICAgICAgImRhdGUiOiAiMjAyNC0wMS0xMCIsCiAgICAgICJkYXRldGltZSI6IG51bGwsCiAgICAgICJpc29fY3VycmVuY3lfY29kZSI6ICJVU0QiLAogICAgICAibG9jYXRpb24iOiB7CiAgICAgICAgImFkZHJlc3MiOiBudWxsLAogICAgICAgICJjaXR5IjogbnVsbCwKICAgICAgICAiY291bnRyeSI6IG51bGwsCiAgICAgICAgImxhdCI6IG51bGwsCiAgICAgICAgImxvbiI6IG51bGwsCiAgICAgICAgInBvc3RhbF9jb2RlIjogbnVsbCwKICAgICAgICAicmVnaW9uIjogbnVsbCwKICAgICAgICAic3RvcmVfbnVtYmVyIjogbnVsbAogICAgICB9LAogICAgICAibG9nb191cmwiOiAiaHR0cHM6Ly9wbGFpZC1tZXJjaGFudC1sb2dvcy5wbGFpZC5jb20vZ29vZ2xlX2Fkc18xMzkzLnBuZyIsCiAgICAgICJtZXJjaGFudF9lbnRpdHlfaWQiOiAiNjV2WWJtQVdONE16OG1tZUs4WE04dm9OeTVlWTJLSnB2QkpYQSIsCiAgICAgICJtZXJjaGFudF9uYW1lIjogIkdvb2dsZSBBZHMiLAogICAgICAibmFtZSI6ICJBRFMwMTIzNDU2Nzg5IiwKICAgICAgIm9yaWdpbmFsX2Rlc2NyaXB0aW9uIjogIkdPT0dMRSAqQURTMDEyMzQ1Njc4OSIsCiAgICAgICJwYXltZW50X2NoYW5uZWwiOiAib25saW5lIiwKICAgICAgInBheW1lbnRfbWV0YSI6IHsKICAgICAgICAiYnlfb3JkZXJfb2YiOiBudWxsLAogICAgICAgICJwYXllZSI6IG51bGwsCiAgICAgICAgInBheWVyIjogbnVsbCwKICAgICAgICAicGF5bWVudF9tZXRob2QiOiBudWxsLAogICAgICAgICJwYXltZW50X3Byb2Nlc3NvciI6ICJHb29nbGUgV2FsbGV0IiwKICAgICAgICAicHBkX2lkIjogbnVsbCwKICAgICAgICAicmVhc29uIjogbnVsbCwKICAgICAgICAicmVmZXJlbmNlX251bWJlciI6IG51bGwKICAgICAgfSwKICAgICAgInBlbmRpbmciOiBmYWxzZSwKICAgICAgInBlbmRpbmdfdHJhbnNhY3Rpb25faWQiOiBudWxsLAogICAgICAicGVyc29uYWxfZmluYW5jZV9jYXRlZ29yeSI6IHsKICAgICAgICAiY29uZmlkZW5jZV9sZXZlbCI6ICJWRVJZX0hJR0giLAogICAgICAgICJkZXRhaWxlZCI6ICJHRU5FUkFMX1NFUlZJQ0VTX09USEVSX0dFTkVSQUxfU0VSVklDRVMiLAogICAgICAgICJwcmltYXJ5IjogIkdFTkVSQUxfU0VSVklDRVMiCiAgICAgIH0sCiAgICAgICJwZXJzb25hbF9maW5hbmNlX2NhdGVnb3J5X2ljb25fdXJsIjogImh0dHBzOi8vcGxhaWQtY2F0ZWdvcnktaWNvbnMucGxhaWQuY29tL1BGQ19HRU5FUkFMX1NFUlZJQ0VTLnBuZyIsCiAgICAgICJ0cmFuc2FjdGlvbl9jb2RlIjogbnVsbCwKICAgICAgInRyYW5zYWN0aW9uX2lkIjogIkpNZ1Z6NTl4bmxoTTFweUtsamtlVUFYWmdMSkR3NklCNmdrOWsiLAogICAgICAidHJhbnNhY3Rpb25fdHlwZSI6ICJ1bnJlc29sdmVkIiwKICAgICAgInVub2ZmaWNpYWxfY3VycmVuY3lfY29kZSI6IG51bGwsCiAgICAgICJ3ZWJzaXRlIjogImFkcy5nb29nbGUuY29tIgogICAgfSwKICAgIHsKICAgICAgImFjY291bnRfaWQiOiAiWnZsQkw1ZU1QUXRuWERWNlFyUjlzUmVOVlZ6MVhBaWVhZ0RQeiIsCiAgICAgICJhY2NvdW50X293bmVyIjogbnVsbCwKICAgICAgImFtb3VudCI6IDQuMzYsCiAgICAgICJhdXRob3JpemVkX2RhdGUiOiAiMjAyNC0wMS0xMCIsCiAgICAgICJhdXRob3JpemVkX2RhdGV0aW1lIjogbnVsbCwKICAgICAgImNhdGVnb3J5IjogWwogICAgICAgICJGb29kIGFuZCBEcmluayIsCiAgICAgICAgIlJlc3RhdXJhbnRzIiwKICAgICAgICAiRmFzdCBGb29kIgogICAgICBdLAogICAgICAiY2F0ZWdvcnlfaWQiOiAiMTMwMDUwMzIiLAogICAgICAiY2hlY2tfbnVtYmVyIjogbnVsbCwKICAgICAgImNvdW50ZXJwYXJ0aWVzIjogWwogICAgICAgIHsKICAgICAgICAgICJjb25maWRlbmNlX2xldmVsIjogIlZFUllfSElHSCIsCiAgICAgICAgICAiZW50aXR5X2lkIjogIm1Wcnc1Mzh3YW13ZG0yMm1LOGpxcHA3cWQ1YnIwZWVWOW80YTEiLAogICAgICAgICAgImxvZ29fdXJsIjogImh0dHBzOi8vcGxhaWQtbWVyY2hhbnQtbG9nb3MucGxhaWQuY29tL2J1cmdlcl9raW5nXzE1NS5wbmciLAogICAgICAgICAgIm5hbWUiOiAiQnVyZ2VyIEtpbmciLAogICAgICAgICAgInBob25lX251bWJlciI6IG51bGwsCiAgICAgICAgICAidHlwZSI6ICJtZXJjaGFudCIsCiAgICAgICAgICAid2Vic2l0ZSI6ICJidXJnZXJraW5nLmNvbSIKICAgICAgICB9CiAgICAgIF0sCiAgICAgICJkYXRlIjogIjIwMjQtMDEtMTAiLAogICAgICAiZGF0ZXRpbWUiOiBudWxsLAogICAgICAiaXNvX2N1cnJlbmN5X2NvZGUiOiAiVVNEIiwKICAgICAgImxvY2F0aW9uIjogewogICAgICAgICJhZGRyZXNzIjogIjJLTTE1OSBFc3RhdGFsIiwKICAgICAgICAiY2l0eSI6ICJNYXlhZ3VleiIsCiAgICAgICAgImNvdW50cnkiOiBudWxsLAogICAgICAgICJsYXQiOiBudWxsLAogICAgICAgICJsb24iOiBudWxsLAogICAgICAgICJwb3N0YWxfY29kZSI6ICIwMDY4MCIsCiAgICAgICAgInJlZ2lvbiI6ICJQUiIsCiAgICAgICAgInN0b3JlX251bWJlciI6ICIwMTIzIgogICAgICB9LAogICAgICAibG9nb191cmwiOiAiaHR0cHM6Ly9wbGFpZC1tZXJjaGFudC1sb2dvcy5wbGFpZC5jb20vYnVyZ2VyX2tpbmdfMTU1LnBuZyIsCiAgICAgICJtZXJjaGFudF9lbnRpdHlfaWQiOiAibVZydzUzOHdhbXdkbTIybUs4anFwcDdxZDVicjBlZVY5bzRhMSIsCiAgICAgICJtZXJjaGFudF9uYW1lIjogIkJ1cmdlciBLaW5nIiwKICAgICAgIm5hbWUiOiAiQnVyZ2VyIEtpbmciLAogICAgICAib3JpZ2luYWxfZGVzY3JpcHRpb24iOiAiQlVSR0VSIEtJTkcgIzAxMjMiLAogICAgICAicGF5bWVudF9jaGFubmVsIjogImluIHN0b3JlIiwKICAgICAgInBheW1lbnRfbWV0YSI6IHsKICAgICAgICAiYnlfb3JkZXJfb2YiOiBudWxsLAogICAgICAgICJwYXllZSI6IG51bGwsCiAgICAgICAgInBheWVyIjogbnVsbCwKICAgICAgICAicGF5bWVudF9tZXRob2QiOiBudWxsLAogICAgICAgICJwYXltZW50X3Byb2Nlc3NvciI6IG51bGwsCiAgICAgICAgInBwZF9pZCI6IG51bGwsCiAgICAgICAgInJlYXNvbiI6IG51bGwsCiAgICAgICAgInJlZmVyZW5jZV9udW1iZXIiOiBudWxsCiAgICAgIH0sCiAgICAgICJwZW5kaW5nIjogZmFsc2UsCiAgICAgICJwZW5kaW5nX3RyYW5zYWN0aW9uX2lkIjogbnVsbCwKICAgICAgInBlcnNvbmFsX2ZpbmFuY2VfY2F0ZWdvcnkiOiB7CiAgICAgICAgImNvbmZpZGVuY2VfbGV2ZWwiOiAiVkVSWV9ISUdIIiwKICAgICAgICAiZGV0YWlsZWQiOiAiRk9PRF9BTkRfRFJJTktfRkFTVF9GT09EIiwKICAgICAgICAicHJpbWFyeSI6ICJGT09EX0FORF9EUklOSyIKICAgICAgfSwKICAgICAgInBlcnNvbmFsX2ZpbmFuY2VfY2F0ZWdvcnlfaWNvbl91cmwiOiAiaHR0cHM6Ly9wbGFpZC1jYXRlZ29yeS1pY29ucy5wbGFpZC5jb20vUEZDX0ZPT0RfQU5EX0RSSU5LLnBuZyIsCiAgICAgICJ0cmFuc2FjdGlvbl9jb2RlIjogbnVsbCwKICAgICAgInRyYW5zYWN0aW9uX2lkIjogIms3WkFhcWtEbjlJZUxXdlBNRDNRVFFtd2pBYWU2MXNMNmRvWDEiLAogICAgICAidHJhbnNhY3Rpb25fdHlwZSI6ICJwbGFjZSIsCiAgICAgICJ1bm9mZmljaWFsX2N1cnJlbmN5X2NvZGUiOiBudWxsLAogICAgICAid2Vic2l0ZSI6ICJidXJnZXJraW5nLmNvbSIKICAgIH0sCiAgICB7CiAgICAgICJhY2NvdW50X2lkIjogIlp2bEJMNWVNUFF0blhEVjZRclI5c1JlTlZWejFYQWllYWdEUHoiLAogICAgICAiYWNjb3VudF9vd25lciI6IG51bGwsCiAgICAgICJhbW91bnQiOiA4Ljg3LAogICAgICAiYXV0aG9yaXplZF9kYXRlIjogIjIwMjQtMDEtMTAiLAogICAgICAiYXV0aG9yaXplZF9kYXRldGltZSI6IG51bGwsCiAgICAgICJjYXRlZ29yeSI6IFsKICAgICAgICAiU2hvcHMiLAogICAgICAgICJEZXBhcnRtZW50IFN0b3JlcyIKICAgICAgXSwKICAgICAgImNhdGVnb3J5X2lkIjogIjE5MDE4MDAwIiwKICAgICAgImNoZWNrX251bWJlciI6IG51bGwsCiAgICAgICJjb3VudGVycGFydGllcyI6IFsKICAgICAgICB7CiAgICAgICAgICAiY29uZmlkZW5jZV9sZXZlbCI6ICJWRVJZX0hJR0giLAogICAgICAgICAgImVudGl0eV9pZCI6ICJya1Z2T004WU5tV2dxZEI2eXAya3ZqUWQxYW1FMWRZYmtwbzU4IiwKICAgICAgICAgICJsb2dvX3VybCI6ICJodHRwczovL3BsYWlkLW1lcmNoYW50LWxvZ29zLnBsYWlkLmNvbS9jb3N0X3BsdXNfd29ybGRfbWFya2V0XzIzNC5wbmciLAogICAgICAgICAgIm5hbWUiOiAiQ29zdCBQbHVzIFdvcmxkIE1hcmtldCIsCiAgICAgICAgICAicGhvbmVfbnVtYmVyIjogbnVsbCwKICAgICAgICAgICJ0eXBlIjogIm1lcmNoYW50IiwKICAgICAgICAgICJ3ZWJzaXRlIjogIndvcmxkbWFya2V0LmNvbSIKICAgICAgICB9CiAgICAgIF0sCiAgICAgICJkYXRlIjogIjIwMjQtMDEtMTAiLAogICAgICAiZGF0ZXRpbWUiOiBudWxsLAogICAgICAiaXNvX2N1cnJlbmN5X2NvZGUiOiAiVVNEIiwKICAgICAgImxvY2F0aW9uIjogewogICAgICAgICJhZGRyZXNzIjogbnVsbCwKICAgICAgICAiY2l0eSI6IG51bGwsCiAgICAgICAgImNvdW50cnkiOiBudWxsLAogICAgICAgICJsYXQiOiBudWxsLAogICAgICAgICJsb24iOiBudWxsLAogICAgICAgICJwb3N0YWxfY29kZSI6IG51bGwsCiAgICAgICAgInJlZ2lvbiI6IG51bGwsCiAgICAgICAgInN0b3JlX251bWJlciI6ICIwMTIiCiAgICAgIH0sCiAgICAgICJsb2dvX3VybCI6ICJodHRwczovL3BsYWlkLW1lcmNoYW50LWxvZ29zLnBsYWlkLmNvbS9jb3N0X3BsdXNfd29ybGRfbWFya2V0XzIzNC5wbmciLAogICAgICAibWVyY2hhbnRfZW50aXR5X2lkIjogInJrVnZPTThZTm1XZ3FkQjZ5cDJrdmpRZDFhbUUxZFlia3BvNTgiLAogICAgICAibWVyY2hhbnRfbmFtZSI6ICJDb3N0IFBsdXMgV29ybGQgTWFya2V0IiwKICAgICAgIm5hbWUiOiAiQ29zdCBQbHVzIiwKICAgICAgIm9yaWdpbmFsX2Rlc2NyaXB0aW9uIjogIkNPU1QgUExVUyBXTEQgIzAxMiIsCiAgICAgICJwYXltZW50X2NoYW5uZWwiOiAiaW4gc3RvcmUiLAogICAgICAicGF5bWVudF9tZXRhIjogewogICAgICAgICJieV9vcmRlcl9vZiI6IG51bGwsCiAgICAgICAgInBheWVlIjogbnVsbCwKICAgICAgICAicGF5ZXIiOiBudWxsLAogICAgICAgICJwYXltZW50X21ldGhvZCI6IG51bGwsCiAgICAgICAgInBheW1lbnRfcHJvY2Vzc29yIjogbnVsbCwKICAgICAgICAicHBkX2lkIjogbnVsbCwKICAgICAgICAicmVhc29uIjogbnVsbCwKICAgICAgICAicmVmZXJlbmNlX251bWJlciI6IG51bGwKICAgICAgfSwKICAgICAgInBlbmRpbmciOiBmYWxzZSwKICAgICAgInBlbmRpbmdfdHJhbnNhY3Rpb25faWQiOiBudWxsLAogICAgICAicGVyc29uYWxfZmluYW5jZV9jYXRlZ29yeSI6IHsKICAgICAgICAiY29uZmlkZW5jZV9sZXZlbCI6ICJWRVJZX0hJR0giLAogICAgICAgICJkZXRhaWxlZCI6ICJIT01FX0lNUFJPVkVNRU5UX0ZVUk5JVFVSRSIsCiAgICAgICAgInByaW1hcnkiOiAiSE9NRV9JTVBST1ZFTUVOVCIKICAgICAgfSwKICAgICAgInBlcnNvbmFsX2ZpbmFuY2VfY2F0ZWdvcnlfaWNvbl91cmwiOiAiaHR0cHM6Ly9wbGFpZC1jYXRlZ29yeS1pY29ucy5wbGFpZC5jb20vUEZDX0hPTUVfSU1QUk9WRU1FTlQucG5nIiwKICAgICAgInRyYW5zYWN0aW9uX2NvZGUiOiBudWxsLAogICAgICAidHJhbnNhY3Rpb25faWQiOiAibGVNQTRLZERidlQ5Umo4YUR3M0FTbHF3Wm1kdkdEaXBvZFJrQiIsCiAgICAgICJ0cmFuc2FjdGlvbl90eXBlIjogInBsYWNlIiwKICAgICAgInVub2ZmaWNpYWxfY3VycmVuY3lfY29kZSI6IG51bGwsCiAgICAgICJ3ZWJzaXRlIjogIndvcmxkbWFya2V0LmNvbSIKICAgIH0sCiAgICB7CiAgICAgICJhY2NvdW50X2lkIjogIlp2bEJMNWVNUFF0blhEVjZRclI5c1JlTlZWejFYQWllYWdEUHoiLAogICAgICAiYWNjb3VudF9vd25lciI6IG51bGwsCiAgICAgICJhbW91bnQiOiA1OC40NywKICAgICAgImF1dGhvcml6ZWRfZGF0ZSI6ICIyMDI0LTAxLTEwIiwKICAgICAgImF1dGhvcml6ZWRfZGF0ZXRpbWUiOiBudWxsLAogICAgICAiY2F0ZWdvcnkiOiBbCiAgICAgICAgIlNob3BzIiwKICAgICAgICAiQmVhdXR5IFByb2R1Y3RzIgogICAgICBdLAogICAgICAiY2F0ZWdvcnlfaWQiOiAiMTkwMDYwMDAiLAogICAgICAiY2hlY2tfbnVtYmVyIjogbnVsbCwKICAgICAgImNvdW50ZXJwYXJ0aWVzIjogW10sCiAgICAgICJkYXRlIjogIjIwMjQtMDEtMTQiLAogICAgICAiZGF0ZXRpbWUiOiBudWxsLAogICAgICAiaXNvX2N1cnJlbmN5X2NvZGUiOiAiVVNEIiwKICAgICAgImxvY2F0aW9uIjogewogICAgICAgICJhZGRyZXNzIjogbnVsbCwKICAgICAgICAiY2l0eSI6IG51bGwsCiAgICAgICAgImNvdW50cnkiOiBudWxsLAogICAgICAgICJsYXQiOiBudWxsLAogICAgICAgICJsb24iOiBudWxsLAogICAgICAgICJwb3N0YWxfY29kZSI6IG51bGwsCiAgICAgICAgInJlZ2lvbiI6IG51bGwsCiAgICAgICAgInN0b3JlX251bWJlciI6IG51bGwKICAgICAgfSwKICAgICAgImxvZ29fdXJsIjogbnVsbCwKICAgICAgIm1lcmNoYW50X2VudGl0eV9pZCI6IG51bGwsCiAgICAgICJtZXJjaGFudF9uYW1lIjogbnVsbCwKICAgICAgIm5hbWUiOiAiU2VwaG9yYSIsCiAgICAgICJvcmlnaW5hbF9kZXNjcmlwdGlvbiI6ICJTRVBIT1JBLkNBIFNFUEhPUkEuQ0EgUUMiLAogICAgICAicGF5bWVudF9jaGFubmVsIjogIm9ubGluZSIsCiAgICAgICJwYXltZW50X21ldGEiOiB7CiAgICAgICAgImJ5X29yZGVyX29mIjogbnVsbCwKICAgICAgICAicGF5ZWUiOiBudWxsLAogICAgICAgICJwYXllciI6IG51bGwsCiAgICAgICAgInBheW1lbnRfbWV0aG9kIjogbnVsbCwKICAgICAgICAicGF5bWVudF9wcm9jZXNzb3IiOiBudWxsLAogICAgICAgICJwcGRfaWQiOiBudWxsLAogICAgICAgICJyZWFzb24iOiBudWxsLAogICAgICAgICJyZWZlcmVuY2VfbnVtYmVyIjogbnVsbAogICAgICB9LAogICAgICAicGVuZGluZyI6IGZhbHNlLAogICAgICAicGVuZGluZ190cmFuc2FjdGlvbl9pZCI6IG51bGwsCiAgICAgICJwZXJzb25hbF9maW5hbmNlX2NhdGVnb3J5IjogewogICAgICAgICJjb25maWRlbmNlX2xldmVsIjogIkhJR0giLAogICAgICAgICJkZXRhaWxlZCI6ICJQRVJTT05BTF9DQVJFX0hBSVJfQU5EX0JFQVVUWSIsCiAgICAgICAgInByaW1hcnkiOiAiUEVSU09OQUxfQ0FSRSIKICAgICAgfSwKICAgICAgInBlcnNvbmFsX2ZpbmFuY2VfY2F0ZWdvcnlfaWNvbl91cmwiOiAiaHR0cHM6Ly9wbGFpZC1jYXRlZ29yeS1pY29ucy5wbGFpZC5jb20vUEZDX1BFUlNPTkFMX0NBUkUucG5nIiwKICAgICAgInRyYW5zYWN0aW9uX2NvZGUiOiBudWxsLAogICAgICAidHJhbnNhY3Rpb25faWQiOiAicUxnQWV4OURLcmZOakV2NW9ETWFGZWJWYXBNbVdHaGdyN1JaUCIsCiAgICAgICJ0cmFuc2FjdGlvbl90eXBlIjogInBsYWNlIiwKICAgICAgInVub2ZmaWNpYWxfY3VycmVuY3lfY29kZSI6IG51bGwsCiAgICAgICJ3ZWJzaXRlIjogbnVsbAogICAgfSwKICAgIHsKICAgICAgImFjY291bnRfaWQiOiAiWnZsQkw1ZU1QUXRuWERWNlFyUjlzUmVOVlZ6MVhBaWVhZ0RQeiIsCiAgICAgICJhY2NvdW50X293bmVyIjogbnVsbCwKICAgICAgImFtb3VudCI6IDYzLjYyLAogICAgICAiYXV0aG9yaXplZF9kYXRlIjogIjIwMjQtMDEtMTIiLAogICAgICAiYXV0aG9yaXplZF9kYXRldGltZSI6IG51bGwsCiAgICAgICJjYXRlZ29yeSI6IFsKICAgICAgICAiRm9vZCBhbmQgRHJpbmsiLAogICAgICAgICJSZXN0YXVyYW50cyIKICAgICAgXSwKICAgICAgImNhdGVnb3J5X2lkIjogIjEzMDA1MDAwIiwKICAgICAgImNoZWNrX251bWJlciI6IG51bGwsCiAgICAgICJjb3VudGVycGFydGllcyI6IFsKICAgICAgICB7CiAgICAgICAgICAiY29uZmlkZW5jZV9sZXZlbCI6ICJWRVJZX0hJR0giLAogICAgICAgICAgImVudGl0eV9pZCI6ICJ5RE1adjkwYlpNWU41ZVFLTTNrNnFhS2pPNGFMTTBCUWtYbk9yIiwKICAgICAgICAgICJsb2dvX3VybCI6ICJodHRwczovL3BsYWlkLW1lcmNoYW50LWxvZ29zLnBsYWlkLmNvbS9sb25naG9ybl9zdGVha2hvdXNlXzU4OC5wbmciLAogICAgICAgICAgIm5hbWUiOiAiTG9uZ0hvcm4gU3RlYWtob3VzZSIsCiAgICAgICAgICAicGhvbmVfbnVtYmVyIjogbnVsbCwKICAgICAgICAgICJ0eXBlIjogIm1lcmNoYW50IiwKICAgICAgICAgICJ3ZWJzaXRlIjogImxvbmdob3Juc3RlYWtob3VzZS5jb20iCiAgICAgICAgfQogICAgICBdLAogICAgICAiZGF0ZSI6ICIyMDI0LTAxLTE0IiwKICAgICAgImRhdGV0aW1lIjogbnVsbCwKICAgICAgImlzb19jdXJyZW5jeV9jb2RlIjogIlVTRCIsCiAgICAgICJsb2NhdGlvbiI6IHsKICAgICAgICAiYWRkcmVzcyI6IG51bGwsCiAgICAgICAgImNpdHkiOiBudWxsLAogICAgICAgICJjb3VudHJ5IjogbnVsbCwKICAgICAgICAibGF0IjogbnVsbCwKICAgICAgICAibG9uIjogbnVsbCwKICAgICAgICAicG9zdGFsX2NvZGUiOiBudWxsLAogICAgICAgICJyZWdpb24iOiBudWxsLAogICAgICAgICJzdG9yZV9udW1iZXIiOiBudWxsCiAgICAgIH0sCiAgICAgICJsb2dvX3VybCI6ICJodHRwczovL3BsYWlkLW1lcmNoYW50LWxvZ29zLnBsYWlkLmNvbS9sb25naG9ybl9zdGVha2hvdXNlXzU4OC5wbmciLAogICAgICAibWVyY2hhbnRfZW50aXR5X2lkIjogInlETVp2OTBiWk1ZTjVlUUtNM2s2cWFLak80YUxNMEJRa1huT3IiLAogICAgICAibWVyY2hhbnRfbmFtZSI6ICJMb25nSG9ybiBTdGVha2hvdXNlIiwKICAgICAgIm5hbWUiOiAiTE9OR0hPUk4gU1RFQUsgMDEyMzQ1NiIsCiAgICAgICJvcmlnaW5hbF9kZXNjcmlwdGlvbiI6ICJMT05HSE9STiBTVEVBSyAwMTIzNDU2IiwKICAgICAgInBheW1lbnRfY2hhbm5lbCI6ICJpbiBzdG9yZSIsCiAgICAgICJwYXltZW50X21ldGEiOiB7CiAgICAgICAgImJ5X29yZGVyX29mIjogbnVsbCwKICAgICAgICAicGF5ZWUiOiBudWxsLAogICAgICAgICJwYXllciI6IG51bGwsCiAgICAgICAgInBheW1lbnRfbWV0aG9kIjogbnVsbCwKICAgICAgICAicGF5bWVudF9wcm9jZXNzb3IiOiBudWxsLAogICAgICAgICJwcGRfaWQiOiBudWxsLAogICAgICAgICJyZWFzb24iOiBudWxsLAogICAgICAgICJyZWZlcmVuY2VfbnVtYmVyIjogbnVsbAogICAgICB9LAogICAgICAicGVuZGluZyI6IGZhbHNlLAogICAgICAicGVuZGluZ190cmFuc2FjdGlvbl9pZCI6IG51bGwsCiAgICAgICJwZXJzb25hbF9maW5hbmNlX2NhdGVnb3J5IjogewogICAgICAgICJjb25maWRlbmNlX2xldmVsIjogIlZFUllfSElHSCIsCiAgICAgICAgImRldGFpbGVkIjogIkZPT0RfQU5EX0RSSU5LX1JFU1RBVVJBTlQiLAogICAgICAgICJwcmltYXJ5IjogIkZPT0RfQU5EX0RSSU5LIgogICAgICB9LAogICAgICAicGVyc29uYWxfZmluYW5jZV9jYXRlZ29yeV9pY29uX3VybCI6ICJodHRwczovL3BsYWlkLWNhdGVnb3J5LWljb25zLnBsYWlkLmNvbS9QRkNfRk9PRF9BTkRfRFJJTksucG5nIiwKICAgICAgInRyYW5zYWN0aW9uX2NvZGUiOiBudWxsLAogICAgICAidHJhbnNhY3Rpb25faWQiOiAiSzE4UEI1WmRicWgxN0JWZ3FiUlFoeW9hQTV6MWRlaVJwQTFMcCIsCiAgICAgICJ0cmFuc2FjdGlvbl90eXBlIjogInBsYWNlIiwKICAgICAgInVub2ZmaWNpYWxfY3VycmVuY3lfY29kZSI6IG51bGwsCiAgICAgICJ3ZWJzaXRlIjogImxvbmdob3Juc3RlYWtob3VzZS5jb20iCiAgICB9LAogICAgewogICAgICAiYWNjb3VudF9pZCI6ICJadmxCTDVlTVBRdG5YRFY2UXJSOXNSZU5WVnoxWEFpZWFnRFB6IiwKICAgICAgImFjY291bnRfb3duZXIiOiBudWxsLAogICAgICAiYW1vdW50IjogNC43NCwKICAgICAgImF1dGhvcml6ZWRfZGF0ZSI6ICIyMDI0LTAxLTEwIiwKICAgICAgImF1dGhvcml6ZWRfZGF0ZXRpbWUiOiBudWxsLAogICAgICAiY2F0ZWdvcnkiOiBbCiAgICAgICAgIlNlcnZpY2UiLAogICAgICAgICJTdWJzY3JpcHRpb24iCiAgICAgIF0sCiAgICAgICJjYXRlZ29yeV9pZCI6ICIxODA2MTAwMCIsCiAgICAgICJjaGVja19udW1iZXIiOiBudWxsLAogICAgICAiY291bnRlcnBhcnRpZXMiOiBbCiAgICAgICAgewogICAgICAgICAgImNvbmZpZGVuY2VfbGV2ZWwiOiAiVkVSWV9ISUdIIiwKICAgICAgICAgICJlbnRpdHlfaWQiOiAiWnpPMVY2Z0o4S2JPOTI2S3JOWU9OYlFxb2JYcGdqV25BMjhuUiIsCiAgICAgICAgICAibG9nb191cmwiOiAiaHR0cHM6Ly9wbGFpZC1tZXJjaGFudC1sb2dvcy5wbGFpZC5jb20vaHVsdV81MDQucG5nIiwKICAgICAgICAgICJuYW1lIjogIkh1bHUiLAogICAgICAgICAgInBob25lX251bWJlciI6IG51bGwsCiAgICAgICAgICAidHlwZSI6ICJtZXJjaGFudCIsCiAgICAgICAgICAid2Vic2l0ZSI6ICJodWx1LmNvbSIKICAgICAgICB9CiAgICAgIF0sCiAgICAgICJkYXRlIjogIjIwMjQtMDEtMTEiLAogICAgICAiZGF0ZXRpbWUiOiBudWxsLAogICAgICAiaXNvX2N1cnJlbmN5X2NvZGUiOiAiVVNEIiwKICAgICAgImxvY2F0aW9uIjogewogICAgICAgICJhZGRyZXNzIjogbnVsbCwKICAgICAgICAiY2l0eSI6IG51bGwsCiAgICAgICAgImNvdW50cnkiOiBudWxsLAogICAgICAgICJsYXQiOiBudWxsLAogICAgICAgICJsb24iOiBudWxsLAogICAgICAgICJwb3N0YWxfY29kZSI6IG51bGwsCiAgICAgICAgInJlZ2lvbiI6IG51bGwsCiAgICAgICAgInN0b3JlX251bWJlciI6IG51bGwKICAgICAgfSwKICAgICAgImxvZ29fdXJsIjogImh0dHBzOi8vcGxhaWQtbWVyY2hhbnQtbG9nb3MucGxhaWQuY29tL2h1bHVfNTA0LnBuZyIsCiAgICAgICJtZXJjaGFudF9lbnRpdHlfaWQiOiAiWnpPMVY2Z0o4S2JPOTI2S3JOWU9OYlFxb2JYcGdqV25BMjhuUiIsCiAgICAgICJtZXJjaGFudF9uYW1lIjogIkh1bHUiLAogICAgICAibmFtZSI6ICJITFUqSHVsdSAwMTIzNDU2Nzg5MDEyLVUiLAogICAgICAib3JpZ2luYWxfZGVzY3JpcHRpb24iOiAiSExVKkh1bHUgMDEyMzQ1Njc4OTAxMi1VIiwKICAgICAgInBheW1lbnRfY2hhbm5lbCI6ICJvbmxpbmUiLAogICAgICAicGF5bWVudF9tZXRhIjogewogICAgICAgICJieV9vcmRlcl9vZiI6IG51bGwsCiAgICAgICAgInBheWVlIjogbnVsbCwKICAgICAgICAicGF5ZXIiOiBudWxsLAogICAgICAgICJwYXltZW50X21ldGhvZCI6IG51bGwsCiAgICAgICAgInBheW1lbnRfcHJvY2Vzc29yIjogbnVsbCwKICAgICAgICAicHBkX2lkIjogbnVsbCwKICAgICAgICAicmVhc29uIjogbnVsbCwKICAgICAgICAicmVmZXJlbmNlX251bWJlciI6IG51bGwKICAgICAgfSwKICAgICAgInBlbmRpbmciOiBmYWxzZSwKICAgICAgInBlbmRpbmdfdHJhbnNhY3Rpb25faWQiOiBudWxsLAogICAgICAicGVyc29uYWxfZmluYW5jZV9jYXRlZ29yeSI6IHsKICAgICAgICAiY29uZmlkZW5jZV9sZXZlbCI6ICJWRVJZX0hJR0giLAogICAgICAgICJkZXRhaWxlZCI6ICJFTlRFUlRBSU5NRU5UX1RWX0FORF9NT1ZJRVMiLAogICAgICAgICJwcmltYXJ5IjogIkVOVEVSVEFJTk1FTlQiCiAgICAgIH0sCiAgICAgICJwZXJzb25hbF9maW5hbmNlX2NhdGVnb3J5X2ljb25fdXJsIjogImh0dHBzOi8vcGxhaWQtY2F0ZWdvcnktaWNvbnMucGxhaWQuY29tL1BGQ19FTlRFUlRBSU5NRU5ULnBuZyIsCiAgICAgICJ0cmFuc2FjdGlvbl9jb2RlIjogbnVsbCwKICAgICAgInRyYW5zYWN0aW9uX2lkIjogInJwOHdRZDlEcnpjN1h4VlJaYkJOc2J4UDVKTWpHOWk3SjYxblIiLAogICAgICAidHJhbnNhY3Rpb25fdHlwZSI6ICJwbGFjZSIsCiAgICAgICJ1bm9mZmljaWFsX2N1cnJlbmN5X2NvZGUiOiBudWxsLAogICAgICAid2Vic2l0ZSI6ICJodWx1LmNvbSIKICAgIH0sCiAgICB7CiAgICAgICJhY2NvdW50X2lkIjogIlp2bEJMNWVNUFF0blhEVjZRclI5c1JlTlZWejFYQWllYWdEUHoiLAogICAgICAiYWNjb3VudF9vd25lciI6IG51bGwsCiAgICAgICJhbW91bnQiOiA1NS41MiwKICAgICAgImF1dGhvcml6ZWRfZGF0ZSI6ICIyMDI0LTAxLTEyIiwKICAgICAgImF1dGhvcml6ZWRfZGF0ZXRpbWUiOiBudWxsLAogICAgICAiY2F0ZWdvcnkiOiBbCiAgICAgICAgIlNob3BzIiwKICAgICAgICAiU3VwZXJtYXJrZXRzIGFuZCBHcm9jZXJpZXMiCiAgICAgIF0sCiAgICAgICJjYXRlZ29yeV9pZCI6ICIxOTA0NzAwMCIsCiAgICAgICJjaGVja19udW1iZXIiOiBudWxsLAogICAgICAiY291bnRlcnBhcnRpZXMiOiBbCiAgICAgICAgewogICAgICAgICAgImNvbmZpZGVuY2VfbGV2ZWwiOiAiVkVSWV9ISUdIIiwKICAgICAgICAgICJlbnRpdHlfaWQiOiAiVkFLako3RDNRWThSUU81YVJvNWprVzE3eXpqS1hFUUJFNGpkayIsCiAgICAgICAgICAibG9nb191cmwiOiAiaHR0cHM6Ly9wbGFpZC1tZXJjaGFudC1sb2dvcy5wbGFpZC5jb20va2V5X2Zvb2Rfc3RvcmVzXzU0NS5wbmciLAogICAgICAgICAgIm5hbWUiOiAiS2V5IEZvb2QgU3RvcmVzIiwKICAgICAgICAgICJwaG9uZV9udW1iZXIiOiBudWxsLAogICAgICAgICAgInR5cGUiOiAibWVyY2hhbnQiLAogICAgICAgICAgIndlYnNpdGUiOiAia2V5Zm9vZGRlYWxzLmNvbSIKICAgICAgICB9CiAgICAgIF0sCiAgICAgICJkYXRlIjogIjIwMjQtMDEtMTUiLAogICAgICAiZGF0ZXRpbWUiOiBudWxsLAogICAgICAiaXNvX2N1cnJlbmN5X2NvZGUiOiAiVVNEIiwKICAgICAgImxvY2F0aW9uIjogewogICAgICAgICJhZGRyZXNzIjogbnVsbCwKICAgICAgICAiY2l0eSI6IG51bGwsCiAgICAgICAgImNvdW50cnkiOiBudWxsLAogICAgICAgICJsYXQiOiBudWxsLAogICAgICAgICJsb24iOiBudWxsLAogICAgICAgICJwb3N0YWxfY29kZSI6IG51bGwsCiAgICAgICAgInJlZ2lvbiI6IG51bGwsCiAgICAgICAgInN0b3JlX251bWJlciI6IG51bGwKICAgICAgfSwKICAgICAgImxvZ29fdXJsIjogImh0dHBzOi8vcGxhaWQtbWVyY2hhbnQtbG9nb3MucGxhaWQuY29tL2tleV9mb29kX3N0b3Jlc181NDUucG5nIiwKICAgICAgIm1lcmNoYW50X2VudGl0eV9pZCI6ICJWQUtqSjdEM1FZOFJRTzVhUm81amtXMTd5empLWEVRQkU0amRrIiwKICAgICAgIm1lcmNoYW50X25hbWUiOiAiS2V5IEZvb2QgU3RvcmVzIiwKICAgICAgIm5hbWUiOiAiS2V5IEZvb2QgU3RvcmVzIENvLW9wLCBJbmMuIiwKICAgICAgIm9yaWdpbmFsX2Rlc2NyaXB0aW9uIjogIktFWSBGT09EIDAxMjMiLAogICAgICAicGF5bWVudF9jaGFubmVsIjogImluIHN0b3JlIiwKICAgICAgInBheW1lbnRfbWV0YSI6IHsKICAgICAgICAiYnlfb3JkZXJfb2YiOiBudWxsLAogICAgICAgICJwYXllZSI6IG51bGwsCiAgICAgICAgInBheWVyIjogbnVsbCwKICAgICAgICAicGF5bWVudF9tZXRob2QiOiBudWxsLAogICAgICAgICJwYXltZW50X3Byb2Nlc3NvciI6IG51bGwsCiAgICAgICAgInBwZF9pZCI6IG51bGwsCiAgICAgICAgInJlYXNvbiI6IG51bGwsCiAgICAgICAgInJlZmVyZW5jZV9udW1iZXIiOiBudWxsCiAgICAgIH0sCiAgICAgICJwZW5kaW5nIjogZmFsc2UsCiAgICAgICJwZW5kaW5nX3RyYW5zYWN0aW9uX2lkIjogbnVsbCwKICAgICAgInBlcnNvbmFsX2ZpbmFuY2VfY2F0ZWdvcnkiOiB7CiAgICAgICAgImNvbmZpZGVuY2VfbGV2ZWwiOiAiVkVSWV9ISUdIIiwKICAgICAgICAiZGV0YWlsZWQiOiAiRk9PRF9BTkRfRFJJTktfR1JPQ0VSSUVTIiwKICAgICAgICAicHJpbWFyeSI6ICJGT09EX0FORF9EUklOSyIKICAgICAgfSwKICAgICAgInBlcnNvbmFsX2ZpbmFuY2VfY2F0ZWdvcnlfaWNvbl91cmwiOiAiaHR0cHM6Ly9wbGFpZC1jYXRlZ29yeS1pY29ucy5wbGFpZC5jb20vUEZDX0ZPT0RfQU5EX0RSSU5LLnBuZyIsCiAgICAgICJ0cmFuc2FjdGlvbl9jb2RlIjogbnVsbCwKICAgICAgInRyYW5zYWN0aW9uX2lkIjogInpreXo4UTlyTlBDWGdXUWV5ajlwSWVxUFdsbUpwZGhsTkxRejUiLAogICAgICAidHJhbnNhY3Rpb25fdHlwZSI6ICJwbGFjZSIsCiAgICAgICJ1bm9mZmljaWFsX2N1cnJlbmN5X2NvZGUiOiBudWxsLAogICAgICAid2Vic2l0ZSI6ICJrZXlmb29kZGVhbHMuY29tIgogICAgfSwKICAgIHsKICAgICAgImFjY291bnRfaWQiOiAiWnZsQkw1ZU1QUXRuWERWNlFyUjlzUmVOVlZ6MVhBaWVhZ0RQeiIsCiAgICAgICJhY2NvdW50X293bmVyIjogbnVsbCwKICAgICAgImFtb3VudCI6IDcuNSwKICAgICAgImF1dGhvcml6ZWRfZGF0ZSI6ICIyMDI0LTAxLTE1IiwKICAgICAgImF1dGhvcml6ZWRfZGF0ZXRpbWUiOiBudWxsLAogICAgICAiY2F0ZWdvcnkiOiBbCiAgICAgICAgIlNob3BzIiwKICAgICAgICAiUGhhcm1hY2llcyIKICAgICAgXSwKICAgICAgImNhdGVnb3J5X2lkIjogIjE5MDQzMDAwIiwKICAgICAgImNoZWNrX251bWJlciI6IG51bGwsCiAgICAgICJjb3VudGVycGFydGllcyI6IFtdLAogICAgICAiZGF0ZSI6ICIyMDI0LTAxLTE1IiwKICAgICAgImRhdGV0aW1lIjogbnVsbCwKICAgICAgImlzb19jdXJyZW5jeV9jb2RlIjogIlVTRCIsCiAgICAgICJsb2NhdGlvbiI6IHsKICAgICAgICAiYWRkcmVzcyI6IG51bGwsCiAgICAgICAgImNpdHkiOiBudWxsLAogICAgICAgICJjb3VudHJ5IjogbnVsbCwKICAgICAgICAibGF0IjogbnVsbCwKICAgICAgICAibG9uIjogbnVsbCwKICAgICAgICAicG9zdGFsX2NvZGUiOiBudWxsLAogICAgICAgICJyZWdpb24iOiBudWxsLAogICAgICAgICJzdG9yZV9udW1iZXIiOiBudWxsCiAgICAgIH0sCiAgICAgICJsb2dvX3VybCI6IG51bGwsCiAgICAgICJtZXJjaGFudF9lbnRpdHlfaWQiOiBudWxsLAogICAgICAibWVyY2hhbnRfbmFtZSI6IG51bGwsCiAgICAgICJuYW1lIjogIkV4cHJlc3MgU2NyaXB0cyBQaHJtY3kiLAogICAgICAib3JpZ2luYWxfZGVzY3JpcHRpb24iOiAiRXhwcmVzcyBTY3JpcHRzIFBocm1jeSIsCiAgICAgICJwYXltZW50X2NoYW5uZWwiOiAiaW4gc3RvcmUiLAogICAgICAicGF5bWVudF9tZXRhIjogewogICAgICAgICJieV9vcmRlcl9vZiI6IG51bGwsCiAgICAgICAgInBheWVlIjogbnVsbCwKICAgICAgICAicGF5ZXIiOiBudWxsLAogICAgICAgICJwYXltZW50X21ldGhvZCI6IG51bGwsCiAgICAgICAgInBheW1lbnRfcHJvY2Vzc29yIjogbnVsbCwKICAgICAgICAicHBkX2lkIjogbnVsbCwKICAgICAgICAicmVhc29uIjogbnVsbCwKICAgICAgICAicmVmZXJlbmNlX251bWJlciI6IG51bGwKICAgICAgfSwKICAgICAgInBlbmRpbmciOiBmYWxzZSwKICAgICAgInBlbmRpbmdfdHJhbnNhY3Rpb25faWQiOiBudWxsLAogICAgICAicGVyc29uYWxfZmluYW5jZV9jYXRlZ29yeSI6IHsKICAgICAgICAiY29uZmlkZW5jZV9sZXZlbCI6ICJMT1ciLAogICAgICAgICJkZXRhaWxlZCI6ICJNRURJQ0FMX1BIQVJNQUNJRVNfQU5EX1NVUFBMRU1FTlRTIiwKICAgICAgICAicHJpbWFyeSI6ICJNRURJQ0FMIgogICAgICB9LAogICAgICAicGVyc29uYWxfZmluYW5jZV9jYXRlZ29yeV9pY29uX3VybCI6ICJodHRwczovL3BsYWlkLWNhdGVnb3J5LWljb25zLnBsYWlkLmNvbS9QRkNfTUVESUNBTC5wbmciLAogICAgICAidHJhbnNhY3Rpb25fY29kZSI6IG51bGwsCiAgICAgICJ0cmFuc2FjdGlvbl9pZCI6ICJCNGVrODY5WnBHQzQxbURuanZWeHVCZFhWTGpQUnhDNE04Z1FHIiwKICAgICAgInRyYW5zYWN0aW9uX3R5cGUiOiAicGxhY2UiLAogICAgICAidW5vZmZpY2lhbF9jdXJyZW5jeV9jb2RlIjogbnVsbCwKICAgICAgIndlYnNpdGUiOiBudWxsCiAgICB9LAogICAgewogICAgICAiYWNjb3VudF9pZCI6ICJadmxCTDVlTVBRdG5YRFY2UXJSOXNSZU5WVnoxWEFpZWFnRFB6IiwKICAgICAgImFjY291bnRfb3duZXIiOiBudWxsLAogICAgICAiYW1vdW50IjogMTQuMjMsCiAgICAgICJhdXRob3JpemVkX2RhdGUiOiAiMjAyNC0wMS0xNSIsCiAgICAgICJhdXRob3JpemVkX2RhdGV0aW1lIjogbnVsbCwKICAgICAgImNhdGVnb3J5IjogWwogICAgICAgICJTaG9wcyIsCiAgICAgICAgIkF1dG9tb3RpdmUiLAogICAgICAgICJDYXIgUGFydHMgYW5kIEFjY2Vzc29yaWVzIgogICAgICBdLAogICAgICAiY2F0ZWdvcnlfaWQiOiAiMTkwMDUwMDYiLAogICAgICAiY2hlY2tfbnVtYmVyIjogbnVsbCwKICAgICAgImNvdW50ZXJwYXJ0aWVzIjogWwogICAgICAgIHsKICAgICAgICAgICJjb25maWRlbmNlX2xldmVsIjogIlZFUllfSElHSCIsCiAgICAgICAgICAiZW50aXR5X2lkIjogInJ2NHlSbWFqWVJOOWJkYmJtcDJ5dldhdnZBV1JPak1wbTlkQmEiLAogICAgICAgICAgImxvZ29fdXJsIjogImh0dHBzOi8vcGxhaWQtbWVyY2hhbnQtbG9nb3MucGxhaWQuY29tL2F1dG96b25lXzgxLnBuZyIsCiAgICAgICAgICAibmFtZSI6ICJBdXRvWm9uZSIsCiAgICAgICAgICAicGhvbmVfbnVtYmVyIjogbnVsbCwKICAgICAgICAgICJ0eXBlIjogIm1lcmNoYW50IiwKICAgICAgICAgICJ3ZWJzaXRlIjogImF1dG96b25lLmNvbSIKICAgICAgICB9CiAgICAgIF0sCiAgICAgICJkYXRlIjogIjIwMjQtMDEtMTUiLAogICAgICAiZGF0ZXRpbWUiOiBudWxsLAogICAgICAiaXNvX2N1cnJlbmN5X2NvZGUiOiAiVVNEIiwKICAgICAgImxvY2F0aW9uIjogewogICAgICAgICJhZGRyZXNzIjogbnVsbCwKICAgICAgICAiY2l0eSI6IG51bGwsCiAgICAgICAgImNvdW50cnkiOiBudWxsLAogICAgICAgICJsYXQiOiBudWxsLAogICAgICAgICJsb24iOiBudWxsLAogICAgICAgICJwb3N0YWxfY29kZSI6IG51bGwsCiAgICAgICAgInJlZ2lvbiI6IG51bGwsCiAgICAgICAgInN0b3JlX251bWJlciI6IG51bGwKICAgICAgfSwKICAgICAgImxvZ29fdXJsIjogImh0dHBzOi8vcGxhaWQtbWVyY2hhbnQtbG9nb3MucGxhaWQuY29tL2F1dG96b25lXzgxLnBuZyIsCiAgICAgICJtZXJjaGFudF9lbnRpdHlfaWQiOiAicnY0eVJtYWpZUk45YmRiYm1wMnl2V2F2dkFXUk9qTXBtOWRCYSIsCiAgICAgICJtZXJjaGFudF9uYW1lIjogIkF1dG9ab25lIiwKICAgICAgIm5hbWUiOiAiQXV0b1pvbmUiLAogICAgICAib3JpZ2luYWxfZGVzY3JpcHRpb24iOiAiQXV0b3pvbmUiLAogICAgICAicGF5bWVudF9jaGFubmVsIjogImluIHN0b3JlIiwKICAgICAgInBheW1lbnRfbWV0YSI6IHsKICAgICAgICAiYnlfb3JkZXJfb2YiOiBudWxsLAogICAgICAgICJwYXllZSI6IG51bGwsCiAgICAgICAgInBheWVyIjogbnVsbCwKICAgICAgICAicGF5bWVudF9tZXRob2QiOiBudWxsLAogICAgICAgICJwYXltZW50X3Byb2Nlc3NvciI6IG51bGwsCiAgICAgICAgInBwZF9pZCI6IG51bGwsCiAgICAgICAgInJlYXNvbiI6IG51bGwsCiAgICAgICAgInJlZmVyZW5jZV9udW1iZXIiOiBudWxsCiAgICAgIH0sCiAgICAgICJwZW5kaW5nIjogZmFsc2UsCiAgICAgICJwZW5kaW5nX3RyYW5zYWN0aW9uX2lkIjogbnVsbCwKICAgICAgInBlcnNvbmFsX2ZpbmFuY2VfY2F0ZWdvcnkiOiB7CiAgICAgICAgImNvbmZpZGVuY2VfbGV2ZWwiOiAiVkVSWV9ISUdIIiwKICAgICAgICAiZGV0YWlsZWQiOiAiR0VORVJBTF9TRVJWSUNFU19BVVRPTU9USVZFIiwKICAgICAgICAicHJpbWFyeSI6ICJHRU5FUkFMX1NFUlZJQ0VTIgogICAgICB9LAogICAgICAicGVyc29uYWxfZmluYW5jZV9jYXRlZ29yeV9pY29uX3VybCI6ICJodHRwczovL3BsYWlkLWNhdGVnb3J5LWljb25zLnBsYWlkLmNvbS9QRkNfR0VORVJBTF9TRVJWSUNFUy5wbmciLAogICAgICAidHJhbnNhY3Rpb25fY29kZSI6IG51bGwsCiAgICAgICJ0cmFuc2FjdGlvbl9pZCI6ICIzeWxKYXBkYjNqZjhuSzNBMXo3SkYzamxtUWE1TEJoWmxuRUIxIiwKICAgICAgInRyYW5zYWN0aW9uX3R5cGUiOiAicGxhY2UiLAogICAgICAidW5vZmZpY2lhbF9jdXJyZW5jeV9jb2RlIjogbnVsbCwKICAgICAgIndlYnNpdGUiOiAiYXV0b3pvbmUuY29tIgogICAgfSwKICAgIHsKICAgICAgImFjY291bnRfaWQiOiAiWnZsQkw1ZU1QUXRuWERWNlFyUjlzUmVOVlZ6MVhBaWVhZ0RQeiIsCiAgICAgICJhY2NvdW50X293bmVyIjogbnVsbCwKICAgICAgImFtb3VudCI6IDE1LjUzLAogICAgICAiYXV0aG9yaXplZF9kYXRlIjogIjIwMjQtMDEtMTUiLAogICAgICAiYXV0aG9yaXplZF9kYXRldGltZSI6IG51bGwsCiAgICAgICJjYXRlZ29yeSI6IFsKICAgICAgICAiU2VydmljZSIsCiAgICAgICAgIlN1YnNjcmlwdGlvbiIKICAgICAgXSwKICAgICAgImNhdGVnb3J5X2lkIjogIjE4MDYxMDAwIiwKICAgICAgImNoZWNrX251bWJlciI6IG51bGwsCiAgICAgICJjb3VudGVycGFydGllcyI6IFsKICAgICAgICB7CiAgICAgICAgICAiY29uZmlkZW5jZV9sZXZlbCI6ICJWRVJZX0hJR0giLAogICAgICAgICAgImVudGl0eV9pZCI6ICJyeWJlQU95ZzZaRTl6OExkRDg1Mk9iSzNrUThSUmFNMEx5RHJnIiwKICAgICAgICAgICJsb2dvX3VybCI6ICJodHRwczovL3BsYWlkLW1lcmNoYW50LWxvZ29zLnBsYWlkLmNvbS9zaXJpdXN4bV85MDYucG5nIiwKICAgICAgICAgICJuYW1lIjogIlNpcml1c1hNIiwKICAgICAgICAgICJwaG9uZV9udW1iZXIiOiBudWxsLAogICAgICAgICAgInR5cGUiOiAibWVyY2hhbnQiLAogICAgICAgICAgIndlYnNpdGUiOiAic2lyaXVzeG0uY29tIgogICAgICAgIH0KICAgICAgXSwKICAgICAgImRhdGUiOiAiMjAyNC0wMS0xNSIsCiAgICAgICJkYXRldGltZSI6IG51bGwsCiAgICAgICJpc29fY3VycmVuY3lfY29kZSI6ICJVU0QiLAogICAgICAibG9jYXRpb24iOiB7CiAgICAgICAgImFkZHJlc3MiOiBudWxsLAogICAgICAgICJjaXR5IjogbnVsbCwKICAgICAgICAiY291bnRyeSI6IG51bGwsCiAgICAgICAgImxhdCI6IG51bGwsCiAgICAgICAgImxvbiI6IG51bGwsCiAgICAgICAgInBvc3RhbF9jb2RlIjogbnVsbCwKICAgICAgICAicmVnaW9uIjogIk5ZIiwKICAgICAgICAic3RvcmVfbnVtYmVyIjogbnVsbAogICAgICB9LAogICAgICAibG9nb191cmwiOiAiaHR0cHM6Ly9wbGFpZC1tZXJjaGFudC1sb2dvcy5wbGFpZC5jb20vc2lyaXVzeG1fOTA2LnBuZyIsCiAgICAgICJtZXJjaGFudF9lbnRpdHlfaWQiOiAicnliZUFPeWc2WkU5ejhMZEQ4NTJPYksza1E4UlJhTTBMeURyZyIsCiAgICAgICJtZXJjaGFudF9uYW1lIjogIlNpcml1c1hNIiwKICAgICAgIm5hbWUiOiAiU1hNKlNJUklVU1hNLkNPTS9BQ0NUIiwKICAgICAgIm9yaWdpbmFsX2Rlc2NyaXB0aW9uIjogIlNYTSpTSVJJVVNYTS5DT00vQUNDVCAwMTItMDEyLTAxMjMgTlkiLAogICAgICAicGF5bWVudF9jaGFubmVsIjogIm9ubGluZSIsCiAgICAgICJwYXltZW50X21ldGEiOiB7CiAgICAgICAgImJ5X29yZGVyX29mIjogbnVsbCwKICAgICAgICAicGF5ZWUiOiBudWxsLAogICAgICAgICJwYXllciI6IG51bGwsCiAgICAgICAgInBheW1lbnRfbWV0aG9kIjogbnVsbCwKICAgICAgICAicGF5bWVudF9wcm9jZXNzb3IiOiBudWxsLAogICAgICAgICJwcGRfaWQiOiBudWxsLAogICAgICAgICJyZWFzb24iOiBudWxsLAogICAgICAgICJyZWZlcmVuY2VfbnVtYmVyIjogbnVsbAogICAgICB9LAogICAgICAicGVuZGluZyI6IGZhbHNlLAogICAgICAicGVuZGluZ190cmFuc2FjdGlvbl9pZCI6IG51bGwsCiAgICAgICJwZXJzb25hbF9maW5hbmNlX2NhdGVnb3J5IjogewogICAgICAgICJjb25maWRlbmNlX2xldmVsIjogIlZFUllfSElHSCIsCiAgICAgICAgImRldGFpbGVkIjogIkVOVEVSVEFJTk1FTlRfTVVTSUNfQU5EX0FVRElPIiwKICAgICAgICAicHJpbWFyeSI6ICJFTlRFUlRBSU5NRU5UIgogICAgICB9LAogICAgICAicGVyc29uYWxfZmluYW5jZV9jYXRlZ29yeV9pY29uX3VybCI6ICJodHRwczovL3BsYWlkLWNhdGVnb3J5LWljb25zLnBsYWlkLmNvbS9QRkNfRU5URVJUQUlOTUVOVC5wbmciLAogICAgICAidHJhbnNhY3Rpb25fY29kZSI6IG51bGwsCiAgICAgICJ0cmFuc2FjdGlvbl9pZCI6ICJ4QWJLbzc1cWE0dW01YVo4em5kcFVNZDdnVzV3YnhVNjRWZXFvIiwKICAgICAgInRyYW5zYWN0aW9uX3R5cGUiOiAicGxhY2UiLAogICAgICAidW5vZmZpY2lhbF9jdXJyZW5jeV9jb2RlIjogbnVsbCwKICAgICAgIndlYnNpdGUiOiAic2lyaXVzeG0uY29tIgogICAgfSwKICAgIHsKICAgICAgImFjY291bnRfaWQiOiAiWnZsQkw1ZU1QUXRuWERWNlFyUjlzUmVOVlZ6MVhBaWVhZ0RQeiIsCiAgICAgICJhY2NvdW50X293bmVyIjogbnVsbCwKICAgICAgImFtb3VudCI6IDE4NC42OCwKICAgICAgImF1dGhvcml6ZWRfZGF0ZSI6ICIyMDI0LTAxLTE1IiwKICAgICAgImF1dGhvcml6ZWRfZGF0ZXRpbWUiOiBudWxsLAogICAgICAiY2F0ZWdvcnkiOiBbCiAgICAgICAgIlNlcnZpY2UiLAogICAgICAgICJDYWJsZSIKICAgICAgXSwKICAgICAgImNhdGVnb3J5X2lkIjogIjE4MDA5MDAwIiwKICAgICAgImNoZWNrX251bWJlciI6IG51bGwsCiAgICAgICJjb3VudGVycGFydGllcyI6IFsKICAgICAgICB7CiAgICAgICAgICAiY29uZmlkZW5jZV9sZXZlbCI6ICJWRVJZX0hJR0giLAogICAgICAgICAgImVudGl0eV9pZCI6ICJlZFJXeWE0TldqeVpxZUpialFWQUIycVpha1kxWHZwVk4wMjNnIiwKICAgICAgICAgICJsb2dvX3VybCI6ICJodHRwczovL3BsYWlkLW1lcmNoYW50LWxvZ29zLnBsYWlkLmNvbS9jb21jYXN0XzIyNi5wbmciLAogICAgICAgICAgIm5hbWUiOiAiQ29tY2FzdCIsCiAgICAgICAgICAicGhvbmVfbnVtYmVyIjogbnVsbCwKICAgICAgICAgICJ0eXBlIjogIm1lcmNoYW50IiwKICAgICAgICAgICJ3ZWJzaXRlIjogImNvbWNhc3QuY29tIgogICAgICAgIH0KICAgICAgXSwKICAgICAgImRhdGUiOiAiMjAyNC0wMS0xNyIsCiAgICAgICJkYXRldGltZSI6IG51bGwsCiAgICAgICJpc29fY3VycmVuY3lfY29kZSI6ICJVU0QiLAogICAgICAibG9jYXRpb24iOiB7CiAgICAgICAgImFkZHJlc3MiOiBudWxsLAogICAgICAgICJjaXR5IjogbnVsbCwKICAgICAgICAiY291bnRyeSI6IG51bGwsCiAgICAgICAgImxhdCI6IG51bGwsCiAgICAgICAgImxvbiI6IG51bGwsCiAgICAgICAgInBvc3RhbF9jb2RlIjogbnVsbCwKICAgICAgICAicmVnaW9uIjogbnVsbCwKICAgICAgICAic3RvcmVfbnVtYmVyIjogbnVsbAogICAgICB9LAogICAgICAibG9nb191cmwiOiAiaHR0cHM6Ly9wbGFpZC1tZXJjaGFudC1sb2dvcy5wbGFpZC5jb20vY29tY2FzdF8yMjYucG5nIiwKICAgICAgIm1lcmNoYW50X2VudGl0eV9pZCI6ICJlZFJXeWE0TldqeVpxZUpialFWQUIycVpha1kxWHZwVk4wMjNnIiwKICAgICAgIm1lcmNoYW50X25hbWUiOiAiQ29tY2FzdCIsCiAgICAgICJuYW1lIjogIkNvbWNhc3QiLAogICAgICAib3JpZ2luYWxfZGVzY3JpcHRpb24iOiAiQ29tY2FzdCIsCiAgICAgICJwYXltZW50X2NoYW5uZWwiOiAib25saW5lIiwKICAgICAgInBheW1lbnRfbWV0YSI6IHsKICAgICAgICAiYnlfb3JkZXJfb2YiOiBudWxsLAogICAgICAgICJwYXllZSI6IG51bGwsCiAgICAgICAgInBheWVyIjogbnVsbCwKICAgICAgICAicGF5bWVudF9tZXRob2QiOiBudWxsLAogICAgICAgICJwYXltZW50X3Byb2Nlc3NvciI6IG51bGwsCiAgICAgICAgInBwZF9pZCI6IG51bGwsCiAgICAgICAgInJlYXNvbiI6IG51bGwsCiAgICAgICAgInJlZmVyZW5jZV9udW1iZXIiOiBudWxsCiAgICAgIH0sCiAgICAgICJwZW5kaW5nIjogZmFsc2UsCiAgICAgICJwZW5kaW5nX3RyYW5zYWN0aW9uX2lkIjogbnVsbCwKICAgICAgInBlcnNvbmFsX2ZpbmFuY2VfY2F0ZWdvcnkiOiB7CiAgICAgICAgImNvbmZpZGVuY2VfbGV2ZWwiOiAiVkVSWV9ISUdIIiwKICAgICAgICAiZGV0YWlsZWQiOiAiUkVOVF9BTkRfVVRJTElUSUVTX0lOVEVSTkVUX0FORF9DQUJMRSIsCiAgICAgICAgInByaW1hcnkiOiAiUkVOVF9BTkRfVVRJTElUSUVTIgogICAgICB9LAogICAgICAicGVyc29uYWxfZmluYW5jZV9jYXRlZ29yeV9pY29uX3VybCI6ICJodHRwczovL3BsYWlkLWNhdGVnb3J5LWljb25zLnBsYWlkLmNvbS9QRkNfUkVOVF9BTkRfVVRJTElUSUVTLnBuZyIsCiAgICAgICJ0cmFuc2FjdGlvbl9jb2RlIjogbnVsbCwKICAgICAgInRyYW5zYWN0aW9uX2lkIjogImR4NFpLNThYb1dDdmJYVlpsTmdhQzlSbDV3a0xFeENKRVFSbWsiLAogICAgICAidHJhbnNhY3Rpb25fdHlwZSI6ICJzcGVjaWFsIiwKICAgICAgInVub2ZmaWNpYWxfY3VycmVuY3lfY29kZSI6IG51bGwsCiAgICAgICJ3ZWJzaXRlIjogImNvbWNhc3QuY29tIgogICAgfSwKICAgIHsKICAgICAgImFjY291bnRfaWQiOiAiWnZsQkw1ZU1QUXRuWERWNlFyUjlzUmVOVlZ6MVhBaWVhZ0RQeiIsCiAgICAgICJhY2NvdW50X293bmVyIjogbnVsbCwKICAgICAgImFtb3VudCI6IDY5LjcxLAogICAgICAiYXV0aG9yaXplZF9kYXRlIjogIjIwMjQtMDEtMTUiLAogICAgICAiYXV0aG9yaXplZF9kYXRldGltZSI6IG51bGwsCiAgICAgICJjYXRlZ29yeSI6IFsKICAgICAgICAiU2hvcHMiLAogICAgICAgICJTdXBlcm1hcmtldHMgYW5kIEdyb2NlcmllcyIKICAgICAgXSwKICAgICAgImNhdGVnb3J5X2lkIjogIjE5MDQ3MDAwIiwKICAgICAgImNoZWNrX251bWJlciI6IG51bGwsCiAgICAgICJjb3VudGVycGFydGllcyI6IFsKICAgICAgICB7CiAgICAgICAgICAiY29uZmlkZW5jZV9sZXZlbCI6ICJWRVJZX0hJR0giLAogICAgICAgICAgImVudGl0eV9pZCI6ICJROUJ2TzUyYW1iNGJKSlplZ1lXQjJYQjREWXdkRHFYd0FOVk5YIiwKICAgICAgICAgICJsb2dvX3VybCI6ICJodHRwczovL3BsYWlkLW1lcmNoYW50LWxvZ29zLnBsYWlkLmNvbS9tZWlqZXJfNjIyLnBuZyIsCiAgICAgICAgICAibmFtZSI6ICJNZWlqZXIiLAogICAgICAgICAgInBob25lX251bWJlciI6IG51bGwsCiAgICAgICAgICAidHlwZSI6ICJtZXJjaGFudCIsCiAgICAgICAgICAid2Vic2l0ZSI6ICJtZWlqZXIuY29tIgogICAgICAgIH0KICAgICAgXSwKICAgICAgImRhdGUiOiAiMjAyNC0wMS0xNiIsCiAgICAgICJkYXRldGltZSI6IG51bGwsCiAgICAgICJpc29fY3VycmVuY3lfY29kZSI6ICJVU0QiLAogICAgICAibG9jYXRpb24iOiB7CiAgICAgICAgImFkZHJlc3MiOiBudWxsLAogICAgICAgICJjaXR5IjogbnVsbCwKICAgICAgICAiY291bnRyeSI6IG51bGwsCiAgICAgICAgImxhdCI6IG51bGwsCiAgICAgICAgImxvbiI6IG51bGwsCiAgICAgICAgInBvc3RhbF9jb2RlIjogbnVsbCwKICAgICAgICAicmVnaW9uIjogbnVsbCwKICAgICAgICAic3RvcmVfbnVtYmVyIjogIjAxMiIKICAgICAgfSwKICAgICAgImxvZ29fdXJsIjogImh0dHBzOi8vcGxhaWQtbWVyY2hhbnQtbG9nb3MucGxhaWQuY29tL21laWplcl82MjIucG5nIiwKICAgICAgIm1lcmNoYW50X2VudGl0eV9pZCI6ICJROUJ2TzUyYW1iNGJKSlplZ1lXQjJYQjREWXdkRHFYd0FOVk5YIiwKICAgICAgIm1lcmNoYW50X25hbWUiOiAiTWVpamVyIiwKICAgICAgIm5hbWUiOiAiTWVpamVyIiwKICAgICAgIm9yaWdpbmFsX2Rlc2NyaXB0aW9uIjogIk1FSUpFUiAjIDAxMiIsCiAgICAgICJwYXltZW50X2NoYW5uZWwiOiAiaW4gc3RvcmUiLAogICAgICAicGF5bWVudF9tZXRhIjogewogICAgICAgICJieV9vcmRlcl9vZiI6IG51bGwsCiAgICAgICAgInBheWVlIjogbnVsbCwKICAgICAgICAicGF5ZXIiOiBudWxsLAogICAgICAgICJwYXltZW50X21ldGhvZCI6IG51bGwsCiAgICAgICAgInBheW1lbnRfcHJvY2Vzc29yIjogbnVsbCwKICAgICAgICAicHBkX2lkIjogbnVsbCwKICAgICAgICAicmVhc29uIjogbnVsbCwKICAgICAgICAicmVmZXJlbmNlX251bWJlciI6IG51bGwKICAgICAgfSwKICAgICAgInBlbmRpbmciOiBmYWxzZSwKICAgICAgInBlbmRpbmdfdHJhbnNhY3Rpb25faWQiOiBudWxsLAogICAgICAicGVyc29uYWxfZmluYW5jZV9jYXRlZ29yeSI6IHsKICAgICAgICAiY29uZmlkZW5jZV9sZXZlbCI6ICJWRVJZX0hJR0giLAogICAgICAgICJkZXRhaWxlZCI6ICJGT09EX0FORF9EUklOS19HUk9DRVJJRVMiLAogICAgICAgICJwcmltYXJ5IjogIkZPT0RfQU5EX0RSSU5LIgogICAgICB9LAogICAgICAicGVyc29uYWxfZmluYW5jZV9jYXRlZ29yeV9pY29uX3VybCI6ICJodHRwczovL3BsYWlkLWNhdGVnb3J5LWljb25zLnBsYWlkLmNvbS9QRkNfRk9PRF9BTkRfRFJJTksucG5nIiwKICAgICAgInRyYW5zYWN0aW9uX2NvZGUiOiBudWxsLAogICAgICAidHJhbnNhY3Rpb25faWQiOiAiYXp4N0E1OVgxZ2M1b3JWNmRQdzNzb3FBakozelp5c1o1UUR6RSIsCiAgICAgICJ0cmFuc2FjdGlvbl90eXBlIjogInBsYWNlIiwKICAgICAgInVub2ZmaWNpYWxfY3VycmVuY3lfY29kZSI6IG51bGwsCiAgICAgICJ3ZWJzaXRlIjogIm1laWplci5jb20iCiAgICB9LAogICAgewogICAgICAiYWNjb3VudF9pZCI6ICJadmxCTDVlTVBRdG5YRFY2UXJSOXNSZU5WVnoxWEFpZWFnRFB6IiwKICAgICAgImFjY291bnRfb3duZXIiOiBudWxsLAogICAgICAiYW1vdW50IjogMC44LAogICAgICAiYXV0aG9yaXplZF9kYXRlIjogIjIwMjQtMDEtMTYiLAogICAgICAiYXV0aG9yaXplZF9kYXRldGltZSI6IG51bGwsCiAgICAgICJjYXRlZ29yeSI6IFsKICAgICAgICAiU2VydmljZSIsCiAgICAgICAgIlN1YnNjcmlwdGlvbiIKICAgICAgXSwKICAgICAgImNhdGVnb3J5X2lkIjogIjE4MDYxMDAwIiwKICAgICAgImNoZWNrX251bWJlciI6IG51bGwsCiAgICAgICJjb3VudGVycGFydGllcyI6IFsKICAgICAgICB7CiAgICAgICAgICAiY29uZmlkZW5jZV9sZXZlbCI6ICJWRVJZX0hJR0giLAogICAgICAgICAgImVudGl0eV9pZCI6ICJaek8xVjZnSjhLYk85MjZLck5ZT05iUXFvYlhwZ2pXbkEyOG5SIiwKICAgICAgICAgICJsb2dvX3VybCI6ICJodHRwczovL3BsYWlkLW1lcmNoYW50LWxvZ29zLnBsYWlkLmNvbS9odWx1XzUwNC5wbmciLAogICAgICAgICAgIm5hbWUiOiAiSHVsdSIsCiAgICAgICAgICAicGhvbmVfbnVtYmVyIjogbnVsbCwKICAgICAgICAgICJ0eXBlIjogIm1lcmNoYW50IiwKICAgICAgICAgICJ3ZWJzaXRlIjogImh1bHUuY29tIgogICAgICAgIH0KICAgICAgXSwKICAgICAgImRhdGUiOiAiMjAyNC0wMS0xNiIsCiAgICAgICJkYXRldGltZSI6IG51bGwsCiAgICAgICJpc29fY3VycmVuY3lfY29kZSI6ICJVU0QiLAogICAgICAibG9jYXRpb24iOiB7CiAgICAgICAgImFkZHJlc3MiOiBudWxsLAogICAgICAgICJjaXR5IjogbnVsbCwKICAgICAgICAiY291bnRyeSI6IG51bGwsCiAgICAgICAgImxhdCI6IG51bGwsCiAgICAgICAgImxvbiI6IG51bGwsCiAgICAgICAgInBvc3RhbF9jb2RlIjogbnVsbCwKICAgICAgICAicmVnaW9uIjogbnVsbCwKICAgICAgICAic3RvcmVfbnVtYmVyIjogbnVsbAogICAgICB9LAogICAgICAibG9nb191cmwiOiAiaHR0cHM6Ly9wbGFpZC1tZXJjaGFudC1sb2dvcy5wbGFpZC5jb20vaHVsdV81MDQucG5nIiwKICAgICAgIm1lcmNoYW50X2VudGl0eV9pZCI6ICJaek8xVjZnSjhLYk85MjZLck5ZT05iUXFvYlhwZ2pXbkEyOG5SIiwKICAgICAgIm1lcmNoYW50X25hbWUiOiAiSHVsdSIsCiAgICAgICJuYW1lIjogIkhMVSpIdWx1IDAxMjM0NTY3ODkwMTItVSBIVUxVLkNPTS9CSUxMQ0EiLAogICAgICAib3JpZ2luYWxfZGVzY3JpcHRpb24iOiAiSExVKkh1bHUgMDEyMzQ1Njc4OTAxMi1VIEhVTFUuQ09NL0JJTExDQSIsCiAgICAgICJwYXltZW50X2NoYW5uZWwiOiAib25saW5lIiwKICAgICAgInBheW1lbnRfbWV0YSI6IHsKICAgICAgICAiYnlfb3JkZXJfb2YiOiBudWxsLAogICAgICAgICJwYXllZSI6IG51bGwsCiAgICAgICAgInBheWVyIjogbnVsbCwKICAgICAgICAicGF5bWVudF9tZXRob2QiOiBudWxsLAogICAgICAgICJwYXltZW50X3Byb2Nlc3NvciI6IG51bGwsCiAgICAgICAgInBwZF9pZCI6IG51bGwsCiAgICAgICAgInJlYXNvbiI6IG51bGwsCiAgICAgICAgInJlZmVyZW5jZV9udW1iZXIiOiBudWxsCiAgICAgIH0sCiAgICAgICJwZW5kaW5nIjogZmFsc2UsCiAgICAgICJwZW5kaW5nX3RyYW5zYWN0aW9uX2lkIjogbnVsbCwKICAgICAgInBlcnNvbmFsX2ZpbmFuY2VfY2F0ZWdvcnkiOiB7CiAgICAgICAgImNvbmZpZGVuY2VfbGV2ZWwiOiAiVkVSWV9ISUdIIiwKICAgICAgICAiZGV0YWlsZWQiOiAiRU5URVJUQUlOTUVOVF9UVl9BTkRfTU9WSUVTIiwKICAgICAgICAicHJpbWFyeSI6ICJFTlRFUlRBSU5NRU5UIgogICAgICB9LAogICAgICAicGVyc29uYWxfZmluYW5jZV9jYXRlZ29yeV9pY29uX3VybCI6ICJodHRwczovL3BsYWlkLWNhdGVnb3J5LWljb25zLnBsYWlkLmNvbS9QRkNfRU5URVJUQUlOTUVOVC5wbmciLAogICAgICAidHJhbnNhY3Rpb25fY29kZSI6IG51bGwsCiAgICAgICJ0cmFuc2FjdGlvbl9pZCI6ICI0OXFaNG9HYng3VDg3M1hEb2VibkZtbGJkVzRlRGFGSmJBTFpyIiwKICAgICAgInRyYW5zYWN0aW9uX3R5cGUiOiAicGxhY2UiLAogICAgICAidW5vZmZpY2lhbF9jdXJyZW5jeV9jb2RlIjogbnVsbCwKICAgICAgIndlYnNpdGUiOiAiaHVsdS5jb20iCiAgICB9LAogICAgewogICAgICAiYWNjb3VudF9pZCI6ICJadmxCTDVlTVBRdG5YRFY2UXJSOXNSZU5WVnoxWEFpZWFnRFB6IiwKICAgICAgImFjY291bnRfb3duZXIiOiBudWxsLAogICAgICAiYW1vdW50IjogMjguMTksCiAgICAgICJhdXRob3JpemVkX2RhdGUiOiAiMjAyNC0wMS0xOCIsCiAgICAgICJhdXRob3JpemVkX2RhdGV0aW1lIjogbnVsbCwKICAgICAgImNhdGVnb3J5IjogWwogICAgICAgICJTaG9wcyIsCiAgICAgICAgIldhcmVob3VzZXMgYW5kIFdob2xlc2FsZSBTdG9yZXMiCiAgICAgIF0sCiAgICAgICJjYXRlZ29yeV9pZCI6ICIxOTA1MTAwMCIsCiAgICAgICJjaGVja19udW1iZXIiOiBudWxsLAogICAgICAiY291bnRlcnBhcnRpZXMiOiBbCiAgICAgICAgewogICAgICAgICAgImNvbmZpZGVuY2VfbGV2ZWwiOiAiVkVSWV9ISUdIIiwKICAgICAgICAgICJlbnRpdHlfaWQiOiAicEJvd0FvWkpNTTlES1IzN2p2Tm16TTR5V0JCWHlNelYyck0zQSIsCiAgICAgICAgICAibG9nb191cmwiOiAiaHR0cHM6Ly9wbGFpZC1tZXJjaGFudC1sb2dvcy5wbGFpZC5jb20vY29zdGNvXzIzNS5wbmciLAogICAgICAgICAgIm5hbWUiOiAiQ29zdGNvIiwKICAgICAgICAgICJwaG9uZV9udW1iZXIiOiBudWxsLAogICAgICAgICAgInR5cGUiOiAibWVyY2hhbnQiLAogICAgICAgICAgIndlYnNpdGUiOiAiY29zdGNvLmNvbSIKICAgICAgICB9CiAgICAgIF0sCiAgICAgICJkYXRlIjogIjIwMjQtMDEtMTgiLAogICAgICAiZGF0ZXRpbWUiOiBudWxsLAogICAgICAiaXNvX2N1cnJlbmN5X2NvZGUiOiAiVVNEIiwKICAgICAgImxvY2F0aW9uIjogewogICAgICAgICJhZGRyZXNzIjogbnVsbCwKICAgICAgICAiY2l0eSI6IG51bGwsCiAgICAgICAgImNvdW50cnkiOiBudWxsLAogICAgICAgICJsYXQiOiBudWxsLAogICAgICAgICJsb24iOiBudWxsLAogICAgICAgICJwb3N0YWxfY29kZSI6IG51bGwsCiAgICAgICAgInJlZ2lvbiI6IG51bGwsCiAgICAgICAgInN0b3JlX251bWJlciI6IG51bGwKICAgICAgfSwKICAgICAgImxvZ29fdXJsIjogImh0dHBzOi8vcGxhaWQtbWVyY2hhbnQtbG9nb3MucGxhaWQuY29tL2Nvc3Rjb18yMzUucG5nIiwKICAgICAgIm1lcmNoYW50X2VudGl0eV9pZCI6ICJwQm93QW9aSk1NOURLUjM3anZObXpNNHlXQkJYeU16VjJyTTNBIiwKICAgICAgIm1lcmNoYW50X25hbWUiOiAiQ29zdGNvIiwKICAgICAgIm5hbWUiOiAiQ29zdGNvIiwKICAgICAgIm9yaWdpbmFsX2Rlc2NyaXB0aW9uIjogIldXVyBDT1NUQ08gQ09NIiwKICAgICAgInBheW1lbnRfY2hhbm5lbCI6ICJpbiBzdG9yZSIsCiAgICAgICJwYXltZW50X21ldGEiOiB7CiAgICAgICAgImJ5X29yZGVyX29mIjogbnVsbCwKICAgICAgICAicGF5ZWUiOiBudWxsLAogICAgICAgICJwYXllciI6IG51bGwsCiAgICAgICAgInBheW1lbnRfbWV0aG9kIjogbnVsbCwKICAgICAgICAicGF5bWVudF9wcm9jZXNzb3IiOiBudWxsLAogICAgICAgICJwcGRfaWQiOiBudWxsLAogICAgICAgICJyZWFzb24iOiBudWxsLAogICAgICAgICJyZWZlcmVuY2VfbnVtYmVyIjogbnVsbAogICAgICB9LAogICAgICAicGVuZGluZyI6IGZhbHNlLAogICAgICAicGVuZGluZ190cmFuc2FjdGlvbl9pZCI6IG51bGwsCiAgICAgICJwZXJzb25hbF9maW5hbmNlX2NhdGVnb3J5IjogewogICAgICAgICJjb25maWRlbmNlX2xldmVsIjogIlZFUllfSElHSCIsCiAgICAgICAgImRldGFpbGVkIjogIkdFTkVSQUxfTUVSQ0hBTkRJU0VfU1VQRVJTVE9SRVMiLAogICAgICAgICJwcmltYXJ5IjogIkdFTkVSQUxfTUVSQ0hBTkRJU0UiCiAgICAgIH0sCiAgICAgICJwZXJzb25hbF9maW5hbmNlX2NhdGVnb3J5X2ljb25fdXJsIjogImh0dHBzOi8vcGxhaWQtY2F0ZWdvcnktaWNvbnMucGxhaWQuY29tL1BGQ19HRU5FUkFMX01FUkNIQU5ESVNFLnBuZyIsCiAgICAgICJ0cmFuc2FjdGlvbl9jb2RlIjogbnVsbCwKICAgICAgInRyYW5zYWN0aW9uX2lkIjogIk5va1BkNWdObHpmb1YxYnl6R2tsczdKTVA1RzNROXN5NjVRZ1oiLAogICAgICAidHJhbnNhY3Rpb25fdHlwZSI6ICJwbGFjZSIsCiAgICAgICJ1bm9mZmljaWFsX2N1cnJlbmN5X2NvZGUiOiBudWxsLAogICAgICAid2Vic2l0ZSI6ICJjb3N0Y28uY29tIgogICAgfSwKICAgIHsKICAgICAgImFjY291bnRfaWQiOiAiWnZsQkw1ZU1QUXRuWERWNlFyUjlzUmVOVlZ6MVhBaWVhZ0RQeiIsCiAgICAgICJhY2NvdW50X293bmVyIjogbnVsbCwKICAgICAgImFtb3VudCI6IDE3OTEuMDEsCiAgICAgICJhdXRob3JpemVkX2RhdGUiOiAiMjAyNC0wMS0xOCIsCiAgICAgICJhdXRob3JpemVkX2RhdGV0aW1lIjogbnVsbCwKICAgICAgImNhdGVnb3J5IjogWwogICAgICAgICJUcmF2ZWwiLAogICAgICAgICJMb2RnaW5nIgogICAgICBdLAogICAgICAiY2F0ZWdvcnlfaWQiOiAiMjIwMTIwMDAiLAogICAgICAiY2hlY2tfbnVtYmVyIjogbnVsbCwKICAgICAgImNvdW50ZXJwYXJ0aWVzIjogW10sCiAgICAgICJkYXRlIjogIjIwMjQtMDEtMTkiLAogICAgICAiZGF0ZXRpbWUiOiBudWxsLAogICAgICAiaXNvX2N1cnJlbmN5X2NvZGUiOiAiVVNEIiwKICAgICAgImxvY2F0aW9uIjogewogICAgICAgICJhZGRyZXNzIjogbnVsbCwKICAgICAgICAiY2l0eSI6IG51bGwsCiAgICAgICAgImNvdW50cnkiOiBudWxsLAogICAgICAgICJsYXQiOiBudWxsLAogICAgICAgICJsb24iOiBudWxsLAogICAgICAgICJwb3N0YWxfY29kZSI6IG51bGwsCiAgICAgICAgInJlZ2lvbiI6IG51bGwsCiAgICAgICAgInN0b3JlX251bWJlciI6IG51bGwKICAgICAgfSwKICAgICAgImxvZ29fdXJsIjogbnVsbCwKICAgICAgIm1lcmNoYW50X2VudGl0eV9pZCI6IG51bGwsCiAgICAgICJtZXJjaGFudF9uYW1lIjogbnVsbCwKICAgICAgIm5hbWUiOiAiRElTTkVZIFJFU09SVFMtV0RUQyIsCiAgICAgICJvcmlnaW5hbF9kZXNjcmlwdGlvbiI6ICJESVNORVkgUkVTT1JUUy1XRFRDIiwKICAgICAgInBheW1lbnRfY2hhbm5lbCI6ICJpbiBzdG9yZSIsCiAgICAgICJwYXltZW50X21ldGEiOiB7CiAgICAgICAgImJ5X29yZGVyX29mIjogbnVsbCwKICAgICAgICAicGF5ZWUiOiBudWxsLAogICAgICAgICJwYXllciI6IG51bGwsCiAgICAgICAgInBheW1lbnRfbWV0aG9kIjogbnVsbCwKICAgICAgICAicGF5bWVudF9wcm9jZXNzb3IiOiBudWxsLAogICAgICAgICJwcGRfaWQiOiBudWxsLAogICAgICAgICJyZWFzb24iOiBudWxsLAogICAgICAgICJyZWZlcmVuY2VfbnVtYmVyIjogbnVsbAogICAgICB9LAogICAgICAicGVuZGluZyI6IGZhbHNlLAogICAgICAicGVuZGluZ190cmFuc2FjdGlvbl9pZCI6IG51bGwsCiAgICAgICJwZXJzb25hbF9maW5hbmNlX2NhdGVnb3J5IjogewogICAgICAgICJjb25maWRlbmNlX2xldmVsIjogIkxPVyIsCiAgICAgICAgImRldGFpbGVkIjogIkVOVEVSVEFJTk1FTlRfU1BPUlRJTkdfRVZFTlRTX0FNVVNFTUVOVF9QQVJLU19BTkRfTVVTRVVNUyIsCiAgICAgICAgInByaW1hcnkiOiAiRU5URVJUQUlOTUVOVCIKICAgICAgfSwKICAgICAgInBlcnNvbmFsX2ZpbmFuY2VfY2F0ZWdvcnlfaWNvbl91cmwiOiAiaHR0cHM6Ly9wbGFpZC1jYXRlZ29yeS1pY29ucy5wbGFpZC5jb20vUEZDX0VOVEVSVEFJTk1FTlQucG5nIiwKICAgICAgInRyYW5zYWN0aW9uX2NvZGUiOiBudWxsLAogICAgICAidHJhbnNhY3Rpb25faWQiOiAiUDhuNzQ1b1dLM2NuWEt5VzMxeDlzbERCNzV4WkVlaW82V0E5YSIsCiAgICAgICJ0cmFuc2FjdGlvbl90eXBlIjogInBsYWNlIiwKICAgICAgInVub2ZmaWNpYWxfY3VycmVuY3lfY29kZSI6IG51bGwsCiAgICAgICJ3ZWJzaXRlIjogbnVsbAogICAgfSwKICAgIHsKICAgICAgImFjY291bnRfaWQiOiAiWnZsQkw1ZU1QUXRuWERWNlFyUjlzUmVOVlZ6MVhBaWVhZ0RQeiIsCiAgICAgICJhY2NvdW50X293bmVyIjogbnVsbCwKICAgICAgImFtb3VudCI6IDcuNDksCiAgICAgICJhdXRob3JpemVkX2RhdGUiOiAiMjAyNC0wMS0xOSIsCiAgICAgICJhdXRob3JpemVkX2RhdGV0aW1lIjogbnVsbCwKICAgICAgImNhdGVnb3J5IjogWwogICAgICAgICJTZXJ2aWNlIiwKICAgICAgICAiU3Vic2NyaXB0aW9uIgogICAgICBdLAogICAgICAiY2F0ZWdvcnlfaWQiOiAiMTgwNjEwMDAiLAogICAgICAiY2hlY2tfbnVtYmVyIjogbnVsbCwKICAgICAgImNvdW50ZXJwYXJ0aWVzIjogWwogICAgICAgIHsKICAgICAgICAgICJjb25maWRlbmNlX2xldmVsIjogIlZFUllfSElHSCIsCiAgICAgICAgICAiZW50aXR5X2lkIjogIjIzNzNRT1pKMThEcXFLMEtXdmdwbmczbm1WRExNdkR2eTA1Uk4iLAogICAgICAgICAgImxvZ29fdXJsIjogImh0dHBzOi8vcGxhaWQtbWVyY2hhbnQtbG9nb3MucGxhaWQuY29tL3Nwb3RpZnlfOTQ3LnBuZyIsCiAgICAgICAgICAibmFtZSI6ICJTcG90aWZ5IiwKICAgICAgICAgICJwaG9uZV9udW1iZXIiOiBudWxsLAogICAgICAgICAgInR5cGUiOiAibWVyY2hhbnQiLAogICAgICAgICAgIndlYnNpdGUiOiAic3BvdGlmeS5jb20iCiAgICAgICAgfQogICAgICBdLAogICAgICAiZGF0ZSI6ICIyMDI0LTAxLTE5IiwKICAgICAgImRhdGV0aW1lIjogbnVsbCwKICAgICAgImlzb19jdXJyZW5jeV9jb2RlIjogIlVTRCIsCiAgICAgICJsb2NhdGlvbiI6IHsKICAgICAgICAiYWRkcmVzcyI6IG51bGwsCiAgICAgICAgImNpdHkiOiBudWxsLAogICAgICAgICJjb3VudHJ5IjogbnVsbCwKICAgICAgICAibGF0IjogbnVsbCwKICAgICAgICAibG9uIjogbnVsbCwKICAgICAgICAicG9zdGFsX2NvZGUiOiBudWxsLAogICAgICAgICJyZWdpb24iOiAiTlkiLAogICAgICAgICJzdG9yZV9udW1iZXIiOiBudWxsCiAgICAgIH0sCiAgICAgICJsb2dvX3VybCI6ICJodHRwczovL3BsYWlkLW1lcmNoYW50LWxvZ29zLnBsYWlkLmNvbS9zcG90aWZ5Xzk0Ny5wbmciLAogICAgICAibWVyY2hhbnRfZW50aXR5X2lkIjogIjIzNzNRT1pKMThEcXFLMEtXdmdwbmczbm1WRExNdkR2eTA1Uk4iLAogICAgICAibWVyY2hhbnRfbmFtZSI6ICJTcG90aWZ5IiwKICAgICAgIm5hbWUiOiAiU3BvdGlmeSIsCiAgICAgICJvcmlnaW5hbF9kZXNjcmlwdGlvbiI6ICJTcG90aWZ5IFVzYSAwMTItMDEyMzQ1NiBOeSIsCiAgICAgICJwYXltZW50X2NoYW5uZWwiOiAib25saW5lIiwKICAgICAgInBheW1lbnRfbWV0YSI6IHsKICAgICAgICAiYnlfb3JkZXJfb2YiOiBudWxsLAogICAgICAgICJwYXllZSI6IG51bGwsCiAgICAgICAgInBheWVyIjogbnVsbCwKICAgICAgICAicGF5bWVudF9tZXRob2QiOiBudWxsLAogICAgICAgICJwYXltZW50X3Byb2Nlc3NvciI6IG51bGwsCiAgICAgICAgInBwZF9pZCI6IG51bGwsCiAgICAgICAgInJlYXNvbiI6IG51bGwsCiAgICAgICAgInJlZmVyZW5jZV9udW1iZXIiOiBudWxsCiAgICAgIH0sCiAgICAgICJwZW5kaW5nIjogZmFsc2UsCiAgICAgICJwZW5kaW5nX3RyYW5zYWN0aW9uX2lkIjogbnVsbCwKICAgICAgInBlcnNvbmFsX2ZpbmFuY2VfY2F0ZWdvcnkiOiB7CiAgICAgICAgImNvbmZpZGVuY2VfbGV2ZWwiOiAiVkVSWV9ISUdIIiwKICAgICAgICAiZGV0YWlsZWQiOiAiRU5URVJUQUlOTUVOVF9NVVNJQ19BTkRfQVVESU8iLAogICAgICAgICJwcmltYXJ5IjogIkVOVEVSVEFJTk1FTlQiCiAgICAgIH0sCiAgICAgICJwZXJzb25hbF9maW5hbmNlX2NhdGVnb3J5X2ljb25fdXJsIjogImh0dHBzOi8vcGxhaWQtY2F0ZWdvcnktaWNvbnMucGxhaWQuY29tL1BGQ19FTlRFUlRBSU5NRU5ULnBuZyIsCiAgICAgICJ0cmFuc2FjdGlvbl9jb2RlIjogbnVsbCwKICAgICAgInRyYW5zYWN0aW9uX2lkIjogImpqUTdkbFA1R3lDYk5hdnc3cnpwdHk0TVFtazlvcGk2V0xhQmUiLAogICAgICAidHJhbnNhY3Rpb25fdHlwZSI6ICJwbGFjZSIsCiAgICAgICJ1bm9mZmljaWFsX2N1cnJlbmN5X2NvZGUiOiBudWxsLAogICAgICAid2Vic2l0ZSI6ICJzcG90aWZ5LmNvbSIKICAgIH0sCiAgICB7CiAgICAgICJhY2NvdW50X2lkIjogIlp2bEJMNWVNUFF0blhEVjZRclI5c1JlTlZWejFYQWllYWdEUHoiLAogICAgICAiYWNjb3VudF9vd25lciI6IG51bGwsCiAgICAgICJhbW91bnQiOiAxNS43NSwKICAgICAgImF1dGhvcml6ZWRfZGF0ZSI6ICIyMDI0LTAxLTE5IiwKICAgICAgImF1dGhvcml6ZWRfZGF0ZXRpbWUiOiBudWxsLAogICAgICAiY2F0ZWdvcnkiOiBbCiAgICAgICAgIkZvb2QgYW5kIERyaW5rIiwKICAgICAgICAiUmVzdGF1cmFudHMiCiAgICAgIF0sCiAgICAgICJjYXRlZ29yeV9pZCI6ICIxMzAwNTAwMCIsCiAgICAgICJjaGVja19udW1iZXIiOiBudWxsLAogICAgICAiY291bnRlcnBhcnRpZXMiOiBbXSwKICAgICAgImRhdGUiOiAiMjAyNC0wMS0xOSIsCiAgICAgICJkYXRldGltZSI6IG51bGwsCiAgICAgICJpc29fY3VycmVuY3lfY29kZSI6ICJVU0QiLAogICAgICAibG9jYXRpb24iOiB7CiAgICAgICAgImFkZHJlc3MiOiBudWxsLAogICAgICAgICJjaXR5IjogbnVsbCwKICAgICAgICAiY291bnRyeSI6IG51bGwsCiAgICAgICAgImxhdCI6IG51bGwsCiAgICAgICAgImxvbiI6IG51bGwsCiAgICAgICAgInBvc3RhbF9jb2RlIjogbnVsbCwKICAgICAgICAicmVnaW9uIjogbnVsbCwKICAgICAgICAic3RvcmVfbnVtYmVyIjogbnVsbAogICAgICB9LAogICAgICAibG9nb191cmwiOiBudWxsLAogICAgICAibWVyY2hhbnRfZW50aXR5X2lkIjogbnVsbCwKICAgICAgIm1lcmNoYW50X25hbWUiOiBudWxsLAogICAgICAibmFtZSI6ICJQQVJLV0hJWiwgSU5DLiIsCiAgICAgICJvcmlnaW5hbF9kZXNjcmlwdGlvbiI6ICJQQVJLV0hJWiwgSU5DLiIsCiAgICAgICJwYXltZW50X2NoYW5uZWwiOiAiaW4gc3RvcmUiLAogICAgICAicGF5bWVudF9tZXRhIjogewogICAgICAgICJieV9vcmRlcl9vZiI6IG51bGwsCiAgICAgICAgInBheWVlIjogbnVsbCwKICAgICAgICAicGF5ZXIiOiBudWxsLAogICAgICAgICJwYXltZW50X21ldGhvZCI6IG51bGwsCiAgICAgICAgInBheW1lbnRfcHJvY2Vzc29yIjogbnVsbCwKICAgICAgICAicHBkX2lkIjogbnVsbCwKICAgICAgICAicmVhc29uIjogbnVsbCwKICAgICAgICAicmVmZXJlbmNlX251bWJlciI6IG51bGwKICAgICAgfSwKICAgICAgInBlbmRpbmciOiBmYWxzZSwKICAgICAgInBlbmRpbmdfdHJhbnNhY3Rpb25faWQiOiBudWxsLAogICAgICAicGVyc29uYWxfZmluYW5jZV9jYXRlZ29yeSI6IHsKICAgICAgICAiY29uZmlkZW5jZV9sZXZlbCI6ICJMT1ciLAogICAgICAgICJkZXRhaWxlZCI6ICJFTlRFUlRBSU5NRU5UX1NQT1JUSU5HX0VWRU5UU19BTVVTRU1FTlRfUEFSS1NfQU5EX01VU0VVTVMiLAogICAgICAgICJwcmltYXJ5IjogIkVOVEVSVEFJTk1FTlQiCiAgICAgIH0sCiAgICAgICJwZXJzb25hbF9maW5hbmNlX2NhdGVnb3J5X2ljb25fdXJsIjogImh0dHBzOi8vcGxhaWQtY2F0ZWdvcnktaWNvbnMucGxhaWQuY29tL1BGQ19FTlRFUlRBSU5NRU5ULnBuZyIsCiAgICAgICJ0cmFuc2FjdGlvbl9jb2RlIjogbnVsbCwKICAgICAgInRyYW5zYWN0aW9uX2lkIjogIjc2elhqRWxiNFp0OFJMNERBek05Rjlad2o4R1c2RENkSm54bWEiLAogICAgICAidHJhbnNhY3Rpb25fdHlwZSI6ICJwbGFjZSIsCiAgICAgICJ1bm9mZmljaWFsX2N1cnJlbmN5X2NvZGUiOiBudWxsLAogICAgICAid2Vic2l0ZSI6IG51bGwKICAgIH0sCiAgICB7CiAgICAgICJhY2NvdW50X2lkIjogIlp2bEJMNWVNUFF0blhEVjZRclI5c1JlTlZWejFYQWllYWdEUHoiLAogICAgICAiYWNjb3VudF9vd25lciI6IG51bGwsCiAgICAgICJhbW91bnQiOiAxMC43MywKICAgICAgImF1dGhvcml6ZWRfZGF0ZSI6ICIyMDI0LTAxLTE5IiwKICAgICAgImF1dGhvcml6ZWRfZGF0ZXRpbWUiOiBudWxsLAogICAgICAiY2F0ZWdvcnkiOiBbCiAgICAgICAgIlNlcnZpY2UiLAogICAgICAgICJTaGlwcGluZyBhbmQgRnJlaWdodCIKICAgICAgXSwKICAgICAgImNhdGVnb3J5X2lkIjogIjE4MDU4MDAwIiwKICAgICAgImNoZWNrX251bWJlciI6IG51bGwsCiAgICAgICJjb3VudGVycGFydGllcyI6IFtdLAogICAgICAiZGF0ZSI6ICIyMDI0LTAxLTE5IiwKICAgICAgImRhdGV0aW1lIjogbnVsbCwKICAgICAgImlzb19jdXJyZW5jeV9jb2RlIjogIlVTRCIsCiAgICAgICJsb2NhdGlvbiI6IHsKICAgICAgICAiYWRkcmVzcyI6IG51bGwsCiAgICAgICAgImNpdHkiOiBudWxsLAogICAgICAgICJjb3VudHJ5IjogbnVsbCwKICAgICAgICAibGF0IjogbnVsbCwKICAgICAgICAibG9uIjogbnVsbCwKICAgICAgICAicG9zdGFsX2NvZGUiOiBudWxsLAogICAgICAgICJyZWdpb24iOiAiREMiLAogICAgICAgICJzdG9yZV9udW1iZXIiOiBudWxsCiAgICAgIH0sCiAgICAgICJsb2dvX3VybCI6IG51bGwsCiAgICAgICJtZXJjaGFudF9lbnRpdHlfaWQiOiBudWxsLAogICAgICAibWVyY2hhbnRfbmFtZSI6IG51bGwsCiAgICAgICJuYW1lIjogIlVTUFMuQ09NIENMSUNLTlNISVAiLAogICAgICAib3JpZ2luYWxfZGVzY3JpcHRpb24iOiAiVVNQUy5DT00gQ0xJQ0tOU0hJUCAwMTItMDEyLTAxMjMgREMiLAogICAgICAicGF5bWVudF9jaGFubmVsIjogIm9ubGluZSIsCiAgICAgICJwYXltZW50X21ldGEiOiB7CiAgICAgICAgImJ5X29yZGVyX29mIjogbnVsbCwKICAgICAgICAicGF5ZWUiOiBudWxsLAogICAgICAgICJwYXllciI6IG51bGwsCiAgICAgICAgInBheW1lbnRfbWV0aG9kIjogbnVsbCwKICAgICAgICAicGF5bWVudF9wcm9jZXNzb3IiOiBudWxsLAogICAgICAgICJwcGRfaWQiOiBudWxsLAogICAgICAgICJyZWFzb24iOiBudWxsLAogICAgICAgICJyZWZlcmVuY2VfbnVtYmVyIjogbnVsbAogICAgICB9LAogICAgICAicGVuZGluZyI6IGZhbHNlLAogICAgICAicGVuZGluZ190cmFuc2FjdGlvbl9pZCI6IG51bGwsCiAgICAgICJwZXJzb25hbF9maW5hbmNlX2NhdGVnb3J5IjogewogICAgICAgICJjb25maWRlbmNlX2xldmVsIjogIkxPVyIsCiAgICAgICAgImRldGFpbGVkIjogIkdFTkVSQUxfU0VSVklDRVNfT1RIRVJfR0VORVJBTF9TRVJWSUNFUyIsCiAgICAgICAgInByaW1hcnkiOiAiR0VORVJBTF9TRVJWSUNFUyIKICAgICAgfSwKICAgICAgInBlcnNvbmFsX2ZpbmFuY2VfY2F0ZWdvcnlfaWNvbl91cmwiOiAiaHR0cHM6Ly9wbGFpZC1jYXRlZ29yeS1pY29ucy5wbGFpZC5jb20vUEZDX0dFTkVSQUxfU0VSVklDRVMucG5nIiwKICAgICAgInRyYW5zYWN0aW9uX2NvZGUiOiBudWxsLAogICAgICAidHJhbnNhY3Rpb25faWQiOiAiZWROd3I1MVhnQWNvQVJWWlA2OHZzZFJHenFvbTlCdXI5NW16SyIsCiAgICAgICJ0cmFuc2FjdGlvbl90eXBlIjogInBsYWNlIiwKICAgICAgInVub2ZmaWNpYWxfY3VycmVuY3lfY29kZSI6IG51bGwsCiAgICAgICJ3ZWJzaXRlIjogbnVsbAogICAgfSwKICAgIHsKICAgICAgImFjY291bnRfaWQiOiAiWnZsQkw1ZU1QUXRuWERWNlFyUjlzUmVOVlZ6MVhBaWVhZ0RQeiIsCiAgICAgICJhY2NvdW50X293bmVyIjogbnVsbCwKICAgICAgImFtb3VudCI6IDE5LjExLAogICAgICAiYXV0aG9yaXplZF9kYXRlIjogIjIwMjQtMDEtMTkiLAogICAgICAiYXV0aG9yaXplZF9kYXRldGltZSI6IG51bGwsCiAgICAgICJjYXRlZ29yeSI6IFsKICAgICAgICAiU2VydmljZSIsCiAgICAgICAgIlN1YnNjcmlwdGlvbiIKICAgICAgXSwKICAgICAgImNhdGVnb3J5X2lkIjogIjE4MDYxMDAwIiwKICAgICAgImNoZWNrX251bWJlciI6IG51bGwsCiAgICAgICJjb3VudGVycGFydGllcyI6IFsKICAgICAgICB7CiAgICAgICAgICAiY29uZmlkZW5jZV9sZXZlbCI6ICJWRVJZX0hJR0giLAogICAgICAgICAgImVudGl0eV9pZCI6ICJyeWJlQU95ZzZaRTl6OExkRDg1Mk9iSzNrUThSUmFNMEx5RHJnIiwKICAgICAgICAgICJsb2dvX3VybCI6ICJodHRwczovL3BsYWlkLW1lcmNoYW50LWxvZ29zLnBsYWlkLmNvbS9zaXJpdXN4bV85MDYucG5nIiwKICAgICAgICAgICJuYW1lIjogIlNpcml1c1hNIiwKICAgICAgICAgICJwaG9uZV9udW1iZXIiOiBudWxsLAogICAgICAgICAgInR5cGUiOiAibWVyY2hhbnQiLAogICAgICAgICAgIndlYnNpdGUiOiAic2lyaXVzeG0uY29tIgogICAgICAgIH0KICAgICAgXSwKICAgICAgImRhdGUiOiAiMjAyNC0wMS0xOSIsCiAgICAgICJkYXRldGltZSI6IG51bGwsCiAgICAgICJpc29fY3VycmVuY3lfY29kZSI6ICJVU0QiLAogICAgICAibG9jYXRpb24iOiB7CiAgICAgICAgImFkZHJlc3MiOiBudWxsLAogICAgICAgICJjaXR5IjogbnVsbCwKICAgICAgICAiY291bnRyeSI6IG51bGwsCiAgICAgICAgImxhdCI6IG51bGwsCiAgICAgICAgImxvbiI6IG51bGwsCiAgICAgICAgInBvc3RhbF9jb2RlIjogbnVsbCwKICAgICAgICAicmVnaW9uIjogIk5ZIiwKICAgICAgICAic3RvcmVfbnVtYmVyIjogbnVsbAogICAgICB9LAogICAgICAibG9nb191cmwiOiAiaHR0cHM6Ly9wbGFpZC1tZXJjaGFudC1sb2dvcy5wbGFpZC5jb20vc2lyaXVzeG1fOTA2LnBuZyIsCiAgICAgICJtZXJjaGFudF9lbnRpdHlfaWQiOiAicnliZUFPeWc2WkU5ejhMZEQ4NTJPYksza1E4UlJhTTBMeURyZyIsCiAgICAgICJtZXJjaGFudF9uYW1lIjogIlNpcml1c1hNIiwKICAgICAgIm5hbWUiOiAiU1hNKlNJUklVU1hNLkNPTS9BQ0NUIiwKICAgICAgIm9yaWdpbmFsX2Rlc2NyaXB0aW9uIjogIlNYTSpTSVJJVVNYTS5DT00vQUNDVCAwMTItMDEyLTAxMjMgTlkiLAogICAgICAicGF5bWVudF9jaGFubmVsIjogIm9ubGluZSIsCiAgICAgICJwYXltZW50X21ldGEiOiB7CiAgICAgICAgImJ5X29yZGVyX29mIjogbnVsbCwKICAgICAgICAicGF5ZWUiOiBudWxsLAogICAgICAgICJwYXllciI6IG51bGwsCiAgICAgICAgInBheW1lbnRfbWV0aG9kIjogbnVsbCwKICAgICAgICAicGF5bWVudF9wcm9jZXNzb3IiOiBudWxsLAogICAgICAgICJwcGRfaWQiOiBudWxsLAogICAgICAgICJyZWFzb24iOiBudWxsLAogICAgICAgICJyZWZlcmVuY2VfbnVtYmVyIjogbnVsbAogICAgICB9LAogICAgICAicGVuZGluZyI6IGZhbHNlLAogICAgICAicGVuZGluZ190cmFuc2FjdGlvbl9pZCI6IG51bGwsCiAgICAgICJwZXJzb25hbF9maW5hbmNlX2NhdGVnb3J5IjogewogICAgICAgICJjb25maWRlbmNlX2xldmVsIjogIlZFUllfSElHSCIsCiAgICAgICAgImRldGFpbGVkIjogIkVOVEVSVEFJTk1FTlRfTVVTSUNfQU5EX0FVRElPIiwKICAgICAgICAicHJpbWFyeSI6ICJFTlRFUlRBSU5NRU5UIgogICAgICB9LAogICAgICAicGVyc29uYWxfZmluYW5jZV9jYXRlZ29yeV9pY29uX3VybCI6ICJodHRwczovL3BsYWlkLWNhdGVnb3J5LWljb25zLnBsYWlkLmNvbS9QRkNfRU5URVJUQUlOTUVOVC5wbmciLAogICAgICAidHJhbnNhY3Rpb25fY29kZSI6IG51bGwsCiAgICAgICJ0cmFuc2FjdGlvbl9pZCI6ICJRRWJaTjVtTXJ4VG5KNFhSeGJhOXM5cGFaRHlWUUdDd203REpyIiwKICAgICAgInRyYW5zYWN0aW9uX3R5cGUiOiAicGxhY2UiLAogICAgICAidW5vZmZpY2lhbF9jdXJyZW5jeV9jb2RlIjogbnVsbCwKICAgICAgIndlYnNpdGUiOiAic2lyaXVzeG0uY29tIgogICAgfSwKICAgIHsKICAgICAgImFjY291bnRfaWQiOiAiWnZsQkw1ZU1QUXRuWERWNlFyUjlzUmVOVlZ6MVhBaWVhZ0RQeiIsCiAgICAgICJhY2NvdW50X293bmVyIjogbnVsbCwKICAgICAgImFtb3VudCI6IDQuNSwKICAgICAgImF1dGhvcml6ZWRfZGF0ZSI6ICIyMDI0LTAxLTE5IiwKICAgICAgImF1dGhvcml6ZWRfZGF0ZXRpbWUiOiBudWxsLAogICAgICAiY2F0ZWdvcnkiOiBbCiAgICAgICAgIlNob3BzIgogICAgICBdLAogICAgICAiY2F0ZWdvcnlfaWQiOiAiMTkwMDAwMDAiLAogICAgICAiY2hlY2tfbnVtYmVyIjogbnVsbCwKICAgICAgImNvdW50ZXJwYXJ0aWVzIjogW10sCiAgICAgICJkYXRlIjogIjIwMjQtMDEtMjAiLAogICAgICAiZGF0ZXRpbWUiOiBudWxsLAogICAgICAiaXNvX2N1cnJlbmN5X2NvZGUiOiAiVVNEIiwKICAgICAgImxvY2F0aW9uIjogewogICAgICAgICJhZGRyZXNzIjogbnVsbCwKICAgICAgICAiY2l0eSI6IG51bGwsCiAgICAgICAgImNvdW50cnkiOiBudWxsLAogICAgICAgICJsYXQiOiBudWxsLAogICAgICAgICJsb24iOiBudWxsLAogICAgICAgICJwb3N0YWxfY29kZSI6IG51bGwsCiAgICAgICAgInJlZ2lvbiI6IG51bGwsCiAgICAgICAgInN0b3JlX251bWJlciI6IG51bGwKICAgICAgfSwKICAgICAgImxvZ29fdXJsIjogbnVsbCwKICAgICAgIm1lcmNoYW50X2VudGl0eV9pZCI6IG51bGwsCiAgICAgICJtZXJjaGFudF9uYW1lIjogbnVsbCwKICAgICAgIm5hbWUiOiAiTUVSQ0FSSSIsCiAgICAgICJvcmlnaW5hbF9kZXNjcmlwdGlvbiI6ICJNRVJDQVJJIiwKICAgICAgInBheW1lbnRfY2hhbm5lbCI6ICJpbiBzdG9yZSIsCiAgICAgICJwYXltZW50X21ldGEiOiB7CiAgICAgICAgImJ5X29yZGVyX29mIjogbnVsbCwKICAgICAgICAicGF5ZWUiOiBudWxsLAogICAgICAgICJwYXllciI6IG51bGwsCiAgICAgICAgInBheW1lbnRfbWV0aG9kIjogbnVsbCwKICAgICAgICAicGF5bWVudF9wcm9jZXNzb3IiOiBudWxsLAogICAgICAgICJwcGRfaWQiOiBudWxsLAogICAgICAgICJyZWFzb24iOiBudWxsLAogICAgICAgICJyZWZlcmVuY2VfbnVtYmVyIjogbnVsbAogICAgICB9LAogICAgICAicGVuZGluZyI6IGZhbHNlLAogICAgICAicGVuZGluZ190cmFuc2FjdGlvbl9pZCI6IG51bGwsCiAgICAgICJwZXJzb25hbF9maW5hbmNlX2NhdGVnb3J5IjogewogICAgICAgICJjb25maWRlbmNlX2xldmVsIjogIkxPVyIsCiAgICAgICAgImRldGFpbGVkIjogIkdFTkVSQUxfTUVSQ0hBTkRJU0VfT1RIRVJfR0VORVJBTF9NRVJDSEFORElTRSIsCiAgICAgICAgInByaW1hcnkiOiAiR0VORVJBTF9NRVJDSEFORElTRSIKICAgICAgfSwKICAgICAgInBlcnNvbmFsX2ZpbmFuY2VfY2F0ZWdvcnlfaWNvbl91cmwiOiAiaHR0cHM6Ly9wbGFpZC1jYXRlZ29yeS1pY29ucy5wbGFpZC5jb20vUEZDX0dFTkVSQUxfTUVSQ0hBTkRJU0UucG5nIiwKICAgICAgInRyYW5zYWN0aW9uX2NvZGUiOiBudWxsLAogICAgICAidHJhbnNhY3Rpb25faWQiOiAiWnZsQkw1ZU1QUXRuWERWNlFyUjlzUmV4OHBaYXlNY2VxWEdOOCIsCiAgICAgICJ0cmFuc2FjdGlvbl90eXBlIjogInBsYWNlIiwKICAgICAgInVub2ZmaWNpYWxfY3VycmVuY3lfY29kZSI6IG51bGwsCiAgICAgICJ3ZWJzaXRlIjogbnVsbAogICAgfSwKICAgIHsKICAgICAgImFjY291bnRfaWQiOiAiWnZsQkw1ZU1QUXRuWERWNlFyUjlzUmVOVlZ6MVhBaWVhZ0RQeiIsCiAgICAgICJhY2NvdW50X293bmVyIjogbnVsbCwKICAgICAgImFtb3VudCI6IDU2LjQyLAogICAgICAiYXV0aG9yaXplZF9kYXRlIjogIjIwMjQtMDEtMTkiLAogICAgICAiYXV0aG9yaXplZF9kYXRldGltZSI6IG51bGwsCiAgICAgICJjYXRlZ29yeSI6IFsKICAgICAgICAiU2VydmljZSIsCiAgICAgICAgIlNoaXBwaW5nIGFuZCBGcmVpZ2h0IgogICAgICBdLAogICAgICAiY2F0ZWdvcnlfaWQiOiAiMTgwNTgwMDAiLAogICAgICAiY2hlY2tfbnVtYmVyIjogbnVsbCwKICAgICAgImNvdW50ZXJwYXJ0aWVzIjogWwogICAgICAgIHsKICAgICAgICAgICJjb25maWRlbmNlX2xldmVsIjogIlZFUllfSElHSCIsCiAgICAgICAgICAiZW50aXR5X2lkIjogIjg3QkU0Nm8wVlhwWjFEWk1tQkJuQWU3cTJ3QUtibjNrWkpacTIiLAogICAgICAgICAgImxvZ29fdXJsIjogImh0dHBzOi8vcGxhaWQtbWVyY2hhbnQtbG9nb3MucGxhaWQuY29tL2ZlZGV4XzM2NS5wbmciLAogICAgICAgICAgIm5hbWUiOiAiRmVkRXgiLAogICAgICAgICAgInBob25lX251bWJlciI6IG51bGwsCiAgICAgICAgICAidHlwZSI6ICJtZXJjaGFudCIsCiAgICAgICAgICAid2Vic2l0ZSI6ICJmZWRleC5jb20iCiAgICAgICAgfQogICAgICBdLAogICAgICAiZGF0ZSI6ICIyMDI0LTAxLTIwIiwKICAgICAgImRhdGV0aW1lIjogbnVsbCwKICAgICAgImlzb19jdXJyZW5jeV9jb2RlIjogIlVTRCIsCiAgICAgICJsb2NhdGlvbiI6IHsKICAgICAgICAiYWRkcmVzcyI6IG51bGwsCiAgICAgICAgImNpdHkiOiBudWxsLAogICAgICAgICJjb3VudHJ5IjogbnVsbCwKICAgICAgICAibGF0IjogbnVsbCwKICAgICAgICAibG9uIjogbnVsbCwKICAgICAgICAicG9zdGFsX2NvZGUiOiBudWxsLAogICAgICAgICJyZWdpb24iOiBudWxsLAogICAgICAgICJzdG9yZV9udW1iZXIiOiBudWxsCiAgICAgIH0sCiAgICAgICJsb2dvX3VybCI6ICJodHRwczovL3BsYWlkLW1lcmNoYW50LWxvZ29zLnBsYWlkLmNvbS9mZWRleF8zNjUucG5nIiwKICAgICAgIm1lcmNoYW50X2VudGl0eV9pZCI6ICI4N0JFNDZvMFZYcFoxRFpNbUJCbkFlN3Eyd0FLYm4za1pKWnEyIiwKICAgICAgIm1lcmNoYW50X25hbWUiOiAiRmVkRXgiLAogICAgICAibmFtZSI6ICJGZWRFeCIsCiAgICAgICJvcmlnaW5hbF9kZXNjcmlwdGlvbiI6ICJGRURFWCAwMTIzNDU2NzgiLAogICAgICAicGF5bWVudF9jaGFubmVsIjogImluIHN0b3JlIiwKICAgICAgInBheW1lbnRfbWV0YSI6IHsKICAgICAgICAiYnlfb3JkZXJfb2YiOiBudWxsLAogICAgICAgICJwYXllZSI6IG51bGwsCiAgICAgICAgInBheWVyIjogbnVsbCwKICAgICAgICAicGF5bWVudF9tZXRob2QiOiBudWxsLAogICAgICAgICJwYXltZW50X3Byb2Nlc3NvciI6IG51bGwsCiAgICAgICAgInBwZF9pZCI6IG51bGwsCiAgICAgICAgInJlYXNvbiI6IG51bGwsCiAgICAgICAgInJlZmVyZW5jZV9udW1iZXIiOiBudWxsCiAgICAgIH0sCiAgICAgICJwZW5kaW5nIjogZmFsc2UsCiAgICAgICJwZW5kaW5nX3RyYW5zYWN0aW9uX2lkIjogbnVsbCwKICAgICAgInBlcnNvbmFsX2ZpbmFuY2VfY2F0ZWdvcnkiOiB7CiAgICAgICAgImNvbmZpZGVuY2VfbGV2ZWwiOiAiVkVSWV9ISUdIIiwKICAgICAgICAiZGV0YWlsZWQiOiAiR0VORVJBTF9TRVJWSUNFU19QT1NUQUdFX0FORF9TSElQUElORyIsCiAgICAgICAgInByaW1hcnkiOiAiR0VORVJBTF9TRVJWSUNFUyIKICAgICAgfSwKICAgICAgInBlcnNvbmFsX2ZpbmFuY2VfY2F0ZWdvcnlfaWNvbl91cmwiOiAiaHR0cHM6Ly9wbGFpZC1jYXRlZ29yeS1pY29ucy5wbGFpZC5jb20vUEZDX0dFTkVSQUxfU0VSVklDRVMucG5nIiwKICAgICAgInRyYW5zYWN0aW9uX2NvZGUiOiBudWxsLAogICAgICAidHJhbnNhY3Rpb25faWQiOiAiTXBXUHg1bzR5cmNwWnZ3UXJkYk11d1hKZzhFemUzZkw2UDFFOSIsCiAgICAgICJ0cmFuc2FjdGlvbl90eXBlIjogInBsYWNlIiwKICAgICAgInVub2ZmaWNpYWxfY3VycmVuY3lfY29kZSI6IG51bGwsCiAgICAgICJ3ZWJzaXRlIjogImZlZGV4LmNvbSIKICAgIH0sCiAgICB7CiAgICAgICJhY2NvdW50X2lkIjogIlp2bEJMNWVNUFF0blhEVjZRclI5c1JlTlZWejFYQWllYWdEUHoiLAogICAgICAiYWNjb3VudF9vd25lciI6IG51bGwsCiAgICAgICJhbW91bnQiOiA2Mi43NSwKICAgICAgImF1dGhvcml6ZWRfZGF0ZSI6ICIyMDI0LTAxLTE5IiwKICAgICAgImF1dGhvcml6ZWRfZGF0ZXRpbWUiOiBudWxsLAogICAgICAiY2F0ZWdvcnkiOiBbCiAgICAgICAgIlNob3BzIiwKICAgICAgICAiRGVwYXJ0bWVudCBTdG9yZXMiCiAgICAgIF0sCiAgICAgICJjYXRlZ29yeV9pZCI6ICIxOTAxODAwMCIsCiAgICAgICJjaGVja19udW1iZXIiOiBudWxsLAogICAgICAiY291bnRlcnBhcnRpZXMiOiBbCiAgICAgICAgewogICAgICAgICAgImNvbmZpZGVuY2VfbGV2ZWwiOiAiVkVSWV9ISUdIIiwKICAgICAgICAgICJlbnRpdHlfaWQiOiAiYk4wd0o2d3ZwcER6Mzc1RXpOSk5RdjliQk9EYW00cVdPckUzayIsCiAgICAgICAgICAibG9nb191cmwiOiAiaHR0cHM6Ly9wbGFpZC1tZXJjaGFudC1sb2dvcy5wbGFpZC5jb20vbm9yZHN0cm9tXzY4NC5wbmciLAogICAgICAgICAgIm5hbWUiOiAiTm9yZHN0cm9tIiwKICAgICAgICAgICJwaG9uZV9udW1iZXIiOiBudWxsLAogICAgICAgICAgInR5cGUiOiAibWVyY2hhbnQiLAogICAgICAgICAgIndlYnNpdGUiOiAibm9yZHN0cm9tLmNvbSIKICAgICAgICB9CiAgICAgIF0sCiAgICAgICJkYXRlIjogIjIwMjQtMDEtMjAiLAogICAgICAiZGF0ZXRpbWUiOiBudWxsLAogICAgICAiaXNvX2N1cnJlbmN5X2NvZGUiOiAiVVNEIiwKICAgICAgImxvY2F0aW9uIjogewogICAgICAgICJhZGRyZXNzIjogbnVsbCwKICAgICAgICAiY2l0eSI6IG51bGwsCiAgICAgICAgImNvdW50cnkiOiBudWxsLAogICAgICAgICJsYXQiOiBudWxsLAogICAgICAgICJsb24iOiBudWxsLAogICAgICAgICJwb3N0YWxfY29kZSI6IG51bGwsCiAgICAgICAgInJlZ2lvbiI6IG51bGwsCiAgICAgICAgInN0b3JlX251bWJlciI6ICIwMTIzIgogICAgICB9LAogICAgICAibG9nb191cmwiOiAiaHR0cHM6Ly9wbGFpZC1tZXJjaGFudC1sb2dvcy5wbGFpZC5jb20vbm9yZHN0cm9tXzY4NC5wbmciLAogICAgICAibWVyY2hhbnRfZW50aXR5X2lkIjogImJOMHdKNnd2cHBEejM3NUV6TkpOUXY5YkJPRGFtNHFXT3JFM2siLAogICAgICAibWVyY2hhbnRfbmFtZSI6ICJOb3Jkc3Ryb20iLAogICAgICAibmFtZSI6ICJOb3Jkc3Ryb20gRGlyZWN0IiwKICAgICAgIm9yaWdpbmFsX2Rlc2NyaXB0aW9uIjogIk5PUkRTVFJPTSBESVJFQ1QgIzAxMjMiLAogICAgICAicGF5bWVudF9jaGFubmVsIjogImluIHN0b3JlIiwKICAgICAgInBheW1lbnRfbWV0YSI6IHsKICAgICAgICAiYnlfb3JkZXJfb2YiOiBudWxsLAogICAgICAgICJwYXllZSI6IG51bGwsCiAgICAgICAgInBheWVyIjogbnVsbCwKICAgICAgICAicGF5bWVudF9tZXRob2QiOiBudWxsLAogICAgICAgICJwYXltZW50X3Byb2Nlc3NvciI6IG51bGwsCiAgICAgICAgInBwZF9pZCI6IG51bGwsCiAgICAgICAgInJlYXNvbiI6IG51bGwsCiAgICAgICAgInJlZmVyZW5jZV9udW1iZXIiOiBudWxsCiAgICAgIH0sCiAgICAgICJwZW5kaW5nIjogZmFsc2UsCiAgICAgICJwZW5kaW5nX3RyYW5zYWN0aW9uX2lkIjogbnVsbCwKICAgICAgInBlcnNvbmFsX2ZpbmFuY2VfY2F0ZWdvcnkiOiB7CiAgICAgICAgImNvbmZpZGVuY2VfbGV2ZWwiOiAiVkVSWV9ISUdIIiwKICAgICAgICAiZGV0YWlsZWQiOiAiR0VORVJBTF9NRVJDSEFORElTRV9ERVBBUlRNRU5UX1NUT1JFUyIsCiAgICAgICAgInByaW1hcnkiOiAiR0VORVJBTF9NRVJDSEFORElTRSIKICAgICAgfSwKICAgICAgInBlcnNvbmFsX2ZpbmFuY2VfY2F0ZWdvcnlfaWNvbl91cmwiOiAiaHR0cHM6Ly9wbGFpZC1jYXRlZ29yeS1pY29ucy5wbGFpZC5jb20vUEZDX0dFTkVSQUxfTUVSQ0hBTkRJU0UucG5nIiwKICAgICAgInRyYW5zYWN0aW9uX2NvZGUiOiBudWxsLAogICAgICAidHJhbnNhY3Rpb25faWQiOiAiMWJYV3gxbVZ6TmNRdnl6RW8zNEpUWFZtZWd3eDk0dHBqZXJ4cCIsCiAgICAgICJ0cmFuc2FjdGlvbl90eXBlIjogInBsYWNlIiwKICAgICAgInVub2ZmaWNpYWxfY3VycmVuY3lfY29kZSI6IG51bGwsCiAgICAgICJ3ZWJzaXRlIjogIm5vcmRzdHJvbS5jb20iCiAgICB9LAogICAgewogICAgICAiYWNjb3VudF9pZCI6ICJadmxCTDVlTVBRdG5YRFY2UXJSOXNSZU5WVnoxWEFpZWFnRFB6IiwKICAgICAgImFjY291bnRfb3duZXIiOiBudWxsLAogICAgICAiYW1vdW50IjogMjEuNzMsCiAgICAgICJhdXRob3JpemVkX2RhdGUiOiAiMjAyNC0wMS0xOSIsCiAgICAgICJhdXRob3JpemVkX2RhdGV0aW1lIjogbnVsbCwKICAgICAgImNhdGVnb3J5IjogWwogICAgICAgICJTaG9wcyIsCiAgICAgICAgIlBldHMiCiAgICAgIF0sCiAgICAgICJjYXRlZ29yeV9pZCI6ICIxOTA0MjAwMCIsCiAgICAgICJjaGVja19udW1iZXIiOiBudWxsLAogICAgICAiY291bnRlcnBhcnRpZXMiOiBbCiAgICAgICAgewogICAgICAgICAgImNvbmZpZGVuY2VfbGV2ZWwiOiAiVkVSWV9ISUdIIiwKICAgICAgICAgICJlbnRpdHlfaWQiOiAiMXkybXFCZVhnZHFaVlhyM25FOG0xOERkZXZaNkFkd29SOHExRCIsCiAgICAgICAgICAibG9nb191cmwiOiAiaHR0cHM6Ly9wbGFpZC1tZXJjaGFudC1sb2dvcy5wbGFpZC5jb20vcGV0c21hcnRfNzQ4LnBuZyIsCiAgICAgICAgICAibmFtZSI6ICJQZXRTbWFydCIsCiAgICAgICAgICAicGhvbmVfbnVtYmVyIjogbnVsbCwKICAgICAgICAgICJ0eXBlIjogIm1lcmNoYW50IiwKICAgICAgICAgICJ3ZWJzaXRlIjogInBldHNtYXJ0LmNvbSIKICAgICAgICB9CiAgICAgIF0sCiAgICAgICJkYXRlIjogIjIwMjQtMDEtMjEiLAogICAgICAiZGF0ZXRpbWUiOiBudWxsLAogICAgICAiaXNvX2N1cnJlbmN5X2NvZGUiOiAiVVNEIiwKICAgICAgImxvY2F0aW9uIjogewogICAgICAgICJhZGRyZXNzIjogIjExOTQ1IENlbnRyYWwgQXZlIiwKICAgICAgICAiY2l0eSI6ICJDaGlubyIsCiAgICAgICAgImNvdW50cnkiOiBudWxsLAogICAgICAgICJsYXQiOiAzNC4wMzY1MjYsCiAgICAgICAgImxvbiI6IC0xMTcuNjg3OTQzLAogICAgICAgICJwb3N0YWxfY29kZSI6ICI5MTcxMCIsCiAgICAgICAgInJlZ2lvbiI6ICJDQSIsCiAgICAgICAgInN0b3JlX251bWJlciI6ICIwMTIzIgogICAgICB9LAogICAgICAibG9nb191cmwiOiAiaHR0cHM6Ly9wbGFpZC1tZXJjaGFudC1sb2dvcy5wbGFpZC5jb20vcGV0c21hcnRfNzQ4LnBuZyIsCiAgICAgICJtZXJjaGFudF9lbnRpdHlfaWQiOiAiMXkybXFCZVhnZHFaVlhyM25FOG0xOERkZXZaNkFkd29SOHExRCIsCiAgICAgICJtZXJjaGFudF9uYW1lIjogIlBldFNtYXJ0IiwKICAgICAgIm5hbWUiOiAiUGV0U21hcnQiLAogICAgICAib3JpZ2luYWxfZGVzY3JpcHRpb24iOiAiUEVUU01BUlQgIzAxMjMiLAogICAgICAicGF5bWVudF9jaGFubmVsIjogImluIHN0b3JlIiwKICAgICAgInBheW1lbnRfbWV0YSI6IHsKICAgICAgICAiYnlfb3JkZXJfb2YiOiBudWxsLAogICAgICAgICJwYXllZSI6IG51bGwsCiAgICAgICAgInBheWVyIjogbnVsbCwKICAgICAgICAicGF5bWVudF9tZXRob2QiOiBudWxsLAogICAgICAgICJwYXltZW50X3Byb2Nlc3NvciI6IG51bGwsCiAgICAgICAgInBwZF9pZCI6IG51bGwsCiAgICAgICAgInJlYXNvbiI6IG51bGwsCiAgICAgICAgInJlZmVyZW5jZV9udW1iZXIiOiBudWxsCiAgICAgIH0sCiAgICAgICJwZW5kaW5nIjogZmFsc2UsCiAgICAgICJwZW5kaW5nX3RyYW5zYWN0aW9uX2lkIjogbnVsbCwKICAgICAgInBlcnNvbmFsX2ZpbmFuY2VfY2F0ZWdvcnkiOiB7CiAgICAgICAgImNvbmZpZGVuY2VfbGV2ZWwiOiAiVkVSWV9ISUdIIiwKICAgICAgICAiZGV0YWlsZWQiOiAiR0VORVJBTF9NRVJDSEFORElTRV9QRVRfU1VQUExJRVMiLAogICAgICAgICJwcmltYXJ5IjogIkdFTkVSQUxfTUVSQ0hBTkRJU0UiCiAgICAgIH0sCiAgICAgICJwZXJzb25hbF9maW5hbmNlX2NhdGVnb3J5X2ljb25fdXJsIjogImh0dHBzOi8vcGxhaWQtY2F0ZWdvcnktaWNvbnMucGxhaWQuY29tL1BGQ19HRU5FUkFMX01FUkNIQU5ESVNFLnBuZyIsCiAgICAgICJ0cmFuc2FjdGlvbl9jb2RlIjogbnVsbCwKICAgICAgInRyYW5zYWN0aW9uX2lkIjogIkxMRVAzNW9hbUtmTHdXR3pLYThtQ2s2QXBneDFXN3VranBFUmUiLAogICAgICAidHJhbnNhY3Rpb25fdHlwZSI6ICJwbGFjZSIsCiAgICAgICJ1bm9mZmljaWFsX2N1cnJlbmN5X2NvZGUiOiBudWxsLAogICAgICAid2Vic2l0ZSI6ICJwZXRzbWFydC5jb20iCiAgICB9LAogICAgewogICAgICAiYWNjb3VudF9pZCI6ICJadmxCTDVlTVBRdG5YRFY2UXJSOXNSZU5WVnoxWEFpZWFnRFB6IiwKICAgICAgImFjY291bnRfb3duZXIiOiBudWxsLAogICAgICAiYW1vdW50IjogMTUuNjYsCiAgICAgICJhdXRob3JpemVkX2RhdGUiOiAiMjAyNC0wMS0xOSIsCiAgICAgICJhdXRob3JpemVkX2RhdGV0aW1lIjogbnVsbCwKICAgICAgImNhdGVnb3J5IjogWwogICAgICAgICJGb29kIGFuZCBEcmluayIsCiAgICAgICAgIlJlc3RhdXJhbnRzIiwKICAgICAgICAiRmFzdCBGb29kIgogICAgICBdLAogICAgICAiY2F0ZWdvcnlfaWQiOiAiMTMwMDUwMzIiLAogICAgICAiY2hlY2tfbnVtYmVyIjogbnVsbCwKICAgICAgImNvdW50ZXJwYXJ0aWVzIjogWwogICAgICAgIHsKICAgICAgICAgICJjb25maWRlbmNlX2xldmVsIjogIlZFUllfSElHSCIsCiAgICAgICAgICAiZW50aXR5X2lkIjogIk1qcWRwcW4zWmdPZHJBWXBrQUtNa0FyRU9ON2F2UThqVjlCWDEiLAogICAgICAgICAgImxvZ29fdXJsIjogImh0dHBzOi8vcGxhaWQtbWVyY2hhbnQtbG9nb3MucGxhaWQuY29tL2NoaXBvdGxlX21leGljYW5fZ3JpbGxfMjAyLnBuZyIsCiAgICAgICAgICAibmFtZSI6ICJDaGlwb3RsZSBNZXhpY2FuIEdyaWxsIiwKICAgICAgICAgICJwaG9uZV9udW1iZXIiOiBudWxsLAogICAgICAgICAgInR5cGUiOiAibWVyY2hhbnQiLAogICAgICAgICAgIndlYnNpdGUiOiAiY2hpcG90bGUuY29tIgogICAgICAgIH0KICAgICAgXSwKICAgICAgImRhdGUiOiAiMjAyNC0wMS0yMSIsCiAgICAgICJkYXRldGltZSI6IG51bGwsCiAgICAgICJpc29fY3VycmVuY3lfY29kZSI6ICJVU0QiLAogICAgICAibG9jYXRpb24iOiB7CiAgICAgICAgImFkZHJlc3MiOiBudWxsLAogICAgICAgICJjaXR5IjogbnVsbCwKICAgICAgICAiY291bnRyeSI6IG51bGwsCiAgICAgICAgImxhdCI6IG51bGwsCiAgICAgICAgImxvbiI6IG51bGwsCiAgICAgICAgInBvc3RhbF9jb2RlIjogbnVsbCwKICAgICAgICAicmVnaW9uIjogbnVsbCwKICAgICAgICAic3RvcmVfbnVtYmVyIjogbnVsbAogICAgICB9LAogICAgICAibG9nb191cmwiOiAiaHR0cHM6Ly9wbGFpZC1tZXJjaGFudC1sb2dvcy5wbGFpZC5jb20vY2hpcG90bGVfbWV4aWNhbl9ncmlsbF8yMDIucG5nIiwKICAgICAgIm1lcmNoYW50X2VudGl0eV9pZCI6ICJNanFkcHFuM1pnT2RyQVlwa0FLTWtBckVPTjdhdlE4alY5QlgxIiwKICAgICAgIm1lcmNoYW50X25hbWUiOiAiQ2hpcG90bGUgTWV4aWNhbiBHcmlsbCIsCiAgICAgICJuYW1lIjogIkNoaXBvdGxlIE1leGljYW4gR3JpbGwiLAogICAgICAib3JpZ2luYWxfZGVzY3JpcHRpb24iOiAiQ0hJUE9UTEUgT05MSU5FIDAxMjM0NTY3ODkgQ08iLAogICAgICAicGF5bWVudF9jaGFubmVsIjogIm9ubGluZSIsCiAgICAgICJwYXltZW50X21ldGEiOiB7CiAgICAgICAgImJ5X29yZGVyX29mIjogbnVsbCwKICAgICAgICAicGF5ZWUiOiBudWxsLAogICAgICAgICJwYXllciI6IG51bGwsCiAgICAgICAgInBheW1lbnRfbWV0aG9kIjogbnVsbCwKICAgICAgICAicGF5bWVudF9wcm9jZXNzb3IiOiBudWxsLAogICAgICAgICJwcGRfaWQiOiBudWxsLAogICAgICAgICJyZWFzb24iOiBudWxsLAogICAgICAgICJyZWZlcmVuY2VfbnVtYmVyIjogbnVsbAogICAgICB9LAogICAgICAicGVuZGluZyI6IGZhbHNlLAogICAgICAicGVuZGluZ190cmFuc2FjdGlvbl9pZCI6IG51bGwsCiAgICAgICJwZXJzb25hbF9maW5hbmNlX2NhdGVnb3J5IjogewogICAgICAgICJjb25maWRlbmNlX2xldmVsIjogIlZFUllfSElHSCIsCiAgICAgICAgImRldGFpbGVkIjogIkZPT0RfQU5EX0RSSU5LX0ZBU1RfRk9PRCIsCiAgICAgICAgInByaW1hcnkiOiAiRk9PRF9BTkRfRFJJTksiCiAgICAgIH0sCiAgICAgICJwZXJzb25hbF9maW5hbmNlX2NhdGVnb3J5X2ljb25fdXJsIjogImh0dHBzOi8vcGxhaWQtY2F0ZWdvcnktaWNvbnMucGxhaWQuY29tL1BGQ19GT09EX0FORF9EUklOSy5wbmciLAogICAgICAidHJhbnNhY3Rpb25fY29kZSI6IG51bGwsCiAgICAgICJ0cmFuc2FjdGlvbl9pZCI6ICJwMW9BNzM5RHFLaFI0eThYazFaV2N4SnJkTG42b0d0cG9WeldFIiwKICAgICAgInRyYW5zYWN0aW9uX3R5cGUiOiAicGxhY2UiLAogICAgICAidW5vZmZpY2lhbF9jdXJyZW5jeV9jb2RlIjogbnVsbCwKICAgICAgIndlYnNpdGUiOiAiY2hpcG90bGUuY29tIgogICAgfSwKICAgIHsKICAgICAgImFjY291bnRfaWQiOiAiWnZsQkw1ZU1QUXRuWERWNlFyUjlzUmVOVlZ6MVhBaWVhZ0RQeiIsCiAgICAgICJhY2NvdW50X293bmVyIjogbnVsbCwKICAgICAgImFtb3VudCI6IDUuMjQsCiAgICAgICJhdXRob3JpemVkX2RhdGUiOiAiMjAyNC0wMS0yMSIsCiAgICAgICJhdXRob3JpemVkX2RhdGV0aW1lIjogbnVsbCwKICAgICAgImNhdGVnb3J5IjogWwogICAgICAgICJTaG9wcyIsCiAgICAgICAgIkRpZ2l0YWwgUHVyY2hhc2UiCiAgICAgIF0sCiAgICAgICJjYXRlZ29yeV9pZCI6ICIxOTAxOTAwMCIsCiAgICAgICJjaGVja19udW1iZXIiOiBudWxsLAogICAgICAiY291bnRlcnBhcnRpZXMiOiBbCiAgICAgICAgewogICAgICAgICAgImNvbmZpZGVuY2VfbGV2ZWwiOiAiVkVSWV9ISUdIIiwKICAgICAgICAgICJlbnRpdHlfaWQiOiAiMmdPd21xOXFLNTZLNjBvRG0zZUxyUkVWMkIybVZhZGtSbjhNVyIsCiAgICAgICAgICAibG9nb191cmwiOiAiaHR0cHM6Ly9wbGFpZC1tZXJjaGFudC1sb2dvcy5wbGFpZC5jb20vYW1hem9uXzQ0LnBuZyIsCiAgICAgICAgICAibmFtZSI6ICJBbWF6b24iLAogICAgICAgICAgInBob25lX251bWJlciI6IG51bGwsCiAgICAgICAgICAidHlwZSI6ICJtZXJjaGFudCIsCiAgICAgICAgICAid2Vic2l0ZSI6ICJhbWF6b24uY29tIgogICAgICAgIH0KICAgICAgXSwKICAgICAgImRhdGUiOiAiMjAyNC0wMS0yMSIsCiAgICAgICJkYXRldGltZSI6IG51bGwsCiAgICAgICJpc29fY3VycmVuY3lfY29kZSI6ICJVU0QiLAogICAgICAibG9jYXRpb24iOiB7CiAgICAgICAgImFkZHJlc3MiOiBudWxsLAogICAgICAgICJjaXR5IjogbnVsbCwKICAgICAgICAiY291bnRyeSI6IG51bGwsCiAgICAgICAgImxhdCI6IG51bGwsCiAgICAgICAgImxvbiI6IG51bGwsCiAgICAgICAgInBvc3RhbF9jb2RlIjogbnVsbCwKICAgICAgICAicmVnaW9uIjogbnVsbCwKICAgICAgICAic3RvcmVfbnVtYmVyIjogbnVsbAogICAgICB9LAogICAgICAibG9nb191cmwiOiAiaHR0cHM6Ly9wbGFpZC1tZXJjaGFudC1sb2dvcy5wbGFpZC5jb20vYW1hem9uXzQ0LnBuZyIsCiAgICAgICJtZXJjaGFudF9lbnRpdHlfaWQiOiAiMmdPd21xOXFLNTZLNjBvRG0zZUxyUkVWMkIybVZhZGtSbjhNVyIsCiAgICAgICJtZXJjaGFudF9uYW1lIjogIkFtYXpvbiIsCiAgICAgICJuYW1lIjogIkFNWk4gSW5zdGFsbG1lbnRzIHBtdCIsCiAgICAgICJvcmlnaW5hbF9kZXNjcmlwdGlvbiI6ICJBTVpOIEluc3RhbGxtZW50cyBwbXQiLAogICAgICAicGF5bWVudF9jaGFubmVsIjogIm9ubGluZSIsCiAgICAgICJwYXltZW50X21ldGEiOiB7CiAgICAgICAgImJ5X29yZGVyX29mIjogbnVsbCwKICAgICAgICAicGF5ZWUiOiBudWxsLAogICAgICAgICJwYXllciI6IG51bGwsCiAgICAgICAgInBheW1lbnRfbWV0aG9kIjogbnVsbCwKICAgICAgICAicGF5bWVudF9wcm9jZXNzb3IiOiBudWxsLAogICAgICAgICJwcGRfaWQiOiBudWxsLAogICAgICAgICJyZWFzb24iOiBudWxsLAogICAgICAgICJyZWZlcmVuY2VfbnVtYmVyIjogbnVsbAogICAgICB9LAogICAgICAicGVuZGluZyI6IGZhbHNlLAogICAgICAicGVuZGluZ190cmFuc2FjdGlvbl9pZCI6IG51bGwsCiAgICAgICJwZXJzb25hbF9maW5hbmNlX2NhdGVnb3J5IjogewogICAgICAgICJjb25maWRlbmNlX2xldmVsIjogIlZFUllfSElHSCIsCiAgICAgICAgImRldGFpbGVkIjogIkdFTkVSQUxfTUVSQ0hBTkRJU0VfT05MSU5FX01BUktFVFBMQUNFUyIsCiAgICAgICAgInByaW1hcnkiOiAiR0VORVJBTF9NRVJDSEFORElTRSIKICAgICAgfSwKICAgICAgInBlcnNvbmFsX2ZpbmFuY2VfY2F0ZWdvcnlfaWNvbl91cmwiOiAiaHR0cHM6Ly9wbGFpZC1jYXRlZ29yeS1pY29ucy5wbGFpZC5jb20vUEZDX0dFTkVSQUxfTUVSQ0hBTkRJU0UucG5nIiwKICAgICAgInRyYW5zYWN0aW9uX2NvZGUiOiBudWxsLAogICAgICAidHJhbnNhY3Rpb25faWQiOiAib01weWpCOURscWhiNHY4Z2t5bjZ0YnpNcFp5NUczaW9xN2J6SyIsCiAgICAgICJ0cmFuc2FjdGlvbl90eXBlIjogImRpZ2l0YWwiLAogICAgICAidW5vZmZpY2lhbF9jdXJyZW5jeV9jb2RlIjogbnVsbCwKICAgICAgIndlYnNpdGUiOiAiYW1hem9uLmNvbSIKICAgIH0sCiAgICB7CiAgICAgICJhY2NvdW50X2lkIjogIlp2bEJMNWVNUFF0blhEVjZRclI5c1JlTlZWejFYQWllYWdEUHoiLAogICAgICAiYWNjb3VudF9vd25lciI6IG51bGwsCiAgICAgICJhbW91bnQiOiAxMTYuMywKICAgICAgImF1dGhvcml6ZWRfZGF0ZSI6ICIyMDI0LTAxLTIxIiwKICAgICAgImF1dGhvcml6ZWRfZGF0ZXRpbWUiOiBudWxsLAogICAgICAiY2F0ZWdvcnkiOiBbCiAgICAgICAgIlNob3BzIiwKICAgICAgICAiU3VwZXJtYXJrZXRzIGFuZCBHcm9jZXJpZXMiCiAgICAgIF0sCiAgICAgICJjYXRlZ29yeV9pZCI6ICIxOTA0NzAwMCIsCiAgICAgICJjaGVja19udW1iZXIiOiBudWxsLAogICAgICAiY291bnRlcnBhcnRpZXMiOiBbCiAgICAgICAgewogICAgICAgICAgImNvbmZpZGVuY2VfbGV2ZWwiOiAiVkVSWV9ISUdIIiwKICAgICAgICAgICJlbnRpdHlfaWQiOiAiSzJSMmVZakVEcnlPTlk1ZE9ycVZMcm9Bblkxa044ZHphWmVLZSIsCiAgICAgICAgICAibG9nb191cmwiOiAiaHR0cHM6Ly9wbGFpZC1tZXJjaGFudC1sb2dvcy5wbGFpZC5jb20vZnJlc2NvX3lfbWFzXzQwMy5wbmciLAogICAgICAgICAgIm5hbWUiOiAiRnJlc2NvIHkgTcOhcyIsCiAgICAgICAgICAicGhvbmVfbnVtYmVyIjogbnVsbCwKICAgICAgICAgICJ0eXBlIjogIm1lcmNoYW50IiwKICAgICAgICAgICJ3ZWJzaXRlIjogImZyZXNjb3ltYXMuY29tIgogICAgICAgIH0KICAgICAgXSwKICAgICAgImRhdGUiOiAiMjAyNC0wMS0yMSIsCiAgICAgICJkYXRldGltZSI6IG51bGwsCiAgICAgICJpc29fY3VycmVuY3lfY29kZSI6ICJVU0QiLAogICAgICAibG9jYXRpb24iOiB7CiAgICAgICAgImFkZHJlc3MiOiBudWxsLAogICAgICAgICJjaXR5IjogbnVsbCwKICAgICAgICAiY291bnRyeSI6IG51bGwsCiAgICAgICAgImxhdCI6IG51bGwsCiAgICAgICAgImxvbiI6IG51bGwsCiAgICAgICAgInBvc3RhbF9jb2RlIjogbnVsbCwKICAgICAgICAicmVnaW9uIjogbnVsbCwKICAgICAgICAic3RvcmVfbnVtYmVyIjogIjAxMiIKICAgICAgfSwKICAgICAgImxvZ29fdXJsIjogImh0dHBzOi8vcGxhaWQtbWVyY2hhbnQtbG9nb3MucGxhaWQuY29tL2ZyZXNjb195X21hc180MDMucG5nIiwKICAgICAgIm1lcmNoYW50X2VudGl0eV9pZCI6ICJLMlIyZVlqRURyeU9OWTVkT3JxVkxyb0FuWTFrTjhkemFaZUtlIiwKICAgICAgIm1lcmNoYW50X25hbWUiOiAiRnJlc2NvIHkgTcOhcyIsCiAgICAgICJuYW1lIjogIkZSRVNDTyBZIE1BUyAjMDEyIiwKICAgICAgIm9yaWdpbmFsX2Rlc2NyaXB0aW9uIjogIkZSRVNDTyBZIE1BUyAjMDEyIiwKICAgICAgInBheW1lbnRfY2hhbm5lbCI6ICJpbiBzdG9yZSIsCiAgICAgICJwYXltZW50X21ldGEiOiB7CiAgICAgICAgImJ5X29yZGVyX29mIjogbnVsbCwKICAgICAgICAicGF5ZWUiOiBudWxsLAogICAgICAgICJwYXllciI6IG51bGwsCiAgICAgICAgInBheW1lbnRfbWV0aG9kIjogbnVsbCwKICAgICAgICAicGF5bWVudF9wcm9jZXNzb3IiOiBudWxsLAogICAgICAgICJwcGRfaWQiOiBudWxsLAogICAgICAgICJyZWFzb24iOiBudWxsLAogICAgICAgICJyZWZlcmVuY2VfbnVtYmVyIjogbnVsbAogICAgICB9LAogICAgICAicGVuZGluZyI6IGZhbHNlLAogICAgICAicGVuZGluZ190cmFuc2FjdGlvbl9pZCI6IG51bGwsCiAgICAgICJwZXJzb25hbF9maW5hbmNlX2NhdGVnb3J5IjogewogICAgICAgICJjb25maWRlbmNlX2xldmVsIjogIkhJR0giLAogICAgICAgICJkZXRhaWxlZCI6ICJGT09EX0FORF9EUklOS19HUk9DRVJJRVMiLAogICAgICAgICJwcmltYXJ5IjogIkZPT0RfQU5EX0RSSU5LIgogICAgICB9LAogICAgICAicGVyc29uYWxfZmluYW5jZV9jYXRlZ29yeV9pY29uX3VybCI6ICJodHRwczovL3BsYWlkLWNhdGVnb3J5LWljb25zLnBsYWlkLmNvbS9QRkNfRk9PRF9BTkRfRFJJTksucG5nIiwKICAgICAgInRyYW5zYWN0aW9uX2NvZGUiOiBudWxsLAogICAgICAidHJhbnNhY3Rpb25faWQiOiAiZzRqN0I1a1hFbkN3ZExWN056UVBIVjU5ZFJCUDhXY0U4bjV3ciIsCiAgICAgICJ0cmFuc2FjdGlvbl90eXBlIjogInBsYWNlIiwKICAgICAgInVub2ZmaWNpYWxfY3VycmVuY3lfY29kZSI6IG51bGwsCiAgICAgICJ3ZWJzaXRlIjogImZyZXNjb3ltYXMuY29tIgogICAgfSwKICAgIHsKICAgICAgImFjY291bnRfaWQiOiAiWnZsQkw1ZU1QUXRuWERWNlFyUjlzUmVOVlZ6MVhBaWVhZ0RQeiIsCiAgICAgICJhY2NvdW50X293bmVyIjogbnVsbCwKICAgICAgImFtb3VudCI6IDMwLjI5LAogICAgICAiYXV0aG9yaXplZF9kYXRlIjogIjIwMjQtMDEtMjEiLAogICAgICAiYXV0aG9yaXplZF9kYXRldGltZSI6IG51bGwsCiAgICAgICJjYXRlZ29yeSI6IFsKICAgICAgICAiUmVjcmVhdGlvbiIsCiAgICAgICAgIkFydHMgYW5kIEVudGVydGFpbm1lbnQiCiAgICAgIF0sCiAgICAgICJjYXRlZ29yeV9pZCI6ICIxNzAwMTAwMCIsCiAgICAgICJjaGVja19udW1iZXIiOiBudWxsLAogICAgICAiY291bnRlcnBhcnRpZXMiOiBbXSwKICAgICAgImRhdGUiOiAiMjAyNC0wMS0yMSIsCiAgICAgICJkYXRldGltZSI6IG51bGwsCiAgICAgICJpc29fY3VycmVuY3lfY29kZSI6ICJVU0QiLAogICAgICAibG9jYXRpb24iOiB7CiAgICAgICAgImFkZHJlc3MiOiBudWxsLAogICAgICAgICJjaXR5IjogbnVsbCwKICAgICAgICAiY291bnRyeSI6IG51bGwsCiAgICAgICAgImxhdCI6IG51bGwsCiAgICAgICAgImxvbiI6IG51bGwsCiAgICAgICAgInBvc3RhbF9jb2RlIjogbnVsbCwKICAgICAgICAicmVnaW9uIjogbnVsbCwKICAgICAgICAic3RvcmVfbnVtYmVyIjogbnVsbAogICAgICB9LAogICAgICAibG9nb191cmwiOiBudWxsLAogICAgICAibWVyY2hhbnRfZW50aXR5X2lkIjogbnVsbCwKICAgICAgIm1lcmNoYW50X25hbWUiOiBudWxsLAogICAgICAibmFtZSI6ICJTVFVCSFVCLCBJTkMuIiwKICAgICAgIm9yaWdpbmFsX2Rlc2NyaXB0aW9uIjogIlNUVUJIVUIsIElOQy4iLAogICAgICAicGF5bWVudF9jaGFubmVsIjogImluIHN0b3JlIiwKICAgICAgInBheW1lbnRfbWV0YSI6IHsKICAgICAgICAiYnlfb3JkZXJfb2YiOiBudWxsLAogICAgICAgICJwYXllZSI6IG51bGwsCiAgICAgICAgInBheWVyIjogbnVsbCwKICAgICAgICAicGF5bWVudF9tZXRob2QiOiBudWxsLAogICAgICAgICJwYXltZW50X3Byb2Nlc3NvciI6IG51bGwsCiAgICAgICAgInBwZF9pZCI6IG51bGwsCiAgICAgICAgInJlYXNvbiI6IG51bGwsCiAgICAgICAgInJlZmVyZW5jZV9udW1iZXIiOiBudWxsCiAgICAgIH0sCiAgICAgICJwZW5kaW5nIjogZmFsc2UsCiAgICAgICJwZW5kaW5nX3RyYW5zYWN0aW9uX2lkIjogbnVsbCwKICAgICAgInBlcnNvbmFsX2ZpbmFuY2VfY2F0ZWdvcnkiOiB7CiAgICAgICAgImNvbmZpZGVuY2VfbGV2ZWwiOiAiTE9XIiwKICAgICAgICAiZGV0YWlsZWQiOiAiR0VORVJBTF9NRVJDSEFORElTRV9PVEhFUl9HRU5FUkFMX01FUkNIQU5ESVNFIiwKICAgICAgICAicHJpbWFyeSI6ICJHRU5FUkFMX01FUkNIQU5ESVNFIgogICAgICB9LAogICAgICAicGVyc29uYWxfZmluYW5jZV9jYXRlZ29yeV9pY29uX3VybCI6ICJodHRwczovL3BsYWlkLWNhdGVnb3J5LWljb25zLnBsYWlkLmNvbS9QRkNfR0VORVJBTF9NRVJDSEFORElTRS5wbmciLAogICAgICAidHJhbnNhY3Rpb25fY29kZSI6IG51bGwsCiAgICAgICJ0cmFuc2FjdGlvbl9pZCI6ICI4bEJaN2txbU5NZmxNNk4xckJiOHVkemtHd3lBNU11VzNMOEdnIiwKICAgICAgInRyYW5zYWN0aW9uX3R5cGUiOiAicGxhY2UiLAogICAgICAidW5vZmZpY2lhbF9jdXJyZW5jeV9jb2RlIjogbnVsbCwKICAgICAgIndlYnNpdGUiOiBudWxsCiAgICB9LAogICAgewogICAgICAiYWNjb3VudF9pZCI6ICJadmxCTDVlTVBRdG5YRFY2UXJSOXNSZU5WVnoxWEFpZWFnRFB6IiwKICAgICAgImFjY291bnRfb3duZXIiOiBudWxsLAogICAgICAiYW1vdW50IjogMS43NSwKICAgICAgImF1dGhvcml6ZWRfZGF0ZSI6ICIyMDI0LTAxLTIxIiwKICAgICAgImF1dGhvcml6ZWRfZGF0ZXRpbWUiOiBudWxsLAogICAgICAiY2F0ZWdvcnkiOiBbCiAgICAgICAgIlNob3BzIiwKICAgICAgICAiRGlnaXRhbCBQdXJjaGFzZSIKICAgICAgXSwKICAgICAgImNhdGVnb3J5X2lkIjogIjE5MDE5MDAwIiwKICAgICAgImNoZWNrX251bWJlciI6IG51bGwsCiAgICAgICJjb3VudGVycGFydGllcyI6IFsKICAgICAgICB7CiAgICAgICAgICAiY29uZmlkZW5jZV9sZXZlbCI6ICJWRVJZX0hJR0giLAogICAgICAgICAgImVudGl0eV9pZCI6ICIyZ093bXE5cUs1Nks2MG9EbTNlTHJSRVYyQjJtVmFka1JuOE1XIiwKICAgICAgICAgICJsb2dvX3VybCI6ICJodHRwczovL3BsYWlkLW1lcmNoYW50LWxvZ29zLnBsYWlkLmNvbS9hbWF6b25fNDQucG5nIiwKICAgICAgICAgICJuYW1lIjogIkFtYXpvbiIsCiAgICAgICAgICAicGhvbmVfbnVtYmVyIjogbnVsbCwKICAgICAgICAgICJ0eXBlIjogIm1lcmNoYW50IiwKICAgICAgICAgICJ3ZWJzaXRlIjogImFtYXpvbi5jb20iCiAgICAgICAgfQogICAgICBdLAogICAgICAiZGF0ZSI6ICIyMDI0LTAxLTIxIiwKICAgICAgImRhdGV0aW1lIjogbnVsbCwKICAgICAgImlzb19jdXJyZW5jeV9jb2RlIjogIlVTRCIsCiAgICAgICJsb2NhdGlvbiI6IHsKICAgICAgICAiYWRkcmVzcyI6IG51bGwsCiAgICAgICAgImNpdHkiOiBudWxsLAogICAgICAgICJjb3VudHJ5IjogbnVsbCwKICAgICAgICAibGF0IjogbnVsbCwKICAgICAgICAibG9uIjogbnVsbCwKICAgICAgICAicG9zdGFsX2NvZGUiOiBudWxsLAogICAgICAgICJyZWdpb24iOiBudWxsLAogICAgICAgICJzdG9yZV9udW1iZXIiOiBudWxsCiAgICAgIH0sCiAgICAgICJsb2dvX3VybCI6ICJodHRwczovL3BsYWlkLW1lcmNoYW50LWxvZ29zLnBsYWlkLmNvbS9hbWF6b25fNDQucG5nIiwKICAgICAgIm1lcmNoYW50X2VudGl0eV9pZCI6ICIyZ093bXE5cUs1Nks2MG9EbTNlTHJSRVYyQjJtVmFka1JuOE1XIiwKICAgICAgIm1lcmNoYW50X25hbWUiOiAiQW1hem9uIiwKICAgICAgIm5hbWUiOiAiQU1BWk9OIE1BUktFVFBMQUNFIiwKICAgICAgIm9yaWdpbmFsX2Rlc2NyaXB0aW9uIjogIkFNQVpPTiBNQVJLRVRQTEFDRSIsCiAgICAgICJwYXltZW50X2NoYW5uZWwiOiAib25saW5lIiwKICAgICAgInBheW1lbnRfbWV0YSI6IHsKICAgICAgICAiYnlfb3JkZXJfb2YiOiBudWxsLAogICAgICAgICJwYXllZSI6IG51bGwsCiAgICAgICAgInBheWVyIjogbnVsbCwKICAgICAgICAicGF5bWVudF9tZXRob2QiOiBudWxsLAogICAgICAgICJwYXltZW50X3Byb2Nlc3NvciI6IG51bGwsCiAgICAgICAgInBwZF9pZCI6IG51bGwsCiAgICAgICAgInJlYXNvbiI6IG51bGwsCiAgICAgICAgInJlZmVyZW5jZV9udW1iZXIiOiBudWxsCiAgICAgIH0sCiAgICAgICJwZW5kaW5nIjogZmFsc2UsCiAgICAgICJwZW5kaW5nX3RyYW5zYWN0aW9uX2lkIjogbnVsbCwKICAgICAgInBlcnNvbmFsX2ZpbmFuY2VfY2F0ZWdvcnkiOiB7CiAgICAgICAgImNvbmZpZGVuY2VfbGV2ZWwiOiAiVkVSWV9ISUdIIiwKICAgICAgICAiZGV0YWlsZWQiOiAiR0VORVJBTF9NRVJDSEFORElTRV9PTkxJTkVfTUFSS0VUUExBQ0VTIiwKICAgICAgICAicHJpbWFyeSI6ICJHRU5FUkFMX01FUkNIQU5ESVNFIgogICAgICB9LAogICAgICAicGVyc29uYWxfZmluYW5jZV9jYXRlZ29yeV9pY29uX3VybCI6ICJodHRwczovL3BsYWlkLWNhdGVnb3J5LWljb25zLnBsYWlkLmNvbS9QRkNfR0VORVJBTF9NRVJDSEFORElTRS5wbmciLAogICAgICAidHJhbnNhY3Rpb25fY29kZSI6IG51bGwsCiAgICAgICJ0cmFuc2FjdGlvbl9pZCI6ICJFak0zQTV2SzhtQ2pMZWExR0UzbUN5b205NVBydmtpNHhrbTE2IiwKICAgICAgInRyYW5zYWN0aW9uX3R5cGUiOiAiZGlnaXRhbCIsCiAgICAgICJ1bm9mZmljaWFsX2N1cnJlbmN5X2NvZGUiOiBudWxsLAogICAgICAid2Vic2l0ZSI6ICJhbWF6b24uY29tIgogICAgfSwKICAgIHsKICAgICAgImFjY291bnRfaWQiOiAiWnZsQkw1ZU1QUXRuWERWNlFyUjlzUmVOVlZ6MVhBaWVhZ0RQeiIsCiAgICAgICJhY2NvdW50X293bmVyIjogbnVsbCwKICAgICAgImFtb3VudCI6IDMwLjgyLAogICAgICAiYXV0aG9yaXplZF9kYXRlIjogIjIwMjQtMDEtMjEiLAogICAgICAiYXV0aG9yaXplZF9kYXRldGltZSI6IG51bGwsCiAgICAgICJjYXRlZ29yeSI6IFsKICAgICAgICAiU2hvcHMiLAogICAgICAgICJEaXNjb3VudCBTdG9yZXMiCiAgICAgIF0sCiAgICAgICJjYXRlZ29yeV9pZCI6ICIxOTAyMDAwMCIsCiAgICAgICJjaGVja19udW1iZXIiOiBudWxsLAogICAgICAiY291bnRlcnBhcnRpZXMiOiBbCiAgICAgICAgewogICAgICAgICAgImNvbmZpZGVuY2VfbGV2ZWwiOiAiVkVSWV9ISUdIIiwKICAgICAgICAgICJlbnRpdHlfaWQiOiAiNHJXcXJwMzNaUm44TTEwcXdMUktWTDlMMDlYVmFYck1SS0o1cCIsCiAgICAgICAgICAibG9nb191cmwiOiAiaHR0cHM6Ly9wbGFpZC1tZXJjaGFudC1sb2dvcy5wbGFpZC5jb20vZG9sbGFyYW1hXzE0OTEucG5nIiwKICAgICAgICAgICJuYW1lIjogIkRvbGxhcmFtYSIsCiAgICAgICAgICAicGhvbmVfbnVtYmVyIjogbnVsbCwKICAgICAgICAgICJ0eXBlIjogIm1lcmNoYW50IiwKICAgICAgICAgICJ3ZWJzaXRlIjogImRvbGxhcmFtYS5jb20iCiAgICAgICAgfQogICAgICBdLAogICAgICAiZGF0ZSI6ICIyMDI0LTAxLTIzIiwKICAgICAgImRhdGV0aW1lIjogbnVsbCwKICAgICAgImlzb19jdXJyZW5jeV9jb2RlIjogIlVTRCIsCiAgICAgICJsb2NhdGlvbiI6IHsKICAgICAgICAiYWRkcmVzcyI6IG51bGwsCiAgICAgICAgImNpdHkiOiBudWxsLAogICAgICAgICJjb3VudHJ5IjogbnVsbCwKICAgICAgICAibGF0IjogbnVsbCwKICAgICAgICAibG9uIjogbnVsbCwKICAgICAgICAicG9zdGFsX2NvZGUiOiBudWxsLAogICAgICAgICJyZWdpb24iOiBudWxsLAogICAgICAgICJzdG9yZV9udW1iZXIiOiAiMDEyIgogICAgICB9LAogICAgICAibG9nb191cmwiOiAiaHR0cHM6Ly9wbGFpZC1tZXJjaGFudC1sb2dvcy5wbGFpZC5jb20vZG9sbGFyYW1hXzE0OTEucG5nIiwKICAgICAgIm1lcmNoYW50X2VudGl0eV9pZCI6ICI0cldxcnAzM1pSbjhNMTBxd0xSS1ZMOUwwOVhWYVhyTVJLSjVwIiwKICAgICAgIm1lcmNoYW50X25hbWUiOiAiRG9sbGFyYW1hIiwKICAgICAgIm5hbWUiOiAiRE9MTEFSQU1BICMgMDEyIFRPUk9OVE8gT04iLAogICAgICAib3JpZ2luYWxfZGVzY3JpcHRpb24iOiAiRE9MTEFSQU1BICMgMDEyIFRPUk9OVE8gT04iLAogICAgICAicGF5bWVudF9jaGFubmVsIjogImluIHN0b3JlIiwKICAgICAgInBheW1lbnRfbWV0YSI6IHsKICAgICAgICAiYnlfb3JkZXJfb2YiOiBudWxsLAogICAgICAgICJwYXllZSI6IG51bGwsCiAgICAgICAgInBheWVyIjogbnVsbCwKICAgICAgICAicGF5bWVudF9tZXRob2QiOiBudWxsLAogICAgICAgICJwYXltZW50X3Byb2Nlc3NvciI6IG51bGwsCiAgICAgICAgInBwZF9pZCI6IG51bGwsCiAgICAgICAgInJlYXNvbiI6IG51bGwsCiAgICAgICAgInJlZmVyZW5jZV9udW1iZXIiOiBudWxsCiAgICAgIH0sCiAgICAgICJwZW5kaW5nIjogZmFsc2UsCiAgICAgICJwZW5kaW5nX3RyYW5zYWN0aW9uX2lkIjogbnVsbCwKICAgICAgInBlcnNvbmFsX2ZpbmFuY2VfY2F0ZWdvcnkiOiB7CiAgICAgICAgImNvbmZpZGVuY2VfbGV2ZWwiOiAiVkVSWV9ISUdIIiwKICAgICAgICAiZGV0YWlsZWQiOiAiR0VORVJBTF9NRVJDSEFORElTRV9ESVNDT1VOVF9TVE9SRVMiLAogICAgICAgICJwcmltYXJ5IjogIkdFTkVSQUxfTUVSQ0hBTkRJU0UiCiAgICAgIH0sCiAgICAgICJwZXJzb25hbF9maW5hbmNlX2NhdGVnb3J5X2ljb25fdXJsIjogImh0dHBzOi8vcGxhaWQtY2F0ZWdvcnktaWNvbnMucGxhaWQuY29tL1BGQ19HRU5FUkFMX01FUkNIQU5ESVNFLnBuZyIsCiAgICAgICJ0cmFuc2FjdGlvbl9jb2RlIjogbnVsbCwKICAgICAgInRyYW5zYWN0aW9uX2lkIjogIldtNmtaNXpNYWp1ZGI0WFY2bnlhZkI4VmdOYjN6bkM2WjFqRHgiLAogICAgICAidHJhbnNhY3Rpb25fdHlwZSI6ICJwbGFjZSIsCiAgICAgICJ1bm9mZmljaWFsX2N1cnJlbmN5X2NvZGUiOiBudWxsLAogICAgICAid2Vic2l0ZSI6ICJkb2xsYXJhbWEuY29tIgogICAgfSwKICAgIHsKICAgICAgImFjY291bnRfaWQiOiAiWnZsQkw1ZU1QUXRuWERWNlFyUjlzUmVOVlZ6MVhBaWVhZ0RQeiIsCiAgICAgICJhY2NvdW50X293bmVyIjogbnVsbCwKICAgICAgImFtb3VudCI6IDYuNzQsCiAgICAgICJhdXRob3JpemVkX2RhdGUiOiAiMjAyNC0wMS0yMSIsCiAgICAgICJhdXRob3JpemVkX2RhdGV0aW1lIjogbnVsbCwKICAgICAgImNhdGVnb3J5IjogWwogICAgICAgICJTaG9wcyIsCiAgICAgICAgIkRpZ2l0YWwgUHVyY2hhc2UiCiAgICAgIF0sCiAgICAgICJjYXRlZ29yeV9pZCI6ICIxOTAxOTAwMCIsCiAgICAgICJjaGVja19udW1iZXIiOiBudWxsLAogICAgICAiY291bnRlcnBhcnRpZXMiOiBbCiAgICAgICAgewogICAgICAgICAgImNvbmZpZGVuY2VfbGV2ZWwiOiAiVkVSWV9ISUdIIiwKICAgICAgICAgICJlbnRpdHlfaWQiOiAiMmdPd21xOXFLNTZLNjBvRG0zZUxyUkVWMkIybVZhZGtSbjhNVyIsCiAgICAgICAgICAibG9nb191cmwiOiAiaHR0cHM6Ly9wbGFpZC1tZXJjaGFudC1sb2dvcy5wbGFpZC5jb20vYW1hem9uXzQ0LnBuZyIsCiAgICAgICAgICAibmFtZSI6ICJBbWF6b24iLAogICAgICAgICAgInBob25lX251bWJlciI6IG51bGwsCiAgICAgICAgICAidHlwZSI6ICJtZXJjaGFudCIsCiAgICAgICAgICAid2Vic2l0ZSI6ICJhbWF6b24uY29tIgogICAgICAgIH0KICAgICAgXSwKICAgICAgImRhdGUiOiAiMjAyNC0wMS0yMyIsCiAgICAgICJkYXRldGltZSI6IG51bGwsCiAgICAgICJpc29fY3VycmVuY3lfY29kZSI6ICJVU0QiLAogICAgICAibG9jYXRpb24iOiB7CiAgICAgICAgImFkZHJlc3MiOiBudWxsLAogICAgICAgICJjaXR5IjogbnVsbCwKICAgICAgICAiY291bnRyeSI6IG51bGwsCiAgICAgICAgImxhdCI6IG51bGwsCiAgICAgICAgImxvbiI6IG51bGwsCiAgICAgICAgInBvc3RhbF9jb2RlIjogbnVsbCwKICAgICAgICAicmVnaW9uIjogbnVsbCwKICAgICAgICAic3RvcmVfbnVtYmVyIjogbnVsbAogICAgICB9LAogICAgICAibG9nb191cmwiOiAiaHR0cHM6Ly9wbGFpZC1tZXJjaGFudC1sb2dvcy5wbGFpZC5jb20vYW1hem9uXzQ0LnBuZyIsCiAgICAgICJtZXJjaGFudF9lbnRpdHlfaWQiOiAiMmdPd21xOXFLNTZLNjBvRG0zZUxyUkVWMkIybVZhZGtSbjhNVyIsCiAgICAgICJtZXJjaGFudF9uYW1lIjogIkFtYXpvbiIsCiAgICAgICJuYW1lIjogIkFtYXpvbiIsCiAgICAgICJvcmlnaW5hbF9kZXNjcmlwdGlvbiI6ICJBTVpOIE1rdHAgVVMgIy4uLjAxMjMiLAogICAgICAicGF5bWVudF9jaGFubmVsIjogIm9ubGluZSIsCiAgICAgICJwYXltZW50X21ldGEiOiB7CiAgICAgICAgImJ5X29yZGVyX29mIjogbnVsbCwKICAgICAgICAicGF5ZWUiOiBudWxsLAogICAgICAgICJwYXllciI6IG51bGwsCiAgICAgICAgInBheW1lbnRfbWV0aG9kIjogbnVsbCwKICAgICAgICAicGF5bWVudF9wcm9jZXNzb3IiOiBudWxsLAogICAgICAgICJwcGRfaWQiOiBudWxsLAogICAgICAgICJyZWFzb24iOiBudWxsLAogICAgICAgICJyZWZlcmVuY2VfbnVtYmVyIjogbnVsbAogICAgICB9LAogICAgICAicGVuZGluZyI6IGZhbHNlLAogICAgICAicGVuZGluZ190cmFuc2FjdGlvbl9pZCI6IG51bGwsCiAgICAgICJwZXJzb25hbF9maW5hbmNlX2NhdGVnb3J5IjogewogICAgICAgICJjb25maWRlbmNlX2xldmVsIjogIlZFUllfSElHSCIsCiAgICAgICAgImRldGFpbGVkIjogIkdFTkVSQUxfTUVSQ0hBTkRJU0VfT05MSU5FX01BUktFVFBMQUNFUyIsCiAgICAgICAgInByaW1hcnkiOiAiR0VORVJBTF9NRVJDSEFORElTRSIKICAgICAgfSwKICAgICAgInBlcnNvbmFsX2ZpbmFuY2VfY2F0ZWdvcnlfaWNvbl91cmwiOiAiaHR0cHM6Ly9wbGFpZC1jYXRlZ29yeS1pY29ucy5wbGFpZC5jb20vUEZDX0dFTkVSQUxfTUVSQ0hBTkRJU0UucG5nIiwKICAgICAgInRyYW5zYWN0aW9uX2NvZGUiOiBudWxsLAogICAgICAidHJhbnNhY3Rpb25faWQiOiAiQWE3S2dScFZMQWhhbVdsa0F2RDNzOERsNUtaN2JyRjlyQTVkMyIsCiAgICAgICJ0cmFuc2FjdGlvbl90eXBlIjogImRpZ2l0YWwiLAogICAgICAidW5vZmZpY2lhbF9jdXJyZW5jeV9jb2RlIjogbnVsbCwKICAgICAgIndlYnNpdGUiOiAiYW1hem9uLmNvbSIKICAgIH0sCiAgICB7CiAgICAgICJhY2NvdW50X2lkIjogIlp2bEJMNWVNUFF0blhEVjZRclI5c1JlTlZWejFYQWllYWdEUHoiLAogICAgICAiYWNjb3VudF9vd25lciI6IG51bGwsCiAgICAgICJhbW91bnQiOiAwLjE5LAogICAgICAiYXV0aG9yaXplZF9kYXRlIjogIjIwMjQtMDEtMjEiLAogICAgICAiYXV0aG9yaXplZF9kYXRldGltZSI6IG51bGwsCiAgICAgICJjYXRlZ29yeSI6IFsKICAgICAgICAiVHJhdmVsIiwKICAgICAgICAiUGFya2luZyIKICAgICAgXSwKICAgICAgImNhdGVnb3J5X2lkIjogIjIyMDEzMDAwIiwKICAgICAgImNoZWNrX251bWJlciI6IG51bGwsCiAgICAgICJjb3VudGVycGFydGllcyI6IFtdLAogICAgICAiZGF0ZSI6ICIyMDI0LTAxLTI0IiwKICAgICAgImRhdGV0aW1lIjogbnVsbCwKICAgICAgImlzb19jdXJyZW5jeV9jb2RlIjogIlVTRCIsCiAgICAgICJsb2NhdGlvbiI6IHsKICAgICAgICAiYWRkcmVzcyI6IG51bGwsCiAgICAgICAgImNpdHkiOiBudWxsLAogICAgICAgICJjb3VudHJ5IjogbnVsbCwKICAgICAgICAibGF0IjogbnVsbCwKICAgICAgICAibG9uIjogbnVsbCwKICAgICAgICAicG9zdGFsX2NvZGUiOiBudWxsLAogICAgICAgICJyZWdpb24iOiBudWxsLAogICAgICAgICJzdG9yZV9udW1iZXIiOiBudWxsCiAgICAgIH0sCiAgICAgICJsb2dvX3VybCI6IG51bGwsCiAgICAgICJtZXJjaGFudF9lbnRpdHlfaWQiOiBudWxsLAogICAgICAibWVyY2hhbnRfbmFtZSI6IG51bGwsCiAgICAgICJuYW1lIjogIkNDU0YgTVRBIElQUyBQUktORyBNRVRFUiIsCiAgICAgICJvcmlnaW5hbF9kZXNjcmlwdGlvbiI6ICJDQ1NGIE1UQSBJUFMgUFJLTkcgTUVURVIiLAogICAgICAicGF5bWVudF9jaGFubmVsIjogImluIHN0b3JlIiwKICAgICAgInBheW1lbnRfbWV0YSI6IHsKICAgICAgICAiYnlfb3JkZXJfb2YiOiBudWxsLAogICAgICAgICJwYXllZSI6IG51bGwsCiAgICAgICAgInBheWVyIjogbnVsbCwKICAgICAgICAicGF5bWVudF9tZXRob2QiOiBudWxsLAogICAgICAgICJwYXltZW50X3Byb2Nlc3NvciI6IG51bGwsCiAgICAgICAgInBwZF9pZCI6IG51bGwsCiAgICAgICAgInJlYXNvbiI6IG51bGwsCiAgICAgICAgInJlZmVyZW5jZV9udW1iZXIiOiBudWxsCiAgICAgIH0sCiAgICAgICJwZW5kaW5nIjogZmFsc2UsCiAgICAgICJwZW5kaW5nX3RyYW5zYWN0aW9uX2lkIjogbnVsbCwKICAgICAgInBlcnNvbmFsX2ZpbmFuY2VfY2F0ZWdvcnkiOiB7CiAgICAgICAgImNvbmZpZGVuY2VfbGV2ZWwiOiAiTE9XIiwKICAgICAgICAiZGV0YWlsZWQiOiAiVFJBTlNQT1JUQVRJT05fUFVCTElDX1RSQU5TSVQiLAogICAgICAgICJwcmltYXJ5IjogIlRSQU5TUE9SVEFUSU9OIgogICAgICB9LAogICAgICAicGVyc29uYWxfZmluYW5jZV9jYXRlZ29yeV9pY29uX3VybCI6ICJodHRwczovL3BsYWlkLWNhdGVnb3J5LWljb25zLnBsYWlkLmNvbS9QRkNfVFJBTlNQT1JUQVRJT04ucG5nIiwKICAgICAgInRyYW5zYWN0aW9uX2NvZGUiOiBudWxsLAogICAgICAidHJhbnNhY3Rpb25faWQiOiAiR2VMZHE1b3pXOVRlOEpkNE1HdlBUODRNWkR3UFc3RjZNUG9RaiIsCiAgICAgICJ0cmFuc2FjdGlvbl90eXBlIjogInBsYWNlIiwKICAgICAgInVub2ZmaWNpYWxfY3VycmVuY3lfY29kZSI6IG51bGwsCiAgICAgICJ3ZWJzaXRlIjogbnVsbAogICAgfSwKICAgIHsKICAgICAgImFjY291bnRfaWQiOiAiWnZsQkw1ZU1QUXRuWERWNlFyUjlzUmVOVlZ6MVhBaWVhZ0RQeiIsCiAgICAgICJhY2NvdW50X293bmVyIjogbnVsbCwKICAgICAgImFtb3VudCI6IDcwLjQ4LAogICAgICAiYXV0aG9yaXplZF9kYXRlIjogIjIwMjQtMDEtMjUiLAogICAgICAiYXV0aG9yaXplZF9kYXRldGltZSI6IG51bGwsCiAgICAgICJjYXRlZ29yeSI6IFsKICAgICAgICAiU2hvcHMiLAogICAgICAgICJNdXNpYywgVmlkZW8gYW5kIERWRCIKICAgICAgXSwKICAgICAgImNhdGVnb3J5X2lkIjogIjE5MDM2MDAwIiwKICAgICAgImNoZWNrX251bWJlciI6IG51bGwsCiAgICAgICJjb3VudGVycGFydGllcyI6IFsKICAgICAgICB7CiAgICAgICAgICAiY29uZmlkZW5jZV9sZXZlbCI6ICJWRVJZX0hJR0giLAogICAgICAgICAgImVudGl0eV9pZCI6ICJ6M1h6UmU0ODhwTWRvN05Bbkw0NEw3cnY5TDU1MGJlcmt5Nm1LIiwKICAgICAgICAgICJsb2dvX3VybCI6ICJodHRwczovL3BsYWlkLW1lcmNoYW50LWxvZ29zLnBsYWlkLmNvbS9hcHBsZV9pdHVuZXNfMTQzNC5wbmciLAogICAgICAgICAgIm5hbWUiOiAiQXBwbGUgaVR1bmVzIiwKICAgICAgICAgICJwaG9uZV9udW1iZXIiOiBudWxsLAogICAgICAgICAgInR5cGUiOiAibWVyY2hhbnQiLAogICAgICAgICAgIndlYnNpdGUiOiAiYXBwbGUuY29tL2l0dW5lcyIKICAgICAgICB9CiAgICAgIF0sCiAgICAgICJkYXRlIjogIjIwMjQtMDEtMjYiLAogICAgICAiZGF0ZXRpbWUiOiBudWxsLAogICAgICAiaXNvX2N1cnJlbmN5X2NvZGUiOiAiVVNEIiwKICAgICAgImxvY2F0aW9uIjogewogICAgICAgICJhZGRyZXNzIjogbnVsbCwKICAgICAgICAiY2l0eSI6IG51bGwsCiAgICAgICAgImNvdW50cnkiOiBudWxsLAogICAgICAgICJsYXQiOiBudWxsLAogICAgICAgICJsb24iOiBudWxsLAogICAgICAgICJwb3N0YWxfY29kZSI6IG51bGwsCiAgICAgICAgInJlZ2lvbiI6IG51bGwsCiAgICAgICAgInN0b3JlX251bWJlciI6IG51bGwKICAgICAgfSwKICAgICAgImxvZ29fdXJsIjogImh0dHBzOi8vcGxhaWQtbWVyY2hhbnQtbG9nb3MucGxhaWQuY29tL2FwcGxlX2l0dW5lc18xNDM0LnBuZyIsCiAgICAgICJtZXJjaGFudF9lbnRpdHlfaWQiOiAiejNYelJlNDg4cE1kbzdOQW5MNDRMN3J2OUw1NTBiZXJreTZtSyIsCiAgICAgICJtZXJjaGFudF9uYW1lIjogIkFwcGxlIGlUdW5lcyIsCiAgICAgICJuYW1lIjogImlUdW5lcyIsCiAgICAgICJvcmlnaW5hbF9kZXNjcmlwdGlvbiI6ICJBUEwqIElUVU5FUy5DT00vQklMTCIsCiAgICAgICJwYXltZW50X2NoYW5uZWwiOiAib25saW5lIiwKICAgICAgInBheW1lbnRfbWV0YSI6IHsKICAgICAgICAiYnlfb3JkZXJfb2YiOiBudWxsLAogICAgICAgICJwYXllZSI6IG51bGwsCiAgICAgICAgInBheWVyIjogbnVsbCwKICAgICAgICAicGF5bWVudF9tZXRob2QiOiBudWxsLAogICAgICAgICJwYXltZW50X3Byb2Nlc3NvciI6ICJBcHBsZSIsCiAgICAgICAgInBwZF9pZCI6IG51bGwsCiAgICAgICAgInJlYXNvbiI6IG51bGwsCiAgICAgICAgInJlZmVyZW5jZV9udW1iZXIiOiBudWxsCiAgICAgIH0sCiAgICAgICJwZW5kaW5nIjogZmFsc2UsCiAgICAgICJwZW5kaW5nX3RyYW5zYWN0aW9uX2lkIjogbnVsbCwKICAgICAgInBlcnNvbmFsX2ZpbmFuY2VfY2F0ZWdvcnkiOiB7CiAgICAgICAgImNvbmZpZGVuY2VfbGV2ZWwiOiAiVkVSWV9ISUdIIiwKICAgICAgICAiZGV0YWlsZWQiOiAiRU5URVJUQUlOTUVOVF9NVVNJQ19BTkRfQVVESU8iLAogICAgICAgICJwcmltYXJ5IjogIkVOVEVSVEFJTk1FTlQiCiAgICAgIH0sCiAgICAgICJwZXJzb25hbF9maW5hbmNlX2NhdGVnb3J5X2ljb25fdXJsIjogImh0dHBzOi8vcGxhaWQtY2F0ZWdvcnktaWNvbnMucGxhaWQuY29tL1BGQ19FTlRFUlRBSU5NRU5ULnBuZyIsCiAgICAgICJ0cmFuc2FjdGlvbl9jb2RlIjogbnVsbCwKICAgICAgInRyYW5zYWN0aW9uX2lkIjogIm5aTEFQendEeWxpYlFkdmE4amVEdEcxZU1Kb0VXYnRBbFdRbnAiLAogICAgICAidHJhbnNhY3Rpb25fdHlwZSI6ICJwbGFjZSIsCiAgICAgICJ1bm9mZmljaWFsX2N1cnJlbmN5X2NvZGUiOiBudWxsLAogICAgICAid2Vic2l0ZSI6ICJhcHBsZS5jb20vaXR1bmVzIgogICAgfSwKICAgIHsKICAgICAgImFjY291bnRfaWQiOiAiWnZsQkw1ZU1QUXRuWERWNlFyUjlzUmVOVlZ6MVhBaWVhZ0RQeiIsCiAgICAgICJhY2NvdW50X293bmVyIjogbnVsbCwKICAgICAgImFtb3VudCI6IDE5LjcsCiAgICAgICJhdXRob3JpemVkX2RhdGUiOiAiMjAyNC0wMS0yNSIsCiAgICAgICJhdXRob3JpemVkX2RhdGV0aW1lIjogbnVsbCwKICAgICAgImNhdGVnb3J5IjogWwogICAgICAgICJTZXJ2aWNlIiwKICAgICAgICAiRm9vZCBhbmQgQmV2ZXJhZ2UiCiAgICAgIF0sCiAgICAgICJjYXRlZ29yeV9pZCI6ICIxODAyMTAwMCIsCiAgICAgICJjaGVja19udW1iZXIiOiBudWxsLAogICAgICAiY291bnRlcnBhcnRpZXMiOiBbCiAgICAgICAgewogICAgICAgICAgImNvbmZpZGVuY2VfbGV2ZWwiOiAiVkVSWV9ISUdIIiwKICAgICAgICAgICJlbnRpdHlfaWQiOiAiV0trNmJFTmVZd3ZWYUxhWThFRU93OEtvYTJYNzJtMndKT2sxWiIsCiAgICAgICAgICAibG9nb191cmwiOiAiaHR0cHM6Ly9wbGFpZC1jb3VudGVycGFydHktbG9nb3MucGxhaWQuY29tL3NlYW1sZXNzXzUucG5nIiwKICAgICAgICAgICJuYW1lIjogIlNlYW1sZXNzIiwKICAgICAgICAgICJwaG9uZV9udW1iZXIiOiBudWxsLAogICAgICAgICAgInR5cGUiOiAibWFya2V0cGxhY2UiLAogICAgICAgICAgIndlYnNpdGUiOiAic2VhbWxlc3MuY29tIgogICAgICAgIH0KICAgICAgXSwKICAgICAgImRhdGUiOiAiMjAyNC0wMS0yNiIsCiAgICAgICJkYXRldGltZSI6IG51bGwsCiAgICAgICJpc29fY3VycmVuY3lfY29kZSI6ICJVU0QiLAogICAgICAibG9jYXRpb24iOiB7CiAgICAgICAgImFkZHJlc3MiOiBudWxsLAogICAgICAgICJjaXR5IjogbnVsbCwKICAgICAgICAiY291bnRyeSI6IG51bGwsCiAgICAgICAgImxhdCI6IG51bGwsCiAgICAgICAgImxvbiI6IG51bGwsCiAgICAgICAgInBvc3RhbF9jb2RlIjogbnVsbCwKICAgICAgICAicmVnaW9uIjogIk5ZIiwKICAgICAgICAic3RvcmVfbnVtYmVyIjogbnVsbAogICAgICB9LAogICAgICAibG9nb191cmwiOiBudWxsLAogICAgICAibWVyY2hhbnRfZW50aXR5X2lkIjogbnVsbCwKICAgICAgIm1lcmNoYW50X25hbWUiOiAiU2VhbWxlc3MiLAogICAgICAibmFtZSI6ICJTZWFtbGVzcyIsCiAgICAgICJvcmlnaW5hbF9kZXNjcmlwdGlvbiI6ICJTRUFNTFNTU1RFSU5XQVlHT1VSTUUgU0VBTUxFU1MuQ09NIE5ZIiwKICAgICAgInBheW1lbnRfY2hhbm5lbCI6ICJvbmxpbmUiLAogICAgICAicGF5bWVudF9tZXRhIjogewogICAgICAgICJieV9vcmRlcl9vZiI6IG51bGwsCiAgICAgICAgInBheWVlIjogbnVsbCwKICAgICAgICAicGF5ZXIiOiBudWxsLAogICAgICAgICJwYXltZW50X21ldGhvZCI6IG51bGwsCiAgICAgICAgInBheW1lbnRfcHJvY2Vzc29yIjogbnVsbCwKICAgICAgICAicHBkX2lkIjogbnVsbCwKICAgICAgICAicmVhc29uIjogbnVsbCwKICAgICAgICAicmVmZXJlbmNlX251bWJlciI6IG51bGwKICAgICAgfSwKICAgICAgInBlbmRpbmciOiBmYWxzZSwKICAgICAgInBlbmRpbmdfdHJhbnNhY3Rpb25faWQiOiBudWxsLAogICAgICAicGVyc29uYWxfZmluYW5jZV9jYXRlZ29yeSI6IHsKICAgICAgICAiY29uZmlkZW5jZV9sZXZlbCI6ICJNRURJVU0iLAogICAgICAgICJkZXRhaWxlZCI6ICJGT09EX0FORF9EUklOS19SRVNUQVVSQU5UIiwKICAgICAgICAicHJpbWFyeSI6ICJGT09EX0FORF9EUklOSyIKICAgICAgfSwKICAgICAgInBlcnNvbmFsX2ZpbmFuY2VfY2F0ZWdvcnlfaWNvbl91cmwiOiAiaHR0cHM6Ly9wbGFpZC1jYXRlZ29yeS1pY29ucy5wbGFpZC5jb20vUEZDX0ZPT0RfQU5EX0RSSU5LLnBuZyIsCiAgICAgICJ0cmFuc2FjdGlvbl9jb2RlIjogbnVsbCwKICAgICAgInRyYW5zYWN0aW9uX2lkIjogImJCZHlsSmdYTGt1MXJ5Vk5ROVhlaHhSZWczNEtHN3RtYlo3ZFIiLAogICAgICAidHJhbnNhY3Rpb25fdHlwZSI6ICJwbGFjZSIsCiAgICAgICJ1bm9mZmljaWFsX2N1cnJlbmN5X2NvZGUiOiBudWxsLAogICAgICAid2Vic2l0ZSI6IG51bGwKICAgIH0sCiAgICB7CiAgICAgICJhY2NvdW50X2lkIjogIlp2bEJMNWVNUFF0blhEVjZRclI5c1JlTlZWejFYQWllYWdEUHoiLAogICAgICAiYWNjb3VudF9vd25lciI6IG51bGwsCiAgICAgICJhbW91bnQiOiAxOTIsCiAgICAgICJhdXRob3JpemVkX2RhdGUiOiAiMjAyNC0wMS0yNSIsCiAgICAgICJhdXRob3JpemVkX2RhdGV0aW1lIjogbnVsbCwKICAgICAgImNhdGVnb3J5IjogWwogICAgICAgICJUcmF2ZWwiLAogICAgICAgICJSYWlsIgogICAgICBdLAogICAgICAiY2F0ZWdvcnlfaWQiOiAiMjIwMTUwMDAiLAogICAgICAiY2hlY2tfbnVtYmVyIjogbnVsbCwKICAgICAgImNvdW50ZXJwYXJ0aWVzIjogW10sCiAgICAgICJkYXRlIjogIjIwMjQtMDEtMjYiLAogICAgICAiZGF0ZXRpbWUiOiBudWxsLAogICAgICAiaXNvX2N1cnJlbmN5X2NvZGUiOiAiVVNEIiwKICAgICAgImxvY2F0aW9uIjogewogICAgICAgICJhZGRyZXNzIjogbnVsbCwKICAgICAgICAiY2l0eSI6IG51bGwsCiAgICAgICAgImNvdW50cnkiOiBudWxsLAogICAgICAgICJsYXQiOiBudWxsLAogICAgICAgICJsb24iOiBudWxsLAogICAgICAgICJwb3N0YWxfY29kZSI6IG51bGwsCiAgICAgICAgInJlZ2lvbiI6IG51bGwsCiAgICAgICAgInN0b3JlX251bWJlciI6IG51bGwKICAgICAgfSwKICAgICAgImxvZ29fdXJsIjogbnVsbCwKICAgICAgIm1lcmNoYW50X2VudGl0eV9pZCI6IG51bGwsCiAgICAgICJtZXJjaGFudF9uYW1lIjogbnVsbCwKICAgICAgIm5hbWUiOiAiQW10cmFrIiwKICAgICAgIm9yaWdpbmFsX2Rlc2NyaXB0aW9uIjogIkFNVFJBSyAuQ09NIDAxMjM0NTY3ODkwMTIiLAogICAgICAicGF5bWVudF9jaGFubmVsIjogIm9ubGluZSIsCiAgICAgICJwYXltZW50X21ldGEiOiB7CiAgICAgICAgImJ5X29yZGVyX29mIjogbnVsbCwKICAgICAgICAicGF5ZWUiOiBudWxsLAogICAgICAgICJwYXllciI6IG51bGwsCiAgICAgICAgInBheW1lbnRfbWV0aG9kIjogbnVsbCwKICAgICAgICAicGF5bWVudF9wcm9jZXNzb3IiOiBudWxsLAogICAgICAgICJwcGRfaWQiOiBudWxsLAogICAgICAgICJyZWFzb24iOiBudWxsLAogICAgICAgICJyZWZlcmVuY2VfbnVtYmVyIjogbnVsbAogICAgICB9LAogICAgICAicGVuZGluZyI6IGZhbHNlLAogICAgICAicGVuZGluZ190cmFuc2FjdGlvbl9pZCI6IG51bGwsCiAgICAgICJwZXJzb25hbF9maW5hbmNlX2NhdGVnb3J5IjogewogICAgICAgICJjb25maWRlbmNlX2xldmVsIjogIkxPVyIsCiAgICAgICAgImRldGFpbGVkIjogIkVOVEVSVEFJTk1FTlRfU1BPUlRJTkdfRVZFTlRTX0FNVVNFTUVOVF9QQVJLU19BTkRfTVVTRVVNUyIsCiAgICAgICAgInByaW1hcnkiOiAiRU5URVJUQUlOTUVOVCIKICAgICAgfSwKICAgICAgInBlcnNvbmFsX2ZpbmFuY2VfY2F0ZWdvcnlfaWNvbl91cmwiOiAiaHR0cHM6Ly9wbGFpZC1jYXRlZ29yeS1pY29ucy5wbGFpZC5jb20vUEZDX0VOVEVSVEFJTk1FTlQucG5nIiwKICAgICAgInRyYW5zYWN0aW9uX2NvZGUiOiBudWxsLAogICAgICAidHJhbnNhY3Rpb25faWQiOiAibVExQU5rYkRtUmZiNHl2SjZucE10NkxtQmoxTnlFY2d5ZFhXViIsCiAgICAgICJ0cmFuc2FjdGlvbl90eXBlIjogInBsYWNlIiwKICAgICAgInVub2ZmaWNpYWxfY3VycmVuY3lfY29kZSI6IG51bGwsCiAgICAgICJ3ZWJzaXRlIjogbnVsbAogICAgfSwKICAgIHsKICAgICAgImFjY291bnRfaWQiOiAiWnZsQkw1ZU1QUXRuWERWNlFyUjlzUmVOVlZ6MVhBaWVhZ0RQeiIsCiAgICAgICJhY2NvdW50X293bmVyIjogbnVsbCwKICAgICAgImFtb3VudCI6IDkwLjM0LAogICAgICAiYXV0aG9yaXplZF9kYXRlIjogIjIwMjQtMDEtMjUiLAogICAgICAiYXV0aG9yaXplZF9kYXRldGltZSI6IG51bGwsCiAgICAgICJjYXRlZ29yeSI6IFsKICAgICAgICAiU2hvcHMiLAogICAgICAgICJTdXBlcm1hcmtldHMgYW5kIEdyb2NlcmllcyIKICAgICAgXSwKICAgICAgImNhdGVnb3J5X2lkIjogIjE5MDQ3MDAwIiwKICAgICAgImNoZWNrX251bWJlciI6IG51bGwsCiAgICAgICJjb3VudGVycGFydGllcyI6IFsKICAgICAgICB7CiAgICAgICAgICAiY29uZmlkZW5jZV9sZXZlbCI6ICJWRVJZX0hJR0giLAogICAgICAgICAgImVudGl0eV9pZCI6ICJBbmRvcmJtYk1LZ2pPYXpES3dyVkJBVnFwODg5V3Z5MUFFSjBCIiwKICAgICAgICAgICJsb2dvX3VybCI6ICJodHRwczovL3BsYWlkLW1lcmNoYW50LWxvZ29zLnBsYWlkLmNvbS9oZWJfNDY2LnBuZyIsCiAgICAgICAgICAibmFtZSI6ICJILUUtQiIsCiAgICAgICAgICAicGhvbmVfbnVtYmVyIjogbnVsbCwKICAgICAgICAgICJ0eXBlIjogIm1lcmNoYW50IiwKICAgICAgICAgICJ3ZWJzaXRlIjogImhlYi5jb20iCiAgICAgICAgfQogICAgICBdLAogICAgICAiZGF0ZSI6ICIyMDI0LTAxLTI2IiwKICAgICAgImRhdGV0aW1lIjogbnVsbCwKICAgICAgImlzb19jdXJyZW5jeV9jb2RlIjogIlVTRCIsCiAgICAgICJsb2NhdGlvbiI6IHsKICAgICAgICAiYWRkcmVzcyI6IG51bGwsCiAgICAgICAgImNpdHkiOiBudWxsLAogICAgICAgICJjb3VudHJ5IjogbnVsbCwKICAgICAgICAibGF0IjogbnVsbCwKICAgICAgICAibG9uIjogbnVsbCwKICAgICAgICAicG9zdGFsX2NvZGUiOiBudWxsLAogICAgICAgICJyZWdpb24iOiBudWxsLAogICAgICAgICJzdG9yZV9udW1iZXIiOiAiMDEyIgogICAgICB9LAogICAgICAibG9nb191cmwiOiAiaHR0cHM6Ly9wbGFpZC1tZXJjaGFudC1sb2dvcy5wbGFpZC5jb20vaGViXzQ2Ni5wbmciLAogICAgICAibWVyY2hhbnRfZW50aXR5X2lkIjogIkFuZG9yYm1iTUtnak9hekRLd3JWQkFWcXA4ODlXdnkxQUVKMEIiLAogICAgICAibWVyY2hhbnRfbmFtZSI6ICJILUUtQiIsCiAgICAgICJuYW1lIjogIkgtRS1CIEdBUyAjMDEyIiwKICAgICAgIm9yaWdpbmFsX2Rlc2NyaXB0aW9uIjogIkgtRS1CIEdBUyAgIzAxMiIsCiAgICAgICJwYXltZW50X2NoYW5uZWwiOiAiaW4gc3RvcmUiLAogICAgICAicGF5bWVudF9tZXRhIjogewogICAgICAgICJieV9vcmRlcl9vZiI6IG51bGwsCiAgICAgICAgInBheWVlIjogbnVsbCwKICAgICAgICAicGF5ZXIiOiBudWxsLAogICAgICAgICJwYXltZW50X21ldGhvZCI6IG51bGwsCiAgICAgICAgInBheW1lbnRfcHJvY2Vzc29yIjogbnVsbCwKICAgICAgICAicHBkX2lkIjogbnVsbCwKICAgICAgICAicmVhc29uIjogbnVsbCwKICAgICAgICAicmVmZXJlbmNlX251bWJlciI6IG51bGwKICAgICAgfSwKICAgICAgInBlbmRpbmciOiBmYWxzZSwKICAgICAgInBlbmRpbmdfdHJhbnNhY3Rpb25faWQiOiBudWxsLAogICAgICAicGVyc29uYWxfZmluYW5jZV9jYXRlZ29yeSI6IHsKICAgICAgICAiY29uZmlkZW5jZV9sZXZlbCI6ICJWRVJZX0hJR0giLAogICAgICAgICJkZXRhaWxlZCI6ICJGT09EX0FORF9EUklOS19HUk9DRVJJRVMiLAogICAgICAgICJwcmltYXJ5IjogIkZPT0RfQU5EX0RSSU5LIgogICAgICB9LAogICAgICAicGVyc29uYWxfZmluYW5jZV9jYXRlZ29yeV9pY29uX3VybCI6ICJodHRwczovL3BsYWlkLWNhdGVnb3J5LWljb25zLnBsYWlkLmNvbS9QRkNfRk9PRF9BTkRfRFJJTksucG5nIiwKICAgICAgInRyYW5zYWN0aW9uX2NvZGUiOiBudWxsLAogICAgICAidHJhbnNhY3Rpb25faWQiOiAieUdtcmdlNUs0TkZwRFF3ZUJMNHl1UE0zNXJ4ZFhaaTQ2WHdsViIsCiAgICAgICJ0cmFuc2FjdGlvbl90eXBlIjogInBsYWNlIiwKICAgICAgInVub2ZmaWNpYWxfY3VycmVuY3lfY29kZSI6IG51bGwsCiAgICAgICJ3ZWJzaXRlIjogImhlYi5jb20iCiAgICB9LAogICAgewogICAgICAiYWNjb3VudF9pZCI6ICJadmxCTDVlTVBRdG5YRFY2UXJSOXNSZU5WVnoxWEFpZWFnRFB6IiwKICAgICAgImFjY291bnRfb3duZXIiOiBudWxsLAogICAgICAiYW1vdW50IjogMTAzLjIxLAogICAgICAiYXV0aG9yaXplZF9kYXRlIjogIjIwMjQtMDEtMjYiLAogICAgICAiYXV0aG9yaXplZF9kYXRldGltZSI6IG51bGwsCiAgICAgICJjYXRlZ29yeSI6IFsKICAgICAgICAiU2hvcHMiLAogICAgICAgICJXYXJlaG91c2VzIGFuZCBXaG9sZXNhbGUgU3RvcmVzIgogICAgICBdLAogICAgICAiY2F0ZWdvcnlfaWQiOiAiMTkwNTEwMDAiLAogICAgICAiY2hlY2tfbnVtYmVyIjogbnVsbCwKICAgICAgImNvdW50ZXJwYXJ0aWVzIjogWwogICAgICAgIHsKICAgICAgICAgICJjb25maWRlbmNlX2xldmVsIjogIlZFUllfSElHSCIsCiAgICAgICAgICAiZW50aXR5X2lkIjogInpSNjF6TjBtcDVyYktlV3BwM204Ym95WXZaSzVhbjB5YUo1cjAiLAogICAgICAgICAgImxvZ29fdXJsIjogImh0dHBzOi8vcGxhaWQtbWVyY2hhbnQtbG9nb3MucGxhaWQuY29tL2Jqc193aG9sZXNhbGVfY2x1Yl8xMTkucG5nIiwKICAgICAgICAgICJuYW1lIjogIkJKJ3MgV2hvbGVzYWxlIENsdWIiLAogICAgICAgICAgInBob25lX251bWJlciI6IG51bGwsCiAgICAgICAgICAidHlwZSI6ICJtZXJjaGFudCIsCiAgICAgICAgICAid2Vic2l0ZSI6ICJianMuY29tIgogICAgICAgIH0KICAgICAgXSwKICAgICAgImRhdGUiOiAiMjAyNC0wMS0yNiIsCiAgICAgICJkYXRldGltZSI6IG51bGwsCiAgICAgICJpc29fY3VycmVuY3lfY29kZSI6ICJVU0QiLAogICAgICAibG9jYXRpb24iOiB7CiAgICAgICAgImFkZHJlc3MiOiAiODgxMSBCcmllciBDcmVlayBQa3d5IiwKICAgICAgICAiY2l0eSI6ICJSYWxlaWdoIiwKICAgICAgICAiY291bnRyeSI6IG51bGwsCiAgICAgICAgImxhdCI6IDM1LjkwMjE2MSwKICAgICAgICAibG9uIjogLTc4Ljc4ODY4MSwKICAgICAgICAicG9zdGFsX2NvZGUiOiAiMjc2MTciLAogICAgICAgICJyZWdpb24iOiAiTkMiLAogICAgICAgICJzdG9yZV9udW1iZXIiOiAiMDEyMyIKICAgICAgfSwKICAgICAgImxvZ29fdXJsIjogImh0dHBzOi8vcGxhaWQtbWVyY2hhbnQtbG9nb3MucGxhaWQuY29tL2Jqc193aG9sZXNhbGVfY2x1Yl8xMTkucG5nIiwKICAgICAgIm1lcmNoYW50X2VudGl0eV9pZCI6ICJ6UjYxek4wbXA1cmJLZVdwcDNtOGJveVl2Wks1YW4weWFKNXIwIiwKICAgICAgIm1lcmNoYW50X25hbWUiOiAiQkoncyBXaG9sZXNhbGUgQ2x1YiIsCiAgICAgICJuYW1lIjogIkJKUyBXSE9MRVNBTEUgIzAxMjMiLAogICAgICAib3JpZ2luYWxfZGVzY3JpcHRpb24iOiAiQkpTIFdIT0xFU0FMRSAjMDEyMyIsCiAgICAgICJwYXltZW50X2NoYW5uZWwiOiAiaW4gc3RvcmUiLAogICAgICAicGF5bWVudF9tZXRhIjogewogICAgICAgICJieV9vcmRlcl9vZiI6IG51bGwsCiAgICAgICAgInBheWVlIjogbnVsbCwKICAgICAgICAicGF5ZXIiOiBudWxsLAogICAgICAgICJwYXltZW50X21ldGhvZCI6IG51bGwsCiAgICAgICAgInBheW1lbnRfcHJvY2Vzc29yIjogbnVsbCwKICAgICAgICAicHBkX2lkIjogbnVsbCwKICAgICAgICAicmVhc29uIjogbnVsbCwKICAgICAgICAicmVmZXJlbmNlX251bWJlciI6IG51bGwKICAgICAgfSwKICAgICAgInBlbmRpbmciOiBmYWxzZSwKICAgICAgInBlbmRpbmdfdHJhbnNhY3Rpb25faWQiOiBudWxsLAogICAgICAicGVyc29uYWxfZmluYW5jZV9jYXRlZ29yeSI6IHsKICAgICAgICAiY29uZmlkZW5jZV9sZXZlbCI6ICJWRVJZX0hJR0giLAogICAgICAgICJkZXRhaWxlZCI6ICJHRU5FUkFMX01FUkNIQU5ESVNFX1NVUEVSU1RPUkVTIiwKICAgICAgICAicHJpbWFyeSI6ICJHRU5FUkFMX01FUkNIQU5ESVNFIgogICAgICB9LAogICAgICAicGVyc29uYWxfZmluYW5jZV9jYXRlZ29yeV9pY29uX3VybCI6ICJodHRwczovL3BsYWlkLWNhdGVnb3J5LWljb25zLnBsYWlkLmNvbS9QRkNfR0VORVJBTF9NRVJDSEFORElTRS5wbmciLAogICAgICAidHJhbnNhY3Rpb25fY29kZSI6IG51bGwsCiAgICAgICJ0cmFuc2FjdGlvbl9pZCI6ICI5cTM2ZUFLN1AxaXFHTVBiQTM0eVVBWlY3Tm1Mb2pJNHhRZzVQIiwKICAgICAgInRyYW5zYWN0aW9uX3R5cGUiOiAicGxhY2UiLAogICAgICAidW5vZmZpY2lhbF9jdXJyZW5jeV9jb2RlIjogbnVsbCwKICAgICAgIndlYnNpdGUiOiAiYmpzLmNvbSIKICAgIH0sCiAgICB7CiAgICAgICJhY2NvdW50X2lkIjogIlp2bEJMNWVNUFF0blhEVjZRclI5c1JlTlZWejFYQWllYWdEUHoiLAogICAgICAiYWNjb3VudF9vd25lciI6IG51bGwsCiAgICAgICJhbW91bnQiOiA3Mi42OCwKICAgICAgImF1dGhvcml6ZWRfZGF0ZSI6ICIyMDI0LTAxLTI2IiwKICAgICAgImF1dGhvcml6ZWRfZGF0ZXRpbWUiOiBudWxsLAogICAgICAiY2F0ZWdvcnkiOiBbCiAgICAgICAgIlNlcnZpY2UiLAogICAgICAgICJGb29kIGFuZCBCZXZlcmFnZSIKICAgICAgXSwKICAgICAgImNhdGVnb3J5X2lkIjogIjE4MDIxMDAwIiwKICAgICAgImNoZWNrX251bWJlciI6IG51bGwsCiAgICAgICJjb3VudGVycGFydGllcyI6IFtdLAogICAgICAiZGF0ZSI6ICIyMDI0LTAxLTI3IiwKICAgICAgImRhdGV0aW1lIjogbnVsbCwKICAgICAgImlzb19jdXJyZW5jeV9jb2RlIjogIlVTRCIsCiAgICAgICJsb2NhdGlvbiI6IHsKICAgICAgICAiYWRkcmVzcyI6IG51bGwsCiAgICAgICAgImNpdHkiOiBudWxsLAogICAgICAgICJjb3VudHJ5IjogbnVsbCwKICAgICAgICAibGF0IjogbnVsbCwKICAgICAgICAibG9uIjogbnVsbCwKICAgICAgICAicG9zdGFsX2NvZGUiOiBudWxsLAogICAgICAgICJyZWdpb24iOiBudWxsLAogICAgICAgICJzdG9yZV9udW1iZXIiOiBudWxsCiAgICAgIH0sCiAgICAgICJsb2dvX3VybCI6IG51bGwsCiAgICAgICJtZXJjaGFudF9lbnRpdHlfaWQiOiBudWxsLAogICAgICAibWVyY2hhbnRfbmFtZSI6IG51bGwsCiAgICAgICJuYW1lIjogIkJJVEVTUVVBRCBERUxJVkVSWSIsCiAgICAgICJvcmlnaW5hbF9kZXNjcmlwdGlvbiI6ICJCSVRFU1FVQUQgREVMSVZFUlkiLAogICAgICAicGF5bWVudF9jaGFubmVsIjogIm9ubGluZSIsCiAgICAgICJwYXltZW50X21ldGEiOiB7CiAgICAgICAgImJ5X29yZGVyX29mIjogbnVsbCwKICAgICAgICAicGF5ZWUiOiBudWxsLAogICAgICAgICJwYXllciI6IG51bGwsCiAgICAgICAgInBheW1lbnRfbWV0aG9kIjogbnVsbCwKICAgICAgICAicGF5bWVudF9wcm9jZXNzb3IiOiBudWxsLAogICAgICAgICJwcGRfaWQiOiBudWxsLAogICAgICAgICJyZWFzb24iOiBudWxsLAogICAgICAgICJyZWZlcmVuY2VfbnVtYmVyIjogbnVsbAogICAgICB9LAogICAgICAicGVuZGluZyI6IGZhbHNlLAogICAgICAicGVuZGluZ190cmFuc2FjdGlvbl9pZCI6IG51bGwsCiAgICAgICJwZXJzb25hbF9maW5hbmNlX2NhdGVnb3J5IjogewogICAgICAgICJjb25maWRlbmNlX2xldmVsIjogIkxPVyIsCiAgICAgICAgImRldGFpbGVkIjogIkZPT0RfQU5EX0RSSU5LX1JFU1RBVVJBTlQiLAogICAgICAgICJwcmltYXJ5IjogIkZPT0RfQU5EX0RSSU5LIgogICAgICB9LAogICAgICAicGVyc29uYWxfZmluYW5jZV9jYXRlZ29yeV9pY29uX3VybCI6ICJodHRwczovL3BsYWlkLWNhdGVnb3J5LWljb25zLnBsYWlkLmNvbS9QRkNfRk9PRF9BTkRfRFJJTksucG5nIiwKICAgICAgInRyYW5zYWN0aW9uX2NvZGUiOiBudWxsLAogICAgICAidHJhbnNhY3Rpb25faWQiOiAidkVHbExQQUR4ZFQ3clZ2TUtveHBzYm96cTNOeGtHaXE2azFCOCIsCiAgICAgICJ0cmFuc2FjdGlvbl90eXBlIjogInBsYWNlIiwKICAgICAgInVub2ZmaWNpYWxfY3VycmVuY3lfY29kZSI6IG51bGwsCiAgICAgICJ3ZWJzaXRlIjogbnVsbAogICAgfSwKICAgIHsKICAgICAgImFjY291bnRfaWQiOiAiWnZsQkw1ZU1QUXRuWERWNlFyUjlzUmVOVlZ6MVhBaWVhZ0RQeiIsCiAgICAgICJhY2NvdW50X293bmVyIjogbnVsbCwKICAgICAgImFtb3VudCI6IDE5LjA3LAogICAgICAiYXV0aG9yaXplZF9kYXRlIjogIjIwMjQtMDEtMjciLAogICAgICAiYXV0aG9yaXplZF9kYXRldGltZSI6IG51bGwsCiAgICAgICJjYXRlZ29yeSI6IFsKICAgICAgICAiU2hvcHMiLAogICAgICAgICJTdXBlcm1hcmtldHMgYW5kIEdyb2NlcmllcyIKICAgICAgXSwKICAgICAgImNhdGVnb3J5X2lkIjogIjE5MDQ3MDAwIiwKICAgICAgImNoZWNrX251bWJlciI6IG51bGwsCiAgICAgICJjb3VudGVycGFydGllcyI6IFsKICAgICAgICB7CiAgICAgICAgICAiY29uZmlkZW5jZV9sZXZlbCI6ICJWRVJZX0hJR0giLAogICAgICAgICAgImVudGl0eV9pZCI6ICJXd2oybmtqMkV6NWI0bVZReldteThRMGE4WUEwTHdFYW9qZFpWIiwKICAgICAgICAgICJsb2dvX3VybCI6ICJodHRwczovL3BsYWlkLW1lcmNoYW50LWxvZ29zLnBsYWlkLmNvbS9hbGJlcnRzb25zXzM0LnBuZyIsCiAgICAgICAgICAibmFtZSI6ICJBbGJlcnRzb25zIiwKICAgICAgICAgICJwaG9uZV9udW1iZXIiOiBudWxsLAogICAgICAgICAgInR5cGUiOiAibWVyY2hhbnQiLAogICAgICAgICAgIndlYnNpdGUiOiAiYWxiZXJ0c29ucy5jb20iCiAgICAgICAgfQogICAgICBdLAogICAgICAiZGF0ZSI6ICIyMDI0LTAxLTI3IiwKICAgICAgImRhdGV0aW1lIjogbnVsbCwKICAgICAgImlzb19jdXJyZW5jeV9jb2RlIjogIlVTRCIsCiAgICAgICJsb2NhdGlvbiI6IHsKICAgICAgICAiYWRkcmVzcyI6IG51bGwsCiAgICAgICAgImNpdHkiOiBudWxsLAogICAgICAgICJjb3VudHJ5IjogbnVsbCwKICAgICAgICAibGF0IjogbnVsbCwKICAgICAgICAibG9uIjogbnVsbCwKICAgICAgICAicG9zdGFsX2NvZGUiOiBudWxsLAogICAgICAgICJyZWdpb24iOiBudWxsLAogICAgICAgICJzdG9yZV9udW1iZXIiOiBudWxsCiAgICAgIH0sCiAgICAgICJsb2dvX3VybCI6ICJodHRwczovL3BsYWlkLW1lcmNoYW50LWxvZ29zLnBsYWlkLmNvbS9hbGJlcnRzb25zXzM0LnBuZyIsCiAgICAgICJtZXJjaGFudF9lbnRpdHlfaWQiOiAiV3dqMm5rajJFejViNG1WUXpXbXk4UTBhOFlBMEx3RWFvamRaViIsCiAgICAgICJtZXJjaGFudF9uYW1lIjogIkFsYmVydHNvbnMiLAogICAgICAibmFtZSI6ICJBbGJlcnRzb25zIiwKICAgICAgIm9yaWdpbmFsX2Rlc2NyaXB0aW9uIjogIkFsYmVydHNvbnMiLAogICAgICAicGF5bWVudF9jaGFubmVsIjogImluIHN0b3JlIiwKICAgICAgInBheW1lbnRfbWV0YSI6IHsKICAgICAgICAiYnlfb3JkZXJfb2YiOiBudWxsLAogICAgICAgICJwYXllZSI6IG51bGwsCiAgICAgICAgInBheWVyIjogbnVsbCwKICAgICAgICAicGF5bWVudF9tZXRob2QiOiBudWxsLAogICAgICAgICJwYXltZW50X3Byb2Nlc3NvciI6IG51bGwsCiAgICAgICAgInBwZF9pZCI6IG51bGwsCiAgICAgICAgInJlYXNvbiI6IG51bGwsCiAgICAgICAgInJlZmVyZW5jZV9udW1iZXIiOiBudWxsCiAgICAgIH0sCiAgICAgICJwZW5kaW5nIjogZmFsc2UsCiAgICAgICJwZW5kaW5nX3RyYW5zYWN0aW9uX2lkIjogbnVsbCwKICAgICAgInBlcnNvbmFsX2ZpbmFuY2VfY2F0ZWdvcnkiOiB7CiAgICAgICAgImNvbmZpZGVuY2VfbGV2ZWwiOiAiVkVSWV9ISUdIIiwKICAgICAgICAiZGV0YWlsZWQiOiAiRk9PRF9BTkRfRFJJTktfR1JPQ0VSSUVTIiwKICAgICAgICAicHJpbWFyeSI6ICJGT09EX0FORF9EUklOSyIKICAgICAgfSwKICAgICAgInBlcnNvbmFsX2ZpbmFuY2VfY2F0ZWdvcnlfaWNvbl91cmwiOiAiaHR0cHM6Ly9wbGFpZC1jYXRlZ29yeS1pY29ucy5wbGFpZC5jb20vUEZDX0ZPT0RfQU5EX0RSSU5LLnBuZyIsCiAgICAgICJ0cmFuc2FjdGlvbl9jb2RlIjogbnVsbCwKICAgICAgInRyYW5zYWN0aW9uX2lkIjogIlJXbUdQNW9NemR0cmVSb2pkbTl6aTV3RXZtcU5WcEhhcGJBV0QiLAogICAgICAidHJhbnNhY3Rpb25fdHlwZSI6ICJwbGFjZSIsCiAgICAgICJ1bm9mZmljaWFsX2N1cnJlbmN5X2NvZGUiOiBudWxsLAogICAgICAid2Vic2l0ZSI6ICJhbGJlcnRzb25zLmNvbSIKICAgIH0sCiAgICB7CiAgICAgICJhY2NvdW50X2lkIjogIlp2bEJMNWVNUFF0blhEVjZRclI5c1JlTlZWejFYQWllYWdEUHoiLAogICAgICAiYWNjb3VudF9vd25lciI6IG51bGwsCiAgICAgICJhbW91bnQiOiAwLjc5LAogICAgICAiYXV0aG9yaXplZF9kYXRlIjogIjIwMjQtMDEtMjciLAogICAgICAiYXV0aG9yaXplZF9kYXRldGltZSI6IG51bGwsCiAgICAgICJjYXRlZ29yeSI6IFsKICAgICAgICAiU2VydmljZSIsCiAgICAgICAgIlNoaXBwaW5nIGFuZCBGcmVpZ2h0IgogICAgICBdLAogICAgICAiY2F0ZWdvcnlfaWQiOiAiMTgwNTgwMDAiLAogICAgICAiY2hlY2tfbnVtYmVyIjogbnVsbCwKICAgICAgImNvdW50ZXJwYXJ0aWVzIjogW10sCiAgICAgICJkYXRlIjogIjIwMjQtMDEtMjciLAogICAgICAiZGF0ZXRpbWUiOiBudWxsLAogICAgICAiaXNvX2N1cnJlbmN5X2NvZGUiOiAiVVNEIiwKICAgICAgImxvY2F0aW9uIjogewogICAgICAgICJhZGRyZXNzIjogbnVsbCwKICAgICAgICAiY2l0eSI6IG51bGwsCiAgICAgICAgImNvdW50cnkiOiBudWxsLAogICAgICAgICJsYXQiOiBudWxsLAogICAgICAgICJsb24iOiBudWxsLAogICAgICAgICJwb3N0YWxfY29kZSI6IG51bGwsCiAgICAgICAgInJlZ2lvbiI6IG51bGwsCiAgICAgICAgInN0b3JlX251bWJlciI6IG51bGwKICAgICAgfSwKICAgICAgImxvZ29fdXJsIjogbnVsbCwKICAgICAgIm1lcmNoYW50X2VudGl0eV9pZCI6IG51bGwsCiAgICAgICJtZXJjaGFudF9uYW1lIjogbnVsbCwKICAgICAgIm5hbWUiOiAiVVNQUy5DT00gTU9WRVInUyBHVUlERSIsCiAgICAgICJvcmlnaW5hbF9kZXNjcmlwdGlvbiI6ICJVU1BTLkNPTSBNT1ZFUidTIEdVSURFIiwKICAgICAgInBheW1lbnRfY2hhbm5lbCI6ICJvbmxpbmUiLAogICAgICAicGF5bWVudF9tZXRhIjogewogICAgICAgICJieV9vcmRlcl9vZiI6IG51bGwsCiAgICAgICAgInBheWVlIjogbnVsbCwKICAgICAgICAicGF5ZXIiOiBudWxsLAogICAgICAgICJwYXltZW50X21ldGhvZCI6IG51bGwsCiAgICAgICAgInBheW1lbnRfcHJvY2Vzc29yIjogbnVsbCwKICAgICAgICAicHBkX2lkIjogbnVsbCwKICAgICAgICAicmVhc29uIjogbnVsbCwKICAgICAgICAicmVmZXJlbmNlX251bWJlciI6IG51bGwKICAgICAgfSwKICAgICAgInBlbmRpbmciOiBmYWxzZSwKICAgICAgInBlbmRpbmdfdHJhbnNhY3Rpb25faWQiOiBudWxsLAogICAgICAicGVyc29uYWxfZmluYW5jZV9jYXRlZ29yeSI6IHsKICAgICAgICAiY29uZmlkZW5jZV9sZXZlbCI6ICJMT1ciLAogICAgICAgICJkZXRhaWxlZCI6ICJFTlRFUlRBSU5NRU5UX1NQT1JUSU5HX0VWRU5UU19BTVVTRU1FTlRfUEFSS1NfQU5EX01VU0VVTVMiLAogICAgICAgICJwcmltYXJ5IjogIkVOVEVSVEFJTk1FTlQiCiAgICAgIH0sCiAgICAgICJwZXJzb25hbF9maW5hbmNlX2NhdGVnb3J5X2ljb25fdXJsIjogImh0dHBzOi8vcGxhaWQtY2F0ZWdvcnktaWNvbnMucGxhaWQuY29tL1BGQ19FTlRFUlRBSU5NRU5ULnBuZyIsCiAgICAgICJ0cmFuc2FjdGlvbl9jb2RlIjogbnVsbCwKICAgICAgInRyYW5zYWN0aW9uX2lkIjogIjZScnZQOGQ2YVF0OFJkYUVBd1drRmJ5RDZsUldqTGk4RFhlcDQiLAogICAgICAidHJhbnNhY3Rpb25fdHlwZSI6ICJwbGFjZSIsCiAgICAgICJ1bm9mZmljaWFsX2N1cnJlbmN5X2NvZGUiOiBudWxsLAogICAgICAid2Vic2l0ZSI6IG51bGwKICAgIH0sCiAgICB7CiAgICAgICJhY2NvdW50X2lkIjogIlp2bEJMNWVNUFF0blhEVjZRclI5c1JlTlZWejFYQWllYWdEUHoiLAogICAgICAiYWNjb3VudF9vd25lciI6IG51bGwsCiAgICAgICJhbW91bnQiOiA2Mi43OCwKICAgICAgImF1dGhvcml6ZWRfZGF0ZSI6ICIyMDI0LTAxLTI3IiwKICAgICAgImF1dGhvcml6ZWRfZGF0ZXRpbWUiOiBudWxsLAogICAgICAiY2F0ZWdvcnkiOiBbCiAgICAgICAgIlNob3BzIiwKICAgICAgICAiQ2xvdGhpbmcgYW5kIEFjY2Vzc29yaWVzIgogICAgICBdLAogICAgICAiY2F0ZWdvcnlfaWQiOiAiMTkwMTIwMDAiLAogICAgICAiY2hlY2tfbnVtYmVyIjogbnVsbCwKICAgICAgImNvdW50ZXJwYXJ0aWVzIjogW10sCiAgICAgICJkYXRlIjogIjIwMjQtMDEtMjgiLAogICAgICAiZGF0ZXRpbWUiOiBudWxsLAogICAgICAiaXNvX2N1cnJlbmN5X2NvZGUiOiAiVVNEIiwKICAgICAgImxvY2F0aW9uIjogewogICAgICAgICJhZGRyZXNzIjogbnVsbCwKICAgICAgICAiY2l0eSI6IG51bGwsCiAgICAgICAgImNvdW50cnkiOiBudWxsLAogICAgICAgICJsYXQiOiBudWxsLAogICAgICAgICJsb24iOiBudWxsLAogICAgICAgICJwb3N0YWxfY29kZSI6IG51bGwsCiAgICAgICAgInJlZ2lvbiI6IG51bGwsCiAgICAgICAgInN0b3JlX251bWJlciI6IG51bGwKICAgICAgfSwKICAgICAgImxvZ29fdXJsIjogbnVsbCwKICAgICAgIm1lcmNoYW50X2VudGl0eV9pZCI6IG51bGwsCiAgICAgICJtZXJjaGFudF9uYW1lIjogbnVsbCwKICAgICAgIm5hbWUiOiAiVVJCQU5PVVRGSVRURVJTLkNPTSIsCiAgICAgICJvcmlnaW5hbF9kZXNjcmlwdGlvbiI6ICJVUkJBTk9VVEZJVFRFUlMuQ09NIiwKICAgICAgInBheW1lbnRfY2hhbm5lbCI6ICJvbmxpbmUiLAogICAgICAicGF5bWVudF9tZXRhIjogewogICAgICAgICJieV9vcmRlcl9vZiI6IG51bGwsCiAgICAgICAgInBheWVlIjogbnVsbCwKICAgICAgICAicGF5ZXIiOiBudWxsLAogICAgICAgICJwYXltZW50X21ldGhvZCI6IG51bGwsCiAgICAgICAgInBheW1lbnRfcHJvY2Vzc29yIjogbnVsbCwKICAgICAgICAicHBkX2lkIjogbnVsbCwKICAgICAgICAicmVhc29uIjogbnVsbCwKICAgICAgICAicmVmZXJlbmNlX251bWJlciI6IG51bGwKICAgICAgfSwKICAgICAgInBlbmRpbmciOiBmYWxzZSwKICAgICAgInBlbmRpbmdfdHJhbnNhY3Rpb25faWQiOiBudWxsLAogICAgICAicGVyc29uYWxfZmluYW5jZV9jYXRlZ29yeSI6IHsKICAgICAgICAiY29uZmlkZW5jZV9sZXZlbCI6ICJMT1ciLAogICAgICAgICJkZXRhaWxlZCI6ICJHRU5FUkFMX01FUkNIQU5ESVNFX09USEVSX0dFTkVSQUxfTUVSQ0hBTkRJU0UiLAogICAgICAgICJwcmltYXJ5IjogIkdFTkVSQUxfTUVSQ0hBTkRJU0UiCiAgICAgIH0sCiAgICAgICJwZXJzb25hbF9maW5hbmNlX2NhdGVnb3J5X2ljb25fdXJsIjogImh0dHBzOi8vcGxhaWQtY2F0ZWdvcnktaWNvbnMucGxhaWQuY29tL1BGQ19HRU5FUkFMX01FUkNIQU5ESVNFLnBuZyIsCiAgICAgICJ0cmFuc2FjdGlvbl9jb2RlIjogbnVsbCwKICAgICAgInRyYW5zYWN0aW9uX2lkIjogIlh5WHJNNUJHNDdmbVBwR0Q3Njk0VTZxUHlKWDhkZWNiS25MTjMiLAogICAgICAidHJhbnNhY3Rpb25fdHlwZSI6ICJwbGFjZSIsCiAgICAgICJ1bm9mZmljaWFsX2N1cnJlbmN5X2NvZGUiOiBudWxsLAogICAgICAid2Vic2l0ZSI6IG51bGwKICAgIH0KICBdLAogICJoYXNfbW9yZSI6IHRydWUsCiAgIm1vZGlmaWVkIjogW10sCiAgIm5leHRfY3Vyc29yIjogIkNBRVNKVmg1V0hKTk5VSkhORGRtYlZCd1IwUTNOamswVlRaeFVIbEtXRGhrWldOaVMyNU1Uak1pREFpYW42M0JCaENZdWFieEFpb01DSnFmcmNFR0VPamFrS0FEIiwKICAicmVtb3ZlZCI6IFtdLAogICJyZXF1ZXN0X2lkIjogImtobkVIR1VUclRrWjgyRSIsCiAgInRyYW5zYWN0aW9uc191cGRhdGVfc3RhdHVzIjogIkhJU1RPUklDQUxfVVBEQVRFX0NPTVBMRVRFIgp9 + recorded_at: Mon, 19 May 2025 15:34:59 GMT +- request: + method: post + uri: https://sandbox.plaid.com/transactions/sync + body: + encoding: UTF-8 + string: '{"access_token":"access-sandbox-d531d3c9-8520-43ca-9e58-5b70b79fd1d4","cursor":"CAESJVh5WHJNNUJHNDdmbVBwR0Q3Njk0VTZxUHlKWDhkZWNiS25MTjMiDAian63BBhCYuabxAioMCJqfrcEGEOjakKAD","count":100,"options":{"include_original_description":true}}' + headers: + Content-Type: + - application/json + User-Agent: + - Plaid Ruby v38.0.0 + Accept: + - application/json + Plaid-Client-Id: + - "" + Plaid-Version: + - '2020-09-14' + Plaid-Secret: + - "" + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + response: + status: + code: 200 + message: OK + headers: + Server: + - nginx + Date: + - Mon, 19 May 2025 15:35:00 GMT + Content-Type: + - application/json; charset=utf-8 + Transfer-Encoding: + - chunked + Connection: + - keep-alive + Plaid-Version: + - '2020-09-14' + Vary: + - Accept-Encoding + X-Envoy-Upstream-Service-Time: + - '431' + X-Envoy-Decorator-Operation: + - default.svc-apiv2:8080/* + Strict-Transport-Security: + - max-age=31536000; includeSubDomains; preload + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Xss-Protection: + - 1; mode=block + body: + encoding: ASCII-8BIT + string: |- + { + "accounts": [ + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "balances": { + "available": 11065.71, + "current": 1000, + "iso_currency_code": "USD", + "limit": 12200, + "unofficial_currency_code": null + }, + "holder_category": "personal", + "mask": "3053", + "name": "Test Credit Card Account", + "official_name": "Plaid credit card", + "subtype": "credit card", + "type": "credit" + } + ], + "added": [ + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 12567.42, + "authorized_date": "2024-01-28", + "authorized_datetime": null, + "category": [ + "Shops", + "Furniture and Home Decor" + ], + "category_id": "19027000", + "check_number": null, + "counterparties": [], + "date": "2024-01-28", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "ASHLEY HOMESTORE #...0123", + "original_description": "ASHLEY HOMESTORE #...0123", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "GENERAL_MERCHANDISE_OTHER_GENERAL_MERCHANDISE", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "DPZBW5VqgbFP764zbpqmSvjWJDPg3bt3WaJBB", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 6, + "authorized_date": "2024-01-28", + "authorized_datetime": null, + "category": [ + "Service", + "Internet Services" + ], + "category_id": "18031000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "LOW", + "entity_id": null, + "logo_url": null, + "name": "Wifi", + "phone_number": null, + "type": "merchant", + "website": null + } + ], + "date": "2024-01-28", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": "Wifi", + "name": "SWA INFLIGHT WIFI", + "original_description": "SWA INFLIGHT WIFI", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "GENERAL_MERCHANDISE_OTHER_GENERAL_MERCHANDISE", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "VbRqQ5rLdPcn6RqVP4QdsXJG18VQ3Et9gPEXe", + "transaction_type": "digital", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 4.73, + "authorized_date": "2024-01-28", + "authorized_datetime": null, + "category": [ + "Food and Drink" + ], + "category_id": "13000000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "LOW", + "entity_id": null, + "logo_url": null, + "name": "Food", + "phone_number": null, + "type": "merchant", + "website": null + } + ], + "date": "2024-01-30", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": "Food", + "name": "USA*USA*FIVE STAR FOOD", + "original_description": "USA*USA*FIVE STAR FOOD", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "FOOD_AND_DRINK_VENDING_MACHINES", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "wWnqpjJldatQbrvJydjETKPDB3J4E9cPZomxo", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 5.13, + "authorized_date": "2024-01-30", + "authorized_datetime": null, + "category": [ + "Shops", + "Supermarkets and Groceries" + ], + "category_id": "19047000", + "check_number": null, + "counterparties": [], + "date": "2024-01-30", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": "0123" + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "01 RANCH #0123", + "original_description": "01 RANCH #0123", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "GENERAL_MERCHANDISE_OTHER_GENERAL_MERCHANDISE", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "5vK5Ng6bdetkX4dDA6NbSqZK7QDoXMu5K78Ad", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 4.9, + "authorized_date": "2024-01-30", + "authorized_datetime": null, + "category": [ + "Shops", + "Department Stores" + ], + "category_id": "19018000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "rkVvOM8YNmWgqdB6yp2kvjQd1amE1dYbkpo58", + "logo_url": "https://plaid-merchant-logos.plaid.com/cost_plus_world_market_234.png", + "name": "Cost Plus World Market", + "phone_number": null, + "type": "merchant", + "website": "worldmarket.com" + } + ], + "date": "2024-01-30", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": "012" + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/cost_plus_world_market_234.png", + "merchant_entity_id": "rkVvOM8YNmWgqdB6yp2kvjQd1amE1dYbkpo58", + "merchant_name": "Cost Plus World Market", + "name": "Cost Plus", + "original_description": "COST PLUS WLD #012", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "HOME_IMPROVEMENT_FURNITURE", + "primary": "HOME_IMPROVEMENT" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_HOME_IMPROVEMENT.png", + "transaction_code": null, + "transaction_id": "JMgVz59xnlhM1pyKljkeUAXZgLJDw6IB6gkvk", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "worldmarket.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 7.85, + "authorized_date": "2024-01-30", + "authorized_datetime": null, + "category": [ + "Food and Drink", + "Restaurants" + ], + "category_id": "13005000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "p7ZR7bDEKb9Ngpq5OR4OeEqMkkp5YAbEbKw4e", + "logo_url": "https://plaid-merchant-logos.plaid.com/taco_cabana_991.png", + "name": "Taco Cabana", + "phone_number": null, + "type": "merchant", + "website": "tacocabana.com" + } + ], + "date": "2024-01-30", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/taco_cabana_991.png", + "merchant_entity_id": "p7ZR7bDEKb9Ngpq5OR4OeEqMkkp5YAbEbKw4e", + "merchant_name": "Taco Cabana", + "name": "Taco Cabana", + "original_description": "TACO CABANA 01234", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "FOOD_AND_DRINK_RESTAURANT", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "k7ZAaqkDn9IeLWvPMD3QTQmwjAae61sL6doe1", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "tacocabana.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 13.09, + "authorized_date": "2024-01-28", + "authorized_datetime": null, + "category": [ + "Travel", + "Car Service", + "Ride Share" + ], + "category_id": "22006001", + "check_number": null, + "counterparties": [], + "date": "2024-02-01", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "VIA", + "original_description": "VIA", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "GENERAL_MERCHANDISE_OTHER_GENERAL_MERCHANDISE", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "leMA4KdDbvT9Rj8aDw3ASlqwZmdvGDipodReB", + "transaction_type": "special", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 2.63, + "authorized_date": "2024-01-29", + "authorized_datetime": null, + "category": [ + "Shops", + "Food and Beverage Store" + ], + "category_id": "19025000", + "check_number": null, + "counterparties": [], + "date": "2024-02-01", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "Le Pain Quotidien", + "original_description": "LE PAIN QUOTIDIEN", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "GENERAL_MERCHANDISE_OTHER_GENERAL_MERCHANDISE", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "bBdylJgXLku1ryVNQ9XehxReg34KG7tmbZ71K", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 5.25, + "authorized_date": "2024-01-31", + "authorized_datetime": null, + "category": [ + "Service", + "Computers", + "Software Development" + ], + "category_id": "18012002", + "check_number": null, + "counterparties": [], + "date": "2024-02-01", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "GITHUB.COM", + "original_description": "GITHUB.COM", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "GENERAL_MERCHANDISE_OTHER_GENERAL_MERCHANDISE", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "mQ1ANkbDmRfb4yvJ6npMt6LmBj1NyEcgydXny", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 142.49, + "authorized_date": "2024-01-31", + "authorized_datetime": null, + "category": [ + "Shops" + ], + "category_id": "19000000", + "check_number": null, + "counterparties": [], + "date": "2024-02-01", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "WWW.GILT.COM", + "original_description": "WWW.GILT.COM", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "GENERAL_MERCHANDISE_OTHER_GENERAL_MERCHANDISE", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "yGmrge5K4NFpDQweBL4yuPM35rxdXZi46XwbR", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 46.83, + "authorized_date": "2024-01-28", + "authorized_datetime": null, + "category": [ + "Service", + "Automotive" + ], + "category_id": "18006000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "pY09wg98N7bZ0mJeZLRO4755bbn7OzeAOAvDY", + "logo_url": "https://plaid-merchant-logos.plaid.com/jiffy_lube_538.png", + "name": "Jiffy Lube", + "phone_number": null, + "type": "merchant", + "website": "jiffylube.com" + } + ], + "date": "2024-01-29", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": "109 N Main St", + "city": "Mauldin", + "country": null, + "lat": 34.779926, + "lon": -82.310928, + "postal_code": "29662", + "region": "SC", + "store_number": "0123" + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/jiffy_lube_538.png", + "merchant_entity_id": "pY09wg98N7bZ0mJeZLRO4755bbn7OzeAOAvDY", + "merchant_name": "Jiffy Lube", + "name": "Jiffy Lube", + "original_description": "JIFFY LUBE #0123", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "GENERAL_SERVICES_AUTOMOTIVE", + "primary": "GENERAL_SERVICES" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_SERVICES.png", + "transaction_code": null, + "transaction_id": "9q36eAK7P1iqGMPbA34yUAZV7NmLojI4xQgwp", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "jiffylube.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 7.5, + "authorized_date": "2024-01-29", + "authorized_datetime": null, + "category": [ + "Travel", + "Parking" + ], + "category_id": "22013000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "Aj7pLjAWWKKBmLzN1NNjaZjNppyjnoXw78qwz", + "logo_url": "https://plaid-merchant-logos.plaid.com/nyc_dot_parking_meters_692.png", + "name": "NYC DOT - Parking Meters", + "phone_number": null, + "type": "merchant", + "website": "nyc.gov/html/dot/html/motorist/meterpark.shtml" + } + ], + "date": "2024-01-29", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/nyc_dot_parking_meters_692.png", + "merchant_entity_id": "Aj7pLjAWWKKBmLzN1NNjaZjNppyjnoXw78qwz", + "merchant_name": "NYC DOT - Parking Meters", + "name": "NYCDOT PARKING METERS", + "original_description": "NYCDOT PARKING METERS", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "TRANSPORTATION_PARKING", + "primary": "TRANSPORTATION" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_TRANSPORTATION.png", + "transaction_code": null, + "transaction_id": "vEGlLPADxdT7rVvMKoxpsbozq3NxkGiq6k1BD", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "nyc.gov/html/dot/html/motorist/meterpark.shtml" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 120, + "authorized_date": "2024-01-29", + "authorized_datetime": null, + "category": [ + "Recreation", + "Gyms and Fitness Centers" + ], + "category_id": "17018000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "LOW", + "entity_id": null, + "logo_url": null, + "name": "Fitness", + "phone_number": null, + "type": "merchant", + "website": null + } + ], + "date": "2024-02-02", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": "Fitness", + "name": "LA Fitness", + "original_description": "LA FITNESS", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "PERSONAL_CARE_GYMS_AND_FITNESS_CENTERS", + "primary": "PERSONAL_CARE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_PERSONAL_CARE.png", + "transaction_code": null, + "transaction_id": "RWmGP5oMzdtreRojdm9zi5wEvmqNVpHapbAWv", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 196, + "authorized_date": "2024-01-30", + "authorized_datetime": null, + "category": [ + "Travel", + "Airlines and Aviation Services" + ], + "category_id": "22001000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "NKDjqyAdQQzpyeD8qpLnX0D6yvLe2KYKYYzQ4", + "logo_url": "https://plaid-merchant-logos.plaid.com/united_airlines_1065.png", + "name": "United Airlines", + "phone_number": null, + "type": "merchant", + "website": "united.com" + } + ], + "date": "2024-02-02", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": "TX", + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/united_airlines_1065.png", + "merchant_entity_id": "NKDjqyAdQQzpyeD8qpLnX0D6yvLe2KYKYYzQ4", + "merchant_name": "United Airlines", + "name": "UNITED 0123456789012345-012-0123", + "original_description": "UNITED 0123456789012345-012-0123 TX", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "HIGH", + "detailed": "TRAVEL_FLIGHTS", + "primary": "TRAVEL" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_TRAVEL.png", + "transaction_code": null, + "transaction_id": "6RrvP8d6aQt8RdaEAwWkFbyD6lRWjLi8DXepW", + "transaction_type": "special", + "unofficial_currency_code": null, + "website": "united.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 29.93, + "authorized_date": "2024-01-30", + "authorized_datetime": null, + "category": [ + "Shops", + "Clothing and Accessories" + ], + "category_id": "19012000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "Q9qOA3RZj15MaMybaApnJD5YVKmMZjgL3LkAz", + "logo_url": "https://plaid-merchant-logos.plaid.com/zara_1150.png", + "name": "Zara", + "phone_number": null, + "type": "merchant", + "website": "zara.com" + } + ], + "date": "2024-02-02", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/zara_1150.png", + "merchant_entity_id": "Q9qOA3RZj15MaMybaApnJD5YVKmMZjgL3LkAz", + "merchant_name": "Zara", + "name": "Zara", + "original_description": "ZARA USA 01234", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "GENERAL_MERCHANDISE_CLOTHING_AND_ACCESSORIES", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "XyXrM5BG47fmPpGD7694U6qPyJX8decbKnLNQ", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "zara.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 91.27, + "authorized_date": "2024-02-02", + "authorized_datetime": null, + "category": [ + "Service", + "Subscription" + ], + "category_id": "18061000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "rybeAOyg6ZE9z8LdD852ObK3kQ8RRaM0LyDrg", + "logo_url": "https://plaid-merchant-logos.plaid.com/siriusxm_906.png", + "name": "SiriusXM", + "phone_number": null, + "type": "merchant", + "website": "siriusxm.com" + } + ], + "date": "2024-02-02", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/siriusxm_906.png", + "merchant_entity_id": "rybeAOyg6ZE9z8LdD852ObK3kQ8RRaM0LyDrg", + "merchant_name": "SiriusXM", + "name": "SXM*SIRIUSXM.COM/ACCT", + "original_description": "SXM*SIRIUSXM.COM/ACCT", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "ENTERTAINMENT_MUSIC_AND_AUDIO", + "primary": "ENTERTAINMENT" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_ENTERTAINMENT.png", + "transaction_code": null, + "transaction_id": "DPZBW5VqgbFP764zbpqmSvjWJDPg3bt3WaJBo", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "siriusxm.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 7.81, + "authorized_date": "2024-01-30", + "authorized_datetime": null, + "category": [ + "Travel", + "Taxi" + ], + "category_id": "22016000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "eyg8o776k0QmNgVpAmaQj4WgzW9Qzo6O51gdd", + "logo_url": "https://plaid-merchant-logos.plaid.com/uber_1060.png", + "name": "Uber", + "phone_number": null, + "type": "merchant", + "website": "uber.com" + } + ], + "date": "2024-02-03", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": "CA", + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/uber_1060.png", + "merchant_entity_id": "eyg8o776k0QmNgVpAmaQj4WgzW9Qzo6O51gdd", + "merchant_name": "Uber", + "name": "Uber", + "original_description": "UBER TRIP HELP.UBER.COM CA", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "TRANSPORTATION_TAXIS_AND_RIDE_SHARES", + "primary": "TRANSPORTATION" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_TRANSPORTATION.png", + "transaction_code": null, + "transaction_id": "VbRqQ5rLdPcn6RqVP4QdsXJG18VQ3Et9gPEXm", + "transaction_type": "special", + "unofficial_currency_code": null, + "website": "uber.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 20.29, + "authorized_date": "2024-01-31", + "authorized_datetime": null, + "category": [ + "Service", + "Business Services" + ], + "category_id": "18008000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "DbQM2AYXm3rBVBq741yqeNbN4LOgqO973rWNZ", + "logo_url": "https://plaid-merchant-logos.plaid.com/experian_337.png", + "name": "Experian", + "phone_number": null, + "type": "merchant", + "website": "experian.com" + } + ], + "date": "2024-02-03", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/experian_337.png", + "merchant_entity_id": "DbQM2AYXm3rBVBq741yqeNbN4LOgqO973rWNZ", + "merchant_name": "Experian", + "name": "Experian", + "original_description": "Experian", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "GENERAL_SERVICES_ACCOUNTING_AND_FINANCIAL_PLANNING", + "primary": "GENERAL_SERVICES" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_SERVICES.png", + "transaction_code": null, + "transaction_id": "wWnqpjJldatQbrvJydjETKPDB3J4E9cPZomx9", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "experian.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 271.25, + "authorized_date": "2024-01-31", + "authorized_datetime": null, + "category": [ + "Travel", + "Rail" + ], + "category_id": "22015000", + "check_number": null, + "counterparties": [], + "date": "2024-02-03", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "Amtrak", + "original_description": "AMTRAK", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "ENTERTAINMENT_SPORTING_EVENTS_AMUSEMENT_PARKS_AND_MUSEUMS", + "primary": "ENTERTAINMENT" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_ENTERTAINMENT.png", + "transaction_code": null, + "transaction_id": "5vK5Ng6bdetkX4dDA6NbSqZK7QDoXMu5K78Al", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 2.72, + "authorized_date": "2024-02-02", + "authorized_datetime": null, + "category": [ + "Food and Drink", + "Restaurants", + "Coffee Shop" + ], + "category_id": "13005043", + "check_number": null, + "counterparties": [], + "date": "2024-02-03", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": "01234" + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "PEETS # 01234", + "original_description": "PEETS # 01234", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "GENERAL_MERCHANDISE_OTHER_GENERAL_MERCHANDISE", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "JMgVz59xnlhM1pyKljkeUAXZgLJDw6IB6gkvP", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 15, + "authorized_date": "2024-02-02", + "authorized_datetime": null, + "category": [ + "Travel", + "Public Transportation Services" + ], + "category_id": "22014000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "LOW", + "entity_id": null, + "logo_url": null, + "name": "Ventra Vending", + "phone_number": null, + "type": "merchant", + "website": null + } + ], + "date": "2024-02-03", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": "Ventra Vending", + "name": "VENTRA VENDING 01234", + "original_description": "VENTRA VENDING 01234", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "ENTERTAINMENT_SPORTING_EVENTS_AMUSEMENT_PARKS_AND_MUSEUMS", + "primary": "ENTERTAINMENT" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_ENTERTAINMENT.png", + "transaction_code": null, + "transaction_id": "k7ZAaqkDn9IeLWvPMD3QTQmwjAae61sL6doe3", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 143.4, + "authorized_date": "2024-02-02", + "authorized_datetime": null, + "category": [ + "Shops", + "Supermarkets and Groceries" + ], + "category_id": "19047000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "95bAk9jYLq644z7grLky2qaWpBNZ80Z0eOoJD", + "logo_url": "https://plaid-merchant-logos.plaid.com/publix_787.png", + "name": "Publix", + "phone_number": null, + "type": "merchant", + "website": "publix.com" + } + ], + "date": "2024-02-03", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/publix_787.png", + "merchant_entity_id": "95bAk9jYLq644z7grLky2qaWpBNZ80Z0eOoJD", + "merchant_name": "Publix", + "name": "Publix", + "original_description": "Publix", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "FOOD_AND_DRINK_GROCERIES", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "leMA4KdDbvT9Rj8aDw3ASlqwZmdvGDipodRez", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "publix.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 9.29, + "authorized_date": "2024-02-02", + "authorized_datetime": null, + "category": [ + "Food and Drink", + "Restaurants" + ], + "category_id": "13005000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "5m8NA1RJ892w69jVQ150JrXqyLVJnJ93dVEgg", + "logo_url": "https://plaid-merchant-logos.plaid.com/waffle_house_1097.png", + "name": "Waffle House", + "phone_number": null, + "type": "merchant", + "website": "wafflehouse.com" + } + ], + "date": "2024-02-03", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/waffle_house_1097.png", + "merchant_entity_id": "5m8NA1RJ892w69jVQ150JrXqyLVJnJ93dVEgg", + "merchant_name": "Waffle House", + "name": "Waffle House", + "original_description": "Waffle House", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "FOOD_AND_DRINK_RESTAURANT", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "qLgAex9DKrfNjEv5oDMaFebVapMmWGhgr7R18", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "wafflehouse.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 88.5, + "authorized_date": "2024-01-30", + "authorized_datetime": null, + "category": [ + "Recreation", + "Gyms and Fitness Centers" + ], + "category_id": "17018000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "Q9O00aLQbjp2ZVJkZnmywoaXk7Xp88eWMnwep", + "logo_url": "https://plaid-merchant-logos.plaid.com/ymca_1143.png", + "name": "YMCA", + "phone_number": null, + "type": "merchant", + "website": "ymca.org" + } + ], + "date": "2024-01-31", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/ymca_1143.png", + "merchant_entity_id": "Q9O00aLQbjp2ZVJkZnmywoaXk7Xp88eWMnwep", + "merchant_name": "YMCA", + "name": "YMCA", + "original_description": "YMCA", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "GOVERNMENT_AND_NON_PROFIT_DONATIONS", + "primary": "GOVERNMENT_AND_NON_PROFIT" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GOVERNMENT_AND_NON_PROFIT.png", + "transaction_code": null, + "transaction_id": "K18PB5Zdbqh17BVgqbRQhyoaA5z1deiRpA1a6", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "ymca.org" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 3.73, + "authorized_date": "2024-01-31", + "authorized_datetime": null, + "category": [ + "Shops", + "Digital Purchase" + ], + "category_id": "19019000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "2gOwmq9qK56K60oDm3eLrREV2B2mVadkRn8MW", + "logo_url": "https://plaid-merchant-logos.plaid.com/amazon_44.png", + "name": "Amazon", + "phone_number": null, + "type": "merchant", + "website": "amazon.com" + } + ], + "date": "2024-01-31", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/amazon_44.png", + "merchant_entity_id": "2gOwmq9qK56K60oDm3eLrREV2B2mVadkRn8MW", + "merchant_name": "Amazon", + "name": "Amazon Payments #...0123", + "original_description": "Amazon Payments #...0123", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "GENERAL_MERCHANDISE_ONLINE_MARKETPLACES", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "rp8wQd9Drzc7XxVRZbBNsbxP5JMjG9i7J61Vl", + "transaction_type": "digital", + "unofficial_currency_code": null, + "website": "amazon.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 3.25, + "authorized_date": "2024-01-31", + "authorized_datetime": null, + "category": [ + "Shops", + "Sporting Goods" + ], + "category_id": "19046000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "55wYnwd7ZoZX0B1k2kyq7yEbyy0LzDVYZ6JRO", + "logo_url": "https://plaid-merchant-logos.plaid.com/dicks_sporting_goods_276.png", + "name": "Dick's Sporting Goods", + "phone_number": null, + "type": "merchant", + "website": "dickssportinggoods.com" + } + ], + "date": "2024-01-31", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/dicks_sporting_goods_276.png", + "merchant_entity_id": "55wYnwd7ZoZX0B1k2kyq7yEbyy0LzDVYZ6JRO", + "merchant_name": "Dick's Sporting Goods", + "name": "DICK'S Sporting Goods", + "original_description": "DICK'S SPORTING GOODS", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "HIGH", + "detailed": "GENERAL_MERCHANDISE_SPORTING_GOODS", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "zkyz8Q9rNPCXgWQeyj9pIeqPWlmJpdhlNLQ1l", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "dickssportinggoods.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 5.23, + "authorized_date": "2024-01-31", + "authorized_datetime": null, + "category": [ + "Shops", + "Music, Video and DVD" + ], + "category_id": "19036000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "z3XzRe488pMdo7NAnL44L7rv9L550berky6mK", + "logo_url": "https://plaid-merchant-logos.plaid.com/apple_itunes_1434.png", + "name": "Apple iTunes", + "phone_number": null, + "type": "merchant", + "website": "apple.com/itunes" + } + ], + "date": "2024-01-31", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/apple_itunes_1434.png", + "merchant_entity_id": "z3XzRe488pMdo7NAnL44L7rv9L550berky6mK", + "merchant_name": "Apple iTunes", + "name": "iTunes", + "original_description": "APL*ITUNES.COM/BILL #...0123", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": "Apple", + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "ENTERTAINMENT_MUSIC_AND_AUDIO", + "primary": "ENTERTAINMENT" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_ENTERTAINMENT.png", + "transaction_code": null, + "transaction_id": "B4ek869ZpGC41mDnjvVxuBdXVLjPRxC4M8gNz", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "apple.com/itunes" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 24.41, + "authorized_date": "2024-01-31", + "authorized_datetime": null, + "category": [ + "Shops", + "Clothing and Accessories" + ], + "category_id": "19012000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "wY2K5ovrKVkJOaWaQbRW3Z2Lo2kZ1vV2YNLO6", + "logo_url": "https://plaid-merchant-logos.plaid.com/tj_maxx_1026.png", + "name": "TJ Maxx", + "phone_number": null, + "type": "merchant", + "website": "tjmaxx.com" + } + ], + "date": "2024-01-31", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/tj_maxx_1026.png", + "merchant_entity_id": "wY2K5ovrKVkJOaWaQbRW3Z2Lo2kZ1vV2YNLO6", + "merchant_name": "TJ Maxx", + "name": "T.J.Maxx", + "original_description": "T.J.Maxx", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "GENERAL_MERCHANDISE_DEPARTMENT_STORES", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "3ylJapdb3jf8nK3A1z7JF3jlmQa5LBhZlnEeM", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "tjmaxx.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 10.96, + "authorized_date": "2024-01-30", + "authorized_datetime": null, + "category": [ + "Shops", + "Gift and Novelty" + ], + "category_id": "19028000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "mmE58q4wERnrkdba0Lj6771vRMNeo575pmOqJ", + "logo_url": "https://plaid-merchant-logos.plaid.com/qvc_801.png", + "name": "QVC", + "phone_number": null, + "type": "merchant", + "website": "qvc.com" + } + ], + "date": "2024-02-04", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": "PA", + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/qvc_801.png", + "merchant_entity_id": "mmE58q4wERnrkdba0Lj6771vRMNeo575pmOqJ", + "merchant_name": "QVC", + "name": "QVC012345678901234OF*", + "original_description": "QVC012345678901234OF* 012-012-0123 PA", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "HIGH", + "detailed": "PERSONAL_CARE_HAIR_AND_BEAUTY", + "primary": "PERSONAL_CARE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_PERSONAL_CARE.png", + "transaction_code": null, + "transaction_id": "xAbKo75qa4um5aZ8zndpUMd7gW5wbxU64VeRA", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "qvc.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 17.59, + "authorized_date": "2024-01-31", + "authorized_datetime": null, + "category": [ + "Travel", + "Gas Stations" + ], + "category_id": "22009000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "pBowAoZJMM9DKR37jvNmzM4yWBBXyMzV2rM3A", + "logo_url": "https://plaid-merchant-logos.plaid.com/costco_235.png", + "name": "Costco", + "phone_number": null, + "type": "merchant", + "website": "costco.com" + } + ], + "date": "2024-02-04", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/costco_235.png", + "merchant_entity_id": "pBowAoZJMM9DKR37jvNmzM4yWBBXyMzV2rM3A", + "merchant_name": "Costco", + "name": "Costco Gas", + "original_description": "Costco Gas", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "TRANSPORTATION_GAS", + "primary": "TRANSPORTATION" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_TRANSPORTATION.png", + "transaction_code": null, + "transaction_id": "dx4ZK58XoWCvbXVZlNgaC9Rl5wkLExCJEQRxG", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "costco.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 6.51, + "authorized_date": "2024-02-02", + "authorized_datetime": null, + "category": [ + "Shops", + "Supermarkets and Groceries" + ], + "category_id": "19047000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "VAKjJ7D3QY8RQO5aRo5jkW17yzjKXEQBE4jdk", + "logo_url": "https://plaid-merchant-logos.plaid.com/key_food_stores_545.png", + "name": "Key Food Stores", + "phone_number": null, + "type": "merchant", + "website": "keyfooddeals.com" + } + ], + "date": "2024-02-04", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/key_food_stores_545.png", + "merchant_entity_id": "VAKjJ7D3QY8RQO5aRo5jkW17yzjKXEQBE4jdk", + "merchant_name": "Key Food Stores", + "name": "Key Food Stores Co-op, Inc.", + "original_description": "KEY FOOD 0123", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "FOOD_AND_DRINK_GROCERIES", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "azx7A59X1gc5orV6dPw3soqAjJ3zZysZ5QDxo", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "keyfooddeals.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 5.99, + "authorized_date": "2024-02-02", + "authorized_datetime": null, + "category": [ + "Service" + ], + "category_id": "18000000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "5B10W0429bM0nAE0XNWD3nOqo9KvRMo2mBVXD", + "logo_url": "https://plaid-merchant-logos.plaid.com/godaddy_438.png", + "name": "GoDaddy", + "phone_number": null, + "type": "merchant", + "website": "godaddy.com" + } + ], + "date": "2024-02-04", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/godaddy_438.png", + "merchant_entity_id": "5B10W0429bM0nAE0XNWD3nOqo9KvRMo2mBVXD", + "merchant_name": "GoDaddy", + "name": "DNH*GODADDY.COM", + "original_description": "DNH*GODADDY.COM", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "GENERAL_SERVICES_OTHER_GENERAL_SERVICES", + "primary": "GENERAL_SERVICES" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_SERVICES.png", + "transaction_code": null, + "transaction_id": "49qZ4oGbx7T873XDoebnFmlbdW4eDaFJbALwm", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "godaddy.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 88.17, + "authorized_date": "2024-01-31", + "authorized_datetime": null, + "category": [ + "Service", + "Food and Beverage" + ], + "category_id": "18021000", + "check_number": null, + "counterparties": [], + "date": "2024-02-05", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "MEALPAL", + "original_description": "MEALPAL", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "GENERAL_MERCHANDISE_OTHER_GENERAL_MERCHANDISE", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "NokPd5gNlzfoV1byzGkls7JMP5G3Q9sy65Qqa", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 15.75, + "authorized_date": "2024-02-02", + "authorized_datetime": null, + "category": [ + "Travel", + "Public Transportation Services" + ], + "category_id": "22014000", + "check_number": null, + "counterparties": [], + "date": "2024-02-05", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "MTA*PATH SMARTCARD/SRT", + "original_description": "MTA*PATH SMARTCARD/SRT", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "TRANSPORTATION_PUBLIC_TRANSIT", + "primary": "TRANSPORTATION" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_TRANSPORTATION.png", + "transaction_code": null, + "transaction_id": "P8n745oWK3cnXKyW31x9slDB75xZEeio6WArV", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 27, + "authorized_date": "2024-02-02", + "authorized_datetime": null, + "category": [ + "Recreation", + "Arts and Entertainment" + ], + "category_id": "17001000", + "check_number": null, + "counterparties": [], + "date": "2024-02-05", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "THE UNDERGROUND", + "original_description": "THE UNDERGROUND", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "GENERAL_MERCHANDISE_OTHER_GENERAL_MERCHANDISE", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "jjQ7dlP5GyCbNavw7rzpty4MQmk9opi6WLa8b", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 76.49, + "authorized_date": "2024-02-04", + "authorized_datetime": null, + "category": [ + "Travel", + "Airlines and Aviation Services" + ], + "category_id": "22001000", + "check_number": null, + "counterparties": [], + "date": "2024-02-07", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "JetBlue", + "original_description": "JETBLUE 0123456789012", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "ENTERTAINMENT_SPORTING_EVENTS_AMUSEMENT_PARKS_AND_MUSEUMS", + "primary": "ENTERTAINMENT" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_ENTERTAINMENT.png", + "transaction_code": null, + "transaction_id": "76zXjElb4Zt8RL4DAzM9F9Zwj8GW6DCdJnxKA", + "transaction_type": "special", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 3.19, + "authorized_date": "2024-02-06", + "authorized_datetime": null, + "category": [ + "Food and Drink", + "Restaurants", + "Fast Food" + ], + "category_id": "13005032", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "1YZ03w08myRAQ0mRgMvD2EBoOb92RmBXN6nmK", + "logo_url": "https://plaid-merchant-logos.plaid.com/wendys_1114.png", + "name": "Wendy's", + "phone_number": null, + "type": "merchant", + "website": "wendys.com" + } + ], + "date": "2024-02-07", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/wendys_1114.png", + "merchant_entity_id": "1YZ03w08myRAQ0mRgMvD2EBoOb92RmBXN6nmK", + "merchant_name": "Wendy's", + "name": "Wendy's", + "original_description": "WENDY'S 0123", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "FOOD_AND_DRINK_FAST_FOOD", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "edNwr51XgAcoARVZP68vsdRGzqom9Bur95mlq", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "wendys.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 102.9, + "authorized_date": "2024-02-07", + "authorized_datetime": null, + "category": [ + "Food and Drink", + "Restaurants" + ], + "category_id": "13005000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "RYJLRvgg1BEX5DYQvBg89zdAevEZ4kJaYoQ69", + "logo_url": "https://plaid-merchant-logos.plaid.com/texas_roadhouse_1004.png", + "name": "Texas Roadhouse", + "phone_number": null, + "type": "merchant", + "website": "texasroadhouse.com" + } + ], + "date": "2024-02-07", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/texas_roadhouse_1004.png", + "merchant_entity_id": "RYJLRvgg1BEX5DYQvBg89zdAevEZ4kJaYoQ69", + "merchant_name": "Texas Roadhouse", + "name": "Texas Roadhouse", + "original_description": "Texas Roadhouse", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "FOOD_AND_DRINK_RESTAURANT", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "QEbZN5mMrxTnJ4XRxba9s9paZDyVQGCwm7DWq", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "texasroadhouse.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 5.96, + "authorized_date": "2024-02-07", + "authorized_datetime": null, + "category": [ + "Recreation", + "Arts and Entertainment" + ], + "category_id": "17001000", + "check_number": null, + "counterparties": [], + "date": "2024-02-07", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "Fandango", + "original_description": "Fandango", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "ENTERTAINMENT_TV_AND_MOVIES", + "primary": "ENTERTAINMENT" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_ENTERTAINMENT.png", + "transaction_code": null, + "transaction_id": "ZvlBL5eMPQtnXDV6QrR9sRex8pZayMceqXGDZ", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 18.74, + "authorized_date": "2024-02-07", + "authorized_datetime": null, + "category": [ + "Service", + "Security and Safety" + ], + "category_id": "18057000", + "check_number": null, + "counterparties": [], + "date": "2024-02-07", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "SIMPLISAFE.COM", + "original_description": "SIMPLISAFE.COM", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "HOME_IMPROVEMENT_SECURITY", + "primary": "HOME_IMPROVEMENT" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_HOME_IMPROVEMENT.png", + "transaction_code": null, + "transaction_id": "MpWPx5o4yrcpZvwQrdbMuwXJg8Eze3fL6P18n", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 62.88, + "authorized_date": "2024-02-07", + "authorized_datetime": null, + "category": [ + "Shops", + "Digital Purchase" + ], + "category_id": "19019000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "2gOwmq9qK56K60oDm3eLrREV2B2mVadkRn8MW", + "logo_url": "https://plaid-merchant-logos.plaid.com/amazon_44.png", + "name": "Amazon", + "phone_number": null, + "type": "merchant", + "website": "amazon.com" + } + ], + "date": "2024-02-07", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/amazon_44.png", + "merchant_entity_id": "2gOwmq9qK56K60oDm3eLrREV2B2mVadkRn8MW", + "merchant_name": "Amazon", + "name": "Amazon", + "original_description": "AMZN MKTP US AMZN.COM/", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "GENERAL_MERCHANDISE_ONLINE_MARKETPLACES", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "1bXWx1mVzNcQvyzEo34JTXVmegwx94tpjerlM", + "transaction_type": "digital", + "unofficial_currency_code": null, + "website": "amazon.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 166.67, + "authorized_date": "2024-02-06", + "authorized_datetime": null, + "category": [ + "Shops", + "Clothing and Accessories" + ], + "category_id": "19012000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "XQoyQVaj3z9a6002Z0wBDybQr02k8EagaqNqw", + "logo_url": "https://plaid-merchant-logos.plaid.com/levis_1576.png", + "name": "Levi's", + "phone_number": null, + "type": "merchant", + "website": "levi.com" + } + ], + "date": "2024-02-06", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": "012" + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/levis_1576.png", + "merchant_entity_id": "XQoyQVaj3z9a6002Z0wBDybQr02k8EagaqNqw", + "merchant_name": "Levi's", + "name": "LEVI'S #012", + "original_description": "LEVI'S #012", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "GENERAL_MERCHANDISE_CLOTHING_AND_ACCESSORIES", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "LLEP35oamKfLwWGzKa8mCk6Apgx1W7ukjpEG1", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "levi.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 44.25, + "authorized_date": "2024-02-06", + "authorized_datetime": null, + "category": [ + "Shops", + "Digital Purchase" + ], + "category_id": "19019000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "dqvQMVay4MVNzrVp0OaZ2qKeYN5mEb1eoV6Mp", + "logo_url": "https://plaid-merchant-logos.plaid.com/groupon_459.png", + "name": "Groupon", + "phone_number": null, + "type": "merchant", + "website": "groupon.com" + } + ], + "date": "2024-02-06", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/groupon_459.png", + "merchant_entity_id": "dqvQMVay4MVNzrVp0OaZ2qKeYN5mEb1eoV6Mp", + "merchant_name": "Groupon", + "name": "Groupon", + "original_description": "Groupon", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "GENERAL_MERCHANDISE_OTHER_GENERAL_MERCHANDISE", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "p1oA739DqKhR4y8Xk1ZWcxJrdLn6oGtpoVz3a", + "transaction_type": "digital", + "unofficial_currency_code": null, + "website": "groupon.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 7.32, + "authorized_date": "2024-02-06", + "authorized_datetime": null, + "category": [ + "Service", + "Entertainment" + ], + "category_id": "18018000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "O4L6j76bqmBv8vN2W2mdnmVYd7R30gDyvRdBy", + "logo_url": "https://plaid-merchant-logos.plaid.com/amazon_prime_video_47.png", + "name": "Amazon Prime Video", + "phone_number": null, + "type": "merchant", + "website": "primevideo.com" + } + ], + "date": "2024-02-06", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/amazon_prime_video_47.png", + "merchant_entity_id": "O4L6j76bqmBv8vN2W2mdnmVYd7R30gDyvRdBy", + "merchant_name": "Amazon Prime Video", + "name": "Prime Video*MW*KQ*JI*", + "original_description": "Prime Video*MW*KQ*JI*", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "ENTERTAINMENT_TV_AND_MOVIES", + "primary": "ENTERTAINMENT" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_ENTERTAINMENT.png", + "transaction_code": null, + "transaction_id": "oMpyjB9Dlqhb4v8gkyn6tbzMpZy5G3ioq7b8z", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "primevideo.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 8.31, + "authorized_date": "2024-02-06", + "authorized_datetime": null, + "category": [ + "Food and Drink", + "Restaurants", + "Fast Food" + ], + "category_id": "13005032", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "NXAJN1bDAZYjpDKY7Wr5JjzVmV7nnVY171jze", + "logo_url": "https://plaid-merchant-logos.plaid.com/shake_shack_887.png", + "name": "Shake Shack", + "phone_number": null, + "type": "merchant", + "website": "shakeshack.com" + } + ], + "date": "2024-02-06", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/shake_shack_887.png", + "merchant_entity_id": "NXAJN1bDAZYjpDKY7Wr5JjzVmV7nnVY171jze", + "merchant_name": "Shake Shack", + "name": "Shake Shack", + "original_description": "Shake Shack", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "FOOD_AND_DRINK_FAST_FOOD", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "g4j7B5kXEnCwdLV7NzQPHV59dRBP8WcE8n5qQ", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "shakeshack.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 25.59, + "authorized_date": "2024-02-06", + "authorized_datetime": null, + "category": [ + "Food and Drink", + "Restaurants", + "Fast Food" + ], + "category_id": "13005032", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "1YZ03w08myRAQ0mRgMvD2EBoOb92RmBXN6nmK", + "logo_url": "https://plaid-merchant-logos.plaid.com/wendys_1114.png", + "name": "Wendy's", + "phone_number": null, + "type": "merchant", + "website": "wendys.com" + } + ], + "date": "2024-02-06", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/wendys_1114.png", + "merchant_entity_id": "1YZ03w08myRAQ0mRgMvD2EBoOb92RmBXN6nmK", + "merchant_name": "Wendy's", + "name": "Wendy's", + "original_description": "WENDY'S", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "FOOD_AND_DRINK_FAST_FOOD", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "8lBZ7kqmNMflM6N1rBb8udzkGwyA5MuW3L8jj", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "wendys.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 35, + "authorized_date": "2024-02-06", + "authorized_datetime": null, + "category": [ + "Service" + ], + "category_id": "18000000", + "check_number": null, + "counterparties": [], + "date": "2024-02-09", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "LIMEBIKE", + "original_description": "LIMEBIKE", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "GENERAL_MERCHANDISE_SPORTING_GOODS", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "EjM3A5vK8mCjLea1GE3mCyom95Prvki4xkmJk", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 2925, + "authorized_date": "2024-02-06", + "authorized_datetime": null, + "category": [ + "Shops", + "Furniture and Home Decor" + ], + "category_id": "19027000", + "check_number": null, + "counterparties": [], + "date": "2024-02-09", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "ASHLEY HOMESTORE 01 #...0123", + "original_description": "ASHLEY HOMESTORE 01 #...0123", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "GENERAL_MERCHANDISE_OTHER_GENERAL_MERCHANDISE", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "Wm6kZ5zMajudb4XV6nyafB8VgNb3znC6Z1jKE", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 7, + "authorized_date": "2024-02-09", + "authorized_datetime": null, + "category": [ + "Shops", + "Newsstands" + ], + "category_id": "19038000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "ZX8bMY836ORQkewvEwZnjZZv06MrAQwy6jLVV", + "logo_url": "https://plaid-merchant-logos.plaid.com/wall_street_journal_1480.png", + "name": "Wall Street Journal", + "phone_number": null, + "type": "merchant", + "website": "wsj.com" + } + ], + "date": "2024-02-09", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/wall_street_journal_1480.png", + "merchant_entity_id": "ZX8bMY836ORQkewvEwZnjZZv06MrAQwy6jLVV", + "merchant_name": "Wall Street Journal", + "name": "D J*WALL-ST-JOURNAL", + "original_description": "D J*WALL-ST-JOURNAL", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "GENERAL_MERCHANDISE_BOOKSTORES_AND_NEWSSTANDS", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "Aa7KgRpVLAhamWlkAvD3s8Dl5KZ7brF9rA5E5", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "wsj.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 18.31, + "authorized_date": "2024-02-06", + "authorized_datetime": null, + "category": [ + "Food and Drink", + "Restaurants" + ], + "category_id": "13005000", + "check_number": null, + "counterparties": [], + "date": "2024-02-10", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "MOE'S 012", + "original_description": "MOE'S 012", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "FOOD_AND_DRINK_GROCERIES", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "GeLdq5ozW9Te8Jd4MGvPT84MZDwPW7F6MPoy7", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 134.73, + "authorized_date": "2024-02-07", + "authorized_datetime": null, + "category": [ + "Shops", + "Computers and Electronics" + ], + "category_id": "19013000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "wQn4M4dwnYzpK156NqjykAN4DJ0KbrEOLZZ8W", + "logo_url": "https://plaid-merchant-logos.plaid.com/microsoft_635.png", + "name": "Microsoft", + "phone_number": null, + "type": "merchant", + "website": "microsoft.com" + } + ], + "date": "2024-02-11", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": "WA", + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/microsoft_635.png", + "merchant_entity_id": "wQn4M4dwnYzpK156NqjykAN4DJ0KbrEOLZZ8W", + "merchant_name": "Microsoft", + "name": "MICROSOFT *OFFICE 012 MSBILL.INFO", + "original_description": "MICROSOFT *OFFICE 012 MSBILL.INFO WA", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "GENERAL_MERCHANDISE_ELECTRONICS", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "nZLAPzwDylibQdva8jeDtG1eMJoEWbtAlWQw9", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "microsoft.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 19.32, + "authorized_date": "2024-02-07", + "authorized_datetime": null, + "category": [ + "Shops", + "Pharmacies" + ], + "category_id": "19043000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "XE0b15bEno6BJ1nBbaaXekBOXLeJr46q8EaKR", + "logo_url": "https://plaid-merchant-logos.plaid.com/duane_reade_303.png", + "name": "Duane Reade", + "phone_number": null, + "type": "merchant", + "website": "walgreens.com/topic/duane-reade/duane-reade.jsp" + } + ], + "date": "2024-02-11", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/duane_reade_303.png", + "merchant_entity_id": "XE0b15bEno6BJ1nBbaaXekBOXLeJr46q8EaKR", + "merchant_name": "Duane Reade", + "name": "Duane Reade", + "original_description": "Duane Reade", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "MEDICAL_PHARMACIES_AND_SUPPLEMENTS", + "primary": "MEDICAL" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_MEDICAL.png", + "transaction_code": null, + "transaction_id": "bBdylJgXLku1ryVNQ9XehxReg34KG7tmbZ7QK", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "walgreens.com/topic/duane-reade/duane-reade.jsp" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 27.93, + "authorized_date": "2024-02-10", + "authorized_datetime": null, + "category": [ + "Food and Drink", + "Restaurants", + "Fast Food" + ], + "category_id": "13005032", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "NXAJN1bDAZYjpDKY7Wr5JjzVmV7nnVY171jze", + "logo_url": "https://plaid-merchant-logos.plaid.com/shake_shack_887.png", + "name": "Shake Shack", + "phone_number": null, + "type": "merchant", + "website": "shakeshack.com" + } + ], + "date": "2024-02-11", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/shake_shack_887.png", + "merchant_entity_id": "NXAJN1bDAZYjpDKY7Wr5JjzVmV7nnVY171jze", + "merchant_name": "Shake Shack", + "name": "Shake Shack", + "original_description": "SHAKE SHACK 0123", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "FOOD_AND_DRINK_FAST_FOOD", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "mQ1ANkbDmRfb4yvJ6npMt6LmBj1NyEcgydXzy", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "shakeshack.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 16.49, + "authorized_date": "2024-02-11", + "authorized_datetime": null, + "category": [ + "Service" + ], + "category_id": "18000000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "zwkjrQbbDQqZJRk3egOAo0XB7jnygNDJk9Vjz", + "logo_url": "https://plaid-counterparty-logos.plaid.com/paypal_76.png", + "name": "PayPal", + "phone_number": null, + "type": "payment_app", + "website": "paypal.com" + } + ], + "date": "2024-02-11", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "SQUARETRADE", + "original_description": "PAYPAL *SQUARETRADE", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": "PayPal", + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "GENERAL_MERCHANDISE_OTHER_GENERAL_MERCHANDISE", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "yGmrge5K4NFpDQweBL4yuPM35rxdXZi46XweR", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 129.53, + "authorized_date": "2024-02-07", + "authorized_datetime": null, + "category": [ + "Shops", + "Clothing and Accessories" + ], + "category_id": "19012000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "wY2K5ovrKVkJOaWaQbRW3Z2Lo2kZ1vV2YNLO6", + "logo_url": "https://plaid-merchant-logos.plaid.com/tj_maxx_1026.png", + "name": "TJ Maxx", + "phone_number": null, + "type": "merchant", + "website": "tjmaxx.com" + } + ], + "date": "2024-02-08", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/tj_maxx_1026.png", + "merchant_entity_id": "wY2K5ovrKVkJOaWaQbRW3Z2Lo2kZ1vV2YNLO6", + "merchant_name": "TJ Maxx", + "name": "T.J.Maxx", + "original_description": "T.J.Maxx", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "GENERAL_MERCHANDISE_DEPARTMENT_STORES", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "9q36eAK7P1iqGMPbA34yUAZV7NmLojI4xQgap", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "tjmaxx.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 78.26, + "authorized_date": "2024-02-07", + "authorized_datetime": null, + "category": [ + "Travel", + "Car and Truck Rentals" + ], + "category_id": "22005000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": null, + "logo_url": null, + "name": "RENTALCARS.COM", + "phone_number": null, + "type": "merchant", + "website": null + } + ], + "date": "2024-02-08", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": "RENTALCARS.COM", + "name": "PLN*RENTALCARS.COM", + "original_description": "PLN*RENTALCARS.COM", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "TRAVEL_RENTAL_CARS", + "primary": "TRAVEL" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_TRAVEL.png", + "transaction_code": null, + "transaction_id": "vEGlLPADxdT7rVvMKoxpsbozq3NxkGiq6k1AD", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 1.31, + "authorized_date": "2024-02-11", + "authorized_datetime": null, + "category": [ + "Service" + ], + "category_id": "18000000", + "check_number": null, + "counterparties": [], + "date": "2024-02-13", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "BIRD APP", + "original_description": "BIRD APP", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "GENERAL_MERCHANDISE_OTHER_GENERAL_MERCHANDISE", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "RWmGP5oMzdtreRojdm9zi5wEvmqNVpHapbA3v", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 32.24, + "authorized_date": "2024-02-11", + "authorized_datetime": null, + "category": [ + "Shops", + "Digital Purchase" + ], + "category_id": "19019000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "2gOwmq9qK56K60oDm3eLrREV2B2mVadkRn8MW", + "logo_url": "https://plaid-merchant-logos.plaid.com/amazon_44.png", + "name": "Amazon", + "phone_number": null, + "type": "merchant", + "website": "amazon.com" + } + ], + "date": "2024-02-13", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/amazon_44.png", + "merchant_entity_id": "2gOwmq9qK56K60oDm3eLrREV2B2mVadkRn8MW", + "merchant_name": "Amazon", + "name": "Amazon Payments", + "original_description": "Amazon Payments", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "GENERAL_MERCHANDISE_ONLINE_MARKETPLACES", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "6RrvP8d6aQt8RdaEAwWkFbyD6lRWjLi8DXeLW", + "transaction_type": "digital", + "unofficial_currency_code": null, + "website": "amazon.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 20.64, + "authorized_date": "2024-02-11", + "authorized_datetime": null, + "category": [ + "Travel", + "Gas Stations" + ], + "category_id": "22009000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "K33jRD28EkrYM8QvWAowj9ywwpv3vnbdBJXjL", + "logo_url": "https://plaid-merchant-logos.plaid.com/quik_stop_798.png", + "name": "Quik Stop", + "phone_number": null, + "type": "merchant", + "website": "quikstop.com" + } + ], + "date": "2024-02-12", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": "0123" + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/quik_stop_798.png", + "merchant_entity_id": "K33jRD28EkrYM8QvWAowj9ywwpv3vnbdBJXjL", + "merchant_name": "Quik Stop", + "name": "QUIK STOP #0123 Q01", + "original_description": "QUIK STOP #0123 Q01", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "TRANSPORTATION_GAS", + "primary": "TRANSPORTATION" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_TRANSPORTATION.png", + "transaction_code": null, + "transaction_id": "XyXrM5BG47fmPpGD7694U6qPyJX8decbKnLqQ", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "quikstop.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 106.17, + "authorized_date": "2024-02-11", + "authorized_datetime": null, + "category": [ + "Food and Drink", + "Restaurants" + ], + "category_id": "13005000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "Zm1Vb7gV6DNNd9ZgmmBWKO1Qboeg8Kj1wZvYq", + "logo_url": "https://plaid-merchant-logos.plaid.com/yard_house_1141.png", + "name": "Yard House", + "phone_number": null, + "type": "merchant", + "website": "yardhouse.com" + } + ], + "date": "2024-02-12", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/yard_house_1141.png", + "merchant_entity_id": "Zm1Vb7gV6DNNd9ZgmmBWKO1Qboeg8Kj1wZvYq", + "merchant_name": "Yard House", + "name": "Yard House", + "original_description": "YARD HOUSE 0123456", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "HIGH", + "detailed": "FOOD_AND_DRINK_BEER_WINE_AND_LIQUOR", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "DPZBW5VqgbFP764zbpqmSvjWJDPg3bt3WaJxo", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "yardhouse.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 34.98, + "authorized_date": "2024-02-11", + "authorized_datetime": null, + "category": [ + "Shops", + "Computers and Electronics", + "Video Games" + ], + "category_id": "19013001", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "3oRMK5OMq55E6LeoK6JeeEQwv1Yv4e55YEVWX", + "logo_url": "https://plaid-merchant-logos.plaid.com/sony_playstation_927.png", + "name": "Sony Playstation", + "phone_number": null, + "type": "merchant", + "website": "playstation.com" + } + ], + "date": "2024-02-12", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": "CA", + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/sony_playstation_927.png", + "merchant_entity_id": "3oRMK5OMq55E6LeoK6JeeEQwv1Yv4e55YEVWX", + "merchant_name": "Sony Playstation", + "name": "PLAYSTATION NETWORK", + "original_description": "PLAYSTATION NETWORK 012-012-0123 CA", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "ENTERTAINMENT_VIDEO_GAMES", + "primary": "ENTERTAINMENT" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_ENTERTAINMENT.png", + "transaction_code": null, + "transaction_id": "VbRqQ5rLdPcn6RqVP4QdsXJG18VQ3Et9gPEem", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "playstation.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 15.72, + "authorized_date": "2024-02-11", + "authorized_datetime": null, + "category": [ + "Shops", + "Clothing and Accessories", + "Shoe Store" + ], + "category_id": "19012003", + "check_number": null, + "counterparties": [], + "date": "2024-02-12", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "Payless Shoesource", + "original_description": "PAYLESS SHOESOURCE", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "GENERAL_MERCHANDISE_OTHER_GENERAL_MERCHANDISE", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "wWnqpjJldatQbrvJydjETKPDB3J4E9cPZomj9", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 3.88, + "authorized_date": "2024-02-14", + "authorized_datetime": null, + "category": [ + "Food and Drink", + "Restaurants", + "Coffee Shop" + ], + "category_id": "13005043", + "check_number": null, + "counterparties": [ + { + "confidence_level": "LOW", + "entity_id": null, + "logo_url": null, + "name": "Coffee", + "phone_number": null, + "type": "merchant", + "website": null + }, + { + "confidence_level": "VERY_HIGH", + "entity_id": "VmnapWdRwMn50bwvEaKZRKNkQXW1LvNrwdLeW", + "logo_url": "https://plaid-counterparty-logos.plaid.com/toast_182.png", + "name": "Toast", + "phone_number": null, + "type": "payment_terminal", + "website": "pos.toasttab.com" + } + ], + "date": "2024-02-14", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": "Coffee", + "name": "TST*GREGORYS COFFEE - GC*", + "original_description": "TST*GREGORYS COFFEE - GC*", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "HIGH", + "detailed": "FOOD_AND_DRINK_COFFEE", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "5vK5Ng6bdetkX4dDA6NbSqZK7QDoXMu5K78Ml", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 17.47, + "authorized_date": "2024-02-15", + "authorized_datetime": null, + "category": [ + "Shops", + "Music, Video and DVD" + ], + "category_id": "19036000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "z3XzRe488pMdo7NAnL44L7rv9L550berky6mK", + "logo_url": "https://plaid-merchant-logos.plaid.com/apple_itunes_1434.png", + "name": "Apple iTunes", + "phone_number": null, + "type": "merchant", + "website": "apple.com/itunes" + } + ], + "date": "2024-02-15", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": "CA", + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/apple_itunes_1434.png", + "merchant_entity_id": "z3XzRe488pMdo7NAnL44L7rv9L550berky6mK", + "merchant_name": "Apple iTunes", + "name": "iTunes", + "original_description": "APL* ITUNES.COM/BILL 012-012-0123 CA", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": "Apple", + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "ENTERTAINMENT_MUSIC_AND_AUDIO", + "primary": "ENTERTAINMENT" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_ENTERTAINMENT.png", + "transaction_code": null, + "transaction_id": "JMgVz59xnlhM1pyKljkeUAXZgLJDw6IB6gkqP", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "apple.com/itunes" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 53.27, + "authorized_date": "2024-02-15", + "authorized_datetime": null, + "category": [ + "Recreation", + "Arts and Entertainment", + "Movie Theatres" + ], + "category_id": "17001009", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "nADWWmL6e6BBZZLzvkvQn3evqKj61KrZanN1O", + "logo_url": "https://plaid-merchant-logos.plaid.com/amc_theatres_49.png", + "name": "AMC Theatres", + "phone_number": null, + "type": "merchant", + "website": "amctheatres.com" + } + ], + "date": "2024-02-15", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": "KS", + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/amc_theatres_49.png", + "merchant_entity_id": "nADWWmL6e6BBZZLzvkvQn3evqKj61KrZanN1O", + "merchant_name": "AMC Theatres", + "name": "0123 AMC ONLINE", + "original_description": "0123 AMC ONLINE 012-012-0123 KS", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "ENTERTAINMENT_TV_AND_MOVIES", + "primary": "ENTERTAINMENT" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_ENTERTAINMENT.png", + "transaction_code": null, + "transaction_id": "k7ZAaqkDn9IeLWvPMD3QTQmwjAae61sL6doK3", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "amctheatres.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 29.82, + "authorized_date": "2024-02-15", + "authorized_datetime": null, + "category": [ + "Shops", + "Supermarkets and Groceries" + ], + "category_id": "19047000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "ejyrAn1BvJ9X5ZXVBq5nN1aqjLzJbE64L4eWQ", + "logo_url": "https://plaid-merchant-logos.plaid.com/jewelosco_537.png", + "name": "Jewel-Osco", + "phone_number": null, + "type": "merchant", + "website": "jewelosco.com" + } + ], + "date": "2024-02-16", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": "7329 Cass Ave", + "city": "Darien", + "country": null, + "lat": 41.753937, + "lon": -87.972435, + "postal_code": "60561", + "region": "IL", + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/jewelosco_537.png", + "merchant_entity_id": "ejyrAn1BvJ9X5ZXVBq5nN1aqjLzJbE64L4eWQ", + "merchant_name": "Jewel-Osco", + "name": "Jewel-Osco", + "original_description": "JEWEL-OSCO 0123", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "FOOD_AND_DRINK_GROCERIES", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "leMA4KdDbvT9Rj8aDw3ASlqwZmdvGDipodR8z", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "jewelosco.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 25.21, + "authorized_date": "2024-02-15", + "authorized_datetime": null, + "category": [ + "Shops", + "Beauty Products" + ], + "category_id": "19006000", + "check_number": null, + "counterparties": [], + "date": "2024-02-16", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "Sephora", + "original_description": "SEPHORA.COM", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "GENERAL_MERCHANDISE_OTHER_GENERAL_MERCHANDISE", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "qLgAex9DKrfNjEv5oDMaFebVapMmWGhgr7Rk8", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 54, + "authorized_date": "2024-02-15", + "authorized_datetime": null, + "category": [ + "Travel", + "Parking" + ], + "category_id": "22013000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "rbQ0LvgQRNvXWQ7bWW025Q06w71BYKjgyXL57", + "logo_url": "https://plaid-merchant-logos.plaid.com/dfw_airport_parking_1748.png", + "name": "DFW Airport Parking", + "phone_number": null, + "type": "merchant", + "website": "dfwairport.com/park" + } + ], + "date": "2024-02-18", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": "Airport Parking Dfw Airport", + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": "TX", + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/dfw_airport_parking_1748.png", + "merchant_entity_id": "rbQ0LvgQRNvXWQ7bWW025Q06w71BYKjgyXL57", + "merchant_name": "DFW Airport Parking", + "name": "DFW AIRPORT PARKING DFW AIRPORT", + "original_description": "DFW AIRPORT PARKING DFW AIRPORT TX", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "TRANSPORTATION_PARKING", + "primary": "TRANSPORTATION" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_TRANSPORTATION.png", + "transaction_code": null, + "transaction_id": "K18PB5Zdbqh17BVgqbRQhyoaA5z1deiRpA1b6", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "dfwairport.com/park" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 216.58, + "authorized_date": "2024-02-15", + "authorized_datetime": null, + "category": [ + "Recreation", + "Arts and Entertainment" + ], + "category_id": "17001000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "MvWV6Y45JMz6qg4WwWk8YXM6dZyyAa2MrW4z1", + "logo_url": "https://plaid-merchant-logos.plaid.com/ticketmaster_1016.png", + "name": "Ticketmaster", + "phone_number": null, + "type": "merchant", + "website": "ticketmaster.com" + } + ], + "date": "2024-02-18", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/ticketmaster_1016.png", + "merchant_entity_id": "MvWV6Y45JMz6qg4WwWk8YXM6dZyyAa2MrW4z1", + "merchant_name": "Ticketmaster", + "name": "Ticketmaster", + "original_description": "TM TICKETMASTER", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "ENTERTAINMENT_SPORTING_EVENTS_AMUSEMENT_PARKS_AND_MUSEUMS", + "primary": "ENTERTAINMENT" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_ENTERTAINMENT.png", + "transaction_code": null, + "transaction_id": "rp8wQd9Drzc7XxVRZbBNsbxP5JMjG9i7J61gl", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "ticketmaster.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 2.93, + "authorized_date": "2024-02-15", + "authorized_datetime": null, + "category": [ + "Food and Drink", + "Restaurants" + ], + "category_id": "13005000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "L8MoaweB5OXAObY6jnWVMY7Y2Wn1rmOo6nWYn", + "logo_url": "https://plaid-merchant-logos.plaid.com/noodles_company_683.png", + "name": "Noodles \u0026 Company", + "phone_number": null, + "type": "merchant", + "website": "noodles.com" + } + ], + "date": "2024-02-18", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/noodles_company_683.png", + "merchant_entity_id": "L8MoaweB5OXAObY6jnWVMY7Y2Wn1rmOo6nWYn", + "merchant_name": "Noodles \u0026 Company", + "name": "Noodles \u0026 Company", + "original_description": "NOODLES \u0026 CO 012", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "FOOD_AND_DRINK_RESTAURANT", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "zkyz8Q9rNPCXgWQeyj9pIeqPWlmJpdhlNLQWl", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "noodles.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 34.63, + "authorized_date": "2024-02-17", + "authorized_datetime": null, + "category": [ + "Shops", + "Computers and Electronics", + "Video Games" + ], + "category_id": "19013001", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "3oRMK5OMq55E6LeoK6JeeEQwv1Yv4e55YEVWX", + "logo_url": "https://plaid-merchant-logos.plaid.com/sony_playstation_927.png", + "name": "Sony Playstation", + "phone_number": null, + "type": "merchant", + "website": "playstation.com" + } + ], + "date": "2024-02-18", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": "CA", + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/sony_playstation_927.png", + "merchant_entity_id": "3oRMK5OMq55E6LeoK6JeeEQwv1Yv4e55YEVWX", + "merchant_name": "Sony Playstation", + "name": "PLAYSTATION NETWORK", + "original_description": "PLAYSTATION NETWORK 012-012-0123 CA", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "ENTERTAINMENT_VIDEO_GAMES", + "primary": "ENTERTAINMENT" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_ENTERTAINMENT.png", + "transaction_code": null, + "transaction_id": "B4ek869ZpGC41mDnjvVxuBdXVLjPRxC4M8gnz", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "playstation.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 2.47, + "authorized_date": "2024-02-17", + "authorized_datetime": null, + "category": [ + "Food and Drink", + "Restaurants", + "Fast Food" + ], + "category_id": "13005032", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "1YZ03w08myRAQ0mRgMvD2EBoOb92RmBXN6nmK", + "logo_url": "https://plaid-merchant-logos.plaid.com/wendys_1114.png", + "name": "Wendy's", + "phone_number": null, + "type": "merchant", + "website": "wendys.com" + } + ], + "date": "2024-02-18", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/wendys_1114.png", + "merchant_entity_id": "1YZ03w08myRAQ0mRgMvD2EBoOb92RmBXN6nmK", + "merchant_name": "Wendy's", + "name": "Wendy's", + "original_description": "WENDYS 0123", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "FOOD_AND_DRINK_FAST_FOOD", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "3ylJapdb3jf8nK3A1z7JF3jlmQa5LBhZlnE3M", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "wendys.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 3.74, + "authorized_date": "2024-02-15", + "authorized_datetime": null, + "category": [ + "Recreation", + "Arts and Entertainment" + ], + "category_id": "17001000", + "check_number": null, + "counterparties": [], + "date": "2024-02-17", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "Fandango", + "original_description": "Fandango", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "ENTERTAINMENT_TV_AND_MOVIES", + "primary": "ENTERTAINMENT" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_ENTERTAINMENT.png", + "transaction_code": null, + "transaction_id": "xAbKo75qa4um5aZ8zndpUMd7gW5wbxU64VevA", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 3.37, + "authorized_date": "2024-02-17", + "authorized_datetime": null, + "category": [ + "Food and Drink", + "Restaurants", + "Fast Food" + ], + "category_id": "13005032", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "yD7z7XqNmON4BRvVQa5gbVpRyqeYNY4gpbgkW", + "logo_url": "https://plaid-merchant-logos.plaid.com/raising_canes_chicken_fingers_806.png", + "name": "Raising Cane's Chicken Fingers", + "phone_number": null, + "type": "merchant", + "website": "raisingcanes.com" + } + ], + "date": "2024-02-17", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": "01" + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/raising_canes_chicken_fingers_806.png", + "merchant_entity_id": "yD7z7XqNmON4BRvVQa5gbVpRyqeYNY4gpbgkW", + "merchant_name": "Raising Cane's Chicken Fingers", + "name": "Raising Cane's Chicken Fingers", + "original_description": "RAISING CANE'S #01", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "FOOD_AND_DRINK_FAST_FOOD", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "dx4ZK58XoWCvbXVZlNgaC9Rl5wkLExCJEQReG", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "raisingcanes.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 5.99, + "authorized_date": "2024-02-17", + "authorized_datetime": null, + "category": [ + "Shops", + "Music, Video and DVD" + ], + "category_id": "19036000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "z3XzRe488pMdo7NAnL44L7rv9L550berky6mK", + "logo_url": "https://plaid-merchant-logos.plaid.com/apple_itunes_1434.png", + "name": "Apple iTunes", + "phone_number": null, + "type": "merchant", + "website": "apple.com/itunes" + } + ], + "date": "2024-02-21", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/apple_itunes_1434.png", + "merchant_entity_id": "z3XzRe488pMdo7NAnL44L7rv9L550berky6mK", + "merchant_name": "Apple iTunes", + "name": "iTunes", + "original_description": "APL*ITUNES.COM/BILL #...0123", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": "Apple", + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "ENTERTAINMENT_MUSIC_AND_AUDIO", + "primary": "ENTERTAINMENT" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_ENTERTAINMENT.png", + "transaction_code": null, + "transaction_id": "azx7A59X1gc5orV6dPw3soqAjJ3zZysZ5QDLo", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "apple.com/itunes" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 31.1, + "authorized_date": "2024-02-21", + "authorized_datetime": null, + "category": [ + "Shops", + "Clothing and Accessories" + ], + "category_id": "19012000", + "check_number": null, + "counterparties": [], + "date": "2024-02-21", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "SP * FASHIONNOVA.COM", + "original_description": "SP * FASHIONNOVA.COM", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "GENERAL_MERCHANDISE_OTHER_GENERAL_MERCHANDISE", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "49qZ4oGbx7T873XDoebnFmlbdW4eDaFJbAL7m", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 6.16, + "authorized_date": "2024-02-17", + "authorized_datetime": null, + "category": [ + "Food and Drink", + "Restaurants", + "Fast Food" + ], + "category_id": "13005032", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "MezwEv82wQZEknrQkzrO7nKBW0qZXo4eL8NXL", + "logo_url": "https://plaid-merchant-logos.plaid.com/whataburger_1118.png", + "name": "Whataburger", + "phone_number": null, + "type": "merchant", + "website": "whataburger.com" + } + ], + "date": "2024-02-19", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": "1121 Waldron Rd", + "city": "Corpus Christi", + "country": null, + "lat": 27.667625, + "lon": -97.282547, + "postal_code": "78418", + "region": "TX", + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/whataburger_1118.png", + "merchant_entity_id": "MezwEv82wQZEknrQkzrO7nKBW0qZXo4eL8NXL", + "merchant_name": "Whataburger", + "name": "Whataburger", + "original_description": "WHATABURGER 0123", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "FOOD_AND_DRINK_FAST_FOOD", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "NokPd5gNlzfoV1byzGkls7JMP5G3Q9sy65Qma", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "whataburger.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 34.91, + "authorized_date": "2024-02-18", + "authorized_datetime": null, + "category": [ + "Shops", + "Digital Purchase" + ], + "category_id": "19019000", + "check_number": null, + "counterparties": [], + "date": "2024-02-23", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "ONLY FANS", + "original_description": "ONLY FANS", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "GENERAL_MERCHANDISE_OTHER_GENERAL_MERCHANDISE", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "P8n745oWK3cnXKyW31x9slDB75xZEeio6WAZV", + "transaction_type": "digital", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 19.4, + "authorized_date": "2024-02-21", + "authorized_datetime": null, + "category": [ + "Travel", + "Gas Stations" + ], + "category_id": "22009000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "pBowAoZJMM9DKR37jvNmzM4yWBBXyMzV2rM3A", + "logo_url": "https://plaid-merchant-logos.plaid.com/costco_235.png", + "name": "Costco", + "phone_number": null, + "type": "merchant", + "website": "costco.com" + } + ], + "date": "2024-02-23", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/costco_235.png", + "merchant_entity_id": "pBowAoZJMM9DKR37jvNmzM4yWBBXyMzV2rM3A", + "merchant_name": "Costco", + "name": "Costco Gas", + "original_description": "Costco Gas", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "TRANSPORTATION_GAS", + "primary": "TRANSPORTATION" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_TRANSPORTATION.png", + "transaction_code": null, + "transaction_id": "jjQ7dlP5GyCbNavw7rzpty4MQmk9opi6WLaqb", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "costco.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 18.94, + "authorized_date": "2024-02-23", + "authorized_datetime": null, + "category": [ + "Travel", + "Gas Stations" + ], + "category_id": "22009000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "BVQanABKyYJ9z2agOMKOV2gzJnXKavm10ajjg", + "logo_url": "https://plaid-merchant-logos.plaid.com/wawa_1104.png", + "name": "Wawa", + "phone_number": null, + "type": "merchant", + "website": "wawa.com" + } + ], + "date": "2024-02-23", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": "525 Burmont Rd", + "city": "Drexel Hill", + "country": null, + "lat": 39.946945, + "lon": -75.301537, + "postal_code": "19026", + "region": "PA", + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/wawa_1104.png", + "merchant_entity_id": "BVQanABKyYJ9z2agOMKOV2gzJnXKavm10ajjg", + "merchant_name": "Wawa", + "name": "WAWA 012 01234567", + "original_description": "WAWA 012 01234567", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "TRANSPORTATION_GAS", + "primary": "TRANSPORTATION" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_TRANSPORTATION.png", + "transaction_code": null, + "transaction_id": "76zXjElb4Zt8RL4DAzM9F9Zwj8GW6DCdJnxLA", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "wawa.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 22.93, + "authorized_date": "2024-02-23", + "authorized_datetime": null, + "category": [ + "Service", + "Food and Beverage" + ], + "category_id": "18021000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "YNRJg5o2djJLv52nBA1Yn1KpL858egYVo4dpm", + "logo_url": "https://plaid-counterparty-logos.plaid.com/doordash_1.png", + "name": "DoorDash", + "phone_number": null, + "type": "marketplace", + "website": "doordash.com" + } + ], + "date": "2024-02-23", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": "DoorDash", + "name": "DOORDASH", + "original_description": "DOORDASH", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "MEDIUM", + "detailed": "FOOD_AND_DRINK_RESTAURANT", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "edNwr51XgAcoARVZP68vsdRGzqom9Bur95m1q", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 7.58, + "authorized_date": "2024-02-21", + "authorized_datetime": null, + "category": [ + "Food and Drink", + "Restaurants", + "Fast Food" + ], + "category_id": "13005032", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "a4r8Wog9LbWrwqWpXZeJZr9b8rRbgavga0dkM", + "logo_url": "https://plaid-merchant-logos.plaid.com/dominos_292.png", + "name": "Domino's", + "phone_number": null, + "type": "merchant", + "website": "dominos.com" + } + ], + "date": "2024-02-26", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": "1230 N Kickapoo Ave", + "city": "Shawnee", + "country": null, + "lat": null, + "lon": null, + "postal_code": "74801", + "region": "OK", + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/dominos_292.png", + "merchant_entity_id": "a4r8Wog9LbWrwqWpXZeJZr9b8rRbgavga0dkM", + "merchant_name": "Domino's", + "name": "Domino's", + "original_description": "DOMINO'S 0123", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "FOOD_AND_DRINK_FAST_FOOD", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "QEbZN5mMrxTnJ4XRxba9s9paZDyVQGCwm7DEq", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "dominos.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 4.37, + "authorized_date": "2024-02-22", + "authorized_datetime": null, + "category": [ + "Shops", + "Supermarkets and Groceries" + ], + "category_id": "19047000", + "check_number": null, + "counterparties": [], + "date": "2024-02-27", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "Stater Bros. Markets", + "original_description": "STATERBROS012", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "FOOD_AND_DRINK_GROCERIES", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "ZvlBL5eMPQtnXDV6QrR9sRex8pZayMceqXGVZ", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 4.55, + "authorized_date": "2024-02-24", + "authorized_datetime": null, + "category": [ + "Shops", + "Beauty Products" + ], + "category_id": "19006000", + "check_number": null, + "counterparties": [], + "date": "2024-02-27", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "ULTA.COM", + "original_description": "ULTA.COM", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "GENERAL_MERCHANDISE_OTHER_GENERAL_MERCHANDISE", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "MpWPx5o4yrcpZvwQrdbMuwXJg8Eze3fL6P1Vn", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 1.5, + "authorized_date": "2024-02-23", + "authorized_datetime": null, + "category": [ + "Food and Drink" + ], + "category_id": "13000000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "LOW", + "entity_id": null, + "logo_url": null, + "name": "Food", + "phone_number": null, + "type": "merchant", + "website": null + } + ], + "date": "2024-02-24", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": "Food", + "name": "USA*USA*FIVE STAR FOOD", + "original_description": "USA*USA*FIVE STAR FOOD", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "FOOD_AND_DRINK_VENDING_MACHINES", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "1bXWx1mVzNcQvyzEo34JTXVmegwx94tpjereM", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 18.34, + "authorized_date": "2024-02-24", + "authorized_datetime": null, + "category": [ + "Shops", + "Convenience Stores" + ], + "category_id": "19015000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "pvO5bNNMEbRvBWnZ2aAbj0qKX1w7RbYyKnQ43", + "logo_url": "https://plaid-merchant-logos.plaid.com/getgo_431.png", + "name": "GetGo", + "phone_number": null, + "type": "merchant", + "website": "getgocafe.com" + } + ], + "date": "2024-02-28", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": "0123" + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/getgo_431.png", + "merchant_entity_id": "pvO5bNNMEbRvBWnZ2aAbj0qKX1w7RbYyKnQ43", + "merchant_name": "GetGo", + "name": "GET GO #0123", + "original_description": "GET GO #0123", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "TRANSPORTATION_GAS", + "primary": "TRANSPORTATION" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_TRANSPORTATION.png", + "transaction_code": null, + "transaction_id": "LLEP35oamKfLwWGzKa8mCk6Apgx1W7ukjpEp1", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "getgocafe.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 27.61, + "authorized_date": "2024-02-28", + "authorized_datetime": null, + "category": [ + "Travel", + "Taxi" + ], + "category_id": "22016000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "eyg8o776k0QmNgVpAmaQj4WgzW9Qzo6O51gdd", + "logo_url": "https://plaid-merchant-logos.plaid.com/uber_1060.png", + "name": "Uber", + "phone_number": null, + "type": "merchant", + "website": "uber.com" + } + ], + "date": "2024-02-28", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/uber_1060.png", + "merchant_entity_id": "eyg8o776k0QmNgVpAmaQj4WgzW9Qzo6O51gdd", + "merchant_name": "Uber", + "name": "Uber", + "original_description": "UBER *TRIP", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "TRANSPORTATION_TAXIS_AND_RIDE_SHARES", + "primary": "TRANSPORTATION" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_TRANSPORTATION.png", + "transaction_code": null, + "transaction_id": "p1oA739DqKhR4y8Xk1ZWcxJrdLn6oGtpoVzVa", + "transaction_type": "special", + "unofficial_currency_code": null, + "website": "uber.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 23.69, + "authorized_date": "2024-02-25", + "authorized_datetime": null, + "category": [ + "Service", + "Shipping and Freight" + ], + "category_id": "18058000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "87BE46o0VXpZ1DZMmBBnAe7q2wAKbn3kZJZq2", + "logo_url": "https://plaid-merchant-logos.plaid.com/fedex_365.png", + "name": "FedEx", + "phone_number": null, + "type": "merchant", + "website": "fedex.com" + } + ], + "date": "2024-02-25", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/fedex_365.png", + "merchant_entity_id": "87BE46o0VXpZ1DZMmBBnAe7q2wAKbn3kZJZq2", + "merchant_name": "FedEx", + "name": "FedEx", + "original_description": "FEDEX 012345678901", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "GENERAL_SERVICES_POSTAGE_AND_SHIPPING", + "primary": "GENERAL_SERVICES" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_SERVICES.png", + "transaction_code": null, + "transaction_id": "oMpyjB9Dlqhb4v8gkyn6tbzMpZy5G3ioq7b7z", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "fedex.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 3.75, + "authorized_date": "2024-02-25", + "authorized_datetime": null, + "category": [ + "Service", + "Personal Care" + ], + "category_id": "18045000", + "check_number": null, + "counterparties": [], + "date": "2024-03-01", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "QUIP NYC INC QUIP - TO", + "original_description": "QUIP NYC INC QUIP - TO", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "GENERAL_MERCHANDISE_OTHER_GENERAL_MERCHANDISE", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "g4j7B5kXEnCwdLV7NzQPHV59dRBP8WcE8n5nQ", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 7.1, + "authorized_date": "2024-02-25", + "authorized_datetime": null, + "category": [ + "Recreation", + "Arts and Entertainment" + ], + "category_id": "17001000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "OqwKVgwpywREYeqAmLYabAD7Rbjegd98rmvo1", + "logo_url": "https://plaid-merchant-logos.plaid.com/stubhub_971.png", + "name": "Stubhub", + "phone_number": null, + "type": "merchant", + "website": "stubhub.com" + } + ], + "date": "2024-03-01", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": "CA", + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/stubhub_971.png", + "merchant_entity_id": "OqwKVgwpywREYeqAmLYabAD7Rbjegd98rmvo1", + "merchant_name": "Stubhub", + "name": "STUBHUB, INC.", + "original_description": "STUBHUB, INC. 012-012-0123 CA", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "HIGH", + "detailed": "ENTERTAINMENT_SPORTING_EVENTS_AMUSEMENT_PARKS_AND_MUSEUMS", + "primary": "ENTERTAINMENT" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_ENTERTAINMENT.png", + "transaction_code": null, + "transaction_id": "8lBZ7kqmNMflM6N1rBb8udzkGwyA5MuW3L8Lj", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "stubhub.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 11.42, + "authorized_date": "2024-02-28", + "authorized_datetime": null, + "category": [ + "Service", + "Shipping and Freight" + ], + "category_id": "18058000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "9Dn92eaeYEjom88122akjmMnore4Ed76Qd5WZ", + "logo_url": "https://plaid-merchant-logos.plaid.com/us_post_office_1059.png", + "name": "U.S. Post Office", + "phone_number": null, + "type": "merchant", + "website": "usps.com" + } + ], + "date": "2024-03-01", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/us_post_office_1059.png", + "merchant_entity_id": "9Dn92eaeYEjom88122akjmMnore4Ed76Qd5WZ", + "merchant_name": "U.S. Post Office", + "name": "U.S. Post Office", + "original_description": "USPS", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "GENERAL_SERVICES_POSTAGE_AND_SHIPPING", + "primary": "GENERAL_SERVICES" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_SERVICES.png", + "transaction_code": null, + "transaction_id": "EjM3A5vK8mCjLea1GE3mCyom95Prvki4xkmkk", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "usps.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 25.53, + "authorized_date": "2024-03-01", + "authorized_datetime": null, + "category": [ + "Food and Drink", + "Restaurants", + "Fast Food" + ], + "category_id": "13005032", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "Mjqdpqn3ZgOdrAYpkAKMkArEON7avQ8jV9BX1", + "logo_url": "https://plaid-merchant-logos.plaid.com/chipotle_mexican_grill_202.png", + "name": "Chipotle Mexican Grill", + "phone_number": null, + "type": "merchant", + "website": "chipotle.com" + } + ], + "date": "2024-03-01", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/chipotle_mexican_grill_202.png", + "merchant_entity_id": "Mjqdpqn3ZgOdrAYpkAKMkArEON7avQ8jV9BX1", + "merchant_name": "Chipotle Mexican Grill", + "name": "Chipotle Mexican Grill", + "original_description": "CHIPOTLE 0123 #...0123", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "FOOD_AND_DRINK_FAST_FOOD", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "Wm6kZ5zMajudb4XV6nyafB8VgNb3znC6Z1j1E", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "chipotle.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 38.78, + "authorized_date": "2024-02-28", + "authorized_datetime": null, + "category": [ + "Food and Drink", + "Restaurants", + "Fast Food" + ], + "category_id": "13005032", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "1NX0rYe8Wk8NYg6XR7eLW2LoANLXOnvk7Da9j", + "logo_url": "https://plaid-merchant-logos.plaid.com/portillos_770.png", + "name": "Portillo's", + "phone_number": null, + "type": "merchant", + "website": "portillos.com" + } + ], + "date": "2024-02-29", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": "635 1/2 W North Ave", + "city": "Villa Park", + "country": null, + "lat": null, + "lon": null, + "postal_code": "60181", + "region": "IL", + "store_number": "01" + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/portillos_770.png", + "merchant_entity_id": "1NX0rYe8Wk8NYg6XR7eLW2LoANLXOnvk7Da9j", + "merchant_name": "Portillo's", + "name": "PORTILLOS HOT DOGS #01", + "original_description": "PORTILLOS HOT DOGS #01", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "FOOD_AND_DRINK_RESTAURANT", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "Aa7KgRpVLAhamWlkAvD3s8Dl5KZ7brF9rA5A5", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "portillos.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 3.27, + "authorized_date": "2024-02-28", + "authorized_datetime": null, + "category": [ + "Service", + "Business Services" + ], + "category_id": "18008000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "NELrAdOaJ071vgdXyE2DOOjQ978bdoKmZ0pv5", + "logo_url": "https://plaid-merchant-logos.plaid.com/aramark_67.png", + "name": "Aramark", + "phone_number": null, + "type": "merchant", + "website": "aramark.com" + } + ], + "date": "2024-02-29", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/aramark_67.png", + "merchant_entity_id": "NELrAdOaJ071vgdXyE2DOOjQ978bdoKmZ0pv5", + "merchant_name": "Aramark", + "name": "Aramark", + "original_description": "Aramark", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "FOOD_AND_DRINK_OTHER_FOOD_AND_DRINK", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "GeLdq5ozW9Te8Jd4MGvPT84MZDwPW7F6MPoP7", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "aramark.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 451.82, + "authorized_date": "2024-02-28", + "authorized_datetime": null, + "category": [ + "Shops", + "Hardware Store" + ], + "category_id": "19030000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "OvD4k3VrjJYXoar5MNKZQEd333BA1oK8JA8v6", + "logo_url": "https://plaid-merchant-logos.plaid.com/lowes_591.png", + "name": "Lowe's", + "phone_number": null, + "type": "merchant", + "website": "lowes.com" + } + ], + "date": "2024-02-29", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/lowes_591.png", + "merchant_entity_id": "OvD4k3VrjJYXoar5MNKZQEd333BA1oK8JA8v6", + "merchant_name": "Lowe's", + "name": "Lowe's", + "original_description": "Lowe's", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "HOME_IMPROVEMENT_HARDWARE", + "primary": "HOME_IMPROVEMENT" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_HOME_IMPROVEMENT.png", + "transaction_code": null, + "transaction_id": "nZLAPzwDylibQdva8jeDtG1eMJoEWbtAlWQW9", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "lowes.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 10.54, + "authorized_date": "2024-02-28", + "authorized_datetime": null, + "category": [ + "Shops", + "Computers and Electronics" + ], + "category_id": "19013000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "nqgNrWMbOpJkJD8Xa8RAvVn8NqaEzOjZXggbZ", + "logo_url": "https://plaid-merchant-logos.plaid.com/adobe_17.png", + "name": "Adobe", + "phone_number": null, + "type": "merchant", + "website": "adobe.com" + } + ], + "date": "2024-03-02", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/adobe_17.png", + "merchant_entity_id": "nqgNrWMbOpJkJD8Xa8RAvVn8NqaEzOjZXggbZ", + "merchant_name": "Adobe", + "name": "ADOBE *PHOTOGPHY PLAN", + "original_description": "ADOBE *PHOTOGPHY PLAN", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "GENERAL_SERVICES_OTHER_GENERAL_SERVICES", + "primary": "GENERAL_SERVICES" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_SERVICES.png", + "transaction_code": null, + "transaction_id": "bBdylJgXLku1ryVNQ9XehxReg34KG7tmbZ7ZK", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "adobe.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 41.27, + "authorized_date": "2024-02-28", + "authorized_datetime": null, + "category": [ + "Shops", + "Pets" + ], + "category_id": "19042000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "1y2mqBeXgdqZVXr3nE8m18DdevZ6AdwoR8q1D", + "logo_url": "https://plaid-merchant-logos.plaid.com/petsmart_748.png", + "name": "PetSmart", + "phone_number": null, + "type": "merchant", + "website": "petsmart.com" + } + ], + "date": "2024-03-02", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": "11945 Central Ave", + "city": "Chino", + "country": null, + "lat": 34.036526, + "lon": -117.687943, + "postal_code": "91710", + "region": "CA", + "store_number": "0123" + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/petsmart_748.png", + "merchant_entity_id": "1y2mqBeXgdqZVXr3nE8m18DdevZ6AdwoR8q1D", + "merchant_name": "PetSmart", + "name": "PetSmart", + "original_description": "PETSMART # 0123", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "GENERAL_MERCHANDISE_PET_SUPPLIES", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "mQ1ANkbDmRfb4yvJ6npMt6LmBj1NyEcgydXdy", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "petsmart.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 5.51, + "authorized_date": "2024-02-28", + "authorized_datetime": null, + "category": [ + "Service", + "Shipping and Freight" + ], + "category_id": "18058000", + "check_number": null, + "counterparties": [], + "date": "2024-03-02", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": "DC", + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "USPS.COM CLICKNSHIP", + "original_description": "USPS.COM CLICKNSHIP 012-012-0123 DC", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "GENERAL_SERVICES_OTHER_GENERAL_SERVICES", + "primary": "GENERAL_SERVICES" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_SERVICES.png", + "transaction_code": null, + "transaction_id": "yGmrge5K4NFpDQweBL4yuPM35rxdXZi46XwXR", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 7, + "authorized_date": "2024-03-02", + "authorized_datetime": null, + "category": [ + "Travel", + "Parking" + ], + "category_id": "22013000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "4Yj3Wn5p0yV1bzzEz455r7oOWWgNeA2DMr6Kn", + "logo_url": "https://plaid-merchant-logos.plaid.com/ace_parking_10.png", + "name": "Ace Parking", + "phone_number": null, + "type": "merchant", + "website": "aceparking.com" + } + ], + "date": "2024-03-02", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/ace_parking_10.png", + "merchant_entity_id": "4Yj3Wn5p0yV1bzzEz455r7oOWWgNeA2DMr6Kn", + "merchant_name": "Ace Parking", + "name": "Ace Parking", + "original_description": "ACE PARKING 0123", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "TRANSPORTATION_PARKING", + "primary": "TRANSPORTATION" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_TRANSPORTATION.png", + "transaction_code": null, + "transaction_id": "9q36eAK7P1iqGMPbA34yUAZV7NmLojI4xQgQp", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "aceparking.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 36.75, + "authorized_date": "2024-03-02", + "authorized_datetime": null, + "category": [ + "Shops", + "Digital Purchase" + ], + "category_id": "19019000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "2gOwmq9qK56K60oDm3eLrREV2B2mVadkRn8MW", + "logo_url": "https://plaid-merchant-logos.plaid.com/amazon_44.png", + "name": "Amazon", + "phone_number": null, + "type": "merchant", + "website": "amazon.com" + } + ], + "date": "2024-03-02", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/amazon_44.png", + "merchant_entity_id": "2gOwmq9qK56K60oDm3eLrREV2B2mVadkRn8MW", + "merchant_name": "Amazon", + "name": "Amazon Payments #...0123", + "original_description": "Amazon Payments #...0123", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "GENERAL_MERCHANDISE_ONLINE_MARKETPLACES", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "vEGlLPADxdT7rVvMKoxpsbozq3NxkGiq6k1kD", + "transaction_type": "digital", + "unofficial_currency_code": null, + "website": "amazon.com" + } + ], + "has_more": true, + "modified": [], + "next_cursor": "CAESJXZFR2xMUEFEeGRUN3JWdk1Lb3hwc2JvenEzTnhrR2lxNmsxa0QiDAian63BBhCYuabxAioMCJqfrcEGEOjakKAD", + "removed": [], + "request_id": "ijKc86fsYbcGjC3", + "transactions_update_status": "HISTORICAL_UPDATE_COMPLETE" + } + recorded_at: Mon, 19 May 2025 15:35:00 GMT +- request: + method: post + uri: https://sandbox.plaid.com/transactions/sync + body: + encoding: UTF-8 + string: '{"access_token":"access-sandbox-d531d3c9-8520-43ca-9e58-5b70b79fd1d4","cursor":"CAESJXZFR2xMUEFEeGRUN3JWdk1Lb3hwc2JvenEzTnhrR2lxNmsxa0QiDAian63BBhCYuabxAioMCJqfrcEGEOjakKAD","count":100,"options":{"include_original_description":true}}' + headers: + Content-Type: + - application/json + User-Agent: + - Plaid Ruby v38.0.0 + Accept: + - application/json + Plaid-Client-Id: + - "" + Plaid-Version: + - '2020-09-14' + Plaid-Secret: + - "" + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + response: + status: + code: 200 + message: OK + headers: + Server: + - nginx + Date: + - Mon, 19 May 2025 15:35:00 GMT + Content-Type: + - application/json; charset=utf-8 + Transfer-Encoding: + - chunked + Connection: + - keep-alive + Plaid-Version: + - '2020-09-14' + Vary: + - Accept-Encoding + X-Envoy-Upstream-Service-Time: + - '392' + X-Envoy-Decorator-Operation: + - default.svc-apiv2:8080/* + Strict-Transport-Security: + - max-age=31536000; includeSubDomains; preload + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Xss-Protection: + - 1; mode=block + body: + encoding: ASCII-8BIT + string: |- + { + "accounts": [ + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "balances": { + "available": 11065.71, + "current": 1000, + "iso_currency_code": "USD", + "limit": 12200, + "unofficial_currency_code": null + }, + "holder_category": "personal", + "mask": "3053", + "name": "Test Credit Card Account", + "official_name": "Plaid credit card", + "subtype": "credit card", + "type": "credit" + } + ], + "added": [ + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 203.91, + "authorized_date": "2024-02-28", + "authorized_datetime": null, + "category": [ + "Shops", + "Hardware Store" + ], + "category_id": "19030000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "kVawvV6p0R25gKw3qbp4Kq7kEzDdY5RnjV7RK", + "logo_url": "https://plaid-merchant-logos.plaid.com/home_depot_491.png", + "name": "The Home Depot", + "phone_number": null, + "type": "merchant", + "website": "homedepot.com" + } + ], + "date": "2024-03-03", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/home_depot_491.png", + "merchant_entity_id": "kVawvV6p0R25gKw3qbp4Kq7kEzDdY5RnjV7RK", + "merchant_name": "The Home Depot", + "name": "Home Depot", + "original_description": "HOMEDEPOT.COM", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "HOME_IMPROVEMENT_HARDWARE", + "primary": "HOME_IMPROVEMENT" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_HOME_IMPROVEMENT.png", + "transaction_code": null, + "transaction_id": "RWmGP5oMzdtreRojdm9zi5wEvmqNVpHapbAbv", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "homedepot.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 11.99, + "authorized_date": "2024-03-02", + "authorized_datetime": null, + "category": [ + "Service", + "Subscription" + ], + "category_id": "18061000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "3LEY2bJ6W1vkoaBjgVg3qBgYVEzD6p8d1dQdY", + "logo_url": "https://plaid-merchant-logos.plaid.com/netflix_675.png", + "name": "Netflix", + "phone_number": null, + "type": "merchant", + "website": "netflix.com" + } + ], + "date": "2024-03-03", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": "CA", + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/netflix_675.png", + "merchant_entity_id": "3LEY2bJ6W1vkoaBjgVg3qBgYVEzD6p8d1dQdY", + "merchant_name": "Netflix", + "name": "Netflix", + "original_description": "Netflix.com 012-0123456 CA", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "ENTERTAINMENT_TV_AND_MOVIES", + "primary": "ENTERTAINMENT" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_ENTERTAINMENT.png", + "transaction_code": null, + "transaction_id": "6RrvP8d6aQt8RdaEAwWkFbyD6lRWjLi8DXeXW", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "netflix.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 25.5, + "authorized_date": "2024-03-03", + "authorized_datetime": null, + "category": [ + "Recreation", + "Gyms and Fitness Centers" + ], + "category_id": "17018000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "LOW", + "entity_id": null, + "logo_url": null, + "name": "Holdings", + "phone_number": null, + "type": "merchant", + "website": null + } + ], + "date": "2024-03-03", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": "Holdings", + "name": "BARRYS BOOTCAMP HOLDINGS", + "original_description": "BARRYS BOOTCAMP HOLDINGS", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "GENERAL_MERCHANDISE_OTHER_GENERAL_MERCHANDISE", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "XyXrM5BG47fmPpGD7694U6qPyJX8decbKnLnQ", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 1.75, + "authorized_date": "2024-03-03", + "authorized_datetime": null, + "category": [ + "Shops", + "Digital Purchase" + ], + "category_id": "19019000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "2gOwmq9qK56K60oDm3eLrREV2B2mVadkRn8MW", + "logo_url": "https://plaid-merchant-logos.plaid.com/amazon_44.png", + "name": "Amazon", + "phone_number": null, + "type": "merchant", + "website": "amazon.com" + } + ], + "date": "2024-03-03", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/amazon_44.png", + "merchant_entity_id": "2gOwmq9qK56K60oDm3eLrREV2B2mVadkRn8MW", + "merchant_name": "Amazon", + "name": "AMAZON MARKETPLACE", + "original_description": "AMAZON MARKETPLACE", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "GENERAL_MERCHANDISE_ONLINE_MARKETPLACES", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "DPZBW5VqgbFP764zbpqmSvjWJDPg3bt3WaJao", + "transaction_type": "digital", + "unofficial_currency_code": null, + "website": "amazon.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 59.24, + "authorized_date": "2024-03-01", + "authorized_datetime": null, + "category": [ + "Transfer", + "Debit" + ], + "category_id": "21006000", + "check_number": null, + "counterparties": [], + "date": "2024-03-06", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "AMDA", + "original_description": "AMDA", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "GENERAL_MERCHANDISE_OTHER_GENERAL_MERCHANDISE", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "VbRqQ5rLdPcn6RqVP4QdsXJG18VQ3Et9gPEPm", + "transaction_type": "special", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 7, + "authorized_date": "2024-03-02", + "authorized_datetime": null, + "category": [ + "Travel", + "Parking" + ], + "category_id": "22013000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "AypeXeN8WKnmvm7RAowe0a0Xr9b47dANe0MLk", + "logo_url": "https://plaid-merchant-logos.plaid.com/laz_parking_570.png", + "name": "LAZ Parking", + "phone_number": null, + "type": "merchant", + "website": "lazparking.com" + } + ], + "date": "2024-03-06", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/laz_parking_570.png", + "merchant_entity_id": "AypeXeN8WKnmvm7RAowe0a0Xr9b47dANe0MLk", + "merchant_name": "LAZ Parking", + "name": "LAZ Parking", + "original_description": "LAZ Parking", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "TRANSPORTATION_PARKING", + "primary": "TRANSPORTATION" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_TRANSPORTATION.png", + "transaction_code": null, + "transaction_id": "wWnqpjJldatQbrvJydjETKPDB3J4E9cPZomo9", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "lazparking.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 8.15, + "authorized_date": "2024-03-03", + "authorized_datetime": null, + "category": [ + "Travel", + "Gas Stations" + ], + "category_id": "22009000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "BVQanABKyYJ9z2agOMKOV2gzJnXKavm10ajjg", + "logo_url": "https://plaid-merchant-logos.plaid.com/wawa_1104.png", + "name": "Wawa", + "phone_number": null, + "type": "merchant", + "website": "wawa.com" + } + ], + "date": "2024-03-04", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/wawa_1104.png", + "merchant_entity_id": "BVQanABKyYJ9z2agOMKOV2gzJnXKavm10ajjg", + "merchant_name": "Wawa", + "name": "WAWA 01 01234567", + "original_description": "WAWA 01 01234567", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "TRANSPORTATION_GAS", + "primary": "TRANSPORTATION" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_TRANSPORTATION.png", + "transaction_code": null, + "transaction_id": "5vK5Ng6bdetkX4dDA6NbSqZK7QDoXMu5K787l", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "wawa.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 14.22, + "authorized_date": "2024-03-03", + "authorized_datetime": null, + "category": [ + "Food and Drink", + "Restaurants" + ], + "category_id": "13005000", + "check_number": null, + "counterparties": [], + "date": "2024-03-04", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "THE GEM SALOON", + "original_description": "THE GEM SALOON", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "ENTERTAINMENT_SPORTING_EVENTS_AMUSEMENT_PARKS_AND_MUSEUMS", + "primary": "ENTERTAINMENT" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_ENTERTAINMENT.png", + "transaction_code": null, + "transaction_id": "JMgVz59xnlhM1pyKljkeUAXZgLJDw6IB6gkgP", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 20.9, + "authorized_date": "2024-03-05", + "authorized_datetime": null, + "category": [ + "Shops", + "Supermarkets and Groceries" + ], + "category_id": "19047000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "AndorbmbMKgjOazDKwrVBAVqp889Wvy1AEJ0B", + "logo_url": "https://plaid-merchant-logos.plaid.com/heb_466.png", + "name": "H-E-B", + "phone_number": null, + "type": "merchant", + "website": "heb.com" + } + ], + "date": "2024-03-05", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": "012" + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/heb_466.png", + "merchant_entity_id": "AndorbmbMKgjOazDKwrVBAVqp889Wvy1AEJ0B", + "merchant_name": "H-E-B", + "name": "H-E-B GAS #012", + "original_description": "H-E-B GAS #012", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "FOOD_AND_DRINK_GROCERIES", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "k7ZAaqkDn9IeLWvPMD3QTQmwjAae61sL6dod3", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "heb.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 19.7, + "authorized_date": "2024-03-05", + "authorized_datetime": null, + "category": [ + "Service", + "Food and Beverage" + ], + "category_id": "18021000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "WKk6bENeYwvVaLaY8EEOw8Koa2X72m2wJOk1Z", + "logo_url": "https://plaid-counterparty-logos.plaid.com/seamless_5.png", + "name": "Seamless", + "phone_number": null, + "type": "marketplace", + "website": "seamless.com" + } + ], + "date": "2024-03-08", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": "NY", + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": "Seamless", + "name": "Seamless", + "original_description": "SEAMLSSSTEINWAYGOURME SEAMLESS.COM NY", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "MEDIUM", + "detailed": "FOOD_AND_DRINK_RESTAURANT", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "leMA4KdDbvT9Rj8aDw3ASlqwZmdvGDipodRdz", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 41.83, + "authorized_date": "2024-03-07", + "authorized_datetime": null, + "category": [ + "Service", + "Business Services" + ], + "category_id": "18008000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "DbQM2AYXm3rBVBq741yqeNbN4LOgqO973rWNZ", + "logo_url": "https://plaid-merchant-logos.plaid.com/experian_337.png", + "name": "Experian", + "phone_number": null, + "type": "merchant", + "website": "experian.com" + } + ], + "date": "2024-03-08", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/experian_337.png", + "merchant_entity_id": "DbQM2AYXm3rBVBq741yqeNbN4LOgqO973rWNZ", + "merchant_name": "Experian", + "name": "Experian", + "original_description": "Experian", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "GENERAL_SERVICES_ACCOUNTING_AND_FINANCIAL_PLANNING", + "primary": "GENERAL_SERVICES" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_SERVICES.png", + "transaction_code": null, + "transaction_id": "bBdylJgXLku1ryVNQ9XehxReg34KG7tmbZ7Zg", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "experian.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 15.77, + "authorized_date": "2024-03-07", + "authorized_datetime": null, + "category": [ + "Shops", + "Supermarkets and Groceries" + ], + "category_id": "19047000", + "check_number": null, + "counterparties": [], + "date": "2024-03-08", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "ROCHE BROTHERS012", + "original_description": "ROCHE BROTHERS012", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "GENERAL_MERCHANDISE_OTHER_GENERAL_MERCHANDISE", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "mQ1ANkbDmRfb4yvJ6npMt6LmBj1NyEcgydXd7", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 32.63, + "authorized_date": "2024-03-07", + "authorized_datetime": null, + "category": [ + "Shops", + "Computers and Electronics" + ], + "category_id": "19013000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "05V8a0gZmq8Jk1B7V0nJNvvQEBYZa6r4jd3pm", + "logo_url": "https://plaid-merchant-logos.plaid.com/apple_65.png", + "name": "Apple Store", + "phone_number": null, + "type": "merchant", + "website": "apple.com" + } + ], + "date": "2024-03-08", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": "012" + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/apple_65.png", + "merchant_entity_id": "05V8a0gZmq8Jk1B7V0nJNvvQEBYZa6r4jd3pm", + "merchant_name": "Apple Store", + "name": "Apple Store", + "original_description": "APPLE STORE #R012", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "GENERAL_MERCHANDISE_ELECTRONICS", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "yGmrge5K4NFpDQweBL4yuPM35rxdXZi46XwXy", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "apple.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 5.16, + "authorized_date": "2024-03-07", + "authorized_datetime": null, + "category": [ + "Food and Drink" + ], + "category_id": "13000000", + "check_number": null, + "counterparties": [], + "date": "2024-03-07", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "COMPASS VENDING BURNABY BC", + "original_description": "COMPASS VENDING BURNABY BC", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "FOOD_AND_DRINK_VENDING_MACHINES", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "9q36eAK7P1iqGMPbA34yUAZV7NmLojI4xQgQ4", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 231.02, + "authorized_date": "2024-03-07", + "authorized_datetime": null, + "category": [ + "Shops", + "Department Stores" + ], + "category_id": "19018000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "bN0wJ6wvppDz375EzNJNQv9bBODam4qWOrE3k", + "logo_url": "https://plaid-merchant-logos.plaid.com/nordstrom_684.png", + "name": "Nordstrom", + "phone_number": null, + "type": "merchant", + "website": "nordstrom.com" + } + ], + "date": "2024-03-11", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/nordstrom_684.png", + "merchant_entity_id": "bN0wJ6wvppDz375EzNJNQv9bBODam4qWOrE3k", + "merchant_name": "Nordstrom", + "name": "Nordstrom Direct", + "original_description": "NORDSTROM DIRECT", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "GENERAL_MERCHANDISE_DEPARTMENT_STORES", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "vEGlLPADxdT7rVvMKoxpsbozq3NxkGiq6k1kv", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "nordstrom.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 137.47, + "authorized_date": "2024-03-09", + "authorized_datetime": null, + "category": [ + "Travel", + "Airlines and Aviation Services" + ], + "category_id": "22001000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "bMX8XMQbeoNK1jdBewBvq34JmV5wDBOLqKk74", + "logo_url": "https://plaid-merchant-logos.plaid.com/spirit_airlines_943.png", + "name": "Spirit Airlines", + "phone_number": null, + "type": "merchant", + "website": "spirit.com" + } + ], + "date": "2024-03-11", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/spirit_airlines_943.png", + "merchant_entity_id": "bMX8XMQbeoNK1jdBewBvq34JmV5wDBOLqKk74", + "merchant_name": "Spirit Airlines", + "name": "Spirit Airlines", + "original_description": "SPIRIT AIRL 0123456789012", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "TRAVEL_FLIGHTS", + "primary": "TRAVEL" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_TRAVEL.png", + "transaction_code": null, + "transaction_id": "RWmGP5oMzdtreRojdm9zi5wEvmqNVpHapbAbX", + "transaction_type": "special", + "unofficial_currency_code": null, + "website": "spirit.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 8.09, + "authorized_date": "2024-03-07", + "authorized_datetime": null, + "category": [ + "Service", + "Entertainment" + ], + "category_id": "18018000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "1D6004robEojMNXwKpYgrRY6DrLwzea58AaYE", + "logo_url": "https://plaid-merchant-logos.plaid.com/microsoft_xbox_637.png", + "name": "Microsoft Xbox", + "phone_number": null, + "type": "merchant", + "website": "xbox.com" + } + ], + "date": "2024-03-12", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": "WA", + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/microsoft_xbox_637.png", + "merchant_entity_id": "1D6004robEojMNXwKpYgrRY6DrLwzea58AaYE", + "merchant_name": "Microsoft Xbox", + "name": "MICROSOFT*XBOX LIVE GOLD MSBILL.INFO", + "original_description": "MICROSOFT*XBOX LIVE GOLD MSBILL.INFO WA", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "ENTERTAINMENT_VIDEO_GAMES", + "primary": "ENTERTAINMENT" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_ENTERTAINMENT.png", + "transaction_code": null, + "transaction_id": "6RrvP8d6aQt8RdaEAwWkFbyD6lRWjLi8DXeXx", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "xbox.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 4.09, + "authorized_date": "2024-03-09", + "authorized_datetime": null, + "category": [ + "Food and Drink", + "Restaurants", + "Fast Food" + ], + "category_id": "13005032", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "3LmdknrdwVy9vm0dqj417rLKeJXW7veV7eb2e", + "logo_url": "https://plaid-merchant-logos.plaid.com/kfc_546.png", + "name": "KFC", + "phone_number": null, + "type": "merchant", + "website": "kfc.com" + } + ], + "date": "2024-03-12", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/kfc_546.png", + "merchant_entity_id": "3LmdknrdwVy9vm0dqj417rLKeJXW7veV7eb2e", + "merchant_name": "KFC", + "name": "KFC", + "original_description": "KFC G012345", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "FOOD_AND_DRINK_FAST_FOOD", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "XyXrM5BG47fmPpGD7694U6qPyJX8decbKnLny", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "kfc.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 114.96, + "authorized_date": "2024-03-09", + "authorized_datetime": null, + "category": [ + "Shops", + "Computers and Electronics", + "Video Games" + ], + "category_id": "19013001", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "3oRMK5OMq55E6LeoK6JeeEQwv1Yv4e55YEVWX", + "logo_url": "https://plaid-merchant-logos.plaid.com/sony_playstation_927.png", + "name": "Sony Playstation", + "phone_number": null, + "type": "merchant", + "website": "playstation.com" + } + ], + "date": "2024-03-09", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/sony_playstation_927.png", + "merchant_entity_id": "3oRMK5OMq55E6LeoK6JeeEQwv1Yv4e55YEVWX", + "merchant_name": "Sony Playstation", + "name": "PLAYSTATION NETWORK", + "original_description": "PLAYSTATION NETWORK", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "ENTERTAINMENT_VIDEO_GAMES", + "primary": "ENTERTAINMENT" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_ENTERTAINMENT.png", + "transaction_code": null, + "transaction_id": "DPZBW5VqgbFP764zbpqmSvjWJDPg3bt3WaJa7", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "playstation.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 17.81, + "authorized_date": "2024-03-09", + "authorized_datetime": null, + "category": [ + "Shops", + "Supermarkets and Groceries" + ], + "category_id": "19047000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "AndorbmbMKgjOazDKwrVBAVqp889Wvy1AEJ0B", + "logo_url": "https://plaid-merchant-logos.plaid.com/heb_466.png", + "name": "H-E-B", + "phone_number": null, + "type": "merchant", + "website": "heb.com" + } + ], + "date": "2024-03-09", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": "012" + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/heb_466.png", + "merchant_entity_id": "AndorbmbMKgjOazDKwrVBAVqp889Wvy1AEJ0B", + "merchant_name": "H-E-B", + "name": "H-E-B GAS #012", + "original_description": "H-E-B GAS #012", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "FOOD_AND_DRINK_GROCERIES", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "VbRqQ5rLdPcn6RqVP4QdsXJG18VQ3Et9gPEPD", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "heb.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 18.75, + "authorized_date": "2024-03-09", + "authorized_datetime": null, + "category": [ + "Food and Drink", + "Restaurants", + "Coffee Shop" + ], + "category_id": "13005043", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "NZAJQ5wYdo1W1p39X5q5gpb15OMe39pj4pJBb", + "logo_url": "https://plaid-merchant-logos.plaid.com/starbucks_956.png", + "name": "Starbucks", + "phone_number": null, + "type": "merchant", + "website": "starbucks.com" + } + ], + "date": "2024-03-14", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": "WA", + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/starbucks_956.png", + "merchant_entity_id": "NZAJQ5wYdo1W1p39X5q5gpb15OMe39pj4pJBb", + "merchant_name": "Starbucks", + "name": "Starbucks", + "original_description": "STARBUCKS 012-012-0123 WA", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "FOOD_AND_DRINK_COFFEE", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "wWnqpjJldatQbrvJydjETKPDB3J4E9cPZomoM", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "starbucks.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 3.23, + "authorized_date": "2024-03-14", + "authorized_datetime": null, + "category": [ + "Shops", + "Supermarkets and Groceries" + ], + "category_id": "19047000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "LOW", + "entity_id": null, + "logo_url": null, + "name": "Gristedes", + "phone_number": null, + "type": "merchant", + "website": null + } + ], + "date": "2024-03-14", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": "012" + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": "Gristedes", + "name": "GRISTEDES # 012", + "original_description": "GRISTEDES # 012", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "FOOD_AND_DRINK_GROCERIES", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "5vK5Ng6bdetkX4dDA6NbSqZK7QDoXMu5K787j", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 43.28, + "authorized_date": "2024-03-10", + "authorized_datetime": null, + "category": [ + "Recreation", + "Arts and Entertainment" + ], + "category_id": "17001000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "LOW", + "entity_id": null, + "logo_url": null, + "name": "Tickets", + "phone_number": null, + "type": "merchant", + "website": null + } + ], + "date": "2024-03-15", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": "Tickets", + "name": "SeatGeek_Tickets", + "original_description": "SeatGeek_Tickets", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "ENTERTAINMENT_SPORTING_EVENTS_AMUSEMENT_PARKS_AND_MUSEUMS", + "primary": "ENTERTAINMENT" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_ENTERTAINMENT.png", + "transaction_code": null, + "transaction_id": "JMgVz59xnlhM1pyKljkeUAXZgLJDw6IB6gkgN", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 22.43, + "authorized_date": "2024-03-13", + "authorized_datetime": null, + "category": [ + "Recreation", + "Arts and Entertainment" + ], + "category_id": "17001000", + "check_number": null, + "counterparties": [], + "date": "2024-03-15", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": "CA", + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "Fandango", + "original_description": "FANDANGO FANDANGO.COM CA", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "ENTERTAINMENT_TV_AND_MOVIES", + "primary": "ENTERTAINMENT" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_ENTERTAINMENT.png", + "transaction_code": null, + "transaction_id": "k7ZAaqkDn9IeLWvPMD3QTQmwjAae61sL6dodg", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 22.19, + "authorized_date": "2024-03-14", + "authorized_datetime": null, + "category": [ + "Shops", + "Digital Purchase" + ], + "category_id": "19019000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "2gOwmq9qK56K60oDm3eLrREV2B2mVadkRn8MW", + "logo_url": "https://plaid-merchant-logos.plaid.com/amazon_44.png", + "name": "Amazon", + "phone_number": null, + "type": "merchant", + "website": "amazon.com" + } + ], + "date": "2024-03-15", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": "WA", + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/amazon_44.png", + "merchant_entity_id": "2gOwmq9qK56K60oDm3eLrREV2B2mVadkRn8MW", + "merchant_name": "Amazon", + "name": "AMAZON MKTPLACE PMTS AMZN.COM/BILL", + "original_description": "AMAZON MKTPLACE PMTS AMZN.COM/BILL WA", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "GENERAL_MERCHANDISE_ONLINE_MARKETPLACES", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "leMA4KdDbvT9Rj8aDw3ASlqwZmdvGDipodRdK", + "transaction_type": "digital", + "unofficial_currency_code": null, + "website": "amazon.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 29.77, + "authorized_date": "2024-03-13", + "authorized_datetime": null, + "category": [ + "Service" + ], + "category_id": "18000000", + "check_number": null, + "counterparties": [], + "date": "2024-03-13", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "STK*Shutterstock", + "original_description": "STK*Shutterstock", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "ENTERTAINMENT_MUSIC_AND_AUDIO", + "primary": "ENTERTAINMENT" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_ENTERTAINMENT.png", + "transaction_code": null, + "transaction_id": "qLgAex9DKrfNjEv5oDMaFebVapMmWGhgr7R74", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 31.79, + "authorized_date": "2024-03-13", + "authorized_datetime": null, + "category": [ + "Service", + "Subscription" + ], + "category_id": "18061000", + "check_number": null, + "counterparties": [], + "date": "2024-03-18", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "Sling TV", + "original_description": "Sling TV", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "ENTERTAINMENT_SPORTING_EVENTS_AMUSEMENT_PARKS_AND_MUSEUMS", + "primary": "ENTERTAINMENT" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_ENTERTAINMENT.png", + "transaction_code": null, + "transaction_id": "K18PB5Zdbqh17BVgqbRQhyoaA5z1deiRpA1Ad", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 2.45, + "authorized_date": "2024-03-13", + "authorized_datetime": null, + "category": [ + "Recreation", + "Gyms and Fitness Centers" + ], + "category_id": "17018000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "LOW", + "entity_id": null, + "logo_url": null, + "name": "Holdings", + "phone_number": null, + "type": "merchant", + "website": null + } + ], + "date": "2024-03-18", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": "Holdings", + "name": "BARRYS BOOTCAMP HOLDINGS", + "original_description": "BARRYS BOOTCAMP HOLDINGS", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "GENERAL_MERCHANDISE_OTHER_GENERAL_MERCHANDISE", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "rp8wQd9Drzc7XxVRZbBNsbxP5JMjG9i7J616K", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 86.96, + "authorized_date": "2024-03-14", + "authorized_datetime": null, + "category": [ + "Community", + "Education" + ], + "category_id": "12008000", + "check_number": null, + "counterparties": [], + "date": "2024-03-16", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": "NJ", + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "AWL*PEARSON EDUCATION PRSONCS.COM", + "original_description": "AWL*PEARSON EDUCATION PRSONCS.COM NJ", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "GENERAL_SERVICES_EDUCATION", + "primary": "GENERAL_SERVICES" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_SERVICES.png", + "transaction_code": null, + "transaction_id": "zkyz8Q9rNPCXgWQeyj9pIeqPWlmJpdhlNLQmx", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 16, + "authorized_date": "2024-03-16", + "authorized_datetime": null, + "category": [ + "Food and Drink", + "Restaurants", + "Fast Food" + ], + "category_id": "13005032", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "DDM7W339RYJwyjZ4A7v6O9m5jVooQWMrJoaO4", + "logo_url": "https://plaid-merchant-logos.plaid.com/jimmy_johns_539.png", + "name": "Jimmy John's", + "phone_number": null, + "type": "merchant", + "website": "jimmyjohns.com" + } + ], + "date": "2024-03-19", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/jimmy_johns_539.png", + "merchant_entity_id": "DDM7W339RYJwyjZ4A7v6O9m5jVooQWMrJoaO4", + "merchant_name": "Jimmy John's", + "name": "Jimmy Johns", + "original_description": "JIMMY JOHNS - 012 - EC", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "FOOD_AND_DRINK_RESTAURANT", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "B4ek869ZpGC41mDnjvVxuBdXVLjPRxC4M8gjd", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "jimmyjohns.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 1.31, + "authorized_date": "2024-03-19", + "authorized_datetime": null, + "category": [ + "Travel", + "Parking" + ], + "category_id": "22013000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "Aj7pLjAWWKKBmLzN1NNjaZjNppyjnoXw78qwz", + "logo_url": "https://plaid-merchant-logos.plaid.com/nyc_dot_parking_meters_692.png", + "name": "NYC DOT - Parking Meters", + "phone_number": null, + "type": "merchant", + "website": "nyc.gov/html/dot/html/motorist/meterpark.shtml" + } + ], + "date": "2024-03-20", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": "Long Island City", + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": "NY", + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/nyc_dot_parking_meters_692.png", + "merchant_entity_id": "Aj7pLjAWWKKBmLzN1NNjaZjNppyjnoXw78qwz", + "merchant_name": "NYC DOT - Parking Meters", + "name": "NYCDOT PARKING METERS", + "original_description": "NYCDOT PARKING METERS LONG IS CITY NY", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "TRANSPORTATION_PARKING", + "primary": "TRANSPORTATION" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_TRANSPORTATION.png", + "transaction_code": null, + "transaction_id": "3ylJapdb3jf8nK3A1z7JF3jlmQa5LBhZlnERz", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "nyc.gov/html/dot/html/motorist/meterpark.shtml" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 28, + "authorized_date": "2024-03-21", + "authorized_datetime": null, + "category": [ + "Shops", + "Computers and Electronics" + ], + "category_id": "19013000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "nqgNrWMbOpJkJD8Xa8RAvVn8NqaEzOjZXggbZ", + "logo_url": "https://plaid-merchant-logos.plaid.com/adobe_17.png", + "name": "Adobe", + "phone_number": null, + "type": "merchant", + "website": "adobe.com" + } + ], + "date": "2024-03-24", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/adobe_17.png", + "merchant_entity_id": "nqgNrWMbOpJkJD8Xa8RAvVn8NqaEzOjZXggbZ", + "merchant_name": "Adobe", + "name": "ADOBE *ACROPRO SUBS", + "original_description": "ADOBE *ACROPRO SUBS", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "GENERAL_SERVICES_OTHER_GENERAL_SERVICES", + "primary": "GENERAL_SERVICES" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_SERVICES.png", + "transaction_code": null, + "transaction_id": "xAbKo75qa4um5aZ8zndpUMd7gW5wbxU64VeBq", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "adobe.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 11.25, + "authorized_date": "2024-03-23", + "authorized_datetime": null, + "category": [ + "Travel" + ], + "category_id": "22000000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "KAJKk5XdbJEqb6Z7DdDnAqJQyLX0OmkAZqe75", + "logo_url": "https://plaid-merchant-logos.plaid.com/expedia_336.png", + "name": "Expedia", + "phone_number": null, + "type": "merchant", + "website": "expedia.com" + } + ], + "date": "2024-03-24", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/expedia_336.png", + "merchant_entity_id": "KAJKk5XdbJEqb6Z7DdDnAqJQyLX0OmkAZqe75", + "merchant_name": "Expedia", + "name": "EXPEDIA 0123456789012", + "original_description": "EXPEDIA 0123456789012", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "TRAVEL_FLIGHTS", + "primary": "TRAVEL" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_TRAVEL.png", + "transaction_code": null, + "transaction_id": "dx4ZK58XoWCvbXVZlNgaC9Rl5wkLExCJEQRax", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "expedia.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 8.23, + "authorized_date": "2024-03-24", + "authorized_datetime": null, + "category": [ + "Food and Drink", + "Restaurants" + ], + "category_id": "13005000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "EJ70Mg1YmVNWVyXj85wvmNzjzg5madJyLYgo1", + "logo_url": "https://plaid-merchant-logos.plaid.com/dairy_queen_265.png", + "name": "Dairy Queen", + "phone_number": null, + "type": "merchant", + "website": "dairyqueen.com" + } + ], + "date": "2024-03-24", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/dairy_queen_265.png", + "merchant_entity_id": "EJ70Mg1YmVNWVyXj85wvmNzjzg5madJyLYgo1", + "merchant_name": "Dairy Queen", + "name": "Dairy Queen", + "original_description": "Dairy Queen", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "FOOD_AND_DRINK_FAST_FOOD", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "azx7A59X1gc5orV6dPw3soqAjJ3zZysZ5QD3L", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "dairyqueen.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 22.5, + "authorized_date": "2024-03-24", + "authorized_datetime": null, + "category": [ + "Shops", + "Supermarkets and Groceries" + ], + "category_id": "19047000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "DgqEw70j77DbJqybaK2rmMq6Zzwjg68J7B7zo", + "logo_url": "https://plaid-merchant-logos.plaid.com/safeway_853.png", + "name": "Safeway", + "phone_number": null, + "type": "merchant", + "website": "safeway.com" + } + ], + "date": "2024-03-24", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": "0123" + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/safeway_853.png", + "merchant_entity_id": "DgqEw70j77DbJqybaK2rmMq6Zzwjg68J7B7zo", + "merchant_name": "Safeway", + "name": "Safeway", + "original_description": "SAFEWAY FUEL #0123", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "FOOD_AND_DRINK_GROCERIES", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "49qZ4oGbx7T873XDoebnFmlbdW4eDaFJbALMA", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "safeway.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 1255.28, + "authorized_date": "2024-03-21", + "authorized_datetime": null, + "category": [ + "Travel", + "Lodging", + "Hotels and Motels" + ], + "category_id": "22012003", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "b5JD7jwmQYwpb9raKaZbLjV8903dVXaJXm5ap", + "logo_url": "https://plaid-merchant-logos.plaid.com/airbnb_29.png", + "name": "Airbnb", + "phone_number": null, + "type": "merchant", + "website": "airbnb.com" + } + ], + "date": "2024-03-25", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/airbnb_29.png", + "merchant_entity_id": "b5JD7jwmQYwpb9raKaZbLjV8903dVXaJXm5ap", + "merchant_name": "Airbnb", + "name": "Airbnb", + "original_description": "Airbnb", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "TRAVEL_LODGING", + "primary": "TRAVEL" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_TRAVEL.png", + "transaction_code": null, + "transaction_id": "NokPd5gNlzfoV1byzGkls7JMP5G3Q9sy65QKK", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "airbnb.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 488.6, + "authorized_date": "2024-03-23", + "authorized_datetime": null, + "category": [ + "Service", + "Business Services", + "Printing and Publishing" + ], + "category_id": "18008001", + "check_number": null, + "counterparties": [], + "date": "2024-03-23", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "DRI*PRINTING SERVICES", + "original_description": "DRI*PRINTING SERVICES", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "GENERAL_MERCHANDISE_OTHER_GENERAL_MERCHANDISE", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "P8n745oWK3cnXKyW31x9slDB75xZEeio6WAvA", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 3.59, + "authorized_date": "2024-03-26", + "authorized_datetime": null, + "category": [ + "Food and Drink", + "Restaurants", + "Coffee Shop" + ], + "category_id": "13005043", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "VmnapWdRwMn50bwvEaKZRKNkQXW1LvNrwdLeW", + "logo_url": "https://plaid-counterparty-logos.plaid.com/toast_182.png", + "name": "Toast", + "phone_number": null, + "type": "payment_terminal", + "website": "pos.toasttab.com" + } + ], + "date": "2024-03-26", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "TST*GREGORYS COF", + "original_description": "TST*GREGORYS COF", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "MEDIUM", + "detailed": "FOOD_AND_DRINK_RESTAURANT", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "jjQ7dlP5GyCbNavw7rzpty4MQmk9opi6WLaAR", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 128.8, + "authorized_date": "2024-03-26", + "authorized_datetime": null, + "category": [ + "Service", + "Shipping and Freight" + ], + "category_id": "18058000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "VXWv7m925jyzYNrE3z0ep8Y838k7wab2qqY5Y", + "logo_url": "https://plaid-merchant-logos.plaid.com/ups_1072.png", + "name": "UPS", + "phone_number": null, + "type": "merchant", + "website": "ups.com" + } + ], + "date": "2024-03-26", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": "0123" + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/ups_1072.png", + "merchant_entity_id": "VXWv7m925jyzYNrE3z0ep8Y838k7wab2qqY5Y", + "merchant_name": "UPS", + "name": "UPS", + "original_description": "THE UPS STORE #0123", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "GENERAL_SERVICES_POSTAGE_AND_SHIPPING", + "primary": "GENERAL_SERVICES" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_SERVICES.png", + "transaction_code": null, + "transaction_id": "76zXjElb4Zt8RL4DAzM9F9Zwj8GW6DCdJnxpb", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "ups.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 8.63, + "authorized_date": "2024-03-26", + "authorized_datetime": null, + "category": [ + "Service", + "Food and Beverage" + ], + "category_id": "18021000", + "check_number": null, + "counterparties": [], + "date": "2024-03-26", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "*CHOPTCREATIVES", + "original_description": "LEVELUP*CHOPTCREATIVES", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": "Braintree", + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "FOOD_AND_DRINK_GROCERIES", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "edNwr51XgAcoARVZP68vsdRGzqom9Bur95mkB", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 21, + "authorized_date": "2024-03-26", + "authorized_datetime": null, + "category": [ + "Travel", + "Parking" + ], + "category_id": "22013000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "AypeXeN8WKnmvm7RAowe0a0Xr9b47dANe0MLk", + "logo_url": "https://plaid-merchant-logos.plaid.com/laz_parking_570.png", + "name": "LAZ Parking", + "phone_number": null, + "type": "merchant", + "website": "lazparking.com" + } + ], + "date": "2024-03-26", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/laz_parking_570.png", + "merchant_entity_id": "AypeXeN8WKnmvm7RAowe0a0Xr9b47dANe0MLk", + "merchant_name": "LAZ Parking", + "name": "LAZ PARKING 012345", + "original_description": "LAZ PARKING 012345", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "TRANSPORTATION_PARKING", + "primary": "TRANSPORTATION" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_TRANSPORTATION.png", + "transaction_code": null, + "transaction_id": "QEbZN5mMrxTnJ4XRxba9s9paZDyVQGCwm7Dem", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "lazparking.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 41.6, + "authorized_date": "2024-03-26", + "authorized_datetime": null, + "category": [ + "Service", + "Automotive" + ], + "category_id": "18006000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "pY09wg98N7bZ0mJeZLRO4755bbn7OzeAOAvDY", + "logo_url": "https://plaid-merchant-logos.plaid.com/jiffy_lube_538.png", + "name": "Jiffy Lube", + "phone_number": null, + "type": "merchant", + "website": "jiffylube.com" + } + ], + "date": "2024-03-26", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": "109 N Main St", + "city": "Mauldin", + "country": null, + "lat": 34.779926, + "lon": -82.310928, + "postal_code": "29662", + "region": "SC", + "store_number": "0123" + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/jiffy_lube_538.png", + "merchant_entity_id": "pY09wg98N7bZ0mJeZLRO4755bbn7OzeAOAvDY", + "merchant_name": "Jiffy Lube", + "name": "Jiffy Lube", + "original_description": "JIFFY LUBE #0123", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "GENERAL_SERVICES_AUTOMOTIVE", + "primary": "GENERAL_SERVICES" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_SERVICES.png", + "transaction_code": null, + "transaction_id": "ZvlBL5eMPQtnXDV6QrR9sRex8pZayMceqXGly", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "jiffylube.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 147.75, + "authorized_date": "2024-03-26", + "authorized_datetime": null, + "category": [ + "Travel", + "Rail" + ], + "category_id": "22015000", + "check_number": null, + "counterparties": [], + "date": "2024-03-28", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "Amtrak", + "original_description": "AMTRAK", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "ENTERTAINMENT_SPORTING_EVENTS_AMUSEMENT_PARKS_AND_MUSEUMS", + "primary": "ENTERTAINMENT" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_ENTERTAINMENT.png", + "transaction_code": null, + "transaction_id": "MpWPx5o4yrcpZvwQrdbMuwXJg8Eze3fL6P1yJ", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 30.01, + "authorized_date": "2024-03-26", + "authorized_datetime": null, + "category": [ + "Service", + "Food and Beverage" + ], + "category_id": "18021000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "YNRJg5o2djJLv52nBA1Yn1KpL858egYVo4dpm", + "logo_url": "https://plaid-counterparty-logos.plaid.com/doordash_1.png", + "name": "DoorDash", + "phone_number": null, + "type": "marketplace", + "website": "doordash.com" + } + ], + "date": "2024-03-30", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": "DoorDash", + "name": "Wingstop", + "original_description": "DOORDASH*WINGSTOP", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "MEDIUM", + "detailed": "FOOD_AND_DRINK_RESTAURANT", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "1bXWx1mVzNcQvyzEo34JTXVmegwx94tpjerow", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 21.04, + "authorized_date": "2024-03-30", + "authorized_datetime": null, + "category": [ + "Food and Drink", + "Restaurants" + ], + "category_id": "13005000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "EZ92VM3NzEaVdzq5eRB2YOb14a3OYk3gRvyZQ", + "logo_url": "https://plaid-counterparty-logos.plaid.com/uber_eats_2.png", + "name": "Uber Eats", + "phone_number": null, + "type": "marketplace", + "website": "ubereats.com" + } + ], + "date": "2024-03-30", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": "Uber Eats", + "name": "Uber Eats", + "original_description": "UBER EATS", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "FOOD_AND_DRINK_RESTAURANT", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "LLEP35oamKfLwWGzKa8mCk6Apgx1W7ukjpEar", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 7.24, + "authorized_date": "2024-03-30", + "authorized_datetime": null, + "category": [ + "Shops", + "Hardware Store" + ], + "category_id": "19030000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "kVawvV6p0R25gKw3qbp4Kq7kEzDdY5RnjV7RK", + "logo_url": "https://plaid-merchant-logos.plaid.com/home_depot_491.png", + "name": "The Home Depot", + "phone_number": null, + "type": "merchant", + "website": "homedepot.com" + } + ], + "date": "2024-03-30", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/home_depot_491.png", + "merchant_entity_id": "kVawvV6p0R25gKw3qbp4Kq7kEzDdY5RnjV7RK", + "merchant_name": "The Home Depot", + "name": "Home Depot", + "original_description": "THE HOME DEPOT 012", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "HOME_IMPROVEMENT_HARDWARE", + "primary": "HOME_IMPROVEMENT" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_HOME_IMPROVEMENT.png", + "transaction_code": null, + "transaction_id": "p1oA739DqKhR4y8Xk1ZWcxJrdLn6oGtpoVzn4", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "homedepot.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 18, + "authorized_date": "2024-03-30", + "authorized_datetime": null, + "category": [ + "Travel", + "Rail" + ], + "category_id": "22015000", + "check_number": null, + "counterparties": [], + "date": "2024-03-30", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "MTA*LIRR ETIX TICKET", + "original_description": "MTA*LIRR ETIX TICKET", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "TRANSPORTATION_PUBLIC_TRANSIT", + "primary": "TRANSPORTATION" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_TRANSPORTATION.png", + "transaction_code": null, + "transaction_id": "oMpyjB9Dlqhb4v8gkyn6tbzMpZy5G3ioq7byj", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 28, + "authorized_date": "2024-03-30", + "authorized_datetime": null, + "category": [ + "Travel", + "Airlines and Aviation Services" + ], + "category_id": "22001000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "NKDjqyAdQQzpyeD8qpLnX0D6yvLe2KYKYYzQ4", + "logo_url": "https://plaid-merchant-logos.plaid.com/united_airlines_1065.png", + "name": "United Airlines", + "phone_number": null, + "type": "merchant", + "website": "united.com" + } + ], + "date": "2024-03-30", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": "TX", + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/united_airlines_1065.png", + "merchant_entity_id": "NKDjqyAdQQzpyeD8qpLnX0D6yvLe2KYKYYzQ4", + "merchant_name": "United Airlines", + "name": "UNITED 0123456789012345-012-0123", + "original_description": "UNITED 0123456789012345-012-0123 TX", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "HIGH", + "detailed": "TRAVEL_FLIGHTS", + "primary": "TRAVEL" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_TRAVEL.png", + "transaction_code": null, + "transaction_id": "g4j7B5kXEnCwdLV7NzQPHV59dRBP8WcE8n516", + "transaction_type": "special", + "unofficial_currency_code": null, + "website": "united.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 22.5, + "authorized_date": "2024-03-26", + "authorized_datetime": null, + "category": [ + "Travel", + "Airlines and Aviation Services" + ], + "category_id": "22001000", + "check_number": null, + "counterparties": [], + "date": "2024-03-27", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "SWA*EARLYBRD0123456789012", + "original_description": "SWA*EARLYBRD0123456789012", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "GENERAL_MERCHANDISE_OTHER_GENERAL_MERCHANDISE", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "8lBZ7kqmNMflM6N1rBb8udzkGwyA5MuW3L8m1", + "transaction_type": "special", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 34.89, + "authorized_date": "2024-03-26", + "authorized_datetime": null, + "category": [ + "Shops", + "Supermarkets and Groceries" + ], + "category_id": "19047000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "7mk1K28bOEO76459EoRBN498DgKgdnY73qbgn", + "logo_url": "https://plaid-merchant-logos.plaid.com/trader_joes_1041.png", + "name": "Trader Joe's", + "phone_number": null, + "type": "merchant", + "website": "traderjoes.com" + } + ], + "date": "2024-03-29", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": "012" + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/trader_joes_1041.png", + "merchant_entity_id": "7mk1K28bOEO76459EoRBN498DgKgdnY73qbgn", + "merchant_name": "Trader Joe's", + "name": "Trader Joe's", + "original_description": "TRADER JOE'S #012", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "FOOD_AND_DRINK_GROCERIES", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "EjM3A5vK8mCjLea1GE3mCyom95Prvki4xkmlQ", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "traderjoes.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 27.93, + "authorized_date": "2024-03-29", + "authorized_datetime": null, + "category": [ + "Recreation", + "Arts and Entertainment" + ], + "category_id": "17001000", + "check_number": null, + "counterparties": [], + "date": "2024-03-29", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "LUCKY STRIKE JILLIANS", + "original_description": "LUCKY STRIKE JILLIANS", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "ENTERTAINMENT_SPORTING_EVENTS_AMUSEMENT_PARKS_AND_MUSEUMS", + "primary": "ENTERTAINMENT" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_ENTERTAINMENT.png", + "transaction_code": null, + "transaction_id": "Wm6kZ5zMajudb4XV6nyafB8VgNb3znC6Z1jE8", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 3.47, + "authorized_date": "2024-03-29", + "authorized_datetime": null, + "category": [ + "Food and Drink", + "Restaurants" + ], + "category_id": "13005000", + "check_number": null, + "counterparties": [], + "date": "2024-03-29", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "TOUS LES JOURS", + "original_description": "TOUS LES JOURS", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "GENERAL_MERCHANDISE_OTHER_GENERAL_MERCHANDISE", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "Aa7KgRpVLAhamWlkAvD3s8Dl5KZ7brF9rA5Pm", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 11.21, + "authorized_date": "2024-03-29", + "authorized_datetime": null, + "category": [ + "Shops", + "Bookstores" + ], + "category_id": "19009000", + "check_number": null, + "counterparties": [], + "date": "2024-03-29", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "Audible", + "original_description": "Audible.com", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "GENERAL_MERCHANDISE_OTHER_GENERAL_MERCHANDISE", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "GeLdq5ozW9Te8Jd4MGvPT84MZDwPW7F6MPo3L", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 19.29, + "authorized_date": "2024-03-28", + "authorized_datetime": null, + "category": [ + "Food and Drink", + "Restaurants", + "Fast Food" + ], + "category_id": "13005032", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "NXAJN1bDAZYjpDKY7Wr5JjzVmV7nnVY171jze", + "logo_url": "https://plaid-merchant-logos.plaid.com/shake_shack_887.png", + "name": "Shake Shack", + "phone_number": null, + "type": "merchant", + "website": "shakeshack.com" + } + ], + "date": "2024-04-01", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/shake_shack_887.png", + "merchant_entity_id": "NXAJN1bDAZYjpDKY7Wr5JjzVmV7nnVY171jze", + "merchant_name": "Shake Shack", + "name": "Shake Shack", + "original_description": "SHAKE SHACK - 0123", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "FOOD_AND_DRINK_FAST_FOOD", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "nZLAPzwDylibQdva8jeDtG1eMJoEWbtAlWQb7", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "shakeshack.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 17.24, + "authorized_date": "2024-03-29", + "authorized_datetime": null, + "category": [ + "Food and Drink", + "Restaurants" + ], + "category_id": "13005000", + "check_number": null, + "counterparties": [], + "date": "2024-04-01", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "*GUYS 0123 QSR", + "original_description": "*GUYS 0123 QSR", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "ENTERTAINMENT_SPORTING_EVENTS_AMUSEMENT_PARKS_AND_MUSEUMS", + "primary": "ENTERTAINMENT" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_ENTERTAINMENT.png", + "transaction_code": null, + "transaction_id": "bBdylJgXLku1ryVNQ9XehxReg34KG7tmbZ7qg", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 4.49, + "authorized_date": "2024-03-29", + "authorized_datetime": null, + "category": [ + "Service", + "Entertainment" + ], + "category_id": "18018000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "1D6004robEojMNXwKpYgrRY6DrLwzea58AaYE", + "logo_url": "https://plaid-merchant-logos.plaid.com/microsoft_xbox_637.png", + "name": "Microsoft Xbox", + "phone_number": null, + "type": "merchant", + "website": "xbox.com" + } + ], + "date": "2024-04-01", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": "WA", + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/microsoft_xbox_637.png", + "merchant_entity_id": "1D6004robEojMNXwKpYgrRY6DrLwzea58AaYE", + "merchant_name": "Microsoft Xbox", + "name": "Microsoft*Xbox msbill.info", + "original_description": "Microsoft*Xbox msbill.info WA", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "ENTERTAINMENT_VIDEO_GAMES", + "primary": "ENTERTAINMENT" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_ENTERTAINMENT.png", + "transaction_code": null, + "transaction_id": "mQ1ANkbDmRfb4yvJ6npMt6LmBj1NyEcgydXJ7", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "xbox.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 22.5, + "authorized_date": "2024-03-30", + "authorized_datetime": null, + "category": [ + "Travel", + "Public Transportation Services" + ], + "category_id": "22014000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "1e939eD5j7WRO8W2VW2MJqX2AXBv37qezRQ73", + "logo_url": "https://plaid-merchant-logos.plaid.com/metropolitan_transportation_authority_632.png", + "name": "MTA", + "phone_number": null, + "type": "merchant", + "website": "mta.info" + } + ], + "date": "2024-04-01", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/metropolitan_transportation_authority_632.png", + "merchant_entity_id": "1e939eD5j7WRO8W2VW2MJqX2AXBv37qezRQ73", + "merchant_name": "MTA", + "name": "NYCT EASYPAY PROGRAM", + "original_description": "NYCT EASYPAY PROGRAM", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "HIGH", + "detailed": "TRANSPORTATION_PUBLIC_TRANSIT", + "primary": "TRANSPORTATION" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_TRANSPORTATION.png", + "transaction_code": null, + "transaction_id": "yGmrge5K4NFpDQweBL4yuPM35rxdXZi46XwAy", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "mta.info" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 1781.34, + "authorized_date": "2024-03-31", + "authorized_datetime": null, + "category": [ + "Food and Drink", + "Restaurants" + ], + "category_id": "13005000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "LOW", + "entity_id": null, + "logo_url": null, + "name": "LLC", + "phone_number": null, + "type": "merchant", + "website": null + } + ], + "date": "2024-04-01", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": "LLC", + "name": "TRUDOOR LLC", + "original_description": "TRUDOOR LLC", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "GENERAL_MERCHANDISE_OTHER_GENERAL_MERCHANDISE", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "9q36eAK7P1iqGMPbA34yUAZV7NmLojI4xQgD4", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 12.54, + "authorized_date": "2024-03-31", + "authorized_datetime": null, + "category": [ + "Food and Drink", + "Restaurants" + ], + "category_id": "13005000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "ME06LDXADdZ0wOZKpJjV45OM59OmLMZ39Dr7r", + "logo_url": "https://plaid-merchant-logos.plaid.com/red_lobster_813.png", + "name": "Red Lobster", + "phone_number": null, + "type": "merchant", + "website": "redlobster.com" + } + ], + "date": "2024-04-01", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/red_lobster_813.png", + "merchant_entity_id": "ME06LDXADdZ0wOZKpJjV45OM59OmLMZ39Dr7r", + "merchant_name": "Red Lobster", + "name": "Red Lobster", + "original_description": "RED LOBSTER 0123", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "FOOD_AND_DRINK_RESTAURANT", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "vEGlLPADxdT7rVvMKoxpsbozq3NxkGiq6k1Rv", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "redlobster.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 247.5, + "authorized_date": "2024-04-01", + "authorized_datetime": null, + "category": [ + "Food and Drink", + "Restaurants" + ], + "category_id": "13005000", + "check_number": null, + "counterparties": [], + "date": "2024-04-01", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "VIATORTRIPADVISOR US", + "original_description": "VIATORTRIPADVISOR US", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "GENERAL_MERCHANDISE_OTHER_GENERAL_MERCHANDISE", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "RWmGP5oMzdtreRojdm9zi5wEvmqNVpHapbA4X", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 125.22, + "authorized_date": "2024-04-01", + "authorized_datetime": null, + "category": [ + "Travel", + "Lodging" + ], + "category_id": "22012000", + "check_number": null, + "counterparties": [], + "date": "2024-04-01", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": "WA", + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "Hotels.com", + "original_description": "HOTELS.COM012345678901 HOTELS.COM WA", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "TRAVEL_LODGING", + "primary": "TRAVEL" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_TRAVEL.png", + "transaction_code": null, + "transaction_id": "6RrvP8d6aQt8RdaEAwWkFbyD6lRWjLi8DXe3x", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 42.45, + "authorized_date": "2024-03-28", + "authorized_datetime": null, + "category": [ + "Food and Drink", + "Restaurants" + ], + "category_id": "13005000", + "check_number": null, + "counterparties": [], + "date": "2024-03-31", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": "Shaws", + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": "0123" + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "Shaws", + "original_description": "SHAWS #0123", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "FOOD_AND_DRINK_GROCERIES", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "XyXrM5BG47fmPpGD7694U6qPyJX8decbKnLEy", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 73.16, + "authorized_date": "2024-03-31", + "authorized_datetime": null, + "category": [ + "Shops", + "Supermarkets and Groceries" + ], + "category_id": "19047000", + "check_number": null, + "counterparties": [], + "date": "2024-03-31", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": "012" + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "Raley's", + "original_description": "RALEY'S #012", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "FOOD_AND_DRINK_GROCERIES", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "DPZBW5VqgbFP764zbpqmSvjWJDPg3bt3WaJQ7", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 67.49, + "authorized_date": "2024-03-31", + "authorized_datetime": null, + "category": [ + "Shops", + "Automotive", + "Car Parts and Accessories" + ], + "category_id": "19005006", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": null, + "logo_url": null, + "name": "Pep Boys", + "phone_number": null, + "type": "merchant", + "website": null + } + ], + "date": "2024-03-31", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": "2491 Aramingo Ave", + "city": "Philadelphia", + "country": null, + "lat": 39.974564, + "lon": -75.11924, + "postal_code": "19125", + "region": "PA", + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": "Pep Boys", + "name": "PEPBOYS STORE 012", + "original_description": "PEPBOYS STORE 012", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "GENERAL_SERVICES_AUTOMOTIVE", + "primary": "GENERAL_SERVICES" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_SERVICES.png", + "transaction_code": null, + "transaction_id": "VbRqQ5rLdPcn6RqVP4QdsXJG18VQ3Et9gPEdD", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 18.75, + "authorized_date": "2024-03-31", + "authorized_datetime": null, + "category": [ + "Food and Drink", + "Restaurants", + "Coffee Shop" + ], + "category_id": "13005043", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "NZAJQ5wYdo1W1p39X5q5gpb15OMe39pj4pJBb", + "logo_url": "https://plaid-merchant-logos.plaid.com/starbucks_956.png", + "name": "Starbucks", + "phone_number": null, + "type": "merchant", + "website": "starbucks.com" + } + ], + "date": "2024-03-31", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/starbucks_956.png", + "merchant_entity_id": "NZAJQ5wYdo1W1p39X5q5gpb15OMe39pj4pJBb", + "merchant_name": "Starbucks", + "name": "Starbucks Card", + "original_description": "STARBUCKS CARD RELOAD 012-012-0123 ON", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "FOOD_AND_DRINK_COFFEE", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "wWnqpjJldatQbrvJydjETKPDB3J4E9cPZomVM", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "starbucks.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 26.66, + "authorized_date": "2024-03-30", + "authorized_datetime": null, + "category": [ + "Service" + ], + "category_id": "18000000", + "check_number": null, + "counterparties": [], + "date": "2024-04-02", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "HP *INSTANT INK", + "original_description": "HP *INSTANT INK", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "GENERAL_MERCHANDISE_OTHER_GENERAL_MERCHANDISE", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "5vK5Ng6bdetkX4dDA6NbSqZK7QDoXMu5K78dj", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 87.73, + "authorized_date": "2024-03-31", + "authorized_datetime": null, + "category": [ + "Recreation", + "Arts and Entertainment" + ], + "category_id": "17001000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "LOW", + "entity_id": null, + "logo_url": null, + "name": "Tickets LLC", + "phone_number": null, + "type": "merchant", + "website": null + } + ], + "date": "2024-04-02", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": "Tickets LLC", + "name": "ATOM TICKETS, LLC", + "original_description": "ATOM TICKETS, LLC", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "ENTERTAINMENT_SPORTING_EVENTS_AMUSEMENT_PARKS_AND_MUSEUMS", + "primary": "ENTERTAINMENT" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_ENTERTAINMENT.png", + "transaction_code": null, + "transaction_id": "JMgVz59xnlhM1pyKljkeUAXZgLJDw6IB6gkJN", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 50.75, + "authorized_date": "2024-04-01", + "authorized_datetime": null, + "category": [ + "Travel", + "Gas Stations" + ], + "category_id": "22009000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "dr39NnJ5V3EZ9W21yQraB82bk9Bdwo6vwO7aD", + "logo_url": "https://plaid-merchant-logos.plaid.com/sunoco_977.png", + "name": "Sunoco", + "phone_number": null, + "type": "merchant", + "website": "sunoco.com" + } + ], + "date": "2024-04-02", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/sunoco_977.png", + "merchant_entity_id": "dr39NnJ5V3EZ9W21yQraB82bk9Bdwo6vwO7aD", + "merchant_name": "Sunoco", + "name": "Sunoco", + "original_description": "SUNOCO 0123456789", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "TRANSPORTATION_GAS", + "primary": "TRANSPORTATION" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_TRANSPORTATION.png", + "transaction_code": null, + "transaction_id": "k7ZAaqkDn9IeLWvPMD3QTQmwjAae61sL6dopg", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "sunoco.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 20.44, + "authorized_date": "2024-04-01", + "authorized_datetime": null, + "category": [ + "Food and Drink", + "Restaurants" + ], + "category_id": "13005000", + "check_number": null, + "counterparties": [], + "date": "2024-04-02", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "Subway", + "original_description": "Subway", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "FOOD_AND_DRINK_FAST_FOOD", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "leMA4KdDbvT9Rj8aDw3ASlqwZmdvGDipodR7K", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 7.87, + "authorized_date": "2024-04-02", + "authorized_datetime": null, + "category": [ + "Shops", + "Convenience Stores" + ], + "category_id": "19015000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "653VyK5wvdzKeawWqXpWv0XDXN1BBomVg7LBR", + "logo_url": "https://plaid-merchant-logos.plaid.com/bucees_150.png", + "name": "Buc-ee's", + "phone_number": null, + "type": "merchant", + "website": "buc-ees.com" + } + ], + "date": "2024-04-02", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": "899 Oyster Creek Dr", + "city": "Lake Jackson", + "country": null, + "lat": null, + "lon": null, + "postal_code": "77566", + "region": "TX", + "store_number": "01" + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/bucees_150.png", + "merchant_entity_id": "653VyK5wvdzKeawWqXpWv0XDXN1BBomVg7LBR", + "merchant_name": "Buc-ee's", + "name": "BUC-EE'S #01", + "original_description": "BUC-EE'S #01", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "GENERAL_MERCHANDISE_CONVENIENCE_STORES", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "qLgAex9DKrfNjEv5oDMaFebVapMmWGhgr7RM4", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "buc-ees.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 31.07, + "authorized_date": "2024-03-31", + "authorized_datetime": null, + "category": [ + "Shops", + "Food and Beverage Store" + ], + "category_id": "19025000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "LOW", + "entity_id": null, + "logo_url": null, + "name": "Jo-ann Fabric \u0026 Craft Stores", + "phone_number": null, + "type": "merchant", + "website": null + } + ], + "date": "2024-04-04", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": "Jo-ann Fabric \u0026 Craft Stores", + "name": "Jo-Ann Fabric \u0026 Craft", + "original_description": "Jo-Ann Fabric \u0026 Craft Stores", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "GENERAL_MERCHANDISE_GIFTS_AND_NOVELTIES", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "K18PB5Zdbqh17BVgqbRQhyoaA5z1deiRpA1Nd", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 7.05, + "authorized_date": "2024-03-31", + "authorized_datetime": null, + "category": [ + "Travel", + "Car and Truck Rentals" + ], + "category_id": "22005000", + "check_number": null, + "counterparties": [], + "date": "2024-04-03", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "GETAROUND.COM GETAROUN", + "original_description": "GETAROUND.COM GETAROUN", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "TRAVEL_RENTAL_CARS", + "primary": "TRAVEL" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_TRAVEL.png", + "transaction_code": null, + "transaction_id": "rp8wQd9Drzc7XxVRZbBNsbxP5JMjG9i7J61MK", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 8.19, + "authorized_date": "2024-04-03", + "authorized_datetime": null, + "category": [ + "Travel", + "Car and Truck Rentals" + ], + "category_id": "22005000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "5QWXY2baaa5WjMr6pov2y079oOv4pWwq34nwB", + "logo_url": "https://plaid-merchant-logos.plaid.com/uhaul_1057.png", + "name": "U-Haul", + "phone_number": null, + "type": "merchant", + "website": "uhaul.com" + } + ], + "date": "2024-04-03", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/uhaul_1057.png", + "merchant_entity_id": "5QWXY2baaa5WjMr6pov2y079oOv4pWwq34nwB", + "merchant_name": "U-Haul", + "name": "U-Haul", + "original_description": "U-HAUL MOVING \u0026 STORAGE O", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "GENERAL_SERVICES_POSTAGE_AND_SHIPPING", + "primary": "GENERAL_SERVICES" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_SERVICES.png", + "transaction_code": null, + "transaction_id": "zkyz8Q9rNPCXgWQeyj9pIeqPWlmJpdhlNLQQx", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "uhaul.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 54.46, + "authorized_date": "2024-04-03", + "authorized_datetime": null, + "category": [ + "Shops", + "Supermarkets and Groceries" + ], + "category_id": "19047000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "LOW", + "entity_id": null, + "logo_url": null, + "name": "T\u0026t Supermarket", + "phone_number": null, + "type": "merchant", + "website": null + } + ], + "date": "2024-04-03", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": "012" + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": "T\u0026t Supermarket", + "name": "T\u0026T SUPERMARKET #012", + "original_description": "T\u0026T SUPERMARKET #012", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "FOOD_AND_DRINK_GROCERIES", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "B4ek869ZpGC41mDnjvVxuBdXVLjPRxC4M8ggd", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 14.6, + "authorized_date": "2024-04-01", + "authorized_datetime": null, + "category": [ + "Food and Drink", + "Restaurants" + ], + "category_id": "13005000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "kpvEdVDo86ka3N2mzMbZrED6No8q35k2kpgAa", + "logo_url": "https://plaid-merchant-logos.plaid.com/jasons_deli_532.png", + "name": "Jason's Deli", + "phone_number": null, + "type": "merchant", + "website": "jasonsdeli.com" + } + ], + "date": "2024-04-05", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/jasons_deli_532.png", + "merchant_entity_id": "kpvEdVDo86ka3N2mzMbZrED6No8q35k2kpgAa", + "merchant_name": "Jason's Deli", + "name": "Jason's Deli", + "original_description": "Jason's Deli", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "FOOD_AND_DRINK_RESTAURANT", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "3ylJapdb3jf8nK3A1z7JF3jlmQa5LBhZlnEEz", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "jasonsdeli.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 12.74, + "authorized_date": "2024-04-03", + "authorized_datetime": null, + "category": [ + "Travel", + "Airlines and Aviation Services" + ], + "category_id": "22001000", + "check_number": null, + "counterparties": [], + "date": "2024-04-06", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "UNITED", + "original_description": "UNITED", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "GENERAL_MERCHANDISE_OTHER_GENERAL_MERCHANDISE", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "xAbKo75qa4um5aZ8zndpUMd7gW5wbxU64Veeq", + "transaction_type": "special", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 3.74, + "authorized_date": "2024-04-05", + "authorized_datetime": null, + "category": [ + "Shops", + "Music, Video and DVD" + ], + "category_id": "19036000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "z3XzRe488pMdo7NAnL44L7rv9L550berky6mK", + "logo_url": "https://plaid-merchant-logos.plaid.com/apple_itunes_1434.png", + "name": "Apple iTunes", + "phone_number": null, + "type": "merchant", + "website": "apple.com/itunes" + } + ], + "date": "2024-04-07", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": "CA", + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/apple_itunes_1434.png", + "merchant_entity_id": "z3XzRe488pMdo7NAnL44L7rv9L550berky6mK", + "merchant_name": "Apple iTunes", + "name": "iTunes", + "original_description": "APL*ITUNES.COM/BILL 012-012-0123 CA", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": "Apple", + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "ENTERTAINMENT_MUSIC_AND_AUDIO", + "primary": "ENTERTAINMENT" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_ENTERTAINMENT.png", + "transaction_code": null, + "transaction_id": "dx4ZK58XoWCvbXVZlNgaC9Rl5wkLExCJEQRRx", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "apple.com/itunes" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 7.99, + "authorized_date": "2024-04-07", + "authorized_datetime": null, + "category": [ + "Shops", + "Computers and Electronics", + "Video Games" + ], + "category_id": "19013001", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "1D6004robEojMNXwKpYgrRY6DrLwzea58AaYE", + "logo_url": "https://plaid-merchant-logos.plaid.com/microsoft_xbox_637.png", + "name": "Microsoft Xbox", + "phone_number": null, + "type": "merchant", + "website": "xbox.com" + } + ], + "date": "2024-04-07", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/microsoft_xbox_637.png", + "merchant_entity_id": "1D6004robEojMNXwKpYgrRY6DrLwzea58AaYE", + "merchant_name": "Microsoft Xbox", + "name": "Xbox Live", + "original_description": "Xbox Live", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "ENTERTAINMENT_VIDEO_GAMES", + "primary": "ENTERTAINMENT" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_ENTERTAINMENT.png", + "transaction_code": null, + "transaction_id": "azx7A59X1gc5orV6dPw3soqAjJ3zZysZ5QDDL", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "xbox.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 6.5, + "authorized_date": "2024-04-05", + "authorized_datetime": null, + "category": [ + "Food and Drink", + "Restaurants", + "Coffee Shop" + ], + "category_id": "13005043", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "NZAJQ5wYdo1W1p39X5q5gpb15OMe39pj4pJBb", + "logo_url": "https://plaid-merchant-logos.plaid.com/starbucks_956.png", + "name": "Starbucks", + "phone_number": null, + "type": "merchant", + "website": "starbucks.com" + } + ], + "date": "2024-04-08", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/starbucks_956.png", + "merchant_entity_id": "NZAJQ5wYdo1W1p39X5q5gpb15OMe39pj4pJBb", + "merchant_name": "Starbucks", + "name": "Starbucks", + "original_description": "STARBUCKS STORE 0123", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "FOOD_AND_DRINK_COFFEE", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "49qZ4oGbx7T873XDoebnFmlbdW4eDaFJbALLA", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "starbucks.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 10.41, + "authorized_date": "2024-04-07", + "authorized_datetime": null, + "category": [ + "Food and Drink", + "Restaurants", + "Coffee Shop" + ], + "category_id": "13005043", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "p64nrAXvN7r7mjrdp0qNKnB137Da6BWbbrEwz", + "logo_url": "https://plaid-merchant-logos.plaid.com/dunkin_donuts_305.png", + "name": "Dunkin'", + "phone_number": null, + "type": "merchant", + "website": "dunkindonuts.com" + } + ], + "date": "2024-04-08", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": "012345" + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/dunkin_donuts_305.png", + "merchant_entity_id": "p64nrAXvN7r7mjrdp0qNKnB137Da6BWbbrEwz", + "merchant_name": "Dunkin'", + "name": "DD/BR #012345 Q01", + "original_description": "DD/BR #012345 Q01", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "FOOD_AND_DRINK_COFFEE", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "NokPd5gNlzfoV1byzGkls7JMP5G3Q9sy65QQK", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "dunkindonuts.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 361.28, + "authorized_date": "2024-04-07", + "authorized_datetime": null, + "category": [ + "Travel" + ], + "category_id": "22000000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "KAJKk5XdbJEqb6Z7DdDnAqJQyLX0OmkAZqe75", + "logo_url": "https://plaid-merchant-logos.plaid.com/expedia_336.png", + "name": "Expedia", + "phone_number": null, + "type": "merchant", + "website": "expedia.com" + } + ], + "date": "2024-04-08", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/expedia_336.png", + "merchant_entity_id": "KAJKk5XdbJEqb6Z7DdDnAqJQyLX0OmkAZqe75", + "merchant_name": "Expedia", + "name": "Expedia", + "original_description": "Expedia", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "TRAVEL_FLIGHTS", + "primary": "TRAVEL" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_TRAVEL.png", + "transaction_code": null, + "transaction_id": "P8n745oWK3cnXKyW31x9slDB75xZEeio6WAAA", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "expedia.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 2.34, + "authorized_date": "2024-04-07", + "authorized_datetime": null, + "category": [ + "Food and Drink", + "Restaurants", + "Fast Food" + ], + "category_id": "13005032", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "16RXA67KaQVW2JnKrkqndbVkpZW8ykA8YAB28", + "logo_url": "https://plaid-merchant-logos.plaid.com/innout_burger_517.png", + "name": "In-N-Out Burger", + "phone_number": null, + "type": "merchant", + "website": "in-n-out.com" + } + ], + "date": "2024-04-12", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": "11455 Laurel Canyon Blvd", + "city": "San Fernando", + "country": null, + "lat": null, + "lon": null, + "postal_code": "91340", + "region": "CA", + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/innout_burger_517.png", + "merchant_entity_id": "16RXA67KaQVW2JnKrkqndbVkpZW8ykA8YAB28", + "merchant_name": "In-N-Out Burger", + "name": "In-N-Out Burger", + "original_description": "IN N OUT BURGER 012", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "FOOD_AND_DRINK_FAST_FOOD", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "jjQ7dlP5GyCbNavw7rzpty4MQmk9opi6WLaaR", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "in-n-out.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 28.56, + "authorized_date": "2024-04-10", + "authorized_datetime": null, + "category": [ + "Shops", + "Hardware Store" + ], + "category_id": "19030000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "kVawvV6p0R25gKw3qbp4Kq7kEzDdY5RnjV7RK", + "logo_url": "https://plaid-merchant-logos.plaid.com/home_depot_491.png", + "name": "The Home Depot", + "phone_number": null, + "type": "merchant", + "website": "homedepot.com" + } + ], + "date": "2024-04-12", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/home_depot_491.png", + "merchant_entity_id": "kVawvV6p0R25gKw3qbp4Kq7kEzDdY5RnjV7RK", + "merchant_name": "The Home Depot", + "name": "Home Depot", + "original_description": "Home Depot", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "HOME_IMPROVEMENT_HARDWARE", + "primary": "HOME_IMPROVEMENT" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_HOME_IMPROVEMENT.png", + "transaction_code": null, + "transaction_id": "76zXjElb4Zt8RL4DAzM9F9Zwj8GW6DCdJnxxb", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "homedepot.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 29.96, + "authorized_date": "2024-04-07", + "authorized_datetime": null, + "category": [ + "Shops" + ], + "category_id": "19000000", + "check_number": null, + "counterparties": [], + "date": "2024-04-10", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "WW INT'L-DIGITAL", + "original_description": "WW INT'L-DIGITAL", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "ENTERTAINMENT_SPORTING_EVENTS_AMUSEMENT_PARKS_AND_MUSEUMS", + "primary": "ENTERTAINMENT" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_ENTERTAINMENT.png", + "transaction_code": null, + "transaction_id": "edNwr51XgAcoARVZP68vsdRGzqom9Bur95mmB", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 5.53, + "authorized_date": "2024-04-10", + "authorized_datetime": null, + "category": [ + "Shops", + "Convenience Stores" + ], + "category_id": "19015000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "w32E0jpBeX97vOWgER0n2qVbzLJVm1opNMpoR", + "logo_url": "https://plaid-merchant-logos.plaid.com/7eleven_3.png", + "name": "7-Eleven", + "phone_number": null, + "type": "merchant", + "website": "7-eleven.com" + } + ], + "date": "2024-04-10", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/7eleven_3.png", + "merchant_entity_id": "w32E0jpBeX97vOWgER0n2qVbzLJVm1opNMpoR", + "merchant_name": "7-Eleven", + "name": "7-Eleven", + "original_description": "7-ELEVEN 01234 #...0123", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "GENERAL_MERCHANDISE_CONVENIENCE_STORES", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "QEbZN5mMrxTnJ4XRxba9s9paZDyVQGCwm7DDm", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "7-eleven.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 44.23, + "authorized_date": "2024-04-10", + "authorized_datetime": null, + "category": [ + "Shops", + "Convenience Stores" + ], + "category_id": "19015000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "w32E0jpBeX97vOWgER0n2qVbzLJVm1opNMpoR", + "logo_url": "https://plaid-merchant-logos.plaid.com/7eleven_3.png", + "name": "7-Eleven", + "phone_number": null, + "type": "merchant", + "website": "7-eleven.com" + } + ], + "date": "2024-04-10", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/7eleven_3.png", + "merchant_entity_id": "w32E0jpBeX97vOWgER0n2qVbzLJVm1opNMpoR", + "merchant_name": "7-Eleven", + "name": "7-Eleven", + "original_description": "Auth : 7-eleven 01234", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "GENERAL_MERCHANDISE_CONVENIENCE_STORES", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "ZvlBL5eMPQtnXDV6QrR9sRex8pZayMceqXGGy", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "7-eleven.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 37.35, + "authorized_date": "2024-04-10", + "authorized_datetime": null, + "category": [ + "Food and Drink", + "Restaurants" + ], + "category_id": "13005000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "LOW", + "entity_id": null, + "logo_url": null, + "name": "Chef", + "phone_number": null, + "type": "merchant", + "website": null + } + ], + "date": "2024-04-10", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": "Chef", + "name": "HOME CHEF", + "original_description": "HOME CHEF", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "ENTERTAINMENT_SPORTING_EVENTS_AMUSEMENT_PARKS_AND_MUSEUMS", + "primary": "ENTERTAINMENT" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_ENTERTAINMENT.png", + "transaction_code": null, + "transaction_id": "MpWPx5o4yrcpZvwQrdbMuwXJg8Eze3fL6P11J", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 30.38, + "authorized_date": "2024-04-07", + "authorized_datetime": null, + "category": [ + "Shops", + "Beauty Products" + ], + "category_id": "19006000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "54BEBKODKVz74OKna46dv2ZQDWnNRb1572Lp9", + "logo_url": "https://plaid-merchant-logos.plaid.com/ulta_beauty_1062.png", + "name": "Ulta Beauty", + "phone_number": null, + "type": "merchant", + "website": "ulta.com" + } + ], + "date": "2024-04-09", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": "0123" + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/ulta_beauty_1062.png", + "merchant_entity_id": "54BEBKODKVz74OKna46dv2ZQDWnNRb1572Lp9", + "merchant_name": "Ulta Beauty", + "name": "ULTA", + "original_description": "ULTA #0123", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "PERSONAL_CARE_HAIR_AND_BEAUTY", + "primary": "PERSONAL_CARE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_PERSONAL_CARE.png", + "transaction_code": null, + "transaction_id": "1bXWx1mVzNcQvyzEo34JTXVmegwx94tpjerrw", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "ulta.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 437.5, + "authorized_date": "2024-04-09", + "authorized_datetime": null, + "category": [ + "Recreation", + "Gyms and Fitness Centers" + ], + "category_id": "17018000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": null, + "logo_url": null, + "name": "Equinox", + "phone_number": null, + "type": "merchant", + "website": null + } + ], + "date": "2024-04-09", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": "012" + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": "Equinox", + "name": "EQUINOX MOTO #012", + "original_description": "EQUINOX MOTO #012", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "PERSONAL_CARE_GYMS_AND_FITNESS_CENTERS", + "primary": "PERSONAL_CARE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_PERSONAL_CARE.png", + "transaction_code": null, + "transaction_id": "LLEP35oamKfLwWGzKa8mCk6Apgx1W7ukjpEEr", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 12.77, + "authorized_date": "2024-04-10", + "authorized_datetime": null, + "category": [ + "Food and Drink", + "Restaurants", + "Fast Food" + ], + "category_id": "13005032", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "MezwEv82wQZEknrQkzrO7nKBW0qZXo4eL8NXL", + "logo_url": "https://plaid-merchant-logos.plaid.com/whataburger_1118.png", + "name": "Whataburger", + "phone_number": null, + "type": "merchant", + "website": "whataburger.com" + } + ], + "date": "2024-04-13", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": "2018 S Staples St", + "city": "Corpus Christi", + "country": null, + "lat": 27.765787, + "lon": -97.402695, + "postal_code": "78404", + "region": "TX", + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/whataburger_1118.png", + "merchant_entity_id": "MezwEv82wQZEknrQkzrO7nKBW0qZXo4eL8NXL", + "merchant_name": "Whataburger", + "name": "Whataburger", + "original_description": "WHATABURGER 012 Q01", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "FOOD_AND_DRINK_FAST_FOOD", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "p1oA739DqKhR4y8Xk1ZWcxJrdLn6oGtpoVzz4", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "whataburger.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 33.56, + "authorized_date": "2024-04-12", + "authorized_datetime": null, + "category": [ + "Shops", + "Supermarkets and Groceries" + ], + "category_id": "19047000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "7mk1K28bOEO76459EoRBN498DgKgdnY73qbgn", + "logo_url": "https://plaid-merchant-logos.plaid.com/trader_joes_1041.png", + "name": "Trader Joe's", + "phone_number": null, + "type": "merchant", + "website": "traderjoes.com" + } + ], + "date": "2024-04-13", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": "012" + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/trader_joes_1041.png", + "merchant_entity_id": "7mk1K28bOEO76459EoRBN498DgKgdnY73qbgn", + "merchant_name": "Trader Joe's", + "name": "Trader Joe's", + "original_description": "TRADER JOE'S #012 QPS", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "FOOD_AND_DRINK_GROCERIES", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "oMpyjB9Dlqhb4v8gkyn6tbzMpZy5G3ioq7bbj", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "traderjoes.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 21.39, + "authorized_date": "2024-04-10", + "authorized_datetime": null, + "category": [ + "Food and Drink", + "Restaurants", + "Fast Food" + ], + "category_id": "13005032", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "a4r8Wog9LbWrwqWpXZeJZr9b8rRbgavga0dkM", + "logo_url": "https://plaid-merchant-logos.plaid.com/dominos_292.png", + "name": "Domino's", + "phone_number": null, + "type": "merchant", + "website": "dominos.com" + } + ], + "date": "2024-04-15", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/dominos_292.png", + "merchant_entity_id": "a4r8Wog9LbWrwqWpXZeJZr9b8rRbgavga0dkM", + "merchant_name": "Domino's", + "name": "Domino's", + "original_description": "Domino's Pizza", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "FOOD_AND_DRINK_FAST_FOOD", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "g4j7B5kXEnCwdLV7NzQPHV59dRBP8WcE8n556", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "dominos.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 86.71, + "authorized_date": "2024-04-12", + "authorized_datetime": null, + "category": [ + "Service", + "Subscription" + ], + "category_id": "18061000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "XZAmBNLd29wbbLB49r58oD5b6y7kz5A1982j3", + "logo_url": "https://plaid-merchant-logos.plaid.com/amazon_prime_1987.png", + "name": "Amazon Prime", + "phone_number": null, + "type": "merchant", + "website": "amazon.com/amazonprime" + } + ], + "date": "2024-04-15", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": "WA", + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/amazon_prime_1987.png", + "merchant_entity_id": "XZAmBNLd29wbbLB49r58oD5b6y7kz5A1982j3", + "merchant_name": "Amazon Prime", + "name": "Amazon Prime", + "original_description": "AmazonPrime Membership amzn.com/prme WA", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "ENTERTAINMENT_TV_AND_MOVIES", + "primary": "ENTERTAINMENT" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_ENTERTAINMENT.png", + "transaction_code": null, + "transaction_id": "8lBZ7kqmNMflM6N1rBb8udzkGwyA5MuW3L881", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "amazon.com/amazonprime" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 5.23, + "authorized_date": "2024-04-14", + "authorized_datetime": null, + "category": [ + "Travel", + "Gas Stations" + ], + "category_id": "22009000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "gKVEwLow3LyK4qbbvKn6oLvBmXXLA0y79YBBz", + "logo_url": "https://plaid-merchant-logos.plaid.com/loves_travel_stops_590.png", + "name": "Love's Travel Stops", + "phone_number": null, + "type": "merchant", + "website": "loves.com" + } + ], + "date": "2024-04-15", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/loves_travel_stops_590.png", + "merchant_entity_id": "gKVEwLow3LyK4qbbvKn6oLvBmXXLA0y79YBBz", + "merchant_name": "Love's Travel Stops", + "name": "LOVE S TRAVEL 01234567", + "original_description": "LOVE S TRAVEL 01234567", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "TRANSPORTATION_GAS", + "primary": "TRANSPORTATION" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_TRANSPORTATION.png", + "transaction_code": null, + "transaction_id": "EjM3A5vK8mCjLea1GE3mCyom95Prvki4xkmmQ", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "loves.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 7.32, + "authorized_date": "2024-04-15", + "authorized_datetime": null, + "category": [ + "Shops", + "Convenience Stores" + ], + "category_id": "19015000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "B3gNWKRQ1KjaL6BRD1wJNR8EVzpQAK5LAwNbV", + "logo_url": "https://plaid-merchant-logos.plaid.com/circle_k_213.png", + "name": "Circle K", + "phone_number": null, + "type": "merchant", + "website": "circlek.com" + } + ], + "date": "2024-04-15", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": "01234" + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/circle_k_213.png", + "merchant_entity_id": "B3gNWKRQ1KjaL6BRD1wJNR8EVzpQAK5LAwNbV", + "merchant_name": "Circle K", + "name": "Circle K", + "original_description": "CIRCLE K # 01234", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "TRANSPORTATION_GAS", + "primary": "TRANSPORTATION" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_TRANSPORTATION.png", + "transaction_code": null, + "transaction_id": "Wm6kZ5zMajudb4XV6nyafB8VgNb3znC6Z1jj8", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "circlek.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 9.74, + "authorized_date": "2024-04-15", + "authorized_datetime": null, + "category": [ + "Service", + "Subscription" + ], + "category_id": "18061000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "XZAmBNLd29wbbLB49r58oD5b6y7kz5A1982j3", + "logo_url": "https://plaid-merchant-logos.plaid.com/amazon_prime_1987.png", + "name": "Amazon Prime", + "phone_number": null, + "type": "merchant", + "website": "amazon.com/amazonprime" + } + ], + "date": "2024-04-15", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/amazon_prime_1987.png", + "merchant_entity_id": "XZAmBNLd29wbbLB49r58oD5b6y7kz5A1982j3", + "merchant_name": "Amazon Prime", + "name": "Amazon Prime", + "original_description": "AmazonPrime Membership", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "ENTERTAINMENT_TV_AND_MOVIES", + "primary": "ENTERTAINMENT" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_ENTERTAINMENT.png", + "transaction_code": null, + "transaction_id": "Aa7KgRpVLAhamWlkAvD3s8Dl5KZ7brF9rA55m", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "amazon.com/amazonprime" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 134.25, + "authorized_date": "2024-04-10", + "authorized_datetime": null, + "category": [ + "Shops", + "Digital Purchase" + ], + "category_id": "19019000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "2gOwmq9qK56K60oDm3eLrREV2B2mVadkRn8MW", + "logo_url": "https://plaid-merchant-logos.plaid.com/amazon_44.png", + "name": "Amazon", + "phone_number": null, + "type": "merchant", + "website": "amazon.com" + } + ], + "date": "2024-04-11", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/amazon_44.png", + "merchant_entity_id": "2gOwmq9qK56K60oDm3eLrREV2B2mVadkRn8MW", + "merchant_name": "Amazon", + "name": "Amazon", + "original_description": "Auth : Amzn Mktp Us", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "GENERAL_MERCHANDISE_ONLINE_MARKETPLACES", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "GeLdq5ozW9Te8Jd4MGvPT84MZDwPW7F6MPooL", + "transaction_type": "digital", + "unofficial_currency_code": null, + "website": "amazon.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 3.5, + "authorized_date": "2024-04-14", + "authorized_datetime": null, + "category": [ + "Travel", + "Parking" + ], + "category_id": "22013000", + "check_number": null, + "counterparties": [], + "date": "2024-04-14", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "CCSF MTA IPS PRKNG METER", + "original_description": "CCSF MTA IPS PRKNG METER", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "TRANSPORTATION_PUBLIC_TRANSIT", + "primary": "TRANSPORTATION" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_TRANSPORTATION.png", + "transaction_code": null, + "transaction_id": "nZLAPzwDylibQdva8jeDtG1eMJoEWbtAlWQQ7", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 7.5, + "authorized_date": "2024-04-14", + "authorized_datetime": null, + "category": [ + "Food and Drink", + "Restaurants", + "Coffee Shop" + ], + "category_id": "13005043", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "NZAJQ5wYdo1W1p39X5q5gpb15OMe39pj4pJBb", + "logo_url": "https://plaid-merchant-logos.plaid.com/starbucks_956.png", + "name": "Starbucks", + "phone_number": null, + "type": "merchant", + "website": "starbucks.com" + } + ], + "date": "2024-04-14", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/starbucks_956.png", + "merchant_entity_id": "NZAJQ5wYdo1W1p39X5q5gpb15OMe39pj4pJBb", + "merchant_name": "Starbucks", + "name": "Starbucks Card", + "original_description": "STARBUCKS CARD RELOAD", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "FOOD_AND_DRINK_COFFEE", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "bBdylJgXLku1ryVNQ9XehxReg34KG7tmbZ77g", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "starbucks.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 66.3, + "authorized_date": "2024-04-14", + "authorized_datetime": null, + "category": [ + "Service", + "Telecommunication Services" + ], + "category_id": "18063000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": null, + "logo_url": null, + "name": "Google Project Fi", + "phone_number": null, + "type": "merchant", + "website": null + } + ], + "date": "2024-04-14", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": "Google Project Fi", + "name": "PROJECT FI", + "original_description": "GOOGLE *PROJECT FI", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": "Google Wallet", + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "RENT_AND_UTILITIES_TELEPHONE", + "primary": "RENT_AND_UTILITIES" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_RENT_AND_UTILITIES.png", + "transaction_code": null, + "transaction_id": "mQ1ANkbDmRfb4yvJ6npMt6LmBj1NyEcgydXX7", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + } + ], + "has_more": true, + "modified": [], + "next_cursor": "CAESJW1RMUFOa2JEbVJmYjR5dko2bnBNdDZMbUJqMU55RWNneWRYWDciDAian63BBhCYuabxAioMCJqfrcEGEOjakKAD", + "removed": [], + "request_id": "IHi85AoX2oB6LP4", + "transactions_update_status": "HISTORICAL_UPDATE_COMPLETE" + } + recorded_at: Mon, 19 May 2025 15:35:00 GMT +- request: + method: post + uri: https://sandbox.plaid.com/transactions/sync + body: + encoding: UTF-8 + string: '{"access_token":"access-sandbox-d531d3c9-8520-43ca-9e58-5b70b79fd1d4","cursor":"CAESJW1RMUFOa2JEbVJmYjR5dko2bnBNdDZMbUJqMU55RWNneWRYWDciDAian63BBhCYuabxAioMCJqfrcEGEOjakKAD","count":100,"options":{"include_original_description":true}}' + headers: + Content-Type: + - application/json + User-Agent: + - Plaid Ruby v38.0.0 + Accept: + - application/json + Plaid-Client-Id: + - "" + Plaid-Version: + - '2020-09-14' + Plaid-Secret: + - "" + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + response: + status: + code: 200 + message: OK + headers: + Server: + - nginx + Date: + - Mon, 19 May 2025 15:35:01 GMT + Content-Type: + - application/json; charset=utf-8 + Transfer-Encoding: + - chunked + Connection: + - keep-alive + Plaid-Version: + - '2020-09-14' + Vary: + - Accept-Encoding + X-Envoy-Upstream-Service-Time: + - '357' + X-Envoy-Decorator-Operation: + - default.svc-apiv2:8080/* + Strict-Transport-Security: + - max-age=31536000; includeSubDomains; preload + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Xss-Protection: + - 1; mode=block + body: + encoding: ASCII-8BIT + string: |- + { + "accounts": [ + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "balances": { + "available": 11065.71, + "current": 1000, + "iso_currency_code": "USD", + "limit": 12200, + "unofficial_currency_code": null + }, + "holder_category": "personal", + "mask": "3053", + "name": "Test Credit Card Account", + "official_name": "Plaid credit card", + "subtype": "credit card", + "type": "credit" + } + ], + "added": [ + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 243.41, + "authorized_date": "2024-04-14", + "authorized_datetime": null, + "category": [ + "Shops", + "Digital Purchase" + ], + "category_id": "19019000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "2gOwmq9qK56K60oDm3eLrREV2B2mVadkRn8MW", + "logo_url": "https://plaid-merchant-logos.plaid.com/amazon_44.png", + "name": "Amazon", + "phone_number": null, + "type": "merchant", + "website": "amazon.com" + } + ], + "date": "2024-04-14", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/amazon_44.png", + "merchant_entity_id": "2gOwmq9qK56K60oDm3eLrREV2B2mVadkRn8MW", + "merchant_name": "Amazon", + "name": "Amazon", + "original_description": "Auth : Amzn Mktp Us", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "GENERAL_MERCHANDISE_ONLINE_MARKETPLACES", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "yGmrge5K4NFpDQweBL4yuPM35rxdXZi46Xwwy", + "transaction_type": "digital", + "unofficial_currency_code": null, + "website": "amazon.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 7.89, + "authorized_date": "2024-04-17", + "authorized_datetime": null, + "category": [ + "Shops", + "Music, Video and DVD" + ], + "category_id": "19036000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "z3XzRe488pMdo7NAnL44L7rv9L550berky6mK", + "logo_url": "https://plaid-merchant-logos.plaid.com/apple_itunes_1434.png", + "name": "Apple iTunes", + "phone_number": null, + "type": "merchant", + "website": "apple.com/itunes" + } + ], + "date": "2024-04-17", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/apple_itunes_1434.png", + "merchant_entity_id": "z3XzRe488pMdo7NAnL44L7rv9L550berky6mK", + "merchant_name": "Apple iTunes", + "name": "iTunes", + "original_description": "APL* ITUNES.COM/BILL 012-012-0123 ON", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": "Apple", + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "ENTERTAINMENT_MUSIC_AND_AUDIO", + "primary": "ENTERTAINMENT" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_ENTERTAINMENT.png", + "transaction_code": null, + "transaction_id": "9q36eAK7P1iqGMPbA34yUAZV7NmLojI4xQgg4", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "apple.com/itunes" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 26.67, + "authorized_date": "2024-04-17", + "authorized_datetime": null, + "category": [ + "Food and Drink", + "Restaurants" + ], + "category_id": "13005000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "EZ92VM3NzEaVdzq5eRB2YOb14a3OYk3gRvyZQ", + "logo_url": "https://plaid-counterparty-logos.plaid.com/uber_eats_2.png", + "name": "Uber Eats", + "phone_number": null, + "type": "marketplace", + "website": "ubereats.com" + } + ], + "date": "2024-04-17", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": "Uber Eats", + "name": "Uber Eats", + "original_description": "UBER EATS", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "FOOD_AND_DRINK_RESTAURANT", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "vEGlLPADxdT7rVvMKoxpsbozq3NxkGiq6k11v", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 64.93, + "authorized_date": "2024-04-17", + "authorized_datetime": null, + "category": [ + "Food and Drink", + "Restaurants" + ], + "category_id": "13005000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "EZ92VM3NzEaVdzq5eRB2YOb14a3OYk3gRvyZQ", + "logo_url": "https://plaid-counterparty-logos.plaid.com/uber_eats_2.png", + "name": "Uber Eats", + "phone_number": null, + "type": "marketplace", + "website": "ubereats.com" + } + ], + "date": "2024-04-19", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": "CA", + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": "Uber Eats", + "name": "Uber Eats", + "original_description": "UBER EATS HELP.UBER.COM CA", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "FOOD_AND_DRINK_RESTAURANT", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "RWmGP5oMzdtreRojdm9zi5wEvmqNVpHapbAAX", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 19.39, + "authorized_date": "2024-04-19", + "authorized_datetime": null, + "category": [ + "Food and Drink", + "Restaurants" + ], + "category_id": "13005000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "Y5W786AN4Kr4V7d4nWLKrzngqR76VKzpOBOz4", + "logo_url": "https://plaid-merchant-logos.plaid.com/rubios_849.png", + "name": "Rubio's", + "phone_number": null, + "type": "merchant", + "website": "rubios.com" + } + ], + "date": "2024-04-19", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": "012" + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/rubios_849.png", + "merchant_entity_id": "Y5W786AN4Kr4V7d4nWLKrzngqR76VKzpOBOz4", + "merchant_name": "Rubio's", + "name": "Rubio's", + "original_description": "RUBIO'S #012", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "HIGH", + "detailed": "FOOD_AND_DRINK_RESTAURANT", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "6RrvP8d6aQt8RdaEAwWkFbyD6lRWjLi8DXeex", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "rubios.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 1.31, + "authorized_date": "2024-04-17", + "authorized_datetime": null, + "category": [ + "Travel", + "Parking" + ], + "category_id": "22013000", + "check_number": null, + "counterparties": [], + "date": "2024-04-18", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "CCSF MTA IPS PRKNG METER", + "original_description": "CCSF MTA IPS PRKNG METER", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "TRANSPORTATION_PUBLIC_TRANSIT", + "primary": "TRANSPORTATION" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_TRANSPORTATION.png", + "transaction_code": null, + "transaction_id": "XyXrM5BG47fmPpGD7694U6qPyJX8decbKnLLy", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 35.9, + "authorized_date": "2024-04-17", + "authorized_datetime": null, + "category": [ + "Shops", + "Department Stores" + ], + "category_id": "19018000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "bN0wJ6wvppDz375EzNJNQv9bBODam4qWOrE3k", + "logo_url": "https://plaid-merchant-logos.plaid.com/nordstrom_684.png", + "name": "Nordstrom", + "phone_number": null, + "type": "merchant", + "website": "nordstrom.com" + } + ], + "date": "2024-04-18", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": "0123" + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/nordstrom_684.png", + "merchant_entity_id": "bN0wJ6wvppDz375EzNJNQv9bBODam4qWOrE3k", + "merchant_name": "Nordstrom", + "name": "Nordstrom", + "original_description": "NORDSTROM #0123", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "GENERAL_MERCHANDISE_DEPARTMENT_STORES", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "DPZBW5VqgbFP764zbpqmSvjWJDPg3bt3WaJJ7", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "nordstrom.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 173.47, + "authorized_date": "2024-04-17", + "authorized_datetime": null, + "category": [ + "Travel", + "Airlines and Aviation Services" + ], + "category_id": "22001000", + "check_number": null, + "counterparties": [], + "date": "2024-04-20", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "JetBlue", + "original_description": "JETBLUE 01234567890123", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "ENTERTAINMENT_SPORTING_EVENTS_AMUSEMENT_PARKS_AND_MUSEUMS", + "primary": "ENTERTAINMENT" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_ENTERTAINMENT.png", + "transaction_code": null, + "transaction_id": "VbRqQ5rLdPcn6RqVP4QdsXJG18VQ3Et9gPEED", + "transaction_type": "special", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 25.98, + "authorized_date": "2024-04-18", + "authorized_datetime": null, + "category": [ + "Shops", + "Arts and Crafts" + ], + "category_id": "19003000", + "check_number": null, + "counterparties": [], + "date": "2024-04-20", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "Michaels", + "original_description": "Michaels", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "GENERAL_MERCHANDISE_OTHER_GENERAL_MERCHANDISE", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "wWnqpjJldatQbrvJydjETKPDB3J4E9cPZommM", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 22.5, + "authorized_date": "2024-04-19", + "authorized_datetime": null, + "category": [ + "Travel", + "Airlines and Aviation Services" + ], + "category_id": "22001000", + "check_number": null, + "counterparties": [], + "date": "2024-04-20", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "SWA*EARLYBRD0123456789012", + "original_description": "SWA*EARLYBRD0123456789012", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "GENERAL_MERCHANDISE_OTHER_GENERAL_MERCHANDISE", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "5vK5Ng6bdetkX4dDA6NbSqZK7QDoXMu5K788j", + "transaction_type": "special", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 9.82, + "authorized_date": "2024-04-22", + "authorized_datetime": null, + "category": [ + "Food and Drink", + "Restaurants", + "Fast Food" + ], + "category_id": "13005032", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "vzWXDWBjB06j5BJoD3Jo84OJZg7JJzmqOZA22", + "logo_url": "https://plaid-merchant-logos.plaid.com/mcdonalds_619.png", + "name": "McDonald's", + "phone_number": null, + "type": "merchant", + "website": "mcdonalds.com" + } + ], + "date": "2024-04-22", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": "01234" + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/mcdonalds_619.png", + "merchant_entity_id": "vzWXDWBjB06j5BJoD3Jo84OJZg7JJzmqOZA22", + "merchant_name": "McDonald's", + "name": "McDonald's", + "original_description": "MCDONALD'S F01234", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "FOOD_AND_DRINK_FAST_FOOD", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "JMgVz59xnlhM1pyKljkeUAXZgLJDw6IB6gkkN", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "mcdonalds.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 5.23, + "authorized_date": "2024-04-22", + "authorized_datetime": null, + "category": [ + "Shops", + "Supermarkets and Groceries" + ], + "category_id": "19047000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "LOW", + "entity_id": null, + "logo_url": null, + "name": "Gristedes", + "phone_number": null, + "type": "merchant", + "website": null + } + ], + "date": "2024-04-22", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": "012" + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": "Gristedes", + "name": "GRISTEDES # 012", + "original_description": "GRISTEDES # 012", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "FOOD_AND_DRINK_GROCERIES", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "k7ZAaqkDn9IeLWvPMD3QTQmwjAae61sL6doog", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 22.5, + "authorized_date": "2024-04-22", + "authorized_datetime": null, + "category": [ + "Travel", + "Public Transportation Services" + ], + "category_id": "22014000", + "check_number": null, + "counterparties": [], + "date": "2024-04-23", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": "on", + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "PRESTO TORONTO ON", + "original_description": "PRESTO TORONTO ON", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "GENERAL_MERCHANDISE_PET_SUPPLIES", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "leMA4KdDbvT9Rj8aDw3ASlqwZmdvGDipodRRK", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 15, + "authorized_date": "2024-04-22", + "authorized_datetime": null, + "category": [ + "Travel", + "Public Transportation Services" + ], + "category_id": "22014000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "LOW", + "entity_id": null, + "logo_url": null, + "name": "Ventra Vending", + "phone_number": null, + "type": "merchant", + "website": null + } + ], + "date": "2024-04-23", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": "Ventra Vending", + "name": "VENTRA VENDING 01234", + "original_description": "VENTRA VENDING 01234", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "ENTERTAINMENT_SPORTING_EVENTS_AMUSEMENT_PARKS_AND_MUSEUMS", + "primary": "ENTERTAINMENT" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_ENTERTAINMENT.png", + "transaction_code": null, + "transaction_id": "bBdylJgXLku1ryVNQ9XehxReg34KG7tmbZ77M", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 89.25, + "authorized_date": "2024-04-23", + "authorized_datetime": null, + "category": [ + "Service", + "Subscription" + ], + "category_id": "18061000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "XZAmBNLd29wbbLB49r58oD5b6y7kz5A1982j3", + "logo_url": "https://plaid-merchant-logos.plaid.com/amazon_prime_1987.png", + "name": "Amazon Prime", + "phone_number": null, + "type": "merchant", + "website": "amazon.com/amazonprime" + } + ], + "date": "2024-04-24", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": "Seattle", + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": "WA", + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/amazon_prime_1987.png", + "merchant_entity_id": "XZAmBNLd29wbbLB49r58oD5b6y7kz5A1982j3", + "merchant_name": "Amazon Prime", + "name": "Amazon Prime", + "original_description": "Amazon Prime 0123456789 WA", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "GENERAL_SERVICES_OTHER_GENERAL_SERVICES", + "primary": "GENERAL_SERVICES" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_SERVICES.png", + "transaction_code": null, + "transaction_id": "mQ1ANkbDmRfb4yvJ6npMt6LmBj1NyEcgydXXB", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "amazon.com/amazonprime" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 10.22, + "authorized_date": "2024-04-24", + "authorized_datetime": null, + "category": [ + "Service", + "Insurance" + ], + "category_id": "18030000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "nJ0oBoeNyqwwjbgOzyV75NL70ybDjg0pNmzWn", + "logo_url": "https://plaid-merchant-logos.plaid.com/lemonade_insurance_573.png", + "name": "Lemonade Insurance", + "phone_number": null, + "type": "merchant", + "website": "lemonade.com" + } + ], + "date": "2024-04-25", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/lemonade_insurance_573.png", + "merchant_entity_id": "nJ0oBoeNyqwwjbgOzyV75NL70ybDjg0pNmzWn", + "merchant_name": "Lemonade Insurance", + "name": "LEMONADE.COM", + "original_description": "LEMONADE.COM", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "GENERAL_SERVICES_INSURANCE", + "primary": "GENERAL_SERVICES" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_SERVICES.png", + "transaction_code": null, + "transaction_id": "yGmrge5K4NFpDQweBL4yuPM35rxdXZi46XwwN", + "transaction_type": "special", + "unofficial_currency_code": null, + "website": "lemonade.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 25.85, + "authorized_date": "2024-04-24", + "authorized_datetime": null, + "category": [ + "Service", + "Shipping and Freight" + ], + "category_id": "18058000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "87BE46o0VXpZ1DZMmBBnAe7q2wAKbn3kZJZq2", + "logo_url": "https://plaid-merchant-logos.plaid.com/fedex_365.png", + "name": "FedEx", + "phone_number": null, + "type": "merchant", + "website": "fedex.com" + } + ], + "date": "2024-04-27", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": "TN", + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/fedex_365.png", + "merchant_entity_id": "87BE46o0VXpZ1DZMmBBnAe7q2wAKbn3kZJZq2", + "merchant_name": "FedEx", + "name": "FedEx", + "original_description": "FEDEX 012345678 012-0123456 TN", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "GENERAL_SERVICES_POSTAGE_AND_SHIPPING", + "primary": "GENERAL_SERVICES" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_SERVICES.png", + "transaction_code": null, + "transaction_id": "9q36eAK7P1iqGMPbA34yUAZV7NmLojI4xQg9Z", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "fedex.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 799.05, + "authorized_date": "2024-04-24", + "authorized_datetime": null, + "category": [ + "Travel", + "Airlines and Aviation Services" + ], + "category_id": "22001000", + "check_number": null, + "counterparties": [], + "date": "2024-04-26", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "UNITED", + "original_description": "UNITED", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "GENERAL_MERCHANDISE_OTHER_GENERAL_MERCHANDISE", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "vEGlLPADxdT7rVvMKoxpsbozq3NxkGiq6k1ZN", + "transaction_type": "special", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 84.7, + "authorized_date": "2024-04-26", + "authorized_datetime": null, + "category": [ + "Shops", + "Food and Beverage Store" + ], + "category_id": "19025000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "LOW", + "entity_id": null, + "logo_url": null, + "name": "Lcbo Rao", + "phone_number": null, + "type": "merchant", + "website": null + } + ], + "date": "2024-04-26", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": "012" + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": "Lcbo Rao", + "name": "LCBO/RAO #012 TORONTO ON", + "original_description": "LCBO/RAO #012 TORONTO ON", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "FOOD_AND_DRINK_BEER_WINE_AND_LIQUOR", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "RWmGP5oMzdtreRojdm9zi5wEvmqNVpHapbAo8", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 0.94, + "authorized_date": "2024-04-26", + "authorized_datetime": null, + "category": [ + "Food and Drink" + ], + "category_id": "13000000", + "check_number": null, + "counterparties": [], + "date": "2024-04-26", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "PepsiCo", + "original_description": "012PEPSIVEN0123456789", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "FOOD_AND_DRINK_VENDING_MACHINES", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "6RrvP8d6aQt8RdaEAwWkFbyD6lRWjLi8DXePy", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 65.18, + "authorized_date": "2024-04-26", + "authorized_datetime": null, + "category": [ + "Shops", + "Supermarkets and Groceries" + ], + "category_id": "19047000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "Rrp9n4KpLKELA28QR4YMJ8DNJgwy1XOggANqd", + "logo_url": "https://plaid-merchant-logos.plaid.com/harris_teeter_supermarkets_477.png", + "name": "Harris Teeter Supermarkets", + "phone_number": null, + "type": "merchant", + "website": "harristeeter.com" + } + ], + "date": "2024-04-30", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/harris_teeter_supermarkets_477.png", + "merchant_entity_id": "Rrp9n4KpLKELA28QR4YMJ8DNJgwy1XOggANqd", + "merchant_name": "Harris Teeter Supermarkets", + "name": "Harris Teeter Supermarkets, Inc.", + "original_description": "HARRIS TEETER 012", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "FOOD_AND_DRINK_GROCERIES", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "XyXrM5BG47fmPpGD7694U6qPyJX8decbKnLvN", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "harristeeter.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 4.05, + "authorized_date": "2024-04-26", + "authorized_datetime": null, + "category": [ + "Shops", + "Music, Video and DVD" + ], + "category_id": "19036000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "KW8b0J0kX53kBAnYRV5VVnbb3WWpb17VBDra2", + "logo_url": "https://plaid-counterparty-logos.plaid.com/roku_91.png", + "name": "Roku", + "phone_number": null, + "type": "marketplace", + "website": "roku.com" + } + ], + "date": "2024-05-01", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": "Roku", + "name": "ROKU FOR ESPN", + "original_description": "ROKU FOR ESPN", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "MEDIUM", + "detailed": "ENTERTAINMENT_TV_AND_MOVIES", + "primary": "ENTERTAINMENT" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_ENTERTAINMENT.png", + "transaction_code": null, + "transaction_id": "DPZBW5VqgbFP764zbpqmSvjWJDPg3bt3WaJLx", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 129.09, + "authorized_date": "2024-04-30", + "authorized_datetime": null, + "category": [ + "Payment", + "Rent" + ], + "category_id": "16002000", + "check_number": null, + "counterparties": [], + "date": "2024-05-03", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "RENT THE RUNWAY", + "original_description": "RENT THE RUNWAY", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "RENT_AND_UTILITIES_RENT", + "primary": "RENT_AND_UTILITIES" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_RENT_AND_UTILITIES.png", + "transaction_code": null, + "transaction_id": "VbRqQ5rLdPcn6RqVP4QdsXJG18VQ3Et9gPEZP", + "transaction_type": "special", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 15.23, + "authorized_date": "2024-05-02", + "authorized_datetime": null, + "category": [ + "Food and Drink", + "Restaurants", + "Fast Food" + ], + "category_id": "13005032", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "BO2OAg7nprnK6W7rBvarKXkNJ1qJWYRk7AvqZ", + "logo_url": "https://plaid-merchant-logos.plaid.com/arbys_68.png", + "name": "Arby's", + "phone_number": null, + "type": "merchant", + "website": "arbys.com" + } + ], + "date": "2024-05-03", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": "5900 W Broad St", + "city": "Richmond", + "country": null, + "lat": 37.591766, + "lon": -77.505295, + "postal_code": "23230", + "region": "VA", + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/arbys_68.png", + "merchant_entity_id": "BO2OAg7nprnK6W7rBvarKXkNJ1qJWYRk7AvqZ", + "merchant_name": "Arby's", + "name": "Arby's", + "original_description": "ARBYS 0123", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "FOOD_AND_DRINK_FAST_FOOD", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "wWnqpjJldatQbrvJydjETKPDB3J4E9cPZom1V", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "arbys.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 49.28, + "authorized_date": "2024-05-03", + "authorized_datetime": null, + "category": [ + "Service" + ], + "category_id": "18000000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "5B10W0429bM0nAE0XNWD3nOqo9KvRMo2mBVXD", + "logo_url": "https://plaid-merchant-logos.plaid.com/godaddy_438.png", + "name": "GoDaddy", + "phone_number": null, + "type": "merchant", + "website": "godaddy.com" + } + ], + "date": "2024-05-03", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": "AZ", + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/godaddy_438.png", + "merchant_entity_id": "5B10W0429bM0nAE0XNWD3nOqo9KvRMo2mBVXD", + "merchant_name": "GoDaddy", + "name": "DNH*GODADDY.COM", + "original_description": "DNH*GODADDY.COM 012-0123456 AZ", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "GENERAL_SERVICES_OTHER_GENERAL_SERVICES", + "primary": "GENERAL_SERVICES" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_SERVICES.png", + "transaction_code": null, + "transaction_id": "5vK5Ng6bdetkX4dDA6NbSqZK7QDoXMu5K78Q8", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "godaddy.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 18.88, + "authorized_date": "2024-05-02", + "authorized_datetime": null, + "category": [ + "Food and Drink", + "Restaurants" + ], + "category_id": "13005000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "EjvMbgqymKEYd4Bek9pYygYNYM5wpD6YqQ3qa", + "logo_url": "https://plaid-merchant-logos.plaid.com/mcalisters_deli_618.png", + "name": "McAlister's Deli", + "phone_number": null, + "type": "merchant", + "website": "mcalistersdeli.com" + } + ], + "date": "2024-05-02", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/mcalisters_deli_618.png", + "merchant_entity_id": "EjvMbgqymKEYd4Bek9pYygYNYM5wpD6YqQ3qa", + "merchant_name": "McAlister's Deli", + "name": "McAlister's Deli", + "original_description": "MCALISTER'S DELI 012", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "HIGH", + "detailed": "FOOD_AND_DRINK_OTHER_FOOD_AND_DRINK", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "JMgVz59xnlhM1pyKljkeUAXZgLJDw6IB6gkee", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "mcalistersdeli.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 37.5, + "authorized_date": "2024-05-02", + "authorized_datetime": null, + "category": [ + "Food and Drink", + "Restaurants" + ], + "category_id": "13005000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "LOW", + "entity_id": null, + "logo_url": null, + "name": "The Ashford \u0026 Six", + "phone_number": null, + "type": "merchant", + "website": null + } + ], + "date": "2024-05-04", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": "The Ashford \u0026 Six", + "name": "THE ASHFORD \u0026 SIX 01", + "original_description": "THE ASHFORD \u0026 SIX 01", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "GENERAL_MERCHANDISE_OTHER_GENERAL_MERCHANDISE", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "k7ZAaqkDn9IeLWvPMD3QTQmwjAae61sL6do17", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 42.44, + "authorized_date": "2024-05-02", + "authorized_datetime": null, + "category": [ + "Shops", + "Supermarkets and Groceries" + ], + "category_id": "19047000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "p2jJA90Jrbmq7m2Oq2mqrvbMJ9Mmw2MLBq36y", + "logo_url": "https://plaid-merchant-logos.plaid.com/king_soopers_550.png", + "name": "King Soopers", + "phone_number": null, + "type": "merchant", + "website": "kingsoopers.com" + } + ], + "date": "2024-05-04", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/king_soopers_550.png", + "merchant_entity_id": "p2jJA90Jrbmq7m2Oq2mqrvbMJ9Mmw2MLBq36y", + "merchant_name": "King Soopers", + "name": "KING SOOPERS 0123 FUEL", + "original_description": "KING SOOPERS 0123 FUEL", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "FOOD_AND_DRINK_GROCERIES", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "leMA4KdDbvT9Rj8aDw3ASlqwZmdvGDipodRmg", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "kingsoopers.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 1.13, + "authorized_date": "2024-05-03", + "authorized_datetime": null, + "category": [ + "Service", + "Automotive", + "Car Wash and Detail" + ], + "category_id": "18006004", + "check_number": null, + "counterparties": [], + "date": "2024-05-05", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "AUTO AIR \u0026 VACUUM SERVICE", + "original_description": "AUTO AIR \u0026 VACUUM SERVICE", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "GENERAL_SERVICES_AUTOMOTIVE", + "primary": "GENERAL_SERVICES" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_SERVICES.png", + "transaction_code": null, + "transaction_id": "qLgAex9DKrfNjEv5oDMaFebVapMmWGhgr7Ryr", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 32.78, + "authorized_date": "2024-05-03", + "authorized_datetime": null, + "category": [ + "Food and Drink", + "Restaurants" + ], + "category_id": "13005000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "5m8NA1RJ892w69jVQ150JrXqyLVJnJ93dVEgg", + "logo_url": "https://plaid-merchant-logos.plaid.com/waffle_house_1097.png", + "name": "Waffle House", + "phone_number": null, + "type": "merchant", + "website": "wafflehouse.com" + } + ], + "date": "2024-05-06", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/waffle_house_1097.png", + "merchant_entity_id": "5m8NA1RJ892w69jVQ150JrXqyLVJnJ93dVEgg", + "merchant_name": "Waffle House", + "name": "Waffle House", + "original_description": "Waffle House", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "FOOD_AND_DRINK_RESTAURANT", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "K18PB5Zdbqh17BVgqbRQhyoaA5z1deiRpA1DX", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "wafflehouse.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 20.23, + "authorized_date": "2024-05-03", + "authorized_datetime": null, + "category": [ + "Shops", + "Pharmacies" + ], + "category_id": "19043000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "qJ0kRK8E9vpQKom2wJJmm0Oe9bBRJEg5vAqqY", + "logo_url": "https://plaid-merchant-logos.plaid.com/rite_aid_832.png", + "name": "Rite Aid", + "phone_number": null, + "type": "merchant", + "website": "riteaid.com" + } + ], + "date": "2024-05-06", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/rite_aid_832.png", + "merchant_entity_id": "qJ0kRK8E9vpQKom2wJJmm0Oe9bBRJEg5vAqqY", + "merchant_name": "Rite Aid", + "name": "Rite Aid", + "original_description": "RITE AID STORE - 0123", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "MEDICAL_PHARMACIES_AND_SUPPLEMENTS", + "primary": "MEDICAL" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_MEDICAL.png", + "transaction_code": null, + "transaction_id": "rp8wQd9Drzc7XxVRZbBNsbxP5JMjG9i7J61ke", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "riteaid.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 41.6, + "authorized_date": "2024-05-06", + "authorized_datetime": null, + "category": [ + "Shops", + "Digital Purchase" + ], + "category_id": "19019000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "2gOwmq9qK56K60oDm3eLrREV2B2mVadkRn8MW", + "logo_url": "https://plaid-merchant-logos.plaid.com/amazon_44.png", + "name": "Amazon", + "phone_number": null, + "type": "merchant", + "website": "amazon.com" + } + ], + "date": "2024-05-06", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": "WA", + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/amazon_44.png", + "merchant_entity_id": "2gOwmq9qK56K60oDm3eLrREV2B2mVadkRn8MW", + "merchant_name": "Amazon", + "name": "Amazon.com AMZN.COM/BILL", + "original_description": "Amazon.com AMZN.COM/BILL WA", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "GENERAL_MERCHANDISE_ONLINE_MARKETPLACES", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "zkyz8Q9rNPCXgWQeyj9pIeqPWlmJpdhlNLQXG", + "transaction_type": "digital", + "unofficial_currency_code": null, + "website": "amazon.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 6.48, + "authorized_date": "2024-05-06", + "authorized_datetime": null, + "category": [ + "Food and Drink", + "Restaurants", + "Fast Food" + ], + "category_id": "13005032", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "Mjqdpqn3ZgOdrAYpkAKMkArEON7avQ8jV9BX1", + "logo_url": "https://plaid-merchant-logos.plaid.com/chipotle_mexican_grill_202.png", + "name": "Chipotle Mexican Grill", + "phone_number": null, + "type": "merchant", + "website": "chipotle.com" + } + ], + "date": "2024-05-06", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/chipotle_mexican_grill_202.png", + "merchant_entity_id": "Mjqdpqn3ZgOdrAYpkAKMkArEON7avQ8jV9BX1", + "merchant_name": "Chipotle Mexican Grill", + "name": "Chipotle Mexican Grill", + "original_description": "Chipotle", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "FOOD_AND_DRINK_FAST_FOOD", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "B4ek869ZpGC41mDnjvVxuBdXVLjPRxC4M8gxK", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "chipotle.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 29.87, + "authorized_date": "2024-05-06", + "authorized_datetime": null, + "category": [ + "Travel", + "Car Service", + "Ride Share" + ], + "category_id": "22006001", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "zwkjrQbbDQqZJRk3egOAo0XB7jnygNDJk9Vjz", + "logo_url": "https://plaid-counterparty-logos.plaid.com/paypal_76.png", + "name": "PayPal", + "phone_number": null, + "type": "payment_app", + "website": "paypal.com" + } + ], + "date": "2024-05-08", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": "CA", + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "Uber", + "original_description": "PAYPAL *UBER 012-012-0123 CA", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": "PayPal", + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "GENERAL_MERCHANDISE_CLOTHING_AND_ACCESSORIES", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "3ylJapdb3jf8nK3A1z7JF3jlmQa5LBhZlnEVp", + "transaction_type": "special", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 41.13, + "authorized_date": "2024-05-06", + "authorized_datetime": null, + "category": [ + "Recreation", + "Arts and Entertainment" + ], + "category_id": "17001000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "rE8AwjKg5y7EoejkawBOXN527gewvJNgO1qrM", + "logo_url": "https://plaid-merchant-logos.plaid.com/cinemark_theatres_210.png", + "name": "Cinemark Theatres", + "phone_number": null, + "type": "merchant", + "website": "cinemark.com" + } + ], + "date": "2024-05-08", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/cinemark_theatres_210.png", + "merchant_entity_id": "rE8AwjKg5y7EoejkawBOXN527gewvJNgO1qrM", + "merchant_name": "Cinemark Theatres", + "name": "Cinemark Theatres", + "original_description": "CINEMARK THEATRES 0123", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "HIGH", + "detailed": "ENTERTAINMENT_TV_AND_MOVIES", + "primary": "ENTERTAINMENT" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_ENTERTAINMENT.png", + "transaction_code": null, + "transaction_id": "xAbKo75qa4um5aZ8zndpUMd7gW5wbxU64VeK1", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "cinemark.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 29.97, + "authorized_date": "2024-05-06", + "authorized_datetime": null, + "category": [ + "Shops", + "Convenience Stores" + ], + "category_id": "19015000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "VDzYgVXKNDqR19N8oRdzd2Y9Z0wobKZ5OjLMO", + "logo_url": "https://plaid-merchant-logos.plaid.com/quickchek_797.png", + "name": "QuickChek", + "phone_number": null, + "type": "merchant", + "website": "quickchek.com" + } + ], + "date": "2024-05-08", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/quickchek_797.png", + "merchant_entity_id": "VDzYgVXKNDqR19N8oRdzd2Y9Z0wobKZ5OjLMO", + "merchant_name": "QuickChek", + "name": "QUICK CHEK CORPORATION", + "original_description": "QUICK CHEK CORPORATION", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "TRANSPORTATION_GAS", + "primary": "TRANSPORTATION" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_TRANSPORTATION.png", + "transaction_code": null, + "transaction_id": "dx4ZK58XoWCvbXVZlNgaC9Rl5wkLExCJEQRnb", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "quickchek.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 3.66, + "authorized_date": "2024-05-06", + "authorized_datetime": null, + "category": [ + "Shops", + "Discount Stores" + ], + "category_id": "19020000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "4rWqrp33ZRn8M10qwLRKVL9L09XVaXrMRKJ5p", + "logo_url": "https://plaid-merchant-logos.plaid.com/dollarama_1491.png", + "name": "Dollarama", + "phone_number": null, + "type": "merchant", + "website": "dollarama.com" + } + ], + "date": "2024-05-10", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": "012" + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/dollarama_1491.png", + "merchant_entity_id": "4rWqrp33ZRn8M10qwLRKVL9L09XVaXrMRKJ5p", + "merchant_name": "Dollarama", + "name": "DOLLARAMA # 012 TORONTO ON", + "original_description": "DOLLARAMA # 012 TORONTO ON", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "GENERAL_MERCHANDISE_DISCOUNT_STORES", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "azx7A59X1gc5orV6dPw3soqAjJ3zZysZ5QDKa", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "dollarama.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 3.28, + "authorized_date": "2024-05-07", + "authorized_datetime": null, + "category": [ + "Shops", + "Music, Video and DVD" + ], + "category_id": "19036000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "r7MA910JJELKpYekdAz6n34373RQw2a3Nn52E", + "logo_url": "https://plaid-merchant-logos.plaid.com/redbox_816.png", + "name": "Redbox", + "phone_number": null, + "type": "merchant", + "website": "redbox.com" + } + ], + "date": "2024-05-07", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/redbox_816.png", + "merchant_entity_id": "r7MA910JJELKpYekdAz6n34373RQw2a3Nn52E", + "merchant_name": "Redbox", + "name": "Redbox", + "original_description": "Redbox", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "ENTERTAINMENT_TV_AND_MOVIES", + "primary": "ENTERTAINMENT" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_ENTERTAINMENT.png", + "transaction_code": null, + "transaction_id": "49qZ4oGbx7T873XDoebnFmlbdW4eDaFJbALR5", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "redbox.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 3.94, + "authorized_date": "2024-05-07", + "authorized_datetime": null, + "category": [ + "Travel", + "Public Transportation Services" + ], + "category_id": "22014000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "OMvdNZ28QavBpQQ00rVdjqzDNOdENQ8O5dE7J", + "logo_url": "https://plaid-merchant-logos.plaid.com/nj_transit_682.png", + "name": "NJ Transit", + "phone_number": null, + "type": "merchant", + "website": "njtransit.com" + } + ], + "date": "2024-05-07", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/nj_transit_682.png", + "merchant_entity_id": "OMvdNZ28QavBpQQ00rVdjqzDNOdENQ8O5dE7J", + "merchant_name": "NJ Transit", + "name": "NJT RAIL MY-TIX", + "original_description": "NJT RAIL MY-TIX", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "HIGH", + "detailed": "TRANSPORTATION_PUBLIC_TRANSIT", + "primary": "TRANSPORTATION" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_TRANSPORTATION.png", + "transaction_code": null, + "transaction_id": "NokPd5gNlzfoV1byzGkls7JMP5G3Q9sy65QAd", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "njtransit.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 0.74, + "authorized_date": "2024-05-12", + "authorized_datetime": null, + "category": [ + "Service", + "Subscription" + ], + "category_id": "18061000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "ZzO1V6gJ8KbO926KrNYONbQqobXpgjWnA28nR", + "logo_url": "https://plaid-merchant-logos.plaid.com/hulu_504.png", + "name": "Hulu", + "phone_number": null, + "type": "merchant", + "website": "hulu.com" + } + ], + "date": "2024-05-12", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/hulu_504.png", + "merchant_entity_id": "ZzO1V6gJ8KbO926KrNYONbQqobXpgjWnA28nR", + "merchant_name": "Hulu", + "name": "HLU*HULU 012345678901 HULU.COM/BILLCA", + "original_description": "HLU*HULU 012345678901 HULU.COM/BILLCA", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "ENTERTAINMENT_TV_AND_MOVIES", + "primary": "ENTERTAINMENT" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_ENTERTAINMENT.png", + "transaction_code": null, + "transaction_id": "P8n745oWK3cnXKyW31x9slDB75xZEeio6WAyR", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "hulu.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 56.45, + "authorized_date": "2024-05-14", + "authorized_datetime": null, + "category": [ + "Travel", + "Taxi" + ], + "category_id": "22016000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "zBbZNQaVrRoDBEEv6ngwJ6wBk74Wd1venVVDa", + "logo_url": "https://plaid-merchant-logos.plaid.com/lyft_597.png", + "name": "Lyft", + "phone_number": null, + "type": "merchant", + "website": "lyft.com" + } + ], + "date": "2024-05-16", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/lyft_597.png", + "merchant_entity_id": "zBbZNQaVrRoDBEEv6ngwJ6wBk74Wd1venVVDa", + "merchant_name": "Lyft", + "name": "Lyft", + "original_description": "Lyft", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "TRANSPORTATION_TAXIS_AND_RIDE_SHARES", + "primary": "TRANSPORTATION" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_TRANSPORTATION.png", + "transaction_code": null, + "transaction_id": "jjQ7dlP5GyCbNavw7rzpty4MQmk9opi6WLaRj", + "transaction_type": "special", + "unofficial_currency_code": null, + "website": "lyft.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 5775, + "authorized_date": "2024-05-14", + "authorized_datetime": null, + "category": [ + "Shops", + "Furniture and Home Decor" + ], + "category_id": "19027000", + "check_number": null, + "counterparties": [], + "date": "2024-05-16", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "ASHLEY HOMESTORE #...0123", + "original_description": "ASHLEY HOMESTORE #...0123", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "GENERAL_MERCHANDISE_OTHER_GENERAL_MERCHANDISE", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "76zXjElb4Zt8RL4DAzM9F9Zwj8GW6DCdJnxBz", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 5.25, + "authorized_date": "2024-05-14", + "authorized_datetime": null, + "category": [ + "Travel", + "Car and Truck Rentals" + ], + "category_id": "22005000", + "check_number": null, + "counterparties": [], + "date": "2024-05-17", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "SCOOT.COM", + "original_description": "SCOOT.COM", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "GENERAL_MERCHANDISE_OTHER_GENERAL_MERCHANDISE", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "edNwr51XgAcoARVZP68vsdRGzqom9Bur95m3y", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 25.69, + "authorized_date": "2024-05-14", + "authorized_datetime": null, + "category": [ + "Travel", + "Gas Stations" + ], + "category_id": "22009000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "BVQanABKyYJ9z2agOMKOV2gzJnXKavm10ajjg", + "logo_url": "https://plaid-merchant-logos.plaid.com/wawa_1104.png", + "name": "Wawa", + "phone_number": null, + "type": "merchant", + "website": "wawa.com" + } + ], + "date": "2024-05-19", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/wawa_1104.png", + "merchant_entity_id": "BVQanABKyYJ9z2agOMKOV2gzJnXKavm10ajjg", + "merchant_name": "Wawa", + "name": "WAWA STORE 01234567890", + "original_description": "WAWA STORE 01234567890", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "TRANSPORTATION_GAS", + "primary": "TRANSPORTATION" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_TRANSPORTATION.png", + "transaction_code": null, + "transaction_id": "QEbZN5mMrxTnJ4XRxba9s9paZDyVQGCwm7Dlk", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "wawa.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 8.24, + "authorized_date": "2024-05-21", + "authorized_datetime": null, + "category": [ + "Service" + ], + "category_id": "18000000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "zwkjrQbbDQqZJRk3egOAo0XB7jnygNDJk9Vjz", + "logo_url": "https://plaid-counterparty-logos.plaid.com/paypal_76.png", + "name": "PayPal", + "phone_number": null, + "type": "payment_app", + "website": "paypal.com" + } + ], + "date": "2024-05-21", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "SQUARETRADE", + "original_description": "PAYPAL *SQUARETRADE", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": "PayPal", + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "GENERAL_MERCHANDISE_OTHER_GENERAL_MERCHANDISE", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "ZvlBL5eMPQtnXDV6QrR9sRex8pZayMceqXG1g", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 4.23, + "authorized_date": "2024-05-21", + "authorized_datetime": null, + "category": [ + "Shops", + "Music, Video and DVD" + ], + "category_id": "19036000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "z3XzRe488pMdo7NAnL44L7rv9L550berky6mK", + "logo_url": "https://plaid-merchant-logos.plaid.com/apple_itunes_1434.png", + "name": "Apple iTunes", + "phone_number": null, + "type": "merchant", + "website": "apple.com/itunes" + } + ], + "date": "2024-05-21", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/apple_itunes_1434.png", + "merchant_entity_id": "z3XzRe488pMdo7NAnL44L7rv9L550berky6mK", + "merchant_name": "Apple iTunes", + "name": "iTunes", + "original_description": "APL*ITUNES.COM/BILL 012-012-0123 ON", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": "Apple", + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "ENTERTAINMENT_MUSIC_AND_AUDIO", + "primary": "ENTERTAINMENT" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_ENTERTAINMENT.png", + "transaction_code": null, + "transaction_id": "MpWPx5o4yrcpZvwQrdbMuwXJg8Eze3fL6P1RL", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "apple.com/itunes" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 191.63, + "authorized_date": "2024-05-21", + "authorized_datetime": null, + "category": [ + "Recreation", + "Arts and Entertainment" + ], + "category_id": "17001000", + "check_number": null, + "counterparties": [], + "date": "2024-05-21", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "DIS*ANNUAL PASSPORT", + "original_description": "DIS*ANNUAL PASSPORT", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "GENERAL_MERCHANDISE_OTHER_GENERAL_MERCHANDISE", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "1bXWx1mVzNcQvyzEo34JTXVmegwx94tpjerPq", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 10.27, + "authorized_date": "2024-05-21", + "authorized_datetime": null, + "category": [ + "Food and Drink", + "Restaurants" + ], + "category_id": "13005000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "EXqpkwmbz7b8mO1A5v24wJMaKONApVvoL9gde", + "logo_url": "https://plaid-merchant-logos.plaid.com/dennys_274.png", + "name": "Denny's", + "phone_number": null, + "type": "merchant", + "website": "dennys.com" + } + ], + "date": "2024-05-21", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/dennys_274.png", + "merchant_entity_id": "EXqpkwmbz7b8mO1A5v24wJMaKONApVvoL9gde", + "merchant_name": "Denny's", + "name": "Denny's", + "original_description": "Denny's", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "FOOD_AND_DRINK_RESTAURANT", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "LLEP35oamKfLwWGzKa8mCk6Apgx1W7ukjpEWl", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "dennys.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 5.27, + "authorized_date": "2024-05-21", + "authorized_datetime": null, + "category": [ + "Food and Drink", + "Restaurants", + "Coffee Shop" + ], + "category_id": "13005043", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "p64nrAXvN7r7mjrdp0qNKnB137Da6BWbbrEwz", + "logo_url": "https://plaid-merchant-logos.plaid.com/dunkin_donuts_305.png", + "name": "Dunkin'", + "phone_number": null, + "type": "merchant", + "website": "dunkindonuts.com" + } + ], + "date": "2024-05-26", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": "012345" + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/dunkin_donuts_305.png", + "merchant_entity_id": "p64nrAXvN7r7mjrdp0qNKnB137Da6BWbbrEwz", + "merchant_name": "Dunkin'", + "name": "Dunkin' Donuts", + "original_description": "DUNKIN #012345", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "FOOD_AND_DRINK_COFFEE", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "p1oA739DqKhR4y8Xk1ZWcxJrdLn6oGtpoVzQK", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "dunkindonuts.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 9.75, + "authorized_date": "2024-05-21", + "authorized_datetime": null, + "category": [ + "Travel", + "Public Transportation Services" + ], + "category_id": "22014000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "OMvdNZ28QavBpQQ00rVdjqzDNOdENQ8O5dE7J", + "logo_url": "https://plaid-merchant-logos.plaid.com/nj_transit_682.png", + "name": "NJ Transit", + "phone_number": null, + "type": "merchant", + "website": "njtransit.com" + } + ], + "date": "2024-05-26", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/nj_transit_682.png", + "merchant_entity_id": "OMvdNZ28QavBpQQ00rVdjqzDNOdENQ8O5dE7J", + "merchant_name": "NJ Transit", + "name": "NJT RAIL MY-TIX", + "original_description": "NJT RAIL MY-TIX", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "HIGH", + "detailed": "TRANSPORTATION_PUBLIC_TRANSIT", + "primary": "TRANSPORTATION" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_TRANSPORTATION.png", + "transaction_code": null, + "transaction_id": "oMpyjB9Dlqhb4v8gkyn6tbzMpZy5G3ioq7bVr", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "njtransit.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 7.88, + "authorized_date": "2024-05-21", + "authorized_datetime": null, + "category": [ + "Travel", + "Public Transportation Services" + ], + "category_id": "22014000", + "check_number": null, + "counterparties": [], + "date": "2024-05-26", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "RTD EAST DIA", + "original_description": "RTD EAST DIA", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "GENERAL_MERCHANDISE_SPORTING_GOODS", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "g4j7B5kXEnCwdLV7NzQPHV59dRBP8WcE8n57P", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 3.75, + "authorized_date": "2024-05-26", + "authorized_datetime": null, + "category": [ + "Travel", + "Gas Stations" + ], + "category_id": "22009000", + "check_number": null, + "counterparties": [], + "date": "2024-05-26", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "Jet Blue Gate Retail", + "original_description": "Jet Blue Gate Retail", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "GENERAL_MERCHANDISE_OTHER_GENERAL_MERCHANDISE", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "8lBZ7kqmNMflM6N1rBb8udzkGwyA5MuW3L8JN", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 33.3, + "authorized_date": "2024-05-21", + "authorized_datetime": null, + "category": [ + "Travel", + "Gas Stations" + ], + "category_id": "22009000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "dMqwOD5qKvJz2bqay2bXjOmg8dQDN9BVz8VNz", + "logo_url": "https://plaid-merchant-logos.plaid.com/exxonmobil_341.png", + "name": "ExxonMobil", + "phone_number": null, + "type": "merchant", + "website": "exxonmobil.com" + } + ], + "date": "2024-05-22", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/exxonmobil_341.png", + "merchant_entity_id": "dMqwOD5qKvJz2bqay2bXjOmg8dQDN9BVz8VNz", + "merchant_name": "ExxonMobil", + "name": "ExxonMobil", + "original_description": "EXXONMOBIL 01234567", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "TRANSPORTATION_GAS", + "primary": "TRANSPORTATION" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_TRANSPORTATION.png", + "transaction_code": null, + "transaction_id": "EjM3A5vK8mCjLea1GE3mCyom95Prvki4xkm5z", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "exxonmobil.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 14.6, + "authorized_date": "2024-05-21", + "authorized_datetime": null, + "category": [ + "Shops", + "Pharmacies" + ], + "category_id": "19043000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "XE0b15bEno6BJ1nBbaaXekBOXLeJr46q8EaKR", + "logo_url": "https://plaid-merchant-logos.plaid.com/duane_reade_303.png", + "name": "Duane Reade", + "phone_number": null, + "type": "merchant", + "website": "walgreens.com/topic/duane-reade/duane-reade.jsp" + } + ], + "date": "2024-05-24", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/duane_reade_303.png", + "merchant_entity_id": "XE0b15bEno6BJ1nBbaaXekBOXLeJr46q8EaKR", + "merchant_name": "Duane Reade", + "name": "Duane Reade", + "original_description": "Duane Reade", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "MEDICAL_PHARMACIES_AND_SUPPLEMENTS", + "primary": "MEDICAL" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_MEDICAL.png", + "transaction_code": null, + "transaction_id": "Wm6kZ5zMajudb4XV6nyafB8VgNb3znC6Z1jQq", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "walgreens.com/topic/duane-reade/duane-reade.jsp" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 17.5, + "authorized_date": "2024-05-21", + "authorized_datetime": null, + "category": [ + "Travel", + "Public Transportation Services" + ], + "category_id": "22014000", + "check_number": null, + "counterparties": [], + "date": "2024-05-24", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "MTA*METROCARD MACHINE #...0123", + "original_description": "MTA*METROCARD MACHINE #...0123", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "TRANSPORTATION_PUBLIC_TRANSIT", + "primary": "TRANSPORTATION" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_TRANSPORTATION.png", + "transaction_code": null, + "transaction_id": "Aa7KgRpVLAhamWlkAvD3s8Dl5KZ7brF9rA5xe", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 331.84, + "authorized_date": "2024-05-26", + "authorized_datetime": null, + "category": [ + "Shops", + "Clothing and Accessories" + ], + "category_id": "19012000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "5Q8Z246OYvabv1ayDv4wK5m8BJkWZMeZQe4K7", + "logo_url": "https://plaid-merchant-logos.plaid.com/hm_467.png", + "name": "H\u0026M", + "phone_number": null, + "type": "merchant", + "website": "hm.com" + } + ], + "date": "2024-05-31", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/hm_467.png", + "merchant_entity_id": "5Q8Z246OYvabv1ayDv4wK5m8BJkWZMeZQe4K7", + "merchant_name": "H\u0026M", + "name": "HM.COM", + "original_description": "HM.COM", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "GENERAL_MERCHANDISE_CLOTHING_AND_ACCESSORIES", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "GeLdq5ozW9Te8Jd4MGvPT84MZDwPW7F6MPo7r", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "hm.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 43.75, + "authorized_date": "2024-05-28", + "authorized_datetime": null, + "category": [ + "Food and Drink", + "Restaurants", + "Coffee Shop" + ], + "category_id": "13005043", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "p64nrAXvN7r7mjrdp0qNKnB137Da6BWbbrEwz", + "logo_url": "https://plaid-merchant-logos.plaid.com/dunkin_donuts_305.png", + "name": "Dunkin'", + "phone_number": null, + "type": "merchant", + "website": "dunkindonuts.com" + } + ], + "date": "2024-05-28", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": "MA", + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/dunkin_donuts_305.png", + "merchant_entity_id": "p64nrAXvN7r7mjrdp0qNKnB137Da6BWbbrEwz", + "merchant_name": "Dunkin'", + "name": "Dunkin' Donuts", + "original_description": "DUNKIN' AUTO 012-012-0123 MA", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "FOOD_AND_DRINK_COFFEE", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "nZLAPzwDylibQdva8jeDtG1eMJoEWbtAlWQMa", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "dunkindonuts.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 282.4, + "authorized_date": "2024-05-28", + "authorized_datetime": null, + "category": [ + "Shops", + "Department Stores" + ], + "category_id": "19018000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "wVy2NR88jw5Z2qro8Vo4oro8E3aErD0gDN0nZ", + "logo_url": "https://plaid-merchant-logos.plaid.com/kohls_553.png", + "name": "Kohl's", + "phone_number": null, + "type": "merchant", + "website": "kohls.com" + } + ], + "date": "2024-05-28", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": "OH", + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/kohls_553.png", + "merchant_entity_id": "wVy2NR88jw5Z2qro8Vo4oro8E3aErD0gDN0nZ", + "merchant_name": "Kohl's", + "name": "WWW.KOHLS.COM #0123", + "original_description": "WWW.KOHLS.COM #0123 012-012-0123 OH", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "HIGH", + "detailed": "GENERAL_MERCHANDISE_DEPARTMENT_STORES", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "bBdylJgXLku1ryVNQ9XehxReg34KG7tmbZ76M", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "kohls.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 44.89, + "authorized_date": "2024-05-28", + "authorized_datetime": null, + "category": [ + "Shops", + "Supermarkets and Groceries" + ], + "category_id": "19047000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "Y0BVyRYwZgNLpDw6Lrvy7yJX38YQWEXBEEoAW", + "logo_url": "https://plaid-merchant-logos.plaid.com/whole_foods_1122.png", + "name": "Whole Foods", + "phone_number": null, + "type": "merchant", + "website": "wholefoods.com" + } + ], + "date": "2024-05-30", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/whole_foods_1122.png", + "merchant_entity_id": "Y0BVyRYwZgNLpDw6Lrvy7yJX38YQWEXBEEoAW", + "merchant_name": "Whole Foods", + "name": "Whole Foods", + "original_description": "WHOLEFDS USQ 01234", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "FOOD_AND_DRINK_GROCERIES", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "mQ1ANkbDmRfb4yvJ6npMt6LmBj1NyEcgydXQB", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "wholefoods.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 8.96, + "authorized_date": "2024-05-28", + "authorized_datetime": null, + "category": [ + "Travel", + "Gas Stations" + ], + "category_id": "22009000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "paR1ob3yrzMomq159aVBQmN9nXBJR1Nny985v", + "logo_url": "https://plaid-merchant-logos.plaid.com/conoco_228.png", + "name": "Conoco", + "phone_number": null, + "type": "merchant", + "website": "conoco.com" + } + ], + "date": "2024-05-30", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/conoco_228.png", + "merchant_entity_id": "paR1ob3yrzMomq159aVBQmN9nXBJR1Nny985v", + "merchant_name": "Conoco", + "name": "Conoco", + "original_description": "CONOCO - SEI 01234", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "TRANSPORTATION_GAS", + "primary": "TRANSPORTATION" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_TRANSPORTATION.png", + "transaction_code": null, + "transaction_id": "yGmrge5K4NFpDQweBL4yuPM35rxdXZi46Xw8N", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "conoco.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 2.56, + "authorized_date": "2024-05-28", + "authorized_datetime": null, + "category": [ + "Food and Drink", + "Restaurants", + "Fast Food" + ], + "category_id": "13005032", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "vzWXDWBjB06j5BJoD3Jo84OJZg7JJzmqOZA22", + "logo_url": "https://plaid-merchant-logos.plaid.com/mcdonalds_619.png", + "name": "McDonald's", + "phone_number": null, + "type": "merchant", + "website": "mcdonalds.com" + } + ], + "date": "2024-06-01", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/mcdonalds_619.png", + "merchant_entity_id": "vzWXDWBjB06j5BJoD3Jo84OJZg7JJzmqOZA22", + "merchant_name": "McDonald's", + "name": "McDonald's", + "original_description": "MCDONALD'S M0123", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "FOOD_AND_DRINK_FAST_FOOD", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "9q36eAK7P1iqGMPbA34yUAZV7NmLojI4xQgoZ", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "mcdonalds.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 10.64, + "authorized_date": "2024-05-28", + "authorized_datetime": null, + "category": [ + "Food and Drink", + "Restaurants", + "Coffee Shop" + ], + "category_id": "13005043", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "NZAJQ5wYdo1W1p39X5q5gpb15OMe39pj4pJBb", + "logo_url": "https://plaid-merchant-logos.plaid.com/starbucks_956.png", + "name": "Starbucks", + "phone_number": null, + "type": "merchant", + "website": "starbucks.com" + } + ], + "date": "2024-06-02", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/starbucks_956.png", + "merchant_entity_id": "NZAJQ5wYdo1W1p39X5q5gpb15OMe39pj4pJBb", + "merchant_name": "Starbucks", + "name": "Starbucks", + "original_description": "STARBUCKS STORE 01234", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "FOOD_AND_DRINK_COFFEE", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "vEGlLPADxdT7rVvMKoxpsbozq3NxkGiq6k1bN", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "starbucks.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 1.75, + "authorized_date": "2024-06-03", + "authorized_datetime": null, + "category": [ + "Food and Drink", + "Restaurants" + ], + "category_id": "13005000", + "check_number": null, + "counterparties": [], + "date": "2024-06-03", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "DOSH", + "original_description": "DOSH", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "GENERAL_MERCHANDISE_OTHER_GENERAL_MERCHANDISE", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "RWmGP5oMzdtreRojdm9zi5wEvmqNVpHapbAN8", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 37.5, + "authorized_date": "2024-06-03", + "authorized_datetime": null, + "category": [ + "Travel", + "Airlines and Aviation Services" + ], + "category_id": "22001000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "bMX8XMQbeoNK1jdBewBvq34JmV5wDBOLqKk74", + "logo_url": "https://plaid-merchant-logos.plaid.com/spirit_airlines_943.png", + "name": "Spirit Airlines", + "phone_number": null, + "type": "merchant", + "website": "spirit.com" + } + ], + "date": "2024-06-03", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/spirit_airlines_943.png", + "merchant_entity_id": "bMX8XMQbeoNK1jdBewBvq34JmV5wDBOLqKk74", + "merchant_name": "Spirit Airlines", + "name": "Spirit Airlines", + "original_description": "Spirit Airlines", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "TRAVEL_FLIGHTS", + "primary": "TRAVEL" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_TRAVEL.png", + "transaction_code": null, + "transaction_id": "6RrvP8d6aQt8RdaEAwWkFbyD6lRWjLi8DXeQy", + "transaction_type": "special", + "unofficial_currency_code": null, + "website": "spirit.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 15, + "authorized_date": "2024-06-03", + "authorized_datetime": null, + "category": [ + "Food and Drink", + "Restaurants" + ], + "category_id": "13005000", + "check_number": null, + "counterparties": [], + "date": "2024-06-07", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "Chick-Fil-A", + "original_description": "CHICKFILA ONE 0123456789", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "GENERAL_MERCHANDISE_OTHER_GENERAL_MERCHANDISE", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "XyXrM5BG47fmPpGD7694U6qPyJX8decbKnLkN", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 9.88, + "authorized_date": "2024-06-03", + "authorized_datetime": null, + "category": [ + "Food and Drink", + "Restaurants" + ], + "category_id": "13005000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "r6qmW6LKN2jJLgKQ2BZq3KYBXKpnKXoaWrqnB", + "logo_url": "https://plaid-merchant-logos.plaid.com/sarku_japan_862.png", + "name": "Sarku Japan", + "phone_number": null, + "type": "merchant", + "website": "sarkujapan.com" + } + ], + "date": "2024-06-07", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": "50 Fox Run Rd Ste 72", + "city": "Newington", + "country": null, + "lat": null, + "lon": null, + "postal_code": "03801", + "region": "NH", + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/sarku_japan_862.png", + "merchant_entity_id": "r6qmW6LKN2jJLgKQ2BZq3KYBXKpnKXoaWrqnB", + "merchant_name": "Sarku Japan", + "name": "Sarku Japan", + "original_description": "SARKU JAPAN 012", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "HIGH", + "detailed": "FOOD_AND_DRINK_RESTAURANT", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "DPZBW5VqgbFP764zbpqmSvjWJDPg3bt3WaJNx", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "sarkujapan.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 28.49, + "authorized_date": "2024-06-03", + "authorized_datetime": null, + "category": [ + "Shops", + "Food and Beverage Store" + ], + "category_id": "19025000", + "check_number": null, + "counterparties": [], + "date": "2024-06-05", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "COOPERS HAWK WINERY", + "original_description": "COOPERS HAWK WINERY", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "FOOD_AND_DRINK_RESTAURANT", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "VbRqQ5rLdPcn6RqVP4QdsXJG18VQ3Et9gPEQP", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 41.2, + "authorized_date": "2024-06-03", + "authorized_datetime": null, + "category": [ + "Service", + "Cable" + ], + "category_id": "18009000", + "check_number": null, + "counterparties": [], + "date": "2024-06-05", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "OPTIMUM 0123", + "original_description": "OPTIMUM 0123", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "GENERAL_MERCHANDISE_OTHER_GENERAL_MERCHANDISE", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "wWnqpjJldatQbrvJydjETKPDB3J4E9cPZomzV", + "transaction_type": "special", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 59.24, + "authorized_date": "2024-06-04", + "authorized_datetime": null, + "category": [ + "Transfer", + "Debit" + ], + "category_id": "21006000", + "check_number": null, + "counterparties": [], + "date": "2024-06-05", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "AMDA", + "original_description": "AMDA", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "GENERAL_MERCHANDISE_OTHER_GENERAL_MERCHANDISE", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "5vK5Ng6bdetkX4dDA6NbSqZK7QDoXMu5K78X8", + "transaction_type": "special", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 65.51, + "authorized_date": "2024-06-04", + "authorized_datetime": null, + "category": [ + "Shops", + "Clothing and Accessories" + ], + "category_id": "19012000", + "check_number": null, + "counterparties": [], + "date": "2024-06-05", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": "01" + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "TILLYS #01", + "original_description": "TILLYS #01", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "GENERAL_MERCHANDISE_OTHER_GENERAL_MERCHANDISE", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "JMgVz59xnlhM1pyKljkeUAXZgLJDw6IB6gkXe", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 257.06, + "authorized_date": "2024-06-03", + "authorized_datetime": null, + "category": [ + "Shops", + "Department Stores" + ], + "category_id": "19018000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "we07mKN15k4aX2Lgqr80pW3b9Oyb1wjKDDdyd", + "logo_url": "https://plaid-merchant-logos.plaid.com/winner_studio_2461.png", + "name": "Winner Studio", + "phone_number": null, + "type": "merchant", + "website": "winnerstudio.vip" + } + ], + "date": "2024-06-04", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/winner_studio_2461.png", + "merchant_entity_id": "we07mKN15k4aX2Lgqr80pW3b9Oyb1wjKDDdyd", + "merchant_name": "Winner Studio", + "name": "WINNERS 012 TORONTO ON", + "original_description": "WINNERS 012 TORONTO ON", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "HIGH", + "detailed": "ENTERTAINMENT_VIDEO_GAMES", + "primary": "ENTERTAINMENT" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_ENTERTAINMENT.png", + "transaction_code": null, + "transaction_id": "k7ZAaqkDn9IeLWvPMD3QTQmwjAae61sL6do77", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "winnerstudio.vip" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 113.63, + "authorized_date": "2024-06-04", + "authorized_datetime": null, + "category": [ + "Payment", + "Rent" + ], + "category_id": "16002000", + "check_number": null, + "counterparties": [], + "date": "2024-06-04", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "RENT THE RUNWAY", + "original_description": "RENT THE RUNWAY", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "RENT_AND_UTILITIES_RENT", + "primary": "RENT_AND_UTILITIES" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_RENT_AND_UTILITIES.png", + "transaction_code": null, + "transaction_id": "leMA4KdDbvT9Rj8aDw3ASlqwZmdvGDipodRBg", + "transaction_type": "special", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 12.35, + "authorized_date": "2024-06-04", + "authorized_datetime": null, + "category": [ + "Shops", + "Arts and Crafts" + ], + "category_id": "19003000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "3WK3ARBMW88rayA5RvB6dp2jDjaJJgvyzZmWv", + "logo_url": "https://plaid-merchant-logos.plaid.com/hobby_lobby_486.png", + "name": "Hobby Lobby", + "phone_number": null, + "type": "merchant", + "website": "hobbylobby.com" + } + ], + "date": "2024-06-04", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/hobby_lobby_486.png", + "merchant_entity_id": "3WK3ARBMW88rayA5RvB6dp2jDjaJJgvyzZmWv", + "merchant_name": "Hobby Lobby", + "name": "Hobby Lobby", + "original_description": "Hobby Lobby", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "GENERAL_MERCHANDISE_OTHER_GENERAL_MERCHANDISE", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "qLgAex9DKrfNjEv5oDMaFebVapMmWGhgr7Rlr", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "hobbylobby.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 39.74, + "authorized_date": "2024-06-03", + "authorized_datetime": null, + "category": [ + "Service" + ], + "category_id": "18000000", + "check_number": null, + "counterparties": [], + "date": "2024-06-06", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "GEEKSQUAD RENEW", + "original_description": "GEEKSQUAD RENEW", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "GENERAL_MERCHANDISE_OTHER_GENERAL_MERCHANDISE", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "K18PB5Zdbqh17BVgqbRQhyoaA5z1deiRpA1oX", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 16.19, + "authorized_date": "2024-06-04", + "authorized_datetime": null, + "category": [ + "Travel", + "Public Transportation Services" + ], + "category_id": "22014000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "LOW", + "entity_id": null, + "logo_url": null, + "name": "Ticket", + "phone_number": null, + "type": "merchant", + "website": null + } + ], + "date": "2024-06-08", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": "Ticket", + "name": "MTA*MNR ETIX TICKET", + "original_description": "MTA*MNR ETIX TICKET", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "TRANSPORTATION_PUBLIC_TRANSIT", + "primary": "TRANSPORTATION" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_TRANSPORTATION.png", + "transaction_code": null, + "transaction_id": "rp8wQd9Drzc7XxVRZbBNsbxP5JMjG9i7J61be", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 43.2, + "authorized_date": "2024-06-04", + "authorized_datetime": null, + "category": [ + "Food and Drink", + "Restaurants" + ], + "category_id": "13005000", + "check_number": null, + "counterparties": [], + "date": "2024-06-09", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "KID ROCKS HONKY TONK\u0026STEA", + "original_description": "KID ROCKS HONKY TONK\u0026STEA", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "GENERAL_MERCHANDISE_OTHER_GENERAL_MERCHANDISE", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "zkyz8Q9rNPCXgWQeyj9pIeqPWlmJpdhlNLQdG", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 16.5, + "authorized_date": "2024-06-08", + "authorized_datetime": null, + "category": [ + "Food and Drink", + "Restaurants", + "Fast Food" + ], + "category_id": "13005032", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "Ew00y0rDXn7nvvXkrWe3RQ9Y8e1Bw6pq3pwYJ", + "logo_url": "https://plaid-merchant-logos.plaid.com/panda_express_714.png", + "name": "Panda Express", + "phone_number": null, + "type": "merchant", + "website": "pandaexpress.com" + } + ], + "date": "2024-06-10", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/panda_express_714.png", + "merchant_entity_id": "Ew00y0rDXn7nvvXkrWe3RQ9Y8e1Bw6pq3pwYJ", + "merchant_name": "Panda Express", + "name": "Panda Express", + "original_description": "PANDA EXPRESS 0123", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "FOOD_AND_DRINK_FAST_FOOD", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "B4ek869ZpGC41mDnjvVxuBdXVLjPRxC4M8gvK", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "pandaexpress.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 1.93, + "authorized_date": "2024-06-10", + "authorized_datetime": null, + "category": [ + "Food and Drink" + ], + "category_id": "13000000", + "check_number": null, + "counterparties": [], + "date": "2024-06-11", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "*-AVI", + "original_description": "*-AVI", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "GENERAL_MERCHANDISE_OTHER_GENERAL_MERCHANDISE", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "3ylJapdb3jf8nK3A1z7JF3jlmQa5LBhZlnEgp", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 43.4, + "authorized_date": "2024-06-11", + "authorized_datetime": null, + "category": [ + "Food and Drink", + "Restaurants" + ], + "category_id": "13005000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "dAvMprboDvKNyXr252aNO8Nj3E2b5qgz5vEKm", + "logo_url": "https://plaid-merchant-logos.plaid.com/marcos_pizza_604.png", + "name": "Marco's Pizza", + "phone_number": null, + "type": "merchant", + "website": "marcos.com" + } + ], + "date": "2024-06-11", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/marcos_pizza_604.png", + "merchant_entity_id": "dAvMprboDvKNyXr252aNO8Nj3E2b5qgz5vEKm", + "merchant_name": "Marco's Pizza", + "name": "MARCOS PIZZA - 0123", + "original_description": "MARCOS PIZZA - 0123", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "FOOD_AND_DRINK_RESTAURANT", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "xAbKo75qa4um5aZ8zndpUMd7gW5wbxU64VeM1", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "marcos.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 33.39, + "authorized_date": "2024-06-10", + "authorized_datetime": null, + "category": [ + "Travel", + "Gas Stations" + ], + "category_id": "22009000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "dr39NnJ5V3EZ9W21yQraB82bk9Bdwo6vwO7aD", + "logo_url": "https://plaid-merchant-logos.plaid.com/sunoco_977.png", + "name": "Sunoco", + "phone_number": null, + "type": "merchant", + "website": "sunoco.com" + } + ], + "date": "2024-06-14", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/sunoco_977.png", + "merchant_entity_id": "dr39NnJ5V3EZ9W21yQraB82bk9Bdwo6vwO7aD", + "merchant_name": "Sunoco", + "name": "Sunoco", + "original_description": "SUNOCO 0123456789 QPS", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "TRANSPORTATION_GAS", + "primary": "TRANSPORTATION" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_TRANSPORTATION.png", + "transaction_code": null, + "transaction_id": "dx4ZK58XoWCvbXVZlNgaC9Rl5wkLExCJEQRyb", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "sunoco.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 3.75, + "authorized_date": "2024-06-12", + "authorized_datetime": null, + "category": [ + "Travel", + "Parking" + ], + "category_id": "22013000", + "check_number": null, + "counterparties": [], + "date": "2024-06-12", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "SPOTHERO", + "original_description": "SPOTHERO 012-012-0123", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "ENTERTAINMENT_SPORTING_EVENTS_AMUSEMENT_PARKS_AND_MUSEUMS", + "primary": "ENTERTAINMENT" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_ENTERTAINMENT.png", + "transaction_code": null, + "transaction_id": "azx7A59X1gc5orV6dPw3soqAjJ3zZysZ5QD6a", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 392, + "authorized_date": "2024-06-12", + "authorized_datetime": null, + "category": [ + "Travel", + "Airlines and Aviation Services" + ], + "category_id": "22001000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "NKDjqyAdQQzpyeD8qpLnX0D6yvLe2KYKYYzQ4", + "logo_url": "https://plaid-merchant-logos.plaid.com/united_airlines_1065.png", + "name": "United Airlines", + "phone_number": null, + "type": "merchant", + "website": "united.com" + } + ], + "date": "2024-06-12", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/united_airlines_1065.png", + "merchant_entity_id": "NKDjqyAdQQzpyeD8qpLnX0D6yvLe2KYKYYzQ4", + "merchant_name": "United Airlines", + "name": "United Airlines", + "original_description": "United Airlines", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "TRAVEL_FLIGHTS", + "primary": "TRAVEL" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_TRAVEL.png", + "transaction_code": null, + "transaction_id": "49qZ4oGbx7T873XDoebnFmlbdW4eDaFJbALp5", + "transaction_type": "special", + "unofficial_currency_code": null, + "website": "united.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 101.06, + "authorized_date": "2024-06-12", + "authorized_datetime": null, + "category": [ + "Shops", + "Digital Purchase" + ], + "category_id": "19019000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "2gOwmq9qK56K60oDm3eLrREV2B2mVadkRn8MW", + "logo_url": "https://plaid-merchant-logos.plaid.com/amazon_44.png", + "name": "Amazon", + "phone_number": null, + "type": "merchant", + "website": "amazon.com" + } + ], + "date": "2024-06-12", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/amazon_44.png", + "merchant_entity_id": "2gOwmq9qK56K60oDm3eLrREV2B2mVadkRn8MW", + "merchant_name": "Amazon", + "name": "AMAZON MKTPLACE PMTS", + "original_description": "AMAZON MKTPLACE PMTS", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "GENERAL_MERCHANDISE_ONLINE_MARKETPLACES", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "NokPd5gNlzfoV1byzGkls7JMP5G3Q9sy65Q8d", + "transaction_type": "digital", + "unofficial_currency_code": null, + "website": "amazon.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 15.02, + "authorized_date": "2024-06-12", + "authorized_datetime": null, + "category": [ + "Shops", + "Discount Stores" + ], + "category_id": "19020000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "YvLB9oWw9XydNLVOdmEYVe53JgagmQ84rKnEj", + "logo_url": "https://plaid-merchant-logos.plaid.com/family_dollar_348.png", + "name": "Family Dollar", + "phone_number": null, + "type": "merchant", + "website": "familydollar.com" + } + ], + "date": "2024-06-13", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/family_dollar_348.png", + "merchant_entity_id": "YvLB9oWw9XydNLVOdmEYVe53JgagmQ84rKnEj", + "merchant_name": "Family Dollar", + "name": "Family Dollar", + "original_description": "Family Dollar", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "GENERAL_MERCHANDISE_DISCOUNT_STORES", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "P8n745oWK3cnXKyW31x9slDB75xZEeio6WALR", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "familydollar.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 49.83, + "authorized_date": "2024-06-14", + "authorized_datetime": null, + "category": [ + "Shops", + "Hardware Store" + ], + "category_id": "19030000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "OvD4k3VrjJYXoar5MNKZQEd333BA1oK8JA8v6", + "logo_url": "https://plaid-merchant-logos.plaid.com/lowes_591.png", + "name": "Lowe's", + "phone_number": null, + "type": "merchant", + "website": "lowes.com" + } + ], + "date": "2024-06-15", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/lowes_591.png", + "merchant_entity_id": "OvD4k3VrjJYXoar5MNKZQEd333BA1oK8JA8v6", + "merchant_name": "Lowe's", + "name": "Lowe's", + "original_description": "Lowe's", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "HOME_IMPROVEMENT_HARDWARE", + "primary": "HOME_IMPROVEMENT" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_HOME_IMPROVEMENT.png", + "transaction_code": null, + "transaction_id": "jjQ7dlP5GyCbNavw7rzpty4MQmk9opi6WLaKj", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "lowes.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 60.15, + "authorized_date": "2024-06-17", + "authorized_datetime": null, + "category": [ + "Shops", + "Department Stores" + ], + "category_id": "19018000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "Eaq3KXm0jJ61KrmMrV0aw9VaY2grqv517d3ep", + "logo_url": "https://plaid-merchant-logos.plaid.com/target_997.png", + "name": "Target", + "phone_number": null, + "type": "merchant", + "website": "target.com" + } + ], + "date": "2024-06-18", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/target_997.png", + "merchant_entity_id": "Eaq3KXm0jJ61KrmMrV0aw9VaY2grqv517d3ep", + "merchant_name": "Target", + "name": "Target", + "original_description": "Target", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "HIGH", + "detailed": "GENERAL_MERCHANDISE_SUPERSTORES", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "76zXjElb4Zt8RL4DAzM9F9Zwj8GW6DCdJnxbz", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "target.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 29.92, + "authorized_date": "2024-06-21", + "authorized_datetime": null, + "category": [ + "Food and Drink", + "Restaurants", + "Fast Food" + ], + "category_id": "13005032", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "9dgV151n418qNVjVLer6JQVrj5YnwgQ7dqVbM", + "logo_url": "https://plaid-merchant-logos.plaid.com/pizza_hut_758.png", + "name": "Pizza Hut", + "phone_number": null, + "type": "merchant", + "website": "pizzahut.com" + } + ], + "date": "2024-06-21", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/pizza_hut_758.png", + "merchant_entity_id": "9dgV151n418qNVjVLer6JQVrj5YnwgQ7dqVbM", + "merchant_name": "Pizza Hut", + "name": "Pizza Hut", + "original_description": "PIZZA HUT 012345", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "FOOD_AND_DRINK_FAST_FOOD", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "edNwr51XgAcoARVZP68vsdRGzqom9Bur95mvy", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "pizzahut.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 45.32, + "authorized_date": "2024-06-21", + "authorized_datetime": null, + "category": [ + "Shops", + "Hardware Store" + ], + "category_id": "19030000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "kVawvV6p0R25gKw3qbp4Kq7kEzDdY5RnjV7RK", + "logo_url": "https://plaid-merchant-logos.plaid.com/home_depot_491.png", + "name": "The Home Depot", + "phone_number": null, + "type": "merchant", + "website": "homedepot.com" + } + ], + "date": "2024-06-22", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": "GA", + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/home_depot_491.png", + "merchant_entity_id": "kVawvV6p0R25gKw3qbp4Kq7kEzDdY5RnjV7RK", + "merchant_name": "The Home Depot", + "name": "Home Depot", + "original_description": "HOMEDEPOT.COM 012-012-0123 GA", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "HOME_IMPROVEMENT_HARDWARE", + "primary": "HOME_IMPROVEMENT" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_HOME_IMPROVEMENT.png", + "transaction_code": null, + "transaction_id": "QEbZN5mMrxTnJ4XRxba9s9paZDyVQGCwm7DPk", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "homedepot.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 5.57, + "authorized_date": "2024-06-21", + "authorized_datetime": null, + "category": [ + "Recreation", + "Arts and Entertainment", + "Movie Theatres" + ], + "category_id": "17001009", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "nADWWmL6e6BBZZLzvkvQn3evqKj61KrZanN1O", + "logo_url": "https://plaid-merchant-logos.plaid.com/amc_theatres_49.png", + "name": "AMC Theatres", + "phone_number": null, + "type": "merchant", + "website": "amctheatres.com" + } + ], + "date": "2024-06-22", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/amc_theatres_49.png", + "merchant_entity_id": "nADWWmL6e6BBZZLzvkvQn3evqKj61KrZanN1O", + "merchant_name": "AMC Theatres", + "name": "0123 AMC ONLINE", + "original_description": "0123 AMC ONLINE", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "ENTERTAINMENT_TV_AND_MOVIES", + "primary": "ENTERTAINMENT" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_ENTERTAINMENT.png", + "transaction_code": null, + "transaction_id": "ZvlBL5eMPQtnXDV6QrR9sRex8pZayMceqXGag", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "amctheatres.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 68.51, + "authorized_date": "2024-06-21", + "authorized_datetime": null, + "category": [ + "Travel", + "Lodging" + ], + "category_id": "22012000", + "check_number": null, + "counterparties": [], + "date": "2024-06-25", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "HOTELS.COM012345678901", + "original_description": "HOTELS.COM012345678901", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "ENTERTAINMENT_SPORTING_EVENTS_AMUSEMENT_PARKS_AND_MUSEUMS", + "primary": "ENTERTAINMENT" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_ENTERTAINMENT.png", + "transaction_code": null, + "transaction_id": "MpWPx5o4yrcpZvwQrdbMuwXJg8Eze3fL6P1XL", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 12, + "authorized_date": "2024-06-23", + "authorized_datetime": null, + "category": [ + "Service", + "Food and Beverage" + ], + "category_id": "18021000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "WKk6bENeYwvVaLaY8EEOw8Koa2X72m2wJOk1Z", + "logo_url": "https://plaid-counterparty-logos.plaid.com/seamless_5.png", + "name": "Seamless", + "phone_number": null, + "type": "marketplace", + "website": "seamless.com" + } + ], + "date": "2024-06-27", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": "Seamless", + "name": "Seamless", + "original_description": "Seamless", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "MEDIUM", + "detailed": "FOOD_AND_DRINK_RESTAURANT", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "1bXWx1mVzNcQvyzEo34JTXVmegwx94tpjer9q", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 121.5, + "authorized_date": "2024-06-27", + "authorized_datetime": null, + "category": [ + "Shops", + "Hardware Store" + ], + "category_id": "19030000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "B5J7EM948zn5j78MK26488nL2kLD4LrzB35be", + "logo_url": "https://plaid-merchant-logos.plaid.com/harbor_freight_tools_474.png", + "name": "Harbor Freight Tools", + "phone_number": null, + "type": "merchant", + "website": "harborfreight.com" + } + ], + "date": "2024-06-27", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": "13691 Harbor Blvd", + "city": "Garden Grove", + "country": null, + "lat": 33.764244, + "lon": -117.920891, + "postal_code": "92843", + "region": "CA", + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/harbor_freight_tools_474.png", + "merchant_entity_id": "B5J7EM948zn5j78MK26488nL2kLD4LrzB35be", + "merchant_name": "Harbor Freight Tools", + "name": "Harbor Freight Tools", + "original_description": "HARBOR FREIGHT TOOLS 012", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "HOME_IMPROVEMENT_HARDWARE", + "primary": "HOME_IMPROVEMENT" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_HOME_IMPROVEMENT.png", + "transaction_code": null, + "transaction_id": "LLEP35oamKfLwWGzKa8mCk6Apgx1W7ukjpE6l", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "harborfreight.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 8.08, + "authorized_date": "2024-06-27", + "authorized_datetime": null, + "category": [ + "Shops", + "Pharmacies" + ], + "category_id": "19043000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "qkd60geNmo8qMV0wAXbL3yYbqdnoY4ezwbe1R", + "logo_url": "https://plaid-merchant-logos.plaid.com/cvs_264.png", + "name": "CVS", + "phone_number": null, + "type": "merchant", + "website": "cvs.com" + } + ], + "date": "2024-06-27", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": "208 Elm St", + "city": "Westfield", + "country": null, + "lat": 42.124622, + "lon": -72.750076, + "postal_code": "01085", + "region": "MA", + "store_number": "01234" + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/cvs_264.png", + "merchant_entity_id": "qkd60geNmo8qMV0wAXbL3yYbqdnoY4ezwbe1R", + "merchant_name": "CVS", + "name": "CVS", + "original_description": "CVS/PHARMACY #01234", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "MEDICAL_PHARMACIES_AND_SUPPLEMENTS", + "primary": "MEDICAL" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_MEDICAL.png", + "transaction_code": null, + "transaction_id": "p1oA739DqKhR4y8Xk1ZWcxJrdLn6oGtpoVzlK", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "cvs.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 43.75, + "authorized_date": "2024-06-26", + "authorized_datetime": null, + "category": [ + "Food and Drink", + "Restaurants", + "Coffee Shop" + ], + "category_id": "13005043", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "NZAJQ5wYdo1W1p39X5q5gpb15OMe39pj4pJBb", + "logo_url": "https://plaid-merchant-logos.plaid.com/starbucks_956.png", + "name": "Starbucks", + "phone_number": null, + "type": "merchant", + "website": "starbucks.com" + } + ], + "date": "2024-06-26", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/starbucks_956.png", + "merchant_entity_id": "NZAJQ5wYdo1W1p39X5q5gpb15OMe39pj4pJBb", + "merchant_name": "Starbucks", + "name": "Starbucks", + "original_description": "Starbucks", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "FOOD_AND_DRINK_COFFEE", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "oMpyjB9Dlqhb4v8gkyn6tbzMpZy5G3ioq7bQr", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "starbucks.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 16.11, + "authorized_date": "2024-06-26", + "authorized_datetime": null, + "category": [ + "Food and Drink", + "Restaurants" + ], + "category_id": "13005000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "m2M3MJoE27zdYprWD2kpbzeoOm6WMDOY5L92r", + "logo_url": "https://plaid-merchant-logos.plaid.com/dave_busters_268.png", + "name": "Dave \u0026 Buster's", + "phone_number": null, + "type": "merchant", + "website": "daveandbusters.com" + } + ], + "date": "2024-06-26", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/dave_busters_268.png", + "merchant_entity_id": "m2M3MJoE27zdYprWD2kpbzeoOm6WMDOY5L92r", + "merchant_name": "Dave \u0026 Buster's", + "name": "Dave \u0026 Buster's", + "original_description": "Dave \u0026 Buster's", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "HIGH", + "detailed": "FOOD_AND_DRINK_RESTAURANT", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "g4j7B5kXEnCwdLV7NzQPHV59dRBP8WcE8n5NP", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "daveandbusters.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 22.49, + "authorized_date": "2024-06-26", + "authorized_datetime": null, + "category": [ + "Service", + "Subscription" + ], + "category_id": "18061000", + "check_number": null, + "counterparties": [], + "date": "2024-06-26", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "SLING.COM", + "original_description": "SLING.COM", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "ENTERTAINMENT_TV_AND_MOVIES", + "primary": "ENTERTAINMENT" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_ENTERTAINMENT.png", + "transaction_code": null, + "transaction_id": "8lBZ7kqmNMflM6N1rBb8udzkGwyA5MuW3L87N", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 61.21, + "authorized_date": "2024-06-26", + "authorized_datetime": null, + "category": [ + "Shops", + "Music, Video and DVD" + ], + "category_id": "19036000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "z3XzRe488pMdo7NAnL44L7rv9L550berky6mK", + "logo_url": "https://plaid-merchant-logos.plaid.com/apple_itunes_1434.png", + "name": "Apple iTunes", + "phone_number": null, + "type": "merchant", + "website": "apple.com/itunes" + } + ], + "date": "2024-06-29", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/apple_itunes_1434.png", + "merchant_entity_id": "z3XzRe488pMdo7NAnL44L7rv9L550berky6mK", + "merchant_name": "Apple iTunes", + "name": "iTunes", + "original_description": "APL* ITUNES.COM/BILL", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": "Apple", + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "ENTERTAINMENT_MUSIC_AND_AUDIO", + "primary": "ENTERTAINMENT" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_ENTERTAINMENT.png", + "transaction_code": null, + "transaction_id": "EjM3A5vK8mCjLea1GE3mCyom95Prvki4xkm8z", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "apple.com/itunes" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 23.19, + "authorized_date": "2024-06-27", + "authorized_datetime": null, + "category": [ + "Food and Drink", + "Restaurants", + "Fast Food" + ], + "category_id": "13005032", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "16RXA67KaQVW2JnKrkqndbVkpZW8ykA8YAB28", + "logo_url": "https://plaid-merchant-logos.plaid.com/innout_burger_517.png", + "name": "In-N-Out Burger", + "phone_number": null, + "type": "merchant", + "website": "in-n-out.com" + } + ], + "date": "2024-06-29", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": "11455 Laurel Canyon Blvd", + "city": "San Fernando", + "country": null, + "lat": null, + "lon": null, + "postal_code": "91340", + "region": "CA", + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/innout_burger_517.png", + "merchant_entity_id": "16RXA67KaQVW2JnKrkqndbVkpZW8ykA8YAB28", + "merchant_name": "In-N-Out Burger", + "name": "In-N-Out Burger", + "original_description": "IN N OUT BURGER 012", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "FOOD_AND_DRINK_FAST_FOOD", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "Wm6kZ5zMajudb4XV6nyafB8VgNb3znC6Z1j3q", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "in-n-out.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 4.02, + "authorized_date": "2024-06-27", + "authorized_datetime": null, + "category": [ + "Service", + "Subscription" + ], + "category_id": "18061000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "2373QOZJ18DqqK0KWvgpng3nmVDLMvDvy05RN", + "logo_url": "https://plaid-merchant-logos.plaid.com/spotify_947.png", + "name": "Spotify", + "phone_number": null, + "type": "merchant", + "website": "spotify.com" + } + ], + "date": "2024-06-29", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": "NY", + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/spotify_947.png", + "merchant_entity_id": "2373QOZJ18DqqK0KWvgpng3nmVDLMvDvy05RN", + "merchant_name": "Spotify", + "name": "Spotify", + "original_description": "Spotify USA 012-0123456 NY", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "ENTERTAINMENT_MUSIC_AND_AUDIO", + "primary": "ENTERTAINMENT" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_ENTERTAINMENT.png", + "transaction_code": null, + "transaction_id": "Aa7KgRpVLAhamWlkAvD3s8Dl5KZ7brF9rA5Le", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "spotify.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 141.9, + "authorized_date": "2024-06-27", + "authorized_datetime": null, + "category": [ + "Shops", + "Glasses and Optometrist" + ], + "category_id": "19029000", + "check_number": null, + "counterparties": [], + "date": "2024-06-29", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "*-012 CONTACTS, INC.", + "original_description": "*-012 CONTACTS, INC.", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "GENERAL_MERCHANDISE_OTHER_GENERAL_MERCHANDISE", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "GeLdq5ozW9Te8Jd4MGvPT84MZDwPW7F6MPoKr", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + } + ], + "has_more": true, + "modified": [], + "next_cursor": "CAESJUdlTGRxNW96VzlUZThKZDRNR3ZQVDg0TVpEd1BXN0Y2TVBvS3IiDAian63BBhCYuabxAioMCJqfrcEGEOjakKAD", + "removed": [], + "request_id": "qPdIJe4UjOs5zjI", + "transactions_update_status": "HISTORICAL_UPDATE_COMPLETE" + } + recorded_at: Mon, 19 May 2025 15:35:01 GMT +- request: + method: post + uri: https://sandbox.plaid.com/transactions/sync + body: + encoding: UTF-8 + string: '{"access_token":"access-sandbox-d531d3c9-8520-43ca-9e58-5b70b79fd1d4","cursor":"CAESJUdlTGRxNW96VzlUZThKZDRNR3ZQVDg0TVpEd1BXN0Y2TVBvS3IiDAian63BBhCYuabxAioMCJqfrcEGEOjakKAD","count":100,"options":{"include_original_description":true}}' + headers: + Content-Type: + - application/json + User-Agent: + - Plaid Ruby v38.0.0 + Accept: + - application/json + Plaid-Client-Id: + - "" + Plaid-Version: + - '2020-09-14' + Plaid-Secret: + - "" + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + response: + status: + code: 200 + message: OK + headers: + Server: + - nginx + Date: + - Mon, 19 May 2025 15:35:01 GMT + Content-Type: + - application/json; charset=utf-8 + Transfer-Encoding: + - chunked + Connection: + - keep-alive + Plaid-Version: + - '2020-09-14' + Vary: + - Accept-Encoding + X-Envoy-Upstream-Service-Time: + - '361' + X-Envoy-Decorator-Operation: + - default.svc-apiv2:8080/* + Strict-Transport-Security: + - max-age=31536000; includeSubDomains; preload + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Xss-Protection: + - 1; mode=block + body: + encoding: ASCII-8BIT + string: |- + { + "accounts": [ + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "balances": { + "available": 11065.71, + "current": 1000, + "iso_currency_code": "USD", + "limit": 12200, + "unofficial_currency_code": null + }, + "holder_category": "personal", + "mask": "3053", + "name": "Test Credit Card Account", + "official_name": "Plaid credit card", + "subtype": "credit card", + "type": "credit" + } + ], + "added": [ + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 97.16, + "authorized_date": "2024-06-27", + "authorized_datetime": null, + "category": [ + "Shops", + "Supermarkets and Groceries" + ], + "category_id": "19047000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "5VDpAWnN4X9VYR437da5D71Bva4o7RLQ2V3NY", + "logo_url": "https://plaid-merchant-logos.plaid.com/acme_markets_12.png", + "name": "Acme Markets", + "phone_number": null, + "type": "merchant", + "website": "acmemarkets.com" + } + ], + "date": "2024-06-28", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": "0123" + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/acme_markets_12.png", + "merchant_entity_id": "5VDpAWnN4X9VYR437da5D71Bva4o7RLQ2V3NY", + "merchant_name": "Acme Markets", + "name": "ACME #0123", + "original_description": "ACME #0123", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "FOOD_AND_DRINK_GROCERIES", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "nZLAPzwDylibQdva8jeDtG1eMJoEWbtAlWQ9a", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "acmemarkets.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 11.82, + "authorized_date": "2024-06-27", + "authorized_datetime": null, + "category": [ + "Shops", + "Supermarkets and Groceries" + ], + "category_id": "19047000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "BzJndQpm8ERB0yK25EM6n48raQaNKLK8Vkw5A", + "logo_url": "https://plaid-merchant-logos.plaid.com/vons_1093.png", + "name": "Vons", + "phone_number": null, + "type": "merchant", + "website": "vons.com" + } + ], + "date": "2024-07-01", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": "0123" + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/vons_1093.png", + "merchant_entity_id": "BzJndQpm8ERB0yK25EM6n48raQaNKLK8Vkw5A", + "merchant_name": "Vons", + "name": "Vons", + "original_description": "VONS #0123", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "FOOD_AND_DRINK_GROCERIES", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "bBdylJgXLku1ryVNQ9XehxReg34KG7tmbZ7nM", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "vons.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 17.5, + "authorized_date": "2024-06-28", + "authorized_datetime": null, + "category": [ + "Service", + "Shipping and Freight" + ], + "category_id": "18058000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "LOW", + "entity_id": null, + "logo_url": null, + "name": "Fedexoffice", + "phone_number": null, + "type": "merchant", + "website": null + } + ], + "date": "2024-07-01", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": "Fedexoffice", + "name": "FedEx", + "original_description": "FEDEXOFFICE #0123456", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "GENERAL_SERVICES_OTHER_GENERAL_SERVICES", + "primary": "GENERAL_SERVICES" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_SERVICES.png", + "transaction_code": null, + "transaction_id": "mQ1ANkbDmRfb4yvJ6npMt6LmBj1NyEcgydXeB", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 90.34, + "authorized_date": "2024-06-28", + "authorized_datetime": null, + "category": [ + "Shops", + "Supermarkets and Groceries" + ], + "category_id": "19047000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "AndorbmbMKgjOazDKwrVBAVqp889Wvy1AEJ0B", + "logo_url": "https://plaid-merchant-logos.plaid.com/heb_466.png", + "name": "H-E-B", + "phone_number": null, + "type": "merchant", + "website": "heb.com" + } + ], + "date": "2024-07-01", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": "012" + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/heb_466.png", + "merchant_entity_id": "AndorbmbMKgjOazDKwrVBAVqp889Wvy1AEJ0B", + "merchant_name": "H-E-B", + "name": "H-E-B GAS #012", + "original_description": "H-E-B GAS #012", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "FOOD_AND_DRINK_GROCERIES", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "yGmrge5K4NFpDQweBL4yuPM35rxdXZi46XwPN", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "heb.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 371.36, + "authorized_date": "2024-06-27", + "authorized_datetime": null, + "category": [ + "Shops", + "Supermarkets and Groceries" + ], + "category_id": "19047000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "E7j7q72DD9eNYyJRooJk60BwW81Rjd14aWqZq", + "logo_url": "https://plaid-merchant-logos.plaid.com/marianos_606.png", + "name": "Mariano's", + "phone_number": null, + "type": "merchant", + "website": "marianos.com" + } + ], + "date": "2024-06-30", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": "012" + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/marianos_606.png", + "merchant_entity_id": "E7j7q72DD9eNYyJRooJk60BwW81Rjd14aWqZq", + "merchant_name": "Mariano's", + "name": "Mariano's", + "original_description": "MARIANOS #012", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "FOOD_AND_DRINK_GROCERIES", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "9q36eAK7P1iqGMPbA34yUAZV7NmLojI4xQgyZ", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "marianos.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 44.21, + "authorized_date": "2024-06-30", + "authorized_datetime": null, + "category": [ + "Shops", + "Supermarkets and Groceries" + ], + "category_id": "19047000", + "check_number": null, + "counterparties": [], + "date": "2024-06-30", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "PATEL BROTHERS", + "original_description": "PATEL BROTHERS", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "GENERAL_MERCHANDISE_OTHER_GENERAL_MERCHANDISE", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "vEGlLPADxdT7rVvMKoxpsbozq3NxkGiq6k1eN", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 1.4, + "authorized_date": "2024-07-03", + "authorized_datetime": null, + "category": [ + "Shops", + "Music, Video and DVD" + ], + "category_id": "19036000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "r7MA910JJELKpYekdAz6n34373RQw2a3Nn52E", + "logo_url": "https://plaid-merchant-logos.plaid.com/redbox_816.png", + "name": "Redbox", + "phone_number": null, + "type": "merchant", + "website": "redbox.com" + } + ], + "date": "2024-07-08", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/redbox_816.png", + "merchant_entity_id": "r7MA910JJELKpYekdAz6n34373RQw2a3Nn52E", + "merchant_name": "Redbox", + "name": "Redbox", + "original_description": "Redbox", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "ENTERTAINMENT_TV_AND_MOVIES", + "primary": "ENTERTAINMENT" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_ENTERTAINMENT.png", + "transaction_code": null, + "transaction_id": "RWmGP5oMzdtreRojdm9zi5wEvmqNVpHapbAk8", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "redbox.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 57.95, + "authorized_date": "2024-07-04", + "authorized_datetime": null, + "category": [ + "Shops", + "Supermarkets and Groceries" + ], + "category_id": "19047000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "rZ8BQewZbBezLVVnKmARnrVqyAnoz2Nz715QJ", + "logo_url": "https://plaid-merchant-logos.plaid.com/frys_food_and_drug_407.png", + "name": "Fry's Food and Drug", + "phone_number": null, + "type": "merchant", + "website": "frysfood.com" + } + ], + "date": "2024-07-08", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/frys_food_and_drug_407.png", + "merchant_entity_id": "rZ8BQewZbBezLVVnKmARnrVqyAnoz2Nz715QJ", + "merchant_name": "Fry's Food and Drug", + "name": "FRY'S FOOD DRG 012", + "original_description": "FRY'S FOOD DRG 012", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "HIGH", + "detailed": "FOOD_AND_DRINK_GROCERIES", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "6RrvP8d6aQt8RdaEAwWkFbyD6lRWjLi8DXeKy", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "frysfood.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 2.92, + "authorized_date": "2024-07-04", + "authorized_datetime": null, + "category": [ + "Shops", + "Pharmacies" + ], + "category_id": "19043000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "qkd60geNmo8qMV0wAXbL3yYbqdnoY4ezwbe1R", + "logo_url": "https://plaid-merchant-logos.plaid.com/cvs_264.png", + "name": "CVS", + "phone_number": null, + "type": "merchant", + "website": "cvs.com" + } + ], + "date": "2024-07-08", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": "208 Elm St", + "city": "Westfield", + "country": null, + "lat": 42.124622, + "lon": -72.750076, + "postal_code": "01085", + "region": "MA", + "store_number": "01234" + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/cvs_264.png", + "merchant_entity_id": "qkd60geNmo8qMV0wAXbL3yYbqdnoY4ezwbe1R", + "merchant_name": "CVS", + "name": "CVS", + "original_description": "CVS/PHARMACY #01234 #...0123", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "MEDICAL_PHARMACIES_AND_SUPPLEMENTS", + "primary": "MEDICAL" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_MEDICAL.png", + "transaction_code": null, + "transaction_id": "XyXrM5BG47fmPpGD7694U6qPyJX8decbKnLjN", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "cvs.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 19.39, + "authorized_date": "2024-07-07", + "authorized_datetime": null, + "category": [ + "Food and Drink", + "Restaurants" + ], + "category_id": "13005000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "Y5W786AN4Kr4V7d4nWLKrzngqR76VKzpOBOz4", + "logo_url": "https://plaid-merchant-logos.plaid.com/rubios_849.png", + "name": "Rubio's", + "phone_number": null, + "type": "merchant", + "website": "rubios.com" + } + ], + "date": "2024-07-08", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": "012" + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/rubios_849.png", + "merchant_entity_id": "Y5W786AN4Kr4V7d4nWLKrzngqR76VKzpOBOz4", + "merchant_name": "Rubio's", + "name": "Rubio's", + "original_description": "RUBIO'S #012", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "HIGH", + "detailed": "FOOD_AND_DRINK_RESTAURANT", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "DPZBW5VqgbFP764zbpqmSvjWJDPg3bt3WaJRx", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "rubios.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 12.98, + "authorized_date": "2024-07-07", + "authorized_datetime": null, + "category": [ + "Food and Drink", + "Restaurants" + ], + "category_id": "13005000", + "check_number": null, + "counterparties": [], + "date": "2024-07-08", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "T.G.I. Friday's", + "original_description": "T.G.I. Friday's", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "GENERAL_MERCHANDISE_OTHER_GENERAL_MERCHANDISE", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "VbRqQ5rLdPcn6RqVP4QdsXJG18VQ3Et9gPEyP", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 23.29, + "authorized_date": "2024-07-04", + "authorized_datetime": null, + "category": [ + "Shops", + "Supermarkets and Groceries" + ], + "category_id": "19047000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "O5W5j4dN9OR3E6ypQmjdkWZZRoXEzVMz2ByWM", + "logo_url": "https://plaid-merchant-logos.plaid.com/walmart_1100.png", + "name": "Walmart", + "phone_number": null, + "type": "merchant", + "website": "walmart.com" + } + ], + "date": "2024-07-04", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": "1500 E Wrangler Blvd", + "city": "Seminole", + "country": null, + "lat": 35.248352, + "lon": -96.654625, + "postal_code": "74868", + "region": "OK", + "store_number": "0123" + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/walmart_1100.png", + "merchant_entity_id": "O5W5j4dN9OR3E6ypQmjdkWZZRoXEzVMz2ByWM", + "merchant_name": "Walmart", + "name": "Walmart", + "original_description": "WAL-MART SUPERCENTER#0123", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "GENERAL_MERCHANDISE_SUPERSTORES", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "wWnqpjJldatQbrvJydjETKPDB3J4E9cPZomRV", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "walmart.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 33.13, + "authorized_date": "2024-07-04", + "authorized_datetime": null, + "category": [ + "Food and Drink", + "Restaurants", + "Fast Food" + ], + "category_id": "13005032", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "MezwEv82wQZEknrQkzrO7nKBW0qZXo4eL8NXL", + "logo_url": "https://plaid-merchant-logos.plaid.com/whataburger_1118.png", + "name": "Whataburger", + "phone_number": null, + "type": "merchant", + "website": "whataburger.com" + } + ], + "date": "2024-07-04", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/whataburger_1118.png", + "merchant_entity_id": "MezwEv82wQZEknrQkzrO7nKBW0qZXo4eL8NXL", + "merchant_name": "Whataburger", + "name": "Whataburger", + "original_description": "Whataburger", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "FOOD_AND_DRINK_FAST_FOOD", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "5vK5Ng6bdetkX4dDA6NbSqZK7QDoXMu5K78y8", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "whataburger.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 69.08, + "authorized_date": "2024-07-04", + "authorized_datetime": null, + "category": [ + "Service", + "Cable" + ], + "category_id": "18009000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "edRWya4NWjyZqeJbjQVAB2qZakY1XvpVN023g", + "logo_url": "https://plaid-merchant-logos.plaid.com/comcast_226.png", + "name": "Comcast", + "phone_number": null, + "type": "merchant", + "website": "comcast.com" + } + ], + "date": "2024-07-04", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/comcast_226.png", + "merchant_entity_id": "edRWya4NWjyZqeJbjQVAB2qZakY1XvpVN023g", + "merchant_name": "Comcast", + "name": "Comcast", + "original_description": "Comcast", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "RENT_AND_UTILITIES_INTERNET_AND_CABLE", + "primary": "RENT_AND_UTILITIES" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_RENT_AND_UTILITIES.png", + "transaction_code": null, + "transaction_id": "JMgVz59xnlhM1pyKljkeUAXZgLJDw6IB6gkMe", + "transaction_type": "special", + "unofficial_currency_code": null, + "website": "comcast.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 75, + "authorized_date": "2024-07-04", + "authorized_datetime": null, + "category": [ + "Travel", + "Car and Truck Rentals" + ], + "category_id": "22005000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "6rpQRNQ2qd1pwRJVwk9772DNnABpKjjoLV9O9", + "logo_url": "https://plaid-merchant-logos.plaid.com/hertz_480.png", + "name": "Hertz", + "phone_number": null, + "type": "merchant", + "website": "hertz.com" + } + ], + "date": "2024-07-04", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/hertz_480.png", + "merchant_entity_id": "6rpQRNQ2qd1pwRJVwk9772DNnABpKjjoLV9O9", + "merchant_name": "Hertz", + "name": "Hertz Rent-a-Car", + "original_description": "HERTZ RENT-A-CAR", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "TRAVEL_RENTAL_CARS", + "primary": "TRAVEL" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_TRAVEL.png", + "transaction_code": null, + "transaction_id": "k7ZAaqkDn9IeLWvPMD3QTQmwjAae61sL6doD7", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "hertz.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 66, + "authorized_date": "2024-07-04", + "authorized_datetime": null, + "category": [ + "Food and Drink", + "Restaurants", + "Coffee Shop" + ], + "category_id": "13005043", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "1kREaeXb2D91KBY6WmLYDQ38KM4B7Nd9Kmdnn", + "logo_url": "https://plaid-merchant-logos.plaid.com/nespresso_673.png", + "name": "Nespresso", + "phone_number": null, + "type": "merchant", + "website": "nespresso.com" + } + ], + "date": "2024-07-05", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/nespresso_673.png", + "merchant_entity_id": "1kREaeXb2D91KBY6WmLYDQ38KM4B7Nd9Kmdnn", + "merchant_name": "Nespresso", + "name": "NESPRESSO USA", + "original_description": "NESPRESSO USA", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "FOOD_AND_DRINK_COFFEE", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "leMA4KdDbvT9Rj8aDw3ASlqwZmdvGDipodRgg", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "nespresso.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 79.29, + "authorized_date": "2024-07-04", + "authorized_datetime": null, + "category": [ + "Shops", + "Clothing and Accessories" + ], + "category_id": "19012000", + "check_number": null, + "counterparties": [], + "date": "2024-07-05", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "SP * FASHIONNOVA.COM", + "original_description": "SP * FASHIONNOVA.COM", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "GENERAL_MERCHANDISE_OTHER_GENERAL_MERCHANDISE", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "bBdylJgXLku1ryVNQ9XehxReg34KG7tmbZ7Kb", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 110.4, + "authorized_date": "2024-07-04", + "authorized_datetime": null, + "category": [ + "Shops", + "Supermarkets and Groceries" + ], + "category_id": "19047000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "J5VqjvXoRQjv5vWrMLp3YDmjOjb9ao52b1NQA", + "logo_url": "https://plaid-merchant-logos.plaid.com/hannaford_473.png", + "name": "Hannaford", + "phone_number": null, + "type": "merchant", + "website": "hannaford.com" + } + ], + "date": "2024-07-06", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": "0123" + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/hannaford_473.png", + "merchant_entity_id": "J5VqjvXoRQjv5vWrMLp3YDmjOjb9ao52b1NQA", + "merchant_name": "Hannaford", + "name": "Hannaford", + "original_description": "HANNAFORD #0123", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "FOOD_AND_DRINK_GROCERIES", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "mQ1ANkbDmRfb4yvJ6npMt6LmBj1NyEcgydXpZ", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "hannaford.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 8.1, + "authorized_date": "2024-07-04", + "authorized_datetime": null, + "category": [ + "Shops", + "Supermarkets and Groceries" + ], + "category_id": "19047000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "mk9mJ322wek9V0Y565eLq210z8W97My52ABen", + "logo_url": "https://plaid-merchant-logos.plaid.com/ingles_markets_520.png", + "name": "Ingles Markets", + "phone_number": null, + "type": "merchant", + "website": "ingles-markets.com" + } + ], + "date": "2024-07-09", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": "1818 W Dixon Blvd", + "city": "Shelby", + "country": null, + "lat": 35.295883, + "lon": -81.572388, + "postal_code": "28152", + "region": "NC", + "store_number": "012" + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/ingles_markets_520.png", + "merchant_entity_id": "mk9mJ322wek9V0Y565eLq210z8W97My52ABen", + "merchant_name": "Ingles Markets", + "name": "INGLES MARKETS #012", + "original_description": "INGLES MARKETS #012", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "FOOD_AND_DRINK_GROCERIES", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "yGmrge5K4NFpDQweBL4yuPM35rxdXZi46Xwnz", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "ingles-markets.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 184.99, + "authorized_date": "2024-07-09", + "authorized_datetime": null, + "category": [ + "Shops", + "Food and Beverage Store" + ], + "category_id": "19025000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "OvJvDwD1QwwjjgXvKXw2MdNAVLW9K6VEevKV5", + "logo_url": "https://plaid-merchant-logos.plaid.com/gnc_437.png", + "name": "GNC", + "phone_number": null, + "type": "merchant", + "website": "gnc.com" + } + ], + "date": "2024-07-09", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/gnc_437.png", + "merchant_entity_id": "OvJvDwD1QwwjjgXvKXw2MdNAVLW9K6VEevKV5", + "merchant_name": "GNC", + "name": "GNC", + "original_description": "GNC", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "MEDICAL_PHARMACIES_AND_SUPPLEMENTS", + "primary": "MEDICAL" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_MEDICAL.png", + "transaction_code": null, + "transaction_id": "9q36eAK7P1iqGMPbA34yUAZV7NmLojI4xQgym", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "gnc.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 115.42, + "authorized_date": "2024-07-09", + "authorized_datetime": null, + "category": [ + "Shops", + "Warehouses and Wholesale Stores" + ], + "category_id": "19051000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "pBowAoZJMM9DKR37jvNmzM4yWBBXyMzV2rM3A", + "logo_url": "https://plaid-merchant-logos.plaid.com/costco_235.png", + "name": "Costco", + "phone_number": null, + "type": "merchant", + "website": "costco.com" + } + ], + "date": "2024-07-09", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": "0123" + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/costco_235.png", + "merchant_entity_id": "pBowAoZJMM9DKR37jvNmzM4yWBBXyMzV2rM3A", + "merchant_name": "Costco", + "name": "Costco", + "original_description": "COSTCO WHSE #0123", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "GENERAL_MERCHANDISE_SUPERSTORES", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "vEGlLPADxdT7rVvMKoxpsbozq3NxkGiq6k1e3", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "costco.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 20.04, + "authorized_date": "2024-07-07", + "authorized_datetime": null, + "category": [ + "Shops", + "Department Stores" + ], + "category_id": "19018000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "rv13v3BzmXL388dv2d47XvodvNdwrdamOOnZ0", + "logo_url": "https://plaid-merchant-logos.plaid.com/tuesday_morning_1731.png", + "name": "Tuesday Morning", + "phone_number": null, + "type": "merchant", + "website": "tuesdaymorning.com" + } + ], + "date": "2024-07-07", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": "0123" + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/tuesday_morning_1731.png", + "merchant_entity_id": "rv13v3BzmXL388dv2d47XvodvNdwrdamOOnZ0", + "merchant_name": "Tuesday Morning", + "name": "Tuesday Morning", + "original_description": "TUESDAY MORNING # 0123", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "HIGH", + "detailed": "GENERAL_MERCHANDISE_DISCOUNT_STORES", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "RWmGP5oMzdtreRojdm9zi5wEvmqNVpHapbAkK", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "tuesdaymorning.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 199.57, + "authorized_date": "2024-07-07", + "authorized_datetime": null, + "category": [ + "Travel", + "Airlines and Aviation Services" + ], + "category_id": "22001000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "NKDjqyAdQQzpyeD8qpLnX0D6yvLe2KYKYYzQ4", + "logo_url": "https://plaid-merchant-logos.plaid.com/united_airlines_1065.png", + "name": "United Airlines", + "phone_number": null, + "type": "merchant", + "website": "united.com" + } + ], + "date": "2024-07-10", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": "TX", + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/united_airlines_1065.png", + "merchant_entity_id": "NKDjqyAdQQzpyeD8qpLnX0D6yvLe2KYKYYzQ4", + "merchant_name": "United Airlines", + "name": "UNITED 0123456789012345-012-0123", + "original_description": "UNITED 0123456789012345-012-0123 TX", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "HIGH", + "detailed": "TRAVEL_FLIGHTS", + "primary": "TRAVEL" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_TRAVEL.png", + "transaction_code": null, + "transaction_id": "6RrvP8d6aQt8RdaEAwWkFbyD6lRWjLi8DXeK6", + "transaction_type": "special", + "unofficial_currency_code": null, + "website": "united.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 103.25, + "authorized_date": "2024-07-13", + "authorized_datetime": null, + "category": [ + "Service", + "Subscription" + ], + "category_id": "18061000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "XZAmBNLd29wbbLB49r58oD5b6y7kz5A1982j3", + "logo_url": "https://plaid-merchant-logos.plaid.com/amazon_prime_1987.png", + "name": "Amazon Prime", + "phone_number": null, + "type": "merchant", + "website": "amazon.com/amazonprime" + } + ], + "date": "2024-07-16", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": "Seattle", + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": "WA", + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/amazon_prime_1987.png", + "merchant_entity_id": "XZAmBNLd29wbbLB49r58oD5b6y7kz5A1982j3", + "merchant_name": "Amazon Prime", + "name": "Amazon Prime", + "original_description": "Amazon Prime Amzn.com/bill WA", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "GENERAL_SERVICES_OTHER_GENERAL_SERVICES", + "primary": "GENERAL_SERVICES" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_SERVICES.png", + "transaction_code": null, + "transaction_id": "XyXrM5BG47fmPpGD7694U6qPyJX8decbKnLjX", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "amazon.com/amazonprime" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 21.93, + "authorized_date": "2024-07-14", + "authorized_datetime": null, + "category": [ + "Travel", + "Gas Stations" + ], + "category_id": "22009000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "bAgD5DYNeBE3Lm7V2z2RnrY1dZDQ5kONn0vEA", + "logo_url": "https://plaid-merchant-logos.plaid.com/caseys_173.png", + "name": "Casey's", + "phone_number": null, + "type": "merchant", + "website": "caseys.com" + } + ], + "date": "2024-07-16", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": "Gen Store", + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/caseys_173.png", + "merchant_entity_id": "bAgD5DYNeBE3Lm7V2z2RnrY1dZDQ5kONn0vEA", + "merchant_name": "Casey's", + "name": "CASEYS GEN STORE 0123", + "original_description": "CASEYS GEN STORE 0123", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "TRANSPORTATION_GAS", + "primary": "TRANSPORTATION" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_TRANSPORTATION.png", + "transaction_code": null, + "transaction_id": "DPZBW5VqgbFP764zbpqmSvjWJDPg3bt3WaJRw", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "caseys.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 16.68, + "authorized_date": "2024-07-16", + "authorized_datetime": null, + "category": [ + "Food and Drink", + "Restaurants" + ], + "category_id": "13005000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "1WKvazzZXRpRyVQK7Lyk0wp3qNdDVVrA9aw4A", + "logo_url": "https://plaid-merchant-logos.plaid.com/applebees_66.png", + "name": "Applebee's", + "phone_number": null, + "type": "merchant", + "website": "applebees.com" + } + ], + "date": "2024-07-16", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/applebees_66.png", + "merchant_entity_id": "1WKvazzZXRpRyVQK7Lyk0wp3qNdDVVrA9aw4A", + "merchant_name": "Applebee's", + "name": "Applebee's", + "original_description": "APPLEBEES 012345678901", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "FOOD_AND_DRINK_RESTAURANT", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "VbRqQ5rLdPcn6RqVP4QdsXJG18VQ3Et9gPEyk", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "applebees.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 1.77, + "authorized_date": "2024-07-16", + "authorized_datetime": null, + "category": [ + "Service", + "Food and Beverage" + ], + "category_id": "18021000", + "check_number": null, + "counterparties": [], + "date": "2024-07-16", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "*CAVA012345678", + "original_description": "LEVELUP*CAVA012345678", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": "Braintree", + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "FOOD_AND_DRINK_OTHER_FOOD_AND_DRINK", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "wWnqpjJldatQbrvJydjETKPDB3J4E9cPZomRw", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 32.49, + "authorized_date": "2024-07-16", + "authorized_datetime": null, + "category": [ + "Shops", + "Supermarkets and Groceries" + ], + "category_id": "19047000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "mZWB34y9W3pqDBznaNaaZ8BzKjeWvz2pJQg1M", + "logo_url": "https://plaid-merchant-logos.plaid.com/ralphs_809.png", + "name": "Ralphs", + "phone_number": null, + "type": "merchant", + "website": "ralphs.com" + } + ], + "date": "2024-07-16", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": "101 G St", + "city": "San Diego", + "country": null, + "lat": 32.712082, + "lon": -117.163422, + "postal_code": "92101", + "region": "CA", + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/ralphs_809.png", + "merchant_entity_id": "mZWB34y9W3pqDBznaNaaZ8BzKjeWvz2pJQg1M", + "merchant_name": "Ralphs", + "name": "Ralphs", + "original_description": "RALPHS 0123", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "FOOD_AND_DRINK_GROCERIES", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "5vK5Ng6bdetkX4dDA6NbSqZK7QDoXMu5K78ym", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "ralphs.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 33.43, + "authorized_date": "2024-07-16", + "authorized_datetime": null, + "category": [ + "Food and Drink", + "Restaurants" + ], + "category_id": "13005000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "m2M3MJoE27zdYprWD2kpbzeoOm6WMDOY5L92r", + "logo_url": "https://plaid-merchant-logos.plaid.com/dave_busters_268.png", + "name": "Dave \u0026 Buster's", + "phone_number": null, + "type": "merchant", + "website": "daveandbusters.com" + } + ], + "date": "2024-07-17", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": "01" + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/dave_busters_268.png", + "merchant_entity_id": "m2M3MJoE27zdYprWD2kpbzeoOm6WMDOY5L92r", + "merchant_name": "Dave \u0026 Buster's", + "name": "Dave \u0026 Buster's", + "original_description": "DAVE \u0026 BUSTERS #01", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "HIGH", + "detailed": "FOOD_AND_DRINK_RESTAURANT", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "JMgVz59xnlhM1pyKljkeUAXZgLJDw6IB6gkMG", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "daveandbusters.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 7.5, + "authorized_date": "2024-07-17", + "authorized_datetime": null, + "category": [ + "Travel", + "Public Transportation Services" + ], + "category_id": "22014000", + "check_number": null, + "counterparties": [], + "date": "2024-07-17", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "MTA*METROCARD/AIRTRAIN", + "original_description": "MTA*METROCARD/AIRTRAIN", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "TRANSPORTATION_PUBLIC_TRANSIT", + "primary": "TRANSPORTATION" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_TRANSPORTATION.png", + "transaction_code": null, + "transaction_id": "k7ZAaqkDn9IeLWvPMD3QTQmwjAae61sL6doDG", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 4.27, + "authorized_date": "2024-07-17", + "authorized_datetime": null, + "category": [ + "Travel", + "Gas Stations" + ], + "category_id": "22009000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "wkW8w9jD57qVwvyDKoWr2A2Ve84ABrMDXv35p", + "logo_url": "https://plaid-merchant-logos.plaid.com/sheetz_889.png", + "name": "Sheetz", + "phone_number": null, + "type": "merchant", + "website": "sheetz.com" + } + ], + "date": "2024-07-19", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": "5300 Route 8", + "city": "Gibsonia", + "country": null, + "lat": null, + "lon": null, + "postal_code": "15044", + "region": "PA", + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/sheetz_889.png", + "merchant_entity_id": "wkW8w9jD57qVwvyDKoWr2A2Ve84ABrMDXv35p", + "merchant_name": "Sheetz", + "name": "Sheetz", + "original_description": "SHEETZ 0123", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "TRANSPORTATION_GAS", + "primary": "TRANSPORTATION" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_TRANSPORTATION.png", + "transaction_code": null, + "transaction_id": "leMA4KdDbvT9Rj8aDw3ASlqwZmdvGDipodRg1", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "sheetz.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 17.48, + "authorized_date": "2024-07-18", + "authorized_datetime": null, + "category": [ + "Shops", + "Office Supplies" + ], + "category_id": "19039000", + "check_number": null, + "counterparties": [], + "date": "2024-07-19", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "OfficeMax", + "original_description": "OFFICEMAX/DEPOT 0123", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "GENERAL_MERCHANDISE_OFFICE_SUPPLIES", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "qLgAex9DKrfNjEv5oDMaFebVapMmWGhgr7RPJ", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 11.06, + "authorized_date": "2024-07-18", + "authorized_datetime": null, + "category": [ + "Shops", + "Supermarkets and Groceries" + ], + "category_id": "19047000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "E1Eqdj7BML3NLYNAO562kZj5R0J4EkQo6gYJA", + "logo_url": "https://plaid-merchant-logos.plaid.com/kroger_555.png", + "name": "Kroger", + "phone_number": null, + "type": "merchant", + "website": "kroger.com" + } + ], + "date": "2024-07-19", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/kroger_555.png", + "merchant_entity_id": "E1Eqdj7BML3NLYNAO562kZj5R0J4EkQo6gYJA", + "merchant_name": "Kroger", + "name": "Kroger", + "original_description": "Kroger", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "FOOD_AND_DRINK_GROCERIES", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "K18PB5Zdbqh17BVgqbRQhyoaA5z1deiRpA1kV", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "kroger.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 26.24, + "authorized_date": "2024-07-19", + "authorized_datetime": null, + "category": [ + "Shops", + "Computers and Electronics", + "Video Games" + ], + "category_id": "19013001", + "check_number": null, + "counterparties": [], + "date": "2024-07-19", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "UBISOFT INC", + "original_description": "UBISOFT INC", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "GENERAL_MERCHANDISE_OTHER_GENERAL_MERCHANDISE", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "rp8wQd9Drzc7XxVRZbBNsbxP5JMjG9i7J6197", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 3.48, + "authorized_date": "2024-07-19", + "authorized_datetime": null, + "category": [ + "Travel", + "Gas Stations" + ], + "category_id": "22009000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "dMqwOD5qKvJz2bqay2bXjOmg8dQDN9BVz8VNz", + "logo_url": "https://plaid-merchant-logos.plaid.com/exxonmobil_341.png", + "name": "ExxonMobil", + "phone_number": null, + "type": "merchant", + "website": "exxonmobil.com" + } + ], + "date": "2024-07-19", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/exxonmobil_341.png", + "merchant_entity_id": "dMqwOD5qKvJz2bqay2bXjOmg8dQDN9BVz8VNz", + "merchant_name": "ExxonMobil", + "name": "ExxonMobil", + "original_description": "EXXONMOBIL 01234567", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "TRANSPORTATION_GAS", + "primary": "TRANSPORTATION" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_TRANSPORTATION.png", + "transaction_code": null, + "transaction_id": "zkyz8Q9rNPCXgWQeyj9pIeqPWlmJpdhlNLQB3", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "exxonmobil.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 5155.62, + "authorized_date": "2024-07-18", + "authorized_datetime": null, + "category": [ + "Travel", + "Airlines and Aviation Services" + ], + "category_id": "22001000", + "check_number": null, + "counterparties": [], + "date": "2024-07-18", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "AIR CAN* 0123456789012", + "original_description": "AIR CAN* 0123456789012", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "GENERAL_MERCHANDISE_OTHER_GENERAL_MERCHANDISE", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "B4ek869ZpGC41mDnjvVxuBdXVLjPRxC4M8g5A", + "transaction_type": "special", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 11.42, + "authorized_date": "2024-07-18", + "authorized_datetime": null, + "category": [ + "Food and Drink", + "Restaurants" + ], + "category_id": "13005000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "LOW", + "entity_id": null, + "logo_url": null, + "name": "The Halal Guys", + "phone_number": null, + "type": "merchant", + "website": null + } + ], + "date": "2024-07-18", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": "The Halal Guys", + "name": "THE HALAL GUYS", + "original_description": "THE HALAL GUYS", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "FOOD_AND_DRINK_GROCERIES", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "3ylJapdb3jf8nK3A1z7JF3jlmQa5LBhZlnEb8", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 2.06, + "authorized_date": "2024-07-18", + "authorized_datetime": null, + "category": [ + "Travel", + "Public Transportation Services" + ], + "category_id": "22014000", + "check_number": null, + "counterparties": [], + "date": "2024-07-21", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "MTA*PATH SMARTCARD/SRT", + "original_description": "MTA*PATH SMARTCARD/SRT", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "TRANSPORTATION_PUBLIC_TRANSIT", + "primary": "TRANSPORTATION" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_TRANSPORTATION.png", + "transaction_code": null, + "transaction_id": "xAbKo75qa4um5aZ8zndpUMd7gW5wbxU64VePN", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 69.98, + "authorized_date": "2024-07-18", + "authorized_datetime": null, + "category": [ + "Recreation", + "Gyms and Fitness Centers" + ], + "category_id": "17018000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "1VgdDQkWvvEwemEMpaEVY6Z3Q1wdbnwbEJMz9", + "logo_url": "https://plaid-merchant-logos.plaid.com/24_hour_fitness_1.png", + "name": "24 Hour Fitness", + "phone_number": null, + "type": "merchant", + "website": "24hourfitness.com" + } + ], + "date": "2024-07-21", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": "CA", + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/24_hour_fitness_1.png", + "merchant_entity_id": "1VgdDQkWvvEwemEMpaEVY6Z3Q1wdbnwbEJMz9", + "merchant_name": "24 Hour Fitness", + "name": "24 Hour Fitness", + "original_description": "24 Hour Fitness USA, I 012-0123456 CA", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "PERSONAL_CARE_GYMS_AND_FITNESS_CENTERS", + "primary": "PERSONAL_CARE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_PERSONAL_CARE.png", + "transaction_code": null, + "transaction_id": "dx4ZK58XoWCvbXVZlNgaC9Rl5wkLExCJEQRzl", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "24hourfitness.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 7.19, + "authorized_date": "2024-07-19", + "authorized_datetime": null, + "category": [ + "Shops", + "Food and Beverage Store" + ], + "category_id": "19025000", + "check_number": null, + "counterparties": [], + "date": "2024-07-21", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "MAISON KAYSER *", + "original_description": "MAISON KAYSER *", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "GENERAL_MERCHANDISE_OTHER_GENERAL_MERCHANDISE", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "azx7A59X1gc5orV6dPw3soqAjJ3zZysZ5QDJX", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 158.08, + "authorized_date": "2024-07-19", + "authorized_datetime": null, + "category": [ + "Shops", + "Arts and Crafts" + ], + "category_id": "19003000", + "check_number": null, + "counterparties": [], + "date": "2024-07-21", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "Michaels", + "original_description": "Michaels", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "GENERAL_MERCHANDISE_OTHER_GENERAL_MERCHANDISE", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "49qZ4oGbx7T873XDoebnFmlbdW4eDaFJbALVW", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 15.24, + "authorized_date": "2024-07-21", + "authorized_datetime": null, + "category": [ + "Food and Drink", + "Restaurants" + ], + "category_id": "13005000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "M7K8WZBJjKm0dLkdE7NyKOOqeR506oo1Ev8Jp", + "logo_url": "https://plaid-merchant-logos.plaid.com/zaxbys_1151.png", + "name": "Zaxby's", + "phone_number": null, + "type": "merchant", + "website": "zaxbys.com" + } + ], + "date": "2024-07-21", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": "01234" + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/zaxbys_1151.png", + "merchant_entity_id": "M7K8WZBJjKm0dLkdE7NyKOOqeR506oo1Ev8Jp", + "merchant_name": "Zaxby's", + "name": "Zaxby's", + "original_description": "ZAXBY'S #01234", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "FOOD_AND_DRINK_FAST_FOOD", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "NokPd5gNlzfoV1byzGkls7JMP5G3Q9sy65Qpk", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "zaxbys.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 17.48, + "authorized_date": "2024-07-21", + "authorized_datetime": null, + "category": [ + "Shops", + "Computers and Electronics" + ], + "category_id": "19013000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "wQn4M4dwnYzpK156NqjykAN4DJ0KbrEOLZZ8W", + "logo_url": "https://plaid-merchant-logos.plaid.com/microsoft_635.png", + "name": "Microsoft", + "phone_number": null, + "type": "merchant", + "website": "microsoft.com" + } + ], + "date": "2024-07-21", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": "WA", + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/microsoft_635.png", + "merchant_entity_id": "wQn4M4dwnYzpK156NqjykAN4DJ0KbrEOLZZ8W", + "merchant_name": "Microsoft", + "name": "MICROSOFT *OFFICE 012 msbill.info", + "original_description": "MICROSOFT *OFFICE 012 msbill.info WA", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "GENERAL_MERCHANDISE_ELECTRONICS", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "P8n745oWK3cnXKyW31x9slDB75xZEeio6WA5m", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "microsoft.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 19.04, + "authorized_date": "2024-07-21", + "authorized_datetime": null, + "category": [ + "Food and Drink", + "Restaurants", + "Fast Food" + ], + "category_id": "13005032", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "BO2OAg7nprnK6W7rBvarKXkNJ1qJWYRk7AvqZ", + "logo_url": "https://plaid-merchant-logos.plaid.com/arbys_68.png", + "name": "Arby's", + "phone_number": null, + "type": "merchant", + "website": "arbys.com" + } + ], + "date": "2024-07-21", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": "5900 W Broad St", + "city": "Richmond", + "country": null, + "lat": 37.591766, + "lon": -77.505295, + "postal_code": "23230", + "region": "VA", + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/arbys_68.png", + "merchant_entity_id": "BO2OAg7nprnK6W7rBvarKXkNJ1qJWYRk7AvqZ", + "merchant_name": "Arby's", + "name": "Arby's", + "original_description": "ARBYS 0123", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "FOOD_AND_DRINK_FAST_FOOD", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "jjQ7dlP5GyCbNavw7rzpty4MQmk9opi6WLamz", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "arbys.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 3.75, + "authorized_date": "2024-07-18", + "authorized_datetime": null, + "category": [ + "Shops", + "Computers and Electronics", + "Video Games" + ], + "category_id": "19013001", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "3oRMK5OMq55E6LeoK6JeeEQwv1Yv4e55YEVWX", + "logo_url": "https://plaid-merchant-logos.plaid.com/sony_playstation_927.png", + "name": "Sony Playstation", + "phone_number": null, + "type": "merchant", + "website": "playstation.com" + } + ], + "date": "2024-07-23", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/sony_playstation_927.png", + "merchant_entity_id": "3oRMK5OMq55E6LeoK6JeeEQwv1Yv4e55YEVWX", + "merchant_name": "Sony Playstation", + "name": "PlayStation Network", + "original_description": "PlayStation Network", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "ENTERTAINMENT_VIDEO_GAMES", + "primary": "ENTERTAINMENT" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_ENTERTAINMENT.png", + "transaction_code": null, + "transaction_id": "76zXjElb4Zt8RL4DAzM9F9Zwj8GW6DCdJnxyE", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "playstation.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 21.64, + "authorized_date": "2024-07-20", + "authorized_datetime": null, + "category": [ + "Travel", + "Gas Stations" + ], + "category_id": "22009000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "6po0gde1LXeNwK2YoA8ajrDopp3VXW5pw9q2R", + "logo_url": "https://plaid-merchant-logos.plaid.com/kroger_fuel_556.png", + "name": "Kroger Fuel", + "phone_number": null, + "type": "merchant", + "website": "kroger.comfuel" + } + ], + "date": "2024-07-23", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/kroger_fuel_556.png", + "merchant_entity_id": "6po0gde1LXeNwK2YoA8ajrDopp3VXW5pw9q2R", + "merchant_name": "Kroger Fuel", + "name": "Kroger", + "original_description": "KROGER FUEL CTR 0123", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "TRANSPORTATION_GAS", + "primary": "TRANSPORTATION" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_TRANSPORTATION.png", + "transaction_code": null, + "transaction_id": "edNwr51XgAcoARVZP68vsdRGzqom9Bur95mBo", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "kroger.comfuel" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 110.9, + "authorized_date": "2024-07-21", + "authorized_datetime": null, + "category": [ + "Service", + "Shipping and Freight" + ], + "category_id": "18058000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "VXWv7m925jyzYNrE3z0ep8Y838k7wab2qqY5Y", + "logo_url": "https://plaid-merchant-logos.plaid.com/ups_1072.png", + "name": "UPS", + "phone_number": null, + "type": "merchant", + "website": "ups.com" + } + ], + "date": "2024-07-23", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": "0123" + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/ups_1072.png", + "merchant_entity_id": "VXWv7m925jyzYNrE3z0ep8Y838k7wab2qqY5Y", + "merchant_name": "UPS", + "name": "UPS", + "original_description": "THE UPS STORE #0123", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "GENERAL_SERVICES_POSTAGE_AND_SHIPPING", + "primary": "GENERAL_SERVICES" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_SERVICES.png", + "transaction_code": null, + "transaction_id": "QEbZN5mMrxTnJ4XRxba9s9paZDyVQGCwm7D6b", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "ups.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 138.51, + "authorized_date": "2024-07-21", + "authorized_datetime": null, + "category": [ + "Shops", + "Beauty Products" + ], + "category_id": "19006000", + "check_number": null, + "counterparties": [], + "date": "2024-07-23", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "Sephora", + "original_description": "SEPHORA.COM", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "GENERAL_MERCHANDISE_OTHER_GENERAL_MERCHANDISE", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "ZvlBL5eMPQtnXDV6QrR9sRex8pZayMceqXGmQ", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 21, + "authorized_date": "2024-07-22", + "authorized_datetime": null, + "category": [ + "Travel", + "Parking" + ], + "category_id": "22013000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "4Yj3Wn5p0yV1bzzEz455r7oOWWgNeA2DMr6Kn", + "logo_url": "https://plaid-merchant-logos.plaid.com/ace_parking_10.png", + "name": "Ace Parking", + "phone_number": null, + "type": "merchant", + "website": "aceparking.com" + } + ], + "date": "2024-07-23", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/ace_parking_10.png", + "merchant_entity_id": "4Yj3Wn5p0yV1bzzEz455r7oOWWgNeA2DMr6Kn", + "merchant_name": "Ace Parking", + "name": "Ace Parking", + "original_description": "ACE PARKING 0123", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "TRANSPORTATION_PARKING", + "primary": "TRANSPORTATION" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_TRANSPORTATION.png", + "transaction_code": null, + "transaction_id": "MpWPx5o4yrcpZvwQrdbMuwXJg8Eze3fL6P16Q", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "aceparking.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 12, + "authorized_date": "2024-07-18", + "authorized_datetime": null, + "category": [ + "Food and Drink" + ], + "category_id": "13000000", + "check_number": null, + "counterparties": [], + "date": "2024-07-22", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "COMPASS VENDING BURNABY BC", + "original_description": "COMPASS VENDING BURNABY BC", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "GENERAL_MERCHANDISE_OTHER_GENERAL_MERCHANDISE", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "1bXWx1mVzNcQvyzEo34JTXVmegwx94tpjerj4", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 7, + "authorized_date": "2024-07-19", + "authorized_datetime": null, + "category": [ + "Travel", + "Parking" + ], + "category_id": "22013000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "4Yj3Wn5p0yV1bzzEz455r7oOWWgNeA2DMr6Kn", + "logo_url": "https://plaid-merchant-logos.plaid.com/ace_parking_10.png", + "name": "Ace Parking", + "phone_number": null, + "type": "merchant", + "website": "aceparking.com" + } + ], + "date": "2024-07-22", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/ace_parking_10.png", + "merchant_entity_id": "4Yj3Wn5p0yV1bzzEz455r7oOWWgNeA2DMr6Kn", + "merchant_name": "Ace Parking", + "name": "Ace Parking", + "original_description": "ACE PARKING 0123", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "TRANSPORTATION_PARKING", + "primary": "TRANSPORTATION" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_TRANSPORTATION.png", + "transaction_code": null, + "transaction_id": "LLEP35oamKfLwWGzKa8mCk6Apgx1W7ukjpEjw", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "aceparking.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 48.44, + "authorized_date": "2024-07-20", + "authorized_datetime": null, + "category": [ + "Food and Drink", + "Restaurants" + ], + "category_id": "13005000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "mknr7J961YAvadzvddLOn9J5r3zODz8o5je3B", + "logo_url": "https://plaid-merchant-logos.plaid.com/bjs_restaurants_118.png", + "name": "BJ's Restaurants", + "phone_number": null, + "type": "merchant", + "website": "bjsrestaurants.com" + } + ], + "date": "2024-07-22", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": "9660 SE Stark St", + "city": "Portland", + "country": null, + "lat": null, + "lon": null, + "postal_code": "97216", + "region": "OR", + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/bjs_restaurants_118.png", + "merchant_entity_id": "mknr7J961YAvadzvddLOn9J5r3zODz8o5je3B", + "merchant_name": "BJ's Restaurants", + "name": "BJ'S RESTAURANTS 012", + "original_description": "BJ'S RESTAURANTS 012", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "HIGH", + "detailed": "FOOD_AND_DRINK_RESTAURANT", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "p1oA739DqKhR4y8Xk1ZWcxJrdLn6oGtpoVzoW", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "bjsrestaurants.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 84.86, + "authorized_date": "2024-07-21", + "authorized_datetime": null, + "category": [ + "Service", + "Shipping and Freight" + ], + "category_id": "18058000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "87BE46o0VXpZ1DZMmBBnAe7q2wAKbn3kZJZq2", + "logo_url": "https://plaid-merchant-logos.plaid.com/fedex_365.png", + "name": "FedEx", + "phone_number": null, + "type": "merchant", + "website": "fedex.com" + } + ], + "date": "2024-07-22", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/fedex_365.png", + "merchant_entity_id": "87BE46o0VXpZ1DZMmBBnAe7q2wAKbn3kZJZq2", + "merchant_name": "FedEx", + "name": "FedEx", + "original_description": "FEDEX 012345678", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "GENERAL_SERVICES_POSTAGE_AND_SHIPPING", + "primary": "GENERAL_SERVICES" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_SERVICES.png", + "transaction_code": null, + "transaction_id": "oMpyjB9Dlqhb4v8gkyn6tbzMpZy5G3ioq7bqn", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "fedex.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 7.41, + "authorized_date": "2024-07-21", + "authorized_datetime": null, + "category": [ + "Food and Drink", + "Restaurants", + "Coffee Shop" + ], + "category_id": "13005043", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "NZAJQ5wYdo1W1p39X5q5gpb15OMe39pj4pJBb", + "logo_url": "https://plaid-merchant-logos.plaid.com/starbucks_956.png", + "name": "Starbucks", + "phone_number": null, + "type": "merchant", + "website": "starbucks.com" + } + ], + "date": "2024-07-22", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/starbucks_956.png", + "merchant_entity_id": "NZAJQ5wYdo1W1p39X5q5gpb15OMe39pj4pJBb", + "merchant_name": "Starbucks", + "name": "Starbucks", + "original_description": "Starbucks", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "FOOD_AND_DRINK_COFFEE", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "g4j7B5kXEnCwdLV7NzQPHV59dRBP8WcE8n58q", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "starbucks.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 8.95, + "authorized_date": "2024-07-21", + "authorized_datetime": null, + "category": [ + "Food and Drink", + "Restaurants", + "Coffee Shop" + ], + "category_id": "13005043", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "05BjbjObVyaNm87DJ7qMrXDpNZ2RLaK4aVzZv", + "logo_url": "https://plaid-merchant-logos.plaid.com/philz_coffee_752.png", + "name": "Philz Coffee", + "phone_number": null, + "type": "merchant", + "website": "philzcoffee.com" + }, + { + "confidence_level": "VERY_HIGH", + "entity_id": "kYyzLr7JDEvmN43YaaWagRKZKpnwrN2Mkpy2g", + "logo_url": "https://plaid-counterparty-logos.plaid.com/square_154.png", + "name": "Square", + "phone_number": null, + "type": "payment_terminal", + "website": "squareup.com" + } + ], + "date": "2024-07-22", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/philz_coffee_752.png", + "merchant_entity_id": "05BjbjObVyaNm87DJ7qMrXDpNZ2RLaK4aVzZv", + "merchant_name": "Philz Coffee", + "name": "PHILZ COFFEE", + "original_description": "SQ *PHILZ COFFEE", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": "Square", + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "HIGH", + "detailed": "FOOD_AND_DRINK_COFFEE", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "8lBZ7kqmNMflM6N1rBb8udzkGwyA5MuW3L83L", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "philzcoffee.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 17.5, + "authorized_date": "2024-07-22", + "authorized_datetime": null, + "category": [ + "Travel", + "Public Transportation Services" + ], + "category_id": "22014000", + "check_number": null, + "counterparties": [], + "date": "2024-07-22", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "MTA*METROCARD MACHINE #...0123", + "original_description": "MTA*METROCARD MACHINE #...0123", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "TRANSPORTATION_PUBLIC_TRANSIT", + "primary": "TRANSPORTATION" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_TRANSPORTATION.png", + "transaction_code": null, + "transaction_id": "EjM3A5vK8mCjLea1GE3mCyom95Prvki4xkmxl", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 15.76, + "authorized_date": "2024-07-22", + "authorized_datetime": null, + "category": [ + "Shops", + "Discount Stores" + ], + "category_id": "19020000", + "check_number": null, + "counterparties": [], + "date": "2024-07-25", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": "0123" + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "01-CENTS-ONLY #0123", + "original_description": "01-CENTS-ONLY #0123", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "GENERAL_MERCHANDISE_OTHER_GENERAL_MERCHANDISE", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "Wm6kZ5zMajudb4XV6nyafB8VgNb3znC6Z1jZj", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 5.74, + "authorized_date": "2024-07-25", + "authorized_datetime": null, + "category": [ + "Travel", + "Gas Stations" + ], + "category_id": "22009000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "8KmDD29Q7q6D0gzk1o3b1zw9g0gZay7Dj68Xo", + "logo_url": "https://plaid-merchant-logos.plaid.com/quiktrip_799.png", + "name": "QuikTrip", + "phone_number": null, + "type": "merchant", + "website": "quiktrip.com" + } + ], + "date": "2024-07-25", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/quiktrip_799.png", + "merchant_entity_id": "8KmDD29Q7q6D0gzk1o3b1zw9g0gZay7Dj68Xo", + "merchant_name": "QuikTrip", + "name": "QuikTrip", + "original_description": "QT 0123", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "TRANSPORTATION_GAS", + "primary": "TRANSPORTATION" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_TRANSPORTATION.png", + "transaction_code": null, + "transaction_id": "Aa7KgRpVLAhamWlkAvD3s8Dl5KZ7brF9rA5rx", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "quiktrip.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 22.46, + "authorized_date": "2024-07-25", + "authorized_datetime": null, + "category": [ + "Service", + "Credit Counseling and Bankruptcy Services" + ], + "category_id": "18014000", + "check_number": null, + "counterparties": [], + "date": "2024-07-25", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": "CA", + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "Experian* Credit Report", + "original_description": "Experian* Credit Report 012-0123456 CA", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "GENERAL_SERVICES_ACCOUNTING_AND_FINANCIAL_PLANNING", + "primary": "GENERAL_SERVICES" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_SERVICES.png", + "transaction_code": null, + "transaction_id": "GeLdq5ozW9Te8Jd4MGvPT84MZDwPW7F6MPoMK", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 27.93, + "authorized_date": "2024-07-22", + "authorized_datetime": null, + "category": [ + "Shops", + "Digital Purchase" + ], + "category_id": "19019000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "Anyvk4KqqD8Vb1R9YE0y8e91oR2YB0r3qYXjJ", + "logo_url": "https://plaid-merchant-logos.plaid.com/audible_78.png", + "name": "Audible", + "phone_number": null, + "type": "merchant", + "website": "audible.com" + } + ], + "date": "2024-07-24", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/audible_78.png", + "merchant_entity_id": "Anyvk4KqqD8Vb1R9YE0y8e91oR2YB0r3qYXjJ", + "merchant_name": "Audible", + "name": "Audible", + "original_description": "Audible US", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "ENTERTAINMENT_MUSIC_AND_AUDIO", + "primary": "ENTERTAINMENT" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_ENTERTAINMENT.png", + "transaction_code": null, + "transaction_id": "nZLAPzwDylibQdva8jeDtG1eMJoEWbtAlWQlV", + "transaction_type": "digital", + "unofficial_currency_code": null, + "website": "audible.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 108.14, + "authorized_date": "2024-07-24", + "authorized_datetime": null, + "category": [ + "Travel", + "Lodging" + ], + "category_id": "22012000", + "check_number": null, + "counterparties": [], + "date": "2024-07-24", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "HOTELS.COM012345678901", + "original_description": "HOTELS.COM012345678901", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "ENTERTAINMENT_SPORTING_EVENTS_AMUSEMENT_PARKS_AND_MUSEUMS", + "primary": "ENTERTAINMENT" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_ENTERTAINMENT.png", + "transaction_code": null, + "transaction_id": "bBdylJgXLku1ryVNQ9XehxReg34KG7tmbZ7bb", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 4.81, + "authorized_date": "2024-07-24", + "authorized_datetime": null, + "category": [ + "Shops", + "Clothing and Accessories" + ], + "category_id": "19012000", + "check_number": null, + "counterparties": [], + "date": "2024-07-24", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "H\u0026M0123", + "original_description": "H\u0026M0123", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "GENERAL_MERCHANDISE_OTHER_GENERAL_MERCHANDISE", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "mQ1ANkbDmRfb4yvJ6npMt6LmBj1NyEcgydXyZ", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 6.75, + "authorized_date": "2024-07-24", + "authorized_datetime": null, + "category": [ + "Travel", + "Airlines and Aviation Services" + ], + "category_id": "22001000", + "check_number": null, + "counterparties": [], + "date": "2024-07-29", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "AA INFLIGHT VISA FACET *", + "original_description": "AA INFLIGHT VISA FACET *", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "GENERAL_MERCHANDISE_OTHER_GENERAL_MERCHANDISE", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "yGmrge5K4NFpDQweBL4yuPM35rxdXZi46Xw6z", + "transaction_type": "special", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 24.83, + "authorized_date": "2024-07-24", + "authorized_datetime": null, + "category": [ + "Shops", + "Digital Purchase" + ], + "category_id": "19019000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "5ngqyLXKYBknN8OywL79Z1qoWmyE0zKq20nz6", + "logo_url": "https://plaid-merchant-logos.plaid.com/etsy_332.png", + "name": "Etsy", + "phone_number": null, + "type": "merchant", + "website": "etsy.com" + } + ], + "date": "2024-07-28", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/etsy_332.png", + "merchant_entity_id": "5ngqyLXKYBknN8OywL79Z1qoWmyE0zKq20nz6", + "merchant_name": "Etsy", + "name": "Etsy.com - Multiple Shops", + "original_description": "Etsy.com - Multiple Shops", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "GENERAL_MERCHANDISE_ONLINE_MARKETPLACES", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "9q36eAK7P1iqGMPbA34yUAZV7NmLojI4xQgxm", + "transaction_type": "digital", + "unofficial_currency_code": null, + "website": "etsy.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 1.05, + "authorized_date": "2024-07-24", + "authorized_datetime": null, + "category": [ + "Food and Drink" + ], + "category_id": "13000000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "Ewae0XX9N5ddOa10nL2gZkQ2vNdpJwEVMBXv2", + "logo_url": "https://plaid-merchant-logos.plaid.com/cms_vending_220.png", + "name": "CMS Vending", + "phone_number": null, + "type": "merchant", + "website": "cms-me.com" + } + ], + "date": "2024-07-26", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/cms_vending_220.png", + "merchant_entity_id": "Ewae0XX9N5ddOa10nL2gZkQ2vNdpJwEVMBXv2", + "merchant_name": "CMS Vending", + "name": "CMSVEND*PRESTIGE SERVICES", + "original_description": "CMSVEND*PRESTIGE SERVICES", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "FOOD_AND_DRINK_VENDING_MACHINES", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "vEGlLPADxdT7rVvMKoxpsbozq3NxkGiq6k163", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "cms-me.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 7.02, + "authorized_date": "2024-07-25", + "authorized_datetime": null, + "category": [ + "Shops", + "Music, Video and DVD" + ], + "category_id": "19036000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "r7MA910JJELKpYekdAz6n34373RQw2a3Nn52E", + "logo_url": "https://plaid-merchant-logos.plaid.com/redbox_816.png", + "name": "Redbox", + "phone_number": null, + "type": "merchant", + "website": "redbox.com" + } + ], + "date": "2024-07-26", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/redbox_816.png", + "merchant_entity_id": "r7MA910JJELKpYekdAz6n34373RQw2a3Nn52E", + "merchant_name": "Redbox", + "name": "Redbox", + "original_description": "REDBOX *DVD RENTAL", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "ENTERTAINMENT_TV_AND_MOVIES", + "primary": "ENTERTAINMENT" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_ENTERTAINMENT.png", + "transaction_code": null, + "transaction_id": "RWmGP5oMzdtreRojdm9zi5wEvmqNVpHapbApK", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "redbox.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 175, + "authorized_date": "2024-07-25", + "authorized_datetime": null, + "category": [ + "Shops", + "Clothing and Accessories" + ], + "category_id": "19012000", + "check_number": null, + "counterparties": [], + "date": "2024-07-26", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "lululemon", + "original_description": "lululemon", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "GENERAL_MERCHANDISE_OTHER_GENERAL_MERCHANDISE", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "6RrvP8d6aQt8RdaEAwWkFbyD6lRWjLi8DXeD6", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 5.52, + "authorized_date": "2024-07-27", + "authorized_datetime": null, + "category": [ + "Travel", + "Gas Stations" + ], + "category_id": "22009000", + "check_number": null, + "counterparties": [], + "date": "2024-07-27", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "RACETRAC012 01234567", + "original_description": "RACETRAC012 01234567", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "ENTERTAINMENT_SPORTING_EVENTS_AMUSEMENT_PARKS_AND_MUSEUMS", + "primary": "ENTERTAINMENT" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_ENTERTAINMENT.png", + "transaction_code": null, + "transaction_id": "XyXrM5BG47fmPpGD7694U6qPyJX8decbKnLKX", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 61.23, + "authorized_date": "2024-07-29", + "authorized_datetime": null, + "category": [ + "Shops", + "Computers and Electronics", + "Video Games" + ], + "category_id": "19013001", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "3oRMK5OMq55E6LeoK6JeeEQwv1Yv4e55YEVWX", + "logo_url": "https://plaid-merchant-logos.plaid.com/sony_playstation_927.png", + "name": "Sony Playstation", + "phone_number": null, + "type": "merchant", + "website": "playstation.com" + } + ], + "date": "2024-08-01", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": "CA", + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/sony_playstation_927.png", + "merchant_entity_id": "3oRMK5OMq55E6LeoK6JeeEQwv1Yv4e55YEVWX", + "merchant_name": "Sony Playstation", + "name": "PLAYSTATION NETWORK", + "original_description": "PLAYSTATION NETWORK 012-012-0123 CA", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "ENTERTAINMENT_VIDEO_GAMES", + "primary": "ENTERTAINMENT" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_ENTERTAINMENT.png", + "transaction_code": null, + "transaction_id": "DPZBW5VqgbFP764zbpqmSvjWJDPg3bt3WaJWw", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "playstation.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 106.63, + "authorized_date": "2024-08-01", + "authorized_datetime": null, + "category": [ + "Shops", + "Supermarkets and Groceries" + ], + "category_id": "19047000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "a1wEv51o8g7QQEbN2o9NRa3np6AXn0qZ2ZdL9", + "logo_url": "https://plaid-merchant-logos.plaid.com/hellofresh_479.png", + "name": "HelloFresh", + "phone_number": null, + "type": "merchant", + "website": "hellofresh.com" + } + ], + "date": "2024-08-01", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/hellofresh_479.png", + "merchant_entity_id": "a1wEv51o8g7QQEbN2o9NRa3np6AXn0qZ2ZdL9", + "merchant_name": "HelloFresh", + "name": "HELLOFRESH", + "original_description": "HELLOFRESH", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "FOOD_AND_DRINK_GROCERIES", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "VbRqQ5rLdPcn6RqVP4QdsXJG18VQ3Et9gPEgk", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "hellofresh.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 14.39, + "authorized_date": "2024-08-01", + "authorized_datetime": null, + "category": [ + "Shops", + "Furniture and Home Decor" + ], + "category_id": "19027000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "p51LQXRo28X81vDv7WyX48JvrYZQ56vO3WONr", + "logo_url": "https://plaid-merchant-logos.plaid.com/homegoods_492.png", + "name": "HomeGoods", + "phone_number": null, + "type": "merchant", + "website": "homegoods.com" + } + ], + "date": "2024-08-01", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/homegoods_492.png", + "merchant_entity_id": "p51LQXRo28X81vDv7WyX48JvrYZQ56vO3WONr", + "merchant_name": "HomeGoods", + "name": "HomeGoods", + "original_description": "HomeGoods", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "HOME_IMPROVEMENT_FURNITURE", + "primary": "HOME_IMPROVEMENT" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_HOME_IMPROVEMENT.png", + "transaction_code": null, + "transaction_id": "wWnqpjJldatQbrvJydjETKPDB3J4E9cPZomZw", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "homegoods.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 20.43, + "authorized_date": "2024-07-30", + "authorized_datetime": null, + "category": [ + "Food and Drink", + "Restaurants" + ], + "category_id": "13005000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "LOW", + "entity_id": null, + "logo_url": null, + "name": "Inn Seasonal Market", + "phone_number": null, + "type": "merchant", + "website": null + } + ], + "date": "2024-07-30", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": "Inn Seasonal Market", + "name": "Dig Inn Seasonal Market -", + "original_description": "Dig Inn Seasonal Market -", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "FOOD_AND_DRINK_GROCERIES", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "5vK5Ng6bdetkX4dDA6NbSqZK7QDoXMu5K78Km", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 5.51, + "authorized_date": "2024-07-30", + "authorized_datetime": null, + "category": [ + "Shops", + "Music, Video and DVD" + ], + "category_id": "19036000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "z3XzRe488pMdo7NAnL44L7rv9L550berky6mK", + "logo_url": "https://plaid-merchant-logos.plaid.com/apple_itunes_1434.png", + "name": "Apple iTunes", + "phone_number": null, + "type": "merchant", + "website": "apple.com/itunes" + } + ], + "date": "2024-07-30", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/apple_itunes_1434.png", + "merchant_entity_id": "z3XzRe488pMdo7NAnL44L7rv9L550berky6mK", + "merchant_name": "Apple iTunes", + "name": "iTunes", + "original_description": "APL*ITUNES.COM/BILL 012-012-0123 ON", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": "Apple", + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "ENTERTAINMENT_MUSIC_AND_AUDIO", + "primary": "ENTERTAINMENT" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_ENTERTAINMENT.png", + "transaction_code": null, + "transaction_id": "JMgVz59xnlhM1pyKljkeUAXZgLJDw6IB6gk6G", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "apple.com/itunes" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 4.83, + "authorized_date": "2024-07-30", + "authorized_datetime": null, + "category": [ + "Service", + "Food and Beverage" + ], + "category_id": "18021000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "Knv5eqDW6wn7mkBMYaAdMz4g4AM1MkQrgvjWW", + "logo_url": "https://plaid-counterparty-logos.plaid.com/postmates_4.png", + "name": "Postmates", + "phone_number": null, + "type": "marketplace", + "website": "postmates.com" + } + ], + "date": "2024-08-03", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": "Postmates", + "name": "Postmates", + "original_description": "POSTMATES TIP", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "MEDIUM", + "detailed": "FOOD_AND_DRINK_RESTAURANT", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "k7ZAaqkDn9IeLWvPMD3QTQmwjAae61sL6do6G", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 6.77, + "authorized_date": "2024-07-31", + "authorized_datetime": null, + "category": [ + "Food and Drink", + "Restaurants", + "Coffee Shop" + ], + "category_id": "13005043", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "DN8w6dnRAQAMzWBAdB51kDER9EQzb64jn0Jvy", + "logo_url": "https://plaid-merchant-logos.plaid.com/coffee_bean_store_222.png", + "name": "Coffee Bean Store", + "phone_number": null, + "type": "merchant", + "website": "coffeebean.com" + } + ], + "date": "2024-08-03", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/coffee_bean_store_222.png", + "merchant_entity_id": "DN8w6dnRAQAMzWBAdB51kDER9EQzb64jn0Jvy", + "merchant_name": "Coffee Bean Store", + "name": "Coffee Bean", + "original_description": "COFFEE BEAN STORE", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "HIGH", + "detailed": "FOOD_AND_DRINK_COFFEE", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "leMA4KdDbvT9Rj8aDw3ASlqwZmdvGDipodRo1", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "coffeebean.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 6.76, + "authorized_date": "2024-07-31", + "authorized_datetime": null, + "category": [ + "Food and Drink", + "Restaurants", + "Fast Food" + ], + "category_id": "13005032", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "Mjqdpqn3ZgOdrAYpkAKMkArEON7avQ8jV9BX1", + "logo_url": "https://plaid-merchant-logos.plaid.com/chipotle_mexican_grill_202.png", + "name": "Chipotle Mexican Grill", + "phone_number": null, + "type": "merchant", + "website": "chipotle.com" + } + ], + "date": "2024-07-31", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/chipotle_mexican_grill_202.png", + "merchant_entity_id": "Mjqdpqn3ZgOdrAYpkAKMkArEON7avQ8jV9BX1", + "merchant_name": "Chipotle Mexican Grill", + "name": "Chipotle Mexican Grill", + "original_description": "CHIPOTLE 0123", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "FOOD_AND_DRINK_FAST_FOOD", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "qLgAex9DKrfNjEv5oDMaFebVapMmWGhgr7RrJ", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "chipotle.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 149.67, + "authorized_date": "2024-07-31", + "authorized_datetime": null, + "category": [ + "Shops", + "Sporting Goods" + ], + "category_id": "19046000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "LOW", + "entity_id": null, + "logo_url": null, + "name": "Sporting Goods", + "phone_number": null, + "type": "merchant", + "website": null + } + ], + "date": "2024-08-05", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": "Sporting Goods", + "name": "DICK'S Sporting Goods", + "original_description": "Dicks Sporting Goods", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "GENERAL_MERCHANDISE_SPORTING_GOODS", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "K18PB5Zdbqh17BVgqbRQhyoaA5z1deiRpA1pV", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 9.22, + "authorized_date": "2024-08-05", + "authorized_datetime": null, + "category": [ + "Food and Drink", + "Restaurants" + ], + "category_id": "13005000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "LOW", + "entity_id": null, + "logo_url": null, + "name": "John's", + "phone_number": null, + "type": "merchant", + "website": null + } + ], + "date": "2024-08-05", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": "John's", + "name": "Jimmy John's", + "original_description": "Jimmy John's", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "GENERAL_MERCHANDISE_OTHER_GENERAL_MERCHANDISE", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "rp8wQd9Drzc7XxVRZbBNsbxP5JMjG9i7J61J7", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 6.75, + "authorized_date": "2024-08-01", + "authorized_datetime": null, + "category": [ + "Service", + "Shipping and Freight" + ], + "category_id": "18058000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "LOW", + "entity_id": null, + "logo_url": null, + "name": "Prime", + "phone_number": null, + "type": "merchant", + "website": null + } + ], + "date": "2024-08-04", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": "Prime", + "name": "PrimeNowTips", + "original_description": "PrimeNowTips", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "GENERAL_MERCHANDISE_OTHER_GENERAL_MERCHANDISE", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "zkyz8Q9rNPCXgWQeyj9pIeqPWlmJpdhlNLQN3", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 15.89, + "authorized_date": "2024-08-03", + "authorized_datetime": null, + "category": [ + "Food and Drink", + "Restaurants" + ], + "category_id": "13005000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "oDEKJ88aqoyBnwbZAg5BLKEOanvQn0yXoYBow", + "logo_url": "https://plaid-merchant-logos.plaid.com/pei_wei_1614.png", + "name": "Pei Wei", + "phone_number": null, + "type": "merchant", + "website": "peiwei.com" + } + ], + "date": "2024-08-04", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": "0123" + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/pei_wei_1614.png", + "merchant_entity_id": "oDEKJ88aqoyBnwbZAg5BLKEOanvQn0yXoYBow", + "merchant_name": "Pei Wei", + "name": "Pei Wei Asian Diner", + "original_description": "PEI WEI #0123 Q01", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "HIGH", + "detailed": "FOOD_AND_DRINK_FAST_FOOD", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "B4ek869ZpGC41mDnjvVxuBdXVLjPRxC4M8gMA", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "peiwei.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 176.73, + "authorized_date": "2024-08-03", + "authorized_datetime": null, + "category": [ + "Shops", + "Computers and Electronics" + ], + "category_id": "19013000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "wQn4M4dwnYzpK156NqjykAN4DJ0KbrEOLZZ8W", + "logo_url": "https://plaid-merchant-logos.plaid.com/microsoft_635.png", + "name": "Microsoft", + "phone_number": null, + "type": "merchant", + "website": "microsoft.com" + } + ], + "date": "2024-08-04", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": "WA", + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/microsoft_635.png", + "merchant_entity_id": "wQn4M4dwnYzpK156NqjykAN4DJ0KbrEOLZZ8W", + "merchant_name": "Microsoft", + "name": "MICROSOFT *OFFICE 012 msbill.info", + "original_description": "MICROSOFT *OFFICE 012 msbill.info WA", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "GENERAL_MERCHANDISE_ELECTRONICS", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "3ylJapdb3jf8nK3A1z7JF3jlmQa5LBhZlnEl8", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "microsoft.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 17.38, + "authorized_date": "2024-08-01", + "authorized_datetime": null, + "category": [ + "Food and Drink", + "Restaurants" + ], + "category_id": "13005000", + "check_number": null, + "counterparties": [], + "date": "2024-08-02", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "Subway", + "original_description": "Subway", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "FOOD_AND_DRINK_FAST_FOOD", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "xAbKo75qa4um5aZ8zndpUMd7gW5wbxU64Ve4N", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 182.98, + "authorized_date": "2024-08-01", + "authorized_datetime": null, + "category": [ + "Shops", + "Clothing and Accessories" + ], + "category_id": "19012000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "Q9qOA3RZj15MaMybaApnJD5YVKmMZjgL3LkAz", + "logo_url": "https://plaid-merchant-logos.plaid.com/zara_1150.png", + "name": "Zara", + "phone_number": null, + "type": "merchant", + "website": "zara.com" + } + ], + "date": "2024-08-06", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/zara_1150.png", + "merchant_entity_id": "Q9qOA3RZj15MaMybaApnJD5YVKmMZjgL3LkAz", + "merchant_name": "Zara", + "name": "Zara", + "original_description": "ZARA USA 0123", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "GENERAL_MERCHANDISE_CLOTHING_AND_ACCESSORIES", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "dx4ZK58XoWCvbXVZlNgaC9Rl5wkLExCJEQREl", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "zara.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 50.99, + "authorized_date": "2024-08-03", + "authorized_datetime": null, + "category": [ + "Travel", + "Charter Buses" + ], + "category_id": "22007000", + "check_number": null, + "counterparties": [], + "date": "2024-08-06", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "MEGABUS.COM", + "original_description": "MEGABUS.COM", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "GENERAL_MERCHANDISE_OTHER_GENERAL_MERCHANDISE", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "azx7A59X1gc5orV6dPw3soqAjJ3zZysZ5QD5X", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 41.72, + "authorized_date": "2024-08-05", + "authorized_datetime": null, + "category": [ + "Shops", + "Discount Stores" + ], + "category_id": "19020000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "Zzn79pb0YEwA8JD6KeyZABvmpp3w1WVZeJEY6", + "logo_url": "https://plaid-merchant-logos.plaid.com/dollar_general_287.png", + "name": "Dollar General", + "phone_number": null, + "type": "merchant", + "website": "dollargeneral.com" + } + ], + "date": "2024-08-06", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/dollar_general_287.png", + "merchant_entity_id": "Zzn79pb0YEwA8JD6KeyZABvmpp3w1WVZeJEY6", + "merchant_name": "Dollar General", + "name": "Dollar General", + "original_description": "DOLLAR GENERAL #", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "GENERAL_MERCHANDISE_DISCOUNT_STORES", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "49qZ4oGbx7T873XDoebnFmlbdW4eDaFJbALbW", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "dollargeneral.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 98.47, + "authorized_date": "2024-08-05", + "authorized_datetime": null, + "category": [ + "Service", + "Food and Beverage" + ], + "category_id": "18021000", + "check_number": null, + "counterparties": [], + "date": "2024-08-09", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": "NY", + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "MEALPAL 0123456789", + "original_description": "MEALPAL 0123456789 NY", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "GENERAL_MERCHANDISE_OTHER_GENERAL_MERCHANDISE", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "NokPd5gNlzfoV1byzGkls7JMP5G3Q9sy65Q6k", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 470.56, + "authorized_date": "2024-08-05", + "authorized_datetime": null, + "category": [ + "Travel", + "Lodging" + ], + "category_id": "22012000", + "check_number": null, + "counterparties": [], + "date": "2024-08-09", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "HOTELS.COM012345678901", + "original_description": "HOTELS.COM012345678901", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "ENTERTAINMENT_SPORTING_EVENTS_AMUSEMENT_PARKS_AND_MUSEUMS", + "primary": "ENTERTAINMENT" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_ENTERTAINMENT.png", + "transaction_code": null, + "transaction_id": "P8n745oWK3cnXKyW31x9slDB75xZEeio6WA6m", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 41.42, + "authorized_date": "2024-08-08", + "authorized_datetime": null, + "category": [ + "Shops", + "Sporting Goods" + ], + "category_id": "19046000", + "check_number": null, + "counterparties": [], + "date": "2024-08-09", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "DICK'S CLOTHING\u0026SPORTING", + "original_description": "DICK'S CLOTHING\u0026SPORTING", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "GENERAL_MERCHANDISE_SPORTING_GOODS", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "jjQ7dlP5GyCbNavw7rzpty4MQmk9opi6WLaWz", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 20.6, + "authorized_date": "2024-08-08", + "authorized_datetime": null, + "category": [ + "Shops", + "Supermarkets and Groceries" + ], + "category_id": "19047000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "ejyrAn1BvJ9X5ZXVBq5nN1aqjLzJbE64L4eWQ", + "logo_url": "https://plaid-merchant-logos.plaid.com/jewelosco_537.png", + "name": "Jewel-Osco", + "phone_number": null, + "type": "merchant", + "website": "jewelosco.com" + } + ], + "date": "2024-08-09", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/jewelosco_537.png", + "merchant_entity_id": "ejyrAn1BvJ9X5ZXVBq5nN1aqjLzJbE64L4eWQ", + "merchant_name": "Jewel-Osco", + "name": "Jewel-Osco", + "original_description": "Jewel-Osco", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "FOOD_AND_DRINK_GROCERIES", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "76zXjElb4Zt8RL4DAzM9F9Zwj8GW6DCdJnxJE", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "jewelosco.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 24, + "authorized_date": "2024-08-09", + "authorized_datetime": null, + "category": [ + "Food and Drink", + "Restaurants" + ], + "category_id": "13005000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "m2M3MJoE27zdYprWD2kpbzeoOm6WMDOY5L92r", + "logo_url": "https://plaid-merchant-logos.plaid.com/dave_busters_268.png", + "name": "Dave \u0026 Buster's", + "phone_number": null, + "type": "merchant", + "website": "daveandbusters.com" + } + ], + "date": "2024-08-09", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": "01" + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/dave_busters_268.png", + "merchant_entity_id": "m2M3MJoE27zdYprWD2kpbzeoOm6WMDOY5L92r", + "merchant_name": "Dave \u0026 Buster's", + "name": "Dave \u0026 Buster's", + "original_description": "DAVE \u0026 BUSTER'S #01", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "HIGH", + "detailed": "FOOD_AND_DRINK_RESTAURANT", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "edNwr51XgAcoARVZP68vsdRGzqom9Bur95m9o", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "daveandbusters.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 26.46, + "authorized_date": "2024-08-05", + "authorized_datetime": null, + "category": [ + "Food and Drink", + "Restaurants" + ], + "category_id": "13005000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "EZ92VM3NzEaVdzq5eRB2YOb14a3OYk3gRvyZQ", + "logo_url": "https://plaid-counterparty-logos.plaid.com/uber_eats_2.png", + "name": "Uber Eats", + "phone_number": null, + "type": "marketplace", + "website": "ubereats.com" + } + ], + "date": "2024-08-07", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": "CA", + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": "Uber Eats", + "name": "Uber Eats", + "original_description": "UBER EATS 0123456789 CA", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "FOOD_AND_DRINK_RESTAURANT", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "QEbZN5mMrxTnJ4XRxba9s9paZDyVQGCwm7Dmb", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 27.44, + "authorized_date": "2024-08-05", + "authorized_datetime": null, + "category": [ + "Recreation", + "Gyms and Fitness Centers" + ], + "category_id": "17018000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "o2ZQBgYwrvw9EJ2wXy922WK0Q3XdvVzYQEmRZ", + "logo_url": "https://plaid-merchant-logos.plaid.com/planet_fitness_760.png", + "name": "Planet Fitness", + "phone_number": null, + "type": "merchant", + "website": "planetfitness.com" + } + ], + "date": "2024-08-07", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/planet_fitness_760.png", + "merchant_entity_id": "o2ZQBgYwrvw9EJ2wXy922WK0Q3XdvVzYQEmRZ", + "merchant_name": "Planet Fitness", + "name": "Planet Fitness", + "original_description": "ABC*PLANET FITNESS", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "PERSONAL_CARE_GYMS_AND_FITNESS_CENTERS", + "primary": "PERSONAL_CARE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_PERSONAL_CARE.png", + "transaction_code": null, + "transaction_id": "ZvlBL5eMPQtnXDV6QrR9sRex8pZayMceqXGqQ", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "planetfitness.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 59.46, + "authorized_date": "2024-08-07", + "authorized_datetime": null, + "category": [ + "Shops", + "Clothing and Accessories", + "Shoe Store" + ], + "category_id": "19012003", + "check_number": null, + "counterparties": [], + "date": "2024-08-07", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "DSW.", + "original_description": "DSW.", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "GENERAL_MERCHANDISE_OTHER_GENERAL_MERCHANDISE", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "MpWPx5o4yrcpZvwQrdbMuwXJg8Eze3fL6P1gQ", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 27, + "authorized_date": "2024-08-06", + "authorized_datetime": null, + "category": [ + "Food and Drink", + "Restaurants", + "Fast Food" + ], + "category_id": "13005032", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "a4r8Wog9LbWrwqWpXZeJZr9b8rRbgavga0dkM", + "logo_url": "https://plaid-merchant-logos.plaid.com/dominos_292.png", + "name": "Domino's", + "phone_number": null, + "type": "merchant", + "website": "dominos.com" + } + ], + "date": "2024-08-08", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": "989 N US Highway 31 Ste 4", + "city": "Whiteland", + "country": null, + "lat": null, + "lon": null, + "postal_code": "46184", + "region": "IN", + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/dominos_292.png", + "merchant_entity_id": "a4r8Wog9LbWrwqWpXZeJZr9b8rRbgavga0dkM", + "merchant_name": "Domino's", + "name": "Domino's", + "original_description": "DOMINO'S 0123 012-012-0123 CA", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "FOOD_AND_DRINK_FAST_FOOD", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "1bXWx1mVzNcQvyzEo34JTXVmegwx94tpjerd4", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "dominos.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 2.55, + "authorized_date": "2024-08-08", + "authorized_datetime": null, + "category": [ + "Service" + ], + "category_id": "18000000", + "check_number": null, + "counterparties": [], + "date": "2024-08-08", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "LIMEBIKE", + "original_description": "LIMEBIKE", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "GENERAL_MERCHANDISE_SPORTING_GOODS", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "LLEP35oamKfLwWGzKa8mCk6Apgx1W7ukjpEnw", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 32.39, + "authorized_date": "2024-08-07", + "authorized_datetime": null, + "category": [ + "Shops", + "Digital Purchase" + ], + "category_id": "19019000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "2gOwmq9qK56K60oDm3eLrREV2B2mVadkRn8MW", + "logo_url": "https://plaid-merchant-logos.plaid.com/amazon_44.png", + "name": "Amazon", + "phone_number": null, + "type": "merchant", + "website": "amazon.com" + } + ], + "date": "2024-08-12", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/amazon_44.png", + "merchant_entity_id": "2gOwmq9qK56K60oDm3eLrREV2B2mVadkRn8MW", + "merchant_name": "Amazon", + "name": "Amazon", + "original_description": "AMZN Mktp US Amzn.com/billWA", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "GENERAL_MERCHANDISE_ONLINE_MARKETPLACES", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "p1oA739DqKhR4y8Xk1ZWcxJrdLn6oGtpoVzMW", + "transaction_type": "digital", + "unofficial_currency_code": null, + "website": "amazon.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 25, + "authorized_date": "2024-08-12", + "authorized_datetime": null, + "category": [ + "Travel", + "Gas Stations" + ], + "category_id": "22009000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "8y7851JXryBnkOWOjW163yqzAB01oa8k6e1g9", + "logo_url": "https://plaid-merchant-logos.plaid.com/shell_891.png", + "name": "Shell", + "phone_number": null, + "type": "merchant", + "website": "shell.com" + } + ], + "date": "2024-08-12", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/shell_891.png", + "merchant_entity_id": "8y7851JXryBnkOWOjW163yqzAB01oa8k6e1g9", + "merchant_name": "Shell", + "name": "Shell", + "original_description": "Shell Oil", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "TRANSPORTATION_GAS", + "primary": "TRANSPORTATION" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_TRANSPORTATION.png", + "transaction_code": null, + "transaction_id": "oMpyjB9Dlqhb4v8gkyn6tbzMpZy5G3ioq7ben", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "shell.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 23.9, + "authorized_date": "2024-08-12", + "authorized_datetime": null, + "category": [ + "Shops", + "Computers and Electronics", + "Video Games" + ], + "category_id": "19013001", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "dWnK3aOBg2Y8OaNLakDp654dge4v3AQq3v6Xg", + "logo_url": "https://plaid-merchant-logos.plaid.com/blizzard_124.png", + "name": "Blizzard", + "phone_number": null, + "type": "merchant", + "website": "blizzard.com" + } + ], + "date": "2024-08-12", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/blizzard_124.png", + "merchant_entity_id": "dWnK3aOBg2Y8OaNLakDp654dge4v3AQq3v6Xg", + "merchant_name": "Blizzard", + "name": "Blizzard Entertainment", + "original_description": "Blizzard Entertainment", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "ENTERTAINMENT_VIDEO_GAMES", + "primary": "ENTERTAINMENT" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_ENTERTAINMENT.png", + "transaction_code": null, + "transaction_id": "g4j7B5kXEnCwdLV7NzQPHV59dRBP8WcE8n5pq", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "blizzard.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 30.12, + "authorized_date": "2024-08-07", + "authorized_datetime": null, + "category": [ + "Food and Drink", + "Restaurants" + ], + "category_id": "13005000", + "check_number": null, + "counterparties": [], + "date": "2024-08-10", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "*GUYS 0123 QSR", + "original_description": "*GUYS 0123 QSR", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "ENTERTAINMENT_SPORTING_EVENTS_AMUSEMENT_PARKS_AND_MUSEUMS", + "primary": "ENTERTAINMENT" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_ENTERTAINMENT.png", + "transaction_code": null, + "transaction_id": "8lBZ7kqmNMflM6N1rBb8udzkGwyA5MuW3L8oL", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 21.7, + "authorized_date": "2024-08-08", + "authorized_datetime": null, + "category": [ + "Food and Drink", + "Restaurants" + ], + "category_id": "13005000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "VmnapWdRwMn50bwvEaKZRKNkQXW1LvNrwdLeW", + "logo_url": "https://plaid-counterparty-logos.plaid.com/toast_182.png", + "name": "Toast", + "phone_number": null, + "type": "payment_terminal", + "website": "pos.toasttab.com" + } + ], + "date": "2024-08-10", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "TST* SUNLIFE ORG", + "original_description": "TST* SUNLIFE ORG", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "MEDIUM", + "detailed": "FOOD_AND_DRINK_RESTAURANT", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "EjM3A5vK8mCjLea1GE3mCyom95Prvki4xkmnl", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + } + ], + "has_more": true, + "modified": [], + "next_cursor": "CAESJUVqTTNBNXZLOG1DakxlYTFHRTNtQ3lvbTk1UHJ2a2k0eGttbmwiDAian63BBhDo2pCgAyoMCJqfrcEGEOjakKAD", + "removed": [], + "request_id": "KEbpWOQNiwPqQqT", + "transactions_update_status": "HISTORICAL_UPDATE_COMPLETE" + } + recorded_at: Mon, 19 May 2025 15:35:01 GMT +- request: + method: post + uri: https://sandbox.plaid.com/transactions/sync + body: + encoding: UTF-8 + string: '{"access_token":"access-sandbox-d531d3c9-8520-43ca-9e58-5b70b79fd1d4","cursor":"CAESJUVqTTNBNXZLOG1DakxlYTFHRTNtQ3lvbTk1UHJ2a2k0eGttbmwiDAian63BBhDo2pCgAyoMCJqfrcEGEOjakKAD","count":100,"options":{"include_original_description":true}}' + headers: + Content-Type: + - application/json + User-Agent: + - Plaid Ruby v38.0.0 + Accept: + - application/json + Plaid-Client-Id: + - "" + Plaid-Version: + - '2020-09-14' + Plaid-Secret: + - "" + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + response: + status: + code: 200 + message: OK + headers: + Server: + - nginx + Date: + - Mon, 19 May 2025 15:35:02 GMT + Content-Type: + - application/json; charset=utf-8 + Transfer-Encoding: + - chunked + Connection: + - keep-alive + Plaid-Version: + - '2020-09-14' + Vary: + - Accept-Encoding + X-Envoy-Upstream-Service-Time: + - '383' + X-Envoy-Decorator-Operation: + - default.svc-apiv2:8080/* + Strict-Transport-Security: + - max-age=31536000; includeSubDomains; preload + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Xss-Protection: + - 1; mode=block + body: + encoding: ASCII-8BIT + string: |- + { + "accounts": [ + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "balances": { + "available": 11065.71, + "current": 1000, + "iso_currency_code": "USD", + "limit": 12200, + "unofficial_currency_code": null + }, + "holder_category": "personal", + "mask": "3053", + "name": "Test Credit Card Account", + "official_name": "Plaid credit card", + "subtype": "credit card", + "type": "credit" + } + ], + "added": [ + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 13.49, + "authorized_date": "2024-08-08", + "authorized_datetime": null, + "category": [ + "Shops", + "Digital Purchase" + ], + "category_id": "19019000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "2gOwmq9qK56K60oDm3eLrREV2B2mVadkRn8MW", + "logo_url": "https://plaid-merchant-logos.plaid.com/amazon_44.png", + "name": "Amazon", + "phone_number": null, + "type": "merchant", + "website": "amazon.com" + } + ], + "date": "2024-08-10", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/amazon_44.png", + "merchant_entity_id": "2gOwmq9qK56K60oDm3eLrREV2B2mVadkRn8MW", + "merchant_name": "Amazon", + "name": "Amazon", + "original_description": "AMZN Mktp US", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "GENERAL_MERCHANDISE_ONLINE_MARKETPLACES", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "Wm6kZ5zMajudb4XV6nyafB8VgNb3znC6Z1jzj", + "transaction_type": "digital", + "unofficial_currency_code": null, + "website": "amazon.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 37.35, + "authorized_date": "2024-08-08", + "authorized_datetime": null, + "category": [ + "Food and Drink", + "Restaurants" + ], + "category_id": "13005000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "LOW", + "entity_id": null, + "logo_url": null, + "name": "Chef", + "phone_number": null, + "type": "merchant", + "website": null + } + ], + "date": "2024-08-10", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": "Chef", + "name": "HOME CHEF", + "original_description": "HOME CHEF", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "ENTERTAINMENT_SPORTING_EVENTS_AMUSEMENT_PARKS_AND_MUSEUMS", + "primary": "ENTERTAINMENT" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_ENTERTAINMENT.png", + "transaction_code": null, + "transaction_id": "Aa7KgRpVLAhamWlkAvD3s8Dl5KZ7brF9rA5Nx", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 8.65, + "authorized_date": "2024-08-08", + "authorized_datetime": null, + "category": [ + "Food and Drink", + "Restaurants", + "Fast Food" + ], + "category_id": "13005032", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "Ew00y0rDXn7nvvXkrWe3RQ9Y8e1Bw6pq3pwYJ", + "logo_url": "https://plaid-merchant-logos.plaid.com/panda_express_714.png", + "name": "Panda Express", + "phone_number": null, + "type": "merchant", + "website": "pandaexpress.com" + } + ], + "date": "2024-08-13", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": "0123" + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/panda_express_714.png", + "merchant_entity_id": "Ew00y0rDXn7nvvXkrWe3RQ9Y8e1Bw6pq3pwYJ", + "merchant_name": "Panda Express", + "name": "Panda Express", + "original_description": "PANDA EXPRESS #0123", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "FOOD_AND_DRINK_FAST_FOOD", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "GeLdq5ozW9Te8Jd4MGvPT84MZDwPW7F6MPogK", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "pandaexpress.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 197.56, + "authorized_date": "2024-08-09", + "authorized_datetime": null, + "category": [ + "Shops", + "Supermarkets and Groceries" + ], + "category_id": "19047000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "Eaq3KXm0jJ61KrmMrV0aw9VaY2grqv517d3ep", + "logo_url": "https://plaid-merchant-logos.plaid.com/target_997.png", + "name": "Target", + "phone_number": null, + "type": "merchant", + "website": "target.com" + } + ], + "date": "2024-08-13", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/target_997.png", + "merchant_entity_id": "Eaq3KXm0jJ61KrmMrV0aw9VaY2grqv517d3ep", + "merchant_name": "Target", + "name": "Target", + "original_description": "TARGET.COM 012-012-0123", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "GENERAL_MERCHANDISE_SUPERSTORES", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "nZLAPzwDylibQdva8jeDtG1eMJoEWbtAlWQqV", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "target.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 24.46, + "authorized_date": "2024-08-11", + "authorized_datetime": null, + "category": [ + "Travel", + "Gas Stations" + ], + "category_id": "22009000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "6po0gde1LXeNwK2YoA8ajrDopp3VXW5pw9q2R", + "logo_url": "https://plaid-merchant-logos.plaid.com/kroger_fuel_556.png", + "name": "Kroger Fuel", + "phone_number": null, + "type": "merchant", + "website": "kroger.comfuel" + } + ], + "date": "2024-08-13", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/kroger_fuel_556.png", + "merchant_entity_id": "6po0gde1LXeNwK2YoA8ajrDopp3VXW5pw9q2R", + "merchant_name": "Kroger Fuel", + "name": "Kroger", + "original_description": "KROGER FUEL CTR 0123", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "TRANSPORTATION_GAS", + "primary": "TRANSPORTATION" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_TRANSPORTATION.png", + "transaction_code": null, + "transaction_id": "bBdylJgXLku1ryVNQ9XehxReg34KG7tmbZ7pb", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "kroger.comfuel" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 74.12, + "authorized_date": "2024-08-11", + "authorized_datetime": null, + "category": [ + "Shops", + "Warehouses and Wholesale Stores" + ], + "category_id": "19051000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "zR61zN0mp5rbKeWpp3m8boyYvZK5an0yaJ5r0", + "logo_url": "https://plaid-merchant-logos.plaid.com/bjs_wholesale_club_119.png", + "name": "BJ's Wholesale Club", + "phone_number": null, + "type": "merchant", + "website": "bjs.com" + } + ], + "date": "2024-08-13", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": "8811 Brier Creek Pkwy", + "city": "Raleigh", + "country": null, + "lat": 35.902161, + "lon": -78.788681, + "postal_code": "27617", + "region": "NC", + "store_number": "0123" + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/bjs_wholesale_club_119.png", + "merchant_entity_id": "zR61zN0mp5rbKeWpp3m8boyYvZK5an0yaJ5r0", + "merchant_name": "BJ's Wholesale Club", + "name": "BJS WHOLESALE #0123", + "original_description": "BJS WHOLESALE #0123", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "GENERAL_MERCHANDISE_SUPERSTORES", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "mQ1ANkbDmRfb4yvJ6npMt6LmBj1NyEcgydXZZ", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "bjs.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 52.5, + "authorized_date": "2024-08-13", + "authorized_datetime": null, + "category": [ + "Service" + ], + "category_id": "18000000", + "check_number": null, + "counterparties": [], + "date": "2024-08-13", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "RING.COM RING YEARLY P", + "original_description": "RING.COM RING YEARLY P", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "GENERAL_MERCHANDISE_PET_SUPPLIES", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "yGmrge5K4NFpDQweBL4yuPM35rxdXZi46XwRz", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 166.43, + "authorized_date": "2024-08-13", + "authorized_datetime": null, + "category": [ + "Shops", + "Clothing and Accessories", + "Shoe Store" + ], + "category_id": "19012003", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "ENww3prEqejkVDpkym889gnLk36YaQAkbgOZR", + "logo_url": "https://plaid-merchant-logos.plaid.com/nike_679.png", + "name": "Nike", + "phone_number": null, + "type": "merchant", + "website": "nike.com" + } + ], + "date": "2024-08-13", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/nike_679.png", + "merchant_entity_id": "ENww3prEqejkVDpkym889gnLk36YaQAkbgOZR", + "merchant_name": "Nike", + "name": "NIKE.COM OR", + "original_description": "NIKE.COM 012-012-0123 OR", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "GENERAL_MERCHANDISE_SPORTING_GOODS", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "9q36eAK7P1iqGMPbA34yUAZV7NmLojI4xQgNm", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "nike.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 22.5, + "authorized_date": "2024-08-09", + "authorized_datetime": null, + "category": [ + "Travel", + "Airlines and Aviation Services" + ], + "category_id": "22001000", + "check_number": null, + "counterparties": [], + "date": "2024-08-14", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "JetBlue", + "original_description": "JETBLUE 01234567890123", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "ENTERTAINMENT_SPORTING_EVENTS_AMUSEMENT_PARKS_AND_MUSEUMS", + "primary": "ENTERTAINMENT" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_ENTERTAINMENT.png", + "transaction_code": null, + "transaction_id": "vEGlLPADxdT7rVvMKoxpsbozq3NxkGiq6k1Q3", + "transaction_type": "special", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 17.48, + "authorized_date": "2024-08-11", + "authorized_datetime": null, + "category": [ + "Service" + ], + "category_id": "18000000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "pM6DgZmaEORp3B2o01rV7MW8dkN30byzJgJwe", + "logo_url": "https://plaid-merchant-logos.plaid.com/google_drive_1427.png", + "name": "Google Drive", + "phone_number": null, + "type": "merchant", + "website": "google.com/drive" + }, + { + "confidence_level": "VERY_HIGH", + "entity_id": "8LVAN69qv4bO21pNgv3VEZqByB2V0MOm87mMB", + "logo_url": "https://plaid-counterparty-logos.plaid.com/google_play_120.png", + "name": "Google Play Store", + "phone_number": null, + "type": "marketplace", + "website": "play.google.com/store" + } + ], + "date": "2024-08-14", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": "CA", + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/google_drive_1427.png", + "merchant_entity_id": "pM6DgZmaEORp3B2o01rV7MW8dkN30byzJgJwe", + "merchant_name": "Google Drive", + "name": "Google Cloud Storage", + "original_description": "GOOGLE *Google Storage 012-012-0123 CA", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": "Google Wallet", + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "GENERAL_SERVICES_OTHER_GENERAL_SERVICES", + "primary": "GENERAL_SERVICES" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_SERVICES.png", + "transaction_code": null, + "transaction_id": "RWmGP5oMzdtreRojdm9zi5wEvmqNVpHapbAVK", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "google.com/drive" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 112.4, + "authorized_date": "2024-08-11", + "authorized_datetime": null, + "category": [ + "Shops", + "Digital Purchase" + ], + "category_id": "19019000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "2gOwmq9qK56K60oDm3eLrREV2B2mVadkRn8MW", + "logo_url": "https://plaid-merchant-logos.plaid.com/amazon_44.png", + "name": "Amazon", + "phone_number": null, + "type": "merchant", + "website": "amazon.com" + } + ], + "date": "2024-08-14", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/amazon_44.png", + "merchant_entity_id": "2gOwmq9qK56K60oDm3eLrREV2B2mVadkRn8MW", + "merchant_name": "Amazon", + "name": "AMAZON MKTPLACE PMTS AMZN.COM/BILLWA", + "original_description": "AMAZON MKTPLACE PMTS AMZN.COM/BILLWA", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "GENERAL_MERCHANDISE_ONLINE_MARKETPLACES", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "6RrvP8d6aQt8RdaEAwWkFbyD6lRWjLi8DXe76", + "transaction_type": "digital", + "unofficial_currency_code": null, + "website": "amazon.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 25.32, + "authorized_date": "2024-08-13", + "authorized_datetime": null, + "category": [ + "Travel", + "Car Service", + "Ride Share" + ], + "category_id": "22006001", + "check_number": null, + "counterparties": [], + "date": "2024-08-16", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "JUNO USA, LP", + "original_description": "JUNO USA, LP", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "GENERAL_MERCHANDISE_OTHER_GENERAL_MERCHANDISE", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "XyXrM5BG47fmPpGD7694U6qPyJX8decbKnLAX", + "transaction_type": "special", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 60.5, + "authorized_date": "2024-08-16", + "authorized_datetime": null, + "category": [ + "Service", + "Food and Beverage" + ], + "category_id": "18021000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "vrvNr4Y1JAd6gb53bNd9LY3BzdEbnbvgQVkzX", + "logo_url": "https://plaid-counterparty-logos.plaid.com/skipthedishes_205.png", + "name": "SkipTheDishes", + "phone_number": null, + "type": "marketplace", + "website": "skipthedishes.com" + } + ], + "date": "2024-08-16", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": "SkipTheDishes", + "name": "SKIPTHEDISHES.COM", + "original_description": "SKIPTHEDISHES.COM", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "MEDIUM", + "detailed": "FOOD_AND_DRINK_RESTAURANT", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "DPZBW5VqgbFP764zbpqmSvjWJDPg3bt3WaJqw", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 22.95, + "authorized_date": "2024-08-15", + "authorized_datetime": null, + "category": [ + "Recreation", + "Arts and Entertainment" + ], + "category_id": "17001000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "LOW", + "entity_id": null, + "logo_url": null, + "name": "Tickets LLC", + "phone_number": null, + "type": "merchant", + "website": null + } + ], + "date": "2024-08-18", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": "Tickets LLC", + "name": "ATOM TICKETS, LLC", + "original_description": "ATOM TICKETS, LLC", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "ENTERTAINMENT_SPORTING_EVENTS_AMUSEMENT_PARKS_AND_MUSEUMS", + "primary": "ENTERTAINMENT" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_ENTERTAINMENT.png", + "transaction_code": null, + "transaction_id": "VbRqQ5rLdPcn6RqVP4QdsXJG18VQ3Et9gPEMk", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 18.11, + "authorized_date": "2024-08-17", + "authorized_datetime": null, + "category": [ + "Shops", + "Supermarkets and Groceries" + ], + "category_id": "19047000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "a1wEv51o8g7QQEbN2o9NRa3np6AXn0qZ2ZdL9", + "logo_url": "https://plaid-merchant-logos.plaid.com/hellofresh_479.png", + "name": "HelloFresh", + "phone_number": null, + "type": "merchant", + "website": "hellofresh.com" + } + ], + "date": "2024-08-18", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": "NY", + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/hellofresh_479.png", + "merchant_entity_id": "a1wEv51o8g7QQEbN2o9NRa3np6AXn0qZ2ZdL9", + "merchant_name": "HelloFresh", + "name": "HELLOFRESH", + "original_description": "HELLOFRESH 012-012-0123 NY", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "FOOD_AND_DRINK_GROCERIES", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "wWnqpjJldatQbrvJydjETKPDB3J4E9cPZomXw", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "hellofresh.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 11.24, + "authorized_date": "2024-08-17", + "authorized_datetime": null, + "category": [ + "Shops", + "Department Stores" + ], + "category_id": "19018000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "rZzNA9QKw4XAAWy9Wz0kwppkDL9B2neJgo7Wr", + "logo_url": "https://plaid-merchant-logos.plaid.com/navy_exchange_669.png", + "name": "Navy Exchange", + "phone_number": null, + "type": "merchant", + "website": "mynavyexchange.com" + } + ], + "date": "2024-08-18", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/navy_exchange_669.png", + "merchant_entity_id": "rZzNA9QKw4XAAWy9Wz0kwppkDL9B2neJgo7Wr", + "merchant_name": "Navy Exchange", + "name": "NAVY EXCHANGE 012345", + "original_description": "NAVY EXCHANGE 012345", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "GENERAL_MERCHANDISE_DEPARTMENT_STORES", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "5vK5Ng6bdetkX4dDA6NbSqZK7QDoXMu5K78rm", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "mynavyexchange.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 8.32, + "authorized_date": "2024-08-17", + "authorized_datetime": null, + "category": [ + "Shops", + "Supermarkets and Groceries" + ], + "category_id": "19047000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "J5VqjvXoRQjv5vWrMLp3YDmjOjb9ao52b1NQA", + "logo_url": "https://plaid-merchant-logos.plaid.com/hannaford_473.png", + "name": "Hannaford", + "phone_number": null, + "type": "merchant", + "website": "hannaford.com" + } + ], + "date": "2024-08-17", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/hannaford_473.png", + "merchant_entity_id": "J5VqjvXoRQjv5vWrMLp3YDmjOjb9ao52b1NQA", + "merchant_name": "Hannaford", + "name": "Hannaford", + "original_description": "Hannaford", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "FOOD_AND_DRINK_GROCERIES", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "JMgVz59xnlhM1pyKljkeUAXZgLJDw6IB6gk8G", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "hannaford.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 38.38, + "authorized_date": "2024-08-17", + "authorized_datetime": null, + "category": [ + "Shops", + "Supermarkets and Groceries" + ], + "category_id": "19047000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "E1Eqdj7BML3NLYNAO562kZj5R0J4EkQo6gYJA", + "logo_url": "https://plaid-merchant-logos.plaid.com/kroger_555.png", + "name": "Kroger", + "phone_number": null, + "type": "merchant", + "website": "kroger.com" + } + ], + "date": "2024-08-17", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/kroger_555.png", + "merchant_entity_id": "E1Eqdj7BML3NLYNAO562kZj5R0J4EkQo6gYJA", + "merchant_name": "Kroger", + "name": "Kroger", + "original_description": "Kroger", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "FOOD_AND_DRINK_GROCERIES", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "k7ZAaqkDn9IeLWvPMD3QTQmwjAae61sL6do5G", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "kroger.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 3.69, + "authorized_date": "2024-08-17", + "authorized_datetime": null, + "category": [ + "Shops", + "Music, Video and DVD" + ], + "category_id": "19036000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "z3XzRe488pMdo7NAnL44L7rv9L550berky6mK", + "logo_url": "https://plaid-merchant-logos.plaid.com/apple_itunes_1434.png", + "name": "Apple iTunes", + "phone_number": null, + "type": "merchant", + "website": "apple.com/itunes" + } + ], + "date": "2024-08-17", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": "CA", + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/apple_itunes_1434.png", + "merchant_entity_id": "z3XzRe488pMdo7NAnL44L7rv9L550berky6mK", + "merchant_name": "Apple iTunes", + "name": "iTunes", + "original_description": "APL* ITUNES.COM/BILL 012-012-0123 CA", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": "Apple", + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "ENTERTAINMENT_MUSIC_AND_AUDIO", + "primary": "ENTERTAINMENT" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_ENTERTAINMENT.png", + "transaction_code": null, + "transaction_id": "leMA4KdDbvT9Rj8aDw3ASlqwZmdvGDipodR31", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "apple.com/itunes" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 16.68, + "authorized_date": "2024-08-17", + "authorized_datetime": null, + "category": [ + "Food and Drink", + "Restaurants" + ], + "category_id": "13005000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "1WKvazzZXRpRyVQK7Lyk0wp3qNdDVVrA9aw4A", + "logo_url": "https://plaid-merchant-logos.plaid.com/applebees_66.png", + "name": "Applebee's", + "phone_number": null, + "type": "merchant", + "website": "applebees.com" + } + ], + "date": "2024-08-20", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/applebees_66.png", + "merchant_entity_id": "1WKvazzZXRpRyVQK7Lyk0wp3qNdDVVrA9aw4A", + "merchant_name": "Applebee's", + "name": "Applebee's", + "original_description": "APPLEBEES 012345678901", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "FOOD_AND_DRINK_RESTAURANT", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "bBdylJgXLku1ryVNQ9XehxReg34KG7tmbZ7pG", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "applebees.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 12.17, + "authorized_date": "2024-08-18", + "authorized_datetime": null, + "category": [ + "Shops", + "Food and Beverage Store" + ], + "category_id": "19025000", + "check_number": null, + "counterparties": [], + "date": "2024-08-23", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "Godiva", + "original_description": "GODIVA 012", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "GENERAL_MERCHANDISE_OTHER_GENERAL_MERCHANDISE", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "mQ1ANkbDmRfb4yvJ6npMt6LmBj1NyEcgydXZL", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 1.43, + "authorized_date": "2024-08-20", + "authorized_datetime": null, + "category": [ + "Travel", + "Car Service", + "Ride Share" + ], + "category_id": "22006001", + "check_number": null, + "counterparties": [], + "date": "2024-08-23", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "VIA", + "original_description": "VIA", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "GENERAL_MERCHANDISE_OTHER_GENERAL_MERCHANDISE", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "yGmrge5K4NFpDQweBL4yuPM35rxdXZi46XwR4", + "transaction_type": "special", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 26.44, + "authorized_date": "2024-08-22", + "authorized_datetime": null, + "category": [ + "Food and Drink", + "Restaurants" + ], + "category_id": "13005000", + "check_number": null, + "counterparties": [], + "date": "2024-08-23", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "Applebee's", + "original_description": "Applebee's", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "ENTERTAINMENT_SPORTING_EVENTS_AMUSEMENT_PARKS_AND_MUSEUMS", + "primary": "ENTERTAINMENT" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_ENTERTAINMENT.png", + "transaction_code": null, + "transaction_id": "9q36eAK7P1iqGMPbA34yUAZV7NmLojI4xQgNq", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 24.5, + "authorized_date": "2024-08-23", + "authorized_datetime": null, + "category": [ + "Service", + "Subscription" + ], + "category_id": "18061000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "XZAmBNLd29wbbLB49r58oD5b6y7kz5A1982j3", + "logo_url": "https://plaid-merchant-logos.plaid.com/amazon_prime_1987.png", + "name": "Amazon Prime", + "phone_number": null, + "type": "merchant", + "website": "amazon.com/amazonprime" + } + ], + "date": "2024-08-23", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": "Seattle", + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": "WA", + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/amazon_prime_1987.png", + "merchant_entity_id": "XZAmBNLd29wbbLB49r58oD5b6y7kz5A1982j3", + "merchant_name": "Amazon Prime", + "name": "Amazon Prime", + "original_description": "Amazon Prime Amzn.com/bill WA", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "GENERAL_SERVICES_OTHER_GENERAL_SERVICES", + "primary": "GENERAL_SERVICES" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_SERVICES.png", + "transaction_code": null, + "transaction_id": "vEGlLPADxdT7rVvMKoxpsbozq3NxkGiq6k1Qn", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "amazon.com/amazonprime" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 4.49, + "authorized_date": "2024-08-20", + "authorized_datetime": null, + "category": [ + "Travel", + "Taxi" + ], + "category_id": "22016000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "eyg8o776k0QmNgVpAmaQj4WgzW9Qzo6O51gdd", + "logo_url": "https://plaid-merchant-logos.plaid.com/uber_1060.png", + "name": "Uber", + "phone_number": null, + "type": "merchant", + "website": "uber.com" + } + ], + "date": "2024-08-22", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": "CA", + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/uber_1060.png", + "merchant_entity_id": "eyg8o776k0QmNgVpAmaQj4WgzW9Qzo6O51gdd", + "merchant_name": "Uber", + "name": "Uber", + "original_description": "Uber Trip Help.uber.com Ca", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "TRANSPORTATION_TAXIS_AND_RIDE_SHARES", + "primary": "TRANSPORTATION" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_TRANSPORTATION.png", + "transaction_code": null, + "transaction_id": "RWmGP5oMzdtreRojdm9zi5wEvmqNVpHapbAVG", + "transaction_type": "special", + "unofficial_currency_code": null, + "website": "uber.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 21.29, + "authorized_date": "2024-08-20", + "authorized_datetime": null, + "category": [ + "Shops", + "Supermarkets and Groceries" + ], + "category_id": "19047000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "O5W5j4dN9OR3E6ypQmjdkWZZRoXEzVMz2ByWM", + "logo_url": "https://plaid-merchant-logos.plaid.com/walmart_1100.png", + "name": "Walmart", + "phone_number": null, + "type": "merchant", + "website": "walmart.com" + } + ], + "date": "2024-08-24", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": "1500 E Wrangler Blvd", + "city": "Seminole", + "country": null, + "lat": 35.248352, + "lon": -96.654625, + "postal_code": "74868", + "region": "OK", + "store_number": "0123" + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/walmart_1100.png", + "merchant_entity_id": "O5W5j4dN9OR3E6ypQmjdkWZZRoXEzVMz2ByWM", + "merchant_name": "Walmart", + "name": "Walmart", + "original_description": "WAL-MART SUPERCENTER#0123", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "GENERAL_MERCHANDISE_SUPERSTORES", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "6RrvP8d6aQt8RdaEAwWkFbyD6lRWjLi8DXe7G", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "walmart.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 141.82, + "authorized_date": "2024-08-22", + "authorized_datetime": null, + "category": [ + "Shops", + "Department Stores" + ], + "category_id": "19018000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "bN0wJ6wvppDz375EzNJNQv9bBODam4qWOrE3k", + "logo_url": "https://plaid-merchant-logos.plaid.com/nordstrom_684.png", + "name": "Nordstrom", + "phone_number": null, + "type": "merchant", + "website": "nordstrom.com" + } + ], + "date": "2024-08-24", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": "012" + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/nordstrom_684.png", + "merchant_entity_id": "bN0wJ6wvppDz375EzNJNQv9bBODam4qWOrE3k", + "merchant_name": "Nordstrom", + "name": "Nordstrom Rack", + "original_description": "NORDSTROM RACK #012", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "GENERAL_MERCHANDISE_DEPARTMENT_STORES", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "XyXrM5BG47fmPpGD7694U6qPyJX8decbKnLA9", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "nordstrom.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 153.54, + "authorized_date": "2024-08-22", + "authorized_datetime": null, + "category": [ + "Shops", + "Warehouses and Wholesale Stores" + ], + "category_id": "19051000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "pBowAoZJMM9DKR37jvNmzM4yWBBXyMzV2rM3A", + "logo_url": "https://plaid-merchant-logos.plaid.com/costco_235.png", + "name": "Costco", + "phone_number": null, + "type": "merchant", + "website": "costco.com" + } + ], + "date": "2024-08-27", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/costco_235.png", + "merchant_entity_id": "pBowAoZJMM9DKR37jvNmzM4yWBBXyMzV2rM3A", + "merchant_name": "Costco", + "name": "Costco", + "original_description": "WWW COSTCO COM #...0123", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "GENERAL_MERCHANDISE_SUPERSTORES", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "DPZBW5VqgbFP764zbpqmSvjWJDPg3bt3WaJqZ", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "costco.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 10.48, + "authorized_date": "2024-08-25", + "authorized_datetime": null, + "category": [ + "Service", + "Subscription" + ], + "category_id": "18061000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "LOW", + "entity_id": null, + "logo_url": null, + "name": "LLC", + "phone_number": null, + "type": "merchant", + "website": null + }, + { + "confidence_level": "VERY_HIGH", + "entity_id": "KW8b0J0kX53kBAnYRV5VVnbb3WWpb17VBDra2", + "logo_url": "https://plaid-counterparty-logos.plaid.com/roku_91.png", + "name": "Roku", + "phone_number": null, + "type": "marketplace", + "website": "roku.com" + } + ], + "date": "2024-08-27", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": "LLC", + "name": "ROKU FOR HULU LLC", + "original_description": "ROKU FOR HULU LLC", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "ENTERTAINMENT_TV_AND_MOVIES", + "primary": "ENTERTAINMENT" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_ENTERTAINMENT.png", + "transaction_code": null, + "transaction_id": "VbRqQ5rLdPcn6RqVP4QdsXJG18VQ3Et9gPEMl", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 103.22, + "authorized_date": "2024-08-27", + "authorized_datetime": null, + "category": [ + "Service", + "Subscription" + ], + "category_id": "18061000", + "check_number": null, + "counterparties": [], + "date": "2024-08-27", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "SLING.COM", + "original_description": "SLING.COM", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "ENTERTAINMENT_TV_AND_MOVIES", + "primary": "ENTERTAINMENT" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_ENTERTAINMENT.png", + "transaction_code": null, + "transaction_id": "wWnqpjJldatQbrvJydjETKPDB3J4E9cPZomXK", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 9.34, + "authorized_date": "2024-08-27", + "authorized_datetime": null, + "category": [ + "Food and Drink", + "Restaurants" + ], + "category_id": "13005000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "LOW", + "entity_id": null, + "logo_url": null, + "name": "Fooda Inc", + "phone_number": null, + "type": "merchant", + "website": null + } + ], + "date": "2024-08-27", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": "Fooda Inc", + "name": "FOODA INC", + "original_description": "PP*FOODA INC", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": "PayPal", + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "GENERAL_MERCHANDISE_OTHER_GENERAL_MERCHANDISE", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "5vK5Ng6bdetkX4dDA6NbSqZK7QDoXMu5K78rL", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 34.98, + "authorized_date": "2024-08-27", + "authorized_datetime": null, + "category": [ + "Service" + ], + "category_id": "18000000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "AzvmJDZYnkRZwrdAaZnwearRmBNe9bM3zEEYq", + "logo_url": "https://plaid-merchant-logos.plaid.com/ancestry_60.png", + "name": "Ancestry", + "phone_number": null, + "type": "merchant", + "website": "ancestry.com" + } + ], + "date": "2024-08-27", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/ancestry_60.png", + "merchant_entity_id": "AzvmJDZYnkRZwrdAaZnwearRmBNe9bM3zEEYq", + "merchant_name": "Ancestry", + "name": "ANC*ANCESTRY.COM", + "original_description": "ANC*ANCESTRY.COM", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "GENERAL_SERVICES_OTHER_GENERAL_SERVICES", + "primary": "GENERAL_SERVICES" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_SERVICES.png", + "transaction_code": null, + "transaction_id": "JMgVz59xnlhM1pyKljkeUAXZgLJDw6IB6gk8W", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "ancestry.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 27.65, + "authorized_date": "2024-08-22", + "authorized_datetime": null, + "category": [ + "Shops", + "Food and Beverage Store" + ], + "category_id": "19025000", + "check_number": null, + "counterparties": [], + "date": "2024-08-25", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "Le Pain Quotidien", + "original_description": "LE PAIN QUOTIDIEN", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "GENERAL_MERCHANDISE_OTHER_GENERAL_MERCHANDISE", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "k7ZAaqkDn9IeLWvPMD3QTQmwjAae61sL6do54", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 6.13, + "authorized_date": "2024-08-23", + "authorized_datetime": null, + "category": [ + "Food and Drink", + "Restaurants" + ], + "category_id": "13005000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "QpojvDpD1bBOJzXRv6bnBz9dbLEE9KwBg1wEr", + "logo_url": "https://plaid-merchant-logos.plaid.com/canteen_vending_163.png", + "name": "Canteen Vending", + "phone_number": null, + "type": "merchant", + "website": "canteen.com" + } + ], + "date": "2024-08-25", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/canteen_vending_163.png", + "merchant_entity_id": "QpojvDpD1bBOJzXRv6bnBz9dbLEE9KwBg1wEr", + "merchant_name": "Canteen Vending", + "name": "USA*CANTEEN VENDING", + "original_description": "USA*CANTEEN VENDING", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "FOOD_AND_DRINK_VENDING_MACHINES", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "leMA4KdDbvT9Rj8aDw3ASlqwZmdvGDipodR3D", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "canteen.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 5.5, + "authorized_date": "2024-08-23", + "authorized_datetime": null, + "category": [ + "Food and Drink", + "Restaurants" + ], + "category_id": "13005000", + "check_number": null, + "counterparties": [], + "date": "2024-08-25", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "Wetzel's Pretzels", + "original_description": "WETZEL'S PRETZELS", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "FOOD_AND_DRINK_OTHER_FOOD_AND_DRINK", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "qLgAex9DKrfNjEv5oDMaFebVapMmWGhgr7RKp", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 9.62, + "authorized_date": "2024-08-25", + "authorized_datetime": null, + "category": [ + "Service", + "Subscription" + ], + "category_id": "18061000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "LOW", + "entity_id": null, + "logo_url": null, + "name": "LLC", + "phone_number": null, + "type": "merchant", + "website": null + }, + { + "confidence_level": "VERY_HIGH", + "entity_id": "KW8b0J0kX53kBAnYRV5VVnbb3WWpb17VBDra2", + "logo_url": "https://plaid-counterparty-logos.plaid.com/roku_91.png", + "name": "Roku", + "phone_number": null, + "type": "marketplace", + "website": "roku.com" + } + ], + "date": "2024-08-25", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": "LLC", + "name": "ROKU FOR HULU LLC", + "original_description": "ROKU FOR HULU LLC", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "ENTERTAINMENT_TV_AND_MOVIES", + "primary": "ENTERTAINMENT" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_ENTERTAINMENT.png", + "transaction_code": null, + "transaction_id": "K18PB5Zdbqh17BVgqbRQhyoaA5z1deiRpA1Xw", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 16.71, + "authorized_date": "2024-08-25", + "authorized_datetime": null, + "category": [ + "Shops", + "Convenience Stores" + ], + "category_id": "19015000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "653bj4EwY3e1eLKzY5qN2aoW2opqObWEgOvWe", + "logo_url": "https://plaid-merchant-logos.plaid.com/stewarts_shops_964.png", + "name": "Stewart's Shops", + "phone_number": null, + "type": "merchant", + "website": "stewartsshops.com" + } + ], + "date": "2024-08-25", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/stewarts_shops_964.png", + "merchant_entity_id": "653bj4EwY3e1eLKzY5qN2aoW2opqObWEgOvWe", + "merchant_name": "Stewart's Shops", + "name": "STEWARTS SHOP 012", + "original_description": "STEWARTS SHOP 012", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "GENERAL_MERCHANDISE_CONVENIENCE_STORES", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "rp8wQd9Drzc7XxVRZbBNsbxP5JMjG9i7J61eZ", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "stewartsshops.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 62.88, + "authorized_date": "2024-08-25", + "authorized_datetime": null, + "category": [ + "Shops", + "Digital Purchase" + ], + "category_id": "19019000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "2gOwmq9qK56K60oDm3eLrREV2B2mVadkRn8MW", + "logo_url": "https://plaid-merchant-logos.plaid.com/amazon_44.png", + "name": "Amazon", + "phone_number": null, + "type": "merchant", + "website": "amazon.com" + } + ], + "date": "2024-08-25", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/amazon_44.png", + "merchant_entity_id": "2gOwmq9qK56K60oDm3eLrREV2B2mVadkRn8MW", + "merchant_name": "Amazon", + "name": "Amazon", + "original_description": "AMZN MKTP US AMZN.COM/", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "GENERAL_MERCHANDISE_ONLINE_MARKETPLACES", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "zkyz8Q9rNPCXgWQeyj9pIeqPWlmJpdhlNLQ5R", + "transaction_type": "digital", + "unofficial_currency_code": null, + "website": "amazon.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 36.79, + "authorized_date": "2024-08-25", + "authorized_datetime": null, + "category": [ + "Shops", + "Warehouses and Wholesale Stores" + ], + "category_id": "19051000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "pBowAoZJMM9DKR37jvNmzM4yWBBXyMzV2rM3A", + "logo_url": "https://plaid-merchant-logos.plaid.com/costco_235.png", + "name": "Costco", + "phone_number": null, + "type": "merchant", + "website": "costco.com" + } + ], + "date": "2024-08-25", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/costco_235.png", + "merchant_entity_id": "pBowAoZJMM9DKR37jvNmzM4yWBBXyMzV2rM3A", + "merchant_name": "Costco", + "name": "Costco", + "original_description": "Costco", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "GENERAL_MERCHANDISE_SUPERSTORES", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "B4ek869ZpGC41mDnjvVxuBdXVLjPRxC4M8gbr", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "costco.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 25.95, + "authorized_date": "2024-08-23", + "authorized_datetime": null, + "category": [ + "Shops", + "Digital Purchase" + ], + "category_id": "19019000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "2gOwmq9qK56K60oDm3eLrREV2B2mVadkRn8MW", + "logo_url": "https://plaid-merchant-logos.plaid.com/amazon_44.png", + "name": "Amazon", + "phone_number": null, + "type": "merchant", + "website": "amazon.com" + } + ], + "date": "2024-08-26", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/amazon_44.png", + "merchant_entity_id": "2gOwmq9qK56K60oDm3eLrREV2B2mVadkRn8MW", + "merchant_name": "Amazon", + "name": "Amazon Payments #...0123", + "original_description": "Amazon Payments #...0123", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "GENERAL_MERCHANDISE_ONLINE_MARKETPLACES", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "3ylJapdb3jf8nK3A1z7JF3jlmQa5LBhZlnEDB", + "transaction_type": "digital", + "unofficial_currency_code": null, + "website": "amazon.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 12.74, + "authorized_date": "2024-08-25", + "authorized_datetime": null, + "category": [ + "Service", + "Subscription" + ], + "category_id": "18061000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "3LEY2bJ6W1vkoaBjgVg3qBgYVEzD6p8d1dQdY", + "logo_url": "https://plaid-merchant-logos.plaid.com/netflix_675.png", + "name": "Netflix", + "phone_number": null, + "type": "merchant", + "website": "netflix.com" + } + ], + "date": "2024-08-26", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": "CA", + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/netflix_675.png", + "merchant_entity_id": "3LEY2bJ6W1vkoaBjgVg3qBgYVEzD6p8d1dQdY", + "merchant_name": "Netflix", + "name": "Netflix", + "original_description": "NETFLIX.COM 012-0123456 CA", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "ENTERTAINMENT_TV_AND_MOVIES", + "primary": "ENTERTAINMENT" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_ENTERTAINMENT.png", + "transaction_code": null, + "transaction_id": "xAbKo75qa4um5aZ8zndpUMd7gW5wbxU64Ve3R", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "netflix.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 4.91, + "authorized_date": "2024-08-25", + "authorized_datetime": null, + "category": [ + "Shops", + "Pharmacies" + ], + "category_id": "19043000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "XE0b15bEno6BJ1nBbaaXekBOXLeJr46q8EaKR", + "logo_url": "https://plaid-merchant-logos.plaid.com/duane_reade_303.png", + "name": "Duane Reade", + "phone_number": null, + "type": "merchant", + "website": "walgreens.com/topic/duane-reade/duane-reade.jsp" + } + ], + "date": "2024-08-30", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": "01234" + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/duane_reade_303.png", + "merchant_entity_id": "XE0b15bEno6BJ1nBbaaXekBOXLeJr46q8EaKR", + "merchant_name": "Duane Reade", + "name": "Duane Reade", + "original_description": "DUANE READE #01234", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "MEDICAL_PHARMACIES_AND_SUPPLEMENTS", + "primary": "MEDICAL" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_MEDICAL.png", + "transaction_code": null, + "transaction_id": "dx4ZK58XoWCvbXVZlNgaC9Rl5wkLExCJEQRje", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "walgreens.com/topic/duane-reade/duane-reade.jsp" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 4.61, + "authorized_date": "2024-08-27", + "authorized_datetime": null, + "category": [ + "Shops", + "Food and Beverage Store" + ], + "category_id": "19025000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "LOW", + "entity_id": null, + "logo_url": null, + "name": "Joe \u0026 The Juice", + "phone_number": null, + "type": "merchant", + "website": null + }, + { + "confidence_level": "VERY_HIGH", + "entity_id": "kYyzLr7JDEvmN43YaaWagRKZKpnwrN2Mkpy2g", + "logo_url": "https://plaid-counterparty-logos.plaid.com/square_154.png", + "name": "Square", + "phone_number": null, + "type": "payment_terminal", + "website": "squareup.com" + } + ], + "date": "2024-08-30", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": "Joe \u0026 The Juice", + "name": "JOE \u0026 THE JUICE", + "original_description": "SQ *JOE \u0026 THE JUICE", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": "Square", + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "FOOD_AND_DRINK_OTHER_FOOD_AND_DRINK", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "azx7A59X1gc5orV6dPw3soqAjJ3zZysZ5QDBQ", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 29.96, + "authorized_date": "2024-08-27", + "authorized_datetime": null, + "category": [ + "Travel", + "Gas Stations" + ], + "category_id": "22009000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "ZRbBR40YJZaB2v5bVNj6NOmNOr9p91mw939or", + "logo_url": "https://plaid-merchant-logos.plaid.com/citgo_214.png", + "name": "Citgo", + "phone_number": null, + "type": "merchant", + "website": "citgo.com" + } + ], + "date": "2024-08-30", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/citgo_214.png", + "merchant_entity_id": "ZRbBR40YJZaB2v5bVNj6NOmNOr9p91mw939or", + "merchant_name": "Citgo", + "name": "CITGO", + "original_description": "Citgo", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "TRANSPORTATION_GAS", + "primary": "TRANSPORTATION" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_TRANSPORTATION.png", + "transaction_code": null, + "transaction_id": "49qZ4oGbx7T873XDoebnFmlbdW4eDaFJbALQM", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "citgo.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 19.5, + "authorized_date": "2024-08-30", + "authorized_datetime": null, + "category": [ + "Food and Drink", + "Restaurants" + ], + "category_id": "13005000", + "check_number": null, + "counterparties": [], + "date": "2024-08-30", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "THE BACKYARD", + "original_description": "THE BACKYARD", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "GENERAL_MERCHANDISE_OTHER_GENERAL_MERCHANDISE", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "NokPd5gNlzfoV1byzGkls7JMP5G3Q9sy65Q4Q", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 12.6, + "authorized_date": "2024-08-27", + "authorized_datetime": null, + "category": [ + "Travel", + "Taxi" + ], + "category_id": "22016000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "eyg8o776k0QmNgVpAmaQj4WgzW9Qzo6O51gdd", + "logo_url": "https://plaid-merchant-logos.plaid.com/uber_1060.png", + "name": "Uber", + "phone_number": null, + "type": "merchant", + "website": "uber.com" + } + ], + "date": "2024-08-28", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": "CA", + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/uber_1060.png", + "merchant_entity_id": "eyg8o776k0QmNgVpAmaQj4WgzW9Qzo6O51gdd", + "merchant_name": "Uber", + "name": "Uber", + "original_description": "UBER TRIP AZQGR 0123456789 CA", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "TRANSPORTATION_TAXIS_AND_RIDE_SHARES", + "primary": "TRANSPORTATION" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_TRANSPORTATION.png", + "transaction_code": null, + "transaction_id": "P8n745oWK3cnXKyW31x9slDB75xZEeio6WAPy", + "transaction_type": "special", + "unofficial_currency_code": null, + "website": "uber.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 7.21, + "authorized_date": "2024-08-29", + "authorized_datetime": null, + "category": [ + "Food and Drink", + "Restaurants", + "Fast Food" + ], + "category_id": "13005032", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "MezwEv82wQZEknrQkzrO7nKBW0qZXo4eL8NXL", + "logo_url": "https://plaid-merchant-logos.plaid.com/whataburger_1118.png", + "name": "Whataburger", + "phone_number": null, + "type": "merchant", + "website": "whataburger.com" + } + ], + "date": "2024-09-03", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": "2018 S Staples St", + "city": "Corpus Christi", + "country": null, + "lat": 27.765787, + "lon": -97.402695, + "postal_code": "78404", + "region": "TX", + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/whataburger_1118.png", + "merchant_entity_id": "MezwEv82wQZEknrQkzrO7nKBW0qZXo4eL8NXL", + "merchant_name": "Whataburger", + "name": "Whataburger", + "original_description": "WHATABURGER 012", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "FOOD_AND_DRINK_FAST_FOOD", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "jjQ7dlP5GyCbNavw7rzpty4MQmk9opi6WLaVK", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "whataburger.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 91.46, + "authorized_date": "2024-09-01", + "authorized_datetime": null, + "category": [ + "Food and Drink", + "Restaurants" + ], + "category_id": "13005000", + "check_number": null, + "counterparties": [], + "date": "2024-09-01", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "STOCKX", + "original_description": "STOCKX", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "GENERAL_MERCHANDISE_OTHER_GENERAL_MERCHANDISE", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "76zXjElb4Zt8RL4DAzM9F9Zwj8GW6DCdJnxoy", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 0.88, + "authorized_date": "2024-09-01", + "authorized_datetime": null, + "category": [ + "Travel", + "Parking" + ], + "category_id": "22013000", + "check_number": null, + "counterparties": [], + "date": "2024-09-01", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "LA CITY PARKING METER", + "original_description": "LA CITY PARKING METER", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "TRANSPORTATION_PARKING", + "primary": "TRANSPORTATION" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_TRANSPORTATION.png", + "transaction_code": null, + "transaction_id": "edNwr51XgAcoARVZP68vsdRGzqom9Bur95m49", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 60.07, + "authorized_date": "2024-09-01", + "authorized_datetime": null, + "category": [ + "Service", + "Shipping and Freight" + ], + "category_id": "18058000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "87BE46o0VXpZ1DZMmBBnAe7q2wAKbn3kZJZq2", + "logo_url": "https://plaid-merchant-logos.plaid.com/fedex_365.png", + "name": "FedEx", + "phone_number": null, + "type": "merchant", + "website": "fedex.com" + } + ], + "date": "2024-09-02", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": "TN", + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/fedex_365.png", + "merchant_entity_id": "87BE46o0VXpZ1DZMmBBnAe7q2wAKbn3kZJZq2", + "merchant_name": "FedEx", + "name": "FedEx", + "original_description": "FEDEX 012345678 012-0123456 TN", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "GENERAL_SERVICES_POSTAGE_AND_SHIPPING", + "primary": "GENERAL_SERVICES" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_SERVICES.png", + "transaction_code": null, + "transaction_id": "QEbZN5mMrxTnJ4XRxba9s9paZDyVQGCwm7D5Q", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "fedex.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 11.29, + "authorized_date": "2024-09-02", + "authorized_datetime": null, + "category": [ + "Food and Drink", + "Restaurants", + "Coffee Shop" + ], + "category_id": "13005043", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "p64nrAXvN7r7mjrdp0qNKnB137Da6BWbbrEwz", + "logo_url": "https://plaid-merchant-logos.plaid.com/dunkin_donuts_305.png", + "name": "Dunkin'", + "phone_number": null, + "type": "merchant", + "website": "dunkindonuts.com" + } + ], + "date": "2024-09-02", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": "012345" + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/dunkin_donuts_305.png", + "merchant_entity_id": "p64nrAXvN7r7mjrdp0qNKnB137Da6BWbbrEwz", + "merchant_name": "Dunkin'", + "name": "Dunkin' Donuts", + "original_description": "DUNKIN #012345 Q01", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "FOOD_AND_DRINK_COFFEE", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "ZvlBL5eMPQtnXDV6QrR9sRex8pZayMceqXG66", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "dunkindonuts.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 14.87, + "authorized_date": "2024-09-02", + "authorized_datetime": null, + "category": [ + "Shops", + "Supermarkets and Groceries" + ], + "category_id": "19047000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "BqXqkAQ09j25byDmZje4XgRZwj6v96XzMrkgV", + "logo_url": "https://plaid-merchant-logos.plaid.com/fred_meyer_397.png", + "name": "Fred Meyer", + "phone_number": null, + "type": "merchant", + "website": "fredmeyer.com" + } + ], + "date": "2024-09-02", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/fred_meyer_397.png", + "merchant_entity_id": "BqXqkAQ09j25byDmZje4XgRZwj6v96XzMrkgV", + "merchant_name": "Fred Meyer", + "name": "Fred Meyer", + "original_description": "FRED MEYER 0123", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "GENERAL_MERCHANDISE_SUPERSTORES", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "MpWPx5o4yrcpZvwQrdbMuwXJg8Eze3fL6P1Jo", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "fredmeyer.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 47.27, + "authorized_date": "2024-09-02", + "authorized_datetime": null, + "category": [ + "Travel", + "Car and Truck Rentals" + ], + "category_id": "22005000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "5QWXY2baaa5WjMr6pov2y079oOv4pWwq34nwB", + "logo_url": "https://plaid-merchant-logos.plaid.com/uhaul_1057.png", + "name": "U-Haul", + "phone_number": null, + "type": "merchant", + "website": "uhaul.com" + } + ], + "date": "2024-09-05", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/uhaul_1057.png", + "merchant_entity_id": "5QWXY2baaa5WjMr6pov2y079oOv4pWwq34nwB", + "merchant_name": "U-Haul", + "name": "U-Haul", + "original_description": "U-HAUL MOVING \u0026 STORAGE O", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "GENERAL_SERVICES_POSTAGE_AND_SHIPPING", + "primary": "GENERAL_SERVICES" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_SERVICES.png", + "transaction_code": null, + "transaction_id": "1bXWx1mVzNcQvyzEo34JTXVmegwx94tpjer8J", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "uhaul.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 11.24, + "authorized_date": "2024-09-02", + "authorized_datetime": null, + "category": [ + "Shops", + "Music, Video and DVD" + ], + "category_id": "19036000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "KW8b0J0kX53kBAnYRV5VVnbb3WWpb17VBDra2", + "logo_url": "https://plaid-counterparty-logos.plaid.com/roku_91.png", + "name": "Roku", + "phone_number": null, + "type": "marketplace", + "website": "roku.com" + } + ], + "date": "2024-09-05", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": "Roku", + "name": "Fandango", + "original_description": "ROKU FOR FANDANGONOW", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "MEDIUM", + "detailed": "ENTERTAINMENT_TV_AND_MOVIES", + "primary": "ENTERTAINMENT" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_ENTERTAINMENT.png", + "transaction_code": null, + "transaction_id": "LLEP35oamKfLwWGzKa8mCk6Apgx1W7ukjpEXb", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 10.76, + "authorized_date": "2024-09-02", + "authorized_datetime": null, + "category": [ + "Food and Drink", + "Restaurants", + "Coffee Shop" + ], + "category_id": "13005043", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "eLeV8rVr65z60oKdd926qoWqwXzNNvyMp4m1Z", + "logo_url": "https://plaid-merchant-logos.plaid.com/peets_738.png", + "name": "Peet's", + "phone_number": null, + "type": "merchant", + "website": "peets.com" + } + ], + "date": "2024-09-07", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": "01234" + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/peets_738.png", + "merchant_entity_id": "eLeV8rVr65z60oKdd926qoWqwXzNNvyMp4m1Z", + "merchant_name": "Peet's", + "name": "Peet's Coffee \u0026 Tea", + "original_description": "PEET'S #01234", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "HIGH", + "detailed": "FOOD_AND_DRINK_COFFEE", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "p1oA739DqKhR4y8Xk1ZWcxJrdLn6oGtpoVzZw", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "peets.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 1.25, + "authorized_date": "2024-09-08", + "authorized_datetime": null, + "category": [ + "Travel", + "Taxi" + ], + "category_id": "22016000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "eyg8o776k0QmNgVpAmaQj4WgzW9Qzo6O51gdd", + "logo_url": "https://plaid-merchant-logos.plaid.com/uber_1060.png", + "name": "Uber", + "phone_number": null, + "type": "merchant", + "website": "uber.com" + } + ], + "date": "2024-09-09", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/uber_1060.png", + "merchant_entity_id": "eyg8o776k0QmNgVpAmaQj4WgzW9Qzo6O51gdd", + "merchant_name": "Uber", + "name": "Uber", + "original_description": "UBER", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "TRANSPORTATION_TAXIS_AND_RIDE_SHARES", + "primary": "TRANSPORTATION" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_TRANSPORTATION.png", + "transaction_code": null, + "transaction_id": "oMpyjB9Dlqhb4v8gkyn6tbzMpZy5G3ioq7bdZ", + "transaction_type": "special", + "unofficial_currency_code": null, + "website": "uber.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 22.46, + "authorized_date": "2024-09-09", + "authorized_datetime": null, + "category": [ + "Shops", + "Digital Purchase" + ], + "category_id": "19019000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "o2b36aaRWwVwoD70pgje1ML938DADoJ2b9LnY", + "logo_url": "https://plaid-merchant-logos.plaid.com/ebay_310.png", + "name": "eBay", + "phone_number": null, + "type": "merchant", + "website": "ebay.com" + } + ], + "date": "2024-09-12", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": "CA", + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/ebay_310.png", + "merchant_entity_id": "o2b36aaRWwVwoD70pgje1ML938DADoJ2b9LnY", + "merchant_name": "eBay", + "name": "eBay 012-0123456", + "original_description": "eBay 012-012-0123 012-0123456 CA", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "GENERAL_MERCHANDISE_ONLINE_MARKETPLACES", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "g4j7B5kXEnCwdLV7NzQPHV59dRBP8WcE8n5xV", + "transaction_type": "digital", + "unofficial_currency_code": null, + "website": "ebay.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 8.13, + "authorized_date": "2024-09-11", + "authorized_datetime": null, + "category": [ + "Shops", + "Computers and Electronics", + "Video Games" + ], + "category_id": "19013001", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "1D6004robEojMNXwKpYgrRY6DrLwzea58AaYE", + "logo_url": "https://plaid-merchant-logos.plaid.com/microsoft_xbox_637.png", + "name": "Microsoft Xbox", + "phone_number": null, + "type": "merchant", + "website": "xbox.com" + } + ], + "date": "2024-09-12", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/microsoft_xbox_637.png", + "merchant_entity_id": "1D6004robEojMNXwKpYgrRY6DrLwzea58AaYE", + "merchant_name": "Microsoft Xbox", + "name": "Xbox Live", + "original_description": "Xbox Live", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "ENTERTAINMENT_VIDEO_GAMES", + "primary": "ENTERTAINMENT" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_ENTERTAINMENT.png", + "transaction_code": null, + "transaction_id": "8lBZ7kqmNMflM6N1rBb8udzkGwyA5MuW3L8ba", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "xbox.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 6.13, + "authorized_date": "2024-09-11", + "authorized_datetime": null, + "category": [ + "Shops", + "Digital Purchase" + ], + "category_id": "19019000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "5ngqyLXKYBknN8OywL79Z1qoWmyE0zKq20nz6", + "logo_url": "https://plaid-merchant-logos.plaid.com/etsy_332.png", + "name": "Etsy", + "phone_number": null, + "type": "merchant", + "website": "etsy.com" + } + ], + "date": "2024-09-12", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/etsy_332.png", + "merchant_entity_id": "5ngqyLXKYBknN8OywL79Z1qoWmyE0zKq20nz6", + "merchant_name": "Etsy", + "name": "Etsy", + "original_description": "Etsy", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "GENERAL_MERCHANDISE_ONLINE_MARKETPLACES", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "EjM3A5vK8mCjLea1GE3mCyom95Prvki4xkmq7", + "transaction_type": "digital", + "unofficial_currency_code": null, + "website": "etsy.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 8.88, + "authorized_date": "2024-09-12", + "authorized_datetime": null, + "category": [ + "Service", + "Shipping and Freight" + ], + "category_id": "18058000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "9Dn92eaeYEjom88122akjmMnore4Ed76Qd5WZ", + "logo_url": "https://plaid-merchant-logos.plaid.com/us_post_office_1059.png", + "name": "U.S. Post Office", + "phone_number": null, + "type": "merchant", + "website": "usps.com" + } + ], + "date": "2024-09-16", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/us_post_office_1059.png", + "merchant_entity_id": "9Dn92eaeYEjom88122akjmMnore4Ed76Qd5WZ", + "merchant_name": "U.S. Post Office", + "name": "U.S. Post Office", + "original_description": "USPS", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "GENERAL_SERVICES_POSTAGE_AND_SHIPPING", + "primary": "GENERAL_SERVICES" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_SERVICES.png", + "transaction_code": null, + "transaction_id": "Wm6kZ5zMajudb4XV6nyafB8VgNb3znC6Z1jkV", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "usps.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 349.76, + "authorized_date": "2024-09-15", + "authorized_datetime": null, + "category": [ + "Service", + "Travel Agents and Tour Operators" + ], + "category_id": "18067000", + "check_number": null, + "counterparties": [], + "date": "2024-09-16", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "Orbitz01234567890123", + "original_description": "Orbitz01234567890123", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "ENTERTAINMENT_SPORTING_EVENTS_AMUSEMENT_PARKS_AND_MUSEUMS", + "primary": "ENTERTAINMENT" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_ENTERTAINMENT.png", + "transaction_code": null, + "transaction_id": "Aa7KgRpVLAhamWlkAvD3s8Dl5KZ7brF9rA5Qk", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 56.7, + "authorized_date": "2024-09-16", + "authorized_datetime": null, + "category": [ + "Shops", + "Discount Stores" + ], + "category_id": "19020000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "mzeb8eNQ1j6OeNQE5YNqbBmEvABYnyROprqgn", + "logo_url": "https://plaid-merchant-logos.plaid.com/five_below_376.png", + "name": "Five Below", + "phone_number": null, + "type": "merchant", + "website": "fivebelow.com" + } + ], + "date": "2024-09-16", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/five_below_376.png", + "merchant_entity_id": "mzeb8eNQ1j6OeNQE5YNqbBmEvABYnyROprqgn", + "merchant_name": "Five Below", + "name": "Five Below", + "original_description": "FIVE BELOW 012", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "GENERAL_MERCHANDISE_DISCOUNT_STORES", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "GeLdq5ozW9Te8Jd4MGvPT84MZDwPW7F6MPo5N", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "fivebelow.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 37.86, + "authorized_date": "2024-09-13", + "authorized_datetime": null, + "category": [ + "Food and Drink", + "Restaurants" + ], + "category_id": "13005000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "rkV1j7R89J27wa1dpjneMge542DA1OqrzMjYJ", + "logo_url": "https://plaid-merchant-logos.plaid.com/outback_steakhouse_710.png", + "name": "Outback Steakhouse", + "phone_number": null, + "type": "merchant", + "website": "outback.com" + } + ], + "date": "2024-09-17", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/outback_steakhouse_710.png", + "merchant_entity_id": "rkV1j7R89J27wa1dpjneMge542DA1OqrzMjYJ", + "merchant_name": "Outback Steakhouse", + "name": "Outback Steakhouse", + "original_description": "OUTBACK 0123", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "FOOD_AND_DRINK_RESTAURANT", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "nZLAPzwDylibQdva8jeDtG1eMJoEWbtAlWQjP", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "outback.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 22.69, + "authorized_date": "2024-09-16", + "authorized_datetime": null, + "category": [ + "Shops" + ], + "category_id": "19000000", + "check_number": null, + "counterparties": [], + "date": "2024-09-17", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "ORDER.WISH.COM", + "original_description": "ORDER.WISH.COM", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "GENERAL_MERCHANDISE_OTHER_GENERAL_MERCHANDISE", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "bBdylJgXLku1ryVNQ9XehxReg34KG7tmbZ7XG", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 41.12, + "authorized_date": "2024-09-17", + "authorized_datetime": null, + "category": [ + "Service", + "Food and Beverage" + ], + "category_id": "18021000", + "check_number": null, + "counterparties": [], + "date": "2024-09-17", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "SHIPT*ORDER", + "original_description": "SHIPT*ORDER", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "GENERAL_MERCHANDISE_OTHER_GENERAL_MERCHANDISE", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "mQ1ANkbDmRfb4yvJ6npMt6LmBj1NyEcgydXDL", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 1.36, + "authorized_date": "2024-09-17", + "authorized_datetime": null, + "category": [ + "Travel", + "Gas Stations" + ], + "category_id": "22009000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "8y7851JXryBnkOWOjW163yqzAB01oa8k6e1g9", + "logo_url": "https://plaid-merchant-logos.plaid.com/shell_891.png", + "name": "Shell", + "phone_number": null, + "type": "merchant", + "website": "shell.com" + } + ], + "date": "2024-09-17", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/shell_891.png", + "merchant_entity_id": "8y7851JXryBnkOWOjW163yqzAB01oa8k6e1g9", + "merchant_name": "Shell", + "name": "Shell", + "original_description": "SHELL OIL 012345678QPS", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "TRANSPORTATION_GAS", + "primary": "TRANSPORTATION" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_TRANSPORTATION.png", + "transaction_code": null, + "transaction_id": "yGmrge5K4NFpDQweBL4yuPM35rxdXZi46Xwz4", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "shell.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 88.5, + "authorized_date": "2024-09-17", + "authorized_datetime": null, + "category": [ + "Recreation", + "Gyms and Fitness Centers" + ], + "category_id": "17018000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "Q9O00aLQbjp2ZVJkZnmywoaXk7Xp88eWMnwep", + "logo_url": "https://plaid-merchant-logos.plaid.com/ymca_1143.png", + "name": "YMCA", + "phone_number": null, + "type": "merchant", + "website": "ymca.org" + } + ], + "date": "2024-09-17", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/ymca_1143.png", + "merchant_entity_id": "Q9O00aLQbjp2ZVJkZnmywoaXk7Xp88eWMnwep", + "merchant_name": "YMCA", + "name": "YMCA", + "original_description": "YMCA", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "GOVERNMENT_AND_NON_PROFIT_DONATIONS", + "primary": "GOVERNMENT_AND_NON_PROFIT" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GOVERNMENT_AND_NON_PROFIT.png", + "transaction_code": null, + "transaction_id": "9q36eAK7P1iqGMPbA34yUAZV7NmLojI4xQgpq", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "ymca.org" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 7.5, + "authorized_date": "2024-09-17", + "authorized_datetime": null, + "category": [ + "Travel", + "Public Transportation Services" + ], + "category_id": "22014000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "LOW", + "entity_id": null, + "logo_url": null, + "name": "Transit", + "phone_number": null, + "type": "merchant", + "website": null + } + ], + "date": "2024-09-17", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": "Transit", + "name": "SOUND TRANSIT - SO QPS", + "original_description": "SOUND TRANSIT - SO QPS", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "ENTERTAINMENT_SPORTING_EVENTS_AMUSEMENT_PARKS_AND_MUSEUMS", + "primary": "ENTERTAINMENT" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_ENTERTAINMENT.png", + "transaction_code": null, + "transaction_id": "vEGlLPADxdT7rVvMKoxpsbozq3NxkGiq6k1Mn", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 30.49, + "authorized_date": "2024-09-14", + "authorized_datetime": null, + "category": [ + "Shops", + "Bicycles" + ], + "category_id": "19007000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "4pK9RJnqY7N078jeKrn6Zzraq9QDLbQn9kgbd", + "logo_url": null, + "name": "Citibank", + "phone_number": null, + "type": "financial_institution", + "website": "citi.com" + } + ], + "date": "2024-09-14", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "CITI BIKE NYC", + "original_description": "CITI BIKE NYC", + "payment_channel": "other", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "GENERAL_MERCHANDISE_SPORTING_GOODS", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "RWmGP5oMzdtreRojdm9zi5wEvmqNVpHapbAgG", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 84.44, + "authorized_date": "2024-09-14", + "authorized_datetime": null, + "category": [ + "Shops", + "Beauty Products" + ], + "category_id": "19006000", + "check_number": null, + "counterparties": [], + "date": "2024-09-15", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "RODANFI*LDS 0123456789", + "original_description": "RODANFI*LDS 0123456789", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "PERSONAL_CARE_HAIR_AND_BEAUTY", + "primary": "PERSONAL_CARE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_PERSONAL_CARE.png", + "transaction_code": null, + "transaction_id": "6RrvP8d6aQt8RdaEAwWkFbyD6lRWjLi8DXeBG", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 8.82, + "authorized_date": "2024-09-15", + "authorized_datetime": null, + "category": [ + "Food and Drink", + "Restaurants" + ], + "category_id": "13005000", + "check_number": null, + "counterparties": [], + "date": "2024-09-15", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "ESPN Plus", + "original_description": "ESPN Plus", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "ENTERTAINMENT_TV_AND_MOVIES", + "primary": "ENTERTAINMENT" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_ENTERTAINMENT.png", + "transaction_code": null, + "transaction_id": "XyXrM5BG47fmPpGD7694U6qPyJX8decbKnLm9", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 4.69, + "authorized_date": "2024-09-17", + "authorized_datetime": null, + "category": [ + "Travel", + "Parking" + ], + "category_id": "22013000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "Aj7pLjAWWKKBmLzN1NNjaZjNppyjnoXw78qwz", + "logo_url": "https://plaid-merchant-logos.plaid.com/nyc_dot_parking_meters_692.png", + "name": "NYC DOT - Parking Meters", + "phone_number": null, + "type": "merchant", + "website": "nyc.gov/html/dot/html/motorist/meterpark.shtml" + } + ], + "date": "2024-09-18", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/nyc_dot_parking_meters_692.png", + "merchant_entity_id": "Aj7pLjAWWKKBmLzN1NNjaZjNppyjnoXw78qwz", + "merchant_name": "NYC DOT - Parking Meters", + "name": "NYCDOT PARKING METERS", + "original_description": "NYCDOT PARKING METERS", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "TRANSPORTATION_PARKING", + "primary": "TRANSPORTATION" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_TRANSPORTATION.png", + "transaction_code": null, + "transaction_id": "DPZBW5VqgbFP764zbpqmSvjWJDPg3bt3WaJ5Z", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "nyc.gov/html/dot/html/motorist/meterpark.shtml" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 1.71, + "authorized_date": "2024-09-18", + "authorized_datetime": null, + "category": [ + "Service", + "Food and Beverage" + ], + "category_id": "18021000", + "check_number": null, + "counterparties": [], + "date": "2024-09-18", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "*PRETAMANGER012", + "original_description": "LEVELUP*PRETAMANGER012", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": "Braintree", + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "FOOD_AND_DRINK_OTHER_FOOD_AND_DRINK", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "VbRqQ5rLdPcn6RqVP4QdsXJG18VQ3Et9gPEBl", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 98.47, + "authorized_date": "2024-09-18", + "authorized_datetime": null, + "category": [ + "Service", + "Food and Beverage" + ], + "category_id": "18021000", + "check_number": null, + "counterparties": [], + "date": "2024-09-18", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": "NY", + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "MEALPAL 0123456789", + "original_description": "MEALPAL 0123456789 NY", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "GENERAL_MERCHANDISE_OTHER_GENERAL_MERCHANDISE", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "wWnqpjJldatQbrvJydjETKPDB3J4E9cPZombK", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 11.24, + "authorized_date": "2024-09-18", + "authorized_datetime": null, + "category": [ + "Shops", + "Computers and Electronics" + ], + "category_id": "19013000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "nqgNrWMbOpJkJD8Xa8RAvVn8NqaEzOjZXggbZ", + "logo_url": "https://plaid-merchant-logos.plaid.com/adobe_17.png", + "name": "Adobe", + "phone_number": null, + "type": "merchant", + "website": "adobe.com" + } + ], + "date": "2024-09-18", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/adobe_17.png", + "merchant_entity_id": "nqgNrWMbOpJkJD8Xa8RAvVn8NqaEzOjZXggbZ", + "merchant_name": "Adobe", + "name": "ADOBE *ACROPRO SUBS", + "original_description": "ADOBE *ACROPRO SUBS", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "GENERAL_SERVICES_OTHER_GENERAL_SERVICES", + "primary": "GENERAL_SERVICES" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_SERVICES.png", + "transaction_code": null, + "transaction_id": "5vK5Ng6bdetkX4dDA6NbSqZK7QDoXMu5K781L", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "adobe.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 20.16, + "authorized_date": "2024-09-17", + "authorized_datetime": null, + "category": [ + "Service", + "Subscription" + ], + "category_id": "18061000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "rybeAOyg6ZE9z8LdD852ObK3kQ8RRaM0LyDrg", + "logo_url": "https://plaid-merchant-logos.plaid.com/siriusxm_906.png", + "name": "SiriusXM", + "phone_number": null, + "type": "merchant", + "website": "siriusxm.com" + } + ], + "date": "2024-09-21", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/siriusxm_906.png", + "merchant_entity_id": "rybeAOyg6ZE9z8LdD852ObK3kQ8RRaM0LyDrg", + "merchant_name": "SiriusXM", + "name": "SXM*SIRIUSXM.COM/ACCT", + "original_description": "SXM*SIRIUSXM.COM/ACCT", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "ENTERTAINMENT_MUSIC_AND_AUDIO", + "primary": "ENTERTAINMENT" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_ENTERTAINMENT.png", + "transaction_code": null, + "transaction_id": "JMgVz59xnlhM1pyKljkeUAXZgLJDw6IB6gkDW", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "siriusxm.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 35, + "authorized_date": "2024-09-19", + "authorized_datetime": null, + "category": [ + "Shops", + "Clothing and Accessories", + "Men's Store" + ], + "category_id": "19012004", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "qa0vND99B9Eg9MJA5y7KyeOKq4LMnqWX9vwy4", + "logo_url": "https://plaid-merchant-logos.plaid.com/mens_wearhouse_627.png", + "name": "Mens Wearhouse", + "phone_number": null, + "type": "merchant", + "website": "menswearhouse.com" + } + ], + "date": "2024-09-21", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": "0123" + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/mens_wearhouse_627.png", + "merchant_entity_id": "qa0vND99B9Eg9MJA5y7KyeOKq4LMnqWX9vwy4", + "merchant_name": "Mens Wearhouse", + "name": "Men's Wearhouse", + "original_description": "THE MENS WEARHOUSE #0123", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "HIGH", + "detailed": "GENERAL_MERCHANDISE_CLOTHING_AND_ACCESSORIES", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "k7ZAaqkDn9IeLWvPMD3QTQmwjAae61sL6dol4", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "menswearhouse.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 28.11, + "authorized_date": "2024-09-19", + "authorized_datetime": null, + "category": [ + "Shops", + "Food and Beverage Store" + ], + "category_id": "19025000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "LOW", + "entity_id": null, + "logo_url": null, + "name": "Liquors And Wines", + "phone_number": null, + "type": "merchant", + "website": null + } + ], + "date": "2024-09-21", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": "Liquors And Wines", + "name": "DANIEL LIQUORS AND WINES", + "original_description": "DANIEL LIQUORS AND WINES", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "FOOD_AND_DRINK_BEER_WINE_AND_LIQUOR", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "leMA4KdDbvT9Rj8aDw3ASlqwZmdvGDipodRVD", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 6.13, + "authorized_date": "2024-09-19", + "authorized_datetime": null, + "category": [ + "Shops", + "Pharmacies" + ], + "category_id": "19043000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "qkd60geNmo8qMV0wAXbL3yYbqdnoY4ezwbe1R", + "logo_url": "https://plaid-merchant-logos.plaid.com/cvs_264.png", + "name": "CVS", + "phone_number": null, + "type": "merchant", + "website": "cvs.com" + } + ], + "date": "2024-09-21", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/cvs_264.png", + "merchant_entity_id": "qkd60geNmo8qMV0wAXbL3yYbqdnoY4ezwbe1R", + "merchant_name": "CVS", + "name": "CVS", + "original_description": "CVS", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "MEDICAL_PHARMACIES_AND_SUPPLEMENTS", + "primary": "MEDICAL" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_MEDICAL.png", + "transaction_code": null, + "transaction_id": "qLgAex9DKrfNjEv5oDMaFebVapMmWGhgr7Rzp", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "cvs.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 7.58, + "authorized_date": "2024-09-19", + "authorized_datetime": null, + "category": [ + "Shops", + "Discount Stores" + ], + "category_id": "19020000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "rMKJ1dN2kL4NQarZ3oQMW9j14YpL845dDQo7R", + "logo_url": "https://plaid-merchant-logos.plaid.com/dollar_tree_289.png", + "name": "Dollar Tree", + "phone_number": null, + "type": "merchant", + "website": "dollartree.com" + } + ], + "date": "2024-09-19", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/dollar_tree_289.png", + "merchant_entity_id": "rMKJ1dN2kL4NQarZ3oQMW9j14YpL845dDQo7R", + "merchant_name": "Dollar Tree", + "name": "Dollar Tree", + "original_description": "Dollar Tree", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "GENERAL_MERCHANDISE_DISCOUNT_STORES", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "K18PB5Zdbqh17BVgqbRQhyoaA5z1deiRpA1xw", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "dollartree.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 7.1, + "authorized_date": "2024-09-19", + "authorized_datetime": null, + "category": [ + "Recreation", + "Arts and Entertainment" + ], + "category_id": "17001000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "OqwKVgwpywREYeqAmLYabAD7Rbjegd98rmvo1", + "logo_url": "https://plaid-merchant-logos.plaid.com/stubhub_971.png", + "name": "Stubhub", + "phone_number": null, + "type": "merchant", + "website": "stubhub.com" + } + ], + "date": "2024-09-19", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": "CA", + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/stubhub_971.png", + "merchant_entity_id": "OqwKVgwpywREYeqAmLYabAD7Rbjegd98rmvo1", + "merchant_name": "Stubhub", + "name": "STUBHUB, INC.", + "original_description": "STUBHUB, INC. 012-012-0123 CA", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "HIGH", + "detailed": "ENTERTAINMENT_SPORTING_EVENTS_AMUSEMENT_PARKS_AND_MUSEUMS", + "primary": "ENTERTAINMENT" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_ENTERTAINMENT.png", + "transaction_code": null, + "transaction_id": "rp8wQd9Drzc7XxVRZbBNsbxP5JMjG9i7J61vZ", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "stubhub.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 13.67, + "authorized_date": "2024-09-19", + "authorized_datetime": null, + "category": [ + "Food and Drink", + "Restaurants", + "Fast Food" + ], + "category_id": "13005032", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "Mjqdpqn3ZgOdrAYpkAKMkArEON7avQ8jV9BX1", + "logo_url": "https://plaid-merchant-logos.plaid.com/chipotle_mexican_grill_202.png", + "name": "Chipotle Mexican Grill", + "phone_number": null, + "type": "merchant", + "website": "chipotle.com" + } + ], + "date": "2024-09-22", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/chipotle_mexican_grill_202.png", + "merchant_entity_id": "Mjqdpqn3ZgOdrAYpkAKMkArEON7avQ8jV9BX1", + "merchant_name": "Chipotle Mexican Grill", + "name": "Chipotle Mexican Grill", + "original_description": "Chipotle", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "FOOD_AND_DRINK_FAST_FOOD", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "zkyz8Q9rNPCXgWQeyj9pIeqPWlmJpdhlNLQGR", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "chipotle.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 9.24, + "authorized_date": "2024-09-19", + "authorized_datetime": null, + "category": [ + "Food and Drink", + "Restaurants" + ], + "category_id": "13005000", + "check_number": null, + "counterparties": [], + "date": "2024-09-22", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "Wetzel's Pretzels", + "original_description": "WETZEL'S PRETZELS", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "FOOD_AND_DRINK_OTHER_FOOD_AND_DRINK", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "B4ek869ZpGC41mDnjvVxuBdXVLjPRxC4M8gGr", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 55.67, + "authorized_date": "2024-09-19", + "authorized_datetime": null, + "category": [ + "Shops", + "Warehouses and Wholesale Stores" + ], + "category_id": "19051000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "KAE0nWNpERLZQyM6AMyDmNXjkQn76jKQBmRqA", + "logo_url": "https://plaid-merchant-logos.plaid.com/sams_club_858.png", + "name": "Sam's Club", + "phone_number": null, + "type": "merchant", + "website": "samsclub.com" + } + ], + "date": "2024-09-24", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/sams_club_858.png", + "merchant_entity_id": "KAE0nWNpERLZQyM6AMyDmNXjkQn76jKQBmRqA", + "merchant_name": "Sam's Club", + "name": "Sam's Club", + "original_description": "Sams Club", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "GENERAL_MERCHANDISE_SUPERSTORES", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "3ylJapdb3jf8nK3A1z7JF3jlmQa5LBhZlnEaB", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "samsclub.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 22.94, + "authorized_date": "2024-09-23", + "authorized_datetime": null, + "category": [ + "Travel", + "Taxi" + ], + "category_id": "22016000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "eyg8o776k0QmNgVpAmaQj4WgzW9Qzo6O51gdd", + "logo_url": "https://plaid-merchant-logos.plaid.com/uber_1060.png", + "name": "Uber", + "phone_number": null, + "type": "merchant", + "website": "uber.com" + } + ], + "date": "2024-09-24", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": "CA", + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/uber_1060.png", + "merchant_entity_id": "eyg8o776k0QmNgVpAmaQj4WgzW9Qzo6O51gdd", + "merchant_name": "Uber", + "name": "Uber", + "original_description": "UBER TECHNOLOGIES INC 012-012-0123 CA", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "TRANSPORTATION_TAXIS_AND_RIDE_SHARES", + "primary": "TRANSPORTATION" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_TRANSPORTATION.png", + "transaction_code": null, + "transaction_id": "xAbKo75qa4um5aZ8zndpUMd7gW5wbxU64VeER", + "transaction_type": "special", + "unofficial_currency_code": null, + "website": "uber.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 2.36, + "authorized_date": "2024-09-23", + "authorized_datetime": null, + "category": [ + "Food and Drink" + ], + "category_id": "13000000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "LOW", + "entity_id": null, + "logo_url": null, + "name": "Snack Soda Vending", + "phone_number": null, + "type": "merchant", + "website": null + } + ], + "date": "2024-09-24", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": "Snack Soda Vending", + "name": "USA*SNACK SODA VENDING", + "original_description": "USA*SNACK SODA VENDING", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "FOOD_AND_DRINK_VENDING_MACHINES", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "dx4ZK58XoWCvbXVZlNgaC9Rl5wkLExCJEQR3e", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 9.7, + "authorized_date": "2024-09-23", + "authorized_datetime": null, + "category": [ + "Food and Drink", + "Restaurants", + "Fast Food" + ], + "category_id": "13005032", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "NXAJN1bDAZYjpDKY7Wr5JjzVmV7nnVY171jze", + "logo_url": "https://plaid-merchant-logos.plaid.com/shake_shack_887.png", + "name": "Shake Shack", + "phone_number": null, + "type": "merchant", + "website": "shakeshack.com" + } + ], + "date": "2024-09-24", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/shake_shack_887.png", + "merchant_entity_id": "NXAJN1bDAZYjpDKY7Wr5JjzVmV7nnVY171jze", + "merchant_name": "Shake Shack", + "name": "Shake Shack", + "original_description": "Shake Shack", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "FOOD_AND_DRINK_FAST_FOOD", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "azx7A59X1gc5orV6dPw3soqAjJ3zZysZ5QD9Q", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "shakeshack.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 12.74, + "authorized_date": "2024-09-22", + "authorized_datetime": null, + "category": [ + "Shops", + "Discount Stores" + ], + "category_id": "19020000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "YvLB9oWw9XydNLVOdmEYVe53JgagmQ84rKnEj", + "logo_url": "https://plaid-merchant-logos.plaid.com/family_dollar_348.png", + "name": "Family Dollar", + "phone_number": null, + "type": "merchant", + "website": "familydollar.com" + } + ], + "date": "2024-09-23", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/family_dollar_348.png", + "merchant_entity_id": "YvLB9oWw9XydNLVOdmEYVe53JgagmQ84rKnEj", + "merchant_name": "Family Dollar", + "name": "Family Dollar", + "original_description": "Family Dollar", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "GENERAL_MERCHANDISE_DISCOUNT_STORES", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "49qZ4oGbx7T873XDoebnFmlbdW4eDaFJbALxM", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "familydollar.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 79.47, + "authorized_date": "2024-09-23", + "authorized_datetime": null, + "category": [ + "Shops", + "Supermarkets and Groceries" + ], + "category_id": "19047000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "QVN97WoJyo9oDd309WYpXBkz47WBA0rew6rRw", + "logo_url": "https://plaid-merchant-logos.plaid.com/stop_shop_968.png", + "name": "Stop \u0026 Shop", + "phone_number": null, + "type": "merchant", + "website": "stopandshop.com" + } + ], + "date": "2024-09-23", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/stop_shop_968.png", + "merchant_entity_id": "QVN97WoJyo9oDd309WYpXBkz47WBA0rew6rRw", + "merchant_name": "Stop \u0026 Shop", + "name": "Stop \u0026 Shop", + "original_description": "STOP \u0026 SHOP 0123", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "FOOD_AND_DRINK_GROCERIES", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "NokPd5gNlzfoV1byzGkls7JMP5G3Q9sy65Q1Q", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "stopandshop.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 137.1, + "authorized_date": "2024-09-23", + "authorized_datetime": null, + "category": [ + "Shops", + "Supermarkets and Groceries" + ], + "category_id": "19047000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "BzJndQpm8ERB0yK25EM6n48raQaNKLK8Vkw5A", + "logo_url": "https://plaid-merchant-logos.plaid.com/vons_1093.png", + "name": "Vons", + "phone_number": null, + "type": "merchant", + "website": "vons.com" + } + ], + "date": "2024-09-26", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/vons_1093.png", + "merchant_entity_id": "BzJndQpm8ERB0yK25EM6n48raQaNKLK8Vkw5A", + "merchant_name": "Vons", + "name": "Vons", + "original_description": "VONS Store 0123", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "FOOD_AND_DRINK_GROCERIES", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "P8n745oWK3cnXKyW31x9slDB75xZEeio6WA4y", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "vons.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 8.43, + "authorized_date": "2024-09-26", + "authorized_datetime": null, + "category": [ + "Shops", + "Music, Video and DVD" + ], + "category_id": "19036000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "r7MA910JJELKpYekdAz6n34373RQw2a3Nn52E", + "logo_url": "https://plaid-merchant-logos.plaid.com/redbox_816.png", + "name": "Redbox", + "phone_number": null, + "type": "merchant", + "website": "redbox.com" + } + ], + "date": "2024-09-26", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/redbox_816.png", + "merchant_entity_id": "r7MA910JJELKpYekdAz6n34373RQw2a3Nn52E", + "merchant_name": "Redbox", + "name": "Redbox", + "original_description": "REDBOX *DVD RENTAL", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "ENTERTAINMENT_TV_AND_MOVIES", + "primary": "ENTERTAINMENT" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_ENTERTAINMENT.png", + "transaction_code": null, + "transaction_id": "jjQ7dlP5GyCbNavw7rzpty4MQmk9opi6WLa3K", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "redbox.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 8.99, + "authorized_date": "2024-09-23", + "authorized_datetime": null, + "category": [ + "Service", + "Subscription" + ], + "category_id": "18061000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "ZzO1V6gJ8KbO926KrNYONbQqobXpgjWnA28nR", + "logo_url": "https://plaid-merchant-logos.plaid.com/hulu_504.png", + "name": "Hulu", + "phone_number": null, + "type": "merchant", + "website": "hulu.com" + } + ], + "date": "2024-09-25", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/hulu_504.png", + "merchant_entity_id": "ZzO1V6gJ8KbO926KrNYONbQqobXpgjWnA28nR", + "merchant_name": "Hulu", + "name": "HLU*Hulu 012345678901-U HULU.COM/BILLCA", + "original_description": "HLU*Hulu 012345678901-U HULU.COM/BILLCA", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "ENTERTAINMENT_TV_AND_MOVIES", + "primary": "ENTERTAINMENT" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_ENTERTAINMENT.png", + "transaction_code": null, + "transaction_id": "76zXjElb4Zt8RL4DAzM9F9Zwj8GW6DCdJnxGy", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "hulu.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 32.51, + "authorized_date": "2024-09-25", + "authorized_datetime": null, + "category": [ + "Shops", + "Supermarkets and Groceries" + ], + "category_id": "19047000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "LOW", + "entity_id": null, + "logo_url": null, + "name": "T\u0026t Supermarket", + "phone_number": null, + "type": "merchant", + "website": null + } + ], + "date": "2024-09-25", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": "012" + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": "T\u0026t Supermarket", + "name": "T\u0026T SUPERMARKET #012", + "original_description": "T\u0026T SUPERMARKET #012", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "FOOD_AND_DRINK_GROCERIES", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "edNwr51XgAcoARVZP68vsdRGzqom9Bur95mw9", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 189.49, + "authorized_date": "2024-09-25", + "authorized_datetime": null, + "category": [ + "Shops", + "Clothing and Accessories", + "Women's Store" + ], + "category_id": "19012001", + "check_number": null, + "counterparties": [], + "date": "2024-09-25", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "WWW.MOTHERHOOD", + "original_description": "WWW.MOTHERHOOD", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "GENERAL_MERCHANDISE_OTHER_GENERAL_MERCHANDISE", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "QEbZN5mMrxTnJ4XRxba9s9paZDyVQGCwm7DdQ", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 22.01, + "authorized_date": "2024-09-23", + "authorized_datetime": null, + "category": [ + "Shops", + "Supermarkets and Groceries" + ], + "category_id": "19047000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "O5W5j4dN9OR3E6ypQmjdkWZZRoXEzVMz2ByWM", + "logo_url": "https://plaid-merchant-logos.plaid.com/walmart_1100.png", + "name": "Walmart", + "phone_number": null, + "type": "merchant", + "website": "walmart.com" + } + ], + "date": "2024-09-28", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": "1500 E Wrangler Blvd", + "city": "Seminole", + "country": null, + "lat": 35.248352, + "lon": -96.654625, + "postal_code": "74868", + "region": "OK", + "store_number": "0123" + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/walmart_1100.png", + "merchant_entity_id": "O5W5j4dN9OR3E6ypQmjdkWZZRoXEzVMz2ByWM", + "merchant_name": "Walmart", + "name": "Walmart", + "original_description": "WAL-MART #0123 #...0123", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "GENERAL_MERCHANDISE_SUPERSTORES", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "ZvlBL5eMPQtnXDV6QrR9sRex8pZayMceqXGj6", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "walmart.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 575.66, + "authorized_date": "2024-09-26", + "authorized_datetime": null, + "category": [ + "Food and Drink", + "Restaurants" + ], + "category_id": "13005000", + "check_number": null, + "counterparties": [], + "date": "2024-09-28", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "STOCKX", + "original_description": "STOCKX", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "GENERAL_MERCHANDISE_OTHER_GENERAL_MERCHANDISE", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "MpWPx5o4yrcpZvwQrdbMuwXJg8Eze3fL6P1oo", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 29.27, + "authorized_date": "2024-09-26", + "authorized_datetime": null, + "category": [ + "Service", + "Food and Beverage" + ], + "category_id": "18021000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "YNRJg5o2djJLv52nBA1Yn1KpL858egYVo4dpm", + "logo_url": "https://plaid-counterparty-logos.plaid.com/doordash_1.png", + "name": "DoorDash", + "phone_number": null, + "type": "marketplace", + "website": "doordash.com" + } + ], + "date": "2024-09-28", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": "DoorDash", + "name": "Wingstop", + "original_description": "DOORDASH*WINGSTOP", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "MEDIUM", + "detailed": "FOOD_AND_DRINK_RESTAURANT", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "1bXWx1mVzNcQvyzEo34JTXVmegwx94tpjerwJ", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 9.38, + "authorized_date": "2024-09-26", + "authorized_datetime": null, + "category": [ + "Food and Drink" + ], + "category_id": "13000000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "JNj5BdywAEY9QaQbjmzL0NgKozWYbe0e5oQA4", + "logo_url": "https://plaid-merchant-logos.plaid.com/smoothie_king_920.png", + "name": "Smoothie King", + "phone_number": null, + "type": "merchant", + "website": "smoothieking.com" + } + ], + "date": "2024-09-28", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/smoothie_king_920.png", + "merchant_entity_id": "JNj5BdywAEY9QaQbjmzL0NgKozWYbe0e5oQA4", + "merchant_name": "Smoothie King", + "name": "Smoothie King", + "original_description": "Smoothie King", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "FOOD_AND_DRINK_OTHER_FOOD_AND_DRINK", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "LLEP35oamKfLwWGzKa8mCk6Apgx1W7ukjpEJb", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "smoothieking.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 17.8, + "authorized_date": "2024-09-26", + "authorized_datetime": null, + "category": [ + "Shops", + "Pharmacies" + ], + "category_id": "19043000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "qJ0kRK8E9vpQKom2wJJmm0Oe9bBRJEg5vAqqY", + "logo_url": "https://plaid-merchant-logos.plaid.com/rite_aid_832.png", + "name": "Rite Aid", + "phone_number": null, + "type": "merchant", + "website": "riteaid.com" + } + ], + "date": "2024-09-28", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/rite_aid_832.png", + "merchant_entity_id": "qJ0kRK8E9vpQKom2wJJmm0Oe9bBRJEg5vAqqY", + "merchant_name": "Rite Aid", + "name": "Rite Aid", + "original_description": "RITE AID STORE - 01234", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "MEDICAL_PHARMACIES_AND_SUPPLEMENTS", + "primary": "MEDICAL" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_MEDICAL.png", + "transaction_code": null, + "transaction_id": "p1oA739DqKhR4y8Xk1ZWcxJrdLn6oGtpoVzxw", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "riteaid.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 41.21, + "authorized_date": "2024-09-26", + "authorized_datetime": null, + "category": [ + "Shops", + "Warehouses and Wholesale Stores" + ], + "category_id": "19051000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "pBowAoZJMM9DKR37jvNmzM4yWBBXyMzV2rM3A", + "logo_url": "https://plaid-merchant-logos.plaid.com/costco_235.png", + "name": "Costco", + "phone_number": null, + "type": "merchant", + "website": "costco.com" + } + ], + "date": "2024-09-28", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": "0123" + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/costco_235.png", + "merchant_entity_id": "pBowAoZJMM9DKR37jvNmzM4yWBBXyMzV2rM3A", + "merchant_name": "Costco", + "name": "Costco", + "original_description": "COSTCO WHSE #0123", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "GENERAL_MERCHANDISE_SUPERSTORES", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "oMpyjB9Dlqhb4v8gkyn6tbzMpZy5G3ioq7b3Z", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "costco.com" + } + ], + "has_more": true, + "modified": [], + "next_cursor": "CAESJW9NcHlqQjlEbHFoYjR2OGdreW42dGJ6TXBaeTVHM2lvcTdiM1oiDAian63BBhDo2pCgAyoMCJqfrcEGEOjakKAD", + "removed": [], + "request_id": "qoilVdwWGHpNGnN", + "transactions_update_status": "HISTORICAL_UPDATE_COMPLETE" + } + recorded_at: Mon, 19 May 2025 15:35:02 GMT +- request: + method: post + uri: https://sandbox.plaid.com/transactions/sync + body: + encoding: UTF-8 + string: '{"access_token":"access-sandbox-d531d3c9-8520-43ca-9e58-5b70b79fd1d4","cursor":"CAESJW9NcHlqQjlEbHFoYjR2OGdreW42dGJ6TXBaeTVHM2lvcTdiM1oiDAian63BBhDo2pCgAyoMCJqfrcEGEOjakKAD","count":100,"options":{"include_original_description":true}}' + headers: + Content-Type: + - application/json + User-Agent: + - Plaid Ruby v38.0.0 + Accept: + - application/json + Plaid-Client-Id: + - "" + Plaid-Version: + - '2020-09-14' + Plaid-Secret: + - "" + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + response: + status: + code: 200 + message: OK + headers: + Server: + - nginx + Date: + - Mon, 19 May 2025 15:35:03 GMT + Content-Type: + - application/json; charset=utf-8 + Transfer-Encoding: + - chunked + Connection: + - keep-alive + Plaid-Version: + - '2020-09-14' + Vary: + - Accept-Encoding + X-Envoy-Upstream-Service-Time: + - '376' + X-Envoy-Decorator-Operation: + - default.svc-apiv2:8080/* + Strict-Transport-Security: + - max-age=31536000; includeSubDomains; preload + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Xss-Protection: + - 1; mode=block + body: + encoding: ASCII-8BIT + string: !binary |- + ewogICJhY2NvdW50cyI6IFsKICAgIHsKICAgICAgImFjY291bnRfaWQiOiAiWnZsQkw1ZU1QUXRuWERWNlFyUjlzUmVOVlZ6MVhBaWVhZ0RQeiIsCiAgICAgICJiYWxhbmNlcyI6IHsKICAgICAgICAiYXZhaWxhYmxlIjogMTEwNjUuNzEsCiAgICAgICAgImN1cnJlbnQiOiAxMDAwLAogICAgICAgICJpc29fY3VycmVuY3lfY29kZSI6ICJVU0QiLAogICAgICAgICJsaW1pdCI6IDEyMjAwLAogICAgICAgICJ1bm9mZmljaWFsX2N1cnJlbmN5X2NvZGUiOiBudWxsCiAgICAgIH0sCiAgICAgICJob2xkZXJfY2F0ZWdvcnkiOiAicGVyc29uYWwiLAogICAgICAibWFzayI6ICIzMDUzIiwKICAgICAgIm5hbWUiOiAiVGVzdCBDcmVkaXQgQ2FyZCBBY2NvdW50IiwKICAgICAgIm9mZmljaWFsX25hbWUiOiAiUGxhaWQgY3JlZGl0IGNhcmQiLAogICAgICAic3VidHlwZSI6ICJjcmVkaXQgY2FyZCIsCiAgICAgICJ0eXBlIjogImNyZWRpdCIKICAgIH0KICBdLAogICJhZGRlZCI6IFsKICAgIHsKICAgICAgImFjY291bnRfaWQiOiAiWnZsQkw1ZU1QUXRuWERWNlFyUjlzUmVOVlZ6MVhBaWVhZ0RQeiIsCiAgICAgICJhY2NvdW50X293bmVyIjogbnVsbCwKICAgICAgImFtb3VudCI6IDMwLjc1LAogICAgICAiYXV0aG9yaXplZF9kYXRlIjogIjIwMjQtMDktMjYiLAogICAgICAiYXV0aG9yaXplZF9kYXRldGltZSI6IG51bGwsCiAgICAgICJjYXRlZ29yeSI6IFsKICAgICAgICAiVHJhdmVsIiwKICAgICAgICAiR2FzIFN0YXRpb25zIgogICAgICBdLAogICAgICAiY2F0ZWdvcnlfaWQiOiAiMjIwMDkwMDAiLAogICAgICAiY2hlY2tfbnVtYmVyIjogbnVsbCwKICAgICAgImNvdW50ZXJwYXJ0aWVzIjogWwogICAgICAgIHsKICAgICAgICAgICJjb25maWRlbmNlX2xldmVsIjogIlZFUllfSElHSCIsCiAgICAgICAgICAiZW50aXR5X2lkIjogIjlXV0xEYTMyVkRZQlhPeWJXNXJ3OXZaWDhCRDNueVJSMzdXNm8iLAogICAgICAgICAgImxvZ29fdXJsIjogImh0dHBzOi8vcGxhaWQtbWVyY2hhbnQtbG9nb3MucGxhaWQuY29tL2d1bGZfb2lsXzQ2My5wbmciLAogICAgICAgICAgIm5hbWUiOiAiR3VsZiBPaWwiLAogICAgICAgICAgInBob25lX251bWJlciI6IG51bGwsCiAgICAgICAgICAidHlwZSI6ICJtZXJjaGFudCIsCiAgICAgICAgICAid2Vic2l0ZSI6ICJndWxmb2lsLmNvbSIKICAgICAgICB9CiAgICAgIF0sCiAgICAgICJkYXRlIjogIjIwMjQtMDktMjkiLAogICAgICAiZGF0ZXRpbWUiOiBudWxsLAogICAgICAiaXNvX2N1cnJlbmN5X2NvZGUiOiAiVVNEIiwKICAgICAgImxvY2F0aW9uIjogewogICAgICAgICJhZGRyZXNzIjogbnVsbCwKICAgICAgICAiY2l0eSI6IG51bGwsCiAgICAgICAgImNvdW50cnkiOiBudWxsLAogICAgICAgICJsYXQiOiBudWxsLAogICAgICAgICJsb24iOiBudWxsLAogICAgICAgICJwb3N0YWxfY29kZSI6IG51bGwsCiAgICAgICAgInJlZ2lvbiI6IG51bGwsCiAgICAgICAgInN0b3JlX251bWJlciI6IG51bGwKICAgICAgfSwKICAgICAgImxvZ29fdXJsIjogImh0dHBzOi8vcGxhaWQtbWVyY2hhbnQtbG9nb3MucGxhaWQuY29tL2d1bGZfb2lsXzQ2My5wbmciLAogICAgICAibWVyY2hhbnRfZW50aXR5X2lkIjogIjlXV0xEYTMyVkRZQlhPeWJXNXJ3OXZaWDhCRDNueVJSMzdXNm8iLAogICAgICAibWVyY2hhbnRfbmFtZSI6ICJHdWxmIE9pbCIsCiAgICAgICJuYW1lIjogIkd1bGYgT2lsIiwKICAgICAgIm9yaWdpbmFsX2Rlc2NyaXB0aW9uIjogIkdVTEYgT0lMIDAxMjM0NTY3IiwKICAgICAgInBheW1lbnRfY2hhbm5lbCI6ICJpbiBzdG9yZSIsCiAgICAgICJwYXltZW50X21ldGEiOiB7CiAgICAgICAgImJ5X29yZGVyX29mIjogbnVsbCwKICAgICAgICAicGF5ZWUiOiBudWxsLAogICAgICAgICJwYXllciI6IG51bGwsCiAgICAgICAgInBheW1lbnRfbWV0aG9kIjogbnVsbCwKICAgICAgICAicGF5bWVudF9wcm9jZXNzb3IiOiBudWxsLAogICAgICAgICJwcGRfaWQiOiBudWxsLAogICAgICAgICJyZWFzb24iOiBudWxsLAogICAgICAgICJyZWZlcmVuY2VfbnVtYmVyIjogbnVsbAogICAgICB9LAogICAgICAicGVuZGluZyI6IGZhbHNlLAogICAgICAicGVuZGluZ190cmFuc2FjdGlvbl9pZCI6IG51bGwsCiAgICAgICJwZXJzb25hbF9maW5hbmNlX2NhdGVnb3J5IjogewogICAgICAgICJjb25maWRlbmNlX2xldmVsIjogIlZFUllfSElHSCIsCiAgICAgICAgImRldGFpbGVkIjogIlRSQU5TUE9SVEFUSU9OX0dBUyIsCiAgICAgICAgInByaW1hcnkiOiAiVFJBTlNQT1JUQVRJT04iCiAgICAgIH0sCiAgICAgICJwZXJzb25hbF9maW5hbmNlX2NhdGVnb3J5X2ljb25fdXJsIjogImh0dHBzOi8vcGxhaWQtY2F0ZWdvcnktaWNvbnMucGxhaWQuY29tL1BGQ19UUkFOU1BPUlRBVElPTi5wbmciLAogICAgICAidHJhbnNhY3Rpb25fY29kZSI6IG51bGwsCiAgICAgICJ0cmFuc2FjdGlvbl9pZCI6ICJnNGo3QjVrWEVuQ3dkTFY3TnpRUEhWNTlkUkJQOFdjRThuNVhWIiwKICAgICAgInRyYW5zYWN0aW9uX3R5cGUiOiAicGxhY2UiLAogICAgICAidW5vZmZpY2lhbF9jdXJyZW5jeV9jb2RlIjogbnVsbCwKICAgICAgIndlYnNpdGUiOiAiZ3VsZm9pbC5jb20iCiAgICB9LAogICAgewogICAgICAiYWNjb3VudF9pZCI6ICJadmxCTDVlTVBRdG5YRFY2UXJSOXNSZU5WVnoxWEFpZWFnRFB6IiwKICAgICAgImFjY291bnRfb3duZXIiOiBudWxsLAogICAgICAiYW1vdW50IjogMjQuMTcsCiAgICAgICJhdXRob3JpemVkX2RhdGUiOiAiMjAyNC0wOS0yNyIsCiAgICAgICJhdXRob3JpemVkX2RhdGV0aW1lIjogbnVsbCwKICAgICAgImNhdGVnb3J5IjogWwogICAgICAgICJSZWNyZWF0aW9uIiwKICAgICAgICAiQXJ0cyBhbmQgRW50ZXJ0YWlubWVudCIKICAgICAgXSwKICAgICAgImNhdGVnb3J5X2lkIjogIjE3MDAxMDAwIiwKICAgICAgImNoZWNrX251bWJlciI6IG51bGwsCiAgICAgICJjb3VudGVycGFydGllcyI6IFsKICAgICAgICB7CiAgICAgICAgICAiY29uZmlkZW5jZV9sZXZlbCI6ICJWRVJZX0hJR0giLAogICAgICAgICAgImVudGl0eV9pZCI6ICJyRThBd2pLZzV5N0VvZWprYXdCT1hONTI3Z2V3dkpOZ08xcXJNIiwKICAgICAgICAgICJsb2dvX3VybCI6ICJodHRwczovL3BsYWlkLW1lcmNoYW50LWxvZ29zLnBsYWlkLmNvbS9jaW5lbWFya190aGVhdHJlc18yMTAucG5nIiwKICAgICAgICAgICJuYW1lIjogIkNpbmVtYXJrIFRoZWF0cmVzIiwKICAgICAgICAgICJwaG9uZV9udW1iZXIiOiBudWxsLAogICAgICAgICAgInR5cGUiOiAibWVyY2hhbnQiLAogICAgICAgICAgIndlYnNpdGUiOiAiY2luZW1hcmsuY29tIgogICAgICAgIH0KICAgICAgXSwKICAgICAgImRhdGUiOiAiMjAyNC0wOS0yOSIsCiAgICAgICJkYXRldGltZSI6IG51bGwsCiAgICAgICJpc29fY3VycmVuY3lfY29kZSI6ICJVU0QiLAogICAgICAibG9jYXRpb24iOiB7CiAgICAgICAgImFkZHJlc3MiOiBudWxsLAogICAgICAgICJjaXR5IjogbnVsbCwKICAgICAgICAiY291bnRyeSI6IG51bGwsCiAgICAgICAgImxhdCI6IG51bGwsCiAgICAgICAgImxvbiI6IG51bGwsCiAgICAgICAgInBvc3RhbF9jb2RlIjogbnVsbCwKICAgICAgICAicmVnaW9uIjogbnVsbCwKICAgICAgICAic3RvcmVfbnVtYmVyIjogbnVsbAogICAgICB9LAogICAgICAibG9nb191cmwiOiAiaHR0cHM6Ly9wbGFpZC1tZXJjaGFudC1sb2dvcy5wbGFpZC5jb20vY2luZW1hcmtfdGhlYXRyZXNfMjEwLnBuZyIsCiAgICAgICJtZXJjaGFudF9lbnRpdHlfaWQiOiAickU4QXdqS2c1eTdFb2Vqa2F3Qk9YTjUyN2dld3ZKTmdPMXFyTSIsCiAgICAgICJtZXJjaGFudF9uYW1lIjogIkNpbmVtYXJrIFRoZWF0cmVzIiwKICAgICAgIm5hbWUiOiAiQ2luZW1hcmsgVGhlYXRyZXMiLAogICAgICAib3JpZ2luYWxfZGVzY3JpcHRpb24iOiAiQ0lORU1BUksgVEhFQVRSRVMgMDEyMyIsCiAgICAgICJwYXltZW50X2NoYW5uZWwiOiAiaW4gc3RvcmUiLAogICAgICAicGF5bWVudF9tZXRhIjogewogICAgICAgICJieV9vcmRlcl9vZiI6IG51bGwsCiAgICAgICAgInBheWVlIjogbnVsbCwKICAgICAgICAicGF5ZXIiOiBudWxsLAogICAgICAgICJwYXltZW50X21ldGhvZCI6IG51bGwsCiAgICAgICAgInBheW1lbnRfcHJvY2Vzc29yIjogbnVsbCwKICAgICAgICAicHBkX2lkIjogbnVsbCwKICAgICAgICAicmVhc29uIjogbnVsbCwKICAgICAgICAicmVmZXJlbmNlX251bWJlciI6IG51bGwKICAgICAgfSwKICAgICAgInBlbmRpbmciOiBmYWxzZSwKICAgICAgInBlbmRpbmdfdHJhbnNhY3Rpb25faWQiOiBudWxsLAogICAgICAicGVyc29uYWxfZmluYW5jZV9jYXRlZ29yeSI6IHsKICAgICAgICAiY29uZmlkZW5jZV9sZXZlbCI6ICJISUdIIiwKICAgICAgICAiZGV0YWlsZWQiOiAiRU5URVJUQUlOTUVOVF9UVl9BTkRfTU9WSUVTIiwKICAgICAgICAicHJpbWFyeSI6ICJFTlRFUlRBSU5NRU5UIgogICAgICB9LAogICAgICAicGVyc29uYWxfZmluYW5jZV9jYXRlZ29yeV9pY29uX3VybCI6ICJodHRwczovL3BsYWlkLWNhdGVnb3J5LWljb25zLnBsYWlkLmNvbS9QRkNfRU5URVJUQUlOTUVOVC5wbmciLAogICAgICAidHJhbnNhY3Rpb25fY29kZSI6IG51bGwsCiAgICAgICJ0cmFuc2FjdGlvbl9pZCI6ICI4bEJaN2txbU5NZmxNNk4xckJiOHVkemtHd3lBNU11VzNMOHlhIiwKICAgICAgInRyYW5zYWN0aW9uX3R5cGUiOiAicGxhY2UiLAogICAgICAidW5vZmZpY2lhbF9jdXJyZW5jeV9jb2RlIjogbnVsbCwKICAgICAgIndlYnNpdGUiOiAiY2luZW1hcmsuY29tIgogICAgfSwKICAgIHsKICAgICAgImFjY291bnRfaWQiOiAiWnZsQkw1ZU1QUXRuWERWNlFyUjlzUmVOVlZ6MVhBaWVhZ0RQeiIsCiAgICAgICJhY2NvdW50X293bmVyIjogbnVsbCwKICAgICAgImFtb3VudCI6IDguMDMsCiAgICAgICJhdXRob3JpemVkX2RhdGUiOiAiMjAyNC0wOS0yNiIsCiAgICAgICJhdXRob3JpemVkX2RhdGV0aW1lIjogbnVsbCwKICAgICAgImNhdGVnb3J5IjogWwogICAgICAgICJTZXJ2aWNlIiwKICAgICAgICAiU3Vic2NyaXB0aW9uIgogICAgICBdLAogICAgICAiY2F0ZWdvcnlfaWQiOiAiMTgwNjEwMDAiLAogICAgICAiY2hlY2tfbnVtYmVyIjogbnVsbCwKICAgICAgImNvdW50ZXJwYXJ0aWVzIjogWwogICAgICAgIHsKICAgICAgICAgICJjb25maWRlbmNlX2xldmVsIjogIlZFUllfSElHSCIsCiAgICAgICAgICAiZW50aXR5X2lkIjogIjIzNzNRT1pKMThEcXFLMEtXdmdwbmczbm1WRExNdkR2eTA1Uk4iLAogICAgICAgICAgImxvZ29fdXJsIjogImh0dHBzOi8vcGxhaWQtbWVyY2hhbnQtbG9nb3MucGxhaWQuY29tL3Nwb3RpZnlfOTQ3LnBuZyIsCiAgICAgICAgICAibmFtZSI6ICJTcG90aWZ5IiwKICAgICAgICAgICJwaG9uZV9udW1iZXIiOiBudWxsLAogICAgICAgICAgInR5cGUiOiAibWVyY2hhbnQiLAogICAgICAgICAgIndlYnNpdGUiOiAic3BvdGlmeS5jb20iCiAgICAgICAgfQogICAgICBdLAogICAgICAiZGF0ZSI6ICIyMDI0LTA5LTMwIiwKICAgICAgImRhdGV0aW1lIjogbnVsbCwKICAgICAgImlzb19jdXJyZW5jeV9jb2RlIjogIlVTRCIsCiAgICAgICJsb2NhdGlvbiI6IHsKICAgICAgICAiYWRkcmVzcyI6IG51bGwsCiAgICAgICAgImNpdHkiOiBudWxsLAogICAgICAgICJjb3VudHJ5IjogbnVsbCwKICAgICAgICAibGF0IjogbnVsbCwKICAgICAgICAibG9uIjogbnVsbCwKICAgICAgICAicG9zdGFsX2NvZGUiOiBudWxsLAogICAgICAgICJyZWdpb24iOiAiTlkiLAogICAgICAgICJzdG9yZV9udW1iZXIiOiBudWxsCiAgICAgIH0sCiAgICAgICJsb2dvX3VybCI6ICJodHRwczovL3BsYWlkLW1lcmNoYW50LWxvZ29zLnBsYWlkLmNvbS9zcG90aWZ5Xzk0Ny5wbmciLAogICAgICAibWVyY2hhbnRfZW50aXR5X2lkIjogIjIzNzNRT1pKMThEcXFLMEtXdmdwbmczbm1WRExNdkR2eTA1Uk4iLAogICAgICAibWVyY2hhbnRfbmFtZSI6ICJTcG90aWZ5IiwKICAgICAgIm5hbWUiOiAiU3BvdGlmeSIsCiAgICAgICJvcmlnaW5hbF9kZXNjcmlwdGlvbiI6ICJTcG90aWZ5IFVTQSAwMTItMDEyMzQ1NiBOWSIsCiAgICAgICJwYXltZW50X2NoYW5uZWwiOiAib25saW5lIiwKICAgICAgInBheW1lbnRfbWV0YSI6IHsKICAgICAgICAiYnlfb3JkZXJfb2YiOiBudWxsLAogICAgICAgICJwYXllZSI6IG51bGwsCiAgICAgICAgInBheWVyIjogbnVsbCwKICAgICAgICAicGF5bWVudF9tZXRob2QiOiBudWxsLAogICAgICAgICJwYXltZW50X3Byb2Nlc3NvciI6IG51bGwsCiAgICAgICAgInBwZF9pZCI6IG51bGwsCiAgICAgICAgInJlYXNvbiI6IG51bGwsCiAgICAgICAgInJlZmVyZW5jZV9udW1iZXIiOiBudWxsCiAgICAgIH0sCiAgICAgICJwZW5kaW5nIjogZmFsc2UsCiAgICAgICJwZW5kaW5nX3RyYW5zYWN0aW9uX2lkIjogbnVsbCwKICAgICAgInBlcnNvbmFsX2ZpbmFuY2VfY2F0ZWdvcnkiOiB7CiAgICAgICAgImNvbmZpZGVuY2VfbGV2ZWwiOiAiVkVSWV9ISUdIIiwKICAgICAgICAiZGV0YWlsZWQiOiAiRU5URVJUQUlOTUVOVF9NVVNJQ19BTkRfQVVESU8iLAogICAgICAgICJwcmltYXJ5IjogIkVOVEVSVEFJTk1FTlQiCiAgICAgIH0sCiAgICAgICJwZXJzb25hbF9maW5hbmNlX2NhdGVnb3J5X2ljb25fdXJsIjogImh0dHBzOi8vcGxhaWQtY2F0ZWdvcnktaWNvbnMucGxhaWQuY29tL1BGQ19FTlRFUlRBSU5NRU5ULnBuZyIsCiAgICAgICJ0cmFuc2FjdGlvbl9jb2RlIjogbnVsbCwKICAgICAgInRyYW5zYWN0aW9uX2lkIjogIkVqTTNBNXZLOG1DakxlYTFHRTNtQ3lvbTk1UHJ2a2k0eGttTDciLAogICAgICAidHJhbnNhY3Rpb25fdHlwZSI6ICJwbGFjZSIsCiAgICAgICJ1bm9mZmljaWFsX2N1cnJlbmN5X2NvZGUiOiBudWxsLAogICAgICAid2Vic2l0ZSI6ICJzcG90aWZ5LmNvbSIKICAgIH0sCiAgICB7CiAgICAgICJhY2NvdW50X2lkIjogIlp2bEJMNWVNUFF0blhEVjZRclI5c1JlTlZWejFYQWllYWdEUHoiLAogICAgICAiYWNjb3VudF9vd25lciI6IG51bGwsCiAgICAgICJhbW91bnQiOiAxMi42NCwKICAgICAgImF1dGhvcml6ZWRfZGF0ZSI6ICIyMDI0LTA5LTI2IiwKICAgICAgImF1dGhvcml6ZWRfZGF0ZXRpbWUiOiBudWxsLAogICAgICAiY2F0ZWdvcnkiOiBbCiAgICAgICAgIkZvb2QgYW5kIERyaW5rIiwKICAgICAgICAiUmVzdGF1cmFudHMiLAogICAgICAgICJDb2ZmZWUgU2hvcCIKICAgICAgXSwKICAgICAgImNhdGVnb3J5X2lkIjogIjEzMDA1MDQzIiwKICAgICAgImNoZWNrX251bWJlciI6IG51bGwsCiAgICAgICJjb3VudGVycGFydGllcyI6IFsKICAgICAgICB7CiAgICAgICAgICAiY29uZmlkZW5jZV9sZXZlbCI6ICJWRVJZX0hJR0giLAogICAgICAgICAgImVudGl0eV9pZCI6ICJwNjRuckFYdk43cjdtanJkcDBxTktuQjEzN0RhNkJXYmJyRXd6IiwKICAgICAgICAgICJsb2dvX3VybCI6ICJodHRwczovL3BsYWlkLW1lcmNoYW50LWxvZ29zLnBsYWlkLmNvbS9kdW5raW5fZG9udXRzXzMwNS5wbmciLAogICAgICAgICAgIm5hbWUiOiAiRHVua2luJyIsCiAgICAgICAgICAicGhvbmVfbnVtYmVyIjogbnVsbCwKICAgICAgICAgICJ0eXBlIjogIm1lcmNoYW50IiwKICAgICAgICAgICJ3ZWJzaXRlIjogImR1bmtpbmRvbnV0cy5jb20iCiAgICAgICAgfQogICAgICBdLAogICAgICAiZGF0ZSI6ICIyMDI0LTA5LTI3IiwKICAgICAgImRhdGV0aW1lIjogbnVsbCwKICAgICAgImlzb19jdXJyZW5jeV9jb2RlIjogIlVTRCIsCiAgICAgICJsb2NhdGlvbiI6IHsKICAgICAgICAiYWRkcmVzcyI6IG51bGwsCiAgICAgICAgImNpdHkiOiBudWxsLAogICAgICAgICJjb3VudHJ5IjogbnVsbCwKICAgICAgICAibGF0IjogbnVsbCwKICAgICAgICAibG9uIjogbnVsbCwKICAgICAgICAicG9zdGFsX2NvZGUiOiBudWxsLAogICAgICAgICJyZWdpb24iOiBudWxsLAogICAgICAgICJzdG9yZV9udW1iZXIiOiAiMDEyMzQ1IgogICAgICB9LAogICAgICAibG9nb191cmwiOiAiaHR0cHM6Ly9wbGFpZC1tZXJjaGFudC1sb2dvcy5wbGFpZC5jb20vZHVua2luX2RvbnV0c18zMDUucG5nIiwKICAgICAgIm1lcmNoYW50X2VudGl0eV9pZCI6ICJwNjRuckFYdk43cjdtanJkcDBxTktuQjEzN0RhNkJXYmJyRXd6IiwKICAgICAgIm1lcmNoYW50X25hbWUiOiAiRHVua2luJyIsCiAgICAgICJuYW1lIjogIkREL0JSICMwMTIzNDUiLAogICAgICAib3JpZ2luYWxfZGVzY3JpcHRpb24iOiAiREQvQlIgIzAxMjM0NSIsCiAgICAgICJwYXltZW50X2NoYW5uZWwiOiAiaW4gc3RvcmUiLAogICAgICAicGF5bWVudF9tZXRhIjogewogICAgICAgICJieV9vcmRlcl9vZiI6IG51bGwsCiAgICAgICAgInBheWVlIjogbnVsbCwKICAgICAgICAicGF5ZXIiOiBudWxsLAogICAgICAgICJwYXltZW50X21ldGhvZCI6IG51bGwsCiAgICAgICAgInBheW1lbnRfcHJvY2Vzc29yIjogbnVsbCwKICAgICAgICAicHBkX2lkIjogbnVsbCwKICAgICAgICAicmVhc29uIjogbnVsbCwKICAgICAgICAicmVmZXJlbmNlX251bWJlciI6IG51bGwKICAgICAgfSwKICAgICAgInBlbmRpbmciOiBmYWxzZSwKICAgICAgInBlbmRpbmdfdHJhbnNhY3Rpb25faWQiOiBudWxsLAogICAgICAicGVyc29uYWxfZmluYW5jZV9jYXRlZ29yeSI6IHsKICAgICAgICAiY29uZmlkZW5jZV9sZXZlbCI6ICJWRVJZX0hJR0giLAogICAgICAgICJkZXRhaWxlZCI6ICJGT09EX0FORF9EUklOS19DT0ZGRUUiLAogICAgICAgICJwcmltYXJ5IjogIkZPT0RfQU5EX0RSSU5LIgogICAgICB9LAogICAgICAicGVyc29uYWxfZmluYW5jZV9jYXRlZ29yeV9pY29uX3VybCI6ICJodHRwczovL3BsYWlkLWNhdGVnb3J5LWljb25zLnBsYWlkLmNvbS9QRkNfRk9PRF9BTkRfRFJJTksucG5nIiwKICAgICAgInRyYW5zYWN0aW9uX2NvZGUiOiBudWxsLAogICAgICAidHJhbnNhY3Rpb25faWQiOiAiV202a1o1ek1hanVkYjRYVjZueWFmQjhWZ05iM3puQzZaMWpHViIsCiAgICAgICJ0cmFuc2FjdGlvbl90eXBlIjogInBsYWNlIiwKICAgICAgInVub2ZmaWNpYWxfY3VycmVuY3lfY29kZSI6IG51bGwsCiAgICAgICJ3ZWJzaXRlIjogImR1bmtpbmRvbnV0cy5jb20iCiAgICB9LAogICAgewogICAgICAiYWNjb3VudF9pZCI6ICJadmxCTDVlTVBRdG5YRFY2UXJSOXNSZU5WVnoxWEFpZWFnRFB6IiwKICAgICAgImFjY291bnRfb3duZXIiOiBudWxsLAogICAgICAiYW1vdW50IjogMjIuNzUsCiAgICAgICJhdXRob3JpemVkX2RhdGUiOiAiMjAyNC0wOS0yNiIsCiAgICAgICJhdXRob3JpemVkX2RhdGV0aW1lIjogbnVsbCwKICAgICAgImNhdGVnb3J5IjogWwogICAgICAgICJTZXJ2aWNlIiwKICAgICAgICAiQnVzaW5lc3MgU2VydmljZXMiCiAgICAgIF0sCiAgICAgICJjYXRlZ29yeV9pZCI6ICIxODAwODAwMCIsCiAgICAgICJjaGVja19udW1iZXIiOiBudWxsLAogICAgICAiY291bnRlcnBhcnRpZXMiOiBbCiAgICAgICAgewogICAgICAgICAgImNvbmZpZGVuY2VfbGV2ZWwiOiAiVkVSWV9ISUdIIiwKICAgICAgICAgICJlbnRpdHlfaWQiOiAiTkVMckFkT2FKMDcxdmdkWHlFMkRPT2pROTc4YmRvS21aMHB2NSIsCiAgICAgICAgICAibG9nb191cmwiOiAiaHR0cHM6Ly9wbGFpZC1tZXJjaGFudC1sb2dvcy5wbGFpZC5jb20vYXJhbWFya182Ny5wbmciLAogICAgICAgICAgIm5hbWUiOiAiQXJhbWFyayIsCiAgICAgICAgICAicGhvbmVfbnVtYmVyIjogbnVsbCwKICAgICAgICAgICJ0eXBlIjogIm1lcmNoYW50IiwKICAgICAgICAgICJ3ZWJzaXRlIjogImFyYW1hcmsuY29tIgogICAgICAgIH0KICAgICAgXSwKICAgICAgImRhdGUiOiAiMjAyNC0wOS0yNyIsCiAgICAgICJkYXRldGltZSI6IG51bGwsCiAgICAgICJpc29fY3VycmVuY3lfY29kZSI6ICJVU0QiLAogICAgICAibG9jYXRpb24iOiB7CiAgICAgICAgImFkZHJlc3MiOiBudWxsLAogICAgICAgICJjaXR5IjogbnVsbCwKICAgICAgICAiY291bnRyeSI6IG51bGwsCiAgICAgICAgImxhdCI6IG51bGwsCiAgICAgICAgImxvbiI6IG51bGwsCiAgICAgICAgInBvc3RhbF9jb2RlIjogbnVsbCwKICAgICAgICAicmVnaW9uIjogbnVsbCwKICAgICAgICAic3RvcmVfbnVtYmVyIjogbnVsbAogICAgICB9LAogICAgICAibG9nb191cmwiOiAiaHR0cHM6Ly9wbGFpZC1tZXJjaGFudC1sb2dvcy5wbGFpZC5jb20vYXJhbWFya182Ny5wbmciLAogICAgICAibWVyY2hhbnRfZW50aXR5X2lkIjogIk5FTHJBZE9hSjA3MXZnZFh5RTJET09qUTk3OGJkb0ttWjBwdjUiLAogICAgICAibWVyY2hhbnRfbmFtZSI6ICJBcmFtYXJrIiwKICAgICAgIm5hbWUiOiAiQXJhbWFyayIsCiAgICAgICJvcmlnaW5hbF9kZXNjcmlwdGlvbiI6ICJBcmFtYXJrIiwKICAgICAgInBheW1lbnRfY2hhbm5lbCI6ICJpbiBzdG9yZSIsCiAgICAgICJwYXltZW50X21ldGEiOiB7CiAgICAgICAgImJ5X29yZGVyX29mIjogbnVsbCwKICAgICAgICAicGF5ZWUiOiBudWxsLAogICAgICAgICJwYXllciI6IG51bGwsCiAgICAgICAgInBheW1lbnRfbWV0aG9kIjogbnVsbCwKICAgICAgICAicGF5bWVudF9wcm9jZXNzb3IiOiBudWxsLAogICAgICAgICJwcGRfaWQiOiBudWxsLAogICAgICAgICJyZWFzb24iOiBudWxsLAogICAgICAgICJyZWZlcmVuY2VfbnVtYmVyIjogbnVsbAogICAgICB9LAogICAgICAicGVuZGluZyI6IGZhbHNlLAogICAgICAicGVuZGluZ190cmFuc2FjdGlvbl9pZCI6IG51bGwsCiAgICAgICJwZXJzb25hbF9maW5hbmNlX2NhdGVnb3J5IjogewogICAgICAgICJjb25maWRlbmNlX2xldmVsIjogIlZFUllfSElHSCIsCiAgICAgICAgImRldGFpbGVkIjogIkZPT0RfQU5EX0RSSU5LX09USEVSX0ZPT0RfQU5EX0RSSU5LIiwKICAgICAgICAicHJpbWFyeSI6ICJGT09EX0FORF9EUklOSyIKICAgICAgfSwKICAgICAgInBlcnNvbmFsX2ZpbmFuY2VfY2F0ZWdvcnlfaWNvbl91cmwiOiAiaHR0cHM6Ly9wbGFpZC1jYXRlZ29yeS1pY29ucy5wbGFpZC5jb20vUEZDX0ZPT0RfQU5EX0RSSU5LLnBuZyIsCiAgICAgICJ0cmFuc2FjdGlvbl9jb2RlIjogbnVsbCwKICAgICAgInRyYW5zYWN0aW9uX2lkIjogIkFhN0tnUnBWTEFoYW1XbGtBdkQzczhEbDVLWjdickY5ckE1dmsiLAogICAgICAidHJhbnNhY3Rpb25fdHlwZSI6ICJwbGFjZSIsCiAgICAgICJ1bm9mZmljaWFsX2N1cnJlbmN5X2NvZGUiOiBudWxsLAogICAgICAid2Vic2l0ZSI6ICJhcmFtYXJrLmNvbSIKICAgIH0sCiAgICB7CiAgICAgICJhY2NvdW50X2lkIjogIlp2bEJMNWVNUFF0blhEVjZRclI5c1JlTlZWejFYQWllYWdEUHoiLAogICAgICAiYWNjb3VudF9vd25lciI6IG51bGwsCiAgICAgICJhbW91bnQiOiAxMC40MiwKICAgICAgImF1dGhvcml6ZWRfZGF0ZSI6ICIyMDI0LTA5LTI3IiwKICAgICAgImF1dGhvcml6ZWRfZGF0ZXRpbWUiOiBudWxsLAogICAgICAiY2F0ZWdvcnkiOiBbCiAgICAgICAgIlNob3BzIiwKICAgICAgICAiRGlzY291bnQgU3RvcmVzIgogICAgICBdLAogICAgICAiY2F0ZWdvcnlfaWQiOiAiMTkwMjAwMDAiLAogICAgICAiY2hlY2tfbnVtYmVyIjogbnVsbCwKICAgICAgImNvdW50ZXJwYXJ0aWVzIjogWwogICAgICAgIHsKICAgICAgICAgICJjb25maWRlbmNlX2xldmVsIjogIlZFUllfSElHSCIsCiAgICAgICAgICAiZW50aXR5X2lkIjogIlp6bjc5cGIwWUV3QThKRDZLZXlaQUJ2bXBwM3cxV1ZaZUpFWTYiLAogICAgICAgICAgImxvZ29fdXJsIjogImh0dHBzOi8vcGxhaWQtbWVyY2hhbnQtbG9nb3MucGxhaWQuY29tL2RvbGxhcl9nZW5lcmFsXzI4Ny5wbmciLAogICAgICAgICAgIm5hbWUiOiAiRG9sbGFyIEdlbmVyYWwiLAogICAgICAgICAgInBob25lX251bWJlciI6IG51bGwsCiAgICAgICAgICAidHlwZSI6ICJtZXJjaGFudCIsCiAgICAgICAgICAid2Vic2l0ZSI6ICJkb2xsYXJnZW5lcmFsLmNvbSIKICAgICAgICB9CiAgICAgIF0sCiAgICAgICJkYXRlIjogIjIwMjQtMDktMjciLAogICAgICAiZGF0ZXRpbWUiOiBudWxsLAogICAgICAiaXNvX2N1cnJlbmN5X2NvZGUiOiAiVVNEIiwKICAgICAgImxvY2F0aW9uIjogewogICAgICAgICJhZGRyZXNzIjogbnVsbCwKICAgICAgICAiY2l0eSI6IG51bGwsCiAgICAgICAgImNvdW50cnkiOiBudWxsLAogICAgICAgICJsYXQiOiBudWxsLAogICAgICAgICJsb24iOiBudWxsLAogICAgICAgICJwb3N0YWxfY29kZSI6IG51bGwsCiAgICAgICAgInJlZ2lvbiI6IG51bGwsCiAgICAgICAgInN0b3JlX251bWJlciI6ICIwMTIzIgogICAgICB9LAogICAgICAibG9nb191cmwiOiAiaHR0cHM6Ly9wbGFpZC1tZXJjaGFudC1sb2dvcy5wbGFpZC5jb20vZG9sbGFyX2dlbmVyYWxfMjg3LnBuZyIsCiAgICAgICJtZXJjaGFudF9lbnRpdHlfaWQiOiAiWnpuNzlwYjBZRXdBOEpENktleVpBQnZtcHAzdzFXVlplSkVZNiIsCiAgICAgICJtZXJjaGFudF9uYW1lIjogIkRvbGxhciBHZW5lcmFsIiwKICAgICAgIm5hbWUiOiAiRG9sbGFyIEdlbmVyYWwiLAogICAgICAib3JpZ2luYWxfZGVzY3JpcHRpb24iOiAiRE9MTEFSLUdFTkVSQUwgIzAxMjMiLAogICAgICAicGF5bWVudF9jaGFubmVsIjogImluIHN0b3JlIiwKICAgICAgInBheW1lbnRfbWV0YSI6IHsKICAgICAgICAiYnlfb3JkZXJfb2YiOiBudWxsLAogICAgICAgICJwYXllZSI6IG51bGwsCiAgICAgICAgInBheWVyIjogbnVsbCwKICAgICAgICAicGF5bWVudF9tZXRob2QiOiBudWxsLAogICAgICAgICJwYXltZW50X3Byb2Nlc3NvciI6IG51bGwsCiAgICAgICAgInBwZF9pZCI6IG51bGwsCiAgICAgICAgInJlYXNvbiI6IG51bGwsCiAgICAgICAgInJlZmVyZW5jZV9udW1iZXIiOiBudWxsCiAgICAgIH0sCiAgICAgICJwZW5kaW5nIjogZmFsc2UsCiAgICAgICJwZW5kaW5nX3RyYW5zYWN0aW9uX2lkIjogbnVsbCwKICAgICAgInBlcnNvbmFsX2ZpbmFuY2VfY2F0ZWdvcnkiOiB7CiAgICAgICAgImNvbmZpZGVuY2VfbGV2ZWwiOiAiVkVSWV9ISUdIIiwKICAgICAgICAiZGV0YWlsZWQiOiAiR0VORVJBTF9NRVJDSEFORElTRV9ESVNDT1VOVF9TVE9SRVMiLAogICAgICAgICJwcmltYXJ5IjogIkdFTkVSQUxfTUVSQ0hBTkRJU0UiCiAgICAgIH0sCiAgICAgICJwZXJzb25hbF9maW5hbmNlX2NhdGVnb3J5X2ljb25fdXJsIjogImh0dHBzOi8vcGxhaWQtY2F0ZWdvcnktaWNvbnMucGxhaWQuY29tL1BGQ19HRU5FUkFMX01FUkNIQU5ESVNFLnBuZyIsCiAgICAgICJ0cmFuc2FjdGlvbl9jb2RlIjogbnVsbCwKICAgICAgInRyYW5zYWN0aW9uX2lkIjogIkdlTGRxNW96VzlUZThKZDRNR3ZQVDg0TVpEd1BXN0Y2TVBvNE4iLAogICAgICAidHJhbnNhY3Rpb25fdHlwZSI6ICJwbGFjZSIsCiAgICAgICJ1bm9mZmljaWFsX2N1cnJlbmN5X2NvZGUiOiBudWxsLAogICAgICAid2Vic2l0ZSI6ICJkb2xsYXJnZW5lcmFsLmNvbSIKICAgIH0sCiAgICB7CiAgICAgICJhY2NvdW50X2lkIjogIlp2bEJMNWVNUFF0blhEVjZRclI5c1JlTlZWejFYQWllYWdEUHoiLAogICAgICAiYWNjb3VudF9vd25lciI6IG51bGwsCiAgICAgICJhbW91bnQiOiAxNjU2Ljg3LAogICAgICAiYXV0aG9yaXplZF9kYXRlIjogIjIwMjQtMDktMjciLAogICAgICAiYXV0aG9yaXplZF9kYXRldGltZSI6IG51bGwsCiAgICAgICJjYXRlZ29yeSI6IFsKICAgICAgICAiVHJhdmVsIiwKICAgICAgICAiTG9kZ2luZyIsCiAgICAgICAgIkhvdGVscyBhbmQgTW90ZWxzIgogICAgICBdLAogICAgICAiY2F0ZWdvcnlfaWQiOiAiMjIwMTIwMDMiLAogICAgICAiY2hlY2tfbnVtYmVyIjogbnVsbCwKICAgICAgImNvdW50ZXJwYXJ0aWVzIjogWwogICAgICAgIHsKICAgICAgICAgICJjb25maWRlbmNlX2xldmVsIjogIlZFUllfSElHSCIsCiAgICAgICAgICAiZW50aXR5X2lkIjogImI1SkQ3andtUVl3cGI5cmFLYVpiTGpWODkwM2RWWGFKWG01YXAiLAogICAgICAgICAgImxvZ29fdXJsIjogImh0dHBzOi8vcGxhaWQtbWVyY2hhbnQtbG9nb3MucGxhaWQuY29tL2FpcmJuYl8yOS5wbmciLAogICAgICAgICAgIm5hbWUiOiAiQWlyYm5iIiwKICAgICAgICAgICJwaG9uZV9udW1iZXIiOiBudWxsLAogICAgICAgICAgInR5cGUiOiAibWVyY2hhbnQiLAogICAgICAgICAgIndlYnNpdGUiOiAiYWlyYm5iLmNvbSIKICAgICAgICB9CiAgICAgIF0sCiAgICAgICJkYXRlIjogIjIwMjQtMDktMjciLAogICAgICAiZGF0ZXRpbWUiOiBudWxsLAogICAgICAiaXNvX2N1cnJlbmN5X2NvZGUiOiAiVVNEIiwKICAgICAgImxvY2F0aW9uIjogewogICAgICAgICJhZGRyZXNzIjogbnVsbCwKICAgICAgICAiY2l0eSI6IG51bGwsCiAgICAgICAgImNvdW50cnkiOiBudWxsLAogICAgICAgICJsYXQiOiBudWxsLAogICAgICAgICJsb24iOiBudWxsLAogICAgICAgICJwb3N0YWxfY29kZSI6IG51bGwsCiAgICAgICAgInJlZ2lvbiI6IG51bGwsCiAgICAgICAgInN0b3JlX251bWJlciI6IG51bGwKICAgICAgfSwKICAgICAgImxvZ29fdXJsIjogImh0dHBzOi8vcGxhaWQtbWVyY2hhbnQtbG9nb3MucGxhaWQuY29tL2FpcmJuYl8yOS5wbmciLAogICAgICAibWVyY2hhbnRfZW50aXR5X2lkIjogImI1SkQ3andtUVl3cGI5cmFLYVpiTGpWODkwM2RWWGFKWG01YXAiLAogICAgICAibWVyY2hhbnRfbmFtZSI6ICJBaXJibmIiLAogICAgICAibmFtZSI6ICJBaXJibmIiLAogICAgICAib3JpZ2luYWxfZGVzY3JpcHRpb24iOiAiQWlyYm5iIiwKICAgICAgInBheW1lbnRfY2hhbm5lbCI6ICJvbmxpbmUiLAogICAgICAicGF5bWVudF9tZXRhIjogewogICAgICAgICJieV9vcmRlcl9vZiI6IG51bGwsCiAgICAgICAgInBheWVlIjogbnVsbCwKICAgICAgICAicGF5ZXIiOiBudWxsLAogICAgICAgICJwYXltZW50X21ldGhvZCI6IG51bGwsCiAgICAgICAgInBheW1lbnRfcHJvY2Vzc29yIjogbnVsbCwKICAgICAgICAicHBkX2lkIjogbnVsbCwKICAgICAgICAicmVhc29uIjogbnVsbCwKICAgICAgICAicmVmZXJlbmNlX251bWJlciI6IG51bGwKICAgICAgfSwKICAgICAgInBlbmRpbmciOiBmYWxzZSwKICAgICAgInBlbmRpbmdfdHJhbnNhY3Rpb25faWQiOiBudWxsLAogICAgICAicGVyc29uYWxfZmluYW5jZV9jYXRlZ29yeSI6IHsKICAgICAgICAiY29uZmlkZW5jZV9sZXZlbCI6ICJWRVJZX0hJR0giLAogICAgICAgICJkZXRhaWxlZCI6ICJUUkFWRUxfTE9ER0lORyIsCiAgICAgICAgInByaW1hcnkiOiAiVFJBVkVMIgogICAgICB9LAogICAgICAicGVyc29uYWxfZmluYW5jZV9jYXRlZ29yeV9pY29uX3VybCI6ICJodHRwczovL3BsYWlkLWNhdGVnb3J5LWljb25zLnBsYWlkLmNvbS9QRkNfVFJBVkVMLnBuZyIsCiAgICAgICJ0cmFuc2FjdGlvbl9jb2RlIjogbnVsbCwKICAgICAgInRyYW5zYWN0aW9uX2lkIjogIm5aTEFQendEeWxpYlFkdmE4amVEdEcxZU1Kb0VXYnRBbFdRQlAiLAogICAgICAidHJhbnNhY3Rpb25fdHlwZSI6ICJwbGFjZSIsCiAgICAgICJ1bm9mZmljaWFsX2N1cnJlbmN5X2NvZGUiOiBudWxsLAogICAgICAid2Vic2l0ZSI6ICJhaXJibmIuY29tIgogICAgfSwKICAgIHsKICAgICAgImFjY291bnRfaWQiOiAiWnZsQkw1ZU1QUXRuWERWNlFyUjlzUmVOVlZ6MVhBaWVhZ0RQeiIsCiAgICAgICJhY2NvdW50X293bmVyIjogbnVsbCwKICAgICAgImFtb3VudCI6IDQuNDksCiAgICAgICJhdXRob3JpemVkX2RhdGUiOiAiMjAyNC0wOS0yNyIsCiAgICAgICJhdXRob3JpemVkX2RhdGV0aW1lIjogbnVsbCwKICAgICAgImNhdGVnb3J5IjogWwogICAgICAgICJTaG9wcyIsCiAgICAgICAgIlN1cGVybWFya2V0cyBhbmQgR3JvY2VyaWVzIgogICAgICBdLAogICAgICAiY2F0ZWdvcnlfaWQiOiAiMTkwNDcwMDAiLAogICAgICAiY2hlY2tfbnVtYmVyIjogbnVsbCwKICAgICAgImNvdW50ZXJwYXJ0aWVzIjogW10sCiAgICAgICJkYXRlIjogIjIwMjQtMDktMjciLAogICAgICAiZGF0ZXRpbWUiOiBudWxsLAogICAgICAiaXNvX2N1cnJlbmN5X2NvZGUiOiAiVVNEIiwKICAgICAgImxvY2F0aW9uIjogewogICAgICAgICJhZGRyZXNzIjogbnVsbCwKICAgICAgICAiY2l0eSI6IG51bGwsCiAgICAgICAgImNvdW50cnkiOiBudWxsLAogICAgICAgICJsYXQiOiBudWxsLAogICAgICAgICJsb24iOiBudWxsLAogICAgICAgICJwb3N0YWxfY29kZSI6IG51bGwsCiAgICAgICAgInJlZ2lvbiI6IG51bGwsCiAgICAgICAgInN0b3JlX251bWJlciI6ICIwMTIiCiAgICAgIH0sCiAgICAgICJsb2dvX3VybCI6IG51bGwsCiAgICAgICJtZXJjaGFudF9lbnRpdHlfaWQiOiBudWxsLAogICAgICAibWVyY2hhbnRfbmFtZSI6IG51bGwsCiAgICAgICJuYW1lIjogIlJhbGV5J3MiLAogICAgICAib3JpZ2luYWxfZGVzY3JpcHRpb24iOiAiUkFMRVknUyAjMDEyIiwKICAgICAgInBheW1lbnRfY2hhbm5lbCI6ICJpbiBzdG9yZSIsCiAgICAgICJwYXltZW50X21ldGEiOiB7CiAgICAgICAgImJ5X29yZGVyX29mIjogbnVsbCwKICAgICAgICAicGF5ZWUiOiBudWxsLAogICAgICAgICJwYXllciI6IG51bGwsCiAgICAgICAgInBheW1lbnRfbWV0aG9kIjogbnVsbCwKICAgICAgICAicGF5bWVudF9wcm9jZXNzb3IiOiBudWxsLAogICAgICAgICJwcGRfaWQiOiBudWxsLAogICAgICAgICJyZWFzb24iOiBudWxsLAogICAgICAgICJyZWZlcmVuY2VfbnVtYmVyIjogbnVsbAogICAgICB9LAogICAgICAicGVuZGluZyI6IGZhbHNlLAogICAgICAicGVuZGluZ190cmFuc2FjdGlvbl9pZCI6IG51bGwsCiAgICAgICJwZXJzb25hbF9maW5hbmNlX2NhdGVnb3J5IjogewogICAgICAgICJjb25maWRlbmNlX2xldmVsIjogIkxPVyIsCiAgICAgICAgImRldGFpbGVkIjogIkZPT0RfQU5EX0RSSU5LX0dST0NFUklFUyIsCiAgICAgICAgInByaW1hcnkiOiAiRk9PRF9BTkRfRFJJTksiCiAgICAgIH0sCiAgICAgICJwZXJzb25hbF9maW5hbmNlX2NhdGVnb3J5X2ljb25fdXJsIjogImh0dHBzOi8vcGxhaWQtY2F0ZWdvcnktaWNvbnMucGxhaWQuY29tL1BGQ19GT09EX0FORF9EUklOSy5wbmciLAogICAgICAidHJhbnNhY3Rpb25fY29kZSI6IG51bGwsCiAgICAgICJ0cmFuc2FjdGlvbl9pZCI6ICJiQmR5bEpnWExrdTFyeVZOUTlYZWh4UmVnMzRLRzd0bWJaN3dHIiwKICAgICAgInRyYW5zYWN0aW9uX3R5cGUiOiAicGxhY2UiLAogICAgICAidW5vZmZpY2lhbF9jdXJyZW5jeV9jb2RlIjogbnVsbCwKICAgICAgIndlYnNpdGUiOiBudWxsCiAgICB9LAogICAgewogICAgICAiYWNjb3VudF9pZCI6ICJadmxCTDVlTVBRdG5YRFY2UXJSOXNSZU5WVnoxWEFpZWFnRFB6IiwKICAgICAgImFjY291bnRfb3duZXIiOiBudWxsLAogICAgICAiYW1vdW50IjogMTkuNDksCiAgICAgICJhdXRob3JpemVkX2RhdGUiOiAiMjAyNC0wOS0yNyIsCiAgICAgICJhdXRob3JpemVkX2RhdGV0aW1lIjogbnVsbCwKICAgICAgImNhdGVnb3J5IjogWwogICAgICAgICJTaG9wcyIsCiAgICAgICAgIkRpZ2l0YWwgUHVyY2hhc2UiCiAgICAgIF0sCiAgICAgICJjYXRlZ29yeV9pZCI6ICIxOTAxOTAwMCIsCiAgICAgICJjaGVja19udW1iZXIiOiBudWxsLAogICAgICAiY291bnRlcnBhcnRpZXMiOiBbCiAgICAgICAgewogICAgICAgICAgImNvbmZpZGVuY2VfbGV2ZWwiOiAiVkVSWV9ISUdIIiwKICAgICAgICAgICJlbnRpdHlfaWQiOiAiMmdPd21xOXFLNTZLNjBvRG0zZUxyUkVWMkIybVZhZGtSbjhNVyIsCiAgICAgICAgICAibG9nb191cmwiOiAiaHR0cHM6Ly9wbGFpZC1tZXJjaGFudC1sb2dvcy5wbGFpZC5jb20vYW1hem9uXzQ0LnBuZyIsCiAgICAgICAgICAibmFtZSI6ICJBbWF6b24iLAogICAgICAgICAgInBob25lX251bWJlciI6IG51bGwsCiAgICAgICAgICAidHlwZSI6ICJtZXJjaGFudCIsCiAgICAgICAgICAid2Vic2l0ZSI6ICJhbWF6b24uY29tIgogICAgICAgIH0KICAgICAgXSwKICAgICAgImRhdGUiOiAiMjAyNC0wOS0yNyIsCiAgICAgICJkYXRldGltZSI6IG51bGwsCiAgICAgICJpc29fY3VycmVuY3lfY29kZSI6ICJVU0QiLAogICAgICAibG9jYXRpb24iOiB7CiAgICAgICAgImFkZHJlc3MiOiBudWxsLAogICAgICAgICJjaXR5IjogbnVsbCwKICAgICAgICAiY291bnRyeSI6IG51bGwsCiAgICAgICAgImxhdCI6IG51bGwsCiAgICAgICAgImxvbiI6IG51bGwsCiAgICAgICAgInBvc3RhbF9jb2RlIjogbnVsbCwKICAgICAgICAicmVnaW9uIjogIlBBIiwKICAgICAgICAic3RvcmVfbnVtYmVyIjogbnVsbAogICAgICB9LAogICAgICAibG9nb191cmwiOiAiaHR0cHM6Ly9wbGFpZC1tZXJjaGFudC1sb2dvcy5wbGFpZC5jb20vYW1hem9uXzQ0LnBuZyIsCiAgICAgICJtZXJjaGFudF9lbnRpdHlfaWQiOiAiMmdPd21xOXFLNTZLNjBvRG0zZUxyUkVWMkIybVZhZGtSbjhNVyIsCiAgICAgICJtZXJjaGFudF9uYW1lIjogIkFtYXpvbiIsCiAgICAgICJuYW1lIjogIkFNQVpPTiBNQVJLRVBMQUNFIE5BIC0iLAogICAgICAib3JpZ2luYWxfZGVzY3JpcHRpb24iOiAiQU1BWk9OIE1BUktFUExBQ0UgTkEgLSBQQSIsCiAgICAgICJwYXltZW50X2NoYW5uZWwiOiAib25saW5lIiwKICAgICAgInBheW1lbnRfbWV0YSI6IHsKICAgICAgICAiYnlfb3JkZXJfb2YiOiBudWxsLAogICAgICAgICJwYXllZSI6IG51bGwsCiAgICAgICAgInBheWVyIjogbnVsbCwKICAgICAgICAicGF5bWVudF9tZXRob2QiOiBudWxsLAogICAgICAgICJwYXltZW50X3Byb2Nlc3NvciI6IG51bGwsCiAgICAgICAgInBwZF9pZCI6IG51bGwsCiAgICAgICAgInJlYXNvbiI6IG51bGwsCiAgICAgICAgInJlZmVyZW5jZV9udW1iZXIiOiBudWxsCiAgICAgIH0sCiAgICAgICJwZW5kaW5nIjogZmFsc2UsCiAgICAgICJwZW5kaW5nX3RyYW5zYWN0aW9uX2lkIjogbnVsbCwKICAgICAgInBlcnNvbmFsX2ZpbmFuY2VfY2F0ZWdvcnkiOiB7CiAgICAgICAgImNvbmZpZGVuY2VfbGV2ZWwiOiAiVkVSWV9ISUdIIiwKICAgICAgICAiZGV0YWlsZWQiOiAiR0VORVJBTF9NRVJDSEFORElTRV9PTkxJTkVfTUFSS0VUUExBQ0VTIiwKICAgICAgICAicHJpbWFyeSI6ICJHRU5FUkFMX01FUkNIQU5ESVNFIgogICAgICB9LAogICAgICAicGVyc29uYWxfZmluYW5jZV9jYXRlZ29yeV9pY29uX3VybCI6ICJodHRwczovL3BsYWlkLWNhdGVnb3J5LWljb25zLnBsYWlkLmNvbS9QRkNfR0VORVJBTF9NRVJDSEFORElTRS5wbmciLAogICAgICAidHJhbnNhY3Rpb25fY29kZSI6IG51bGwsCiAgICAgICJ0cmFuc2FjdGlvbl9pZCI6ICJtUTFBTmtiRG1SZmI0eXZKNm5wTXQ2TG1CajFOeUVjZ3lkWDVMIiwKICAgICAgInRyYW5zYWN0aW9uX3R5cGUiOiAiZGlnaXRhbCIsCiAgICAgICJ1bm9mZmljaWFsX2N1cnJlbmN5X2NvZGUiOiBudWxsLAogICAgICAid2Vic2l0ZSI6ICJhbWF6b24uY29tIgogICAgfSwKICAgIHsKICAgICAgImFjY291bnRfaWQiOiAiWnZsQkw1ZU1QUXRuWERWNlFyUjlzUmVOVlZ6MVhBaWVhZ0RQeiIsCiAgICAgICJhY2NvdW50X293bmVyIjogbnVsbCwKICAgICAgImFtb3VudCI6IDI0LjYyLAogICAgICAiYXV0aG9yaXplZF9kYXRlIjogIjIwMjQtMDktMjciLAogICAgICAiYXV0aG9yaXplZF9kYXRldGltZSI6IG51bGwsCiAgICAgICJjYXRlZ29yeSI6IFsKICAgICAgICAiU2hvcHMiLAogICAgICAgICJTdXBlcm1hcmtldHMgYW5kIEdyb2NlcmllcyIKICAgICAgXSwKICAgICAgImNhdGVnb3J5X2lkIjogIjE5MDQ3MDAwIiwKICAgICAgImNoZWNrX251bWJlciI6IG51bGwsCiAgICAgICJjb3VudGVycGFydGllcyI6IFsKICAgICAgICB7CiAgICAgICAgICAiY29uZmlkZW5jZV9sZXZlbCI6ICJMT1ciLAogICAgICAgICAgImVudGl0eV9pZCI6IG51bGwsCiAgICAgICAgICAibG9nb191cmwiOiBudWxsLAogICAgICAgICAgIm5hbWUiOiAiTWFya2V0IiwKICAgICAgICAgICJwaG9uZV9udW1iZXIiOiBudWxsLAogICAgICAgICAgInR5cGUiOiAibWVyY2hhbnQiLAogICAgICAgICAgIndlYnNpdGUiOiBudWxsCiAgICAgICAgfQogICAgICBdLAogICAgICAiZGF0ZSI6ICIyMDI0LTEwLTAyIiwKICAgICAgImRhdGV0aW1lIjogbnVsbCwKICAgICAgImlzb19jdXJyZW5jeV9jb2RlIjogIlVTRCIsCiAgICAgICJsb2NhdGlvbiI6IHsKICAgICAgICAiYWRkcmVzcyI6IG51bGwsCiAgICAgICAgImNpdHkiOiBudWxsLAogICAgICAgICJjb3VudHJ5IjogbnVsbCwKICAgICAgICAibGF0IjogbnVsbCwKICAgICAgICAibG9uIjogbnVsbCwKICAgICAgICAicG9zdGFsX2NvZGUiOiBudWxsLAogICAgICAgICJyZWdpb24iOiBudWxsLAogICAgICAgICJzdG9yZV9udW1iZXIiOiBudWxsCiAgICAgIH0sCiAgICAgICJsb2dvX3VybCI6IG51bGwsCiAgICAgICJtZXJjaGFudF9lbnRpdHlfaWQiOiBudWxsLAogICAgICAibWVyY2hhbnRfbmFtZSI6ICJNYXJrZXQiLAogICAgICAibmFtZSI6ICJXb3JsZCBNYXJrZXQiLAogICAgICAib3JpZ2luYWxfZGVzY3JpcHRpb24iOiAiV29ybGQgTWFya2V0IiwKICAgICAgInBheW1lbnRfY2hhbm5lbCI6ICJpbiBzdG9yZSIsCiAgICAgICJwYXltZW50X21ldGEiOiB7CiAgICAgICAgImJ5X29yZGVyX29mIjogbnVsbCwKICAgICAgICAicGF5ZWUiOiBudWxsLAogICAgICAgICJwYXllciI6IG51bGwsCiAgICAgICAgInBheW1lbnRfbWV0aG9kIjogbnVsbCwKICAgICAgICAicGF5bWVudF9wcm9jZXNzb3IiOiBudWxsLAogICAgICAgICJwcGRfaWQiOiBudWxsLAogICAgICAgICJyZWFzb24iOiBudWxsLAogICAgICAgICJyZWZlcmVuY2VfbnVtYmVyIjogbnVsbAogICAgICB9LAogICAgICAicGVuZGluZyI6IGZhbHNlLAogICAgICAicGVuZGluZ190cmFuc2FjdGlvbl9pZCI6IG51bGwsCiAgICAgICJwZXJzb25hbF9maW5hbmNlX2NhdGVnb3J5IjogewogICAgICAgICJjb25maWRlbmNlX2xldmVsIjogIkxPVyIsCiAgICAgICAgImRldGFpbGVkIjogIkZPT0RfQU5EX0RSSU5LX0dST0NFUklFUyIsCiAgICAgICAgInByaW1hcnkiOiAiRk9PRF9BTkRfRFJJTksiCiAgICAgIH0sCiAgICAgICJwZXJzb25hbF9maW5hbmNlX2NhdGVnb3J5X2ljb25fdXJsIjogImh0dHBzOi8vcGxhaWQtY2F0ZWdvcnktaWNvbnMucGxhaWQuY29tL1BGQ19GT09EX0FORF9EUklOSy5wbmciLAogICAgICAidHJhbnNhY3Rpb25fY29kZSI6IG51bGwsCiAgICAgICJ0cmFuc2FjdGlvbl9pZCI6ICJ5R21yZ2U1SzRORnBEUXdlQkw0eXVQTTM1cnhkWFppNDZYd1E0IiwKICAgICAgInRyYW5zYWN0aW9uX3R5cGUiOiAicGxhY2UiLAogICAgICAidW5vZmZpY2lhbF9jdXJyZW5jeV9jb2RlIjogbnVsbCwKICAgICAgIndlYnNpdGUiOiBudWxsCiAgICB9LAogICAgewogICAgICAiYWNjb3VudF9pZCI6ICJadmxCTDVlTVBRdG5YRFY2UXJSOXNSZU5WVnoxWEFpZWFnRFB6IiwKICAgICAgImFjY291bnRfb3duZXIiOiBudWxsLAogICAgICAiYW1vdW50IjogMS43NSwKICAgICAgImF1dGhvcml6ZWRfZGF0ZSI6ICIyMDI0LTEwLTAyIiwKICAgICAgImF1dGhvcml6ZWRfZGF0ZXRpbWUiOiBudWxsLAogICAgICAiY2F0ZWdvcnkiOiBbCiAgICAgICAgIlRyYXZlbCIsCiAgICAgICAgIkdhcyBTdGF0aW9ucyIKICAgICAgXSwKICAgICAgImNhdGVnb3J5X2lkIjogIjIyMDA5MDAwIiwKICAgICAgImNoZWNrX251bWJlciI6IG51bGwsCiAgICAgICJjb3VudGVycGFydGllcyI6IFsKICAgICAgICB7CiAgICAgICAgICAiY29uZmlkZW5jZV9sZXZlbCI6ICJWRVJZX0hJR0giLAogICAgICAgICAgImVudGl0eV9pZCI6ICI4eTc4NTFKWHJ5Qm5rT1dPalcxNjN5cXpBQjAxb2E4azZlMWc5IiwKICAgICAgICAgICJsb2dvX3VybCI6ICJodHRwczovL3BsYWlkLW1lcmNoYW50LWxvZ29zLnBsYWlkLmNvbS9zaGVsbF84OTEucG5nIiwKICAgICAgICAgICJuYW1lIjogIlNoZWxsIiwKICAgICAgICAgICJwaG9uZV9udW1iZXIiOiBudWxsLAogICAgICAgICAgInR5cGUiOiAibWVyY2hhbnQiLAogICAgICAgICAgIndlYnNpdGUiOiAic2hlbGwuY29tIgogICAgICAgIH0KICAgICAgXSwKICAgICAgImRhdGUiOiAiMjAyNC0xMC0wMiIsCiAgICAgICJkYXRldGltZSI6IG51bGwsCiAgICAgICJpc29fY3VycmVuY3lfY29kZSI6ICJVU0QiLAogICAgICAibG9jYXRpb24iOiB7CiAgICAgICAgImFkZHJlc3MiOiBudWxsLAogICAgICAgICJjaXR5IjogbnVsbCwKICAgICAgICAiY291bnRyeSI6IG51bGwsCiAgICAgICAgImxhdCI6IG51bGwsCiAgICAgICAgImxvbiI6IG51bGwsCiAgICAgICAgInBvc3RhbF9jb2RlIjogbnVsbCwKICAgICAgICAicmVnaW9uIjogbnVsbCwKICAgICAgICAic3RvcmVfbnVtYmVyIjogbnVsbAogICAgICB9LAogICAgICAibG9nb191cmwiOiAiaHR0cHM6Ly9wbGFpZC1tZXJjaGFudC1sb2dvcy5wbGFpZC5jb20vc2hlbGxfODkxLnBuZyIsCiAgICAgICJtZXJjaGFudF9lbnRpdHlfaWQiOiAiOHk3ODUxSlhyeUJua09XT2pXMTYzeXF6QUIwMW9hOGs2ZTFnOSIsCiAgICAgICJtZXJjaGFudF9uYW1lIjogIlNoZWxsIiwKICAgICAgIm5hbWUiOiAiQXV0aCA6IFNoZWxsL3NoZWxsIiwKICAgICAgIm9yaWdpbmFsX2Rlc2NyaXB0aW9uIjogIkF1dGggOiBTaGVsbC9zaGVsbCIsCiAgICAgICJwYXltZW50X2NoYW5uZWwiOiAiaW4gc3RvcmUiLAogICAgICAicGF5bWVudF9tZXRhIjogewogICAgICAgICJieV9vcmRlcl9vZiI6IG51bGwsCiAgICAgICAgInBheWVlIjogbnVsbCwKICAgICAgICAicGF5ZXIiOiBudWxsLAogICAgICAgICJwYXltZW50X21ldGhvZCI6IG51bGwsCiAgICAgICAgInBheW1lbnRfcHJvY2Vzc29yIjogbnVsbCwKICAgICAgICAicHBkX2lkIjogbnVsbCwKICAgICAgICAicmVhc29uIjogbnVsbCwKICAgICAgICAicmVmZXJlbmNlX251bWJlciI6IG51bGwKICAgICAgfSwKICAgICAgInBlbmRpbmciOiBmYWxzZSwKICAgICAgInBlbmRpbmdfdHJhbnNhY3Rpb25faWQiOiBudWxsLAogICAgICAicGVyc29uYWxfZmluYW5jZV9jYXRlZ29yeSI6IHsKICAgICAgICAiY29uZmlkZW5jZV9sZXZlbCI6ICJWRVJZX0hJR0giLAogICAgICAgICJkZXRhaWxlZCI6ICJUUkFOU1BPUlRBVElPTl9HQVMiLAogICAgICAgICJwcmltYXJ5IjogIlRSQU5TUE9SVEFUSU9OIgogICAgICB9LAogICAgICAicGVyc29uYWxfZmluYW5jZV9jYXRlZ29yeV9pY29uX3VybCI6ICJodHRwczovL3BsYWlkLWNhdGVnb3J5LWljb25zLnBsYWlkLmNvbS9QRkNfVFJBTlNQT1JUQVRJT04ucG5nIiwKICAgICAgInRyYW5zYWN0aW9uX2NvZGUiOiBudWxsLAogICAgICAidHJhbnNhY3Rpb25faWQiOiAiOXEzNmVBSzdQMWlxR01QYkEzNHlVQVpWN05tTG9qSTR4UWdtcSIsCiAgICAgICJ0cmFuc2FjdGlvbl90eXBlIjogInBsYWNlIiwKICAgICAgInVub2ZmaWNpYWxfY3VycmVuY3lfY29kZSI6IG51bGwsCiAgICAgICJ3ZWJzaXRlIjogInNoZWxsLmNvbSIKICAgIH0sCiAgICB7CiAgICAgICJhY2NvdW50X2lkIjogIlp2bEJMNWVNUFF0blhEVjZRclI5c1JlTlZWejFYQWllYWdEUHoiLAogICAgICAiYWNjb3VudF9vd25lciI6IG51bGwsCiAgICAgICJhbW91bnQiOiA1LjU3LAogICAgICAiYXV0aG9yaXplZF9kYXRlIjogIjIwMjQtMDktMjciLAogICAgICAiYXV0aG9yaXplZF9kYXRldGltZSI6IG51bGwsCiAgICAgICJjYXRlZ29yeSI6IFsKICAgICAgICAiU2hvcHMiLAogICAgICAgICJTdXBlcm1hcmtldHMgYW5kIEdyb2NlcmllcyIKICAgICAgXSwKICAgICAgImNhdGVnb3J5X2lkIjogIjE5MDQ3MDAwIiwKICAgICAgImNoZWNrX251bWJlciI6IG51bGwsCiAgICAgICJjb3VudGVycGFydGllcyI6IFsKICAgICAgICB7CiAgICAgICAgICAiY29uZmlkZW5jZV9sZXZlbCI6ICJMT1ciLAogICAgICAgICAgImVudGl0eV9pZCI6IG51bGwsCiAgICAgICAgICAibG9nb191cmwiOiBudWxsLAogICAgICAgICAgIm5hbWUiOiAiU3VwZXJtYXJrIiwKICAgICAgICAgICJwaG9uZV9udW1iZXIiOiBudWxsLAogICAgICAgICAgInR5cGUiOiAibWVyY2hhbnQiLAogICAgICAgICAgIndlYnNpdGUiOiBudWxsCiAgICAgICAgfQogICAgICBdLAogICAgICAiZGF0ZSI6ICIyMDI0LTEwLTAxIiwKICAgICAgImRhdGV0aW1lIjogbnVsbCwKICAgICAgImlzb19jdXJyZW5jeV9jb2RlIjogIlVTRCIsCiAgICAgICJsb2NhdGlvbiI6IHsKICAgICAgICAiYWRkcmVzcyI6IG51bGwsCiAgICAgICAgImNpdHkiOiBudWxsLAogICAgICAgICJjb3VudHJ5IjogbnVsbCwKICAgICAgICAibGF0IjogbnVsbCwKICAgICAgICAibG9uIjogbnVsbCwKICAgICAgICAicG9zdGFsX2NvZGUiOiBudWxsLAogICAgICAgICJyZWdpb24iOiBudWxsLAogICAgICAgICJzdG9yZV9udW1iZXIiOiBudWxsCiAgICAgIH0sCiAgICAgICJsb2dvX3VybCI6IG51bGwsCiAgICAgICJtZXJjaGFudF9lbnRpdHlfaWQiOiBudWxsLAogICAgICAibWVyY2hhbnRfbmFtZSI6ICJTdXBlcm1hcmsiLAogICAgICAibmFtZSI6ICJWQUxMQVJUQSBTVVBFUk1BUksiLAogICAgICAib3JpZ2luYWxfZGVzY3JpcHRpb24iOiAiVkFMTEFSVEEgU1VQRVJNQVJLIiwKICAgICAgInBheW1lbnRfY2hhbm5lbCI6ICJpbiBzdG9yZSIsCiAgICAgICJwYXltZW50X21ldGEiOiB7CiAgICAgICAgImJ5X29yZGVyX29mIjogbnVsbCwKICAgICAgICAicGF5ZWUiOiBudWxsLAogICAgICAgICJwYXllciI6IG51bGwsCiAgICAgICAgInBheW1lbnRfbWV0aG9kIjogbnVsbCwKICAgICAgICAicGF5bWVudF9wcm9jZXNzb3IiOiBudWxsLAogICAgICAgICJwcGRfaWQiOiBudWxsLAogICAgICAgICJyZWFzb24iOiBudWxsLAogICAgICAgICJyZWZlcmVuY2VfbnVtYmVyIjogbnVsbAogICAgICB9LAogICAgICAicGVuZGluZyI6IGZhbHNlLAogICAgICAicGVuZGluZ190cmFuc2FjdGlvbl9pZCI6IG51bGwsCiAgICAgICJwZXJzb25hbF9maW5hbmNlX2NhdGVnb3J5IjogewogICAgICAgICJjb25maWRlbmNlX2xldmVsIjogIkxPVyIsCiAgICAgICAgImRldGFpbGVkIjogIkZPT0RfQU5EX0RSSU5LX0dST0NFUklFUyIsCiAgICAgICAgInByaW1hcnkiOiAiRk9PRF9BTkRfRFJJTksiCiAgICAgIH0sCiAgICAgICJwZXJzb25hbF9maW5hbmNlX2NhdGVnb3J5X2ljb25fdXJsIjogImh0dHBzOi8vcGxhaWQtY2F0ZWdvcnktaWNvbnMucGxhaWQuY29tL1BGQ19GT09EX0FORF9EUklOSy5wbmciLAogICAgICAidHJhbnNhY3Rpb25fY29kZSI6IG51bGwsCiAgICAgICJ0cmFuc2FjdGlvbl9pZCI6ICJ2RUdsTFBBRHhkVDdyVnZNS294cHNib3pxM054a0dpcTZrMURuIiwKICAgICAgInRyYW5zYWN0aW9uX3R5cGUiOiAicGxhY2UiLAogICAgICAidW5vZmZpY2lhbF9jdXJyZW5jeV9jb2RlIjogbnVsbCwKICAgICAgIndlYnNpdGUiOiBudWxsCiAgICB9LAogICAgewogICAgICAiYWNjb3VudF9pZCI6ICJadmxCTDVlTVBRdG5YRFY2UXJSOXNSZU5WVnoxWEFpZWFnRFB6IiwKICAgICAgImFjY291bnRfb3duZXIiOiBudWxsLAogICAgICAiYW1vdW50IjogMTAuMjYsCiAgICAgICJhdXRob3JpemVkX2RhdGUiOiAiMjAyNC0wOS0yNyIsCiAgICAgICJhdXRob3JpemVkX2RhdGV0aW1lIjogbnVsbCwKICAgICAgImNhdGVnb3J5IjogWwogICAgICAgICJTaG9wcyIsCiAgICAgICAgIkhhcmR3YXJlIFN0b3JlIgogICAgICBdLAogICAgICAiY2F0ZWdvcnlfaWQiOiAiMTkwMzAwMDAiLAogICAgICAiY2hlY2tfbnVtYmVyIjogbnVsbCwKICAgICAgImNvdW50ZXJwYXJ0aWVzIjogWwogICAgICAgIHsKICAgICAgICAgICJjb25maWRlbmNlX2xldmVsIjogIlZFUllfSElHSCIsCiAgICAgICAgICAiZW50aXR5X2lkIjogIk92RDRrM1ZyakpZWG9hcjVNTktaUUVkMzMzQkExb0s4SkE4djYiLAogICAgICAgICAgImxvZ29fdXJsIjogImh0dHBzOi8vcGxhaWQtbWVyY2hhbnQtbG9nb3MucGxhaWQuY29tL2xvd2VzXzU5MS5wbmciLAogICAgICAgICAgIm5hbWUiOiAiTG93ZSdzIiwKICAgICAgICAgICJwaG9uZV9udW1iZXIiOiBudWxsLAogICAgICAgICAgInR5cGUiOiAibWVyY2hhbnQiLAogICAgICAgICAgIndlYnNpdGUiOiAibG93ZXMuY29tIgogICAgICAgIH0KICAgICAgXSwKICAgICAgImRhdGUiOiAiMjAyNC0xMC0wMSIsCiAgICAgICJkYXRldGltZSI6IG51bGwsCiAgICAgICJpc29fY3VycmVuY3lfY29kZSI6ICJVU0QiLAogICAgICAibG9jYXRpb24iOiB7CiAgICAgICAgImFkZHJlc3MiOiBudWxsLAogICAgICAgICJjaXR5IjogbnVsbCwKICAgICAgICAiY291bnRyeSI6IG51bGwsCiAgICAgICAgImxhdCI6IG51bGwsCiAgICAgICAgImxvbiI6IG51bGwsCiAgICAgICAgInBvc3RhbF9jb2RlIjogbnVsbCwKICAgICAgICAicmVnaW9uIjogbnVsbCwKICAgICAgICAic3RvcmVfbnVtYmVyIjogIjAxMjMiCiAgICAgIH0sCiAgICAgICJsb2dvX3VybCI6ICJodHRwczovL3BsYWlkLW1lcmNoYW50LWxvZ29zLnBsYWlkLmNvbS9sb3dlc181OTEucG5nIiwKICAgICAgIm1lcmNoYW50X2VudGl0eV9pZCI6ICJPdkQ0azNWcmpKWVhvYXI1TU5LWlFFZDMzM0JBMW9LOEpBOHY2IiwKICAgICAgIm1lcmNoYW50X25hbWUiOiAiTG93ZSdzIiwKICAgICAgIm5hbWUiOiAiTG93ZSdzIiwKICAgICAgIm9yaWdpbmFsX2Rlc2NyaXB0aW9uIjogIkxPV0UnUyAjMDEyMyIsCiAgICAgICJwYXltZW50X2NoYW5uZWwiOiAiaW4gc3RvcmUiLAogICAgICAicGF5bWVudF9tZXRhIjogewogICAgICAgICJieV9vcmRlcl9vZiI6IG51bGwsCiAgICAgICAgInBheWVlIjogbnVsbCwKICAgICAgICAicGF5ZXIiOiBudWxsLAogICAgICAgICJwYXltZW50X21ldGhvZCI6IG51bGwsCiAgICAgICAgInBheW1lbnRfcHJvY2Vzc29yIjogbnVsbCwKICAgICAgICAicHBkX2lkIjogbnVsbCwKICAgICAgICAicmVhc29uIjogbnVsbCwKICAgICAgICAicmVmZXJlbmNlX251bWJlciI6IG51bGwKICAgICAgfSwKICAgICAgInBlbmRpbmciOiBmYWxzZSwKICAgICAgInBlbmRpbmdfdHJhbnNhY3Rpb25faWQiOiBudWxsLAogICAgICAicGVyc29uYWxfZmluYW5jZV9jYXRlZ29yeSI6IHsKICAgICAgICAiY29uZmlkZW5jZV9sZXZlbCI6ICJWRVJZX0hJR0giLAogICAgICAgICJkZXRhaWxlZCI6ICJIT01FX0lNUFJPVkVNRU5UX0hBUkRXQVJFIiwKICAgICAgICAicHJpbWFyeSI6ICJIT01FX0lNUFJPVkVNRU5UIgogICAgICB9LAogICAgICAicGVyc29uYWxfZmluYW5jZV9jYXRlZ29yeV9pY29uX3VybCI6ICJodHRwczovL3BsYWlkLWNhdGVnb3J5LWljb25zLnBsYWlkLmNvbS9QRkNfSE9NRV9JTVBST1ZFTUVOVC5wbmciLAogICAgICAidHJhbnNhY3Rpb25fY29kZSI6IG51bGwsCiAgICAgICJ0cmFuc2FjdGlvbl9pZCI6ICJSV21HUDVvTXpkdHJlUm9qZG05emk1d0V2bXFOVnBIYXBiQVFHIiwKICAgICAgInRyYW5zYWN0aW9uX3R5cGUiOiAicGxhY2UiLAogICAgICAidW5vZmZpY2lhbF9jdXJyZW5jeV9jb2RlIjogbnVsbCwKICAgICAgIndlYnNpdGUiOiAibG93ZXMuY29tIgogICAgfSwKICAgIHsKICAgICAgImFjY291bnRfaWQiOiAiWnZsQkw1ZU1QUXRuWERWNlFyUjlzUmVOVlZ6MVhBaWVhZ0RQeiIsCiAgICAgICJhY2NvdW50X293bmVyIjogbnVsbCwKICAgICAgImFtb3VudCI6IDQwLjA0LAogICAgICAiYXV0aG9yaXplZF9kYXRlIjogIjIwMjQtMTAtMDEiLAogICAgICAiYXV0aG9yaXplZF9kYXRldGltZSI6IG51bGwsCiAgICAgICJjYXRlZ29yeSI6IFsKICAgICAgICAiU2hvcHMiLAogICAgICAgICJDbG90aGluZyBhbmQgQWNjZXNzb3JpZXMiCiAgICAgIF0sCiAgICAgICJjYXRlZ29yeV9pZCI6ICIxOTAxMjAwMCIsCiAgICAgICJjaGVja19udW1iZXIiOiBudWxsLAogICAgICAiY291bnRlcnBhcnRpZXMiOiBbCiAgICAgICAgewogICAgICAgICAgImNvbmZpZGVuY2VfbGV2ZWwiOiAiVkVSWV9ISUdIIiwKICAgICAgICAgICJlbnRpdHlfaWQiOiAiUTlxT0EzUlpqMTVNYU15YmFBcG5KRDVZVkttTVpqZ0wzTGtBeiIsCiAgICAgICAgICAibG9nb191cmwiOiAiaHR0cHM6Ly9wbGFpZC1tZXJjaGFudC1sb2dvcy5wbGFpZC5jb20vemFyYV8xMTUwLnBuZyIsCiAgICAgICAgICAibmFtZSI6ICJaYXJhIiwKICAgICAgICAgICJwaG9uZV9udW1iZXIiOiBudWxsLAogICAgICAgICAgInR5cGUiOiAibWVyY2hhbnQiLAogICAgICAgICAgIndlYnNpdGUiOiAiemFyYS5jb20iCiAgICAgICAgfQogICAgICBdLAogICAgICAiZGF0ZSI6ICIyMDI0LTEwLTAxIiwKICAgICAgImRhdGV0aW1lIjogbnVsbCwKICAgICAgImlzb19jdXJyZW5jeV9jb2RlIjogIlVTRCIsCiAgICAgICJsb2NhdGlvbiI6IHsKICAgICAgICAiYWRkcmVzcyI6IG51bGwsCiAgICAgICAgImNpdHkiOiBudWxsLAogICAgICAgICJjb3VudHJ5IjogbnVsbCwKICAgICAgICAibGF0IjogbnVsbCwKICAgICAgICAibG9uIjogbnVsbCwKICAgICAgICAicG9zdGFsX2NvZGUiOiBudWxsLAogICAgICAgICJyZWdpb24iOiBudWxsLAogICAgICAgICJzdG9yZV9udW1iZXIiOiBudWxsCiAgICAgIH0sCiAgICAgICJsb2dvX3VybCI6ICJodHRwczovL3BsYWlkLW1lcmNoYW50LWxvZ29zLnBsYWlkLmNvbS96YXJhXzExNTAucG5nIiwKICAgICAgIm1lcmNoYW50X2VudGl0eV9pZCI6ICJROXFPQTNSWmoxNU1hTXliYUFwbkpENVlWS21NWmpnTDNMa0F6IiwKICAgICAgIm1lcmNoYW50X25hbWUiOiAiWmFyYSIsCiAgICAgICJuYW1lIjogIlphcmEiLAogICAgICAib3JpZ2luYWxfZGVzY3JpcHRpb24iOiAiWkFSQSBVU0EgMDEyMzQiLAogICAgICAicGF5bWVudF9jaGFubmVsIjogImluIHN0b3JlIiwKICAgICAgInBheW1lbnRfbWV0YSI6IHsKICAgICAgICAiYnlfb3JkZXJfb2YiOiBudWxsLAogICAgICAgICJwYXllZSI6IG51bGwsCiAgICAgICAgInBheWVyIjogbnVsbCwKICAgICAgICAicGF5bWVudF9tZXRob2QiOiBudWxsLAogICAgICAgICJwYXltZW50X3Byb2Nlc3NvciI6IG51bGwsCiAgICAgICAgInBwZF9pZCI6IG51bGwsCiAgICAgICAgInJlYXNvbiI6IG51bGwsCiAgICAgICAgInJlZmVyZW5jZV9udW1iZXIiOiBudWxsCiAgICAgIH0sCiAgICAgICJwZW5kaW5nIjogZmFsc2UsCiAgICAgICJwZW5kaW5nX3RyYW5zYWN0aW9uX2lkIjogbnVsbCwKICAgICAgInBlcnNvbmFsX2ZpbmFuY2VfY2F0ZWdvcnkiOiB7CiAgICAgICAgImNvbmZpZGVuY2VfbGV2ZWwiOiAiVkVSWV9ISUdIIiwKICAgICAgICAiZGV0YWlsZWQiOiAiR0VORVJBTF9NRVJDSEFORElTRV9DTE9USElOR19BTkRfQUNDRVNTT1JJRVMiLAogICAgICAgICJwcmltYXJ5IjogIkdFTkVSQUxfTUVSQ0hBTkRJU0UiCiAgICAgIH0sCiAgICAgICJwZXJzb25hbF9maW5hbmNlX2NhdGVnb3J5X2ljb25fdXJsIjogImh0dHBzOi8vcGxhaWQtY2F0ZWdvcnktaWNvbnMucGxhaWQuY29tL1BGQ19HRU5FUkFMX01FUkNIQU5ESVNFLnBuZyIsCiAgICAgICJ0cmFuc2FjdGlvbl9jb2RlIjogbnVsbCwKICAgICAgInRyYW5zYWN0aW9uX2lkIjogIjZScnZQOGQ2YVF0OFJkYUVBd1drRmJ5RDZsUldqTGk4RFhlUkciLAogICAgICAidHJhbnNhY3Rpb25fdHlwZSI6ICJwbGFjZSIsCiAgICAgICJ1bm9mZmljaWFsX2N1cnJlbmN5X2NvZGUiOiBudWxsLAogICAgICAid2Vic2l0ZSI6ICJ6YXJhLmNvbSIKICAgIH0sCiAgICB7CiAgICAgICJhY2NvdW50X2lkIjogIlp2bEJMNWVNUFF0blhEVjZRclI5c1JlTlZWejFYQWllYWdEUHoiLAogICAgICAiYWNjb3VudF9vd25lciI6IG51bGwsCiAgICAgICJhbW91bnQiOiAyMy43MSwKICAgICAgImF1dGhvcml6ZWRfZGF0ZSI6ICIyMDI0LTEwLTAxIiwKICAgICAgImF1dGhvcml6ZWRfZGF0ZXRpbWUiOiBudWxsLAogICAgICAiY2F0ZWdvcnkiOiBbCiAgICAgICAgIlNlcnZpY2UiLAogICAgICAgICJTdWJzY3JpcHRpb24iCiAgICAgIF0sCiAgICAgICJjYXRlZ29yeV9pZCI6ICIxODA2MTAwMCIsCiAgICAgICJjaGVja19udW1iZXIiOiBudWxsLAogICAgICAiY291bnRlcnBhcnRpZXMiOiBbCiAgICAgICAgewogICAgICAgICAgImNvbmZpZGVuY2VfbGV2ZWwiOiAiVkVSWV9ISUdIIiwKICAgICAgICAgICJlbnRpdHlfaWQiOiAiWnpPMVY2Z0o4S2JPOTI2S3JOWU9OYlFxb2JYcGdqV25BMjhuUiIsCiAgICAgICAgICAibG9nb191cmwiOiAiaHR0cHM6Ly9wbGFpZC1tZXJjaGFudC1sb2dvcy5wbGFpZC5jb20vaHVsdV81MDQucG5nIiwKICAgICAgICAgICJuYW1lIjogIkh1bHUiLAogICAgICAgICAgInBob25lX251bWJlciI6IG51bGwsCiAgICAgICAgICAidHlwZSI6ICJtZXJjaGFudCIsCiAgICAgICAgICAid2Vic2l0ZSI6ICJodWx1LmNvbSIKICAgICAgICB9LAogICAgICAgIHsKICAgICAgICAgICJjb25maWRlbmNlX2xldmVsIjogIlZFUllfSElHSCIsCiAgICAgICAgICAiZW50aXR5X2lkIjogInp3a2pyUWJiRFFxWkpSazNlZ09BbzBYQjdqbnlnTkRKazlWanoiLAogICAgICAgICAgImxvZ29fdXJsIjogImh0dHBzOi8vcGxhaWQtY291bnRlcnBhcnR5LWxvZ29zLnBsYWlkLmNvbS9wYXlwYWxfNzYucG5nIiwKICAgICAgICAgICJuYW1lIjogIlBheVBhbCIsCiAgICAgICAgICAicGhvbmVfbnVtYmVyIjogbnVsbCwKICAgICAgICAgICJ0eXBlIjogInBheW1lbnRfYXBwIiwKICAgICAgICAgICJ3ZWJzaXRlIjogInBheXBhbC5jb20iCiAgICAgICAgfQogICAgICBdLAogICAgICAiZGF0ZSI6ICIyMDI0LTEwLTAxIiwKICAgICAgImRhdGV0aW1lIjogbnVsbCwKICAgICAgImlzb19jdXJyZW5jeV9jb2RlIjogIlVTRCIsCiAgICAgICJsb2NhdGlvbiI6IHsKICAgICAgICAiYWRkcmVzcyI6IG51bGwsCiAgICAgICAgImNpdHkiOiBudWxsLAogICAgICAgICJjb3VudHJ5IjogbnVsbCwKICAgICAgICAibGF0IjogbnVsbCwKICAgICAgICAibG9uIjogbnVsbCwKICAgICAgICAicG9zdGFsX2NvZGUiOiBudWxsLAogICAgICAgICJyZWdpb24iOiBudWxsLAogICAgICAgICJzdG9yZV9udW1iZXIiOiBudWxsCiAgICAgIH0sCiAgICAgICJsb2dvX3VybCI6ICJodHRwczovL3BsYWlkLW1lcmNoYW50LWxvZ29zLnBsYWlkLmNvbS9odWx1XzUwNC5wbmciLAogICAgICAibWVyY2hhbnRfZW50aXR5X2lkIjogIlp6TzFWNmdKOEtiTzkyNktyTllPTmJRcW9iWHBnalduQTI4blIiLAogICAgICAibWVyY2hhbnRfbmFtZSI6ICJIdWx1IiwKICAgICAgIm5hbWUiOiAiSHVsdSIsCiAgICAgICJvcmlnaW5hbF9kZXNjcmlwdGlvbiI6ICJQQVlQQUwgKkhVTFUiLAogICAgICAicGF5bWVudF9jaGFubmVsIjogIm9ubGluZSIsCiAgICAgICJwYXltZW50X21ldGEiOiB7CiAgICAgICAgImJ5X29yZGVyX29mIjogbnVsbCwKICAgICAgICAicGF5ZWUiOiBudWxsLAogICAgICAgICJwYXllciI6IG51bGwsCiAgICAgICAgInBheW1lbnRfbWV0aG9kIjogbnVsbCwKICAgICAgICAicGF5bWVudF9wcm9jZXNzb3IiOiAiUGF5UGFsIiwKICAgICAgICAicHBkX2lkIjogbnVsbCwKICAgICAgICAicmVhc29uIjogbnVsbCwKICAgICAgICAicmVmZXJlbmNlX251bWJlciI6IG51bGwKICAgICAgfSwKICAgICAgInBlbmRpbmciOiBmYWxzZSwKICAgICAgInBlbmRpbmdfdHJhbnNhY3Rpb25faWQiOiBudWxsLAogICAgICAicGVyc29uYWxfZmluYW5jZV9jYXRlZ29yeSI6IHsKICAgICAgICAiY29uZmlkZW5jZV9sZXZlbCI6ICJWRVJZX0hJR0giLAogICAgICAgICJkZXRhaWxlZCI6ICJFTlRFUlRBSU5NRU5UX1RWX0FORF9NT1ZJRVMiLAogICAgICAgICJwcmltYXJ5IjogIkVOVEVSVEFJTk1FTlQiCiAgICAgIH0sCiAgICAgICJwZXJzb25hbF9maW5hbmNlX2NhdGVnb3J5X2ljb25fdXJsIjogImh0dHBzOi8vcGxhaWQtY2F0ZWdvcnktaWNvbnMucGxhaWQuY29tL1BGQ19FTlRFUlRBSU5NRU5ULnBuZyIsCiAgICAgICJ0cmFuc2FjdGlvbl9jb2RlIjogbnVsbCwKICAgICAgInRyYW5zYWN0aW9uX2lkIjogIlh5WHJNNUJHNDdmbVBwR0Q3Njk0VTZxUHlKWDhkZWNiS25MUjkiLAogICAgICAidHJhbnNhY3Rpb25fdHlwZSI6ICJwbGFjZSIsCiAgICAgICJ1bm9mZmljaWFsX2N1cnJlbmN5X2NvZGUiOiBudWxsLAogICAgICAid2Vic2l0ZSI6ICJodWx1LmNvbSIKICAgIH0sCiAgICB7CiAgICAgICJhY2NvdW50X2lkIjogIlp2bEJMNWVNUFF0blhEVjZRclI5c1JlTlZWejFYQWllYWdEUHoiLAogICAgICAiYWNjb3VudF9vd25lciI6IG51bGwsCiAgICAgICJhbW91bnQiOiA0NC4xOCwKICAgICAgImF1dGhvcml6ZWRfZGF0ZSI6ICIyMDI0LTEwLTAxIiwKICAgICAgImF1dGhvcml6ZWRfZGF0ZXRpbWUiOiBudWxsLAogICAgICAiY2F0ZWdvcnkiOiBbCiAgICAgICAgIlNob3BzIiwKICAgICAgICAiQmVhdXR5IFByb2R1Y3RzIgogICAgICBdLAogICAgICAiY2F0ZWdvcnlfaWQiOiAiMTkwMDYwMDAiLAogICAgICAiY2hlY2tfbnVtYmVyIjogbnVsbCwKICAgICAgImNvdW50ZXJwYXJ0aWVzIjogWwogICAgICAgIHsKICAgICAgICAgICJjb25maWRlbmNlX2xldmVsIjogIlZFUllfSElHSCIsCiAgICAgICAgICAiZW50aXR5X2lkIjogInJ6OFExd09RMTZtS2RZQmtaN213UXdZT0Q2MU9nRFY1RFlwYjMiLAogICAgICAgICAgImxvZ29fdXJsIjogImh0dHBzOi8vcGxhaWQtbWVyY2hhbnQtbG9nb3MucGxhaWQuY29tL3NhbGx5X2JlYXV0eV84NTcucG5nIiwKICAgICAgICAgICJuYW1lIjogIlNhbGx5IEJlYXV0eSIsCiAgICAgICAgICAicGhvbmVfbnVtYmVyIjogbnVsbCwKICAgICAgICAgICJ0eXBlIjogIm1lcmNoYW50IiwKICAgICAgICAgICJ3ZWJzaXRlIjogInNhbGx5YmVhdXR5LmNvbSIKICAgICAgICB9CiAgICAgIF0sCiAgICAgICJkYXRlIjogIjIwMjQtMTAtMDEiLAogICAgICAiZGF0ZXRpbWUiOiBudWxsLAogICAgICAiaXNvX2N1cnJlbmN5X2NvZGUiOiAiVVNEIiwKICAgICAgImxvY2F0aW9uIjogewogICAgICAgICJhZGRyZXNzIjogbnVsbCwKICAgICAgICAiY2l0eSI6IG51bGwsCiAgICAgICAgImNvdW50cnkiOiBudWxsLAogICAgICAgICJsYXQiOiBudWxsLAogICAgICAgICJsb24iOiBudWxsLAogICAgICAgICJwb3N0YWxfY29kZSI6IG51bGwsCiAgICAgICAgInJlZ2lvbiI6IG51bGwsCiAgICAgICAgInN0b3JlX251bWJlciI6ICIwMTIzIgogICAgICB9LAogICAgICAibG9nb191cmwiOiAiaHR0cHM6Ly9wbGFpZC1tZXJjaGFudC1sb2dvcy5wbGFpZC5jb20vc2FsbHlfYmVhdXR5Xzg1Ny5wbmciLAogICAgICAibWVyY2hhbnRfZW50aXR5X2lkIjogInJ6OFExd09RMTZtS2RZQmtaN213UXdZT0Q2MU9nRFY1RFlwYjMiLAogICAgICAibWVyY2hhbnRfbmFtZSI6ICJTYWxseSBCZWF1dHkiLAogICAgICAibmFtZSI6ICJTQUxMWSBCRUFVVFkgIzAxMjMiLAogICAgICAib3JpZ2luYWxfZGVzY3JpcHRpb24iOiAiU0FMTFkgQkVBVVRZICMwMTIzIiwKICAgICAgInBheW1lbnRfY2hhbm5lbCI6ICJpbiBzdG9yZSIsCiAgICAgICJwYXltZW50X21ldGEiOiB7CiAgICAgICAgImJ5X29yZGVyX29mIjogbnVsbCwKICAgICAgICAicGF5ZWUiOiBudWxsLAogICAgICAgICJwYXllciI6IG51bGwsCiAgICAgICAgInBheW1lbnRfbWV0aG9kIjogbnVsbCwKICAgICAgICAicGF5bWVudF9wcm9jZXNzb3IiOiBudWxsLAogICAgICAgICJwcGRfaWQiOiBudWxsLAogICAgICAgICJyZWFzb24iOiBudWxsLAogICAgICAgICJyZWZlcmVuY2VfbnVtYmVyIjogbnVsbAogICAgICB9LAogICAgICAicGVuZGluZyI6IGZhbHNlLAogICAgICAicGVuZGluZ190cmFuc2FjdGlvbl9pZCI6IG51bGwsCiAgICAgICJwZXJzb25hbF9maW5hbmNlX2NhdGVnb3J5IjogewogICAgICAgICJjb25maWRlbmNlX2xldmVsIjogIlZFUllfSElHSCIsCiAgICAgICAgImRldGFpbGVkIjogIlBFUlNPTkFMX0NBUkVfSEFJUl9BTkRfQkVBVVRZIiwKICAgICAgICAicHJpbWFyeSI6ICJQRVJTT05BTF9DQVJFIgogICAgICB9LAogICAgICAicGVyc29uYWxfZmluYW5jZV9jYXRlZ29yeV9pY29uX3VybCI6ICJodHRwczovL3BsYWlkLWNhdGVnb3J5LWljb25zLnBsYWlkLmNvbS9QRkNfUEVSU09OQUxfQ0FSRS5wbmciLAogICAgICAidHJhbnNhY3Rpb25fY29kZSI6IG51bGwsCiAgICAgICJ0cmFuc2FjdGlvbl9pZCI6ICJEUFpCVzVWcWdiRlA3NjR6YnBxbVN2aldKRFBnM2J0M1dhSjhaIiwKICAgICAgInRyYW5zYWN0aW9uX3R5cGUiOiAicGxhY2UiLAogICAgICAidW5vZmZpY2lhbF9jdXJyZW5jeV9jb2RlIjogbnVsbCwKICAgICAgIndlYnNpdGUiOiAic2FsbHliZWF1dHkuY29tIgogICAgfSwKICAgIHsKICAgICAgImFjY291bnRfaWQiOiAiWnZsQkw1ZU1QUXRuWERWNlFyUjlzUmVOVlZ6MVhBaWVhZ0RQeiIsCiAgICAgICJhY2NvdW50X293bmVyIjogbnVsbCwKICAgICAgImFtb3VudCI6IDEwLjU0LAogICAgICAiYXV0aG9yaXplZF9kYXRlIjogIjIwMjQtMTAtMDEiLAogICAgICAiYXV0aG9yaXplZF9kYXRldGltZSI6IG51bGwsCiAgICAgICJjYXRlZ29yeSI6IFsKICAgICAgICAiU2hvcHMiLAogICAgICAgICJDbG90aGluZyBhbmQgQWNjZXNzb3JpZXMiCiAgICAgIF0sCiAgICAgICJjYXRlZ29yeV9pZCI6ICIxOTAxMjAwMCIsCiAgICAgICJjaGVja19udW1iZXIiOiBudWxsLAogICAgICAiY291bnRlcnBhcnRpZXMiOiBbCiAgICAgICAgewogICAgICAgICAgImNvbmZpZGVuY2VfbGV2ZWwiOiAiVkVSWV9ISUdIIiwKICAgICAgICAgICJlbnRpdHlfaWQiOiAiQkR2V0V6WnJNRUQxdmVaWGtwNWFEMjBFcjhaQUtud1ZKRG1kMSIsCiAgICAgICAgICAibG9nb191cmwiOiAiaHR0cHM6Ly9wbGFpZC1tZXJjaGFudC1sb2dvcy5wbGFpZC5jb20vcm9zc19zdG9yZXNfODQxLnBuZyIsCiAgICAgICAgICAibmFtZSI6ICJSb3NzIFN0b3JlcyIsCiAgICAgICAgICAicGhvbmVfbnVtYmVyIjogbnVsbCwKICAgICAgICAgICJ0eXBlIjogIm1lcmNoYW50IiwKICAgICAgICAgICJ3ZWJzaXRlIjogInJvc3NzdG9yZXMuY29tIgogICAgICAgIH0KICAgICAgXSwKICAgICAgImRhdGUiOiAiMjAyNC0xMC0wMyIsCiAgICAgICJkYXRldGltZSI6IG51bGwsCiAgICAgICJpc29fY3VycmVuY3lfY29kZSI6ICJVU0QiLAogICAgICAibG9jYXRpb24iOiB7CiAgICAgICAgImFkZHJlc3MiOiBudWxsLAogICAgICAgICJjaXR5IjogbnVsbCwKICAgICAgICAiY291bnRyeSI6IG51bGwsCiAgICAgICAgImxhdCI6IG51bGwsCiAgICAgICAgImxvbiI6IG51bGwsCiAgICAgICAgInBvc3RhbF9jb2RlIjogbnVsbCwKICAgICAgICAicmVnaW9uIjogbnVsbCwKICAgICAgICAic3RvcmVfbnVtYmVyIjogIjAxMiIKICAgICAgfSwKICAgICAgImxvZ29fdXJsIjogImh0dHBzOi8vcGxhaWQtbWVyY2hhbnQtbG9nb3MucGxhaWQuY29tL3Jvc3Nfc3RvcmVzXzg0MS5wbmciLAogICAgICAibWVyY2hhbnRfZW50aXR5X2lkIjogIkJEdldFelpyTUVEMXZlWlhrcDVhRDIwRXI4WkFLbndWSkRtZDEiLAogICAgICAibWVyY2hhbnRfbmFtZSI6ICJSb3NzIFN0b3JlcyIsCiAgICAgICJuYW1lIjogIlJvc3MgRHJlc3MgZm9yIExlc3MiLAogICAgICAib3JpZ2luYWxfZGVzY3JpcHRpb24iOiAiUk9TUyBTVE9SRSAjMDEyIiwKICAgICAgInBheW1lbnRfY2hhbm5lbCI6ICJpbiBzdG9yZSIsCiAgICAgICJwYXltZW50X21ldGEiOiB7CiAgICAgICAgImJ5X29yZGVyX29mIjogbnVsbCwKICAgICAgICAicGF5ZWUiOiBudWxsLAogICAgICAgICJwYXllciI6IG51bGwsCiAgICAgICAgInBheW1lbnRfbWV0aG9kIjogbnVsbCwKICAgICAgICAicGF5bWVudF9wcm9jZXNzb3IiOiBudWxsLAogICAgICAgICJwcGRfaWQiOiBudWxsLAogICAgICAgICJyZWFzb24iOiBudWxsLAogICAgICAgICJyZWZlcmVuY2VfbnVtYmVyIjogbnVsbAogICAgICB9LAogICAgICAicGVuZGluZyI6IGZhbHNlLAogICAgICAicGVuZGluZ190cmFuc2FjdGlvbl9pZCI6IG51bGwsCiAgICAgICJwZXJzb25hbF9maW5hbmNlX2NhdGVnb3J5IjogewogICAgICAgICJjb25maWRlbmNlX2xldmVsIjogIlZFUllfSElHSCIsCiAgICAgICAgImRldGFpbGVkIjogIkdFTkVSQUxfTUVSQ0hBTkRJU0VfQ0xPVEhJTkdfQU5EX0FDQ0VTU09SSUVTIiwKICAgICAgICAicHJpbWFyeSI6ICJHRU5FUkFMX01FUkNIQU5ESVNFIgogICAgICB9LAogICAgICAicGVyc29uYWxfZmluYW5jZV9jYXRlZ29yeV9pY29uX3VybCI6ICJodHRwczovL3BsYWlkLWNhdGVnb3J5LWljb25zLnBsYWlkLmNvbS9QRkNfR0VORVJBTF9NRVJDSEFORElTRS5wbmciLAogICAgICAidHJhbnNhY3Rpb25fY29kZSI6IG51bGwsCiAgICAgICJ0cmFuc2FjdGlvbl9pZCI6ICJWYlJxUTVyTGRQY242UnFWUDRRZHNYSkcxOFZRM0V0OWdQRUpsIiwKICAgICAgInRyYW5zYWN0aW9uX3R5cGUiOiAicGxhY2UiLAogICAgICAidW5vZmZpY2lhbF9jdXJyZW5jeV9jb2RlIjogbnVsbCwKICAgICAgIndlYnNpdGUiOiAicm9zc3N0b3Jlcy5jb20iCiAgICB9LAogICAgewogICAgICAiYWNjb3VudF9pZCI6ICJadmxCTDVlTVBRdG5YRFY2UXJSOXNSZU5WVnoxWEFpZWFnRFB6IiwKICAgICAgImFjY291bnRfb3duZXIiOiBudWxsLAogICAgICAiYW1vdW50IjogMjcuODIsCiAgICAgICJhdXRob3JpemVkX2RhdGUiOiAiMjAyNC0xMC0wMSIsCiAgICAgICJhdXRob3JpemVkX2RhdGV0aW1lIjogbnVsbCwKICAgICAgImNhdGVnb3J5IjogWwogICAgICAgICJTaG9wcyIsCiAgICAgICAgIk11c2ljLCBWaWRlbyBhbmQgRFZEIgogICAgICBdLAogICAgICAiY2F0ZWdvcnlfaWQiOiAiMTkwMzYwMDAiLAogICAgICAiY2hlY2tfbnVtYmVyIjogbnVsbCwKICAgICAgImNvdW50ZXJwYXJ0aWVzIjogWwogICAgICAgIHsKICAgICAgICAgICJjb25maWRlbmNlX2xldmVsIjogIlZFUllfSElHSCIsCiAgICAgICAgICAiZW50aXR5X2lkIjogInozWHpSZTQ4OHBNZG83TkFuTDQ0TDdydjlMNTUwYmVya3k2bUsiLAogICAgICAgICAgImxvZ29fdXJsIjogImh0dHBzOi8vcGxhaWQtbWVyY2hhbnQtbG9nb3MucGxhaWQuY29tL2FwcGxlX2l0dW5lc18xNDM0LnBuZyIsCiAgICAgICAgICAibmFtZSI6ICJBcHBsZSBpVHVuZXMiLAogICAgICAgICAgInBob25lX251bWJlciI6IG51bGwsCiAgICAgICAgICAidHlwZSI6ICJtZXJjaGFudCIsCiAgICAgICAgICAid2Vic2l0ZSI6ICJhcHBsZS5jb20vaXR1bmVzIgogICAgICAgIH0KICAgICAgXSwKICAgICAgImRhdGUiOiAiMjAyNC0xMC0wMyIsCiAgICAgICJkYXRldGltZSI6IG51bGwsCiAgICAgICJpc29fY3VycmVuY3lfY29kZSI6ICJVU0QiLAogICAgICAibG9jYXRpb24iOiB7CiAgICAgICAgImFkZHJlc3MiOiBudWxsLAogICAgICAgICJjaXR5IjogbnVsbCwKICAgICAgICAiY291bnRyeSI6IG51bGwsCiAgICAgICAgImxhdCI6IG51bGwsCiAgICAgICAgImxvbiI6IG51bGwsCiAgICAgICAgInBvc3RhbF9jb2RlIjogbnVsbCwKICAgICAgICAicmVnaW9uIjogbnVsbCwKICAgICAgICAic3RvcmVfbnVtYmVyIjogbnVsbAogICAgICB9LAogICAgICAibG9nb191cmwiOiAiaHR0cHM6Ly9wbGFpZC1tZXJjaGFudC1sb2dvcy5wbGFpZC5jb20vYXBwbGVfaXR1bmVzXzE0MzQucG5nIiwKICAgICAgIm1lcmNoYW50X2VudGl0eV9pZCI6ICJ6M1h6UmU0ODhwTWRvN05Bbkw0NEw3cnY5TDU1MGJlcmt5Nm1LIiwKICAgICAgIm1lcmNoYW50X25hbWUiOiAiQXBwbGUgaVR1bmVzIiwKICAgICAgIm5hbWUiOiAiaVR1bmVzIiwKICAgICAgIm9yaWdpbmFsX2Rlc2NyaXB0aW9uIjogIkFwcGxlIGlUdW5lcyIsCiAgICAgICJwYXltZW50X2NoYW5uZWwiOiAib25saW5lIiwKICAgICAgInBheW1lbnRfbWV0YSI6IHsKICAgICAgICAiYnlfb3JkZXJfb2YiOiBudWxsLAogICAgICAgICJwYXllZSI6IG51bGwsCiAgICAgICAgInBheWVyIjogbnVsbCwKICAgICAgICAicGF5bWVudF9tZXRob2QiOiBudWxsLAogICAgICAgICJwYXltZW50X3Byb2Nlc3NvciI6IG51bGwsCiAgICAgICAgInBwZF9pZCI6IG51bGwsCiAgICAgICAgInJlYXNvbiI6IG51bGwsCiAgICAgICAgInJlZmVyZW5jZV9udW1iZXIiOiBudWxsCiAgICAgIH0sCiAgICAgICJwZW5kaW5nIjogZmFsc2UsCiAgICAgICJwZW5kaW5nX3RyYW5zYWN0aW9uX2lkIjogbnVsbCwKICAgICAgInBlcnNvbmFsX2ZpbmFuY2VfY2F0ZWdvcnkiOiB7CiAgICAgICAgImNvbmZpZGVuY2VfbGV2ZWwiOiAiVkVSWV9ISUdIIiwKICAgICAgICAiZGV0YWlsZWQiOiAiRU5URVJUQUlOTUVOVF9NVVNJQ19BTkRfQVVESU8iLAogICAgICAgICJwcmltYXJ5IjogIkVOVEVSVEFJTk1FTlQiCiAgICAgIH0sCiAgICAgICJwZXJzb25hbF9maW5hbmNlX2NhdGVnb3J5X2ljb25fdXJsIjogImh0dHBzOi8vcGxhaWQtY2F0ZWdvcnktaWNvbnMucGxhaWQuY29tL1BGQ19FTlRFUlRBSU5NRU5ULnBuZyIsCiAgICAgICJ0cmFuc2FjdGlvbl9jb2RlIjogbnVsbCwKICAgICAgInRyYW5zYWN0aW9uX2lkIjogIndXbnFwakpsZGF0UWJydkp5ZGpFVEtQREIzSjRFOWNQWm9tNksiLAogICAgICAidHJhbnNhY3Rpb25fdHlwZSI6ICJwbGFjZSIsCiAgICAgICJ1bm9mZmljaWFsX2N1cnJlbmN5X2NvZGUiOiBudWxsLAogICAgICAid2Vic2l0ZSI6ICJhcHBsZS5jb20vaXR1bmVzIgogICAgfSwKICAgIHsKICAgICAgImFjY291bnRfaWQiOiAiWnZsQkw1ZU1QUXRuWERWNlFyUjlzUmVOVlZ6MVhBaWVhZ0RQeiIsCiAgICAgICJhY2NvdW50X293bmVyIjogbnVsbCwKICAgICAgImFtb3VudCI6IDM0LjAyLAogICAgICAiYXV0aG9yaXplZF9kYXRlIjogIjIwMjQtMTAtMDMiLAogICAgICAiYXV0aG9yaXplZF9kYXRldGltZSI6IG51bGwsCiAgICAgICJjYXRlZ29yeSI6IFsKICAgICAgICAiRm9vZCBhbmQgRHJpbmsiLAogICAgICAgICJSZXN0YXVyYW50cyIKICAgICAgXSwKICAgICAgImNhdGVnb3J5X2lkIjogIjEzMDA1MDAwIiwKICAgICAgImNoZWNrX251bWJlciI6IG51bGwsCiAgICAgICJjb3VudGVycGFydGllcyI6IFsKICAgICAgICB7CiAgICAgICAgICAiY29uZmlkZW5jZV9sZXZlbCI6ICJWRVJZX0hJR0giLAogICAgICAgICAgImVudGl0eV9pZCI6ICJFWHFwa3dtYno3YjhtTzFBNXYyNHdKTWFLT05BcFZ2b0w5Z2RlIiwKICAgICAgICAgICJsb2dvX3VybCI6ICJodHRwczovL3BsYWlkLW1lcmNoYW50LWxvZ29zLnBsYWlkLmNvbS9kZW5ueXNfMjc0LnBuZyIsCiAgICAgICAgICAibmFtZSI6ICJEZW5ueSdzIiwKICAgICAgICAgICJwaG9uZV9udW1iZXIiOiBudWxsLAogICAgICAgICAgInR5cGUiOiAibWVyY2hhbnQiLAogICAgICAgICAgIndlYnNpdGUiOiAiZGVubnlzLmNvbSIKICAgICAgICB9CiAgICAgIF0sCiAgICAgICJkYXRlIjogIjIwMjQtMTAtMDMiLAogICAgICAiZGF0ZXRpbWUiOiBudWxsLAogICAgICAiaXNvX2N1cnJlbmN5X2NvZGUiOiAiVVNEIiwKICAgICAgImxvY2F0aW9uIjogewogICAgICAgICJhZGRyZXNzIjogbnVsbCwKICAgICAgICAiY2l0eSI6IG51bGwsCiAgICAgICAgImNvdW50cnkiOiBudWxsLAogICAgICAgICJsYXQiOiBudWxsLAogICAgICAgICJsb24iOiBudWxsLAogICAgICAgICJwb3N0YWxfY29kZSI6IG51bGwsCiAgICAgICAgInJlZ2lvbiI6IG51bGwsCiAgICAgICAgInN0b3JlX251bWJlciI6ICIwMTIzIgogICAgICB9LAogICAgICAibG9nb191cmwiOiAiaHR0cHM6Ly9wbGFpZC1tZXJjaGFudC1sb2dvcy5wbGFpZC5jb20vZGVubnlzXzI3NC5wbmciLAogICAgICAibWVyY2hhbnRfZW50aXR5X2lkIjogIkVYcXBrd21iejdiOG1PMUE1djI0d0pNYUtPTkFwVnZvTDlnZGUiLAogICAgICAibWVyY2hhbnRfbmFtZSI6ICJEZW5ueSdzIiwKICAgICAgIm5hbWUiOiAiREVOTlknUyAjMDEyMyAwMTIzNDU2NyIsCiAgICAgICJvcmlnaW5hbF9kZXNjcmlwdGlvbiI6ICJERU5OWSdTICMwMTIzIDAxMjM0NTY3IiwKICAgICAgInBheW1lbnRfY2hhbm5lbCI6ICJpbiBzdG9yZSIsCiAgICAgICJwYXltZW50X21ldGEiOiB7CiAgICAgICAgImJ5X29yZGVyX29mIjogbnVsbCwKICAgICAgICAicGF5ZWUiOiBudWxsLAogICAgICAgICJwYXllciI6IG51bGwsCiAgICAgICAgInBheW1lbnRfbWV0aG9kIjogbnVsbCwKICAgICAgICAicGF5bWVudF9wcm9jZXNzb3IiOiBudWxsLAogICAgICAgICJwcGRfaWQiOiBudWxsLAogICAgICAgICJyZWFzb24iOiBudWxsLAogICAgICAgICJyZWZlcmVuY2VfbnVtYmVyIjogbnVsbAogICAgICB9LAogICAgICAicGVuZGluZyI6IGZhbHNlLAogICAgICAicGVuZGluZ190cmFuc2FjdGlvbl9pZCI6IG51bGwsCiAgICAgICJwZXJzb25hbF9maW5hbmNlX2NhdGVnb3J5IjogewogICAgICAgICJjb25maWRlbmNlX2xldmVsIjogIlZFUllfSElHSCIsCiAgICAgICAgImRldGFpbGVkIjogIkZPT0RfQU5EX0RSSU5LX1JFU1RBVVJBTlQiLAogICAgICAgICJwcmltYXJ5IjogIkZPT0RfQU5EX0RSSU5LIgogICAgICB9LAogICAgICAicGVyc29uYWxfZmluYW5jZV9jYXRlZ29yeV9pY29uX3VybCI6ICJodHRwczovL3BsYWlkLWNhdGVnb3J5LWljb25zLnBsYWlkLmNvbS9QRkNfRk9PRF9BTkRfRFJJTksucG5nIiwKICAgICAgInRyYW5zYWN0aW9uX2NvZGUiOiBudWxsLAogICAgICAidHJhbnNhY3Rpb25faWQiOiAiNXZLNU5nNmJkZXRrWDRkREE2TmJTcVpLN1FEb1hNdTVLNzhETCIsCiAgICAgICJ0cmFuc2FjdGlvbl90eXBlIjogInBsYWNlIiwKICAgICAgInVub2ZmaWNpYWxfY3VycmVuY3lfY29kZSI6IG51bGwsCiAgICAgICJ3ZWJzaXRlIjogImRlbm55cy5jb20iCiAgICB9LAogICAgewogICAgICAiYWNjb3VudF9pZCI6ICJadmxCTDVlTVBRdG5YRFY2UXJSOXNSZU5WVnoxWEFpZWFnRFB6IiwKICAgICAgImFjY291bnRfb3duZXIiOiBudWxsLAogICAgICAiYW1vdW50IjogMTY2LjY3LAogICAgICAiYXV0aG9yaXplZF9kYXRlIjogIjIwMjQtMTAtMDMiLAogICAgICAiYXV0aG9yaXplZF9kYXRldGltZSI6IG51bGwsCiAgICAgICJjYXRlZ29yeSI6IFsKICAgICAgICAiU2hvcHMiLAogICAgICAgICJDbG90aGluZyBhbmQgQWNjZXNzb3JpZXMiCiAgICAgIF0sCiAgICAgICJjYXRlZ29yeV9pZCI6ICIxOTAxMjAwMCIsCiAgICAgICJjaGVja19udW1iZXIiOiBudWxsLAogICAgICAiY291bnRlcnBhcnRpZXMiOiBbCiAgICAgICAgewogICAgICAgICAgImNvbmZpZGVuY2VfbGV2ZWwiOiAiVkVSWV9ISUdIIiwKICAgICAgICAgICJlbnRpdHlfaWQiOiAiWFFveVFWYWozejlhNjAwMlowd0JEeWJRcjAyazhFYWdhcU5xdyIsCiAgICAgICAgICAibG9nb191cmwiOiAiaHR0cHM6Ly9wbGFpZC1tZXJjaGFudC1sb2dvcy5wbGFpZC5jb20vbGV2aXNfMTU3Ni5wbmciLAogICAgICAgICAgIm5hbWUiOiAiTGV2aSdzIiwKICAgICAgICAgICJwaG9uZV9udW1iZXIiOiBudWxsLAogICAgICAgICAgInR5cGUiOiAibWVyY2hhbnQiLAogICAgICAgICAgIndlYnNpdGUiOiAibGV2aS5jb20iCiAgICAgICAgfQogICAgICBdLAogICAgICAiZGF0ZSI6ICIyMDI0LTEwLTAzIiwKICAgICAgImRhdGV0aW1lIjogbnVsbCwKICAgICAgImlzb19jdXJyZW5jeV9jb2RlIjogIlVTRCIsCiAgICAgICJsb2NhdGlvbiI6IHsKICAgICAgICAiYWRkcmVzcyI6IG51bGwsCiAgICAgICAgImNpdHkiOiBudWxsLAogICAgICAgICJjb3VudHJ5IjogbnVsbCwKICAgICAgICAibGF0IjogbnVsbCwKICAgICAgICAibG9uIjogbnVsbCwKICAgICAgICAicG9zdGFsX2NvZGUiOiBudWxsLAogICAgICAgICJyZWdpb24iOiBudWxsLAogICAgICAgICJzdG9yZV9udW1iZXIiOiAiMDEyIgogICAgICB9LAogICAgICAibG9nb191cmwiOiAiaHR0cHM6Ly9wbGFpZC1tZXJjaGFudC1sb2dvcy5wbGFpZC5jb20vbGV2aXNfMTU3Ni5wbmciLAogICAgICAibWVyY2hhbnRfZW50aXR5X2lkIjogIlhRb3lRVmFqM3o5YTYwMDJaMHdCRHliUXIwMms4RWFnYXFOcXciLAogICAgICAibWVyY2hhbnRfbmFtZSI6ICJMZXZpJ3MiLAogICAgICAibmFtZSI6ICJMRVZJJ1MgIzAxMiIsCiAgICAgICJvcmlnaW5hbF9kZXNjcmlwdGlvbiI6ICJMRVZJJ1MgIzAxMiIsCiAgICAgICJwYXltZW50X2NoYW5uZWwiOiAiaW4gc3RvcmUiLAogICAgICAicGF5bWVudF9tZXRhIjogewogICAgICAgICJieV9vcmRlcl9vZiI6IG51bGwsCiAgICAgICAgInBheWVlIjogbnVsbCwKICAgICAgICAicGF5ZXIiOiBudWxsLAogICAgICAgICJwYXltZW50X21ldGhvZCI6IG51bGwsCiAgICAgICAgInBheW1lbnRfcHJvY2Vzc29yIjogbnVsbCwKICAgICAgICAicHBkX2lkIjogbnVsbCwKICAgICAgICAicmVhc29uIjogbnVsbCwKICAgICAgICAicmVmZXJlbmNlX251bWJlciI6IG51bGwKICAgICAgfSwKICAgICAgInBlbmRpbmciOiBmYWxzZSwKICAgICAgInBlbmRpbmdfdHJhbnNhY3Rpb25faWQiOiBudWxsLAogICAgICAicGVyc29uYWxfZmluYW5jZV9jYXRlZ29yeSI6IHsKICAgICAgICAiY29uZmlkZW5jZV9sZXZlbCI6ICJWRVJZX0hJR0giLAogICAgICAgICJkZXRhaWxlZCI6ICJHRU5FUkFMX01FUkNIQU5ESVNFX0NMT1RISU5HX0FORF9BQ0NFU1NPUklFUyIsCiAgICAgICAgInByaW1hcnkiOiAiR0VORVJBTF9NRVJDSEFORElTRSIKICAgICAgfSwKICAgICAgInBlcnNvbmFsX2ZpbmFuY2VfY2F0ZWdvcnlfaWNvbl91cmwiOiAiaHR0cHM6Ly9wbGFpZC1jYXRlZ29yeS1pY29ucy5wbGFpZC5jb20vUEZDX0dFTkVSQUxfTUVSQ0hBTkRJU0UucG5nIiwKICAgICAgInRyYW5zYWN0aW9uX2NvZGUiOiBudWxsLAogICAgICAidHJhbnNhY3Rpb25faWQiOiAiSk1nVno1OXhubGhNMXB5S2xqa2VVQVhaZ0xKRHc2SUI2Z2tMVyIsCiAgICAgICJ0cmFuc2FjdGlvbl90eXBlIjogInBsYWNlIiwKICAgICAgInVub2ZmaWNpYWxfY3VycmVuY3lfY29kZSI6IG51bGwsCiAgICAgICJ3ZWJzaXRlIjogImxldmkuY29tIgogICAgfSwKICAgIHsKICAgICAgImFjY291bnRfaWQiOiAiWnZsQkw1ZU1QUXRuWERWNlFyUjlzUmVOVlZ6MVhBaWVhZ0RQeiIsCiAgICAgICJhY2NvdW50X293bmVyIjogbnVsbCwKICAgICAgImFtb3VudCI6IDguMzUsCiAgICAgICJhdXRob3JpemVkX2RhdGUiOiAiMjAyNC0xMC0wMyIsCiAgICAgICJhdXRob3JpemVkX2RhdGV0aW1lIjogbnVsbCwKICAgICAgImNhdGVnb3J5IjogWwogICAgICAgICJTZXJ2aWNlIiwKICAgICAgICAiRmluYW5jaWFsIiwKICAgICAgICAiTG9hbnMgYW5kIE1vcnRnYWdlcyIKICAgICAgXSwKICAgICAgImNhdGVnb3J5X2lkIjogIjE4MDIwMDA0IiwKICAgICAgImNoZWNrX251bWJlciI6IG51bGwsCiAgICAgICJjb3VudGVycGFydGllcyI6IFtdLAogICAgICAiZGF0ZSI6ICIyMDI0LTEwLTAzIiwKICAgICAgImRhdGV0aW1lIjogbnVsbCwKICAgICAgImlzb19jdXJyZW5jeV9jb2RlIjogIlVTRCIsCiAgICAgICJsb2NhdGlvbiI6IHsKICAgICAgICAiYWRkcmVzcyI6IG51bGwsCiAgICAgICAgImNpdHkiOiBudWxsLAogICAgICAgICJjb3VudHJ5IjogbnVsbCwKICAgICAgICAibGF0IjogbnVsbCwKICAgICAgICAibG9uIjogbnVsbCwKICAgICAgICAicG9zdGFsX2NvZGUiOiBudWxsLAogICAgICAgICJyZWdpb24iOiBudWxsLAogICAgICAgICJzdG9yZV9udW1iZXIiOiBudWxsCiAgICAgIH0sCiAgICAgICJsb2dvX3VybCI6IG51bGwsCiAgICAgICJtZXJjaGFudF9lbnRpdHlfaWQiOiBudWxsLAogICAgICAibWVyY2hhbnRfbmFtZSI6IG51bGwsCiAgICAgICJuYW1lIjogIklOVEVSw4lTIENBUkdBRE8gUE9SIENPTVBSQVMiLAogICAgICAib3JpZ2luYWxfZGVzY3JpcHRpb24iOiAiSU5URVLDiVMgQ0FSR0FETyBQT1IgQ09NUFJBUyIsCiAgICAgICJwYXltZW50X2NoYW5uZWwiOiAib25saW5lIiwKICAgICAgInBheW1lbnRfbWV0YSI6IHsKICAgICAgICAiYnlfb3JkZXJfb2YiOiBudWxsLAogICAgICAgICJwYXllZSI6IG51bGwsCiAgICAgICAgInBheWVyIjogbnVsbCwKICAgICAgICAicGF5bWVudF9tZXRob2QiOiBudWxsLAogICAgICAgICJwYXltZW50X3Byb2Nlc3NvciI6IG51bGwsCiAgICAgICAgInBwZF9pZCI6IG51bGwsCiAgICAgICAgInJlYXNvbiI6IG51bGwsCiAgICAgICAgInJlZmVyZW5jZV9udW1iZXIiOiBudWxsCiAgICAgIH0sCiAgICAgICJwZW5kaW5nIjogZmFsc2UsCiAgICAgICJwZW5kaW5nX3RyYW5zYWN0aW9uX2lkIjogbnVsbCwKICAgICAgInBlcnNvbmFsX2ZpbmFuY2VfY2F0ZWdvcnkiOiB7CiAgICAgICAgImNvbmZpZGVuY2VfbGV2ZWwiOiAiTE9XIiwKICAgICAgICAiZGV0YWlsZWQiOiAiR0VORVJBTF9NRVJDSEFORElTRV9PVEhFUl9HRU5FUkFMX01FUkNIQU5ESVNFIiwKICAgICAgICAicHJpbWFyeSI6ICJHRU5FUkFMX01FUkNIQU5ESVNFIgogICAgICB9LAogICAgICAicGVyc29uYWxfZmluYW5jZV9jYXRlZ29yeV9pY29uX3VybCI6ICJodHRwczovL3BsYWlkLWNhdGVnb3J5LWljb25zLnBsYWlkLmNvbS9QRkNfR0VORVJBTF9NRVJDSEFORElTRS5wbmciLAogICAgICAidHJhbnNhY3Rpb25fY29kZSI6IG51bGwsCiAgICAgICJ0cmFuc2FjdGlvbl9pZCI6ICJrN1pBYXFrRG45SWVMV3ZQTUQzUVRRbXdqQWFlNjFzTDZkb2I0IiwKICAgICAgInRyYW5zYWN0aW9uX3R5cGUiOiAicGxhY2UiLAogICAgICAidW5vZmZpY2lhbF9jdXJyZW5jeV9jb2RlIjogbnVsbCwKICAgICAgIndlYnNpdGUiOiBudWxsCiAgICB9LAogICAgewogICAgICAiYWNjb3VudF9pZCI6ICJadmxCTDVlTVBRdG5YRFY2UXJSOXNSZU5WVnoxWEFpZWFnRFB6IiwKICAgICAgImFjY291bnRfb3duZXIiOiBudWxsLAogICAgICAiYW1vdW50IjogNzYuMjgsCiAgICAgICJhdXRob3JpemVkX2RhdGUiOiAiMjAyNC0xMC0wMyIsCiAgICAgICJhdXRob3JpemVkX2RhdGV0aW1lIjogbnVsbCwKICAgICAgImNhdGVnb3J5IjogWwogICAgICAgICJTaG9wcyIsCiAgICAgICAgIk11c2ljLCBWaWRlbyBhbmQgRFZEIgogICAgICBdLAogICAgICAiY2F0ZWdvcnlfaWQiOiAiMTkwMzYwMDAiLAogICAgICAiY2hlY2tfbnVtYmVyIjogbnVsbCwKICAgICAgImNvdW50ZXJwYXJ0aWVzIjogWwogICAgICAgIHsKICAgICAgICAgICJjb25maWRlbmNlX2xldmVsIjogIlZFUllfSElHSCIsCiAgICAgICAgICAiZW50aXR5X2lkIjogInozWHpSZTQ4OHBNZG83TkFuTDQ0TDdydjlMNTUwYmVya3k2bUsiLAogICAgICAgICAgImxvZ29fdXJsIjogImh0dHBzOi8vcGxhaWQtbWVyY2hhbnQtbG9nb3MucGxhaWQuY29tL2FwcGxlX2l0dW5lc18xNDM0LnBuZyIsCiAgICAgICAgICAibmFtZSI6ICJBcHBsZSBpVHVuZXMiLAogICAgICAgICAgInBob25lX251bWJlciI6IG51bGwsCiAgICAgICAgICAidHlwZSI6ICJtZXJjaGFudCIsCiAgICAgICAgICAid2Vic2l0ZSI6ICJhcHBsZS5jb20vaXR1bmVzIgogICAgICAgIH0KICAgICAgXSwKICAgICAgImRhdGUiOiAiMjAyNC0xMC0wMyIsCiAgICAgICJkYXRldGltZSI6IG51bGwsCiAgICAgICJpc29fY3VycmVuY3lfY29kZSI6ICJVU0QiLAogICAgICAibG9jYXRpb24iOiB7CiAgICAgICAgImFkZHJlc3MiOiBudWxsLAogICAgICAgICJjaXR5IjogbnVsbCwKICAgICAgICAiY291bnRyeSI6IG51bGwsCiAgICAgICAgImxhdCI6IG51bGwsCiAgICAgICAgImxvbiI6IG51bGwsCiAgICAgICAgInBvc3RhbF9jb2RlIjogbnVsbCwKICAgICAgICAicmVnaW9uIjogbnVsbCwKICAgICAgICAic3RvcmVfbnVtYmVyIjogbnVsbAogICAgICB9LAogICAgICAibG9nb191cmwiOiAiaHR0cHM6Ly9wbGFpZC1tZXJjaGFudC1sb2dvcy5wbGFpZC5jb20vYXBwbGVfaXR1bmVzXzE0MzQucG5nIiwKICAgICAgIm1lcmNoYW50X2VudGl0eV9pZCI6ICJ6M1h6UmU0ODhwTWRvN05Bbkw0NEw3cnY5TDU1MGJlcmt5Nm1LIiwKICAgICAgIm1lcmNoYW50X25hbWUiOiAiQXBwbGUgaVR1bmVzIiwKICAgICAgIm5hbWUiOiAiaVR1bmVzIiwKICAgICAgIm9yaWdpbmFsX2Rlc2NyaXB0aW9uIjogIkFQTCogSVRVTkVTLkNPTS9CSUxMIiwKICAgICAgInBheW1lbnRfY2hhbm5lbCI6ICJvbmxpbmUiLAogICAgICAicGF5bWVudF9tZXRhIjogewogICAgICAgICJieV9vcmRlcl9vZiI6IG51bGwsCiAgICAgICAgInBheWVlIjogbnVsbCwKICAgICAgICAicGF5ZXIiOiBudWxsLAogICAgICAgICJwYXltZW50X21ldGhvZCI6IG51bGwsCiAgICAgICAgInBheW1lbnRfcHJvY2Vzc29yIjogIkFwcGxlIiwKICAgICAgICAicHBkX2lkIjogbnVsbCwKICAgICAgICAicmVhc29uIjogbnVsbCwKICAgICAgICAicmVmZXJlbmNlX251bWJlciI6IG51bGwKICAgICAgfSwKICAgICAgInBlbmRpbmciOiBmYWxzZSwKICAgICAgInBlbmRpbmdfdHJhbnNhY3Rpb25faWQiOiBudWxsLAogICAgICAicGVyc29uYWxfZmluYW5jZV9jYXRlZ29yeSI6IHsKICAgICAgICAiY29uZmlkZW5jZV9sZXZlbCI6ICJWRVJZX0hJR0giLAogICAgICAgICJkZXRhaWxlZCI6ICJFTlRFUlRBSU5NRU5UX01VU0lDX0FORF9BVURJTyIsCiAgICAgICAgInByaW1hcnkiOiAiRU5URVJUQUlOTUVOVCIKICAgICAgfSwKICAgICAgInBlcnNvbmFsX2ZpbmFuY2VfY2F0ZWdvcnlfaWNvbl91cmwiOiAiaHR0cHM6Ly9wbGFpZC1jYXRlZ29yeS1pY29ucy5wbGFpZC5jb20vUEZDX0VOVEVSVEFJTk1FTlQucG5nIiwKICAgICAgInRyYW5zYWN0aW9uX2NvZGUiOiBudWxsLAogICAgICAidHJhbnNhY3Rpb25faWQiOiAibGVNQTRLZERidlQ5Umo4YUR3M0FTbHF3Wm1kdkdEaXBvZFJ2RCIsCiAgICAgICJ0cmFuc2FjdGlvbl90eXBlIjogInBsYWNlIiwKICAgICAgInVub2ZmaWNpYWxfY3VycmVuY3lfY29kZSI6IG51bGwsCiAgICAgICJ3ZWJzaXRlIjogImFwcGxlLmNvbS9pdHVuZXMiCiAgICB9LAogICAgewogICAgICAiYWNjb3VudF9pZCI6ICJadmxCTDVlTVBRdG5YRFY2UXJSOXNSZU5WVnoxWEFpZWFnRFB6IiwKICAgICAgImFjY291bnRfb3duZXIiOiBudWxsLAogICAgICAiYW1vdW50IjogMzEyLjkyLAogICAgICAiYXV0aG9yaXplZF9kYXRlIjogIjIwMjQtMTAtMDMiLAogICAgICAiYXV0aG9yaXplZF9kYXRldGltZSI6IG51bGwsCiAgICAgICJjYXRlZ29yeSI6IFsKICAgICAgICAiU2hvcHMiLAogICAgICAgICJXYXJlaG91c2VzIGFuZCBXaG9sZXNhbGUgU3RvcmVzIgogICAgICBdLAogICAgICAiY2F0ZWdvcnlfaWQiOiAiMTkwNTEwMDAiLAogICAgICAiY2hlY2tfbnVtYmVyIjogbnVsbCwKICAgICAgImNvdW50ZXJwYXJ0aWVzIjogWwogICAgICAgIHsKICAgICAgICAgICJjb25maWRlbmNlX2xldmVsIjogIlZFUllfSElHSCIsCiAgICAgICAgICAiZW50aXR5X2lkIjogInBCb3dBb1pKTU05REtSMzdqdk5tek00eVdCQlh5TXpWMnJNM0EiLAogICAgICAgICAgImxvZ29fdXJsIjogImh0dHBzOi8vcGxhaWQtbWVyY2hhbnQtbG9nb3MucGxhaWQuY29tL2Nvc3Rjb18yMzUucG5nIiwKICAgICAgICAgICJuYW1lIjogIkNvc3RjbyIsCiAgICAgICAgICAicGhvbmVfbnVtYmVyIjogbnVsbCwKICAgICAgICAgICJ0eXBlIjogIm1lcmNoYW50IiwKICAgICAgICAgICJ3ZWJzaXRlIjogImNvc3Rjby5jb20iCiAgICAgICAgfQogICAgICBdLAogICAgICAiZGF0ZSI6ICIyMDI0LTEwLTAzIiwKICAgICAgImRhdGV0aW1lIjogbnVsbCwKICAgICAgImlzb19jdXJyZW5jeV9jb2RlIjogIlVTRCIsCiAgICAgICJsb2NhdGlvbiI6IHsKICAgICAgICAiYWRkcmVzcyI6IG51bGwsCiAgICAgICAgImNpdHkiOiBudWxsLAogICAgICAgICJjb3VudHJ5IjogbnVsbCwKICAgICAgICAibGF0IjogbnVsbCwKICAgICAgICAibG9uIjogbnVsbCwKICAgICAgICAicG9zdGFsX2NvZGUiOiBudWxsLAogICAgICAgICJyZWdpb24iOiBudWxsLAogICAgICAgICJzdG9yZV9udW1iZXIiOiAiMDEyMyIKICAgICAgfSwKICAgICAgImxvZ29fdXJsIjogImh0dHBzOi8vcGxhaWQtbWVyY2hhbnQtbG9nb3MucGxhaWQuY29tL2Nvc3Rjb18yMzUucG5nIiwKICAgICAgIm1lcmNoYW50X2VudGl0eV9pZCI6ICJwQm93QW9aSk1NOURLUjM3anZObXpNNHlXQkJYeU16VjJyTTNBIiwKICAgICAgIm1lcmNoYW50X25hbWUiOiAiQ29zdGNvIiwKICAgICAgIm5hbWUiOiAiQ29zdGNvIiwKICAgICAgIm9yaWdpbmFsX2Rlc2NyaXB0aW9uIjogIkNPU1RDTyBXSFNFICMwMTIzIiwKICAgICAgInBheW1lbnRfY2hhbm5lbCI6ICJpbiBzdG9yZSIsCiAgICAgICJwYXltZW50X21ldGEiOiB7CiAgICAgICAgImJ5X29yZGVyX29mIjogbnVsbCwKICAgICAgICAicGF5ZWUiOiBudWxsLAogICAgICAgICJwYXllciI6IG51bGwsCiAgICAgICAgInBheW1lbnRfbWV0aG9kIjogbnVsbCwKICAgICAgICAicGF5bWVudF9wcm9jZXNzb3IiOiBudWxsLAogICAgICAgICJwcGRfaWQiOiBudWxsLAogICAgICAgICJyZWFzb24iOiBudWxsLAogICAgICAgICJyZWZlcmVuY2VfbnVtYmVyIjogbnVsbAogICAgICB9LAogICAgICAicGVuZGluZyI6IGZhbHNlLAogICAgICAicGVuZGluZ190cmFuc2FjdGlvbl9pZCI6IG51bGwsCiAgICAgICJwZXJzb25hbF9maW5hbmNlX2NhdGVnb3J5IjogewogICAgICAgICJjb25maWRlbmNlX2xldmVsIjogIlZFUllfSElHSCIsCiAgICAgICAgImRldGFpbGVkIjogIkdFTkVSQUxfTUVSQ0hBTkRJU0VfU1VQRVJTVE9SRVMiLAogICAgICAgICJwcmltYXJ5IjogIkdFTkVSQUxfTUVSQ0hBTkRJU0UiCiAgICAgIH0sCiAgICAgICJwZXJzb25hbF9maW5hbmNlX2NhdGVnb3J5X2ljb25fdXJsIjogImh0dHBzOi8vcGxhaWQtY2F0ZWdvcnktaWNvbnMucGxhaWQuY29tL1BGQ19HRU5FUkFMX01FUkNIQU5ESVNFLnBuZyIsCiAgICAgICJ0cmFuc2FjdGlvbl9jb2RlIjogbnVsbCwKICAgICAgInRyYW5zYWN0aW9uX2lkIjogImJCZHlsSmdYTGt1MXJ5Vk5ROVhlaHhSZWczNEtHN3RtYlo3d0EiLAogICAgICAidHJhbnNhY3Rpb25fdHlwZSI6ICJwbGFjZSIsCiAgICAgICJ1bm9mZmljaWFsX2N1cnJlbmN5X2NvZGUiOiBudWxsLAogICAgICAid2Vic2l0ZSI6ICJjb3N0Y28uY29tIgogICAgfSwKICAgIHsKICAgICAgImFjY291bnRfaWQiOiAiWnZsQkw1ZU1QUXRuWERWNlFyUjlzUmVOVlZ6MVhBaWVhZ0RQeiIsCiAgICAgICJhY2NvdW50X293bmVyIjogbnVsbCwKICAgICAgImFtb3VudCI6IDkuODMsCiAgICAgICJhdXRob3JpemVkX2RhdGUiOiAiMjAyNC0xMC0wMSIsCiAgICAgICJhdXRob3JpemVkX2RhdGV0aW1lIjogbnVsbCwKICAgICAgImNhdGVnb3J5IjogWwogICAgICAgICJUcmF2ZWwiLAogICAgICAgICJHYXMgU3RhdGlvbnMiCiAgICAgIF0sCiAgICAgICJjYXRlZ29yeV9pZCI6ICIyMjAwOTAwMCIsCiAgICAgICJjaGVja19udW1iZXIiOiBudWxsLAogICAgICAiY291bnRlcnBhcnRpZXMiOiBbCiAgICAgICAgewogICAgICAgICAgImNvbmZpZGVuY2VfbGV2ZWwiOiAiVkVSWV9ISUdIIiwKICAgICAgICAgICJlbnRpdHlfaWQiOiAiOHk3ODUxSlhyeUJua09XT2pXMTYzeXF6QUIwMW9hOGs2ZTFnOSIsCiAgICAgICAgICAibG9nb191cmwiOiAiaHR0cHM6Ly9wbGFpZC1tZXJjaGFudC1sb2dvcy5wbGFpZC5jb20vc2hlbGxfODkxLnBuZyIsCiAgICAgICAgICAibmFtZSI6ICJTaGVsbCIsCiAgICAgICAgICAicGhvbmVfbnVtYmVyIjogbnVsbCwKICAgICAgICAgICJ0eXBlIjogIm1lcmNoYW50IiwKICAgICAgICAgICJ3ZWJzaXRlIjogInNoZWxsLmNvbSIKICAgICAgICB9CiAgICAgIF0sCiAgICAgICJkYXRlIjogIjIwMjQtMTAtMDQiLAogICAgICAiZGF0ZXRpbWUiOiBudWxsLAogICAgICAiaXNvX2N1cnJlbmN5X2NvZGUiOiAiVVNEIiwKICAgICAgImxvY2F0aW9uIjogewogICAgICAgICJhZGRyZXNzIjogbnVsbCwKICAgICAgICAiY2l0eSI6IG51bGwsCiAgICAgICAgImNvdW50cnkiOiBudWxsLAogICAgICAgICJsYXQiOiBudWxsLAogICAgICAgICJsb24iOiBudWxsLAogICAgICAgICJwb3N0YWxfY29kZSI6IG51bGwsCiAgICAgICAgInJlZ2lvbiI6IG51bGwsCiAgICAgICAgInN0b3JlX251bWJlciI6IG51bGwKICAgICAgfSwKICAgICAgImxvZ29fdXJsIjogImh0dHBzOi8vcGxhaWQtbWVyY2hhbnQtbG9nb3MucGxhaWQuY29tL3NoZWxsXzg5MS5wbmciLAogICAgICAibWVyY2hhbnRfZW50aXR5X2lkIjogIjh5Nzg1MUpYcnlCbmtPV09qVzE2M3lxekFCMDFvYThrNmUxZzkiLAogICAgICAibWVyY2hhbnRfbmFtZSI6ICJTaGVsbCIsCiAgICAgICJuYW1lIjogIlNIRUxML1NIRUxMICMuLi4wMTIzIiwKICAgICAgIm9yaWdpbmFsX2Rlc2NyaXB0aW9uIjogIlNIRUxML1NIRUxMICMuLi4wMTIzIiwKICAgICAgInBheW1lbnRfY2hhbm5lbCI6ICJpbiBzdG9yZSIsCiAgICAgICJwYXltZW50X21ldGEiOiB7CiAgICAgICAgImJ5X29yZGVyX29mIjogbnVsbCwKICAgICAgICAicGF5ZWUiOiBudWxsLAogICAgICAgICJwYXllciI6IG51bGwsCiAgICAgICAgInBheW1lbnRfbWV0aG9kIjogbnVsbCwKICAgICAgICAicGF5bWVudF9wcm9jZXNzb3IiOiBudWxsLAogICAgICAgICJwcGRfaWQiOiBudWxsLAogICAgICAgICJyZWFzb24iOiBudWxsLAogICAgICAgICJyZWZlcmVuY2VfbnVtYmVyIjogbnVsbAogICAgICB9LAogICAgICAicGVuZGluZyI6IGZhbHNlLAogICAgICAicGVuZGluZ190cmFuc2FjdGlvbl9pZCI6IG51bGwsCiAgICAgICJwZXJzb25hbF9maW5hbmNlX2NhdGVnb3J5IjogewogICAgICAgICJjb25maWRlbmNlX2xldmVsIjogIlZFUllfSElHSCIsCiAgICAgICAgImRldGFpbGVkIjogIlRSQU5TUE9SVEFUSU9OX0dBUyIsCiAgICAgICAgInByaW1hcnkiOiAiVFJBTlNQT1JUQVRJT04iCiAgICAgIH0sCiAgICAgICJwZXJzb25hbF9maW5hbmNlX2NhdGVnb3J5X2ljb25fdXJsIjogImh0dHBzOi8vcGxhaWQtY2F0ZWdvcnktaWNvbnMucGxhaWQuY29tL1BGQ19UUkFOU1BPUlRBVElPTi5wbmciLAogICAgICAidHJhbnNhY3Rpb25fY29kZSI6IG51bGwsCiAgICAgICJ0cmFuc2FjdGlvbl9pZCI6ICJtUTFBTmtiRG1SZmI0eXZKNm5wTXQ2TG1CajFOeUVjZ3lkWDVxIiwKICAgICAgInRyYW5zYWN0aW9uX3R5cGUiOiAicGxhY2UiLAogICAgICAidW5vZmZpY2lhbF9jdXJyZW5jeV9jb2RlIjogbnVsbCwKICAgICAgIndlYnNpdGUiOiAic2hlbGwuY29tIgogICAgfSwKICAgIHsKICAgICAgImFjY291bnRfaWQiOiAiWnZsQkw1ZU1QUXRuWERWNlFyUjlzUmVOVlZ6MVhBaWVhZ0RQeiIsCiAgICAgICJhY2NvdW50X293bmVyIjogbnVsbCwKICAgICAgImFtb3VudCI6IDIyLjU1LAogICAgICAiYXV0aG9yaXplZF9kYXRlIjogIjIwMjQtMTAtMDEiLAogICAgICAiYXV0aG9yaXplZF9kYXRldGltZSI6IG51bGwsCiAgICAgICJjYXRlZ29yeSI6IFsKICAgICAgICAiU2hvcHMiLAogICAgICAgICJEaWdpdGFsIFB1cmNoYXNlIgogICAgICBdLAogICAgICAiY2F0ZWdvcnlfaWQiOiAiMTkwMTkwMDAiLAogICAgICAiY2hlY2tfbnVtYmVyIjogbnVsbCwKICAgICAgImNvdW50ZXJwYXJ0aWVzIjogWwogICAgICAgIHsKICAgICAgICAgICJjb25maWRlbmNlX2xldmVsIjogIlZFUllfSElHSCIsCiAgICAgICAgICAiZW50aXR5X2lkIjogIjJnT3dtcTlxSzU2SzYwb0RtM2VMclJFVjJCMm1WYWRrUm44TVciLAogICAgICAgICAgImxvZ29fdXJsIjogImh0dHBzOi8vcGxhaWQtbWVyY2hhbnQtbG9nb3MucGxhaWQuY29tL2FtYXpvbl80NC5wbmciLAogICAgICAgICAgIm5hbWUiOiAiQW1hem9uIiwKICAgICAgICAgICJwaG9uZV9udW1iZXIiOiBudWxsLAogICAgICAgICAgInR5cGUiOiAibWVyY2hhbnQiLAogICAgICAgICAgIndlYnNpdGUiOiAiYW1hem9uLmNvbSIKICAgICAgICB9CiAgICAgIF0sCiAgICAgICJkYXRlIjogIjIwMjQtMTAtMDQiLAogICAgICAiZGF0ZXRpbWUiOiBudWxsLAogICAgICAiaXNvX2N1cnJlbmN5X2NvZGUiOiAiVVNEIiwKICAgICAgImxvY2F0aW9uIjogewogICAgICAgICJhZGRyZXNzIjogbnVsbCwKICAgICAgICAiY2l0eSI6IG51bGwsCiAgICAgICAgImNvdW50cnkiOiBudWxsLAogICAgICAgICJsYXQiOiBudWxsLAogICAgICAgICJsb24iOiBudWxsLAogICAgICAgICJwb3N0YWxfY29kZSI6IG51bGwsCiAgICAgICAgInJlZ2lvbiI6IG51bGwsCiAgICAgICAgInN0b3JlX251bWJlciI6IG51bGwKICAgICAgfSwKICAgICAgImxvZ29fdXJsIjogImh0dHBzOi8vcGxhaWQtbWVyY2hhbnQtbG9nb3MucGxhaWQuY29tL2FtYXpvbl80NC5wbmciLAogICAgICAibWVyY2hhbnRfZW50aXR5X2lkIjogIjJnT3dtcTlxSzU2SzYwb0RtM2VMclJFVjJCMm1WYWRrUm44TVciLAogICAgICAibWVyY2hhbnRfbmFtZSI6ICJBbWF6b24iLAogICAgICAibmFtZSI6ICJBbWF6b24uY29tIEFtem4uY29tL2JpbGxXQSIsCiAgICAgICJvcmlnaW5hbF9kZXNjcmlwdGlvbiI6ICJBbWF6b24uY29tIEFtem4uY29tL2JpbGxXQSIsCiAgICAgICJwYXltZW50X2NoYW5uZWwiOiAib25saW5lIiwKICAgICAgInBheW1lbnRfbWV0YSI6IHsKICAgICAgICAiYnlfb3JkZXJfb2YiOiBudWxsLAogICAgICAgICJwYXllZSI6IG51bGwsCiAgICAgICAgInBheWVyIjogbnVsbCwKICAgICAgICAicGF5bWVudF9tZXRob2QiOiBudWxsLAogICAgICAgICJwYXltZW50X3Byb2Nlc3NvciI6IG51bGwsCiAgICAgICAgInBwZF9pZCI6IG51bGwsCiAgICAgICAgInJlYXNvbiI6IG51bGwsCiAgICAgICAgInJlZmVyZW5jZV9udW1iZXIiOiBudWxsCiAgICAgIH0sCiAgICAgICJwZW5kaW5nIjogZmFsc2UsCiAgICAgICJwZW5kaW5nX3RyYW5zYWN0aW9uX2lkIjogbnVsbCwKICAgICAgInBlcnNvbmFsX2ZpbmFuY2VfY2F0ZWdvcnkiOiB7CiAgICAgICAgImNvbmZpZGVuY2VfbGV2ZWwiOiAiVkVSWV9ISUdIIiwKICAgICAgICAiZGV0YWlsZWQiOiAiR0VORVJBTF9NRVJDSEFORElTRV9PTkxJTkVfTUFSS0VUUExBQ0VTIiwKICAgICAgICAicHJpbWFyeSI6ICJHRU5FUkFMX01FUkNIQU5ESVNFIgogICAgICB9LAogICAgICAicGVyc29uYWxfZmluYW5jZV9jYXRlZ29yeV9pY29uX3VybCI6ICJodHRwczovL3BsYWlkLWNhdGVnb3J5LWljb25zLnBsYWlkLmNvbS9QRkNfR0VORVJBTF9NRVJDSEFORElTRS5wbmciLAogICAgICAidHJhbnNhY3Rpb25fY29kZSI6IG51bGwsCiAgICAgICJ0cmFuc2FjdGlvbl9pZCI6ICJ5R21yZ2U1SzRORnBEUXdlQkw0eXVQTTM1cnhkWFppNDZYd3FFIiwKICAgICAgInRyYW5zYWN0aW9uX3R5cGUiOiAiZGlnaXRhbCIsCiAgICAgICJ1bm9mZmljaWFsX2N1cnJlbmN5X2NvZGUiOiBudWxsLAogICAgICAid2Vic2l0ZSI6ICJhbWF6b24uY29tIgogICAgfSwKICAgIHsKICAgICAgImFjY291bnRfaWQiOiAiWnZsQkw1ZU1QUXRuWERWNlFyUjlzUmVOVlZ6MVhBaWVhZ0RQeiIsCiAgICAgICJhY2NvdW50X293bmVyIjogbnVsbCwKICAgICAgImFtb3VudCI6IDE5LjU4LAogICAgICAiYXV0aG9yaXplZF9kYXRlIjogIjIwMjQtMTAtMDEiLAogICAgICAiYXV0aG9yaXplZF9kYXRldGltZSI6IG51bGwsCiAgICAgICJjYXRlZ29yeSI6IFsKICAgICAgICAiU2hvcHMiLAogICAgICAgICJBcnRzIGFuZCBDcmFmdHMiCiAgICAgIF0sCiAgICAgICJjYXRlZ29yeV9pZCI6ICIxOTAwMzAwMCIsCiAgICAgICJjaGVja19udW1iZXIiOiBudWxsLAogICAgICAiY291bnRlcnBhcnRpZXMiOiBbCiAgICAgICAgewogICAgICAgICAgImNvbmZpZGVuY2VfbGV2ZWwiOiAiVkVSWV9ISUdIIiwKICAgICAgICAgICJlbnRpdHlfaWQiOiAiZFFSMEI5TEFka2J6MGpWRHJFa1I5UUszZDlNRU9LOFIzcUFPTiIsCiAgICAgICAgICAibG9nb191cmwiOiAiaHR0cHM6Ly9wbGFpZC1tZXJjaGFudC1sb2dvcy5wbGFpZC5jb20vbWljaGFlbHNfNjMzLnBuZyIsCiAgICAgICAgICAibmFtZSI6ICJNaWNoYWVscyIsCiAgICAgICAgICAicGhvbmVfbnVtYmVyIjogbnVsbCwKICAgICAgICAgICJ0eXBlIjogIm1lcmNoYW50IiwKICAgICAgICAgICJ3ZWJzaXRlIjogIm1pY2hhZWxzLmNvbSIKICAgICAgICB9CiAgICAgIF0sCiAgICAgICJkYXRlIjogIjIwMjQtMTAtMDQiLAogICAgICAiZGF0ZXRpbWUiOiBudWxsLAogICAgICAiaXNvX2N1cnJlbmN5X2NvZGUiOiAiVVNEIiwKICAgICAgImxvY2F0aW9uIjogewogICAgICAgICJhZGRyZXNzIjogIjE4IFcgTGlnaHRjYXAgUmQgU3RlIDQwMSIsCiAgICAgICAgImNpdHkiOiAiUG90dHN0b3duIiwKICAgICAgICAiY291bnRyeSI6IG51bGwsCiAgICAgICAgImxhdCI6IDQwLjIzNjY3NSwKICAgICAgICAibG9uIjogLTc1LjU3MjU2MywKICAgICAgICAicG9zdGFsX2NvZGUiOiAiMTk0NjQiLAogICAgICAgICJyZWdpb24iOiAiUEEiLAogICAgICAgICJzdG9yZV9udW1iZXIiOiBudWxsCiAgICAgIH0sCiAgICAgICJsb2dvX3VybCI6ICJodHRwczovL3BsYWlkLW1lcmNoYW50LWxvZ29zLnBsYWlkLmNvbS9taWNoYWVsc182MzMucG5nIiwKICAgICAgIm1lcmNoYW50X2VudGl0eV9pZCI6ICJkUVIwQjlMQWRrYnowalZEckVrUjlRSzNkOU1FT0s4UjNxQU9OIiwKICAgICAgIm1lcmNoYW50X25hbWUiOiAiTWljaGFlbHMiLAogICAgICAibmFtZSI6ICJNaWNoYWVscyIsCiAgICAgICJvcmlnaW5hbF9kZXNjcmlwdGlvbiI6ICJNSUNIQUVMUyBTVE9SRVMgMDEyMyIsCiAgICAgICJwYXltZW50X2NoYW5uZWwiOiAiaW4gc3RvcmUiLAogICAgICAicGF5bWVudF9tZXRhIjogewogICAgICAgICJieV9vcmRlcl9vZiI6IG51bGwsCiAgICAgICAgInBheWVlIjogbnVsbCwKICAgICAgICAicGF5ZXIiOiBudWxsLAogICAgICAgICJwYXltZW50X21ldGhvZCI6IG51bGwsCiAgICAgICAgInBheW1lbnRfcHJvY2Vzc29yIjogbnVsbCwKICAgICAgICAicHBkX2lkIjogbnVsbCwKICAgICAgICAicmVhc29uIjogbnVsbCwKICAgICAgICAicmVmZXJlbmNlX251bWJlciI6IG51bGwKICAgICAgfSwKICAgICAgInBlbmRpbmciOiBmYWxzZSwKICAgICAgInBlbmRpbmdfdHJhbnNhY3Rpb25faWQiOiBudWxsLAogICAgICAicGVyc29uYWxfZmluYW5jZV9jYXRlZ29yeSI6IHsKICAgICAgICAiY29uZmlkZW5jZV9sZXZlbCI6ICJWRVJZX0hJR0giLAogICAgICAgICJkZXRhaWxlZCI6ICJHRU5FUkFMX01FUkNIQU5ESVNFX09USEVSX0dFTkVSQUxfTUVSQ0hBTkRJU0UiLAogICAgICAgICJwcmltYXJ5IjogIkdFTkVSQUxfTUVSQ0hBTkRJU0UiCiAgICAgIH0sCiAgICAgICJwZXJzb25hbF9maW5hbmNlX2NhdGVnb3J5X2ljb25fdXJsIjogImh0dHBzOi8vcGxhaWQtY2F0ZWdvcnktaWNvbnMucGxhaWQuY29tL1BGQ19HRU5FUkFMX01FUkNIQU5ESVNFLnBuZyIsCiAgICAgICJ0cmFuc2FjdGlvbl9jb2RlIjogbnVsbCwKICAgICAgInRyYW5zYWN0aW9uX2lkIjogIjlxMzZlQUs3UDFpcUdNUGJBMzR5VUFaVjdObUxvakk0eFFnV0EiLAogICAgICAidHJhbnNhY3Rpb25fdHlwZSI6ICJwbGFjZSIsCiAgICAgICJ1bm9mZmljaWFsX2N1cnJlbmN5X2NvZGUiOiBudWxsLAogICAgICAid2Vic2l0ZSI6ICJtaWNoYWVscy5jb20iCiAgICB9LAogICAgewogICAgICAiYWNjb3VudF9pZCI6ICJadmxCTDVlTVBRdG5YRFY2UXJSOXNSZU5WVnoxWEFpZWFnRFB6IiwKICAgICAgImFjY291bnRfb3duZXIiOiBudWxsLAogICAgICAiYW1vdW50IjogMjcuNDQsCiAgICAgICJhdXRob3JpemVkX2RhdGUiOiAiMjAyNC0xMC0wMyIsCiAgICAgICJhdXRob3JpemVkX2RhdGV0aW1lIjogbnVsbCwKICAgICAgImNhdGVnb3J5IjogWwogICAgICAgICJUcmF2ZWwiLAogICAgICAgICJHYXMgU3RhdGlvbnMiCiAgICAgIF0sCiAgICAgICJjYXRlZ29yeV9pZCI6ICIyMjAwOTAwMCIsCiAgICAgICJjaGVja19udW1iZXIiOiBudWxsLAogICAgICAiY291bnRlcnBhcnRpZXMiOiBbCiAgICAgICAgewogICAgICAgICAgImNvbmZpZGVuY2VfbGV2ZWwiOiAiTE9XIiwKICAgICAgICAgICJlbnRpdHlfaWQiOiBudWxsLAogICAgICAgICAgImxvZ29fdXJsIjogbnVsbCwKICAgICAgICAgICJuYW1lIjogIlN0b3JlIiwKICAgICAgICAgICJwaG9uZV9udW1iZXIiOiBudWxsLAogICAgICAgICAgInR5cGUiOiAibWVyY2hhbnQiLAogICAgICAgICAgIndlYnNpdGUiOiBudWxsCiAgICAgICAgfQogICAgICBdLAogICAgICAiZGF0ZSI6ICIyMDI0LTEwLTA0IiwKICAgICAgImRhdGV0aW1lIjogbnVsbCwKICAgICAgImlzb19jdXJyZW5jeV9jb2RlIjogIlVTRCIsCiAgICAgICJsb2NhdGlvbiI6IHsKICAgICAgICAiYWRkcmVzcyI6IG51bGwsCiAgICAgICAgImNpdHkiOiBudWxsLAogICAgICAgICJjb3VudHJ5IjogbnVsbCwKICAgICAgICAibGF0IjogbnVsbCwKICAgICAgICAibG9uIjogbnVsbCwKICAgICAgICAicG9zdGFsX2NvZGUiOiBudWxsLAogICAgICAgICJyZWdpb24iOiBudWxsLAogICAgICAgICJzdG9yZV9udW1iZXIiOiBudWxsCiAgICAgIH0sCiAgICAgICJsb2dvX3VybCI6IG51bGwsCiAgICAgICJtZXJjaGFudF9lbnRpdHlfaWQiOiBudWxsLAogICAgICAibWVyY2hhbnRfbmFtZSI6ICJTdG9yZSIsCiAgICAgICJuYW1lIjogIkNPUk5FUiBTVE9SRSAwMTIzIiwKICAgICAgIm9yaWdpbmFsX2Rlc2NyaXB0aW9uIjogIkNPUk5FUiBTVE9SRSAwMTIzIiwKICAgICAgInBheW1lbnRfY2hhbm5lbCI6ICJpbiBzdG9yZSIsCiAgICAgICJwYXltZW50X21ldGEiOiB7CiAgICAgICAgImJ5X29yZGVyX29mIjogbnVsbCwKICAgICAgICAicGF5ZWUiOiBudWxsLAogICAgICAgICJwYXllciI6IG51bGwsCiAgICAgICAgInBheW1lbnRfbWV0aG9kIjogbnVsbCwKICAgICAgICAicGF5bWVudF9wcm9jZXNzb3IiOiBudWxsLAogICAgICAgICJwcGRfaWQiOiBudWxsLAogICAgICAgICJyZWFzb24iOiBudWxsLAogICAgICAgICJyZWZlcmVuY2VfbnVtYmVyIjogbnVsbAogICAgICB9LAogICAgICAicGVuZGluZyI6IGZhbHNlLAogICAgICAicGVuZGluZ190cmFuc2FjdGlvbl9pZCI6IG51bGwsCiAgICAgICJwZXJzb25hbF9maW5hbmNlX2NhdGVnb3J5IjogewogICAgICAgICJjb25maWRlbmNlX2xldmVsIjogIkxPVyIsCiAgICAgICAgImRldGFpbGVkIjogIkdFTkVSQUxfTUVSQ0hBTkRJU0VfT1RIRVJfR0VORVJBTF9NRVJDSEFORElTRSIsCiAgICAgICAgInByaW1hcnkiOiAiR0VORVJBTF9NRVJDSEFORElTRSIKICAgICAgfSwKICAgICAgInBlcnNvbmFsX2ZpbmFuY2VfY2F0ZWdvcnlfaWNvbl91cmwiOiAiaHR0cHM6Ly9wbGFpZC1jYXRlZ29yeS1pY29ucy5wbGFpZC5jb20vUEZDX0dFTkVSQUxfTUVSQ0hBTkRJU0UucG5nIiwKICAgICAgInRyYW5zYWN0aW9uX2NvZGUiOiBudWxsLAogICAgICAidHJhbnNhY3Rpb25faWQiOiAidkVHbExQQUR4ZFQ3clZ2TUtveHBzYm96cTNOeGtHaXE2azEzciIsCiAgICAgICJ0cmFuc2FjdGlvbl90eXBlIjogInBsYWNlIiwKICAgICAgInVub2ZmaWNpYWxfY3VycmVuY3lfY29kZSI6IG51bGwsCiAgICAgICJ3ZWJzaXRlIjogbnVsbAogICAgfSwKICAgIHsKICAgICAgImFjY291bnRfaWQiOiAiWnZsQkw1ZU1QUXRuWERWNlFyUjlzUmVOVlZ6MVhBaWVhZ0RQeiIsCiAgICAgICJhY2NvdW50X293bmVyIjogbnVsbCwKICAgICAgImFtb3VudCI6IDYuNCwKICAgICAgImF1dGhvcml6ZWRfZGF0ZSI6ICIyMDI0LTEwLTAzIiwKICAgICAgImF1dGhvcml6ZWRfZGF0ZXRpbWUiOiBudWxsLAogICAgICAiY2F0ZWdvcnkiOiBbCiAgICAgICAgIkZvb2QgYW5kIERyaW5rIiwKICAgICAgICAiUmVzdGF1cmFudHMiLAogICAgICAgICJGYXN0IEZvb2QiCiAgICAgIF0sCiAgICAgICJjYXRlZ29yeV9pZCI6ICIxMzAwNTAzMiIsCiAgICAgICJjaGVja19udW1iZXIiOiBudWxsLAogICAgICAiY291bnRlcnBhcnRpZXMiOiBbCiAgICAgICAgewogICAgICAgICAgImNvbmZpZGVuY2VfbGV2ZWwiOiAiVkVSWV9ISUdIIiwKICAgICAgICAgICJlbnRpdHlfaWQiOiAiTWV6d0V2ODJ3UVpFa25yUWt6ck83bktCVzBxWlhvNGVMOE5YTCIsCiAgICAgICAgICAibG9nb191cmwiOiAiaHR0cHM6Ly9wbGFpZC1tZXJjaGFudC1sb2dvcy5wbGFpZC5jb20vd2hhdGFidXJnZXJfMTExOC5wbmciLAogICAgICAgICAgIm5hbWUiOiAiV2hhdGFidXJnZXIiLAogICAgICAgICAgInBob25lX251bWJlciI6IG51bGwsCiAgICAgICAgICAidHlwZSI6ICJtZXJjaGFudCIsCiAgICAgICAgICAid2Vic2l0ZSI6ICJ3aGF0YWJ1cmdlci5jb20iCiAgICAgICAgfQogICAgICBdLAogICAgICAiZGF0ZSI6ICIyMDI0LTEwLTA0IiwKICAgICAgImRhdGV0aW1lIjogbnVsbCwKICAgICAgImlzb19jdXJyZW5jeV9jb2RlIjogIlVTRCIsCiAgICAgICJsb2NhdGlvbiI6IHsKICAgICAgICAiYWRkcmVzcyI6ICIyMDE4IFMgU3RhcGxlcyBTdCIsCiAgICAgICAgImNpdHkiOiAiQ29ycHVzIENocmlzdGkiLAogICAgICAgICJjb3VudHJ5IjogbnVsbCwKICAgICAgICAibGF0IjogMjcuNzY1Nzg3LAogICAgICAgICJsb24iOiAtOTcuNDAyNjk1LAogICAgICAgICJwb3N0YWxfY29kZSI6ICI3ODQwNCIsCiAgICAgICAgInJlZ2lvbiI6ICJUWCIsCiAgICAgICAgInN0b3JlX251bWJlciI6IG51bGwKICAgICAgfSwKICAgICAgImxvZ29fdXJsIjogImh0dHBzOi8vcGxhaWQtbWVyY2hhbnQtbG9nb3MucGxhaWQuY29tL3doYXRhYnVyZ2VyXzExMTgucG5nIiwKICAgICAgIm1lcmNoYW50X2VudGl0eV9pZCI6ICJNZXp3RXY4MndRWkVrbnJRa3pyTzduS0JXMHFaWG80ZUw4TlhMIiwKICAgICAgIm1lcmNoYW50X25hbWUiOiAiV2hhdGFidXJnZXIiLAogICAgICAibmFtZSI6ICJXaGF0YWJ1cmdlciIsCiAgICAgICJvcmlnaW5hbF9kZXNjcmlwdGlvbiI6ICJXSEFUQUJVUkdFUiAwMTIiLAogICAgICAicGF5bWVudF9jaGFubmVsIjogImluIHN0b3JlIiwKICAgICAgInBheW1lbnRfbWV0YSI6IHsKICAgICAgICAiYnlfb3JkZXJfb2YiOiBudWxsLAogICAgICAgICJwYXllZSI6IG51bGwsCiAgICAgICAgInBheWVyIjogbnVsbCwKICAgICAgICAicGF5bWVudF9tZXRob2QiOiBudWxsLAogICAgICAgICJwYXltZW50X3Byb2Nlc3NvciI6IG51bGwsCiAgICAgICAgInBwZF9pZCI6IG51bGwsCiAgICAgICAgInJlYXNvbiI6IG51bGwsCiAgICAgICAgInJlZmVyZW5jZV9udW1iZXIiOiBudWxsCiAgICAgIH0sCiAgICAgICJwZW5kaW5nIjogZmFsc2UsCiAgICAgICJwZW5kaW5nX3RyYW5zYWN0aW9uX2lkIjogbnVsbCwKICAgICAgInBlcnNvbmFsX2ZpbmFuY2VfY2F0ZWdvcnkiOiB7CiAgICAgICAgImNvbmZpZGVuY2VfbGV2ZWwiOiAiVkVSWV9ISUdIIiwKICAgICAgICAiZGV0YWlsZWQiOiAiRk9PRF9BTkRfRFJJTktfRkFTVF9GT09EIiwKICAgICAgICAicHJpbWFyeSI6ICJGT09EX0FORF9EUklOSyIKICAgICAgfSwKICAgICAgInBlcnNvbmFsX2ZpbmFuY2VfY2F0ZWdvcnlfaWNvbl91cmwiOiAiaHR0cHM6Ly9wbGFpZC1jYXRlZ29yeS1pY29ucy5wbGFpZC5jb20vUEZDX0ZPT0RfQU5EX0RSSU5LLnBuZyIsCiAgICAgICJ0cmFuc2FjdGlvbl9jb2RlIjogbnVsbCwKICAgICAgInRyYW5zYWN0aW9uX2lkIjogIlJXbUdQNW9NemR0cmVSb2pkbTl6aTV3RXZtcU5WcEhhcGJBdkIiLAogICAgICAidHJhbnNhY3Rpb25fdHlwZSI6ICJwbGFjZSIsCiAgICAgICJ1bm9mZmljaWFsX2N1cnJlbmN5X2NvZGUiOiBudWxsLAogICAgICAid2Vic2l0ZSI6ICJ3aGF0YWJ1cmdlci5jb20iCiAgICB9LAogICAgewogICAgICAiYWNjb3VudF9pZCI6ICJadmxCTDVlTVBRdG5YRFY2UXJSOXNSZU5WVnoxWEFpZWFnRFB6IiwKICAgICAgImFjY291bnRfb3duZXIiOiBudWxsLAogICAgICAiYW1vdW50IjogNS43MiwKICAgICAgImF1dGhvcml6ZWRfZGF0ZSI6ICIyMDI0LTEwLTA0IiwKICAgICAgImF1dGhvcml6ZWRfZGF0ZXRpbWUiOiBudWxsLAogICAgICAiY2F0ZWdvcnkiOiBbCiAgICAgICAgIlNlcnZpY2UiLAogICAgICAgICJTaGlwcGluZyBhbmQgRnJlaWdodCIKICAgICAgXSwKICAgICAgImNhdGVnb3J5X2lkIjogIjE4MDU4MDAwIiwKICAgICAgImNoZWNrX251bWJlciI6IG51bGwsCiAgICAgICJjb3VudGVycGFydGllcyI6IFsKICAgICAgICB7CiAgICAgICAgICAiY29uZmlkZW5jZV9sZXZlbCI6ICJWRVJZX0hJR0giLAogICAgICAgICAgImVudGl0eV9pZCI6ICJ6d2tqclFiYkRRcVpKUmszZWdPQW8wWEI3am55Z05ESms5Vmp6IiwKICAgICAgICAgICJsb2dvX3VybCI6ICJodHRwczovL3BsYWlkLWNvdW50ZXJwYXJ0eS1sb2dvcy5wbGFpZC5jb20vcGF5cGFsXzc2LnBuZyIsCiAgICAgICAgICAibmFtZSI6ICJQYXlQYWwiLAogICAgICAgICAgInBob25lX251bWJlciI6IG51bGwsCiAgICAgICAgICAidHlwZSI6ICJwYXltZW50X2FwcCIsCiAgICAgICAgICAid2Vic2l0ZSI6ICJwYXlwYWwuY29tIgogICAgICAgIH0KICAgICAgXSwKICAgICAgImRhdGUiOiAiMjAyNC0xMC0wNCIsCiAgICAgICJkYXRldGltZSI6IG51bGwsCiAgICAgICJpc29fY3VycmVuY3lfY29kZSI6ICJVU0QiLAogICAgICAibG9jYXRpb24iOiB7CiAgICAgICAgImFkZHJlc3MiOiBudWxsLAogICAgICAgICJjaXR5IjogbnVsbCwKICAgICAgICAiY291bnRyeSI6IG51bGwsCiAgICAgICAgImxhdCI6IG51bGwsCiAgICAgICAgImxvbiI6IG51bGwsCiAgICAgICAgInBvc3RhbF9jb2RlIjogbnVsbCwKICAgICAgICAicmVnaW9uIjogbnVsbCwKICAgICAgICAic3RvcmVfbnVtYmVyIjogbnVsbAogICAgICB9LAogICAgICAibG9nb191cmwiOiBudWxsLAogICAgICAibWVyY2hhbnRfZW50aXR5X2lkIjogbnVsbCwKICAgICAgIm1lcmNoYW50X25hbWUiOiBudWxsLAogICAgICAibmFtZSI6ICJVU1BPU1RBTFNFUiIsCiAgICAgICJvcmlnaW5hbF9kZXNjcmlwdGlvbiI6ICJQQVlQQUwgKlVTUE9TVEFMU0VSIiwKICAgICAgInBheW1lbnRfY2hhbm5lbCI6ICJvbmxpbmUiLAogICAgICAicGF5bWVudF9tZXRhIjogewogICAgICAgICJieV9vcmRlcl9vZiI6IG51bGwsCiAgICAgICAgInBheWVlIjogbnVsbCwKICAgICAgICAicGF5ZXIiOiBudWxsLAogICAgICAgICJwYXltZW50X21ldGhvZCI6IG51bGwsCiAgICAgICAgInBheW1lbnRfcHJvY2Vzc29yIjogIlBheVBhbCIsCiAgICAgICAgInBwZF9pZCI6IG51bGwsCiAgICAgICAgInJlYXNvbiI6IG51bGwsCiAgICAgICAgInJlZmVyZW5jZV9udW1iZXIiOiBudWxsCiAgICAgIH0sCiAgICAgICJwZW5kaW5nIjogZmFsc2UsCiAgICAgICJwZW5kaW5nX3RyYW5zYWN0aW9uX2lkIjogbnVsbCwKICAgICAgInBlcnNvbmFsX2ZpbmFuY2VfY2F0ZWdvcnkiOiB7CiAgICAgICAgImNvbmZpZGVuY2VfbGV2ZWwiOiAiTE9XIiwKICAgICAgICAiZGV0YWlsZWQiOiAiR0VORVJBTF9TRVJWSUNFU19QT1NUQUdFX0FORF9TSElQUElORyIsCiAgICAgICAgInByaW1hcnkiOiAiR0VORVJBTF9TRVJWSUNFUyIKICAgICAgfSwKICAgICAgInBlcnNvbmFsX2ZpbmFuY2VfY2F0ZWdvcnlfaWNvbl91cmwiOiAiaHR0cHM6Ly9wbGFpZC1jYXRlZ29yeS1pY29ucy5wbGFpZC5jb20vUEZDX0dFTkVSQUxfU0VSVklDRVMucG5nIiwKICAgICAgInRyYW5zYWN0aW9uX2NvZGUiOiBudWxsLAogICAgICAidHJhbnNhY3Rpb25faWQiOiAiNlJydlA4ZDZhUXQ4UmRhRUF3V2tGYnlENmxSV2pMaThEWGVvcCIsCiAgICAgICJ0cmFuc2FjdGlvbl90eXBlIjogInBsYWNlIiwKICAgICAgInVub2ZmaWNpYWxfY3VycmVuY3lfY29kZSI6IG51bGwsCiAgICAgICJ3ZWJzaXRlIjogbnVsbAogICAgfSwKICAgIHsKICAgICAgImFjY291bnRfaWQiOiAiWnZsQkw1ZU1QUXRuWERWNlFyUjlzUmVOVlZ6MVhBaWVhZ0RQeiIsCiAgICAgICJhY2NvdW50X293bmVyIjogbnVsbCwKICAgICAgImFtb3VudCI6IDIuNjMsCiAgICAgICJhdXRob3JpemVkX2RhdGUiOiAiMjAyNC0xMC0wMSIsCiAgICAgICJhdXRob3JpemVkX2RhdGV0aW1lIjogbnVsbCwKICAgICAgImNhdGVnb3J5IjogWwogICAgICAgICJTaG9wcyIsCiAgICAgICAgIk11c2ljLCBWaWRlbyBhbmQgRFZEIgogICAgICBdLAogICAgICAiY2F0ZWdvcnlfaWQiOiAiMTkwMzYwMDAiLAogICAgICAiY2hlY2tfbnVtYmVyIjogbnVsbCwKICAgICAgImNvdW50ZXJwYXJ0aWVzIjogWwogICAgICAgIHsKICAgICAgICAgICJjb25maWRlbmNlX2xldmVsIjogIlZFUllfSElHSCIsCiAgICAgICAgICAiZW50aXR5X2lkIjogInI3TUE5MTBKSkVMS3BZZWtkQXo2bjM0MzczUlF3MmEzTm41MkUiLAogICAgICAgICAgImxvZ29fdXJsIjogImh0dHBzOi8vcGxhaWQtbWVyY2hhbnQtbG9nb3MucGxhaWQuY29tL3JlZGJveF84MTYucG5nIiwKICAgICAgICAgICJuYW1lIjogIlJlZGJveCIsCiAgICAgICAgICAicGhvbmVfbnVtYmVyIjogbnVsbCwKICAgICAgICAgICJ0eXBlIjogIm1lcmNoYW50IiwKICAgICAgICAgICJ3ZWJzaXRlIjogInJlZGJveC5jb20iCiAgICAgICAgfQogICAgICBdLAogICAgICAiZGF0ZSI6ICIyMDI0LTEwLTA2IiwKICAgICAgImRhdGV0aW1lIjogbnVsbCwKICAgICAgImlzb19jdXJyZW5jeV9jb2RlIjogIlVTRCIsCiAgICAgICJsb2NhdGlvbiI6IHsKICAgICAgICAiYWRkcmVzcyI6IG51bGwsCiAgICAgICAgImNpdHkiOiBudWxsLAogICAgICAgICJjb3VudHJ5IjogbnVsbCwKICAgICAgICAibGF0IjogbnVsbCwKICAgICAgICAibG9uIjogbnVsbCwKICAgICAgICAicG9zdGFsX2NvZGUiOiBudWxsLAogICAgICAgICJyZWdpb24iOiAiSUwiLAogICAgICAgICJzdG9yZV9udW1iZXIiOiBudWxsCiAgICAgIH0sCiAgICAgICJsb2dvX3VybCI6ICJodHRwczovL3BsYWlkLW1lcmNoYW50LWxvZ29zLnBsYWlkLmNvbS9yZWRib3hfODE2LnBuZyIsCiAgICAgICJtZXJjaGFudF9lbnRpdHlfaWQiOiAicjdNQTkxMEpKRUxLcFlla2RBejZuMzQzNzNSUXcyYTNObjUyRSIsCiAgICAgICJtZXJjaGFudF9uYW1lIjogIlJlZGJveCIsCiAgICAgICJuYW1lIjogIlJlZGJveCIsCiAgICAgICJvcmlnaW5hbF9kZXNjcmlwdGlvbiI6ICJSRURCT1ggKkRWRCBSRU5UQUwgMDEyLTAxMi0wMTIzIElMIiwKICAgICAgInBheW1lbnRfY2hhbm5lbCI6ICJvbmxpbmUiLAogICAgICAicGF5bWVudF9tZXRhIjogewogICAgICAgICJieV9vcmRlcl9vZiI6IG51bGwsCiAgICAgICAgInBheWVlIjogbnVsbCwKICAgICAgICAicGF5ZXIiOiBudWxsLAogICAgICAgICJwYXltZW50X21ldGhvZCI6IG51bGwsCiAgICAgICAgInBheW1lbnRfcHJvY2Vzc29yIjogbnVsbCwKICAgICAgICAicHBkX2lkIjogbnVsbCwKICAgICAgICAicmVhc29uIjogbnVsbCwKICAgICAgICAicmVmZXJlbmNlX251bWJlciI6IG51bGwKICAgICAgfSwKICAgICAgInBlbmRpbmciOiBmYWxzZSwKICAgICAgInBlbmRpbmdfdHJhbnNhY3Rpb25faWQiOiBudWxsLAogICAgICAicGVyc29uYWxfZmluYW5jZV9jYXRlZ29yeSI6IHsKICAgICAgICAiY29uZmlkZW5jZV9sZXZlbCI6ICJWRVJZX0hJR0giLAogICAgICAgICJkZXRhaWxlZCI6ICJFTlRFUlRBSU5NRU5UX1RWX0FORF9NT1ZJRVMiLAogICAgICAgICJwcmltYXJ5IjogIkVOVEVSVEFJTk1FTlQiCiAgICAgIH0sCiAgICAgICJwZXJzb25hbF9maW5hbmNlX2NhdGVnb3J5X2ljb25fdXJsIjogImh0dHBzOi8vcGxhaWQtY2F0ZWdvcnktaWNvbnMucGxhaWQuY29tL1BGQ19FTlRFUlRBSU5NRU5ULnBuZyIsCiAgICAgICJ0cmFuc2FjdGlvbl9jb2RlIjogbnVsbCwKICAgICAgInRyYW5zYWN0aW9uX2lkIjogIlh5WHJNNUJHNDdmbVBwR0Q3Njk0VTZxUHlKWDhkZWNiS25MV3EiLAogICAgICAidHJhbnNhY3Rpb25fdHlwZSI6ICJwbGFjZSIsCiAgICAgICJ1bm9mZmljaWFsX2N1cnJlbmN5X2NvZGUiOiBudWxsLAogICAgICAid2Vic2l0ZSI6ICJyZWRib3guY29tIgogICAgfSwKICAgIHsKICAgICAgImFjY291bnRfaWQiOiAiWnZsQkw1ZU1QUXRuWERWNlFyUjlzUmVOVlZ6MVhBaWVhZ0RQeiIsCiAgICAgICJhY2NvdW50X293bmVyIjogbnVsbCwKICAgICAgImFtb3VudCI6IDMyLjQsCiAgICAgICJhdXRob3JpemVkX2RhdGUiOiAiMjAyNC0xMC0wNCIsCiAgICAgICJhdXRob3JpemVkX2RhdGV0aW1lIjogbnVsbCwKICAgICAgImNhdGVnb3J5IjogWwogICAgICAgICJTaG9wcyIsCiAgICAgICAgIkNsb3RoaW5nIGFuZCBBY2Nlc3NvcmllcyIKICAgICAgXSwKICAgICAgImNhdGVnb3J5X2lkIjogIjE5MDEyMDAwIiwKICAgICAgImNoZWNrX251bWJlciI6IG51bGwsCiAgICAgICJjb3VudGVycGFydGllcyI6IFsKICAgICAgICB7CiAgICAgICAgICAiY29uZmlkZW5jZV9sZXZlbCI6ICJWRVJZX0hJR0giLAogICAgICAgICAgImVudGl0eV9pZCI6ICJvODhKOE9PZ1gzbk1uUVdCd2s2a3E4RDMyWVdqRXdhWDJEOHJhIiwKICAgICAgICAgICJsb2dvX3VybCI6ICJodHRwczovL3BsYWlkLW1lcmNoYW50LWxvZ29zLnBsYWlkLmNvbS9vbGRfbmF2eV82OTgucG5nIiwKICAgICAgICAgICJuYW1lIjogIk9sZCBOYXZ5IiwKICAgICAgICAgICJwaG9uZV9udW1iZXIiOiBudWxsLAogICAgICAgICAgInR5cGUiOiAibWVyY2hhbnQiLAogICAgICAgICAgIndlYnNpdGUiOiAib2xkbmF2eS5jb20iCiAgICAgICAgfQogICAgICBdLAogICAgICAiZGF0ZSI6ICIyMDI0LTEwLTA2IiwKICAgICAgImRhdGV0aW1lIjogbnVsbCwKICAgICAgImlzb19jdXJyZW5jeV9jb2RlIjogIlVTRCIsCiAgICAgICJsb2NhdGlvbiI6IHsKICAgICAgICAiYWRkcmVzcyI6IG51bGwsCiAgICAgICAgImNpdHkiOiBudWxsLAogICAgICAgICJjb3VudHJ5IjogbnVsbCwKICAgICAgICAibGF0IjogbnVsbCwKICAgICAgICAibG9uIjogbnVsbCwKICAgICAgICAicG9zdGFsX2NvZGUiOiBudWxsLAogICAgICAgICJyZWdpb24iOiBudWxsLAogICAgICAgICJzdG9yZV9udW1iZXIiOiBudWxsCiAgICAgIH0sCiAgICAgICJsb2dvX3VybCI6ICJodHRwczovL3BsYWlkLW1lcmNoYW50LWxvZ29zLnBsYWlkLmNvbS9vbGRfbmF2eV82OTgucG5nIiwKICAgICAgIm1lcmNoYW50X2VudGl0eV9pZCI6ICJvODhKOE9PZ1gzbk1uUVdCd2s2a3E4RDMyWVdqRXdhWDJEOHJhIiwKICAgICAgIm1lcmNoYW50X25hbWUiOiAiT2xkIE5hdnkiLAogICAgICAibmFtZSI6ICJPbGQgTmF2eSIsCiAgICAgICJvcmlnaW5hbF9kZXNjcmlwdGlvbiI6ICJPTEQgTkFWWSBPTi1MSU5FIiwKICAgICAgInBheW1lbnRfY2hhbm5lbCI6ICJpbiBzdG9yZSIsCiAgICAgICJwYXltZW50X21ldGEiOiB7CiAgICAgICAgImJ5X29yZGVyX29mIjogbnVsbCwKICAgICAgICAicGF5ZWUiOiBudWxsLAogICAgICAgICJwYXllciI6IG51bGwsCiAgICAgICAgInBheW1lbnRfbWV0aG9kIjogbnVsbCwKICAgICAgICAicGF5bWVudF9wcm9jZXNzb3IiOiBudWxsLAogICAgICAgICJwcGRfaWQiOiBudWxsLAogICAgICAgICJyZWFzb24iOiBudWxsLAogICAgICAgICJyZWZlcmVuY2VfbnVtYmVyIjogbnVsbAogICAgICB9LAogICAgICAicGVuZGluZyI6IGZhbHNlLAogICAgICAicGVuZGluZ190cmFuc2FjdGlvbl9pZCI6IG51bGwsCiAgICAgICJwZXJzb25hbF9maW5hbmNlX2NhdGVnb3J5IjogewogICAgICAgICJjb25maWRlbmNlX2xldmVsIjogIlZFUllfSElHSCIsCiAgICAgICAgImRldGFpbGVkIjogIkdFTkVSQUxfTUVSQ0hBTkRJU0VfQ0xPVEhJTkdfQU5EX0FDQ0VTU09SSUVTIiwKICAgICAgICAicHJpbWFyeSI6ICJHRU5FUkFMX01FUkNIQU5ESVNFIgogICAgICB9LAogICAgICAicGVyc29uYWxfZmluYW5jZV9jYXRlZ29yeV9pY29uX3VybCI6ICJodHRwczovL3BsYWlkLWNhdGVnb3J5LWljb25zLnBsYWlkLmNvbS9QRkNfR0VORVJBTF9NRVJDSEFORElTRS5wbmciLAogICAgICAidHJhbnNhY3Rpb25fY29kZSI6IG51bGwsCiAgICAgICJ0cmFuc2FjdGlvbl9pZCI6ICJEUFpCVzVWcWdiRlA3NjR6YnBxbVN2aldKRFBnM2J0M1dhSlBhIiwKICAgICAgInRyYW5zYWN0aW9uX3R5cGUiOiAicGxhY2UiLAogICAgICAidW5vZmZpY2lhbF9jdXJyZW5jeV9jb2RlIjogbnVsbCwKICAgICAgIndlYnNpdGUiOiAib2xkbmF2eS5jb20iCiAgICB9LAogICAgewogICAgICAiYWNjb3VudF9pZCI6ICJadmxCTDVlTVBRdG5YRFY2UXJSOXNSZU5WVnoxWEFpZWFnRFB6IiwKICAgICAgImFjY291bnRfb3duZXIiOiBudWxsLAogICAgICAiYW1vdW50IjogMTQxLjgyLAogICAgICAiYXV0aG9yaXplZF9kYXRlIjogIjIwMjQtMTAtMDQiLAogICAgICAiYXV0aG9yaXplZF9kYXRldGltZSI6IG51bGwsCiAgICAgICJjYXRlZ29yeSI6IFsKICAgICAgICAiU2hvcHMiLAogICAgICAgICJEZXBhcnRtZW50IFN0b3JlcyIKICAgICAgXSwKICAgICAgImNhdGVnb3J5X2lkIjogIjE5MDE4MDAwIiwKICAgICAgImNoZWNrX251bWJlciI6IG51bGwsCiAgICAgICJjb3VudGVycGFydGllcyI6IFsKICAgICAgICB7CiAgICAgICAgICAiY29uZmlkZW5jZV9sZXZlbCI6ICJWRVJZX0hJR0giLAogICAgICAgICAgImVudGl0eV9pZCI6ICJiTjB3SjZ3dnBwRHozNzVFek5KTlF2OWJCT0RhbTRxV09yRTNrIiwKICAgICAgICAgICJsb2dvX3VybCI6ICJodHRwczovL3BsYWlkLW1lcmNoYW50LWxvZ29zLnBsYWlkLmNvbS9ub3Jkc3Ryb21fNjg0LnBuZyIsCiAgICAgICAgICAibmFtZSI6ICJOb3Jkc3Ryb20iLAogICAgICAgICAgInBob25lX251bWJlciI6IG51bGwsCiAgICAgICAgICAidHlwZSI6ICJtZXJjaGFudCIsCiAgICAgICAgICAid2Vic2l0ZSI6ICJub3Jkc3Ryb20uY29tIgogICAgICAgIH0KICAgICAgXSwKICAgICAgImRhdGUiOiAiMjAyNC0xMC0wNiIsCiAgICAgICJkYXRldGltZSI6IG51bGwsCiAgICAgICJpc29fY3VycmVuY3lfY29kZSI6ICJVU0QiLAogICAgICAibG9jYXRpb24iOiB7CiAgICAgICAgImFkZHJlc3MiOiBudWxsLAogICAgICAgICJjaXR5IjogbnVsbCwKICAgICAgICAiY291bnRyeSI6IG51bGwsCiAgICAgICAgImxhdCI6IG51bGwsCiAgICAgICAgImxvbiI6IG51bGwsCiAgICAgICAgInBvc3RhbF9jb2RlIjogbnVsbCwKICAgICAgICAicmVnaW9uIjogbnVsbCwKICAgICAgICAic3RvcmVfbnVtYmVyIjogIjAxMiIKICAgICAgfSwKICAgICAgImxvZ29fdXJsIjogImh0dHBzOi8vcGxhaWQtbWVyY2hhbnQtbG9nb3MucGxhaWQuY29tL25vcmRzdHJvbV82ODQucG5nIiwKICAgICAgIm1lcmNoYW50X2VudGl0eV9pZCI6ICJiTjB3SjZ3dnBwRHozNzVFek5KTlF2OWJCT0RhbTRxV09yRTNrIiwKICAgICAgIm1lcmNoYW50X25hbWUiOiAiTm9yZHN0cm9tIiwKICAgICAgIm5hbWUiOiAiTm9yZHN0cm9tIFJhY2siLAogICAgICAib3JpZ2luYWxfZGVzY3JpcHRpb24iOiAiTk9SRFNUUk9NIFJBQ0sgIzAxMiIsCiAgICAgICJwYXltZW50X2NoYW5uZWwiOiAiaW4gc3RvcmUiLAogICAgICAicGF5bWVudF9tZXRhIjogewogICAgICAgICJieV9vcmRlcl9vZiI6IG51bGwsCiAgICAgICAgInBheWVlIjogbnVsbCwKICAgICAgICAicGF5ZXIiOiBudWxsLAogICAgICAgICJwYXltZW50X21ldGhvZCI6IG51bGwsCiAgICAgICAgInBheW1lbnRfcHJvY2Vzc29yIjogbnVsbCwKICAgICAgICAicHBkX2lkIjogbnVsbCwKICAgICAgICAicmVhc29uIjogbnVsbCwKICAgICAgICAicmVmZXJlbmNlX251bWJlciI6IG51bGwKICAgICAgfSwKICAgICAgInBlbmRpbmciOiBmYWxzZSwKICAgICAgInBlbmRpbmdfdHJhbnNhY3Rpb25faWQiOiBudWxsLAogICAgICAicGVyc29uYWxfZmluYW5jZV9jYXRlZ29yeSI6IHsKICAgICAgICAiY29uZmlkZW5jZV9sZXZlbCI6ICJWRVJZX0hJR0giLAogICAgICAgICJkZXRhaWxlZCI6ICJHRU5FUkFMX01FUkNIQU5ESVNFX0RFUEFSVE1FTlRfU1RPUkVTIiwKICAgICAgICAicHJpbWFyeSI6ICJHRU5FUkFMX01FUkNIQU5ESVNFIgogICAgICB9LAogICAgICAicGVyc29uYWxfZmluYW5jZV9jYXRlZ29yeV9pY29uX3VybCI6ICJodHRwczovL3BsYWlkLWNhdGVnb3J5LWljb25zLnBsYWlkLmNvbS9QRkNfR0VORVJBTF9NRVJDSEFORElTRS5wbmciLAogICAgICAidHJhbnNhY3Rpb25fY29kZSI6IG51bGwsCiAgICAgICJ0cmFuc2FjdGlvbl9pZCI6ICJWYlJxUTVyTGRQY242UnFWUDRRZHNYSkcxOFZRM0V0OWdQRThkIiwKICAgICAgInRyYW5zYWN0aW9uX3R5cGUiOiAicGxhY2UiLAogICAgICAidW5vZmZpY2lhbF9jdXJyZW5jeV9jb2RlIjogbnVsbCwKICAgICAgIndlYnNpdGUiOiAibm9yZHN0cm9tLmNvbSIKICAgIH0sCiAgICB7CiAgICAgICJhY2NvdW50X2lkIjogIlp2bEJMNWVNUFF0blhEVjZRclI5c1JlTlZWejFYQWllYWdEUHoiLAogICAgICAiYWNjb3VudF9vd25lciI6IG51bGwsCiAgICAgICJhbW91bnQiOiAxLjUsCiAgICAgICJhdXRob3JpemVkX2RhdGUiOiAiMjAyNC0xMC0wMyIsCiAgICAgICJhdXRob3JpemVkX2RhdGV0aW1lIjogbnVsbCwKICAgICAgImNhdGVnb3J5IjogWwogICAgICAgICJUcmF2ZWwiLAogICAgICAgICJQYXJraW5nIgogICAgICBdLAogICAgICAiY2F0ZWdvcnlfaWQiOiAiMjIwMTMwMDAiLAogICAgICAiY2hlY2tfbnVtYmVyIjogbnVsbCwKICAgICAgImNvdW50ZXJwYXJ0aWVzIjogW10sCiAgICAgICJkYXRlIjogIjIwMjQtMTAtMDgiLAogICAgICAiZGF0ZXRpbWUiOiBudWxsLAogICAgICAiaXNvX2N1cnJlbmN5X2NvZGUiOiAiVVNEIiwKICAgICAgImxvY2F0aW9uIjogewogICAgICAgICJhZGRyZXNzIjogbnVsbCwKICAgICAgICAiY2l0eSI6IG51bGwsCiAgICAgICAgImNvdW50cnkiOiBudWxsLAogICAgICAgICJsYXQiOiBudWxsLAogICAgICAgICJsb24iOiBudWxsLAogICAgICAgICJwb3N0YWxfY29kZSI6IG51bGwsCiAgICAgICAgInJlZ2lvbiI6IG51bGwsCiAgICAgICAgInN0b3JlX251bWJlciI6IG51bGwKICAgICAgfSwKICAgICAgImxvZ29fdXJsIjogbnVsbCwKICAgICAgIm1lcmNoYW50X2VudGl0eV9pZCI6IG51bGwsCiAgICAgICJtZXJjaGFudF9uYW1lIjogbnVsbCwKICAgICAgIm5hbWUiOiAiQkggUEFSS0lORyBHQVJBR0VTIiwKICAgICAgIm9yaWdpbmFsX2Rlc2NyaXB0aW9uIjogIkJIIFBBUktJTkcgR0FSQUdFUyIsCiAgICAgICJwYXltZW50X2NoYW5uZWwiOiAiaW4gc3RvcmUiLAogICAgICAicGF5bWVudF9tZXRhIjogewogICAgICAgICJieV9vcmRlcl9vZiI6IG51bGwsCiAgICAgICAgInBheWVlIjogbnVsbCwKICAgICAgICAicGF5ZXIiOiBudWxsLAogICAgICAgICJwYXltZW50X21ldGhvZCI6IG51bGwsCiAgICAgICAgInBheW1lbnRfcHJvY2Vzc29yIjogbnVsbCwKICAgICAgICAicHBkX2lkIjogbnVsbCwKICAgICAgICAicmVhc29uIjogbnVsbCwKICAgICAgICAicmVmZXJlbmNlX251bWJlciI6IG51bGwKICAgICAgfSwKICAgICAgInBlbmRpbmciOiBmYWxzZSwKICAgICAgInBlbmRpbmdfdHJhbnNhY3Rpb25faWQiOiBudWxsLAogICAgICAicGVyc29uYWxfZmluYW5jZV9jYXRlZ29yeSI6IHsKICAgICAgICAiY29uZmlkZW5jZV9sZXZlbCI6ICJWRVJZX0hJR0giLAogICAgICAgICJkZXRhaWxlZCI6ICJUUkFOU1BPUlRBVElPTl9QQVJLSU5HIiwKICAgICAgICAicHJpbWFyeSI6ICJUUkFOU1BPUlRBVElPTiIKICAgICAgfSwKICAgICAgInBlcnNvbmFsX2ZpbmFuY2VfY2F0ZWdvcnlfaWNvbl91cmwiOiAiaHR0cHM6Ly9wbGFpZC1jYXRlZ29yeS1pY29ucy5wbGFpZC5jb20vUEZDX1RSQU5TUE9SVEFUSU9OLnBuZyIsCiAgICAgICJ0cmFuc2FjdGlvbl9jb2RlIjogbnVsbCwKICAgICAgInRyYW5zYWN0aW9uX2lkIjogIndXbnFwakpsZGF0UWJydkp5ZGpFVEtQREIzSjRFOWNQWm9tN20iLAogICAgICAidHJhbnNhY3Rpb25fdHlwZSI6ICJwbGFjZSIsCiAgICAgICJ1bm9mZmljaWFsX2N1cnJlbmN5X2NvZGUiOiBudWxsLAogICAgICAid2Vic2l0ZSI6IG51bGwKICAgIH0sCiAgICB7CiAgICAgICJhY2NvdW50X2lkIjogIlp2bEJMNWVNUFF0blhEVjZRclI5c1JlTlZWejFYQWllYWdEUHoiLAogICAgICAiYWNjb3VudF9vd25lciI6IG51bGwsCiAgICAgICJhbW91bnQiOiAxNS43NSwKICAgICAgImF1dGhvcml6ZWRfZGF0ZSI6ICIyMDI0LTEwLTA0IiwKICAgICAgImF1dGhvcml6ZWRfZGF0ZXRpbWUiOiBudWxsLAogICAgICAiY2F0ZWdvcnkiOiBbCiAgICAgICAgIlRyYXZlbCIsCiAgICAgICAgIlB1YmxpYyBUcmFuc3BvcnRhdGlvbiBTZXJ2aWNlcyIKICAgICAgXSwKICAgICAgImNhdGVnb3J5X2lkIjogIjIyMDE0MDAwIiwKICAgICAgImNoZWNrX251bWJlciI6IG51bGwsCiAgICAgICJjb3VudGVycGFydGllcyI6IFtdLAogICAgICAiZGF0ZSI6ICIyMDI0LTEwLTA4IiwKICAgICAgImRhdGV0aW1lIjogbnVsbCwKICAgICAgImlzb19jdXJyZW5jeV9jb2RlIjogIlVTRCIsCiAgICAgICJsb2NhdGlvbiI6IHsKICAgICAgICAiYWRkcmVzcyI6IG51bGwsCiAgICAgICAgImNpdHkiOiBudWxsLAogICAgICAgICJjb3VudHJ5IjogbnVsbCwKICAgICAgICAibGF0IjogbnVsbCwKICAgICAgICAibG9uIjogbnVsbCwKICAgICAgICAicG9zdGFsX2NvZGUiOiBudWxsLAogICAgICAgICJyZWdpb24iOiBudWxsLAogICAgICAgICJzdG9yZV9udW1iZXIiOiBudWxsCiAgICAgIH0sCiAgICAgICJsb2dvX3VybCI6IG51bGwsCiAgICAgICJtZXJjaGFudF9lbnRpdHlfaWQiOiBudWxsLAogICAgICAibWVyY2hhbnRfbmFtZSI6IG51bGwsCiAgICAgICJuYW1lIjogIlJURCBFQVNUIERJQSIsCiAgICAgICJvcmlnaW5hbF9kZXNjcmlwdGlvbiI6ICJSVEQgRUFTVCBESUEiLAogICAgICAicGF5bWVudF9jaGFubmVsIjogImluIHN0b3JlIiwKICAgICAgInBheW1lbnRfbWV0YSI6IHsKICAgICAgICAiYnlfb3JkZXJfb2YiOiBudWxsLAogICAgICAgICJwYXllZSI6IG51bGwsCiAgICAgICAgInBheWVyIjogbnVsbCwKICAgICAgICAicGF5bWVudF9tZXRob2QiOiBudWxsLAogICAgICAgICJwYXltZW50X3Byb2Nlc3NvciI6IG51bGwsCiAgICAgICAgInBwZF9pZCI6IG51bGwsCiAgICAgICAgInJlYXNvbiI6IG51bGwsCiAgICAgICAgInJlZmVyZW5jZV9udW1iZXIiOiBudWxsCiAgICAgIH0sCiAgICAgICJwZW5kaW5nIjogZmFsc2UsCiAgICAgICJwZW5kaW5nX3RyYW5zYWN0aW9uX2lkIjogbnVsbCwKICAgICAgInBlcnNvbmFsX2ZpbmFuY2VfY2F0ZWdvcnkiOiB7CiAgICAgICAgImNvbmZpZGVuY2VfbGV2ZWwiOiAiTE9XIiwKICAgICAgICAiZGV0YWlsZWQiOiAiR0VORVJBTF9NRVJDSEFORElTRV9TUE9SVElOR19HT09EUyIsCiAgICAgICAgInByaW1hcnkiOiAiR0VORVJBTF9NRVJDSEFORElTRSIKICAgICAgfSwKICAgICAgInBlcnNvbmFsX2ZpbmFuY2VfY2F0ZWdvcnlfaWNvbl91cmwiOiAiaHR0cHM6Ly9wbGFpZC1jYXRlZ29yeS1pY29ucy5wbGFpZC5jb20vUEZDX0dFTkVSQUxfTUVSQ0hBTkRJU0UucG5nIiwKICAgICAgInRyYW5zYWN0aW9uX2NvZGUiOiBudWxsLAogICAgICAidHJhbnNhY3Rpb25faWQiOiAiNXZLNU5nNmJkZXRrWDRkREE2TmJTcVpLN1FEb1hNdTVLNzhQUSIsCiAgICAgICJ0cmFuc2FjdGlvbl90eXBlIjogInBsYWNlIiwKICAgICAgInVub2ZmaWNpYWxfY3VycmVuY3lfY29kZSI6IG51bGwsCiAgICAgICJ3ZWJzaXRlIjogbnVsbAogICAgfSwKICAgIHsKICAgICAgImFjY291bnRfaWQiOiAiWnZsQkw1ZU1QUXRuWERWNlFyUjlzUmVOVlZ6MVhBaWVhZ0RQeiIsCiAgICAgICJhY2NvdW50X293bmVyIjogbnVsbCwKICAgICAgImFtb3VudCI6IDI5MC4yNSwKICAgICAgImF1dGhvcml6ZWRfZGF0ZSI6ICIyMDI0LTEwLTA0IiwKICAgICAgImF1dGhvcml6ZWRfZGF0ZXRpbWUiOiBudWxsLAogICAgICAiY2F0ZWdvcnkiOiBbCiAgICAgICAgIlRyYXZlbCIsCiAgICAgICAgIkFpcmxpbmVzIGFuZCBBdmlhdGlvbiBTZXJ2aWNlcyIKICAgICAgXSwKICAgICAgImNhdGVnb3J5X2lkIjogIjIyMDAxMDAwIiwKICAgICAgImNoZWNrX251bWJlciI6IG51bGwsCiAgICAgICJjb3VudGVycGFydGllcyI6IFsKICAgICAgICB7CiAgICAgICAgICAiY29uZmlkZW5jZV9sZXZlbCI6ICJWRVJZX0hJR0giLAogICAgICAgICAgImVudGl0eV9pZCI6ICJOS0RqcXlBZFFRenB5ZUQ4cXBMblgwRDZ5dkxlMktZS1lZelE0IiwKICAgICAgICAgICJsb2dvX3VybCI6ICJodHRwczovL3BsYWlkLW1lcmNoYW50LWxvZ29zLnBsYWlkLmNvbS91bml0ZWRfYWlybGluZXNfMTA2NS5wbmciLAogICAgICAgICAgIm5hbWUiOiAiVW5pdGVkIEFpcmxpbmVzIiwKICAgICAgICAgICJwaG9uZV9udW1iZXIiOiBudWxsLAogICAgICAgICAgInR5cGUiOiAibWVyY2hhbnQiLAogICAgICAgICAgIndlYnNpdGUiOiAidW5pdGVkLmNvbSIKICAgICAgICB9CiAgICAgIF0sCiAgICAgICJkYXRlIjogIjIwMjQtMTAtMDgiLAogICAgICAiZGF0ZXRpbWUiOiBudWxsLAogICAgICAiaXNvX2N1cnJlbmN5X2NvZGUiOiAiVVNEIiwKICAgICAgImxvY2F0aW9uIjogewogICAgICAgICJhZGRyZXNzIjogbnVsbCwKICAgICAgICAiY2l0eSI6IG51bGwsCiAgICAgICAgImNvdW50cnkiOiBudWxsLAogICAgICAgICJsYXQiOiBudWxsLAogICAgICAgICJsb24iOiBudWxsLAogICAgICAgICJwb3N0YWxfY29kZSI6IG51bGwsCiAgICAgICAgInJlZ2lvbiI6ICJUWCIsCiAgICAgICAgInN0b3JlX251bWJlciI6IG51bGwKICAgICAgfSwKICAgICAgImxvZ29fdXJsIjogImh0dHBzOi8vcGxhaWQtbWVyY2hhbnQtbG9nb3MucGxhaWQuY29tL3VuaXRlZF9haXJsaW5lc18xMDY1LnBuZyIsCiAgICAgICJtZXJjaGFudF9lbnRpdHlfaWQiOiAiTktEanF5QWRRUXpweWVEOHFwTG5YMEQ2eXZMZTJLWUtZWXpRNCIsCiAgICAgICJtZXJjaGFudF9uYW1lIjogIlVuaXRlZCBBaXJsaW5lcyIsCiAgICAgICJuYW1lIjogIlVOSVRFRCAwMTIzNDU2Nzg5MDEyIiwKICAgICAgIm9yaWdpbmFsX2Rlc2NyaXB0aW9uIjogIlVOSVRFRCAwMTIzNDU2Nzg5MDEyIDAxMi0wMTItMDEyMyBUWCIsCiAgICAgICJwYXltZW50X2NoYW5uZWwiOiAiaW4gc3RvcmUiLAogICAgICAicGF5bWVudF9tZXRhIjogewogICAgICAgICJieV9vcmRlcl9vZiI6IG51bGwsCiAgICAgICAgInBheWVlIjogbnVsbCwKICAgICAgICAicGF5ZXIiOiBudWxsLAogICAgICAgICJwYXltZW50X21ldGhvZCI6IG51bGwsCiAgICAgICAgInBheW1lbnRfcHJvY2Vzc29yIjogbnVsbCwKICAgICAgICAicHBkX2lkIjogbnVsbCwKICAgICAgICAicmVhc29uIjogbnVsbCwKICAgICAgICAicmVmZXJlbmNlX251bWJlciI6IG51bGwKICAgICAgfSwKICAgICAgInBlbmRpbmciOiBmYWxzZSwKICAgICAgInBlbmRpbmdfdHJhbnNhY3Rpb25faWQiOiBudWxsLAogICAgICAicGVyc29uYWxfZmluYW5jZV9jYXRlZ29yeSI6IHsKICAgICAgICAiY29uZmlkZW5jZV9sZXZlbCI6ICJISUdIIiwKICAgICAgICAiZGV0YWlsZWQiOiAiVFJBVkVMX0ZMSUdIVFMiLAogICAgICAgICJwcmltYXJ5IjogIlRSQVZFTCIKICAgICAgfSwKICAgICAgInBlcnNvbmFsX2ZpbmFuY2VfY2F0ZWdvcnlfaWNvbl91cmwiOiAiaHR0cHM6Ly9wbGFpZC1jYXRlZ29yeS1pY29ucy5wbGFpZC5jb20vUEZDX1RSQVZFTC5wbmciLAogICAgICAidHJhbnNhY3Rpb25fY29kZSI6IG51bGwsCiAgICAgICJ0cmFuc2FjdGlvbl9pZCI6ICJKTWdWejU5eG5saE0xcHlLbGprZVVBWFpnTEpEdzZJQjZna3JYIiwKICAgICAgInRyYW5zYWN0aW9uX3R5cGUiOiAic3BlY2lhbCIsCiAgICAgICJ1bm9mZmljaWFsX2N1cnJlbmN5X2NvZGUiOiBudWxsLAogICAgICAid2Vic2l0ZSI6ICJ1bml0ZWQuY29tIgogICAgfSwKICAgIHsKICAgICAgImFjY291bnRfaWQiOiAiWnZsQkw1ZU1QUXRuWERWNlFyUjlzUmVOVlZ6MVhBaWVhZ0RQeiIsCiAgICAgICJhY2NvdW50X293bmVyIjogbnVsbCwKICAgICAgImFtb3VudCI6IDIxOC43NSwKICAgICAgImF1dGhvcml6ZWRfZGF0ZSI6ICIyMDI0LTEwLTAzIiwKICAgICAgImF1dGhvcml6ZWRfZGF0ZXRpbWUiOiBudWxsLAogICAgICAiY2F0ZWdvcnkiOiBbCiAgICAgICAgIlNob3BzIiwKICAgICAgICAiU3VwZXJtYXJrZXRzIGFuZCBHcm9jZXJpZXMiCiAgICAgIF0sCiAgICAgICJjYXRlZ29yeV9pZCI6ICIxOTA0NzAwMCIsCiAgICAgICJjaGVja19udW1iZXIiOiBudWxsLAogICAgICAiY291bnRlcnBhcnRpZXMiOiBbCiAgICAgICAgewogICAgICAgICAgImNvbmZpZGVuY2VfbGV2ZWwiOiAiVkVSWV9ISUdIIiwKICAgICAgICAgICJlbnRpdHlfaWQiOiAiWTBCVnlSWXdaZ05McER3Nkxydnk3eUpYMzhZUVdFWEJFRW9BVyIsCiAgICAgICAgICAibG9nb191cmwiOiAiaHR0cHM6Ly9wbGFpZC1tZXJjaGFudC1sb2dvcy5wbGFpZC5jb20vd2hvbGVfZm9vZHNfMTEyMi5wbmciLAogICAgICAgICAgIm5hbWUiOiAiV2hvbGUgRm9vZHMiLAogICAgICAgICAgInBob25lX251bWJlciI6IG51bGwsCiAgICAgICAgICAidHlwZSI6ICJtZXJjaGFudCIsCiAgICAgICAgICAid2Vic2l0ZSI6ICJ3aG9sZWZvb2RzLmNvbSIKICAgICAgICB9CiAgICAgIF0sCiAgICAgICJkYXRlIjogIjIwMjQtMTAtMDUiLAogICAgICAiZGF0ZXRpbWUiOiBudWxsLAogICAgICAiaXNvX2N1cnJlbmN5X2NvZGUiOiAiVVNEIiwKICAgICAgImxvY2F0aW9uIjogewogICAgICAgICJhZGRyZXNzIjogbnVsbCwKICAgICAgICAiY2l0eSI6IG51bGwsCiAgICAgICAgImNvdW50cnkiOiBudWxsLAogICAgICAgICJsYXQiOiBudWxsLAogICAgICAgICJsb24iOiBudWxsLAogICAgICAgICJwb3N0YWxfY29kZSI6IG51bGwsCiAgICAgICAgInJlZ2lvbiI6IG51bGwsCiAgICAgICAgInN0b3JlX251bWJlciI6IG51bGwKICAgICAgfSwKICAgICAgImxvZ29fdXJsIjogImh0dHBzOi8vcGxhaWQtbWVyY2hhbnQtbG9nb3MucGxhaWQuY29tL3dob2xlX2Zvb2RzXzExMjIucG5nIiwKICAgICAgIm1lcmNoYW50X2VudGl0eV9pZCI6ICJZMEJWeVJZd1pnTkxwRHc2THJ2eTd5SlgzOFlRV0VYQkVFb0FXIiwKICAgICAgIm1lcmNoYW50X25hbWUiOiAiV2hvbGUgRm9vZHMiLAogICAgICAibmFtZSI6ICJXaG9sZSBGb29kcyIsCiAgICAgICJvcmlnaW5hbF9kZXNjcmlwdGlvbiI6ICJXaG9sZSBGb29kcyBNYXJrZXQiLAogICAgICAicGF5bWVudF9jaGFubmVsIjogImluIHN0b3JlIiwKICAgICAgInBheW1lbnRfbWV0YSI6IHsKICAgICAgICAiYnlfb3JkZXJfb2YiOiBudWxsLAogICAgICAgICJwYXllZSI6IG51bGwsCiAgICAgICAgInBheWVyIjogbnVsbCwKICAgICAgICAicGF5bWVudF9tZXRob2QiOiBudWxsLAogICAgICAgICJwYXltZW50X3Byb2Nlc3NvciI6IG51bGwsCiAgICAgICAgInBwZF9pZCI6IG51bGwsCiAgICAgICAgInJlYXNvbiI6IG51bGwsCiAgICAgICAgInJlZmVyZW5jZV9udW1iZXIiOiBudWxsCiAgICAgIH0sCiAgICAgICJwZW5kaW5nIjogZmFsc2UsCiAgICAgICJwZW5kaW5nX3RyYW5zYWN0aW9uX2lkIjogbnVsbCwKICAgICAgInBlcnNvbmFsX2ZpbmFuY2VfY2F0ZWdvcnkiOiB7CiAgICAgICAgImNvbmZpZGVuY2VfbGV2ZWwiOiAiVkVSWV9ISUdIIiwKICAgICAgICAiZGV0YWlsZWQiOiAiRk9PRF9BTkRfRFJJTktfR1JPQ0VSSUVTIiwKICAgICAgICAicHJpbWFyeSI6ICJGT09EX0FORF9EUklOSyIKICAgICAgfSwKICAgICAgInBlcnNvbmFsX2ZpbmFuY2VfY2F0ZWdvcnlfaWNvbl91cmwiOiAiaHR0cHM6Ly9wbGFpZC1jYXRlZ29yeS1pY29ucy5wbGFpZC5jb20vUEZDX0ZPT0RfQU5EX0RSSU5LLnBuZyIsCiAgICAgICJ0cmFuc2FjdGlvbl9jb2RlIjogbnVsbCwKICAgICAgInRyYW5zYWN0aW9uX2lkIjogIms3WkFhcWtEbjlJZUxXdlBNRDNRVFFtd2pBYWU2MXNMNmRvVkQiLAogICAgICAidHJhbnNhY3Rpb25fdHlwZSI6ICJwbGFjZSIsCiAgICAgICJ1bm9mZmljaWFsX2N1cnJlbmN5X2NvZGUiOiBudWxsLAogICAgICAid2Vic2l0ZSI6ICJ3aG9sZWZvb2RzLmNvbSIKICAgIH0sCiAgICB7CiAgICAgICJhY2NvdW50X2lkIjogIlp2bEJMNWVNUFF0blhEVjZRclI5c1JlTlZWejFYQWllYWdEUHoiLAogICAgICAiYWNjb3VudF9vd25lciI6IG51bGwsCiAgICAgICJhbW91bnQiOiA1My40LAogICAgICAiYXV0aG9yaXplZF9kYXRlIjogIjIwMjQtMTAtMDQiLAogICAgICAiYXV0aG9yaXplZF9kYXRldGltZSI6IG51bGwsCiAgICAgICJjYXRlZ29yeSI6IFsKICAgICAgICAiRm9vZCBhbmQgRHJpbmsiLAogICAgICAgICJSZXN0YXVyYW50cyIKICAgICAgXSwKICAgICAgImNhdGVnb3J5X2lkIjogIjEzMDA1MDAwIiwKICAgICAgImNoZWNrX251bWJlciI6IG51bGwsCiAgICAgICJjb3VudGVycGFydGllcyI6IFtdLAogICAgICAiZGF0ZSI6ICIyMDI0LTEwLTA1IiwKICAgICAgImRhdGV0aW1lIjogbnVsbCwKICAgICAgImlzb19jdXJyZW5jeV9jb2RlIjogIlVTRCIsCiAgICAgICJsb2NhdGlvbiI6IHsKICAgICAgICAiYWRkcmVzcyI6IG51bGwsCiAgICAgICAgImNpdHkiOiBudWxsLAogICAgICAgICJjb3VudHJ5IjogbnVsbCwKICAgICAgICAibGF0IjogbnVsbCwKICAgICAgICAibG9uIjogbnVsbCwKICAgICAgICAicG9zdGFsX2NvZGUiOiBudWxsLAogICAgICAgICJyZWdpb24iOiBudWxsLAogICAgICAgICJzdG9yZV9udW1iZXIiOiBudWxsCiAgICAgIH0sCiAgICAgICJsb2dvX3VybCI6IG51bGwsCiAgICAgICJtZXJjaGFudF9lbnRpdHlfaWQiOiBudWxsLAogICAgICAibWVyY2hhbnRfbmFtZSI6IG51bGwsCiAgICAgICJuYW1lIjogIkNIUCIsCiAgICAgICJvcmlnaW5hbF9kZXNjcmlwdGlvbiI6ICJDSFAiLAogICAgICAicGF5bWVudF9jaGFubmVsIjogImluIHN0b3JlIiwKICAgICAgInBheW1lbnRfbWV0YSI6IHsKICAgICAgICAiYnlfb3JkZXJfb2YiOiBudWxsLAogICAgICAgICJwYXllZSI6IG51bGwsCiAgICAgICAgInBheWVyIjogbnVsbCwKICAgICAgICAicGF5bWVudF9tZXRob2QiOiBudWxsLAogICAgICAgICJwYXltZW50X3Byb2Nlc3NvciI6IG51bGwsCiAgICAgICAgInBwZF9pZCI6IG51bGwsCiAgICAgICAgInJlYXNvbiI6IG51bGwsCiAgICAgICAgInJlZmVyZW5jZV9udW1iZXIiOiBudWxsCiAgICAgIH0sCiAgICAgICJwZW5kaW5nIjogZmFsc2UsCiAgICAgICJwZW5kaW5nX3RyYW5zYWN0aW9uX2lkIjogbnVsbCwKICAgICAgInBlcnNvbmFsX2ZpbmFuY2VfY2F0ZWdvcnkiOiB7CiAgICAgICAgImNvbmZpZGVuY2VfbGV2ZWwiOiAiTE9XIiwKICAgICAgICAiZGV0YWlsZWQiOiAiR0VORVJBTF9NRVJDSEFORElTRV9PVEhFUl9HRU5FUkFMX01FUkNIQU5ESVNFIiwKICAgICAgICAicHJpbWFyeSI6ICJHRU5FUkFMX01FUkNIQU5ESVNFIgogICAgICB9LAogICAgICAicGVyc29uYWxfZmluYW5jZV9jYXRlZ29yeV9pY29uX3VybCI6ICJodHRwczovL3BsYWlkLWNhdGVnb3J5LWljb25zLnBsYWlkLmNvbS9QRkNfR0VORVJBTF9NRVJDSEFORElTRS5wbmciLAogICAgICAidHJhbnNhY3Rpb25fY29kZSI6IG51bGwsCiAgICAgICJ0cmFuc2FjdGlvbl9pZCI6ICJsZU1BNEtkRGJ2VDlSajhhRHczQVNscXdabWR2R0RpcG9kUlhvIiwKICAgICAgInRyYW5zYWN0aW9uX3R5cGUiOiAicGxhY2UiLAogICAgICAidW5vZmZpY2lhbF9jdXJyZW5jeV9jb2RlIjogbnVsbCwKICAgICAgIndlYnNpdGUiOiBudWxsCiAgICB9LAogICAgewogICAgICAiYWNjb3VudF9pZCI6ICJadmxCTDVlTVBRdG5YRFY2UXJSOXNSZU5WVnoxWEFpZWFnRFB6IiwKICAgICAgImFjY291bnRfb3duZXIiOiBudWxsLAogICAgICAiYW1vdW50IjogMTUuNzQsCiAgICAgICJhdXRob3JpemVkX2RhdGUiOiAiMjAyNC0xMC0wNyIsCiAgICAgICJhdXRob3JpemVkX2RhdGV0aW1lIjogbnVsbCwKICAgICAgImNhdGVnb3J5IjogWwogICAgICAgICJTZXJ2aWNlIiwKICAgICAgICAiRm9vZCBhbmQgQmV2ZXJhZ2UiCiAgICAgIF0sCiAgICAgICJjYXRlZ29yeV9pZCI6ICIxODAyMTAwMCIsCiAgICAgICJjaGVja19udW1iZXIiOiBudWxsLAogICAgICAiY291bnRlcnBhcnRpZXMiOiBbCiAgICAgICAgewogICAgICAgICAgImNvbmZpZGVuY2VfbGV2ZWwiOiAiVkVSWV9ISUdIIiwKICAgICAgICAgICJlbnRpdHlfaWQiOiAiWU5SSmc1bzJkakpMdjUybkJBMVluMUtwTDg1OGVnWVZvNGRwbSIsCiAgICAgICAgICAibG9nb191cmwiOiAiaHR0cHM6Ly9wbGFpZC1jb3VudGVycGFydHktbG9nb3MucGxhaWQuY29tL2Rvb3JkYXNoXzEucG5nIiwKICAgICAgICAgICJuYW1lIjogIkRvb3JEYXNoIiwKICAgICAgICAgICJwaG9uZV9udW1iZXIiOiBudWxsLAogICAgICAgICAgInR5cGUiOiAibWFya2V0cGxhY2UiLAogICAgICAgICAgIndlYnNpdGUiOiAiZG9vcmRhc2guY29tIgogICAgICAgIH0KICAgICAgXSwKICAgICAgImRhdGUiOiAiMjAyNC0xMC0wNyIsCiAgICAgICJkYXRldGltZSI6IG51bGwsCiAgICAgICJpc29fY3VycmVuY3lfY29kZSI6ICJVU0QiLAogICAgICAibG9jYXRpb24iOiB7CiAgICAgICAgImFkZHJlc3MiOiBudWxsLAogICAgICAgICJjaXR5IjogbnVsbCwKICAgICAgICAiY291bnRyeSI6IG51bGwsCiAgICAgICAgImxhdCI6IG51bGwsCiAgICAgICAgImxvbiI6IG51bGwsCiAgICAgICAgInBvc3RhbF9jb2RlIjogbnVsbCwKICAgICAgICAicmVnaW9uIjogbnVsbCwKICAgICAgICAic3RvcmVfbnVtYmVyIjogbnVsbAogICAgICB9LAogICAgICAibG9nb191cmwiOiBudWxsLAogICAgICAibWVyY2hhbnRfZW50aXR5X2lkIjogbnVsbCwKICAgICAgIm1lcmNoYW50X25hbWUiOiAiRG9vckRhc2giLAogICAgICAibmFtZSI6ICJET09SREFTSCpDSElQT1RMRSIsCiAgICAgICJvcmlnaW5hbF9kZXNjcmlwdGlvbiI6ICJET09SREFTSCpDSElQT1RMRSIsCiAgICAgICJwYXltZW50X2NoYW5uZWwiOiAib25saW5lIiwKICAgICAgInBheW1lbnRfbWV0YSI6IHsKICAgICAgICAiYnlfb3JkZXJfb2YiOiBudWxsLAogICAgICAgICJwYXllZSI6IG51bGwsCiAgICAgICAgInBheWVyIjogbnVsbCwKICAgICAgICAicGF5bWVudF9tZXRob2QiOiBudWxsLAogICAgICAgICJwYXltZW50X3Byb2Nlc3NvciI6IG51bGwsCiAgICAgICAgInBwZF9pZCI6IG51bGwsCiAgICAgICAgInJlYXNvbiI6IG51bGwsCiAgICAgICAgInJlZmVyZW5jZV9udW1iZXIiOiBudWxsCiAgICAgIH0sCiAgICAgICJwZW5kaW5nIjogZmFsc2UsCiAgICAgICJwZW5kaW5nX3RyYW5zYWN0aW9uX2lkIjogbnVsbCwKICAgICAgInBlcnNvbmFsX2ZpbmFuY2VfY2F0ZWdvcnkiOiB7CiAgICAgICAgImNvbmZpZGVuY2VfbGV2ZWwiOiAiTUVESVVNIiwKICAgICAgICAiZGV0YWlsZWQiOiAiRk9PRF9BTkRfRFJJTktfUkVTVEFVUkFOVCIsCiAgICAgICAgInByaW1hcnkiOiAiRk9PRF9BTkRfRFJJTksiCiAgICAgIH0sCiAgICAgICJwZXJzb25hbF9maW5hbmNlX2NhdGVnb3J5X2ljb25fdXJsIjogImh0dHBzOi8vcGxhaWQtY2F0ZWdvcnktaWNvbnMucGxhaWQuY29tL1BGQ19GT09EX0FORF9EUklOSy5wbmciLAogICAgICAidHJhbnNhY3Rpb25fY29kZSI6IG51bGwsCiAgICAgICJ0cmFuc2FjdGlvbl9pZCI6ICJxTGdBZXg5REtyZk5qRXY1b0RNYUZlYlZhcE1tV0doZ3I3UkRLIiwKICAgICAgInRyYW5zYWN0aW9uX3R5cGUiOiAicGxhY2UiLAogICAgICAidW5vZmZpY2lhbF9jdXJyZW5jeV9jb2RlIjogbnVsbCwKICAgICAgIndlYnNpdGUiOiBudWxsCiAgICB9LAogICAgewogICAgICAiYWNjb3VudF9pZCI6ICJadmxCTDVlTVBRdG5YRFY2UXJSOXNSZU5WVnoxWEFpZWFnRFB6IiwKICAgICAgImFjY291bnRfb3duZXIiOiBudWxsLAogICAgICAiYW1vdW50IjogMjkuNzgsCiAgICAgICJhdXRob3JpemVkX2RhdGUiOiAiMjAyNC0xMC0wNyIsCiAgICAgICJhdXRob3JpemVkX2RhdGV0aW1lIjogbnVsbCwKICAgICAgImNhdGVnb3J5IjogWwogICAgICAgICJGb29kIGFuZCBEcmluayIsCiAgICAgICAgIlJlc3RhdXJhbnRzIgogICAgICBdLAogICAgICAiY2F0ZWdvcnlfaWQiOiAiMTMwMDUwMDAiLAogICAgICAiY2hlY2tfbnVtYmVyIjogbnVsbCwKICAgICAgImNvdW50ZXJwYXJ0aWVzIjogWwogICAgICAgIHsKICAgICAgICAgICJjb25maWRlbmNlX2xldmVsIjogIkxPVyIsCiAgICAgICAgICAiZW50aXR5X2lkIjogbnVsbCwKICAgICAgICAgICJsb2dvX3VybCI6IG51bGwsCiAgICAgICAgICAibmFtZSI6ICJDaGVmIiwKICAgICAgICAgICJwaG9uZV9udW1iZXIiOiBudWxsLAogICAgICAgICAgInR5cGUiOiAibWVyY2hhbnQiLAogICAgICAgICAgIndlYnNpdGUiOiBudWxsCiAgICAgICAgfQogICAgICBdLAogICAgICAiZGF0ZSI6ICIyMDI0LTEwLTExIiwKICAgICAgImRhdGV0aW1lIjogbnVsbCwKICAgICAgImlzb19jdXJyZW5jeV9jb2RlIjogIlVTRCIsCiAgICAgICJsb2NhdGlvbiI6IHsKICAgICAgICAiYWRkcmVzcyI6IG51bGwsCiAgICAgICAgImNpdHkiOiBudWxsLAogICAgICAgICJjb3VudHJ5IjogbnVsbCwKICAgICAgICAibGF0IjogbnVsbCwKICAgICAgICAibG9uIjogbnVsbCwKICAgICAgICAicG9zdGFsX2NvZGUiOiBudWxsLAogICAgICAgICJyZWdpb24iOiBudWxsLAogICAgICAgICJzdG9yZV9udW1iZXIiOiBudWxsCiAgICAgIH0sCiAgICAgICJsb2dvX3VybCI6IG51bGwsCiAgICAgICJtZXJjaGFudF9lbnRpdHlfaWQiOiBudWxsLAogICAgICAibWVyY2hhbnRfbmFtZSI6ICJDaGVmIiwKICAgICAgIm5hbWUiOiAiSE9NRSBDSEVGIiwKICAgICAgIm9yaWdpbmFsX2Rlc2NyaXB0aW9uIjogIkhPTUUgQ0hFRiIsCiAgICAgICJwYXltZW50X2NoYW5uZWwiOiAiaW4gc3RvcmUiLAogICAgICAicGF5bWVudF9tZXRhIjogewogICAgICAgICJieV9vcmRlcl9vZiI6IG51bGwsCiAgICAgICAgInBheWVlIjogbnVsbCwKICAgICAgICAicGF5ZXIiOiBudWxsLAogICAgICAgICJwYXltZW50X21ldGhvZCI6IG51bGwsCiAgICAgICAgInBheW1lbnRfcHJvY2Vzc29yIjogbnVsbCwKICAgICAgICAicHBkX2lkIjogbnVsbCwKICAgICAgICAicmVhc29uIjogbnVsbCwKICAgICAgICAicmVmZXJlbmNlX251bWJlciI6IG51bGwKICAgICAgfSwKICAgICAgInBlbmRpbmciOiBmYWxzZSwKICAgICAgInBlbmRpbmdfdHJhbnNhY3Rpb25faWQiOiBudWxsLAogICAgICAicGVyc29uYWxfZmluYW5jZV9jYXRlZ29yeSI6IHsKICAgICAgICAiY29uZmlkZW5jZV9sZXZlbCI6ICJMT1ciLAogICAgICAgICJkZXRhaWxlZCI6ICJFTlRFUlRBSU5NRU5UX1NQT1JUSU5HX0VWRU5UU19BTVVTRU1FTlRfUEFSS1NfQU5EX01VU0VVTVMiLAogICAgICAgICJwcmltYXJ5IjogIkVOVEVSVEFJTk1FTlQiCiAgICAgIH0sCiAgICAgICJwZXJzb25hbF9maW5hbmNlX2NhdGVnb3J5X2ljb25fdXJsIjogImh0dHBzOi8vcGxhaWQtY2F0ZWdvcnktaWNvbnMucGxhaWQuY29tL1BGQ19FTlRFUlRBSU5NRU5ULnBuZyIsCiAgICAgICJ0cmFuc2FjdGlvbl9jb2RlIjogbnVsbCwKICAgICAgInRyYW5zYWN0aW9uX2lkIjogIksxOFBCNVpkYnFoMTdCVmdxYlJRaHlvYUE1ejFkZWlScEExQngiLAogICAgICAidHJhbnNhY3Rpb25fdHlwZSI6ICJwbGFjZSIsCiAgICAgICJ1bm9mZmljaWFsX2N1cnJlbmN5X2NvZGUiOiBudWxsLAogICAgICAid2Vic2l0ZSI6IG51bGwKICAgIH0sCiAgICB7CiAgICAgICJhY2NvdW50X2lkIjogIlp2bEJMNWVNUFF0blhEVjZRclI5c1JlTlZWejFYQWllYWdEUHoiLAogICAgICAiYWNjb3VudF9vd25lciI6IG51bGwsCiAgICAgICJhbW91bnQiOiAxNTMuNDEsCiAgICAgICJhdXRob3JpemVkX2RhdGUiOiAiMjAyNC0xMC0wNyIsCiAgICAgICJhdXRob3JpemVkX2RhdGV0aW1lIjogbnVsbCwKICAgICAgImNhdGVnb3J5IjogWwogICAgICAgICJTZXJ2aWNlIiwKICAgICAgICAiRm9vZCBhbmQgQmV2ZXJhZ2UiCiAgICAgIF0sCiAgICAgICJjYXRlZ29yeV9pZCI6ICIxODAyMTAwMCIsCiAgICAgICJjaGVja19udW1iZXIiOiBudWxsLAogICAgICAiY291bnRlcnBhcnRpZXMiOiBbXSwKICAgICAgImRhdGUiOiAiMjAyNC0xMC0xMSIsCiAgICAgICJkYXRldGltZSI6IG51bGwsCiAgICAgICJpc29fY3VycmVuY3lfY29kZSI6ICJVU0QiLAogICAgICAibG9jYXRpb24iOiB7CiAgICAgICAgImFkZHJlc3MiOiBudWxsLAogICAgICAgICJjaXR5IjogbnVsbCwKICAgICAgICAiY291bnRyeSI6IG51bGwsCiAgICAgICAgImxhdCI6IG51bGwsCiAgICAgICAgImxvbiI6IG51bGwsCiAgICAgICAgInBvc3RhbF9jb2RlIjogbnVsbCwKICAgICAgICAicmVnaW9uIjogbnVsbCwKICAgICAgICAic3RvcmVfbnVtYmVyIjogbnVsbAogICAgICB9LAogICAgICAibG9nb191cmwiOiBudWxsLAogICAgICAibWVyY2hhbnRfZW50aXR5X2lkIjogbnVsbCwKICAgICAgIm1lcmNoYW50X25hbWUiOiBudWxsLAogICAgICAibmFtZSI6ICJGREgqRlJFU0ggRElSRUNUIiwKICAgICAgIm9yaWdpbmFsX2Rlc2NyaXB0aW9uIjogIkZESCpGUkVTSCBESVJFQ1QiLAogICAgICAicGF5bWVudF9jaGFubmVsIjogIm9ubGluZSIsCiAgICAgICJwYXltZW50X21ldGEiOiB7CiAgICAgICAgImJ5X29yZGVyX29mIjogbnVsbCwKICAgICAgICAicGF5ZWUiOiBudWxsLAogICAgICAgICJwYXllciI6IG51bGwsCiAgICAgICAgInBheW1lbnRfbWV0aG9kIjogbnVsbCwKICAgICAgICAicGF5bWVudF9wcm9jZXNzb3IiOiBudWxsLAogICAgICAgICJwcGRfaWQiOiBudWxsLAogICAgICAgICJyZWFzb24iOiBudWxsLAogICAgICAgICJyZWZlcmVuY2VfbnVtYmVyIjogbnVsbAogICAgICB9LAogICAgICAicGVuZGluZyI6IGZhbHNlLAogICAgICAicGVuZGluZ190cmFuc2FjdGlvbl9pZCI6IG51bGwsCiAgICAgICJwZXJzb25hbF9maW5hbmNlX2NhdGVnb3J5IjogewogICAgICAgICJjb25maWRlbmNlX2xldmVsIjogIkxPVyIsCiAgICAgICAgImRldGFpbGVkIjogIkdFTkVSQUxfTUVSQ0hBTkRJU0VfT1RIRVJfR0VORVJBTF9NRVJDSEFORElTRSIsCiAgICAgICAgInByaW1hcnkiOiAiR0VORVJBTF9NRVJDSEFORElTRSIKICAgICAgfSwKICAgICAgInBlcnNvbmFsX2ZpbmFuY2VfY2F0ZWdvcnlfaWNvbl91cmwiOiAiaHR0cHM6Ly9wbGFpZC1jYXRlZ29yeS1pY29ucy5wbGFpZC5jb20vUEZDX0dFTkVSQUxfTUVSQ0hBTkRJU0UucG5nIiwKICAgICAgInRyYW5zYWN0aW9uX2NvZGUiOiBudWxsLAogICAgICAidHJhbnNhY3Rpb25faWQiOiAicnA4d1FkOURyemM3WHhWUlpiQk5zYnhQNUpNakc5aTdKNjE1diIsCiAgICAgICJ0cmFuc2FjdGlvbl90eXBlIjogInBsYWNlIiwKICAgICAgInVub2ZmaWNpYWxfY3VycmVuY3lfY29kZSI6IG51bGwsCiAgICAgICJ3ZWJzaXRlIjogbnVsbAogICAgfSwKICAgIHsKICAgICAgImFjY291bnRfaWQiOiAiWnZsQkw1ZU1QUXRuWERWNlFyUjlzUmVOVlZ6MVhBaWVhZ0RQeiIsCiAgICAgICJhY2NvdW50X293bmVyIjogbnVsbCwKICAgICAgImFtb3VudCI6IDEyMS45NCwKICAgICAgImF1dGhvcml6ZWRfZGF0ZSI6ICIyMDI0LTEwLTA4IiwKICAgICAgImF1dGhvcml6ZWRfZGF0ZXRpbWUiOiBudWxsLAogICAgICAiY2F0ZWdvcnkiOiBbCiAgICAgICAgIlNob3BzIiwKICAgICAgICAiRGlnaXRhbCBQdXJjaGFzZSIKICAgICAgXSwKICAgICAgImNhdGVnb3J5X2lkIjogIjE5MDE5MDAwIiwKICAgICAgImNoZWNrX251bWJlciI6IG51bGwsCiAgICAgICJjb3VudGVycGFydGllcyI6IFsKICAgICAgICB7CiAgICAgICAgICAiY29uZmlkZW5jZV9sZXZlbCI6ICJWRVJZX0hJR0giLAogICAgICAgICAgImVudGl0eV9pZCI6ICJvQjEzcEFnejBwd0pwcE55MHJqYTRLS2JrZExuZHAwZWczWG16IiwKICAgICAgICAgICJsb2dvX3VybCI6ICJodHRwczovL3BsYWlkLWNvdW50ZXJwYXJ0eS1sb2dvcy5wbGFpZC5jb20vYWZ0ZXJwYXlfMzAucG5nIiwKICAgICAgICAgICJuYW1lIjogIkFmdGVyUGF5IiwKICAgICAgICAgICJwaG9uZV9udW1iZXIiOiBudWxsLAogICAgICAgICAgInR5cGUiOiAiZmluYW5jaWFsX2luc3RpdHV0aW9uIiwKICAgICAgICAgICJ3ZWJzaXRlIjogImFmdGVycGF5LmNvbSIKICAgICAgICB9CiAgICAgIF0sCiAgICAgICJkYXRlIjogIjIwMjQtMTAtMDkiLAogICAgICAiZGF0ZXRpbWUiOiBudWxsLAogICAgICAiaXNvX2N1cnJlbmN5X2NvZGUiOiAiVVNEIiwKICAgICAgImxvY2F0aW9uIjogewogICAgICAgICJhZGRyZXNzIjogbnVsbCwKICAgICAgICAiY2l0eSI6IG51bGwsCiAgICAgICAgImNvdW50cnkiOiBudWxsLAogICAgICAgICJsYXQiOiBudWxsLAogICAgICAgICJsb24iOiBudWxsLAogICAgICAgICJwb3N0YWxfY29kZSI6IG51bGwsCiAgICAgICAgInJlZ2lvbiI6IG51bGwsCiAgICAgICAgInN0b3JlX251bWJlciI6IG51bGwKICAgICAgfSwKICAgICAgImxvZ29fdXJsIjogbnVsbCwKICAgICAgIm1lcmNoYW50X2VudGl0eV9pZCI6IG51bGwsCiAgICAgICJtZXJjaGFudF9uYW1lIjogIkFmdGVyUGF5IiwKICAgICAgIm5hbWUiOiAiQUZURVJQQVkiLAogICAgICAib3JpZ2luYWxfZGVzY3JpcHRpb24iOiAiQUZURVJQQVkiLAogICAgICAicGF5bWVudF9jaGFubmVsIjogIm90aGVyIiwKICAgICAgInBheW1lbnRfbWV0YSI6IHsKICAgICAgICAiYnlfb3JkZXJfb2YiOiBudWxsLAogICAgICAgICJwYXllZSI6IG51bGwsCiAgICAgICAgInBheWVyIjogbnVsbCwKICAgICAgICAicGF5bWVudF9tZXRob2QiOiBudWxsLAogICAgICAgICJwYXltZW50X3Byb2Nlc3NvciI6IG51bGwsCiAgICAgICAgInBwZF9pZCI6IG51bGwsCiAgICAgICAgInJlYXNvbiI6IG51bGwsCiAgICAgICAgInJlZmVyZW5jZV9udW1iZXIiOiBudWxsCiAgICAgIH0sCiAgICAgICJwZW5kaW5nIjogZmFsc2UsCiAgICAgICJwZW5kaW5nX3RyYW5zYWN0aW9uX2lkIjogbnVsbCwKICAgICAgInBlcnNvbmFsX2ZpbmFuY2VfY2F0ZWdvcnkiOiB7CiAgICAgICAgImNvbmZpZGVuY2VfbGV2ZWwiOiAiVkVSWV9ISUdIIiwKICAgICAgICAiZGV0YWlsZWQiOiAiTE9BTl9QQVlNRU5UU19QRVJTT05BTF9MT0FOX1BBWU1FTlQiLAogICAgICAgICJwcmltYXJ5IjogIkxPQU5fUEFZTUVOVFMiCiAgICAgIH0sCiAgICAgICJwZXJzb25hbF9maW5hbmNlX2NhdGVnb3J5X2ljb25fdXJsIjogImh0dHBzOi8vcGxhaWQtY2F0ZWdvcnktaWNvbnMucGxhaWQuY29tL1BGQ19MT0FOX1BBWU1FTlRTLnBuZyIsCiAgICAgICJ0cmFuc2FjdGlvbl9jb2RlIjogbnVsbCwKICAgICAgInRyYW5zYWN0aW9uX2lkIjogInpreXo4UTlyTlBDWGdXUWV5ajlwSWVxUFdsbUpwZGhsTkxRdnYiLAogICAgICAidHJhbnNhY3Rpb25fdHlwZSI6ICJkaWdpdGFsIiwKICAgICAgInVub2ZmaWNpYWxfY3VycmVuY3lfY29kZSI6IG51bGwsCiAgICAgICJ3ZWJzaXRlIjogbnVsbAogICAgfSwKICAgIHsKICAgICAgImFjY291bnRfaWQiOiAiWnZsQkw1ZU1QUXRuWERWNlFyUjlzUmVOVlZ6MVhBaWVhZ0RQeiIsCiAgICAgICJhY2NvdW50X293bmVyIjogbnVsbCwKICAgICAgImFtb3VudCI6IDYwLjE5LAogICAgICAiYXV0aG9yaXplZF9kYXRlIjogIjIwMjQtMTAtMTAiLAogICAgICAiYXV0aG9yaXplZF9kYXRldGltZSI6IG51bGwsCiAgICAgICJjYXRlZ29yeSI6IFsKICAgICAgICAiRm9vZCBhbmQgRHJpbmsiLAogICAgICAgICJSZXN0YXVyYW50cyIKICAgICAgXSwKICAgICAgImNhdGVnb3J5X2lkIjogIjEzMDA1MDAwIiwKICAgICAgImNoZWNrX251bWJlciI6IG51bGwsCiAgICAgICJjb3VudGVycGFydGllcyI6IFsKICAgICAgICB7CiAgICAgICAgICAiY29uZmlkZW5jZV9sZXZlbCI6ICJMT1ciLAogICAgICAgICAgImVudGl0eV9pZCI6IG51bGwsCiAgICAgICAgICAibG9nb191cmwiOiBudWxsLAogICAgICAgICAgIm5hbWUiOiAiTExDIiwKICAgICAgICAgICJwaG9uZV9udW1iZXIiOiBudWxsLAogICAgICAgICAgInR5cGUiOiAibWVyY2hhbnQiLAogICAgICAgICAgIndlYnNpdGUiOiBudWxsCiAgICAgICAgfQogICAgICBdLAogICAgICAiZGF0ZSI6ICIyMDI0LTEwLTEwIiwKICAgICAgImRhdGV0aW1lIjogbnVsbCwKICAgICAgImlzb19jdXJyZW5jeV9jb2RlIjogIlVTRCIsCiAgICAgICJsb2NhdGlvbiI6IHsKICAgICAgICAiYWRkcmVzcyI6IG51bGwsCiAgICAgICAgImNpdHkiOiBudWxsLAogICAgICAgICJjb3VudHJ5IjogbnVsbCwKICAgICAgICAibGF0IjogbnVsbCwKICAgICAgICAibG9uIjogbnVsbCwKICAgICAgICAicG9zdGFsX2NvZGUiOiBudWxsLAogICAgICAgICJyZWdpb24iOiBudWxsLAogICAgICAgICJzdG9yZV9udW1iZXIiOiBudWxsCiAgICAgIH0sCiAgICAgICJsb2dvX3VybCI6IG51bGwsCiAgICAgICJtZXJjaGFudF9lbnRpdHlfaWQiOiBudWxsLAogICAgICAibWVyY2hhbnRfbmFtZSI6ICJMTEMiLAogICAgICAibmFtZSI6ICJNXHUwMDI2RCBHT09EIFZJQkVTIExMQyIsCiAgICAgICJvcmlnaW5hbF9kZXNjcmlwdGlvbiI6ICJNXHUwMDI2RCBHT09EIFZJQkVTIExMQyIsCiAgICAgICJwYXltZW50X2NoYW5uZWwiOiAiaW4gc3RvcmUiLAogICAgICAicGF5bWVudF9tZXRhIjogewogICAgICAgICJieV9vcmRlcl9vZiI6IG51bGwsCiAgICAgICAgInBheWVlIjogbnVsbCwKICAgICAgICAicGF5ZXIiOiBudWxsLAogICAgICAgICJwYXltZW50X21ldGhvZCI6IG51bGwsCiAgICAgICAgInBheW1lbnRfcHJvY2Vzc29yIjogbnVsbCwKICAgICAgICAicHBkX2lkIjogbnVsbCwKICAgICAgICAicmVhc29uIjogbnVsbCwKICAgICAgICAicmVmZXJlbmNlX251bWJlciI6IG51bGwKICAgICAgfSwKICAgICAgInBlbmRpbmciOiBmYWxzZSwKICAgICAgInBlbmRpbmdfdHJhbnNhY3Rpb25faWQiOiBudWxsLAogICAgICAicGVyc29uYWxfZmluYW5jZV9jYXRlZ29yeSI6IHsKICAgICAgICAiY29uZmlkZW5jZV9sZXZlbCI6ICJMT1ciLAogICAgICAgICJkZXRhaWxlZCI6ICJHRU5FUkFMX01FUkNIQU5ESVNFX09USEVSX0dFTkVSQUxfTUVSQ0hBTkRJU0UiLAogICAgICAgICJwcmltYXJ5IjogIkdFTkVSQUxfTUVSQ0hBTkRJU0UiCiAgICAgIH0sCiAgICAgICJwZXJzb25hbF9maW5hbmNlX2NhdGVnb3J5X2ljb25fdXJsIjogImh0dHBzOi8vcGxhaWQtY2F0ZWdvcnktaWNvbnMucGxhaWQuY29tL1BGQ19HRU5FUkFMX01FUkNIQU5ESVNFLnBuZyIsCiAgICAgICJ0cmFuc2FjdGlvbl9jb2RlIjogbnVsbCwKICAgICAgInRyYW5zYWN0aW9uX2lkIjogIkI0ZWs4NjlacEdDNDFtRG5qdlZ4dUJkWFZMalBSeEM0TThnS1AiLAogICAgICAidHJhbnNhY3Rpb25fdHlwZSI6ICJwbGFjZSIsCiAgICAgICJ1bm9mZmljaWFsX2N1cnJlbmN5X2NvZGUiOiBudWxsLAogICAgICAid2Vic2l0ZSI6IG51bGwKICAgIH0sCiAgICB7CiAgICAgICJhY2NvdW50X2lkIjogIlp2bEJMNWVNUFF0blhEVjZRclI5c1JlTlZWejFYQWllYWdEUHoiLAogICAgICAiYWNjb3VudF9vd25lciI6IG51bGwsCiAgICAgICJhbW91bnQiOiAyMy4zOSwKICAgICAgImF1dGhvcml6ZWRfZGF0ZSI6ICIyMDI0LTEwLTEwIiwKICAgICAgImF1dGhvcml6ZWRfZGF0ZXRpbWUiOiBudWxsLAogICAgICAiY2F0ZWdvcnkiOiBbCiAgICAgICAgIlNob3BzIiwKICAgICAgICAiQ2xvdGhpbmcgYW5kIEFjY2Vzc29yaWVzIgogICAgICBdLAogICAgICAiY2F0ZWdvcnlfaWQiOiAiMTkwMTIwMDAiLAogICAgICAiY2hlY2tfbnVtYmVyIjogbnVsbCwKICAgICAgImNvdW50ZXJwYXJ0aWVzIjogW10sCiAgICAgICJkYXRlIjogIjIwMjQtMTAtMTAiLAogICAgICAiZGF0ZXRpbWUiOiBudWxsLAogICAgICAiaXNvX2N1cnJlbmN5X2NvZGUiOiAiVVNEIiwKICAgICAgImxvY2F0aW9uIjogewogICAgICAgICJhZGRyZXNzIjogbnVsbCwKICAgICAgICAiY2l0eSI6IG51bGwsCiAgICAgICAgImNvdW50cnkiOiBudWxsLAogICAgICAgICJsYXQiOiBudWxsLAogICAgICAgICJsb24iOiBudWxsLAogICAgICAgICJwb3N0YWxfY29kZSI6IG51bGwsCiAgICAgICAgInJlZ2lvbiI6IG51bGwsCiAgICAgICAgInN0b3JlX251bWJlciI6IG51bGwKICAgICAgfSwKICAgICAgImxvZ29fdXJsIjogbnVsbCwKICAgICAgIm1lcmNoYW50X2VudGl0eV9pZCI6IG51bGwsCiAgICAgICJtZXJjaGFudF9uYW1lIjogbnVsbCwKICAgICAgIm5hbWUiOiAiSFx1MDAyNk0wMTIzIiwKICAgICAgIm9yaWdpbmFsX2Rlc2NyaXB0aW9uIjogIkhcdTAwMjZNMDEyMyIsCiAgICAgICJwYXltZW50X2NoYW5uZWwiOiAiaW4gc3RvcmUiLAogICAgICAicGF5bWVudF9tZXRhIjogewogICAgICAgICJieV9vcmRlcl9vZiI6IG51bGwsCiAgICAgICAgInBheWVlIjogbnVsbCwKICAgICAgICAicGF5ZXIiOiBudWxsLAogICAgICAgICJwYXltZW50X21ldGhvZCI6IG51bGwsCiAgICAgICAgInBheW1lbnRfcHJvY2Vzc29yIjogbnVsbCwKICAgICAgICAicHBkX2lkIjogbnVsbCwKICAgICAgICAicmVhc29uIjogbnVsbCwKICAgICAgICAicmVmZXJlbmNlX251bWJlciI6IG51bGwKICAgICAgfSwKICAgICAgInBlbmRpbmciOiBmYWxzZSwKICAgICAgInBlbmRpbmdfdHJhbnNhY3Rpb25faWQiOiBudWxsLAogICAgICAicGVyc29uYWxfZmluYW5jZV9jYXRlZ29yeSI6IHsKICAgICAgICAiY29uZmlkZW5jZV9sZXZlbCI6ICJMT1ciLAogICAgICAgICJkZXRhaWxlZCI6ICJHRU5FUkFMX01FUkNIQU5ESVNFX09USEVSX0dFTkVSQUxfTUVSQ0hBTkRJU0UiLAogICAgICAgICJwcmltYXJ5IjogIkdFTkVSQUxfTUVSQ0hBTkRJU0UiCiAgICAgIH0sCiAgICAgICJwZXJzb25hbF9maW5hbmNlX2NhdGVnb3J5X2ljb25fdXJsIjogImh0dHBzOi8vcGxhaWQtY2F0ZWdvcnktaWNvbnMucGxhaWQuY29tL1BGQ19HRU5FUkFMX01FUkNIQU5ESVNFLnBuZyIsCiAgICAgICJ0cmFuc2FjdGlvbl9jb2RlIjogbnVsbCwKICAgICAgInRyYW5zYWN0aW9uX2lkIjogIjN5bEphcGRiM2pmOG5LM0ExejdKRjNqbG1RYTVMQmhabG5FMUEiLAogICAgICAidHJhbnNhY3Rpb25fdHlwZSI6ICJwbGFjZSIsCiAgICAgICJ1bm9mZmljaWFsX2N1cnJlbmN5X2NvZGUiOiBudWxsLAogICAgICAid2Vic2l0ZSI6IG51bGwKICAgIH0sCiAgICB7CiAgICAgICJhY2NvdW50X2lkIjogIlp2bEJMNWVNUFF0blhEVjZRclI5c1JlTlZWejFYQWllYWdEUHoiLAogICAgICAiYWNjb3VudF9vd25lciI6IG51bGwsCiAgICAgICJhbW91bnQiOiAxMDkuNywKICAgICAgImF1dGhvcml6ZWRfZGF0ZSI6ICIyMDI0LTEwLTEwIiwKICAgICAgImF1dGhvcml6ZWRfZGF0ZXRpbWUiOiBudWxsLAogICAgICAiY2F0ZWdvcnkiOiBbCiAgICAgICAgIlNlcnZpY2UiLAogICAgICAgICJBdXRvbW90aXZlIgogICAgICBdLAogICAgICAiY2F0ZWdvcnlfaWQiOiAiMTgwMDYwMDAiLAogICAgICAiY2hlY2tfbnVtYmVyIjogbnVsbCwKICAgICAgImNvdW50ZXJwYXJ0aWVzIjogWwogICAgICAgIHsKICAgICAgICAgICJjb25maWRlbmNlX2xldmVsIjogIlZFUllfSElHSCIsCiAgICAgICAgICAiZW50aXR5X2lkIjogInBZMDl3Zzk4TjdiWjBtSmVaTFJPNDc1NWJibjdPemVBT0F2RFkiLAogICAgICAgICAgImxvZ29fdXJsIjogImh0dHBzOi8vcGxhaWQtbWVyY2hhbnQtbG9nb3MucGxhaWQuY29tL2ppZmZ5X2x1YmVfNTM4LnBuZyIsCiAgICAgICAgICAibmFtZSI6ICJKaWZmeSBMdWJlIiwKICAgICAgICAgICJwaG9uZV9udW1iZXIiOiBudWxsLAogICAgICAgICAgInR5cGUiOiAibWVyY2hhbnQiLAogICAgICAgICAgIndlYnNpdGUiOiAiamlmZnlsdWJlLmNvbSIKICAgICAgICB9CiAgICAgIF0sCiAgICAgICJkYXRlIjogIjIwMjQtMTAtMTAiLAogICAgICAiZGF0ZXRpbWUiOiBudWxsLAogICAgICAiaXNvX2N1cnJlbmN5X2NvZGUiOiAiVVNEIiwKICAgICAgImxvY2F0aW9uIjogewogICAgICAgICJhZGRyZXNzIjogIjEwOSBOIE1haW4gU3QiLAogICAgICAgICJjaXR5IjogIk1hdWxkaW4iLAogICAgICAgICJjb3VudHJ5IjogbnVsbCwKICAgICAgICAibGF0IjogMzQuNzc5OTI2LAogICAgICAgICJsb24iOiAtODIuMzEwOTI4LAogICAgICAgICJwb3N0YWxfY29kZSI6ICIyOTY2MiIsCiAgICAgICAgInJlZ2lvbiI6ICJTQyIsCiAgICAgICAgInN0b3JlX251bWJlciI6IG51bGwKICAgICAgfSwKICAgICAgImxvZ29fdXJsIjogImh0dHBzOi8vcGxhaWQtbWVyY2hhbnQtbG9nb3MucGxhaWQuY29tL2ppZmZ5X2x1YmVfNTM4LnBuZyIsCiAgICAgICJtZXJjaGFudF9lbnRpdHlfaWQiOiAicFkwOXdnOThON2JaMG1KZVpMUk80NzU1YmJuN096ZUFPQXZEWSIsCiAgICAgICJtZXJjaGFudF9uYW1lIjogIkppZmZ5IEx1YmUiLAogICAgICAibmFtZSI6ICJKaWZmeSBMdWJlIiwKICAgICAgIm9yaWdpbmFsX2Rlc2NyaXB0aW9uIjogIkpJRkZZIExVQkUgMDEyMyIsCiAgICAgICJwYXltZW50X2NoYW5uZWwiOiAiaW4gc3RvcmUiLAogICAgICAicGF5bWVudF9tZXRhIjogewogICAgICAgICJieV9vcmRlcl9vZiI6IG51bGwsCiAgICAgICAgInBheWVlIjogbnVsbCwKICAgICAgICAicGF5ZXIiOiBudWxsLAogICAgICAgICJwYXltZW50X21ldGhvZCI6IG51bGwsCiAgICAgICAgInBheW1lbnRfcHJvY2Vzc29yIjogbnVsbCwKICAgICAgICAicHBkX2lkIjogbnVsbCwKICAgICAgICAicmVhc29uIjogbnVsbCwKICAgICAgICAicmVmZXJlbmNlX251bWJlciI6IG51bGwKICAgICAgfSwKICAgICAgInBlbmRpbmciOiBmYWxzZSwKICAgICAgInBlbmRpbmdfdHJhbnNhY3Rpb25faWQiOiBudWxsLAogICAgICAicGVyc29uYWxfZmluYW5jZV9jYXRlZ29yeSI6IHsKICAgICAgICAiY29uZmlkZW5jZV9sZXZlbCI6ICJWRVJZX0hJR0giLAogICAgICAgICJkZXRhaWxlZCI6ICJHRU5FUkFMX1NFUlZJQ0VTX0FVVE9NT1RJVkUiLAogICAgICAgICJwcmltYXJ5IjogIkdFTkVSQUxfU0VSVklDRVMiCiAgICAgIH0sCiAgICAgICJwZXJzb25hbF9maW5hbmNlX2NhdGVnb3J5X2ljb25fdXJsIjogImh0dHBzOi8vcGxhaWQtY2F0ZWdvcnktaWNvbnMucGxhaWQuY29tL1BGQ19HRU5FUkFMX1NFUlZJQ0VTLnBuZyIsCiAgICAgICJ0cmFuc2FjdGlvbl9jb2RlIjogbnVsbCwKICAgICAgInRyYW5zYWN0aW9uX2lkIjogInhBYktvNzVxYTR1bTVhWjh6bmRwVU1kN2dXNXdieFU2NFZlR3oiLAogICAgICAidHJhbnNhY3Rpb25fdHlwZSI6ICJwbGFjZSIsCiAgICAgICJ1bm9mZmljaWFsX2N1cnJlbmN5X2NvZGUiOiBudWxsLAogICAgICAid2Vic2l0ZSI6ICJqaWZmeWx1YmUuY29tIgogICAgfSwKICAgIHsKICAgICAgImFjY291bnRfaWQiOiAiWnZsQkw1ZU1QUXRuWERWNlFyUjlzUmVOVlZ6MVhBaWVhZ0RQeiIsCiAgICAgICJhY2NvdW50X293bmVyIjogbnVsbCwKICAgICAgImFtb3VudCI6IDQ3LjI3LAogICAgICAiYXV0aG9yaXplZF9kYXRlIjogIjIwMjQtMTAtMTEiLAogICAgICAiYXV0aG9yaXplZF9kYXRldGltZSI6IG51bGwsCiAgICAgICJjYXRlZ29yeSI6IFsKICAgICAgICAiU2hvcHMiLAogICAgICAgICJCZWF1dHkgUHJvZHVjdHMiCiAgICAgIF0sCiAgICAgICJjYXRlZ29yeV9pZCI6ICIxOTAwNjAwMCIsCiAgICAgICJjaGVja19udW1iZXIiOiBudWxsLAogICAgICAiY291bnRlcnBhcnRpZXMiOiBbXSwKICAgICAgImRhdGUiOiAiMjAyNC0xMC0xNSIsCiAgICAgICJkYXRldGltZSI6IG51bGwsCiAgICAgICJpc29fY3VycmVuY3lfY29kZSI6ICJVU0QiLAogICAgICAibG9jYXRpb24iOiB7CiAgICAgICAgImFkZHJlc3MiOiBudWxsLAogICAgICAgICJjaXR5IjogbnVsbCwKICAgICAgICAiY291bnRyeSI6IG51bGwsCiAgICAgICAgImxhdCI6IG51bGwsCiAgICAgICAgImxvbiI6IG51bGwsCiAgICAgICAgInBvc3RhbF9jb2RlIjogbnVsbCwKICAgICAgICAicmVnaW9uIjogbnVsbCwKICAgICAgICAic3RvcmVfbnVtYmVyIjogbnVsbAogICAgICB9LAogICAgICAibG9nb191cmwiOiBudWxsLAogICAgICAibWVyY2hhbnRfZW50aXR5X2lkIjogbnVsbCwKICAgICAgIm1lcmNoYW50X25hbWUiOiBudWxsLAogICAgICAibmFtZSI6ICJST0RBTkZJKkxEUyAwMTIzNDU2Nzg5IiwKICAgICAgIm9yaWdpbmFsX2Rlc2NyaXB0aW9uIjogIlJPREFORkkqTERTIDAxMjM0NTY3ODkiLAogICAgICAicGF5bWVudF9jaGFubmVsIjogImluIHN0b3JlIiwKICAgICAgInBheW1lbnRfbWV0YSI6IHsKICAgICAgICAiYnlfb3JkZXJfb2YiOiBudWxsLAogICAgICAgICJwYXllZSI6IG51bGwsCiAgICAgICAgInBheWVyIjogbnVsbCwKICAgICAgICAicGF5bWVudF9tZXRob2QiOiBudWxsLAogICAgICAgICJwYXltZW50X3Byb2Nlc3NvciI6IG51bGwsCiAgICAgICAgInBwZF9pZCI6IG51bGwsCiAgICAgICAgInJlYXNvbiI6IG51bGwsCiAgICAgICAgInJlZmVyZW5jZV9udW1iZXIiOiBudWxsCiAgICAgIH0sCiAgICAgICJwZW5kaW5nIjogZmFsc2UsCiAgICAgICJwZW5kaW5nX3RyYW5zYWN0aW9uX2lkIjogbnVsbCwKICAgICAgInBlcnNvbmFsX2ZpbmFuY2VfY2F0ZWdvcnkiOiB7CiAgICAgICAgImNvbmZpZGVuY2VfbGV2ZWwiOiAiTE9XIiwKICAgICAgICAiZGV0YWlsZWQiOiAiUEVSU09OQUxfQ0FSRV9IQUlSX0FORF9CRUFVVFkiLAogICAgICAgICJwcmltYXJ5IjogIlBFUlNPTkFMX0NBUkUiCiAgICAgIH0sCiAgICAgICJwZXJzb25hbF9maW5hbmNlX2NhdGVnb3J5X2ljb25fdXJsIjogImh0dHBzOi8vcGxhaWQtY2F0ZWdvcnktaWNvbnMucGxhaWQuY29tL1BGQ19QRVJTT05BTF9DQVJFLnBuZyIsCiAgICAgICJ0cmFuc2FjdGlvbl9jb2RlIjogbnVsbCwKICAgICAgInRyYW5zYWN0aW9uX2lkIjogImR4NFpLNThYb1dDdmJYVlpsTmdhQzlSbDV3a0xFeENKRVFSV00iLAogICAgICAidHJhbnNhY3Rpb25fdHlwZSI6ICJwbGFjZSIsCiAgICAgICJ1bm9mZmljaWFsX2N1cnJlbmN5X2NvZGUiOiBudWxsLAogICAgICAid2Vic2l0ZSI6IG51bGwKICAgIH0sCiAgICB7CiAgICAgICJhY2NvdW50X2lkIjogIlp2bEJMNWVNUFF0blhEVjZRclI5c1JlTlZWejFYQWllYWdEUHoiLAogICAgICAiYWNjb3VudF9vd25lciI6IG51bGwsCiAgICAgICJhbW91bnQiOiA3Ljk3LAogICAgICAiYXV0aG9yaXplZF9kYXRlIjogIjIwMjQtMTAtMTQiLAogICAgICAiYXV0aG9yaXplZF9kYXRldGltZSI6IG51bGwsCiAgICAgICJjYXRlZ29yeSI6IFsKICAgICAgICAiU2hvcHMiLAogICAgICAgICJGb29kIGFuZCBCZXZlcmFnZSBTdG9yZSIKICAgICAgXSwKICAgICAgImNhdGVnb3J5X2lkIjogIjE5MDI1MDAwIiwKICAgICAgImNoZWNrX251bWJlciI6IG51bGwsCiAgICAgICJjb3VudGVycGFydGllcyI6IFsKICAgICAgICB7CiAgICAgICAgICAiY29uZmlkZW5jZV9sZXZlbCI6ICJMT1ciLAogICAgICAgICAgImVudGl0eV9pZCI6IG51bGwsCiAgICAgICAgICAibG9nb191cmwiOiBudWxsLAogICAgICAgICAgIm5hbWUiOiAiSm9lIFx1MDAyNiBUaGUgSnVpY2UiLAogICAgICAgICAgInBob25lX251bWJlciI6IG51bGwsCiAgICAgICAgICAidHlwZSI6ICJtZXJjaGFudCIsCiAgICAgICAgICAid2Vic2l0ZSI6IG51bGwKICAgICAgICB9LAogICAgICAgIHsKICAgICAgICAgICJjb25maWRlbmNlX2xldmVsIjogIlZFUllfSElHSCIsCiAgICAgICAgICAiZW50aXR5X2lkIjogImtZeXpMcjdKREV2bU40M1lhYVdhZ1JLWktwbndyTjJNa3B5MmciLAogICAgICAgICAgImxvZ29fdXJsIjogImh0dHBzOi8vcGxhaWQtY291bnRlcnBhcnR5LWxvZ29zLnBsYWlkLmNvbS9zcXVhcmVfMTU0LnBuZyIsCiAgICAgICAgICAibmFtZSI6ICJTcXVhcmUiLAogICAgICAgICAgInBob25lX251bWJlciI6IG51bGwsCiAgICAgICAgICAidHlwZSI6ICJwYXltZW50X3Rlcm1pbmFsIiwKICAgICAgICAgICJ3ZWJzaXRlIjogInNxdWFyZXVwLmNvbSIKICAgICAgICB9CiAgICAgIF0sCiAgICAgICJkYXRlIjogIjIwMjQtMTAtMTUiLAogICAgICAiZGF0ZXRpbWUiOiBudWxsLAogICAgICAiaXNvX2N1cnJlbmN5X2NvZGUiOiAiVVNEIiwKICAgICAgImxvY2F0aW9uIjogewogICAgICAgICJhZGRyZXNzIjogbnVsbCwKICAgICAgICAiY2l0eSI6IG51bGwsCiAgICAgICAgImNvdW50cnkiOiBudWxsLAogICAgICAgICJsYXQiOiBudWxsLAogICAgICAgICJsb24iOiBudWxsLAogICAgICAgICJwb3N0YWxfY29kZSI6IG51bGwsCiAgICAgICAgInJlZ2lvbiI6IG51bGwsCiAgICAgICAgInN0b3JlX251bWJlciI6IG51bGwKICAgICAgfSwKICAgICAgImxvZ29fdXJsIjogbnVsbCwKICAgICAgIm1lcmNoYW50X2VudGl0eV9pZCI6IG51bGwsCiAgICAgICJtZXJjaGFudF9uYW1lIjogIkpvZSBcdTAwMjYgVGhlIEp1aWNlIiwKICAgICAgIm5hbWUiOiAiSk9FIFx1MDAyNiBUSEUgSlVJQ0UiLAogICAgICAib3JpZ2luYWxfZGVzY3JpcHRpb24iOiAiU1EgKkpPRSBcdTAwMjYgVEhFIEpVSUNFIiwKICAgICAgInBheW1lbnRfY2hhbm5lbCI6ICJpbiBzdG9yZSIsCiAgICAgICJwYXltZW50X21ldGEiOiB7CiAgICAgICAgImJ5X29yZGVyX29mIjogbnVsbCwKICAgICAgICAicGF5ZWUiOiBudWxsLAogICAgICAgICJwYXllciI6IG51bGwsCiAgICAgICAgInBheW1lbnRfbWV0aG9kIjogbnVsbCwKICAgICAgICAicGF5bWVudF9wcm9jZXNzb3IiOiAiU3F1YXJlIiwKICAgICAgICAicHBkX2lkIjogbnVsbCwKICAgICAgICAicmVhc29uIjogbnVsbCwKICAgICAgICAicmVmZXJlbmNlX251bWJlciI6IG51bGwKICAgICAgfSwKICAgICAgInBlbmRpbmciOiBmYWxzZSwKICAgICAgInBlbmRpbmdfdHJhbnNhY3Rpb25faWQiOiBudWxsLAogICAgICAicGVyc29uYWxfZmluYW5jZV9jYXRlZ29yeSI6IHsKICAgICAgICAiY29uZmlkZW5jZV9sZXZlbCI6ICJMT1ciLAogICAgICAgICJkZXRhaWxlZCI6ICJGT09EX0FORF9EUklOS19PVEhFUl9GT09EX0FORF9EUklOSyIsCiAgICAgICAgInByaW1hcnkiOiAiRk9PRF9BTkRfRFJJTksiCiAgICAgIH0sCiAgICAgICJwZXJzb25hbF9maW5hbmNlX2NhdGVnb3J5X2ljb25fdXJsIjogImh0dHBzOi8vcGxhaWQtY2F0ZWdvcnktaWNvbnMucGxhaWQuY29tL1BGQ19GT09EX0FORF9EUklOSy5wbmciLAogICAgICAidHJhbnNhY3Rpb25fY29kZSI6IG51bGwsCiAgICAgICJ0cmFuc2FjdGlvbl9pZCI6ICJheng3QTU5WDFnYzVvclY2ZFB3M3NvcUFqSjN6WnlzWjVRRFc0IiwKICAgICAgInRyYW5zYWN0aW9uX3R5cGUiOiAicGxhY2UiLAogICAgICAidW5vZmZpY2lhbF9jdXJyZW5jeV9jb2RlIjogbnVsbCwKICAgICAgIndlYnNpdGUiOiBudWxsCiAgICB9LAogICAgewogICAgICAiYWNjb3VudF9pZCI6ICJadmxCTDVlTVBRdG5YRFY2UXJSOXNSZU5WVnoxWEFpZWFnRFB6IiwKICAgICAgImFjY291bnRfb3duZXIiOiBudWxsLAogICAgICAiYW1vdW50IjogMTguNTYsCiAgICAgICJhdXRob3JpemVkX2RhdGUiOiAiMjAyNC0xMC0xNSIsCiAgICAgICJhdXRob3JpemVkX2RhdGV0aW1lIjogbnVsbCwKICAgICAgImNhdGVnb3J5IjogWwogICAgICAgICJUcmF2ZWwiLAogICAgICAgICJQdWJsaWMgVHJhbnNwb3J0YXRpb24gU2VydmljZXMiCiAgICAgIF0sCiAgICAgICJjYXRlZ29yeV9pZCI6ICIyMjAxNDAwMCIsCiAgICAgICJjaGVja19udW1iZXIiOiBudWxsLAogICAgICAiY291bnRlcnBhcnRpZXMiOiBbXSwKICAgICAgImRhdGUiOiAiMjAyNC0xMC0xNSIsCiAgICAgICJkYXRldGltZSI6IG51bGwsCiAgICAgICJpc29fY3VycmVuY3lfY29kZSI6ICJVU0QiLAogICAgICAibG9jYXRpb24iOiB7CiAgICAgICAgImFkZHJlc3MiOiBudWxsLAogICAgICAgICJjaXR5IjogbnVsbCwKICAgICAgICAiY291bnRyeSI6IG51bGwsCiAgICAgICAgImxhdCI6IG51bGwsCiAgICAgICAgImxvbiI6IG51bGwsCiAgICAgICAgInBvc3RhbF9jb2RlIjogbnVsbCwKICAgICAgICAicmVnaW9uIjogbnVsbCwKICAgICAgICAic3RvcmVfbnVtYmVyIjogbnVsbAogICAgICB9LAogICAgICAibG9nb191cmwiOiBudWxsLAogICAgICAibWVyY2hhbnRfZW50aXR5X2lkIjogbnVsbCwKICAgICAgIm1lcmNoYW50X25hbWUiOiBudWxsLAogICAgICAibmFtZSI6ICJNVEEqTU5SIFNUQVRJT04gVElYIiwKICAgICAgIm9yaWdpbmFsX2Rlc2NyaXB0aW9uIjogIk1UQSpNTlIgU1RBVElPTiBUSVgiLAogICAgICAicGF5bWVudF9jaGFubmVsIjogImluIHN0b3JlIiwKICAgICAgInBheW1lbnRfbWV0YSI6IHsKICAgICAgICAiYnlfb3JkZXJfb2YiOiBudWxsLAogICAgICAgICJwYXllZSI6IG51bGwsCiAgICAgICAgInBheWVyIjogbnVsbCwKICAgICAgICAicGF5bWVudF9tZXRob2QiOiBudWxsLAogICAgICAgICJwYXltZW50X3Byb2Nlc3NvciI6IG51bGwsCiAgICAgICAgInBwZF9pZCI6IG51bGwsCiAgICAgICAgInJlYXNvbiI6IG51bGwsCiAgICAgICAgInJlZmVyZW5jZV9udW1iZXIiOiBudWxsCiAgICAgIH0sCiAgICAgICJwZW5kaW5nIjogZmFsc2UsCiAgICAgICJwZW5kaW5nX3RyYW5zYWN0aW9uX2lkIjogbnVsbCwKICAgICAgInBlcnNvbmFsX2ZpbmFuY2VfY2F0ZWdvcnkiOiB7CiAgICAgICAgImNvbmZpZGVuY2VfbGV2ZWwiOiAiTE9XIiwKICAgICAgICAiZGV0YWlsZWQiOiAiVFJBTlNQT1JUQVRJT05fUFVCTElDX1RSQU5TSVQiLAogICAgICAgICJwcmltYXJ5IjogIlRSQU5TUE9SVEFUSU9OIgogICAgICB9LAogICAgICAicGVyc29uYWxfZmluYW5jZV9jYXRlZ29yeV9pY29uX3VybCI6ICJodHRwczovL3BsYWlkLWNhdGVnb3J5LWljb25zLnBsYWlkLmNvbS9QRkNfVFJBTlNQT1JUQVRJT04ucG5nIiwKICAgICAgInRyYW5zYWN0aW9uX2NvZGUiOiBudWxsLAogICAgICAidHJhbnNhY3Rpb25faWQiOiAiNDlxWjRvR2J4N1Q4NzNYRG9lYm5GbWxiZFc0ZURhRkpiQUwxeiIsCiAgICAgICJ0cmFuc2FjdGlvbl90eXBlIjogInBsYWNlIiwKICAgICAgInVub2ZmaWNpYWxfY3VycmVuY3lfY29kZSI6IG51bGwsCiAgICAgICJ3ZWJzaXRlIjogbnVsbAogICAgfSwKICAgIHsKICAgICAgImFjY291bnRfaWQiOiAiWnZsQkw1ZU1QUXRuWERWNlFyUjlzUmVOVlZ6MVhBaWVhZ0RQeiIsCiAgICAgICJhY2NvdW50X293bmVyIjogbnVsbCwKICAgICAgImFtb3VudCI6IDIuOTcsCiAgICAgICJhdXRob3JpemVkX2RhdGUiOiAiMjAyNC0xMC0xNSIsCiAgICAgICJhdXRob3JpemVkX2RhdGV0aW1lIjogbnVsbCwKICAgICAgImNhdGVnb3J5IjogWwogICAgICAgICJTaG9wcyIsCiAgICAgICAgIk11c2ljLCBWaWRlbyBhbmQgRFZEIgogICAgICBdLAogICAgICAiY2F0ZWdvcnlfaWQiOiAiMTkwMzYwMDAiLAogICAgICAiY2hlY2tfbnVtYmVyIjogbnVsbCwKICAgICAgImNvdW50ZXJwYXJ0aWVzIjogWwogICAgICAgIHsKICAgICAgICAgICJjb25maWRlbmNlX2xldmVsIjogIlZFUllfSElHSCIsCiAgICAgICAgICAiZW50aXR5X2lkIjogInozWHpSZTQ4OHBNZG83TkFuTDQ0TDdydjlMNTUwYmVya3k2bUsiLAogICAgICAgICAgImxvZ29fdXJsIjogImh0dHBzOi8vcGxhaWQtbWVyY2hhbnQtbG9nb3MucGxhaWQuY29tL2FwcGxlX2l0dW5lc18xNDM0LnBuZyIsCiAgICAgICAgICAibmFtZSI6ICJBcHBsZSBpVHVuZXMiLAogICAgICAgICAgInBob25lX251bWJlciI6IG51bGwsCiAgICAgICAgICAidHlwZSI6ICJtZXJjaGFudCIsCiAgICAgICAgICAid2Vic2l0ZSI6ICJhcHBsZS5jb20vaXR1bmVzIgogICAgICAgIH0KICAgICAgXSwKICAgICAgImRhdGUiOiAiMjAyNC0xMC0xNSIsCiAgICAgICJkYXRldGltZSI6IG51bGwsCiAgICAgICJpc29fY3VycmVuY3lfY29kZSI6ICJVU0QiLAogICAgICAibG9jYXRpb24iOiB7CiAgICAgICAgImFkZHJlc3MiOiBudWxsLAogICAgICAgICJjaXR5IjogbnVsbCwKICAgICAgICAiY291bnRyeSI6IG51bGwsCiAgICAgICAgImxhdCI6IG51bGwsCiAgICAgICAgImxvbiI6IG51bGwsCiAgICAgICAgInBvc3RhbF9jb2RlIjogbnVsbCwKICAgICAgICAicmVnaW9uIjogbnVsbCwKICAgICAgICAic3RvcmVfbnVtYmVyIjogbnVsbAogICAgICB9LAogICAgICAibG9nb191cmwiOiAiaHR0cHM6Ly9wbGFpZC1tZXJjaGFudC1sb2dvcy5wbGFpZC5jb20vYXBwbGVfaXR1bmVzXzE0MzQucG5nIiwKICAgICAgIm1lcmNoYW50X2VudGl0eV9pZCI6ICJ6M1h6UmU0ODhwTWRvN05Bbkw0NEw3cnY5TDU1MGJlcmt5Nm1LIiwKICAgICAgIm1lcmNoYW50X25hbWUiOiAiQXBwbGUgaVR1bmVzIiwKICAgICAgIm5hbWUiOiAiaVR1bmVzIiwKICAgICAgIm9yaWdpbmFsX2Rlc2NyaXB0aW9uIjogIkFQTCpJVFVORVMuQ09NL0JJTEwgIy4uLjAxMjMiLAogICAgICAicGF5bWVudF9jaGFubmVsIjogIm9ubGluZSIsCiAgICAgICJwYXltZW50X21ldGEiOiB7CiAgICAgICAgImJ5X29yZGVyX29mIjogbnVsbCwKICAgICAgICAicGF5ZWUiOiBudWxsLAogICAgICAgICJwYXllciI6IG51bGwsCiAgICAgICAgInBheW1lbnRfbWV0aG9kIjogbnVsbCwKICAgICAgICAicGF5bWVudF9wcm9jZXNzb3IiOiAiQXBwbGUiLAogICAgICAgICJwcGRfaWQiOiBudWxsLAogICAgICAgICJyZWFzb24iOiBudWxsLAogICAgICAgICJyZWZlcmVuY2VfbnVtYmVyIjogbnVsbAogICAgICB9LAogICAgICAicGVuZGluZyI6IGZhbHNlLAogICAgICAicGVuZGluZ190cmFuc2FjdGlvbl9pZCI6IG51bGwsCiAgICAgICJwZXJzb25hbF9maW5hbmNlX2NhdGVnb3J5IjogewogICAgICAgICJjb25maWRlbmNlX2xldmVsIjogIlZFUllfSElHSCIsCiAgICAgICAgImRldGFpbGVkIjogIkVOVEVSVEFJTk1FTlRfTVVTSUNfQU5EX0FVRElPIiwKICAgICAgICAicHJpbWFyeSI6ICJFTlRFUlRBSU5NRU5UIgogICAgICB9LAogICAgICAicGVyc29uYWxfZmluYW5jZV9jYXRlZ29yeV9pY29uX3VybCI6ICJodHRwczovL3BsYWlkLWNhdGVnb3J5LWljb25zLnBsYWlkLmNvbS9QRkNfRU5URVJUQUlOTUVOVC5wbmciLAogICAgICAidHJhbnNhY3Rpb25fY29kZSI6IG51bGwsCiAgICAgICJ0cmFuc2FjdGlvbl9pZCI6ICJOb2tQZDVnTmx6Zm9WMWJ5ekdrbHM3Sk1QNUczUTlzeTY1UUR3IiwKICAgICAgInRyYW5zYWN0aW9uX3R5cGUiOiAicGxhY2UiLAogICAgICAidW5vZmZpY2lhbF9jdXJyZW5jeV9jb2RlIjogbnVsbCwKICAgICAgIndlYnNpdGUiOiAiYXBwbGUuY29tL2l0dW5lcyIKICAgIH0sCiAgICB7CiAgICAgICJhY2NvdW50X2lkIjogIlp2bEJMNWVNUFF0blhEVjZRclI5c1JlTlZWejFYQWllYWdEUHoiLAogICAgICAiYWNjb3VudF9vd25lciI6IG51bGwsCiAgICAgICJhbW91bnQiOiAxNDcuMzUsCiAgICAgICJhdXRob3JpemVkX2RhdGUiOiAiMjAyNC0xMC0xMyIsCiAgICAgICJhdXRob3JpemVkX2RhdGV0aW1lIjogbnVsbCwKICAgICAgImNhdGVnb3J5IjogWwogICAgICAgICJGb29kIGFuZCBEcmluayIsCiAgICAgICAgIlJlc3RhdXJhbnRzIgogICAgICBdLAogICAgICAiY2F0ZWdvcnlfaWQiOiAiMTMwMDUwMDAiLAogICAgICAiY2hlY2tfbnVtYmVyIjogbnVsbCwKICAgICAgImNvdW50ZXJwYXJ0aWVzIjogWwogICAgICAgIHsKICAgICAgICAgICJjb25maWRlbmNlX2xldmVsIjogIlZFUllfSElHSCIsCiAgICAgICAgICAiZW50aXR5X2lkIjogIlJZSkxSdmdnMUJFWDVEWVF2Qmc4OXpkQWV2RVo0a0phWW9RNjkiLAogICAgICAgICAgImxvZ29fdXJsIjogImh0dHBzOi8vcGxhaWQtbWVyY2hhbnQtbG9nb3MucGxhaWQuY29tL3RleGFzX3JvYWRob3VzZV8xMDA0LnBuZyIsCiAgICAgICAgICAibmFtZSI6ICJUZXhhcyBSb2FkaG91c2UiLAogICAgICAgICAgInBob25lX251bWJlciI6IG51bGwsCiAgICAgICAgICAidHlwZSI6ICJtZXJjaGFudCIsCiAgICAgICAgICAid2Vic2l0ZSI6ICJ0ZXhhc3JvYWRob3VzZS5jb20iCiAgICAgICAgfQogICAgICBdLAogICAgICAiZGF0ZSI6ICIyMDI0LTEwLTE2IiwKICAgICAgImRhdGV0aW1lIjogbnVsbCwKICAgICAgImlzb19jdXJyZW5jeV9jb2RlIjogIlVTRCIsCiAgICAgICJsb2NhdGlvbiI6IHsKICAgICAgICAiYWRkcmVzcyI6ICIyOTAwIEphbWVzIFNhbmRlcnMgQmx2ZCIsCiAgICAgICAgImNpdHkiOiAiUGFkdWNhaCIsCiAgICAgICAgImNvdW50cnkiOiBudWxsLAogICAgICAgICJsYXQiOiAzNy4wNzU3MjIsCiAgICAgICAgImxvbiI6IC04OC42ODMwMTQsCiAgICAgICAgInBvc3RhbF9jb2RlIjogIjQyMDAxIiwKICAgICAgICAicmVnaW9uIjogIktZIiwKICAgICAgICAic3RvcmVfbnVtYmVyIjogIjAxMjMiCiAgICAgIH0sCiAgICAgICJsb2dvX3VybCI6ICJodHRwczovL3BsYWlkLW1lcmNoYW50LWxvZ29zLnBsYWlkLmNvbS90ZXhhc19yb2FkaG91c2VfMTAwNC5wbmciLAogICAgICAibWVyY2hhbnRfZW50aXR5X2lkIjogIlJZSkxSdmdnMUJFWDVEWVF2Qmc4OXpkQWV2RVo0a0phWW9RNjkiLAogICAgICAibWVyY2hhbnRfbmFtZSI6ICJUZXhhcyBSb2FkaG91c2UiLAogICAgICAibmFtZSI6ICJUZXhhcyBSb2FkaG91c2UiLAogICAgICAib3JpZ2luYWxfZGVzY3JpcHRpb24iOiAiVEVYQVMgUk9BREhPVVNFICMwMTIzIiwKICAgICAgInBheW1lbnRfY2hhbm5lbCI6ICJpbiBzdG9yZSIsCiAgICAgICJwYXltZW50X21ldGEiOiB7CiAgICAgICAgImJ5X29yZGVyX29mIjogbnVsbCwKICAgICAgICAicGF5ZWUiOiBudWxsLAogICAgICAgICJwYXllciI6IG51bGwsCiAgICAgICAgInBheW1lbnRfbWV0aG9kIjogbnVsbCwKICAgICAgICAicGF5bWVudF9wcm9jZXNzb3IiOiBudWxsLAogICAgICAgICJwcGRfaWQiOiBudWxsLAogICAgICAgICJyZWFzb24iOiBudWxsLAogICAgICAgICJyZWZlcmVuY2VfbnVtYmVyIjogbnVsbAogICAgICB9LAogICAgICAicGVuZGluZyI6IGZhbHNlLAogICAgICAicGVuZGluZ190cmFuc2FjdGlvbl9pZCI6IG51bGwsCiAgICAgICJwZXJzb25hbF9maW5hbmNlX2NhdGVnb3J5IjogewogICAgICAgICJjb25maWRlbmNlX2xldmVsIjogIlZFUllfSElHSCIsCiAgICAgICAgImRldGFpbGVkIjogIkZPT0RfQU5EX0RSSU5LX1JFU1RBVVJBTlQiLAogICAgICAgICJwcmltYXJ5IjogIkZPT0RfQU5EX0RSSU5LIgogICAgICB9LAogICAgICAicGVyc29uYWxfZmluYW5jZV9jYXRlZ29yeV9pY29uX3VybCI6ICJodHRwczovL3BsYWlkLWNhdGVnb3J5LWljb25zLnBsYWlkLmNvbS9QRkNfRk9PRF9BTkRfRFJJTksucG5nIiwKICAgICAgInRyYW5zYWN0aW9uX2NvZGUiOiBudWxsLAogICAgICAidHJhbnNhY3Rpb25faWQiOiAiUDhuNzQ1b1dLM2NuWEt5VzMxeDlzbERCNzV4WkVlaW82V0FNbiIsCiAgICAgICJ0cmFuc2FjdGlvbl90eXBlIjogInBsYWNlIiwKICAgICAgInVub2ZmaWNpYWxfY3VycmVuY3lfY29kZSI6IG51bGwsCiAgICAgICJ3ZWJzaXRlIjogInRleGFzcm9hZGhvdXNlLmNvbSIKICAgIH0sCiAgICB7CiAgICAgICJhY2NvdW50X2lkIjogIlp2bEJMNWVNUFF0blhEVjZRclI5c1JlTlZWejFYQWllYWdEUHoiLAogICAgICAiYWNjb3VudF9vd25lciI6IG51bGwsCiAgICAgICJhbW91bnQiOiAyLjYzLAogICAgICAiYXV0aG9yaXplZF9kYXRlIjogIjIwMjQtMTAtMTUiLAogICAgICAiYXV0aG9yaXplZF9kYXRldGltZSI6IG51bGwsCiAgICAgICJjYXRlZ29yeSI6IFsKICAgICAgICAiRm9vZCBhbmQgRHJpbmsiCiAgICAgIF0sCiAgICAgICJjYXRlZ29yeV9pZCI6ICIxMzAwMDAwMCIsCiAgICAgICJjaGVja19udW1iZXIiOiBudWxsLAogICAgICAiY291bnRlcnBhcnRpZXMiOiBbXSwKICAgICAgImRhdGUiOiAiMjAyNC0xMC0xNiIsCiAgICAgICJkYXRldGltZSI6IG51bGwsCiAgICAgICJpc29fY3VycmVuY3lfY29kZSI6ICJVU0QiLAogICAgICAibG9jYXRpb24iOiB7CiAgICAgICAgImFkZHJlc3MiOiBudWxsLAogICAgICAgICJjaXR5IjogbnVsbCwKICAgICAgICAiY291bnRyeSI6IG51bGwsCiAgICAgICAgImxhdCI6IG51bGwsCiAgICAgICAgImxvbiI6IG51bGwsCiAgICAgICAgInBvc3RhbF9jb2RlIjogbnVsbCwKICAgICAgICAicmVnaW9uIjogbnVsbCwKICAgICAgICAic3RvcmVfbnVtYmVyIjogbnVsbAogICAgICB9LAogICAgICAibG9nb191cmwiOiBudWxsLAogICAgICAibWVyY2hhbnRfZW50aXR5X2lkIjogbnVsbCwKICAgICAgIm1lcmNoYW50X25hbWUiOiBudWxsLAogICAgICAibmFtZSI6ICJVU0EgVGVjaG5vbG9neSAtIFZlbmRpbmciLAogICAgICAib3JpZ2luYWxfZGVzY3JpcHRpb24iOiAiVVNBIFRlY2hub2xvZ3kgLSBWZW5kaW5nIiwKICAgICAgInBheW1lbnRfY2hhbm5lbCI6ICJpbiBzdG9yZSIsCiAgICAgICJwYXltZW50X21ldGEiOiB7CiAgICAgICAgImJ5X29yZGVyX29mIjogbnVsbCwKICAgICAgICAicGF5ZWUiOiBudWxsLAogICAgICAgICJwYXllciI6IG51bGwsCiAgICAgICAgInBheW1lbnRfbWV0aG9kIjogbnVsbCwKICAgICAgICAicGF5bWVudF9wcm9jZXNzb3IiOiBudWxsLAogICAgICAgICJwcGRfaWQiOiBudWxsLAogICAgICAgICJyZWFzb24iOiBudWxsLAogICAgICAgICJyZWZlcmVuY2VfbnVtYmVyIjogbnVsbAogICAgICB9LAogICAgICAicGVuZGluZyI6IGZhbHNlLAogICAgICAicGVuZGluZ190cmFuc2FjdGlvbl9pZCI6IG51bGwsCiAgICAgICJwZXJzb25hbF9maW5hbmNlX2NhdGVnb3J5IjogewogICAgICAgICJjb25maWRlbmNlX2xldmVsIjogIlZFUllfSElHSCIsCiAgICAgICAgImRldGFpbGVkIjogIkZPT0RfQU5EX0RSSU5LX1ZFTkRJTkdfTUFDSElORVMiLAogICAgICAgICJwcmltYXJ5IjogIkZPT0RfQU5EX0RSSU5LIgogICAgICB9LAogICAgICAicGVyc29uYWxfZmluYW5jZV9jYXRlZ29yeV9pY29uX3VybCI6ICJodHRwczovL3BsYWlkLWNhdGVnb3J5LWljb25zLnBsYWlkLmNvbS9QRkNfRk9PRF9BTkRfRFJJTksucG5nIiwKICAgICAgInRyYW5zYWN0aW9uX2NvZGUiOiBudWxsLAogICAgICAidHJhbnNhY3Rpb25faWQiOiAiampRN2RsUDVHeUNiTmF2dzdyenB0eTRNUW1rOW9waTZXTGFYayIsCiAgICAgICJ0cmFuc2FjdGlvbl90eXBlIjogInBsYWNlIiwKICAgICAgInVub2ZmaWNpYWxfY3VycmVuY3lfY29kZSI6IG51bGwsCiAgICAgICJ3ZWJzaXRlIjogbnVsbAogICAgfSwKICAgIHsKICAgICAgImFjY291bnRfaWQiOiAiWnZsQkw1ZU1QUXRuWERWNlFyUjlzUmVOVlZ6MVhBaWVhZ0RQeiIsCiAgICAgICJhY2NvdW50X293bmVyIjogbnVsbCwKICAgICAgImFtb3VudCI6IDQxLAogICAgICAiYXV0aG9yaXplZF9kYXRlIjogIjIwMjQtMTAtMTQiLAogICAgICAiYXV0aG9yaXplZF9kYXRldGltZSI6IG51bGwsCiAgICAgICJjYXRlZ29yeSI6IFsKICAgICAgICAiU2hvcHMiLAogICAgICAgICJTdXBlcm1hcmtldHMgYW5kIEdyb2NlcmllcyIKICAgICAgXSwKICAgICAgImNhdGVnb3J5X2lkIjogIjE5MDQ3MDAwIiwKICAgICAgImNoZWNrX251bWJlciI6IG51bGwsCiAgICAgICJjb3VudGVycGFydGllcyI6IFsKICAgICAgICB7CiAgICAgICAgICAiY29uZmlkZW5jZV9sZXZlbCI6ICJWRVJZX0hJR0giLAogICAgICAgICAgImVudGl0eV9pZCI6ICJCcEpBTlZEQjROYm5vZTdidmE1d3E2VkVROG44TFY3ak42NUJhIiwKICAgICAgICAgICJsb2dvX3VybCI6ICJodHRwczovL3BsYWlkLW1lcmNoYW50LWxvZ29zLnBsYWlkLmNvbS93ZWdtYW5zXzExMDkucG5nIiwKICAgICAgICAgICJuYW1lIjogIldlZ21hbnMiLAogICAgICAgICAgInBob25lX251bWJlciI6IG51bGwsCiAgICAgICAgICAidHlwZSI6ICJtZXJjaGFudCIsCiAgICAgICAgICAid2Vic2l0ZSI6ICJ3ZWdtYW5zLmNvbSIKICAgICAgICB9CiAgICAgIF0sCiAgICAgICJkYXRlIjogIjIwMjQtMTAtMTQiLAogICAgICAiZGF0ZXRpbWUiOiBudWxsLAogICAgICAiaXNvX2N1cnJlbmN5X2NvZGUiOiAiVVNEIiwKICAgICAgImxvY2F0aW9uIjogewogICAgICAgICJhZGRyZXNzIjogbnVsbCwKICAgICAgICAiY2l0eSI6IG51bGwsCiAgICAgICAgImNvdW50cnkiOiBudWxsLAogICAgICAgICJsYXQiOiBudWxsLAogICAgICAgICJsb24iOiBudWxsLAogICAgICAgICJwb3N0YWxfY29kZSI6IG51bGwsCiAgICAgICAgInJlZ2lvbiI6IG51bGwsCiAgICAgICAgInN0b3JlX251bWJlciI6IG51bGwKICAgICAgfSwKICAgICAgImxvZ29fdXJsIjogImh0dHBzOi8vcGxhaWQtbWVyY2hhbnQtbG9nb3MucGxhaWQuY29tL3dlZ21hbnNfMTEwOS5wbmciLAogICAgICAibWVyY2hhbnRfZW50aXR5X2lkIjogIkJwSkFOVkRCNE5ibm9lN2J2YTV3cTZWRVE4bjhMVjdqTjY1QmEiLAogICAgICAibWVyY2hhbnRfbmFtZSI6ICJXZWdtYW5zIiwKICAgICAgIm5hbWUiOiAiV2VnbWFucyIsCiAgICAgICJvcmlnaW5hbF9kZXNjcmlwdGlvbiI6ICJXZWdtYW5zIiwKICAgICAgInBheW1lbnRfY2hhbm5lbCI6ICJpbiBzdG9yZSIsCiAgICAgICJwYXltZW50X21ldGEiOiB7CiAgICAgICAgImJ5X29yZGVyX29mIjogbnVsbCwKICAgICAgICAicGF5ZWUiOiBudWxsLAogICAgICAgICJwYXllciI6IG51bGwsCiAgICAgICAgInBheW1lbnRfbWV0aG9kIjogbnVsbCwKICAgICAgICAicGF5bWVudF9wcm9jZXNzb3IiOiBudWxsLAogICAgICAgICJwcGRfaWQiOiBudWxsLAogICAgICAgICJyZWFzb24iOiBudWxsLAogICAgICAgICJyZWZlcmVuY2VfbnVtYmVyIjogbnVsbAogICAgICB9LAogICAgICAicGVuZGluZyI6IGZhbHNlLAogICAgICAicGVuZGluZ190cmFuc2FjdGlvbl9pZCI6IG51bGwsCiAgICAgICJwZXJzb25hbF9maW5hbmNlX2NhdGVnb3J5IjogewogICAgICAgICJjb25maWRlbmNlX2xldmVsIjogIlZFUllfSElHSCIsCiAgICAgICAgImRldGFpbGVkIjogIkZPT0RfQU5EX0RSSU5LX0dST0NFUklFUyIsCiAgICAgICAgInByaW1hcnkiOiAiRk9PRF9BTkRfRFJJTksiCiAgICAgIH0sCiAgICAgICJwZXJzb25hbF9maW5hbmNlX2NhdGVnb3J5X2ljb25fdXJsIjogImh0dHBzOi8vcGxhaWQtY2F0ZWdvcnktaWNvbnMucGxhaWQuY29tL1BGQ19GT09EX0FORF9EUklOSy5wbmciLAogICAgICAidHJhbnNhY3Rpb25fY29kZSI6IG51bGwsCiAgICAgICJ0cmFuc2FjdGlvbl9pZCI6ICI3NnpYakVsYjRadDhSTDREQXpNOUY5WndqOEdXNkRDZEpueDk0IiwKICAgICAgInRyYW5zYWN0aW9uX3R5cGUiOiAicGxhY2UiLAogICAgICAidW5vZmZpY2lhbF9jdXJyZW5jeV9jb2RlIjogbnVsbCwKICAgICAgIndlYnNpdGUiOiAid2VnbWFucy5jb20iCiAgICB9LAogICAgewogICAgICAiYWNjb3VudF9pZCI6ICJadmxCTDVlTVBRdG5YRFY2UXJSOXNSZU5WVnoxWEFpZWFnRFB6IiwKICAgICAgImFjY291bnRfb3duZXIiOiBudWxsLAogICAgICAiYW1vdW50IjogMjcuNTgsCiAgICAgICJhdXRob3JpemVkX2RhdGUiOiAiMjAyNC0xMC0xNSIsCiAgICAgICJhdXRob3JpemVkX2RhdGV0aW1lIjogbnVsbCwKICAgICAgImNhdGVnb3J5IjogWwogICAgICAgICJTaG9wcyIsCiAgICAgICAgIlN1cGVybWFya2V0cyBhbmQgR3JvY2VyaWVzIgogICAgICBdLAogICAgICAiY2F0ZWdvcnlfaWQiOiAiMTkwNDcwMDAiLAogICAgICAiY2hlY2tfbnVtYmVyIjogbnVsbCwKICAgICAgImNvdW50ZXJwYXJ0aWVzIjogWwogICAgICAgIHsKICAgICAgICAgICJjb25maWRlbmNlX2xldmVsIjogIlZFUllfSElHSCIsCiAgICAgICAgICAiZW50aXR5X2lkIjogIjltTWdkRDdFZzJNT09xUTA3WDlwZ1lOZFkwSjdKMHBuQXFveUoiLAogICAgICAgICAgImxvZ29fdXJsIjogImh0dHBzOi8vcGxhaWQtbWVyY2hhbnQtbG9nb3MucGxhaWQuY29tL3dlaXNfbWFya2V0c18xMTEyLnBuZyIsCiAgICAgICAgICAibmFtZSI6ICJXZWlzIE1hcmtldHMiLAogICAgICAgICAgInBob25lX251bWJlciI6IG51bGwsCiAgICAgICAgICAidHlwZSI6ICJtZXJjaGFudCIsCiAgICAgICAgICAid2Vic2l0ZSI6ICJ3ZWlzbWFya2V0cy5jb20iCiAgICAgICAgfQogICAgICBdLAogICAgICAiZGF0ZSI6ICIyMDI0LTEwLTE4IiwKICAgICAgImRhdGV0aW1lIjogbnVsbCwKICAgICAgImlzb19jdXJyZW5jeV9jb2RlIjogIlVTRCIsCiAgICAgICJsb2NhdGlvbiI6IHsKICAgICAgICAiYWRkcmVzcyI6IG51bGwsCiAgICAgICAgImNpdHkiOiBudWxsLAogICAgICAgICJjb3VudHJ5IjogbnVsbCwKICAgICAgICAibGF0IjogbnVsbCwKICAgICAgICAibG9uIjogbnVsbCwKICAgICAgICAicG9zdGFsX2NvZGUiOiBudWxsLAogICAgICAgICJyZWdpb24iOiBudWxsLAogICAgICAgICJzdG9yZV9udW1iZXIiOiBudWxsCiAgICAgIH0sCiAgICAgICJsb2dvX3VybCI6ICJodHRwczovL3BsYWlkLW1lcmNoYW50LWxvZ29zLnBsYWlkLmNvbS93ZWlzX21hcmtldHNfMTExMi5wbmciLAogICAgICAibWVyY2hhbnRfZW50aXR5X2lkIjogIjltTWdkRDdFZzJNT09xUTA3WDlwZ1lOZFkwSjdKMHBuQXFveUoiLAogICAgICAibWVyY2hhbnRfbmFtZSI6ICJXZWlzIE1hcmtldHMiLAogICAgICAibmFtZSI6ICJXZWlzIE1hcmtldHMiLAogICAgICAib3JpZ2luYWxfZGVzY3JpcHRpb24iOiAiV0VJUyBNQVJLRVRTIDAxMiIsCiAgICAgICJwYXltZW50X2NoYW5uZWwiOiAiaW4gc3RvcmUiLAogICAgICAicGF5bWVudF9tZXRhIjogewogICAgICAgICJieV9vcmRlcl9vZiI6IG51bGwsCiAgICAgICAgInBheWVlIjogbnVsbCwKICAgICAgICAicGF5ZXIiOiBudWxsLAogICAgICAgICJwYXltZW50X21ldGhvZCI6IG51bGwsCiAgICAgICAgInBheW1lbnRfcHJvY2Vzc29yIjogbnVsbCwKICAgICAgICAicHBkX2lkIjogbnVsbCwKICAgICAgICAicmVhc29uIjogbnVsbCwKICAgICAgICAicmVmZXJlbmNlX251bWJlciI6IG51bGwKICAgICAgfSwKICAgICAgInBlbmRpbmciOiBmYWxzZSwKICAgICAgInBlbmRpbmdfdHJhbnNhY3Rpb25faWQiOiBudWxsLAogICAgICAicGVyc29uYWxfZmluYW5jZV9jYXRlZ29yeSI6IHsKICAgICAgICAiY29uZmlkZW5jZV9sZXZlbCI6ICJWRVJZX0hJR0giLAogICAgICAgICJkZXRhaWxlZCI6ICJGT09EX0FORF9EUklOS19HUk9DRVJJRVMiLAogICAgICAgICJwcmltYXJ5IjogIkZPT0RfQU5EX0RSSU5LIgogICAgICB9LAogICAgICAicGVyc29uYWxfZmluYW5jZV9jYXRlZ29yeV9pY29uX3VybCI6ICJodHRwczovL3BsYWlkLWNhdGVnb3J5LWljb25zLnBsYWlkLmNvbS9QRkNfRk9PRF9BTkRfRFJJTksucG5nIiwKICAgICAgInRyYW5zYWN0aW9uX2NvZGUiOiBudWxsLAogICAgICAidHJhbnNhY3Rpb25faWQiOiAiZWROd3I1MVhnQWNvQVJWWlA2OHZzZFJHenFvbTlCdXI5NW1qTSIsCiAgICAgICJ0cmFuc2FjdGlvbl90eXBlIjogInBsYWNlIiwKICAgICAgInVub2ZmaWNpYWxfY3VycmVuY3lfY29kZSI6IG51bGwsCiAgICAgICJ3ZWJzaXRlIjogIndlaXNtYXJrZXRzLmNvbSIKICAgIH0sCiAgICB7CiAgICAgICJhY2NvdW50X2lkIjogIlp2bEJMNWVNUFF0blhEVjZRclI5c1JlTlZWejFYQWllYWdEUHoiLAogICAgICAiYWNjb3VudF9vd25lciI6IG51bGwsCiAgICAgICJhbW91bnQiOiA5LjY4LAogICAgICAiYXV0aG9yaXplZF9kYXRlIjogIjIwMjQtMTAtMTUiLAogICAgICAiYXV0aG9yaXplZF9kYXRldGltZSI6IG51bGwsCiAgICAgICJjYXRlZ29yeSI6IFsKICAgICAgICAiU2VydmljZSIsCiAgICAgICAgIlNoaXBwaW5nIGFuZCBGcmVpZ2h0IgogICAgICBdLAogICAgICAiY2F0ZWdvcnlfaWQiOiAiMTgwNTgwMDAiLAogICAgICAiY2hlY2tfbnVtYmVyIjogbnVsbCwKICAgICAgImNvdW50ZXJwYXJ0aWVzIjogWwogICAgICAgIHsKICAgICAgICAgICJjb25maWRlbmNlX2xldmVsIjogIlZFUllfSElHSCIsCiAgICAgICAgICAiZW50aXR5X2lkIjogInp3a2pyUWJiRFFxWkpSazNlZ09BbzBYQjdqbnlnTkRKazlWanoiLAogICAgICAgICAgImxvZ29fdXJsIjogImh0dHBzOi8vcGxhaWQtY291bnRlcnBhcnR5LWxvZ29zLnBsYWlkLmNvbS9wYXlwYWxfNzYucG5nIiwKICAgICAgICAgICJuYW1lIjogIlBheVBhbCIsCiAgICAgICAgICAicGhvbmVfbnVtYmVyIjogbnVsbCwKICAgICAgICAgICJ0eXBlIjogInBheW1lbnRfYXBwIiwKICAgICAgICAgICJ3ZWJzaXRlIjogInBheXBhbC5jb20iCiAgICAgICAgfQogICAgICBdLAogICAgICAiZGF0ZSI6ICIyMDI0LTEwLTIwIiwKICAgICAgImRhdGV0aW1lIjogbnVsbCwKICAgICAgImlzb19jdXJyZW5jeV9jb2RlIjogIlVTRCIsCiAgICAgICJsb2NhdGlvbiI6IHsKICAgICAgICAiYWRkcmVzcyI6IG51bGwsCiAgICAgICAgImNpdHkiOiBudWxsLAogICAgICAgICJjb3VudHJ5IjogbnVsbCwKICAgICAgICAibGF0IjogbnVsbCwKICAgICAgICAibG9uIjogbnVsbCwKICAgICAgICAicG9zdGFsX2NvZGUiOiBudWxsLAogICAgICAgICJyZWdpb24iOiBudWxsLAogICAgICAgICJzdG9yZV9udW1iZXIiOiBudWxsCiAgICAgIH0sCiAgICAgICJsb2dvX3VybCI6IG51bGwsCiAgICAgICJtZXJjaGFudF9lbnRpdHlfaWQiOiBudWxsLAogICAgICAibWVyY2hhbnRfbmFtZSI6IG51bGwsCiAgICAgICJuYW1lIjogIlVTUE9TVEFMU0VSIiwKICAgICAgIm9yaWdpbmFsX2Rlc2NyaXB0aW9uIjogIlBBWVBBTCAqVVNQT1NUQUxTRVIiLAogICAgICAicGF5bWVudF9jaGFubmVsIjogIm9ubGluZSIsCiAgICAgICJwYXltZW50X21ldGEiOiB7CiAgICAgICAgImJ5X29yZGVyX29mIjogbnVsbCwKICAgICAgICAicGF5ZWUiOiBudWxsLAogICAgICAgICJwYXllciI6IG51bGwsCiAgICAgICAgInBheW1lbnRfbWV0aG9kIjogbnVsbCwKICAgICAgICAicGF5bWVudF9wcm9jZXNzb3IiOiAiUGF5UGFsIiwKICAgICAgICAicHBkX2lkIjogbnVsbCwKICAgICAgICAicmVhc29uIjogbnVsbCwKICAgICAgICAicmVmZXJlbmNlX251bWJlciI6IG51bGwKICAgICAgfSwKICAgICAgInBlbmRpbmciOiBmYWxzZSwKICAgICAgInBlbmRpbmdfdHJhbnNhY3Rpb25faWQiOiBudWxsLAogICAgICAicGVyc29uYWxfZmluYW5jZV9jYXRlZ29yeSI6IHsKICAgICAgICAiY29uZmlkZW5jZV9sZXZlbCI6ICJMT1ciLAogICAgICAgICJkZXRhaWxlZCI6ICJHRU5FUkFMX1NFUlZJQ0VTX1BPU1RBR0VfQU5EX1NISVBQSU5HIiwKICAgICAgICAicHJpbWFyeSI6ICJHRU5FUkFMX1NFUlZJQ0VTIgogICAgICB9LAogICAgICAicGVyc29uYWxfZmluYW5jZV9jYXRlZ29yeV9pY29uX3VybCI6ICJodHRwczovL3BsYWlkLWNhdGVnb3J5LWljb25zLnBsYWlkLmNvbS9QRkNfR0VORVJBTF9TRVJWSUNFUy5wbmciLAogICAgICAidHJhbnNhY3Rpb25fY29kZSI6IG51bGwsCiAgICAgICJ0cmFuc2FjdGlvbl9pZCI6ICJRRWJaTjVtTXJ4VG5KNFhSeGJhOXM5cGFaRHlWUUdDd203RDhwIiwKICAgICAgInRyYW5zYWN0aW9uX3R5cGUiOiAicGxhY2UiLAogICAgICAidW5vZmZpY2lhbF9jdXJyZW5jeV9jb2RlIjogbnVsbCwKICAgICAgIndlYnNpdGUiOiBudWxsCiAgICB9LAogICAgewogICAgICAiYWNjb3VudF9pZCI6ICJadmxCTDVlTVBRdG5YRFY2UXJSOXNSZU5WVnoxWEFpZWFnRFB6IiwKICAgICAgImFjY291bnRfb3duZXIiOiBudWxsLAogICAgICAiYW1vdW50IjogMTYuOTcsCiAgICAgICJhdXRob3JpemVkX2RhdGUiOiAiMjAyNC0xMC0yMCIsCiAgICAgICJhdXRob3JpemVkX2RhdGV0aW1lIjogbnVsbCwKICAgICAgImNhdGVnb3J5IjogWwogICAgICAgICJTZXJ2aWNlIiwKICAgICAgICAiU2hpcHBpbmcgYW5kIEZyZWlnaHQiCiAgICAgIF0sCiAgICAgICJjYXRlZ29yeV9pZCI6ICIxODA1ODAwMCIsCiAgICAgICJjaGVja19udW1iZXIiOiBudWxsLAogICAgICAiY291bnRlcnBhcnRpZXMiOiBbCiAgICAgICAgewogICAgICAgICAgImNvbmZpZGVuY2VfbGV2ZWwiOiAiVkVSWV9ISUdIIiwKICAgICAgICAgICJlbnRpdHlfaWQiOiAiODdCRTQ2bzBWWHBaMURaTW1CQm5BZTdxMndBS2JuM2taSlpxMiIsCiAgICAgICAgICAibG9nb191cmwiOiAiaHR0cHM6Ly9wbGFpZC1tZXJjaGFudC1sb2dvcy5wbGFpZC5jb20vZmVkZXhfMzY1LnBuZyIsCiAgICAgICAgICAibmFtZSI6ICJGZWRFeCIsCiAgICAgICAgICAicGhvbmVfbnVtYmVyIjogbnVsbCwKICAgICAgICAgICJ0eXBlIjogIm1lcmNoYW50IiwKICAgICAgICAgICJ3ZWJzaXRlIjogImZlZGV4LmNvbSIKICAgICAgICB9CiAgICAgIF0sCiAgICAgICJkYXRlIjogIjIwMjQtMTAtMjAiLAogICAgICAiZGF0ZXRpbWUiOiBudWxsLAogICAgICAiaXNvX2N1cnJlbmN5X2NvZGUiOiAiVVNEIiwKICAgICAgImxvY2F0aW9uIjogewogICAgICAgICJhZGRyZXNzIjogbnVsbCwKICAgICAgICAiY2l0eSI6IG51bGwsCiAgICAgICAgImNvdW50cnkiOiBudWxsLAogICAgICAgICJsYXQiOiBudWxsLAogICAgICAgICJsb24iOiBudWxsLAogICAgICAgICJwb3N0YWxfY29kZSI6IG51bGwsCiAgICAgICAgInJlZ2lvbiI6IG51bGwsCiAgICAgICAgInN0b3JlX251bWJlciI6IG51bGwKICAgICAgfSwKICAgICAgImxvZ29fdXJsIjogImh0dHBzOi8vcGxhaWQtbWVyY2hhbnQtbG9nb3MucGxhaWQuY29tL2ZlZGV4XzM2NS5wbmciLAogICAgICAibWVyY2hhbnRfZW50aXR5X2lkIjogIjg3QkU0Nm8wVlhwWjFEWk1tQkJuQWU3cTJ3QUtibjNrWkpacTIiLAogICAgICAibWVyY2hhbnRfbmFtZSI6ICJGZWRFeCIsCiAgICAgICJuYW1lIjogIkZlZEV4IiwKICAgICAgIm9yaWdpbmFsX2Rlc2NyaXB0aW9uIjogIkZFREVYIDAxMjM0NTY3ODkwMSIsCiAgICAgICJwYXltZW50X2NoYW5uZWwiOiAiaW4gc3RvcmUiLAogICAgICAicGF5bWVudF9tZXRhIjogewogICAgICAgICJieV9vcmRlcl9vZiI6IG51bGwsCiAgICAgICAgInBheWVlIjogbnVsbCwKICAgICAgICAicGF5ZXIiOiBudWxsLAogICAgICAgICJwYXltZW50X21ldGhvZCI6IG51bGwsCiAgICAgICAgInBheW1lbnRfcHJvY2Vzc29yIjogbnVsbCwKICAgICAgICAicHBkX2lkIjogbnVsbCwKICAgICAgICAicmVhc29uIjogbnVsbCwKICAgICAgICAicmVmZXJlbmNlX251bWJlciI6IG51bGwKICAgICAgfSwKICAgICAgInBlbmRpbmciOiBmYWxzZSwKICAgICAgInBlbmRpbmdfdHJhbnNhY3Rpb25faWQiOiBudWxsLAogICAgICAicGVyc29uYWxfZmluYW5jZV9jYXRlZ29yeSI6IHsKICAgICAgICAiY29uZmlkZW5jZV9sZXZlbCI6ICJWRVJZX0hJR0giLAogICAgICAgICJkZXRhaWxlZCI6ICJHRU5FUkFMX1NFUlZJQ0VTX1BPU1RBR0VfQU5EX1NISVBQSU5HIiwKICAgICAgICAicHJpbWFyeSI6ICJHRU5FUkFMX1NFUlZJQ0VTIgogICAgICB9LAogICAgICAicGVyc29uYWxfZmluYW5jZV9jYXRlZ29yeV9pY29uX3VybCI6ICJodHRwczovL3BsYWlkLWNhdGVnb3J5LWljb25zLnBsYWlkLmNvbS9QRkNfR0VORVJBTF9TRVJWSUNFUy5wbmciLAogICAgICAidHJhbnNhY3Rpb25fY29kZSI6IG51bGwsCiAgICAgICJ0cmFuc2FjdGlvbl9pZCI6ICJadmxCTDVlTVBRdG5YRFY2UXJSOXNSZXg4cFpheU1jZXFYR0tlIiwKICAgICAgInRyYW5zYWN0aW9uX3R5cGUiOiAicGxhY2UiLAogICAgICAidW5vZmZpY2lhbF9jdXJyZW5jeV9jb2RlIjogbnVsbCwKICAgICAgIndlYnNpdGUiOiAiZmVkZXguY29tIgogICAgfSwKICAgIHsKICAgICAgImFjY291bnRfaWQiOiAiWnZsQkw1ZU1QUXRuWERWNlFyUjlzUmVOVlZ6MVhBaWVhZ0RQeiIsCiAgICAgICJhY2NvdW50X293bmVyIjogbnVsbCwKICAgICAgImFtb3VudCI6IDI4LAogICAgICAiYXV0aG9yaXplZF9kYXRlIjogIjIwMjQtMTAtMjAiLAogICAgICAiYXV0aG9yaXplZF9kYXRldGltZSI6IG51bGwsCiAgICAgICJjYXRlZ29yeSI6IFsKICAgICAgICAiU2hvcHMiLAogICAgICAgICJDb21wdXRlcnMgYW5kIEVsZWN0cm9uaWNzIgogICAgICBdLAogICAgICAiY2F0ZWdvcnlfaWQiOiAiMTkwMTMwMDAiLAogICAgICAiY2hlY2tfbnVtYmVyIjogbnVsbCwKICAgICAgImNvdW50ZXJwYXJ0aWVzIjogWwogICAgICAgIHsKICAgICAgICAgICJjb25maWRlbmNlX2xldmVsIjogIlZFUllfSElHSCIsCiAgICAgICAgICAiZW50aXR5X2lkIjogIm5xZ05yV01iT3BKa0pEOFhhOFJBdlZuOE5xYUV6T2paWGdnYloiLAogICAgICAgICAgImxvZ29fdXJsIjogImh0dHBzOi8vcGxhaWQtbWVyY2hhbnQtbG9nb3MucGxhaWQuY29tL2Fkb2JlXzE3LnBuZyIsCiAgICAgICAgICAibmFtZSI6ICJBZG9iZSIsCiAgICAgICAgICAicGhvbmVfbnVtYmVyIjogbnVsbCwKICAgICAgICAgICJ0eXBlIjogIm1lcmNoYW50IiwKICAgICAgICAgICJ3ZWJzaXRlIjogImFkb2JlLmNvbSIKICAgICAgICB9CiAgICAgIF0sCiAgICAgICJkYXRlIjogIjIwMjQtMTAtMjMiLAogICAgICAiZGF0ZXRpbWUiOiBudWxsLAogICAgICAiaXNvX2N1cnJlbmN5X2NvZGUiOiAiVVNEIiwKICAgICAgImxvY2F0aW9uIjogewogICAgICAgICJhZGRyZXNzIjogbnVsbCwKICAgICAgICAiY2l0eSI6IG51bGwsCiAgICAgICAgImNvdW50cnkiOiBudWxsLAogICAgICAgICJsYXQiOiBudWxsLAogICAgICAgICJsb24iOiBudWxsLAogICAgICAgICJwb3N0YWxfY29kZSI6IG51bGwsCiAgICAgICAgInJlZ2lvbiI6IG51bGwsCiAgICAgICAgInN0b3JlX251bWJlciI6IG51bGwKICAgICAgfSwKICAgICAgImxvZ29fdXJsIjogImh0dHBzOi8vcGxhaWQtbWVyY2hhbnQtbG9nb3MucGxhaWQuY29tL2Fkb2JlXzE3LnBuZyIsCiAgICAgICJtZXJjaGFudF9lbnRpdHlfaWQiOiAibnFnTnJXTWJPcEprSkQ4WGE4UkF2Vm44TnFhRXpPalpYZ2diWiIsCiAgICAgICJtZXJjaGFudF9uYW1lIjogIkFkb2JlIiwKICAgICAgIm5hbWUiOiAiQURPQkUgKkFDUk9QUk8gU1VCUyIsCiAgICAgICJvcmlnaW5hbF9kZXNjcmlwdGlvbiI6ICJBRE9CRSAqQUNST1BSTyBTVUJTIiwKICAgICAgInBheW1lbnRfY2hhbm5lbCI6ICJvbmxpbmUiLAogICAgICAicGF5bWVudF9tZXRhIjogewogICAgICAgICJieV9vcmRlcl9vZiI6IG51bGwsCiAgICAgICAgInBheWVlIjogbnVsbCwKICAgICAgICAicGF5ZXIiOiBudWxsLAogICAgICAgICJwYXltZW50X21ldGhvZCI6IG51bGwsCiAgICAgICAgInBheW1lbnRfcHJvY2Vzc29yIjogbnVsbCwKICAgICAgICAicHBkX2lkIjogbnVsbCwKICAgICAgICAicmVhc29uIjogbnVsbCwKICAgICAgICAicmVmZXJlbmNlX251bWJlciI6IG51bGwKICAgICAgfSwKICAgICAgInBlbmRpbmciOiBmYWxzZSwKICAgICAgInBlbmRpbmdfdHJhbnNhY3Rpb25faWQiOiBudWxsLAogICAgICAicGVyc29uYWxfZmluYW5jZV9jYXRlZ29yeSI6IHsKICAgICAgICAiY29uZmlkZW5jZV9sZXZlbCI6ICJWRVJZX0hJR0giLAogICAgICAgICJkZXRhaWxlZCI6ICJHRU5FUkFMX1NFUlZJQ0VTX09USEVSX0dFTkVSQUxfU0VSVklDRVMiLAogICAgICAgICJwcmltYXJ5IjogIkdFTkVSQUxfU0VSVklDRVMiCiAgICAgIH0sCiAgICAgICJwZXJzb25hbF9maW5hbmNlX2NhdGVnb3J5X2ljb25fdXJsIjogImh0dHBzOi8vcGxhaWQtY2F0ZWdvcnktaWNvbnMucGxhaWQuY29tL1BGQ19HRU5FUkFMX1NFUlZJQ0VTLnBuZyIsCiAgICAgICJ0cmFuc2FjdGlvbl9jb2RlIjogbnVsbCwKICAgICAgInRyYW5zYWN0aW9uX2lkIjogIk1wV1B4NW80eXJjcFp2d1FyZGJNdXdYSmc4RXplM2ZMNlAxTTQiLAogICAgICAidHJhbnNhY3Rpb25fdHlwZSI6ICJwbGFjZSIsCiAgICAgICJ1bm9mZmljaWFsX2N1cnJlbmN5X2NvZGUiOiBudWxsLAogICAgICAid2Vic2l0ZSI6ICJhZG9iZS5jb20iCiAgICB9LAogICAgewogICAgICAiYWNjb3VudF9pZCI6ICJadmxCTDVlTVBRdG5YRFY2UXJSOXNSZU5WVnoxWEFpZWFnRFB6IiwKICAgICAgImFjY291bnRfb3duZXIiOiBudWxsLAogICAgICAiYW1vdW50IjogMi44NCwKICAgICAgImF1dGhvcml6ZWRfZGF0ZSI6ICIyMDI0LTEwLTIyIiwKICAgICAgImF1dGhvcml6ZWRfZGF0ZXRpbWUiOiBudWxsLAogICAgICAiY2F0ZWdvcnkiOiBbCiAgICAgICAgIkZvb2QgYW5kIERyaW5rIiwKICAgICAgICAiUmVzdGF1cmFudHMiCiAgICAgIF0sCiAgICAgICJjYXRlZ29yeV9pZCI6ICIxMzAwNTAwMCIsCiAgICAgICJjaGVja19udW1iZXIiOiBudWxsLAogICAgICAiY291bnRlcnBhcnRpZXMiOiBbCiAgICAgICAgewogICAgICAgICAgImNvbmZpZGVuY2VfbGV2ZWwiOiAiVkVSWV9ISUdIIiwKICAgICAgICAgICJlbnRpdHlfaWQiOiAicmE1QnpXNDNZYjgyS2FMUVZRYThScnkwMjRxRDNYT1pyUWtEQSIsCiAgICAgICAgICAibG9nb191cmwiOiAiaHR0cHM6Ly9wbGFpZC1tZXJjaGFudC1sb2dvcy5wbGFpZC5jb20vcmVkX3JvYmluXzgxNC5wbmciLAogICAgICAgICAgIm5hbWUiOiAiUmVkIFJvYmluIiwKICAgICAgICAgICJwaG9uZV9udW1iZXIiOiBudWxsLAogICAgICAgICAgInR5cGUiOiAibWVyY2hhbnQiLAogICAgICAgICAgIndlYnNpdGUiOiAicmVkcm9iaW4uY29tIgogICAgICAgIH0KICAgICAgXSwKICAgICAgImRhdGUiOiAiMjAyNC0xMC0yMyIsCiAgICAgICJkYXRldGltZSI6IG51bGwsCiAgICAgICJpc29fY3VycmVuY3lfY29kZSI6ICJVU0QiLAogICAgICAibG9jYXRpb24iOiB7CiAgICAgICAgImFkZHJlc3MiOiBudWxsLAogICAgICAgICJjaXR5IjogbnVsbCwKICAgICAgICAiY291bnRyeSI6IG51bGwsCiAgICAgICAgImxhdCI6IG51bGwsCiAgICAgICAgImxvbiI6IG51bGwsCiAgICAgICAgInBvc3RhbF9jb2RlIjogbnVsbCwKICAgICAgICAicmVnaW9uIjogbnVsbCwKICAgICAgICAic3RvcmVfbnVtYmVyIjogbnVsbAogICAgICB9LAogICAgICAibG9nb191cmwiOiAiaHR0cHM6Ly9wbGFpZC1tZXJjaGFudC1sb2dvcy5wbGFpZC5jb20vcmVkX3JvYmluXzgxNC5wbmciLAogICAgICAibWVyY2hhbnRfZW50aXR5X2lkIjogInJhNUJ6VzQzWWI4MkthTFFWUWE4UnJ5MDI0cUQzWE9aclFrREEiLAogICAgICAibWVyY2hhbnRfbmFtZSI6ICJSZWQgUm9iaW4iLAogICAgICAibmFtZSI6ICJSZWQgUm9iaW4iLAogICAgICAib3JpZ2luYWxfZGVzY3JpcHRpb24iOiAiUmVkIFJvYmluIiwKICAgICAgInBheW1lbnRfY2hhbm5lbCI6ICJpbiBzdG9yZSIsCiAgICAgICJwYXltZW50X21ldGEiOiB7CiAgICAgICAgImJ5X29yZGVyX29mIjogbnVsbCwKICAgICAgICAicGF5ZWUiOiBudWxsLAogICAgICAgICJwYXllciI6IG51bGwsCiAgICAgICAgInBheW1lbnRfbWV0aG9kIjogbnVsbCwKICAgICAgICAicGF5bWVudF9wcm9jZXNzb3IiOiBudWxsLAogICAgICAgICJwcGRfaWQiOiBudWxsLAogICAgICAgICJyZWFzb24iOiBudWxsLAogICAgICAgICJyZWZlcmVuY2VfbnVtYmVyIjogbnVsbAogICAgICB9LAogICAgICAicGVuZGluZyI6IGZhbHNlLAogICAgICAicGVuZGluZ190cmFuc2FjdGlvbl9pZCI6IG51bGwsCiAgICAgICJwZXJzb25hbF9maW5hbmNlX2NhdGVnb3J5IjogewogICAgICAgICJjb25maWRlbmNlX2xldmVsIjogIlZFUllfSElHSCIsCiAgICAgICAgImRldGFpbGVkIjogIkZPT0RfQU5EX0RSSU5LX0ZBU1RfRk9PRCIsCiAgICAgICAgInByaW1hcnkiOiAiRk9PRF9BTkRfRFJJTksiCiAgICAgIH0sCiAgICAgICJwZXJzb25hbF9maW5hbmNlX2NhdGVnb3J5X2ljb25fdXJsIjogImh0dHBzOi8vcGxhaWQtY2F0ZWdvcnktaWNvbnMucGxhaWQuY29tL1BGQ19GT09EX0FORF9EUklOSy5wbmciLAogICAgICAidHJhbnNhY3Rpb25fY29kZSI6IG51bGwsCiAgICAgICJ0cmFuc2FjdGlvbl9pZCI6ICIxYlhXeDFtVnpOY1F2eXpFbzM0SlRYVm1lZ3d4OTR0cGplckpaIiwKICAgICAgInRyYW5zYWN0aW9uX3R5cGUiOiAicGxhY2UiLAogICAgICAidW5vZmZpY2lhbF9jdXJyZW5jeV9jb2RlIjogbnVsbCwKICAgICAgIndlYnNpdGUiOiAicmVkcm9iaW4uY29tIgogICAgfSwKICAgIHsKICAgICAgImFjY291bnRfaWQiOiAiWnZsQkw1ZU1QUXRuWERWNlFyUjlzUmVOVlZ6MVhBaWVhZ0RQeiIsCiAgICAgICJhY2NvdW50X293bmVyIjogbnVsbCwKICAgICAgImFtb3VudCI6IDEuMjQsCiAgICAgICJhdXRob3JpemVkX2RhdGUiOiAiMjAyNC0xMC0yMyIsCiAgICAgICJhdXRob3JpemVkX2RhdGV0aW1lIjogbnVsbCwKICAgICAgImNhdGVnb3J5IjogWwogICAgICAgICJGb29kIGFuZCBEcmluayIsCiAgICAgICAgIlJlc3RhdXJhbnRzIgogICAgICBdLAogICAgICAiY2F0ZWdvcnlfaWQiOiAiMTMwMDUwMDAiLAogICAgICAiY2hlY2tfbnVtYmVyIjogbnVsbCwKICAgICAgImNvdW50ZXJwYXJ0aWVzIjogWwogICAgICAgIHsKICAgICAgICAgICJjb25maWRlbmNlX2xldmVsIjogIlZFUllfSElHSCIsCiAgICAgICAgICAiZW50aXR5X2lkIjogIjRENVYyZW05RDhaNjYwd2tnS3pqQkoybW9wMkV3YlY5VndiREIiLAogICAgICAgICAgImxvZ29fdXJsIjogImh0dHBzOi8vcGxhaWQtbWVyY2hhbnQtbG9nb3MucGxhaWQuY29tL3RpbV9ob3J0b25zXzEwMjIucG5nIiwKICAgICAgICAgICJuYW1lIjogIlRpbSBIb3J0b25zIiwKICAgICAgICAgICJwaG9uZV9udW1iZXIiOiBudWxsLAogICAgICAgICAgInR5cGUiOiAibWVyY2hhbnQiLAogICAgICAgICAgIndlYnNpdGUiOiAidGltaG9ydG9ucy5jb20iCiAgICAgICAgfQogICAgICBdLAogICAgICAiZGF0ZSI6ICIyMDI0LTEwLTIzIiwKICAgICAgImRhdGV0aW1lIjogbnVsbCwKICAgICAgImlzb19jdXJyZW5jeV9jb2RlIjogIlVTRCIsCiAgICAgICJsb2NhdGlvbiI6IHsKICAgICAgICAiYWRkcmVzcyI6IG51bGwsCiAgICAgICAgImNpdHkiOiBudWxsLAogICAgICAgICJjb3VudHJ5IjogbnVsbCwKICAgICAgICAibGF0IjogbnVsbCwKICAgICAgICAibG9uIjogbnVsbCwKICAgICAgICAicG9zdGFsX2NvZGUiOiBudWxsLAogICAgICAgICJyZWdpb24iOiBudWxsLAogICAgICAgICJzdG9yZV9udW1iZXIiOiBudWxsCiAgICAgIH0sCiAgICAgICJsb2dvX3VybCI6ICJodHRwczovL3BsYWlkLW1lcmNoYW50LWxvZ29zLnBsYWlkLmNvbS90aW1faG9ydG9uc18xMDIyLnBuZyIsCiAgICAgICJtZXJjaGFudF9lbnRpdHlfaWQiOiAiNEQ1VjJlbTlEOFo2NjB3a2dLempCSjJtb3AyRXdiVjlWd2JEQiIsCiAgICAgICJtZXJjaGFudF9uYW1lIjogIlRpbSBIb3J0b25zIiwKICAgICAgIm5hbWUiOiAiVGltIEhvcnRvbnMiLAogICAgICAib3JpZ2luYWxfZGVzY3JpcHRpb24iOiAiVElNIEhPUlRPTlMgMDEyMyBRVEgiLAogICAgICAicGF5bWVudF9jaGFubmVsIjogImluIHN0b3JlIiwKICAgICAgInBheW1lbnRfbWV0YSI6IHsKICAgICAgICAiYnlfb3JkZXJfb2YiOiBudWxsLAogICAgICAgICJwYXllZSI6IG51bGwsCiAgICAgICAgInBheWVyIjogbnVsbCwKICAgICAgICAicGF5bWVudF9tZXRob2QiOiBudWxsLAogICAgICAgICJwYXltZW50X3Byb2Nlc3NvciI6IG51bGwsCiAgICAgICAgInBwZF9pZCI6IG51bGwsCiAgICAgICAgInJlYXNvbiI6IG51bGwsCiAgICAgICAgInJlZmVyZW5jZV9udW1iZXIiOiBudWxsCiAgICAgIH0sCiAgICAgICJwZW5kaW5nIjogZmFsc2UsCiAgICAgICJwZW5kaW5nX3RyYW5zYWN0aW9uX2lkIjogbnVsbCwKICAgICAgInBlcnNvbmFsX2ZpbmFuY2VfY2F0ZWdvcnkiOiB7CiAgICAgICAgImNvbmZpZGVuY2VfbGV2ZWwiOiAiVkVSWV9ISUdIIiwKICAgICAgICAiZGV0YWlsZWQiOiAiRk9PRF9BTkRfRFJJTktfRkFTVF9GT09EIiwKICAgICAgICAicHJpbWFyeSI6ICJGT09EX0FORF9EUklOSyIKICAgICAgfSwKICAgICAgInBlcnNvbmFsX2ZpbmFuY2VfY2F0ZWdvcnlfaWNvbl91cmwiOiAiaHR0cHM6Ly9wbGFpZC1jYXRlZ29yeS1pY29ucy5wbGFpZC5jb20vUEZDX0ZPT0RfQU5EX0RSSU5LLnBuZyIsCiAgICAgICJ0cmFuc2FjdGlvbl9jb2RlIjogbnVsbCwKICAgICAgInRyYW5zYWN0aW9uX2lkIjogIkxMRVAzNW9hbUtmTHdXR3pLYThtQ2s2QXBneDFXN3VranBFcjkiLAogICAgICAidHJhbnNhY3Rpb25fdHlwZSI6ICJwbGFjZSIsCiAgICAgICJ1bm9mZmljaWFsX2N1cnJlbmN5X2NvZGUiOiBudWxsLAogICAgICAid2Vic2l0ZSI6ICJ0aW1ob3J0b25zLmNvbSIKICAgIH0sCiAgICB7CiAgICAgICJhY2NvdW50X2lkIjogIlp2bEJMNWVNUFF0blhEVjZRclI5c1JlTlZWejFYQWllYWdEUHoiLAogICAgICAiYWNjb3VudF9vd25lciI6IG51bGwsCiAgICAgICJhbW91bnQiOiA3NS40MSwKICAgICAgImF1dGhvcml6ZWRfZGF0ZSI6ICIyMDI0LTEwLTIyIiwKICAgICAgImF1dGhvcml6ZWRfZGF0ZXRpbWUiOiBudWxsLAogICAgICAiY2F0ZWdvcnkiOiBbCiAgICAgICAgIlNob3BzIiwKICAgICAgICAiU3VwZXJtYXJrZXRzIGFuZCBHcm9jZXJpZXMiCiAgICAgIF0sCiAgICAgICJjYXRlZ29yeV9pZCI6ICIxOTA0NzAwMCIsCiAgICAgICJjaGVja19udW1iZXIiOiBudWxsLAogICAgICAiY291bnRlcnBhcnRpZXMiOiBbCiAgICAgICAgewogICAgICAgICAgImNvbmZpZGVuY2VfbGV2ZWwiOiAiVkVSWV9ISUdIIiwKICAgICAgICAgICJlbnRpdHlfaWQiOiAiOTViQWs5allMcTY0NHo3Z3JMa3kycWFXcEJOWjgwWjBlT29KRCIsCiAgICAgICAgICAibG9nb191cmwiOiAiaHR0cHM6Ly9wbGFpZC1tZXJjaGFudC1sb2dvcy5wbGFpZC5jb20vcHVibGl4Xzc4Ny5wbmciLAogICAgICAgICAgIm5hbWUiOiAiUHVibGl4IiwKICAgICAgICAgICJwaG9uZV9udW1iZXIiOiBudWxsLAogICAgICAgICAgInR5cGUiOiAibWVyY2hhbnQiLAogICAgICAgICAgIndlYnNpdGUiOiAicHVibGl4LmNvbSIKICAgICAgICB9CiAgICAgIF0sCiAgICAgICJkYXRlIjogIjIwMjQtMTAtMjIiLAogICAgICAiZGF0ZXRpbWUiOiBudWxsLAogICAgICAiaXNvX2N1cnJlbmN5X2NvZGUiOiAiVVNEIiwKICAgICAgImxvY2F0aW9uIjogewogICAgICAgICJhZGRyZXNzIjogIjYwMCBOIFVuaXZlcnNpdHkgRHIiLAogICAgICAgICJjaXR5IjogIlBlbWJyb2tlIFBpbmVzIiwKICAgICAgICAiY291bnRyeSI6IG51bGwsCiAgICAgICAgImxhdCI6IDI2LjAxMzY2NCwKICAgICAgICAibG9uIjogLTgwLjI1MTgyMywKICAgICAgICAicG9zdGFsX2NvZGUiOiAiMzMwMjQiLAogICAgICAgICJyZWdpb24iOiAiRkwiLAogICAgICAgICJzdG9yZV9udW1iZXIiOiAiMDEyIgogICAgICB9LAogICAgICAibG9nb191cmwiOiAiaHR0cHM6Ly9wbGFpZC1tZXJjaGFudC1sb2dvcy5wbGFpZC5jb20vcHVibGl4Xzc4Ny5wbmciLAogICAgICAibWVyY2hhbnRfZW50aXR5X2lkIjogIjk1YkFrOWpZTHE2NDR6N2dyTGt5MnFhV3BCTlo4MFowZU9vSkQiLAogICAgICAibWVyY2hhbnRfbmFtZSI6ICJQdWJsaXgiLAogICAgICAibmFtZSI6ICJQdWJsaXgiLAogICAgICAib3JpZ2luYWxfZGVzY3JpcHRpb24iOiAiUFVCTElYICMwMTIiLAogICAgICAicGF5bWVudF9jaGFubmVsIjogImluIHN0b3JlIiwKICAgICAgInBheW1lbnRfbWV0YSI6IHsKICAgICAgICAiYnlfb3JkZXJfb2YiOiBudWxsLAogICAgICAgICJwYXllZSI6IG51bGwsCiAgICAgICAgInBheWVyIjogbnVsbCwKICAgICAgICAicGF5bWVudF9tZXRob2QiOiBudWxsLAogICAgICAgICJwYXltZW50X3Byb2Nlc3NvciI6IG51bGwsCiAgICAgICAgInBwZF9pZCI6IG51bGwsCiAgICAgICAgInJlYXNvbiI6IG51bGwsCiAgICAgICAgInJlZmVyZW5jZV9udW1iZXIiOiBudWxsCiAgICAgIH0sCiAgICAgICJwZW5kaW5nIjogZmFsc2UsCiAgICAgICJwZW5kaW5nX3RyYW5zYWN0aW9uX2lkIjogbnVsbCwKICAgICAgInBlcnNvbmFsX2ZpbmFuY2VfY2F0ZWdvcnkiOiB7CiAgICAgICAgImNvbmZpZGVuY2VfbGV2ZWwiOiAiVkVSWV9ISUdIIiwKICAgICAgICAiZGV0YWlsZWQiOiAiRk9PRF9BTkRfRFJJTktfR1JPQ0VSSUVTIiwKICAgICAgICAicHJpbWFyeSI6ICJGT09EX0FORF9EUklOSyIKICAgICAgfSwKICAgICAgInBlcnNvbmFsX2ZpbmFuY2VfY2F0ZWdvcnlfaWNvbl91cmwiOiAiaHR0cHM6Ly9wbGFpZC1jYXRlZ29yeS1pY29ucy5wbGFpZC5jb20vUEZDX0ZPT0RfQU5EX0RSSU5LLnBuZyIsCiAgICAgICJ0cmFuc2FjdGlvbl9jb2RlIjogbnVsbCwKICAgICAgInRyYW5zYWN0aW9uX2lkIjogInAxb0E3MzlEcUtoUjR5OFhrMVpXY3hKcmRMbjZvR3Rwb1Z6MWsiLAogICAgICAidHJhbnNhY3Rpb25fdHlwZSI6ICJwbGFjZSIsCiAgICAgICJ1bm9mZmljaWFsX2N1cnJlbmN5X2NvZGUiOiBudWxsLAogICAgICAid2Vic2l0ZSI6ICJwdWJsaXguY29tIgogICAgfSwKICAgIHsKICAgICAgImFjY291bnRfaWQiOiAiWnZsQkw1ZU1QUXRuWERWNlFyUjlzUmVOVlZ6MVhBaWVhZ0RQeiIsCiAgICAgICJhY2NvdW50X293bmVyIjogbnVsbCwKICAgICAgImFtb3VudCI6IDE1My41NCwKICAgICAgImF1dGhvcml6ZWRfZGF0ZSI6ICIyMDI0LTEwLTIyIiwKICAgICAgImF1dGhvcml6ZWRfZGF0ZXRpbWUiOiBudWxsLAogICAgICAiY2F0ZWdvcnkiOiBbCiAgICAgICAgIlNob3BzIiwKICAgICAgICAiV2FyZWhvdXNlcyBhbmQgV2hvbGVzYWxlIFN0b3JlcyIKICAgICAgXSwKICAgICAgImNhdGVnb3J5X2lkIjogIjE5MDUxMDAwIiwKICAgICAgImNoZWNrX251bWJlciI6IG51bGwsCiAgICAgICJjb3VudGVycGFydGllcyI6IFsKICAgICAgICB7CiAgICAgICAgICAiY29uZmlkZW5jZV9sZXZlbCI6ICJWRVJZX0hJR0giLAogICAgICAgICAgImVudGl0eV9pZCI6ICJwQm93QW9aSk1NOURLUjM3anZObXpNNHlXQkJYeU16VjJyTTNBIiwKICAgICAgICAgICJsb2dvX3VybCI6ICJodHRwczovL3BsYWlkLW1lcmNoYW50LWxvZ29zLnBsYWlkLmNvbS9jb3N0Y29fMjM1LnBuZyIsCiAgICAgICAgICAibmFtZSI6ICJDb3N0Y28iLAogICAgICAgICAgInBob25lX251bWJlciI6IG51bGwsCiAgICAgICAgICAidHlwZSI6ICJtZXJjaGFudCIsCiAgICAgICAgICAid2Vic2l0ZSI6ICJjb3N0Y28uY29tIgogICAgICAgIH0KICAgICAgXSwKICAgICAgImRhdGUiOiAiMjAyNC0xMC0yNCIsCiAgICAgICJkYXRldGltZSI6IG51bGwsCiAgICAgICJpc29fY3VycmVuY3lfY29kZSI6ICJVU0QiLAogICAgICAibG9jYXRpb24iOiB7CiAgICAgICAgImFkZHJlc3MiOiBudWxsLAogICAgICAgICJjaXR5IjogbnVsbCwKICAgICAgICAiY291bnRyeSI6IG51bGwsCiAgICAgICAgImxhdCI6IG51bGwsCiAgICAgICAgImxvbiI6IG51bGwsCiAgICAgICAgInBvc3RhbF9jb2RlIjogbnVsbCwKICAgICAgICAicmVnaW9uIjogbnVsbCwKICAgICAgICAic3RvcmVfbnVtYmVyIjogbnVsbAogICAgICB9LAogICAgICAibG9nb191cmwiOiAiaHR0cHM6Ly9wbGFpZC1tZXJjaGFudC1sb2dvcy5wbGFpZC5jb20vY29zdGNvXzIzNS5wbmciLAogICAgICAibWVyY2hhbnRfZW50aXR5X2lkIjogInBCb3dBb1pKTU05REtSMzdqdk5tek00eVdCQlh5TXpWMnJNM0EiLAogICAgICAibWVyY2hhbnRfbmFtZSI6ICJDb3N0Y28iLAogICAgICAibmFtZSI6ICJDb3N0Y28iLAogICAgICAib3JpZ2luYWxfZGVzY3JpcHRpb24iOiAiV1dXIENPU1RDTyBDT00gIy4uLjAxMjMiLAogICAgICAicGF5bWVudF9jaGFubmVsIjogImluIHN0b3JlIiwKICAgICAgInBheW1lbnRfbWV0YSI6IHsKICAgICAgICAiYnlfb3JkZXJfb2YiOiBudWxsLAogICAgICAgICJwYXllZSI6IG51bGwsCiAgICAgICAgInBheWVyIjogbnVsbCwKICAgICAgICAicGF5bWVudF9tZXRob2QiOiBudWxsLAogICAgICAgICJwYXltZW50X3Byb2Nlc3NvciI6IG51bGwsCiAgICAgICAgInBwZF9pZCI6IG51bGwsCiAgICAgICAgInJlYXNvbiI6IG51bGwsCiAgICAgICAgInJlZmVyZW5jZV9udW1iZXIiOiBudWxsCiAgICAgIH0sCiAgICAgICJwZW5kaW5nIjogZmFsc2UsCiAgICAgICJwZW5kaW5nX3RyYW5zYWN0aW9uX2lkIjogbnVsbCwKICAgICAgInBlcnNvbmFsX2ZpbmFuY2VfY2F0ZWdvcnkiOiB7CiAgICAgICAgImNvbmZpZGVuY2VfbGV2ZWwiOiAiVkVSWV9ISUdIIiwKICAgICAgICAiZGV0YWlsZWQiOiAiR0VORVJBTF9NRVJDSEFORElTRV9TVVBFUlNUT1JFUyIsCiAgICAgICAgInByaW1hcnkiOiAiR0VORVJBTF9NRVJDSEFORElTRSIKICAgICAgfSwKICAgICAgInBlcnNvbmFsX2ZpbmFuY2VfY2F0ZWdvcnlfaWNvbl91cmwiOiAiaHR0cHM6Ly9wbGFpZC1jYXRlZ29yeS1pY29ucy5wbGFpZC5jb20vUEZDX0dFTkVSQUxfTUVSQ0hBTkRJU0UucG5nIiwKICAgICAgInRyYW5zYWN0aW9uX2NvZGUiOiBudWxsLAogICAgICAidHJhbnNhY3Rpb25faWQiOiAib01weWpCOURscWhiNHY4Z2t5bjZ0YnpNcFp5NUczaW9xN2JsMSIsCiAgICAgICJ0cmFuc2FjdGlvbl90eXBlIjogInBsYWNlIiwKICAgICAgInVub2ZmaWNpYWxfY3VycmVuY3lfY29kZSI6IG51bGwsCiAgICAgICJ3ZWJzaXRlIjogImNvc3Rjby5jb20iCiAgICB9LAogICAgewogICAgICAiYWNjb3VudF9pZCI6ICJadmxCTDVlTVBRdG5YRFY2UXJSOXNSZU5WVnoxWEFpZWFnRFB6IiwKICAgICAgImFjY291bnRfb3duZXIiOiBudWxsLAogICAgICAiYW1vdW50IjogMTEuMjEsCiAgICAgICJhdXRob3JpemVkX2RhdGUiOiAiMjAyNC0xMC0yMyIsCiAgICAgICJhdXRob3JpemVkX2RhdGV0aW1lIjogbnVsbCwKICAgICAgImNhdGVnb3J5IjogWwogICAgICAgICJTaG9wcyIsCiAgICAgICAgIkJvb2tzdG9yZXMiCiAgICAgIF0sCiAgICAgICJjYXRlZ29yeV9pZCI6ICIxOTAwOTAwMCIsCiAgICAgICJjaGVja19udW1iZXIiOiBudWxsLAogICAgICAiY291bnRlcnBhcnRpZXMiOiBbCiAgICAgICAgewogICAgICAgICAgImNvbmZpZGVuY2VfbGV2ZWwiOiAiTE9XIiwKICAgICAgICAgICJlbnRpdHlfaWQiOiBudWxsLAogICAgICAgICAgImxvZ29fdXJsIjogbnVsbCwKICAgICAgICAgICJuYW1lIjogIk9yZGVyIiwKICAgICAgICAgICJwaG9uZV9udW1iZXIiOiBudWxsLAogICAgICAgICAgInR5cGUiOiAibWVyY2hhbnQiLAogICAgICAgICAgIndlYnNpdGUiOiBudWxsCiAgICAgICAgfQogICAgICBdLAogICAgICAiZGF0ZSI6ICIyMDI0LTEwLTI2IiwKICAgICAgImRhdGV0aW1lIjogbnVsbCwKICAgICAgImlzb19jdXJyZW5jeV9jb2RlIjogIlVTRCIsCiAgICAgICJsb2NhdGlvbiI6IHsKICAgICAgICAiYWRkcmVzcyI6IG51bGwsCiAgICAgICAgImNpdHkiOiBudWxsLAogICAgICAgICJjb3VudHJ5IjogbnVsbCwKICAgICAgICAibGF0IjogbnVsbCwKICAgICAgICAibG9uIjogbnVsbCwKICAgICAgICAicG9zdGFsX2NvZGUiOiBudWxsLAogICAgICAgICJyZWdpb24iOiAiQ0EiLAogICAgICAgICJzdG9yZV9udW1iZXIiOiBudWxsCiAgICAgIH0sCiAgICAgICJsb2dvX3VybCI6IG51bGwsCiAgICAgICJtZXJjaGFudF9lbnRpdHlfaWQiOiBudWxsLAogICAgICAibWVyY2hhbnRfbmFtZSI6ICJPcmRlciIsCiAgICAgICJuYW1lIjogIkNIRUdHIE9SREVSIiwKICAgICAgIm9yaWdpbmFsX2Rlc2NyaXB0aW9uIjogIkNIRUdHIE9SREVSIDAxMi0wMTItMDEyMyBDQSIsCiAgICAgICJwYXltZW50X2NoYW5uZWwiOiAib25saW5lIiwKICAgICAgInBheW1lbnRfbWV0YSI6IHsKICAgICAgICAiYnlfb3JkZXJfb2YiOiBudWxsLAogICAgICAgICJwYXllZSI6IG51bGwsCiAgICAgICAgInBheWVyIjogbnVsbCwKICAgICAgICAicGF5bWVudF9tZXRob2QiOiBudWxsLAogICAgICAgICJwYXltZW50X3Byb2Nlc3NvciI6IG51bGwsCiAgICAgICAgInBwZF9pZCI6IG51bGwsCiAgICAgICAgInJlYXNvbiI6IG51bGwsCiAgICAgICAgInJlZmVyZW5jZV9udW1iZXIiOiBudWxsCiAgICAgIH0sCiAgICAgICJwZW5kaW5nIjogZmFsc2UsCiAgICAgICJwZW5kaW5nX3RyYW5zYWN0aW9uX2lkIjogbnVsbCwKICAgICAgInBlcnNvbmFsX2ZpbmFuY2VfY2F0ZWdvcnkiOiB7CiAgICAgICAgImNvbmZpZGVuY2VfbGV2ZWwiOiAiTE9XIiwKICAgICAgICAiZGV0YWlsZWQiOiAiR0VORVJBTF9TRVJWSUNFU19FRFVDQVRJT04iLAogICAgICAgICJwcmltYXJ5IjogIkdFTkVSQUxfU0VSVklDRVMiCiAgICAgIH0sCiAgICAgICJwZXJzb25hbF9maW5hbmNlX2NhdGVnb3J5X2ljb25fdXJsIjogImh0dHBzOi8vcGxhaWQtY2F0ZWdvcnktaWNvbnMucGxhaWQuY29tL1BGQ19HRU5FUkFMX1NFUlZJQ0VTLnBuZyIsCiAgICAgICJ0cmFuc2FjdGlvbl9jb2RlIjogbnVsbCwKICAgICAgInRyYW5zYWN0aW9uX2lkIjogImc0ajdCNWtYRW5Dd2RMVjdOelFQSFY1OWRSQlA4V2NFOG41bXkiLAogICAgICAidHJhbnNhY3Rpb25fdHlwZSI6ICJwbGFjZSIsCiAgICAgICJ1bm9mZmljaWFsX2N1cnJlbmN5X2NvZGUiOiBudWxsLAogICAgICAid2Vic2l0ZSI6IG51bGwKICAgIH0sCiAgICB7CiAgICAgICJhY2NvdW50X2lkIjogIlp2bEJMNWVNUFF0blhEVjZRclI5c1JlTlZWejFYQWllYWdEUHoiLAogICAgICAiYWNjb3VudF9vd25lciI6IG51bGwsCiAgICAgICJhbW91bnQiOiAzNS4zNSwKICAgICAgImF1dGhvcml6ZWRfZGF0ZSI6ICIyMDI0LTEwLTI1IiwKICAgICAgImF1dGhvcml6ZWRfZGF0ZXRpbWUiOiBudWxsLAogICAgICAiY2F0ZWdvcnkiOiBbCiAgICAgICAgIkZvb2QgYW5kIERyaW5rIiwKICAgICAgICAiUmVzdGF1cmFudHMiLAogICAgICAgICJGYXN0IEZvb2QiCiAgICAgIF0sCiAgICAgICJjYXRlZ29yeV9pZCI6ICIxMzAwNTAzMiIsCiAgICAgICJjaGVja19udW1iZXIiOiBudWxsLAogICAgICAiY291bnRlcnBhcnRpZXMiOiBbCiAgICAgICAgewogICAgICAgICAgImNvbmZpZGVuY2VfbGV2ZWwiOiAiVkVSWV9ISUdIIiwKICAgICAgICAgICJlbnRpdHlfaWQiOiAiQUVtQnBwOGtEVjlva2RSWkFaTU9WTGp6cjZnTDg3eW4xMW1ZOSIsCiAgICAgICAgICAibG9nb191cmwiOiAiaHR0cHM6Ly9wbGFpZC1tZXJjaGFudC1sb2dvcy5wbGFpZC5jb20vcGFwYV9qb2huc183MTYucG5nIiwKICAgICAgICAgICJuYW1lIjogIlBhcGEgSm9obidzIiwKICAgICAgICAgICJwaG9uZV9udW1iZXIiOiBudWxsLAogICAgICAgICAgInR5cGUiOiAibWVyY2hhbnQiLAogICAgICAgICAgIndlYnNpdGUiOiAicGFwYWpvaG5zLmNvbSIKICAgICAgICB9CiAgICAgIF0sCiAgICAgICJkYXRlIjogIjIwMjQtMTAtMjYiLAogICAgICAiZGF0ZXRpbWUiOiBudWxsLAogICAgICAiaXNvX2N1cnJlbmN5X2NvZGUiOiAiVVNEIiwKICAgICAgImxvY2F0aW9uIjogewogICAgICAgICJhZGRyZXNzIjogbnVsbCwKICAgICAgICAiY2l0eSI6IG51bGwsCiAgICAgICAgImNvdW50cnkiOiBudWxsLAogICAgICAgICJsYXQiOiBudWxsLAogICAgICAgICJsb24iOiBudWxsLAogICAgICAgICJwb3N0YWxfY29kZSI6IG51bGwsCiAgICAgICAgInJlZ2lvbiI6IG51bGwsCiAgICAgICAgInN0b3JlX251bWJlciI6ICIwMTIzIgogICAgICB9LAogICAgICAibG9nb191cmwiOiAiaHR0cHM6Ly9wbGFpZC1tZXJjaGFudC1sb2dvcy5wbGFpZC5jb20vcGFwYV9qb2huc183MTYucG5nIiwKICAgICAgIm1lcmNoYW50X2VudGl0eV9pZCI6ICJBRW1CcHA4a0RWOW9rZFJaQVpNT1ZManpyNmdMODd5bjExbVk5IiwKICAgICAgIm1lcmNoYW50X25hbWUiOiAiUGFwYSBKb2huJ3MiLAogICAgICAibmFtZSI6ICJQYXBhIEpvaG4ncyIsCiAgICAgICJvcmlnaW5hbF9kZXNjcmlwdGlvbiI6ICJQQVBBIEpPSE4nUyAjMDEyMyIsCiAgICAgICJwYXltZW50X2NoYW5uZWwiOiAiaW4gc3RvcmUiLAogICAgICAicGF5bWVudF9tZXRhIjogewogICAgICAgICJieV9vcmRlcl9vZiI6IG51bGwsCiAgICAgICAgInBheWVlIjogbnVsbCwKICAgICAgICAicGF5ZXIiOiBudWxsLAogICAgICAgICJwYXltZW50X21ldGhvZCI6IG51bGwsCiAgICAgICAgInBheW1lbnRfcHJvY2Vzc29yIjogbnVsbCwKICAgICAgICAicHBkX2lkIjogbnVsbCwKICAgICAgICAicmVhc29uIjogbnVsbCwKICAgICAgICAicmVmZXJlbmNlX251bWJlciI6IG51bGwKICAgICAgfSwKICAgICAgInBlbmRpbmciOiBmYWxzZSwKICAgICAgInBlbmRpbmdfdHJhbnNhY3Rpb25faWQiOiBudWxsLAogICAgICAicGVyc29uYWxfZmluYW5jZV9jYXRlZ29yeSI6IHsKICAgICAgICAiY29uZmlkZW5jZV9sZXZlbCI6ICJWRVJZX0hJR0giLAogICAgICAgICJkZXRhaWxlZCI6ICJGT09EX0FORF9EUklOS19GQVNUX0ZPT0QiLAogICAgICAgICJwcmltYXJ5IjogIkZPT0RfQU5EX0RSSU5LIgogICAgICB9LAogICAgICAicGVyc29uYWxfZmluYW5jZV9jYXRlZ29yeV9pY29uX3VybCI6ICJodHRwczovL3BsYWlkLWNhdGVnb3J5LWljb25zLnBsYWlkLmNvbS9QRkNfRk9PRF9BTkRfRFJJTksucG5nIiwKICAgICAgInRyYW5zYWN0aW9uX2NvZGUiOiBudWxsLAogICAgICAidHJhbnNhY3Rpb25faWQiOiAiOGxCWjdrcW1OTWZsTTZOMXJCYjh1ZHprR3d5QTVNdVczTDhsNSIsCiAgICAgICJ0cmFuc2FjdGlvbl90eXBlIjogInBsYWNlIiwKICAgICAgInVub2ZmaWNpYWxfY3VycmVuY3lfY29kZSI6IG51bGwsCiAgICAgICJ3ZWJzaXRlIjogInBhcGFqb2hucy5jb20iCiAgICB9LAogICAgewogICAgICAiYWNjb3VudF9pZCI6ICJadmxCTDVlTVBRdG5YRFY2UXJSOXNSZU5WVnoxWEFpZWFnRFB6IiwKICAgICAgImFjY291bnRfb3duZXIiOiBudWxsLAogICAgICAiYW1vdW50IjogOTguNDcsCiAgICAgICJhdXRob3JpemVkX2RhdGUiOiAiMjAyNC0xMC0yNiIsCiAgICAgICJhdXRob3JpemVkX2RhdGV0aW1lIjogbnVsbCwKICAgICAgImNhdGVnb3J5IjogWwogICAgICAgICJTZXJ2aWNlIiwKICAgICAgICAiRm9vZCBhbmQgQmV2ZXJhZ2UiCiAgICAgIF0sCiAgICAgICJjYXRlZ29yeV9pZCI6ICIxODAyMTAwMCIsCiAgICAgICJjaGVja19udW1iZXIiOiBudWxsLAogICAgICAiY291bnRlcnBhcnRpZXMiOiBbXSwKICAgICAgImRhdGUiOiAiMjAyNC0xMC0yNiIsCiAgICAgICJkYXRldGltZSI6IG51bGwsCiAgICAgICJpc29fY3VycmVuY3lfY29kZSI6ICJVU0QiLAogICAgICAibG9jYXRpb24iOiB7CiAgICAgICAgImFkZHJlc3MiOiBudWxsLAogICAgICAgICJjaXR5IjogbnVsbCwKICAgICAgICAiY291bnRyeSI6IG51bGwsCiAgICAgICAgImxhdCI6IG51bGwsCiAgICAgICAgImxvbiI6IG51bGwsCiAgICAgICAgInBvc3RhbF9jb2RlIjogbnVsbCwKICAgICAgICAicmVnaW9uIjogIk5ZIiwKICAgICAgICAic3RvcmVfbnVtYmVyIjogbnVsbAogICAgICB9LAogICAgICAibG9nb191cmwiOiBudWxsLAogICAgICAibWVyY2hhbnRfZW50aXR5X2lkIjogbnVsbCwKICAgICAgIm1lcmNoYW50X25hbWUiOiBudWxsLAogICAgICAibmFtZSI6ICJNRUFMUEFMIDAxMjM0NTY3ODkiLAogICAgICAib3JpZ2luYWxfZGVzY3JpcHRpb24iOiAiTUVBTFBBTCAwMTIzNDU2Nzg5IE5ZIiwKICAgICAgInBheW1lbnRfY2hhbm5lbCI6ICJvbmxpbmUiLAogICAgICAicGF5bWVudF9tZXRhIjogewogICAgICAgICJieV9vcmRlcl9vZiI6IG51bGwsCiAgICAgICAgInBheWVlIjogbnVsbCwKICAgICAgICAicGF5ZXIiOiBudWxsLAogICAgICAgICJwYXltZW50X21ldGhvZCI6IG51bGwsCiAgICAgICAgInBheW1lbnRfcHJvY2Vzc29yIjogbnVsbCwKICAgICAgICAicHBkX2lkIjogbnVsbCwKICAgICAgICAicmVhc29uIjogbnVsbCwKICAgICAgICAicmVmZXJlbmNlX251bWJlciI6IG51bGwKICAgICAgfSwKICAgICAgInBlbmRpbmciOiBmYWxzZSwKICAgICAgInBlbmRpbmdfdHJhbnNhY3Rpb25faWQiOiBudWxsLAogICAgICAicGVyc29uYWxfZmluYW5jZV9jYXRlZ29yeSI6IHsKICAgICAgICAiY29uZmlkZW5jZV9sZXZlbCI6ICJMT1ciLAogICAgICAgICJkZXRhaWxlZCI6ICJHRU5FUkFMX01FUkNIQU5ESVNFX09USEVSX0dFTkVSQUxfTUVSQ0hBTkRJU0UiLAogICAgICAgICJwcmltYXJ5IjogIkdFTkVSQUxfTUVSQ0hBTkRJU0UiCiAgICAgIH0sCiAgICAgICJwZXJzb25hbF9maW5hbmNlX2NhdGVnb3J5X2ljb25fdXJsIjogImh0dHBzOi8vcGxhaWQtY2F0ZWdvcnktaWNvbnMucGxhaWQuY29tL1BGQ19HRU5FUkFMX01FUkNIQU5ESVNFLnBuZyIsCiAgICAgICJ0cmFuc2FjdGlvbl9jb2RlIjogbnVsbCwKICAgICAgInRyYW5zYWN0aW9uX2lkIjogIkVqTTNBNXZLOG1DakxlYTFHRTNtQ3lvbTk1UHJ2a2k0eGttSzMiLAogICAgICAidHJhbnNhY3Rpb25fdHlwZSI6ICJwbGFjZSIsCiAgICAgICJ1bm9mZmljaWFsX2N1cnJlbmN5X2NvZGUiOiBudWxsLAogICAgICAid2Vic2l0ZSI6IG51bGwKICAgIH0sCiAgICB7CiAgICAgICJhY2NvdW50X2lkIjogIlp2bEJMNWVNUFF0blhEVjZRclI5c1JlTlZWejFYQWllYWdEUHoiLAogICAgICAiYWNjb3VudF9vd25lciI6IG51bGwsCiAgICAgICJhbW91bnQiOiAxNi42OCwKICAgICAgImF1dGhvcml6ZWRfZGF0ZSI6ICIyMDI0LTEwLTI1IiwKICAgICAgImF1dGhvcml6ZWRfZGF0ZXRpbWUiOiBudWxsLAogICAgICAiY2F0ZWdvcnkiOiBbCiAgICAgICAgIlNob3BzIiwKICAgICAgICAiUGV0cyIKICAgICAgXSwKICAgICAgImNhdGVnb3J5X2lkIjogIjE5MDQyMDAwIiwKICAgICAgImNoZWNrX251bWJlciI6IG51bGwsCiAgICAgICJjb3VudGVycGFydGllcyI6IFsKICAgICAgICB7CiAgICAgICAgICAiY29uZmlkZW5jZV9sZXZlbCI6ICJMT1ciLAogICAgICAgICAgImVudGl0eV9pZCI6IG51bGwsCiAgICAgICAgICAibG9nb191cmwiOiBudWxsLAogICAgICAgICAgIm5hbWUiOiAiUGV0dmFsdSIsCiAgICAgICAgICAicGhvbmVfbnVtYmVyIjogbnVsbCwKICAgICAgICAgICJ0eXBlIjogIm1lcmNoYW50IiwKICAgICAgICAgICJ3ZWJzaXRlIjogbnVsbAogICAgICAgIH0KICAgICAgXSwKICAgICAgImRhdGUiOiAiMjAyNC0xMC0yNSIsCiAgICAgICJkYXRldGltZSI6IG51bGwsCiAgICAgICJpc29fY3VycmVuY3lfY29kZSI6ICJVU0QiLAogICAgICAibG9jYXRpb24iOiB7CiAgICAgICAgImFkZHJlc3MiOiBudWxsLAogICAgICAgICJjaXR5IjogbnVsbCwKICAgICAgICAiY291bnRyeSI6IG51bGwsCiAgICAgICAgImxhdCI6IG51bGwsCiAgICAgICAgImxvbiI6IG51bGwsCiAgICAgICAgInBvc3RhbF9jb2RlIjogbnVsbCwKICAgICAgICAicmVnaW9uIjogbnVsbCwKICAgICAgICAic3RvcmVfbnVtYmVyIjogIjAxMjMiCiAgICAgIH0sCiAgICAgICJsb2dvX3VybCI6IG51bGwsCiAgICAgICJtZXJjaGFudF9lbnRpdHlfaWQiOiBudWxsLAogICAgICAibWVyY2hhbnRfbmFtZSI6ICJQZXR2YWx1IiwKICAgICAgIm5hbWUiOiAiUEVUVkFMVSAjMDEyMyIsCiAgICAgICJvcmlnaW5hbF9kZXNjcmlwdGlvbiI6ICJQRVRWQUxVICMwMTIzIiwKICAgICAgInBheW1lbnRfY2hhbm5lbCI6ICJpbiBzdG9yZSIsCiAgICAgICJwYXltZW50X21ldGEiOiB7CiAgICAgICAgImJ5X29yZGVyX29mIjogbnVsbCwKICAgICAgICAicGF5ZWUiOiBudWxsLAogICAgICAgICJwYXllciI6IG51bGwsCiAgICAgICAgInBheW1lbnRfbWV0aG9kIjogbnVsbCwKICAgICAgICAicGF5bWVudF9wcm9jZXNzb3IiOiBudWxsLAogICAgICAgICJwcGRfaWQiOiBudWxsLAogICAgICAgICJyZWFzb24iOiBudWxsLAogICAgICAgICJyZWZlcmVuY2VfbnVtYmVyIjogbnVsbAogICAgICB9LAogICAgICAicGVuZGluZyI6IGZhbHNlLAogICAgICAicGVuZGluZ190cmFuc2FjdGlvbl9pZCI6IG51bGwsCiAgICAgICJwZXJzb25hbF9maW5hbmNlX2NhdGVnb3J5IjogewogICAgICAgICJjb25maWRlbmNlX2xldmVsIjogIkxPVyIsCiAgICAgICAgImRldGFpbGVkIjogIkdFTkVSQUxfTUVSQ0hBTkRJU0VfUEVUX1NVUFBMSUVTIiwKICAgICAgICAicHJpbWFyeSI6ICJHRU5FUkFMX01FUkNIQU5ESVNFIgogICAgICB9LAogICAgICAicGVyc29uYWxfZmluYW5jZV9jYXRlZ29yeV9pY29uX3VybCI6ICJodHRwczovL3BsYWlkLWNhdGVnb3J5LWljb25zLnBsYWlkLmNvbS9QRkNfR0VORVJBTF9NRVJDSEFORElTRS5wbmciLAogICAgICAidHJhbnNhY3Rpb25fY29kZSI6IG51bGwsCiAgICAgICJ0cmFuc2FjdGlvbl9pZCI6ICJXbTZrWjV6TWFqdWRiNFhWNm55YWZCOFZnTmIzem5DNloxam1hIiwKICAgICAgInRyYW5zYWN0aW9uX3R5cGUiOiAicGxhY2UiLAogICAgICAidW5vZmZpY2lhbF9jdXJyZW5jeV9jb2RlIjogbnVsbCwKICAgICAgIndlYnNpdGUiOiBudWxsCiAgICB9LAogICAgewogICAgICAiYWNjb3VudF9pZCI6ICJadmxCTDVlTVBRdG5YRFY2UXJSOXNSZU5WVnoxWEFpZWFnRFB6IiwKICAgICAgImFjY291bnRfb3duZXIiOiBudWxsLAogICAgICAiYW1vdW50IjogMTcuMzYsCiAgICAgICJhdXRob3JpemVkX2RhdGUiOiAiMjAyNC0xMC0yNSIsCiAgICAgICJhdXRob3JpemVkX2RhdGV0aW1lIjogbnVsbCwKICAgICAgImNhdGVnb3J5IjogWwogICAgICAgICJTaG9wcyIsCiAgICAgICAgIkRpc2NvdW50IFN0b3JlcyIKICAgICAgXSwKICAgICAgImNhdGVnb3J5X2lkIjogIjE5MDIwMDAwIiwKICAgICAgImNoZWNrX251bWJlciI6IG51bGwsCiAgICAgICJjb3VudGVycGFydGllcyI6IFsKICAgICAgICB7CiAgICAgICAgICAiY29uZmlkZW5jZV9sZXZlbCI6ICJWRVJZX0hJR0giLAogICAgICAgICAgImVudGl0eV9pZCI6ICJZdkxCOW9XdzlYeWROTFZPZG1FWVZlNTNKZ2FnbVE4NHJLbkVqIiwKICAgICAgICAgICJsb2dvX3VybCI6ICJodHRwczovL3BsYWlkLW1lcmNoYW50LWxvZ29zLnBsYWlkLmNvbS9mYW1pbHlfZG9sbGFyXzM0OC5wbmciLAogICAgICAgICAgIm5hbWUiOiAiRmFtaWx5IERvbGxhciIsCiAgICAgICAgICAicGhvbmVfbnVtYmVyIjogbnVsbCwKICAgICAgICAgICJ0eXBlIjogIm1lcmNoYW50IiwKICAgICAgICAgICJ3ZWJzaXRlIjogImZhbWlseWRvbGxhci5jb20iCiAgICAgICAgfQogICAgICBdLAogICAgICAiZGF0ZSI6ICIyMDI0LTEwLTI1IiwKICAgICAgImRhdGV0aW1lIjogbnVsbCwKICAgICAgImlzb19jdXJyZW5jeV9jb2RlIjogIlVTRCIsCiAgICAgICJsb2NhdGlvbiI6IHsKICAgICAgICAiYWRkcmVzcyI6IG51bGwsCiAgICAgICAgImNpdHkiOiBudWxsLAogICAgICAgICJjb3VudHJ5IjogbnVsbCwKICAgICAgICAibGF0IjogbnVsbCwKICAgICAgICAibG9uIjogbnVsbCwKICAgICAgICAicG9zdGFsX2NvZGUiOiBudWxsLAogICAgICAgICJyZWdpb24iOiBudWxsLAogICAgICAgICJzdG9yZV9udW1iZXIiOiAiMDEyMyIKICAgICAgfSwKICAgICAgImxvZ29fdXJsIjogImh0dHBzOi8vcGxhaWQtbWVyY2hhbnQtbG9nb3MucGxhaWQuY29tL2ZhbWlseV9kb2xsYXJfMzQ4LnBuZyIsCiAgICAgICJtZXJjaGFudF9lbnRpdHlfaWQiOiAiWXZMQjlvV3c5WHlkTkxWT2RtRVlWZTUzSmdhZ21RODRyS25FaiIsCiAgICAgICJtZXJjaGFudF9uYW1lIjogIkZhbWlseSBEb2xsYXIiLAogICAgICAibmFtZSI6ICJGYW1pbHkgRG9sbGFyIiwKICAgICAgIm9yaWdpbmFsX2Rlc2NyaXB0aW9uIjogIkZBTUlMWSBET0xMQVIgIzAxMjMiLAogICAgICAicGF5bWVudF9jaGFubmVsIjogImluIHN0b3JlIiwKICAgICAgInBheW1lbnRfbWV0YSI6IHsKICAgICAgICAiYnlfb3JkZXJfb2YiOiBudWxsLAogICAgICAgICJwYXllZSI6IG51bGwsCiAgICAgICAgInBheWVyIjogbnVsbCwKICAgICAgICAicGF5bWVudF9tZXRob2QiOiBudWxsLAogICAgICAgICJwYXltZW50X3Byb2Nlc3NvciI6IG51bGwsCiAgICAgICAgInBwZF9pZCI6IG51bGwsCiAgICAgICAgInJlYXNvbiI6IG51bGwsCiAgICAgICAgInJlZmVyZW5jZV9udW1iZXIiOiBudWxsCiAgICAgIH0sCiAgICAgICJwZW5kaW5nIjogZmFsc2UsCiAgICAgICJwZW5kaW5nX3RyYW5zYWN0aW9uX2lkIjogbnVsbCwKICAgICAgInBlcnNvbmFsX2ZpbmFuY2VfY2F0ZWdvcnkiOiB7CiAgICAgICAgImNvbmZpZGVuY2VfbGV2ZWwiOiAiVkVSWV9ISUdIIiwKICAgICAgICAiZGV0YWlsZWQiOiAiR0VORVJBTF9NRVJDSEFORElTRV9ESVNDT1VOVF9TVE9SRVMiLAogICAgICAgICJwcmltYXJ5IjogIkdFTkVSQUxfTUVSQ0hBTkRJU0UiCiAgICAgIH0sCiAgICAgICJwZXJzb25hbF9maW5hbmNlX2NhdGVnb3J5X2ljb25fdXJsIjogImh0dHBzOi8vcGxhaWQtY2F0ZWdvcnktaWNvbnMucGxhaWQuY29tL1BGQ19HRU5FUkFMX01FUkNIQU5ESVNFLnBuZyIsCiAgICAgICJ0cmFuc2FjdGlvbl9jb2RlIjogbnVsbCwKICAgICAgInRyYW5zYWN0aW9uX2lkIjogIkFhN0tnUnBWTEFoYW1XbGtBdkQzczhEbDVLWjdickY5ckE1WEsiLAogICAgICAidHJhbnNhY3Rpb25fdHlwZSI6ICJwbGFjZSIsCiAgICAgICJ1bm9mZmljaWFsX2N1cnJlbmN5X2NvZGUiOiBudWxsLAogICAgICAid2Vic2l0ZSI6ICJmYW1pbHlkb2xsYXIuY29tIgogICAgfSwKICAgIHsKICAgICAgImFjY291bnRfaWQiOiAiWnZsQkw1ZU1QUXRuWERWNlFyUjlzUmVOVlZ6MVhBaWVhZ0RQeiIsCiAgICAgICJhY2NvdW50X293bmVyIjogbnVsbCwKICAgICAgImFtb3VudCI6IDMzLjE2LAogICAgICAiYXV0aG9yaXplZF9kYXRlIjogIjIwMjQtMTAtMjUiLAogICAgICAiYXV0aG9yaXplZF9kYXRldGltZSI6IG51bGwsCiAgICAgICJjYXRlZ29yeSI6IFsKICAgICAgICAiU2hvcHMiLAogICAgICAgICJDb252ZW5pZW5jZSBTdG9yZXMiCiAgICAgIF0sCiAgICAgICJjYXRlZ29yeV9pZCI6ICIxOTAxNTAwMCIsCiAgICAgICJjaGVja19udW1iZXIiOiBudWxsLAogICAgICAiY291bnRlcnBhcnRpZXMiOiBbCiAgICAgICAgewogICAgICAgICAgImNvbmZpZGVuY2VfbGV2ZWwiOiAiVkVSWV9ISUdIIiwKICAgICAgICAgICJlbnRpdHlfaWQiOiAiNjUzVnlLNXd2ZHpLZWF3V3FYcFd2MFhEWE4xQkJvbVZnN0xCUiIsCiAgICAgICAgICAibG9nb191cmwiOiAiaHR0cHM6Ly9wbGFpZC1tZXJjaGFudC1sb2dvcy5wbGFpZC5jb20vYnVjZWVzXzE1MC5wbmciLAogICAgICAgICAgIm5hbWUiOiAiQnVjLWVlJ3MiLAogICAgICAgICAgInBob25lX251bWJlciI6IG51bGwsCiAgICAgICAgICAidHlwZSI6ICJtZXJjaGFudCIsCiAgICAgICAgICAid2Vic2l0ZSI6ICJidWMtZWVzLmNvbSIKICAgICAgICB9CiAgICAgIF0sCiAgICAgICJkYXRlIjogIjIwMjQtMTAtMjUiLAogICAgICAiZGF0ZXRpbWUiOiBudWxsLAogICAgICAiaXNvX2N1cnJlbmN5X2NvZGUiOiAiVVNEIiwKICAgICAgImxvY2F0aW9uIjogewogICAgICAgICJhZGRyZXNzIjogIjg5OSBPeXN0ZXIgQ3JlZWsgRHIiLAogICAgICAgICJjaXR5IjogIkxha2UgSmFja3NvbiIsCiAgICAgICAgImNvdW50cnkiOiBudWxsLAogICAgICAgICJsYXQiOiBudWxsLAogICAgICAgICJsb24iOiBudWxsLAogICAgICAgICJwb3N0YWxfY29kZSI6ICI3NzU2NiIsCiAgICAgICAgInJlZ2lvbiI6ICJUWCIsCiAgICAgICAgInN0b3JlX251bWJlciI6ICIwMSIKICAgICAgfSwKICAgICAgImxvZ29fdXJsIjogImh0dHBzOi8vcGxhaWQtbWVyY2hhbnQtbG9nb3MucGxhaWQuY29tL2J1Y2Vlc18xNTAucG5nIiwKICAgICAgIm1lcmNoYW50X2VudGl0eV9pZCI6ICI2NTNWeUs1d3ZkektlYXdXcVhwV3YwWERYTjFCQm9tVmc3TEJSIiwKICAgICAgIm1lcmNoYW50X25hbWUiOiAiQnVjLWVlJ3MiLAogICAgICAibmFtZSI6ICJCVUMtRUUnUyAjMDEiLAogICAgICAib3JpZ2luYWxfZGVzY3JpcHRpb24iOiAiQlVDLUVFJ1MgIzAxIiwKICAgICAgInBheW1lbnRfY2hhbm5lbCI6ICJpbiBzdG9yZSIsCiAgICAgICJwYXltZW50X21ldGEiOiB7CiAgICAgICAgImJ5X29yZGVyX29mIjogbnVsbCwKICAgICAgICAicGF5ZWUiOiBudWxsLAogICAgICAgICJwYXllciI6IG51bGwsCiAgICAgICAgInBheW1lbnRfbWV0aG9kIjogbnVsbCwKICAgICAgICAicGF5bWVudF9wcm9jZXNzb3IiOiBudWxsLAogICAgICAgICJwcGRfaWQiOiBudWxsLAogICAgICAgICJyZWFzb24iOiBudWxsLAogICAgICAgICJyZWZlcmVuY2VfbnVtYmVyIjogbnVsbAogICAgICB9LAogICAgICAicGVuZGluZyI6IGZhbHNlLAogICAgICAicGVuZGluZ190cmFuc2FjdGlvbl9pZCI6IG51bGwsCiAgICAgICJwZXJzb25hbF9maW5hbmNlX2NhdGVnb3J5IjogewogICAgICAgICJjb25maWRlbmNlX2xldmVsIjogIlZFUllfSElHSCIsCiAgICAgICAgImRldGFpbGVkIjogIkdFTkVSQUxfTUVSQ0hBTkRJU0VfQ09OVkVOSUVOQ0VfU1RPUkVTIiwKICAgICAgICAicHJpbWFyeSI6ICJHRU5FUkFMX01FUkNIQU5ESVNFIgogICAgICB9LAogICAgICAicGVyc29uYWxfZmluYW5jZV9jYXRlZ29yeV9pY29uX3VybCI6ICJodHRwczovL3BsYWlkLWNhdGVnb3J5LWljb25zLnBsYWlkLmNvbS9QRkNfR0VORVJBTF9NRVJDSEFORElTRS5wbmciLAogICAgICAidHJhbnNhY3Rpb25fY29kZSI6IG51bGwsCiAgICAgICJ0cmFuc2FjdGlvbl9pZCI6ICJHZUxkcTVvelc5VGU4SmQ0TUd2UFQ4NE1aRHdQVzdGNk1Qb2VWIiwKICAgICAgInRyYW5zYWN0aW9uX3R5cGUiOiAicGxhY2UiLAogICAgICAidW5vZmZpY2lhbF9jdXJyZW5jeV9jb2RlIjogbnVsbCwKICAgICAgIndlYnNpdGUiOiAiYnVjLWVlcy5jb20iCiAgICB9LAogICAgewogICAgICAiYWNjb3VudF9pZCI6ICJadmxCTDVlTVBRdG5YRFY2UXJSOXNSZU5WVnoxWEFpZWFnRFB6IiwKICAgICAgImFjY291bnRfb3duZXIiOiBudWxsLAogICAgICAiYW1vdW50IjogNTEuMDEsCiAgICAgICJhdXRob3JpemVkX2RhdGUiOiAiMjAyNC0xMC0yNSIsCiAgICAgICJhdXRob3JpemVkX2RhdGV0aW1lIjogbnVsbCwKICAgICAgImNhdGVnb3J5IjogWwogICAgICAgICJGb29kIGFuZCBEcmluayIsCiAgICAgICAgIlJlc3RhdXJhbnRzIiwKICAgICAgICAiRmFzdCBGb29kIgogICAgICBdLAogICAgICAiY2F0ZWdvcnlfaWQiOiAiMTMwMDUwMzIiLAogICAgICAiY2hlY2tfbnVtYmVyIjogbnVsbCwKICAgICAgImNvdW50ZXJwYXJ0aWVzIjogWwogICAgICAgIHsKICAgICAgICAgICJjb25maWRlbmNlX2xldmVsIjogIlZFUllfSElHSCIsCiAgICAgICAgICAiZW50aXR5X2lkIjogImE0cjhXb2c5TGJXcndxV3BYWmVKWnI5YjhyUmJnYXZnYTBka00iLAogICAgICAgICAgImxvZ29fdXJsIjogImh0dHBzOi8vcGxhaWQtbWVyY2hhbnQtbG9nb3MucGxhaWQuY29tL2RvbWlub3NfMjkyLnBuZyIsCiAgICAgICAgICAibmFtZSI6ICJEb21pbm8ncyIsCiAgICAgICAgICAicGhvbmVfbnVtYmVyIjogbnVsbCwKICAgICAgICAgICJ0eXBlIjogIm1lcmNoYW50IiwKICAgICAgICAgICJ3ZWJzaXRlIjogImRvbWlub3MuY29tIgogICAgICAgIH0KICAgICAgXSwKICAgICAgImRhdGUiOiAiMjAyNC0xMC0yOCIsCiAgICAgICJkYXRldGltZSI6IG51bGwsCiAgICAgICJpc29fY3VycmVuY3lfY29kZSI6ICJVU0QiLAogICAgICAibG9jYXRpb24iOiB7CiAgICAgICAgImFkZHJlc3MiOiBudWxsLAogICAgICAgICJjaXR5IjogbnVsbCwKICAgICAgICAiY291bnRyeSI6IG51bGwsCiAgICAgICAgImxhdCI6IG51bGwsCiAgICAgICAgImxvbiI6IG51bGwsCiAgICAgICAgInBvc3RhbF9jb2RlIjogbnVsbCwKICAgICAgICAicmVnaW9uIjogIk5KIiwKICAgICAgICAic3RvcmVfbnVtYmVyIjogbnVsbAogICAgICB9LAogICAgICAibG9nb191cmwiOiAiaHR0cHM6Ly9wbGFpZC1tZXJjaGFudC1sb2dvcy5wbGFpZC5jb20vZG9taW5vc18yOTIucG5nIiwKICAgICAgIm1lcmNoYW50X2VudGl0eV9pZCI6ICJhNHI4V29nOUxiV3J3cVdwWFplSlpyOWI4clJiZ2F2Z2EwZGtNIiwKICAgICAgIm1lcmNoYW50X25hbWUiOiAiRG9taW5vJ3MiLAogICAgICAibmFtZSI6ICJEb21pbm8ncyIsCiAgICAgICJvcmlnaW5hbF9kZXNjcmlwdGlvbiI6ICIwMTIzIERvbWlub3MgUGl6emEgMDEyLTAxMi0wMTIzIE5KIiwKICAgICAgInBheW1lbnRfY2hhbm5lbCI6ICJvbmxpbmUiLAogICAgICAicGF5bWVudF9tZXRhIjogewogICAgICAgICJieV9vcmRlcl9vZiI6IG51bGwsCiAgICAgICAgInBheWVlIjogbnVsbCwKICAgICAgICAicGF5ZXIiOiBudWxsLAogICAgICAgICJwYXltZW50X21ldGhvZCI6IG51bGwsCiAgICAgICAgInBheW1lbnRfcHJvY2Vzc29yIjogbnVsbCwKICAgICAgICAicHBkX2lkIjogbnVsbCwKICAgICAgICAicmVhc29uIjogbnVsbCwKICAgICAgICAicmVmZXJlbmNlX251bWJlciI6IG51bGwKICAgICAgfSwKICAgICAgInBlbmRpbmciOiBmYWxzZSwKICAgICAgInBlbmRpbmdfdHJhbnNhY3Rpb25faWQiOiBudWxsLAogICAgICAicGVyc29uYWxfZmluYW5jZV9jYXRlZ29yeSI6IHsKICAgICAgICAiY29uZmlkZW5jZV9sZXZlbCI6ICJWRVJZX0hJR0giLAogICAgICAgICJkZXRhaWxlZCI6ICJGT09EX0FORF9EUklOS19GQVNUX0ZPT0QiLAogICAgICAgICJwcmltYXJ5IjogIkZPT0RfQU5EX0RSSU5LIgogICAgICB9LAogICAgICAicGVyc29uYWxfZmluYW5jZV9jYXRlZ29yeV9pY29uX3VybCI6ICJodHRwczovL3BsYWlkLWNhdGVnb3J5LWljb25zLnBsYWlkLmNvbS9QRkNfRk9PRF9BTkRfRFJJTksucG5nIiwKICAgICAgInRyYW5zYWN0aW9uX2NvZGUiOiBudWxsLAogICAgICAidHJhbnNhY3Rpb25faWQiOiAiblpMQVB6d0R5bGliUWR2YThqZUR0RzFlTUpvRVdidEFsV1F5TCIsCiAgICAgICJ0cmFuc2FjdGlvbl90eXBlIjogInBsYWNlIiwKICAgICAgInVub2ZmaWNpYWxfY3VycmVuY3lfY29kZSI6IG51bGwsCiAgICAgICJ3ZWJzaXRlIjogImRvbWlub3MuY29tIgogICAgfSwKICAgIHsKICAgICAgImFjY291bnRfaWQiOiAiWnZsQkw1ZU1QUXRuWERWNlFyUjlzUmVOVlZ6MVhBaWVhZ0RQeiIsCiAgICAgICJhY2NvdW50X293bmVyIjogbnVsbCwKICAgICAgImFtb3VudCI6IDE0LjYxLAogICAgICAiYXV0aG9yaXplZF9kYXRlIjogIjIwMjQtMTAtMjUiLAogICAgICAiYXV0aG9yaXplZF9kYXRldGltZSI6IG51bGwsCiAgICAgICJjYXRlZ29yeSI6IFsKICAgICAgICAiU2hvcHMiLAogICAgICAgICJCZWF1dHkgUHJvZHVjdHMiCiAgICAgIF0sCiAgICAgICJjYXRlZ29yeV9pZCI6ICIxOTAwNjAwMCIsCiAgICAgICJjaGVja19udW1iZXIiOiBudWxsLAogICAgICAiY291bnRlcnBhcnRpZXMiOiBbXSwKICAgICAgImRhdGUiOiAiMjAyNC0xMC0yOCIsCiAgICAgICJkYXRldGltZSI6IG51bGwsCiAgICAgICJpc29fY3VycmVuY3lfY29kZSI6ICJVU0QiLAogICAgICAibG9jYXRpb24iOiB7CiAgICAgICAgImFkZHJlc3MiOiBudWxsLAogICAgICAgICJjaXR5IjogbnVsbCwKICAgICAgICAiY291bnRyeSI6IG51bGwsCiAgICAgICAgImxhdCI6IG51bGwsCiAgICAgICAgImxvbiI6IG51bGwsCiAgICAgICAgInBvc3RhbF9jb2RlIjogbnVsbCwKICAgICAgICAicmVnaW9uIjogbnVsbCwKICAgICAgICAic3RvcmVfbnVtYmVyIjogbnVsbAogICAgICB9LAogICAgICAibG9nb191cmwiOiBudWxsLAogICAgICAibWVyY2hhbnRfZW50aXR5X2lkIjogbnVsbCwKICAgICAgIm1lcmNoYW50X25hbWUiOiBudWxsLAogICAgICAibmFtZSI6ICJVTFRBLkNPTSIsCiAgICAgICJvcmlnaW5hbF9kZXNjcmlwdGlvbiI6ICJVTFRBLkNPTSIsCiAgICAgICJwYXltZW50X2NoYW5uZWwiOiAib25saW5lIiwKICAgICAgInBheW1lbnRfbWV0YSI6IHsKICAgICAgICAiYnlfb3JkZXJfb2YiOiBudWxsLAogICAgICAgICJwYXllZSI6IG51bGwsCiAgICAgICAgInBheWVyIjogbnVsbCwKICAgICAgICAicGF5bWVudF9tZXRob2QiOiBudWxsLAogICAgICAgICJwYXltZW50X3Byb2Nlc3NvciI6IG51bGwsCiAgICAgICAgInBwZF9pZCI6IG51bGwsCiAgICAgICAgInJlYXNvbiI6IG51bGwsCiAgICAgICAgInJlZmVyZW5jZV9udW1iZXIiOiBudWxsCiAgICAgIH0sCiAgICAgICJwZW5kaW5nIjogZmFsc2UsCiAgICAgICJwZW5kaW5nX3RyYW5zYWN0aW9uX2lkIjogbnVsbCwKICAgICAgInBlcnNvbmFsX2ZpbmFuY2VfY2F0ZWdvcnkiOiB7CiAgICAgICAgImNvbmZpZGVuY2VfbGV2ZWwiOiAiTE9XIiwKICAgICAgICAiZGV0YWlsZWQiOiAiR0VORVJBTF9NRVJDSEFORElTRV9PVEhFUl9HRU5FUkFMX01FUkNIQU5ESVNFIiwKICAgICAgICAicHJpbWFyeSI6ICJHRU5FUkFMX01FUkNIQU5ESVNFIgogICAgICB9LAogICAgICAicGVyc29uYWxfZmluYW5jZV9jYXRlZ29yeV9pY29uX3VybCI6ICJodHRwczovL3BsYWlkLWNhdGVnb3J5LWljb25zLnBsYWlkLmNvbS9QRkNfR0VORVJBTF9NRVJDSEFORElTRS5wbmciLAogICAgICAidHJhbnNhY3Rpb25fY29kZSI6IG51bGwsCiAgICAgICJ0cmFuc2FjdGlvbl9pZCI6ICJiQmR5bEpnWExrdTFyeVZOUTlYZWh4UmVnMzRLRzd0bWJaNzRBIiwKICAgICAgInRyYW5zYWN0aW9uX3R5cGUiOiAicGxhY2UiLAogICAgICAidW5vZmZpY2lhbF9jdXJyZW5jeV9jb2RlIjogbnVsbCwKICAgICAgIndlYnNpdGUiOiBudWxsCiAgICB9LAogICAgewogICAgICAiYWNjb3VudF9pZCI6ICJadmxCTDVlTVBRdG5YRFY2UXJSOXNSZU5WVnoxWEFpZWFnRFB6IiwKICAgICAgImFjY291bnRfb3duZXIiOiBudWxsLAogICAgICAiYW1vdW50IjogMS45OCwKICAgICAgImF1dGhvcml6ZWRfZGF0ZSI6ICIyMDI0LTEwLTI4IiwKICAgICAgImF1dGhvcml6ZWRfZGF0ZXRpbWUiOiBudWxsLAogICAgICAiY2F0ZWdvcnkiOiBbCiAgICAgICAgIkZvb2QgYW5kIERyaW5rIiwKICAgICAgICAiUmVzdGF1cmFudHMiLAogICAgICAgICJGYXN0IEZvb2QiCiAgICAgIF0sCiAgICAgICJjYXRlZ29yeV9pZCI6ICIxMzAwNTAzMiIsCiAgICAgICJjaGVja19udW1iZXIiOiBudWxsLAogICAgICAiY291bnRlcnBhcnRpZXMiOiBbCiAgICAgICAgewogICAgICAgICAgImNvbmZpZGVuY2VfbGV2ZWwiOiAiVkVSWV9ISUdIIiwKICAgICAgICAgICJlbnRpdHlfaWQiOiAiTWV6d0V2ODJ3UVpFa25yUWt6ck83bktCVzBxWlhvNGVMOE5YTCIsCiAgICAgICAgICAibG9nb191cmwiOiAiaHR0cHM6Ly9wbGFpZC1tZXJjaGFudC1sb2dvcy5wbGFpZC5jb20vd2hhdGFidXJnZXJfMTExOC5wbmciLAogICAgICAgICAgIm5hbWUiOiAiV2hhdGFidXJnZXIiLAogICAgICAgICAgInBob25lX251bWJlciI6IG51bGwsCiAgICAgICAgICAidHlwZSI6ICJtZXJjaGFudCIsCiAgICAgICAgICAid2Vic2l0ZSI6ICJ3aGF0YWJ1cmdlci5jb20iCiAgICAgICAgfQogICAgICBdLAogICAgICAiZGF0ZSI6ICIyMDI0LTEwLTI4IiwKICAgICAgImRhdGV0aW1lIjogbnVsbCwKICAgICAgImlzb19jdXJyZW5jeV9jb2RlIjogIlVTRCIsCiAgICAgICJsb2NhdGlvbiI6IHsKICAgICAgICAiYWRkcmVzcyI6ICIxMTIxIFdhbGRyb24gUmQiLAogICAgICAgICJjaXR5IjogIkNvcnB1cyBDaHJpc3RpIiwKICAgICAgICAiY291bnRyeSI6IG51bGwsCiAgICAgICAgImxhdCI6IDI3LjY2NzYyNSwKICAgICAgICAibG9uIjogLTk3LjI4MjU0NywKICAgICAgICAicG9zdGFsX2NvZGUiOiAiNzg0MTgiLAogICAgICAgICJyZWdpb24iOiAiVFgiLAogICAgICAgICJzdG9yZV9udW1iZXIiOiBudWxsCiAgICAgIH0sCiAgICAgICJsb2dvX3VybCI6ICJodHRwczovL3BsYWlkLW1lcmNoYW50LWxvZ29zLnBsYWlkLmNvbS93aGF0YWJ1cmdlcl8xMTE4LnBuZyIsCiAgICAgICJtZXJjaGFudF9lbnRpdHlfaWQiOiAiTWV6d0V2ODJ3UVpFa25yUWt6ck83bktCVzBxWlhvNGVMOE5YTCIsCiAgICAgICJtZXJjaGFudF9uYW1lIjogIldoYXRhYnVyZ2VyIiwKICAgICAgIm5hbWUiOiAiV2hhdGFidXJnZXIiLAogICAgICAib3JpZ2luYWxfZGVzY3JpcHRpb24iOiAiV0hBVEFCVVJHRVIgMDEyMyIsCiAgICAgICJwYXltZW50X2NoYW5uZWwiOiAiaW4gc3RvcmUiLAogICAgICAicGF5bWVudF9tZXRhIjogewogICAgICAgICJieV9vcmRlcl9vZiI6IG51bGwsCiAgICAgICAgInBheWVlIjogbnVsbCwKICAgICAgICAicGF5ZXIiOiBudWxsLAogICAgICAgICJwYXltZW50X21ldGhvZCI6IG51bGwsCiAgICAgICAgInBheW1lbnRfcHJvY2Vzc29yIjogbnVsbCwKICAgICAgICAicHBkX2lkIjogbnVsbCwKICAgICAgICAicmVhc29uIjogbnVsbCwKICAgICAgICAicmVmZXJlbmNlX251bWJlciI6IG51bGwKICAgICAgfSwKICAgICAgInBlbmRpbmciOiBmYWxzZSwKICAgICAgInBlbmRpbmdfdHJhbnNhY3Rpb25faWQiOiBudWxsLAogICAgICAicGVyc29uYWxfZmluYW5jZV9jYXRlZ29yeSI6IHsKICAgICAgICAiY29uZmlkZW5jZV9sZXZlbCI6ICJWRVJZX0hJR0giLAogICAgICAgICJkZXRhaWxlZCI6ICJGT09EX0FORF9EUklOS19GQVNUX0ZPT0QiLAogICAgICAgICJwcmltYXJ5IjogIkZPT0RfQU5EX0RSSU5LIgogICAgICB9LAogICAgICAicGVyc29uYWxfZmluYW5jZV9jYXRlZ29yeV9pY29uX3VybCI6ICJodHRwczovL3BsYWlkLWNhdGVnb3J5LWljb25zLnBsYWlkLmNvbS9QRkNfRk9PRF9BTkRfRFJJTksucG5nIiwKICAgICAgInRyYW5zYWN0aW9uX2NvZGUiOiBudWxsLAogICAgICAidHJhbnNhY3Rpb25faWQiOiAibVExQU5rYkRtUmZiNHl2SjZucE10NkxtQmoxTnlFY2d5ZFh2cSIsCiAgICAgICJ0cmFuc2FjdGlvbl90eXBlIjogInBsYWNlIiwKICAgICAgInVub2ZmaWNpYWxfY3VycmVuY3lfY29kZSI6IG51bGwsCiAgICAgICJ3ZWJzaXRlIjogIndoYXRhYnVyZ2VyLmNvbSIKICAgIH0sCiAgICB7CiAgICAgICJhY2NvdW50X2lkIjogIlp2bEJMNWVNUFF0blhEVjZRclI5c1JlTlZWejFYQWllYWdEUHoiLAogICAgICAiYWNjb3VudF9vd25lciI6IG51bGwsCiAgICAgICJhbW91bnQiOiA5LjIsCiAgICAgICJhdXRob3JpemVkX2RhdGUiOiAiMjAyNC0xMC0yOCIsCiAgICAgICJhdXRob3JpemVkX2RhdGV0aW1lIjogbnVsbCwKICAgICAgImNhdGVnb3J5IjogWwogICAgICAgICJTaG9wcyIsCiAgICAgICAgIlN1cGVybWFya2V0cyBhbmQgR3JvY2VyaWVzIgogICAgICBdLAogICAgICAiY2F0ZWdvcnlfaWQiOiAiMTkwNDcwMDAiLAogICAgICAiY2hlY2tfbnVtYmVyIjogbnVsbCwKICAgICAgImNvdW50ZXJwYXJ0aWVzIjogWwogICAgICAgIHsKICAgICAgICAgICJjb25maWRlbmNlX2xldmVsIjogIkxPVyIsCiAgICAgICAgICAiZW50aXR5X2lkIjogbnVsbCwKICAgICAgICAgICJsb2dvX3VybCI6IG51bGwsCiAgICAgICAgICAibmFtZSI6ICJHcmlzdGVkZXMiLAogICAgICAgICAgInBob25lX251bWJlciI6IG51bGwsCiAgICAgICAgICAidHlwZSI6ICJtZXJjaGFudCIsCiAgICAgICAgICAid2Vic2l0ZSI6IG51bGwKICAgICAgICB9CiAgICAgIF0sCiAgICAgICJkYXRlIjogIjIwMjQtMTAtMjgiLAogICAgICAiZGF0ZXRpbWUiOiBudWxsLAogICAgICAiaXNvX2N1cnJlbmN5X2NvZGUiOiAiVVNEIiwKICAgICAgImxvY2F0aW9uIjogewogICAgICAgICJhZGRyZXNzIjogbnVsbCwKICAgICAgICAiY2l0eSI6IG51bGwsCiAgICAgICAgImNvdW50cnkiOiBudWxsLAogICAgICAgICJsYXQiOiBudWxsLAogICAgICAgICJsb24iOiBudWxsLAogICAgICAgICJwb3N0YWxfY29kZSI6IG51bGwsCiAgICAgICAgInJlZ2lvbiI6IG51bGwsCiAgICAgICAgInN0b3JlX251bWJlciI6ICIwMTIiCiAgICAgIH0sCiAgICAgICJsb2dvX3VybCI6IG51bGwsCiAgICAgICJtZXJjaGFudF9lbnRpdHlfaWQiOiBudWxsLAogICAgICAibWVyY2hhbnRfbmFtZSI6ICJHcmlzdGVkZXMiLAogICAgICAibmFtZSI6ICJHUklTVEVERVMgIyAwMTIiLAogICAgICAib3JpZ2luYWxfZGVzY3JpcHRpb24iOiAiR1JJU1RFREVTICMgMDEyIiwKICAgICAgInBheW1lbnRfY2hhbm5lbCI6ICJpbiBzdG9yZSIsCiAgICAgICJwYXltZW50X21ldGEiOiB7CiAgICAgICAgImJ5X29yZGVyX29mIjogbnVsbCwKICAgICAgICAicGF5ZWUiOiBudWxsLAogICAgICAgICJwYXllciI6IG51bGwsCiAgICAgICAgInBheW1lbnRfbWV0aG9kIjogbnVsbCwKICAgICAgICAicGF5bWVudF9wcm9jZXNzb3IiOiBudWxsLAogICAgICAgICJwcGRfaWQiOiBudWxsLAogICAgICAgICJyZWFzb24iOiBudWxsLAogICAgICAgICJyZWZlcmVuY2VfbnVtYmVyIjogbnVsbAogICAgICB9LAogICAgICAicGVuZGluZyI6IGZhbHNlLAogICAgICAicGVuZGluZ190cmFuc2FjdGlvbl9pZCI6IG51bGwsCiAgICAgICJwZXJzb25hbF9maW5hbmNlX2NhdGVnb3J5IjogewogICAgICAgICJjb25maWRlbmNlX2xldmVsIjogIkxPVyIsCiAgICAgICAgImRldGFpbGVkIjogIkZPT0RfQU5EX0RSSU5LX0dST0NFUklFUyIsCiAgICAgICAgInByaW1hcnkiOiAiRk9PRF9BTkRfRFJJTksiCiAgICAgIH0sCiAgICAgICJwZXJzb25hbF9maW5hbmNlX2NhdGVnb3J5X2ljb25fdXJsIjogImh0dHBzOi8vcGxhaWQtY2F0ZWdvcnktaWNvbnMucGxhaWQuY29tL1BGQ19GT09EX0FORF9EUklOSy5wbmciLAogICAgICAidHJhbnNhY3Rpb25fY29kZSI6IG51bGwsCiAgICAgICJ0cmFuc2FjdGlvbl9pZCI6ICJ5R21yZ2U1SzRORnBEUXdlQkw0eXVQTTM1cnhkWFppNDZYdzlFIiwKICAgICAgInRyYW5zYWN0aW9uX3R5cGUiOiAicGxhY2UiLAogICAgICAidW5vZmZpY2lhbF9jdXJyZW5jeV9jb2RlIjogbnVsbCwKICAgICAgIndlYnNpdGUiOiBudWxsCiAgICB9LAogICAgewogICAgICAiYWNjb3VudF9pZCI6ICJadmxCTDVlTVBRdG5YRFY2UXJSOXNSZU5WVnoxWEFpZWFnRFB6IiwKICAgICAgImFjY291bnRfb3duZXIiOiBudWxsLAogICAgICAiYW1vdW50IjogNzE0LjY1LAogICAgICAiYXV0aG9yaXplZF9kYXRlIjogIjIwMjQtMTAtMjUiLAogICAgICAiYXV0aG9yaXplZF9kYXRldGltZSI6IG51bGwsCiAgICAgICJjYXRlZ29yeSI6IFsKICAgICAgICAiU2hvcHMiLAogICAgICAgICJDbG90aGluZyBhbmQgQWNjZXNzb3JpZXMiLAogICAgICAgICJXb21lbidzIFN0b3JlIgogICAgICBdLAogICAgICAiY2F0ZWdvcnlfaWQiOiAiMTkwMTIwMDEiLAogICAgICAiY2hlY2tfbnVtYmVyIjogbnVsbCwKICAgICAgImNvdW50ZXJwYXJ0aWVzIjogW10sCiAgICAgICJkYXRlIjogIjIwMjQtMTAtMjciLAogICAgICAiZGF0ZXRpbWUiOiBudWxsLAogICAgICAiaXNvX2N1cnJlbmN5X2NvZGUiOiAiVVNEIiwKICAgICAgImxvY2F0aW9uIjogewogICAgICAgICJhZGRyZXNzIjogbnVsbCwKICAgICAgICAiY2l0eSI6IG51bGwsCiAgICAgICAgImNvdW50cnkiOiBudWxsLAogICAgICAgICJsYXQiOiBudWxsLAogICAgICAgICJsb24iOiBudWxsLAogICAgICAgICJwb3N0YWxfY29kZSI6IG51bGwsCiAgICAgICAgInJlZ2lvbiI6IG51bGwsCiAgICAgICAgInN0b3JlX251bWJlciI6IG51bGwKICAgICAgfSwKICAgICAgImxvZ29fdXJsIjogbnVsbCwKICAgICAgIm1lcmNoYW50X2VudGl0eV9pZCI6IG51bGwsCiAgICAgICJtZXJjaGFudF9uYW1lIjogbnVsbCwKICAgICAgIm5hbWUiOiAiQW50aHJvcG9sb2dpZSIsCiAgICAgICJvcmlnaW5hbF9kZXNjcmlwdGlvbiI6ICJBTlRIUk9QT0xPR0lFLkNPTSIsCiAgICAgICJwYXltZW50X2NoYW5uZWwiOiAib25saW5lIiwKICAgICAgInBheW1lbnRfbWV0YSI6IHsKICAgICAgICAiYnlfb3JkZXJfb2YiOiBudWxsLAogICAgICAgICJwYXllZSI6IG51bGwsCiAgICAgICAgInBheWVyIjogbnVsbCwKICAgICAgICAicGF5bWVudF9tZXRob2QiOiBudWxsLAogICAgICAgICJwYXltZW50X3Byb2Nlc3NvciI6IG51bGwsCiAgICAgICAgInBwZF9pZCI6IG51bGwsCiAgICAgICAgInJlYXNvbiI6IG51bGwsCiAgICAgICAgInJlZmVyZW5jZV9udW1iZXIiOiBudWxsCiAgICAgIH0sCiAgICAgICJwZW5kaW5nIjogZmFsc2UsCiAgICAgICJwZW5kaW5nX3RyYW5zYWN0aW9uX2lkIjogbnVsbCwKICAgICAgInBlcnNvbmFsX2ZpbmFuY2VfY2F0ZWdvcnkiOiB7CiAgICAgICAgImNvbmZpZGVuY2VfbGV2ZWwiOiAiTE9XIiwKICAgICAgICAiZGV0YWlsZWQiOiAiRU5URVJUQUlOTUVOVF9NVVNJQ19BTkRfQVVESU8iLAogICAgICAgICJwcmltYXJ5IjogIkVOVEVSVEFJTk1FTlQiCiAgICAgIH0sCiAgICAgICJwZXJzb25hbF9maW5hbmNlX2NhdGVnb3J5X2ljb25fdXJsIjogImh0dHBzOi8vcGxhaWQtY2F0ZWdvcnktaWNvbnMucGxhaWQuY29tL1BGQ19FTlRFUlRBSU5NRU5ULnBuZyIsCiAgICAgICJ0cmFuc2FjdGlvbl9jb2RlIjogbnVsbCwKICAgICAgInRyYW5zYWN0aW9uX2lkIjogIjlxMzZlQUs3UDFpcUdNUGJBMzR5VUFaVjdObUxvakk0eFFnTEEiLAogICAgICAidHJhbnNhY3Rpb25fdHlwZSI6ICJwbGFjZSIsCiAgICAgICJ1bm9mZmljaWFsX2N1cnJlbmN5X2NvZGUiOiBudWxsLAogICAgICAid2Vic2l0ZSI6IG51bGwKICAgIH0sCiAgICB7CiAgICAgICJhY2NvdW50X2lkIjogIlp2bEJMNWVNUFF0blhEVjZRclI5c1JlTlZWejFYQWllYWdEUHoiLAogICAgICAiYWNjb3VudF9vd25lciI6IG51bGwsCiAgICAgICJhbW91bnQiOiAxMS4wOSwKICAgICAgImF1dGhvcml6ZWRfZGF0ZSI6ICIyMDI0LTEwLTI2IiwKICAgICAgImF1dGhvcml6ZWRfZGF0ZXRpbWUiOiBudWxsLAogICAgICAiY2F0ZWdvcnkiOiBbCiAgICAgICAgIlNob3BzIiwKICAgICAgICAiSGFyZHdhcmUgU3RvcmUiCiAgICAgIF0sCiAgICAgICJjYXRlZ29yeV9pZCI6ICIxOTAzMDAwMCIsCiAgICAgICJjaGVja19udW1iZXIiOiBudWxsLAogICAgICAiY291bnRlcnBhcnRpZXMiOiBbCiAgICAgICAgewogICAgICAgICAgImNvbmZpZGVuY2VfbGV2ZWwiOiAiVkVSWV9ISUdIIiwKICAgICAgICAgICJlbnRpdHlfaWQiOiAia1Zhd3ZWNnAwUjI1Z0t3M3FicDRLcTdrRXpEZFk1Um5qVjdSSyIsCiAgICAgICAgICAibG9nb191cmwiOiAiaHR0cHM6Ly9wbGFpZC1tZXJjaGFudC1sb2dvcy5wbGFpZC5jb20vaG9tZV9kZXBvdF80OTEucG5nIiwKICAgICAgICAgICJuYW1lIjogIlRoZSBIb21lIERlcG90IiwKICAgICAgICAgICJwaG9uZV9udW1iZXIiOiBudWxsLAogICAgICAgICAgInR5cGUiOiAibWVyY2hhbnQiLAogICAgICAgICAgIndlYnNpdGUiOiAiaG9tZWRlcG90LmNvbSIKICAgICAgICB9CiAgICAgIF0sCiAgICAgICJkYXRlIjogIjIwMjQtMTAtMjciLAogICAgICAiZGF0ZXRpbWUiOiBudWxsLAogICAgICAiaXNvX2N1cnJlbmN5X2NvZGUiOiAiVVNEIiwKICAgICAgImxvY2F0aW9uIjogewogICAgICAgICJhZGRyZXNzIjogIjM4ODUgSm9uZXNib3JvIFJkIFNFIiwKICAgICAgICAiY2l0eSI6ICJBdGxhbnRhIiwKICAgICAgICAiY291bnRyeSI6IG51bGwsCiAgICAgICAgImxhdCI6IDMzLjY0ODcyNywKICAgICAgICAibG9uIjogLTg0LjM2Nzg0NCwKICAgICAgICAicG9zdGFsX2NvZGUiOiAiMzAzNTQiLAogICAgICAgICJyZWdpb24iOiAiR0EiLAogICAgICAgICJzdG9yZV9udW1iZXIiOiAiMDEyMyIKICAgICAgfSwKICAgICAgImxvZ29fdXJsIjogImh0dHBzOi8vcGxhaWQtbWVyY2hhbnQtbG9nb3MucGxhaWQuY29tL2hvbWVfZGVwb3RfNDkxLnBuZyIsCiAgICAgICJtZXJjaGFudF9lbnRpdHlfaWQiOiAia1Zhd3ZWNnAwUjI1Z0t3M3FicDRLcTdrRXpEZFk1Um5qVjdSSyIsCiAgICAgICJtZXJjaGFudF9uYW1lIjogIlRoZSBIb21lIERlcG90IiwKICAgICAgIm5hbWUiOiAiSG9tZSBEZXBvdCIsCiAgICAgICJvcmlnaW5hbF9kZXNjcmlwdGlvbiI6ICJUSEUgSE9NRSBERVBPVCAjMDEyMyAjLi4uMDEyMyIsCiAgICAgICJwYXltZW50X2NoYW5uZWwiOiAiaW4gc3RvcmUiLAogICAgICAicGF5bWVudF9tZXRhIjogewogICAgICAgICJieV9vcmRlcl9vZiI6IG51bGwsCiAgICAgICAgInBheWVlIjogbnVsbCwKICAgICAgICAicGF5ZXIiOiBudWxsLAogICAgICAgICJwYXltZW50X21ldGhvZCI6IG51bGwsCiAgICAgICAgInBheW1lbnRfcHJvY2Vzc29yIjogbnVsbCwKICAgICAgICAicHBkX2lkIjogbnVsbCwKICAgICAgICAicmVhc29uIjogbnVsbCwKICAgICAgICAicmVmZXJlbmNlX251bWJlciI6IG51bGwKICAgICAgfSwKICAgICAgInBlbmRpbmciOiBmYWxzZSwKICAgICAgInBlbmRpbmdfdHJhbnNhY3Rpb25faWQiOiBudWxsLAogICAgICAicGVyc29uYWxfZmluYW5jZV9jYXRlZ29yeSI6IHsKICAgICAgICAiY29uZmlkZW5jZV9sZXZlbCI6ICJWRVJZX0hJR0giLAogICAgICAgICJkZXRhaWxlZCI6ICJIT01FX0lNUFJPVkVNRU5UX0hBUkRXQVJFIiwKICAgICAgICAicHJpbWFyeSI6ICJIT01FX0lNUFJPVkVNRU5UIgogICAgICB9LAogICAgICAicGVyc29uYWxfZmluYW5jZV9jYXRlZ29yeV9pY29uX3VybCI6ICJodHRwczovL3BsYWlkLWNhdGVnb3J5LWljb25zLnBsYWlkLmNvbS9QRkNfSE9NRV9JTVBST1ZFTUVOVC5wbmciLAogICAgICAidHJhbnNhY3Rpb25fY29kZSI6IG51bGwsCiAgICAgICJ0cmFuc2FjdGlvbl9pZCI6ICJ2RUdsTFBBRHhkVDdyVnZNS294cHNib3pxM054a0dpcTZrMWpyIiwKICAgICAgInRyYW5zYWN0aW9uX3R5cGUiOiAicGxhY2UiLAogICAgICAidW5vZmZpY2lhbF9jdXJyZW5jeV9jb2RlIjogbnVsbCwKICAgICAgIndlYnNpdGUiOiAiaG9tZWRlcG90LmNvbSIKICAgIH0sCiAgICB7CiAgICAgICJhY2NvdW50X2lkIjogIlp2bEJMNWVNUFF0blhEVjZRclI5c1JlTlZWejFYQWllYWdEUHoiLAogICAgICAiYWNjb3VudF9vd25lciI6IG51bGwsCiAgICAgICJhbW91bnQiOiA5Ljk0LAogICAgICAiYXV0aG9yaXplZF9kYXRlIjogIjIwMjQtMTAtMjgiLAogICAgICAiYXV0aG9yaXplZF9kYXRldGltZSI6IG51bGwsCiAgICAgICJjYXRlZ29yeSI6IFsKICAgICAgICAiU2VydmljZSIsCiAgICAgICAgIlNoaXBwaW5nIGFuZCBGcmVpZ2h0IgogICAgICBdLAogICAgICAiY2F0ZWdvcnlfaWQiOiAiMTgwNTgwMDAiLAogICAgICAiY2hlY2tfbnVtYmVyIjogbnVsbCwKICAgICAgImNvdW50ZXJwYXJ0aWVzIjogWwogICAgICAgIHsKICAgICAgICAgICJjb25maWRlbmNlX2xldmVsIjogIlZFUllfSElHSCIsCiAgICAgICAgICAiZW50aXR5X2lkIjogIjg3QkU0Nm8wVlhwWjFEWk1tQkJuQWU3cTJ3QUtibjNrWkpacTIiLAogICAgICAgICAgImxvZ29fdXJsIjogImh0dHBzOi8vcGxhaWQtbWVyY2hhbnQtbG9nb3MucGxhaWQuY29tL2ZlZGV4XzM2NS5wbmciLAogICAgICAgICAgIm5hbWUiOiAiRmVkRXgiLAogICAgICAgICAgInBob25lX251bWJlciI6IG51bGwsCiAgICAgICAgICAidHlwZSI6ICJtZXJjaGFudCIsCiAgICAgICAgICAid2Vic2l0ZSI6ICJmZWRleC5jb20iCiAgICAgICAgfQogICAgICBdLAogICAgICAiZGF0ZSI6ICIyMDI0LTExLTAxIiwKICAgICAgImRhdGV0aW1lIjogbnVsbCwKICAgICAgImlzb19jdXJyZW5jeV9jb2RlIjogIlVTRCIsCiAgICAgICJsb2NhdGlvbiI6IHsKICAgICAgICAiYWRkcmVzcyI6IG51bGwsCiAgICAgICAgImNpdHkiOiBudWxsLAogICAgICAgICJjb3VudHJ5IjogbnVsbCwKICAgICAgICAibGF0IjogbnVsbCwKICAgICAgICAibG9uIjogbnVsbCwKICAgICAgICAicG9zdGFsX2NvZGUiOiBudWxsLAogICAgICAgICJyZWdpb24iOiBudWxsLAogICAgICAgICJzdG9yZV9udW1iZXIiOiBudWxsCiAgICAgIH0sCiAgICAgICJsb2dvX3VybCI6ICJodHRwczovL3BsYWlkLW1lcmNoYW50LWxvZ29zLnBsYWlkLmNvbS9mZWRleF8zNjUucG5nIiwKICAgICAgIm1lcmNoYW50X2VudGl0eV9pZCI6ICI4N0JFNDZvMFZYcFoxRFpNbUJCbkFlN3Eyd0FLYm4za1pKWnEyIiwKICAgICAgIm1lcmNoYW50X25hbWUiOiAiRmVkRXgiLAogICAgICAibmFtZSI6ICJGZWRFeCIsCiAgICAgICJvcmlnaW5hbF9kZXNjcmlwdGlvbiI6ICJGRURFWE9GRklDRSAgIDAxMjM0NTY3IiwKICAgICAgInBheW1lbnRfY2hhbm5lbCI6ICJpbiBzdG9yZSIsCiAgICAgICJwYXltZW50X21ldGEiOiB7CiAgICAgICAgImJ5X29yZGVyX29mIjogbnVsbCwKICAgICAgICAicGF5ZWUiOiBudWxsLAogICAgICAgICJwYXllciI6IG51bGwsCiAgICAgICAgInBheW1lbnRfbWV0aG9kIjogbnVsbCwKICAgICAgICAicGF5bWVudF9wcm9jZXNzb3IiOiBudWxsLAogICAgICAgICJwcGRfaWQiOiBudWxsLAogICAgICAgICJyZWFzb24iOiBudWxsLAogICAgICAgICJyZWZlcmVuY2VfbnVtYmVyIjogbnVsbAogICAgICB9LAogICAgICAicGVuZGluZyI6IGZhbHNlLAogICAgICAicGVuZGluZ190cmFuc2FjdGlvbl9pZCI6IG51bGwsCiAgICAgICJwZXJzb25hbF9maW5hbmNlX2NhdGVnb3J5IjogewogICAgICAgICJjb25maWRlbmNlX2xldmVsIjogIkhJR0giLAogICAgICAgICJkZXRhaWxlZCI6ICJHRU5FUkFMX1NFUlZJQ0VTX1BPU1RBR0VfQU5EX1NISVBQSU5HIiwKICAgICAgICAicHJpbWFyeSI6ICJHRU5FUkFMX1NFUlZJQ0VTIgogICAgICB9LAogICAgICAicGVyc29uYWxfZmluYW5jZV9jYXRlZ29yeV9pY29uX3VybCI6ICJodHRwczovL3BsYWlkLWNhdGVnb3J5LWljb25zLnBsYWlkLmNvbS9QRkNfR0VORVJBTF9TRVJWSUNFUy5wbmciLAogICAgICAidHJhbnNhY3Rpb25fY29kZSI6IG51bGwsCiAgICAgICJ0cmFuc2FjdGlvbl9pZCI6ICJSV21HUDVvTXpkdHJlUm9qZG05emk1d0V2bXFOVnBIYXBiQUtCIiwKICAgICAgInRyYW5zYWN0aW9uX3R5cGUiOiAicGxhY2UiLAogICAgICAidW5vZmZpY2lhbF9jdXJyZW5jeV9jb2RlIjogbnVsbCwKICAgICAgIndlYnNpdGUiOiAiZmVkZXguY29tIgogICAgfSwKICAgIHsKICAgICAgImFjY291bnRfaWQiOiAiWnZsQkw1ZU1QUXRuWERWNlFyUjlzUmVOVlZ6MVhBaWVhZ0RQeiIsCiAgICAgICJhY2NvdW50X293bmVyIjogbnVsbCwKICAgICAgImFtb3VudCI6IDUuNDIsCiAgICAgICJhdXRob3JpemVkX2RhdGUiOiAiMjAyNC0xMS0wMSIsCiAgICAgICJhdXRob3JpemVkX2RhdGV0aW1lIjogbnVsbCwKICAgICAgImNhdGVnb3J5IjogWwogICAgICAgICJGb29kIGFuZCBEcmluayIsCiAgICAgICAgIlJlc3RhdXJhbnRzIiwKICAgICAgICAiRmFzdCBGb29kIgogICAgICBdLAogICAgICAiY2F0ZWdvcnlfaWQiOiAiMTMwMDUwMzIiLAogICAgICAiY2hlY2tfbnVtYmVyIjogbnVsbCwKICAgICAgImNvdW50ZXJwYXJ0aWVzIjogWwogICAgICAgIHsKICAgICAgICAgICJjb25maWRlbmNlX2xldmVsIjogIlZFUllfSElHSCIsCiAgICAgICAgICAiZW50aXR5X2lkIjogIkV3MDB5MHJEWG43bnZ2WGtyV2UzUlE5WThlMUJ3NnBxM3B3WUoiLAogICAgICAgICAgImxvZ29fdXJsIjogImh0dHBzOi8vcGxhaWQtbWVyY2hhbnQtbG9nb3MucGxhaWQuY29tL3BhbmRhX2V4cHJlc3NfNzE0LnBuZyIsCiAgICAgICAgICAibmFtZSI6ICJQYW5kYSBFeHByZXNzIiwKICAgICAgICAgICJwaG9uZV9udW1iZXIiOiBudWxsLAogICAgICAgICAgInR5cGUiOiAibWVyY2hhbnQiLAogICAgICAgICAgIndlYnNpdGUiOiAicGFuZGFleHByZXNzLmNvbSIKICAgICAgICB9CiAgICAgIF0sCiAgICAgICJkYXRlIjogIjIwMjQtMTEtMDEiLAogICAgICAiZGF0ZXRpbWUiOiBudWxsLAogICAgICAiaXNvX2N1cnJlbmN5X2NvZGUiOiAiVVNEIiwKICAgICAgImxvY2F0aW9uIjogewogICAgICAgICJhZGRyZXNzIjogbnVsbCwKICAgICAgICAiY2l0eSI6IG51bGwsCiAgICAgICAgImNvdW50cnkiOiBudWxsLAogICAgICAgICJsYXQiOiBudWxsLAogICAgICAgICJsb24iOiBudWxsLAogICAgICAgICJwb3N0YWxfY29kZSI6IG51bGwsCiAgICAgICAgInJlZ2lvbiI6IG51bGwsCiAgICAgICAgInN0b3JlX251bWJlciI6IG51bGwKICAgICAgfSwKICAgICAgImxvZ29fdXJsIjogImh0dHBzOi8vcGxhaWQtbWVyY2hhbnQtbG9nb3MucGxhaWQuY29tL3BhbmRhX2V4cHJlc3NfNzE0LnBuZyIsCiAgICAgICJtZXJjaGFudF9lbnRpdHlfaWQiOiAiRXcwMHkwckRYbjdudnZYa3JXZTNSUTlZOGUxQnc2cHEzcHdZSiIsCiAgICAgICJtZXJjaGFudF9uYW1lIjogIlBhbmRhIEV4cHJlc3MiLAogICAgICAibmFtZSI6ICJQYW5kYSBFeHByZXNzIiwKICAgICAgIm9yaWdpbmFsX2Rlc2NyaXB0aW9uIjogIlBBTkRBIEVYUFJFU1MgMDEyMyIsCiAgICAgICJwYXltZW50X2NoYW5uZWwiOiAiaW4gc3RvcmUiLAogICAgICAicGF5bWVudF9tZXRhIjogewogICAgICAgICJieV9vcmRlcl9vZiI6IG51bGwsCiAgICAgICAgInBheWVlIjogbnVsbCwKICAgICAgICAicGF5ZXIiOiBudWxsLAogICAgICAgICJwYXltZW50X21ldGhvZCI6IG51bGwsCiAgICAgICAgInBheW1lbnRfcHJvY2Vzc29yIjogbnVsbCwKICAgICAgICAicHBkX2lkIjogbnVsbCwKICAgICAgICAicmVhc29uIjogbnVsbCwKICAgICAgICAicmVmZXJlbmNlX251bWJlciI6IG51bGwKICAgICAgfSwKICAgICAgInBlbmRpbmciOiBmYWxzZSwKICAgICAgInBlbmRpbmdfdHJhbnNhY3Rpb25faWQiOiBudWxsLAogICAgICAicGVyc29uYWxfZmluYW5jZV9jYXRlZ29yeSI6IHsKICAgICAgICAiY29uZmlkZW5jZV9sZXZlbCI6ICJWRVJZX0hJR0giLAogICAgICAgICJkZXRhaWxlZCI6ICJGT09EX0FORF9EUklOS19GQVNUX0ZPT0QiLAogICAgICAgICJwcmltYXJ5IjogIkZPT0RfQU5EX0RSSU5LIgogICAgICB9LAogICAgICAicGVyc29uYWxfZmluYW5jZV9jYXRlZ29yeV9pY29uX3VybCI6ICJodHRwczovL3BsYWlkLWNhdGVnb3J5LWljb25zLnBsYWlkLmNvbS9QRkNfRk9PRF9BTkRfRFJJTksucG5nIiwKICAgICAgInRyYW5zYWN0aW9uX2NvZGUiOiBudWxsLAogICAgICAidHJhbnNhY3Rpb25faWQiOiAiNlJydlA4ZDZhUXQ4UmRhRUF3V2tGYnlENmxSV2pMaThEWGVXcCIsCiAgICAgICJ0cmFuc2FjdGlvbl90eXBlIjogInBsYWNlIiwKICAgICAgInVub2ZmaWNpYWxfY3VycmVuY3lfY29kZSI6IG51bGwsCiAgICAgICJ3ZWJzaXRlIjogInBhbmRhZXhwcmVzcy5jb20iCiAgICB9LAogICAgewogICAgICAiYWNjb3VudF9pZCI6ICJadmxCTDVlTVBRdG5YRFY2UXJSOXNSZU5WVnoxWEFpZWFnRFB6IiwKICAgICAgImFjY291bnRfb3duZXIiOiBudWxsLAogICAgICAiYW1vdW50IjogMTMuMTIsCiAgICAgICJhdXRob3JpemVkX2RhdGUiOiAiMjAyNC0xMS0wMSIsCiAgICAgICJhdXRob3JpemVkX2RhdGV0aW1lIjogbnVsbCwKICAgICAgImNhdGVnb3J5IjogWwogICAgICAgICJGb29kIGFuZCBEcmluayIsCiAgICAgICAgIlJlc3RhdXJhbnRzIiwKICAgICAgICAiRmFzdCBGb29kIgogICAgICBdLAogICAgICAiY2F0ZWdvcnlfaWQiOiAiMTMwMDUwMzIiLAogICAgICAiY2hlY2tfbnVtYmVyIjogbnVsbCwKICAgICAgImNvdW50ZXJwYXJ0aWVzIjogWwogICAgICAgIHsKICAgICAgICAgICJjb25maWRlbmNlX2xldmVsIjogIlZFUllfSElHSCIsCiAgICAgICAgICAiZW50aXR5X2lkIjogIkJPMk9BZzducHJuSzZXN3JCdmFyS1hrTkoxcUpXWVJrN0F2cVoiLAogICAgICAgICAgImxvZ29fdXJsIjogImh0dHBzOi8vcGxhaWQtbWVyY2hhbnQtbG9nb3MucGxhaWQuY29tL2FyYnlzXzY4LnBuZyIsCiAgICAgICAgICAibmFtZSI6ICJBcmJ5J3MiLAogICAgICAgICAgInBob25lX251bWJlciI6IG51bGwsCiAgICAgICAgICAidHlwZSI6ICJtZXJjaGFudCIsCiAgICAgICAgICAid2Vic2l0ZSI6ICJhcmJ5cy5jb20iCiAgICAgICAgfQogICAgICBdLAogICAgICAiZGF0ZSI6ICIyMDI0LTExLTAxIiwKICAgICAgImRhdGV0aW1lIjogbnVsbCwKICAgICAgImlzb19jdXJyZW5jeV9jb2RlIjogIlVTRCIsCiAgICAgICJsb2NhdGlvbiI6IHsKICAgICAgICAiYWRkcmVzcyI6IG51bGwsCiAgICAgICAgImNpdHkiOiBudWxsLAogICAgICAgICJjb3VudHJ5IjogbnVsbCwKICAgICAgICAibGF0IjogbnVsbCwKICAgICAgICAibG9uIjogbnVsbCwKICAgICAgICAicG9zdGFsX2NvZGUiOiBudWxsLAogICAgICAgICJyZWdpb24iOiBudWxsLAogICAgICAgICJzdG9yZV9udW1iZXIiOiBudWxsCiAgICAgIH0sCiAgICAgICJsb2dvX3VybCI6ICJodHRwczovL3BsYWlkLW1lcmNoYW50LWxvZ29zLnBsYWlkLmNvbS9hcmJ5c182OC5wbmciLAogICAgICAibWVyY2hhbnRfZW50aXR5X2lkIjogIkJPMk9BZzducHJuSzZXN3JCdmFyS1hrTkoxcUpXWVJrN0F2cVoiLAogICAgICAibWVyY2hhbnRfbmFtZSI6ICJBcmJ5J3MiLAogICAgICAibmFtZSI6ICJBcmJ5J3MiLAogICAgICAib3JpZ2luYWxfZGVzY3JpcHRpb24iOiAiQXJieSdzIiwKICAgICAgInBheW1lbnRfY2hhbm5lbCI6ICJpbiBzdG9yZSIsCiAgICAgICJwYXltZW50X21ldGEiOiB7CiAgICAgICAgImJ5X29yZGVyX29mIjogbnVsbCwKICAgICAgICAicGF5ZWUiOiBudWxsLAogICAgICAgICJwYXllciI6IG51bGwsCiAgICAgICAgInBheW1lbnRfbWV0aG9kIjogbnVsbCwKICAgICAgICAicGF5bWVudF9wcm9jZXNzb3IiOiBudWxsLAogICAgICAgICJwcGRfaWQiOiBudWxsLAogICAgICAgICJyZWFzb24iOiBudWxsLAogICAgICAgICJyZWZlcmVuY2VfbnVtYmVyIjogbnVsbAogICAgICB9LAogICAgICAicGVuZGluZyI6IGZhbHNlLAogICAgICAicGVuZGluZ190cmFuc2FjdGlvbl9pZCI6IG51bGwsCiAgICAgICJwZXJzb25hbF9maW5hbmNlX2NhdGVnb3J5IjogewogICAgICAgICJjb25maWRlbmNlX2xldmVsIjogIlZFUllfSElHSCIsCiAgICAgICAgImRldGFpbGVkIjogIkZPT0RfQU5EX0RSSU5LX0ZBU1RfRk9PRCIsCiAgICAgICAgInByaW1hcnkiOiAiRk9PRF9BTkRfRFJJTksiCiAgICAgIH0sCiAgICAgICJwZXJzb25hbF9maW5hbmNlX2NhdGVnb3J5X2ljb25fdXJsIjogImh0dHBzOi8vcGxhaWQtY2F0ZWdvcnktaWNvbnMucGxhaWQuY29tL1BGQ19GT09EX0FORF9EUklOSy5wbmciLAogICAgICAidHJhbnNhY3Rpb25fY29kZSI6IG51bGwsCiAgICAgICJ0cmFuc2FjdGlvbl9pZCI6ICJYeVhyTTVCRzQ3Zm1QcEdENzY5NFU2cVB5Slg4ZGVjYktuTDRxIiwKICAgICAgInRyYW5zYWN0aW9uX3R5cGUiOiAicGxhY2UiLAogICAgICAidW5vZmZpY2lhbF9jdXJyZW5jeV9jb2RlIjogbnVsbCwKICAgICAgIndlYnNpdGUiOiAiYXJieXMuY29tIgogICAgfSwKICAgIHsKICAgICAgImFjY291bnRfaWQiOiAiWnZsQkw1ZU1QUXRuWERWNlFyUjlzUmVOVlZ6MVhBaWVhZ0RQeiIsCiAgICAgICJhY2NvdW50X293bmVyIjogbnVsbCwKICAgICAgImFtb3VudCI6IDguMTksCiAgICAgICJhdXRob3JpemVkX2RhdGUiOiAiMjAyNC0xMS0wMSIsCiAgICAgICJhdXRob3JpemVkX2RhdGV0aW1lIjogbnVsbCwKICAgICAgImNhdGVnb3J5IjogWwogICAgICAgICJTZXJ2aWNlIiwKICAgICAgICAiRW50ZXJ0YWlubWVudCIKICAgICAgXSwKICAgICAgImNhdGVnb3J5X2lkIjogIjE4MDE4MDAwIiwKICAgICAgImNoZWNrX251bWJlciI6IG51bGwsCiAgICAgICJjb3VudGVycGFydGllcyI6IFsKICAgICAgICB7CiAgICAgICAgICAiY29uZmlkZW5jZV9sZXZlbCI6ICJWRVJZX0hJR0giLAogICAgICAgICAgImVudGl0eV9pZCI6ICIxRDYwMDRyb2JFb2pNTlh3S3BZZ3JSWTZEckx3emVhNThBYVlFIiwKICAgICAgICAgICJsb2dvX3VybCI6ICJodHRwczovL3BsYWlkLW1lcmNoYW50LWxvZ29zLnBsYWlkLmNvbS9taWNyb3NvZnRfeGJveF82MzcucG5nIiwKICAgICAgICAgICJuYW1lIjogIk1pY3Jvc29mdCBYYm94IiwKICAgICAgICAgICJwaG9uZV9udW1iZXIiOiBudWxsLAogICAgICAgICAgInR5cGUiOiAibWVyY2hhbnQiLAogICAgICAgICAgIndlYnNpdGUiOiAieGJveC5jb20iCiAgICAgICAgfQogICAgICBdLAogICAgICAiZGF0ZSI6ICIyMDI0LTExLTAxIiwKICAgICAgImRhdGV0aW1lIjogbnVsbCwKICAgICAgImlzb19jdXJyZW5jeV9jb2RlIjogIlVTRCIsCiAgICAgICJsb2NhdGlvbiI6IHsKICAgICAgICAiYWRkcmVzcyI6IG51bGwsCiAgICAgICAgImNpdHkiOiBudWxsLAogICAgICAgICJjb3VudHJ5IjogbnVsbCwKICAgICAgICAibGF0IjogbnVsbCwKICAgICAgICAibG9uIjogbnVsbCwKICAgICAgICAicG9zdGFsX2NvZGUiOiBudWxsLAogICAgICAgICJyZWdpb24iOiAiV0EiLAogICAgICAgICJzdG9yZV9udW1iZXIiOiBudWxsCiAgICAgIH0sCiAgICAgICJsb2dvX3VybCI6ICJodHRwczovL3BsYWlkLW1lcmNoYW50LWxvZ29zLnBsYWlkLmNvbS9taWNyb3NvZnRfeGJveF82MzcucG5nIiwKICAgICAgIm1lcmNoYW50X2VudGl0eV9pZCI6ICIxRDYwMDRyb2JFb2pNTlh3S3BZZ3JSWTZEckx3emVhNThBYVlFIiwKICAgICAgIm1lcmNoYW50X25hbWUiOiAiTWljcm9zb2Z0IFhib3giLAogICAgICAibmFtZSI6ICJNSUNST1NPRlQqWEJPWCBHQU1FIFBBU1MgTVNCSUxMLklORk8iLAogICAgICAib3JpZ2luYWxfZGVzY3JpcHRpb24iOiAiTUlDUk9TT0ZUKlhCT1ggR0FNRSBQQVNTICBNU0JJTEwuSU5GTyBXQSIsCiAgICAgICJwYXltZW50X2NoYW5uZWwiOiAib25saW5lIiwKICAgICAgInBheW1lbnRfbWV0YSI6IHsKICAgICAgICAiYnlfb3JkZXJfb2YiOiBudWxsLAogICAgICAgICJwYXllZSI6IG51bGwsCiAgICAgICAgInBheWVyIjogbnVsbCwKICAgICAgICAicGF5bWVudF9tZXRob2QiOiBudWxsLAogICAgICAgICJwYXltZW50X3Byb2Nlc3NvciI6IG51bGwsCiAgICAgICAgInBwZF9pZCI6IG51bGwsCiAgICAgICAgInJlYXNvbiI6IG51bGwsCiAgICAgICAgInJlZmVyZW5jZV9udW1iZXIiOiBudWxsCiAgICAgIH0sCiAgICAgICJwZW5kaW5nIjogZmFsc2UsCiAgICAgICJwZW5kaW5nX3RyYW5zYWN0aW9uX2lkIjogbnVsbCwKICAgICAgInBlcnNvbmFsX2ZpbmFuY2VfY2F0ZWdvcnkiOiB7CiAgICAgICAgImNvbmZpZGVuY2VfbGV2ZWwiOiAiVkVSWV9ISUdIIiwKICAgICAgICAiZGV0YWlsZWQiOiAiRU5URVJUQUlOTUVOVF9WSURFT19HQU1FUyIsCiAgICAgICAgInByaW1hcnkiOiAiRU5URVJUQUlOTUVOVCIKICAgICAgfSwKICAgICAgInBlcnNvbmFsX2ZpbmFuY2VfY2F0ZWdvcnlfaWNvbl91cmwiOiAiaHR0cHM6Ly9wbGFpZC1jYXRlZ29yeS1pY29ucy5wbGFpZC5jb20vUEZDX0VOVEVSVEFJTk1FTlQucG5nIiwKICAgICAgInRyYW5zYWN0aW9uX2NvZGUiOiBudWxsLAogICAgICAidHJhbnNhY3Rpb25faWQiOiAiRFBaQlc1VnFnYkZQNzY0emJwcW1TdmpXSkRQZzNidDNXYUpnYSIsCiAgICAgICJ0cmFuc2FjdGlvbl90eXBlIjogInBsYWNlIiwKICAgICAgInVub2ZmaWNpYWxfY3VycmVuY3lfY29kZSI6IG51bGwsCiAgICAgICJ3ZWJzaXRlIjogInhib3guY29tIgogICAgfSwKICAgIHsKICAgICAgImFjY291bnRfaWQiOiAiWnZsQkw1ZU1QUXRuWERWNlFyUjlzUmVOVlZ6MVhBaWVhZ0RQeiIsCiAgICAgICJhY2NvdW50X293bmVyIjogbnVsbCwKICAgICAgImFtb3VudCI6IDE1OS4xNiwKICAgICAgImF1dGhvcml6ZWRfZGF0ZSI6ICIyMDI0LTExLTAxIiwKICAgICAgImF1dGhvcml6ZWRfZGF0ZXRpbWUiOiBudWxsLAogICAgICAiY2F0ZWdvcnkiOiBbCiAgICAgICAgIlNob3BzIiwKICAgICAgICAiQ2xvdGhpbmcgYW5kIEFjY2Vzc29yaWVzIgogICAgICBdLAogICAgICAiY2F0ZWdvcnlfaWQiOiAiMTkwMTIwMDAiLAogICAgICAiY2hlY2tfbnVtYmVyIjogbnVsbCwKICAgICAgImNvdW50ZXJwYXJ0aWVzIjogWwogICAgICAgIHsKICAgICAgICAgICJjb25maWRlbmNlX2xldmVsIjogIlZFUllfSElHSCIsCiAgICAgICAgICAiZW50aXR5X2lkIjogIjV3OURRWEE4Z3pOeWJvWGVXT3BPT3Y3NDhiMkJablphTW5yQTEiLAogICAgICAgICAgImxvZ29fdXJsIjogImh0dHBzOi8vcGxhaWQtbWVyY2hhbnQtbG9nb3MucGxhaWQuY29tL2FkaWRhc18xNi5wbmciLAogICAgICAgICAgIm5hbWUiOiAiQWRpZGFzIiwKICAgICAgICAgICJwaG9uZV9udW1iZXIiOiBudWxsLAogICAgICAgICAgInR5cGUiOiAibWVyY2hhbnQiLAogICAgICAgICAgIndlYnNpdGUiOiAiYWRpZGFzLmNvbSIKICAgICAgICB9CiAgICAgIF0sCiAgICAgICJkYXRlIjogIjIwMjQtMTEtMDEiLAogICAgICAiZGF0ZXRpbWUiOiBudWxsLAogICAgICAiaXNvX2N1cnJlbmN5X2NvZGUiOiAiVVNEIiwKICAgICAgImxvY2F0aW9uIjogewogICAgICAgICJhZGRyZXNzIjogbnVsbCwKICAgICAgICAiY2l0eSI6IG51bGwsCiAgICAgICAgImNvdW50cnkiOiBudWxsLAogICAgICAgICJsYXQiOiBudWxsLAogICAgICAgICJsb24iOiBudWxsLAogICAgICAgICJwb3N0YWxfY29kZSI6IG51bGwsCiAgICAgICAgInJlZ2lvbiI6IG51bGwsCiAgICAgICAgInN0b3JlX251bWJlciI6IG51bGwKICAgICAgfSwKICAgICAgImxvZ29fdXJsIjogImh0dHBzOi8vcGxhaWQtbWVyY2hhbnQtbG9nb3MucGxhaWQuY29tL2FkaWRhc18xNi5wbmciLAogICAgICAibWVyY2hhbnRfZW50aXR5X2lkIjogIjV3OURRWEE4Z3pOeWJvWGVXT3BPT3Y3NDhiMkJablphTW5yQTEiLAogICAgICAibWVyY2hhbnRfbmFtZSI6ICJBZGlkYXMiLAogICAgICAibmFtZSI6ICJBRElEQVMgT05MSU5FIFNUT1JFIE9SIiwKICAgICAgIm9yaWdpbmFsX2Rlc2NyaXB0aW9uIjogIkFESURBUyBPTkxJTkUgU1RPUkUgMDEyLTAxMi0wMTIzIE9SIiwKICAgICAgInBheW1lbnRfY2hhbm5lbCI6ICJvbmxpbmUiLAogICAgICAicGF5bWVudF9tZXRhIjogewogICAgICAgICJieV9vcmRlcl9vZiI6IG51bGwsCiAgICAgICAgInBheWVlIjogbnVsbCwKICAgICAgICAicGF5ZXIiOiBudWxsLAogICAgICAgICJwYXltZW50X21ldGhvZCI6IG51bGwsCiAgICAgICAgInBheW1lbnRfcHJvY2Vzc29yIjogbnVsbCwKICAgICAgICAicHBkX2lkIjogbnVsbCwKICAgICAgICAicmVhc29uIjogbnVsbCwKICAgICAgICAicmVmZXJlbmNlX251bWJlciI6IG51bGwKICAgICAgfSwKICAgICAgInBlbmRpbmciOiBmYWxzZSwKICAgICAgInBlbmRpbmdfdHJhbnNhY3Rpb25faWQiOiBudWxsLAogICAgICAicGVyc29uYWxfZmluYW5jZV9jYXRlZ29yeSI6IHsKICAgICAgICAiY29uZmlkZW5jZV9sZXZlbCI6ICJWRVJZX0hJR0giLAogICAgICAgICJkZXRhaWxlZCI6ICJHRU5FUkFMX01FUkNIQU5ESVNFX1NQT1JUSU5HX0dPT0RTIiwKICAgICAgICAicHJpbWFyeSI6ICJHRU5FUkFMX01FUkNIQU5ESVNFIgogICAgICB9LAogICAgICAicGVyc29uYWxfZmluYW5jZV9jYXRlZ29yeV9pY29uX3VybCI6ICJodHRwczovL3BsYWlkLWNhdGVnb3J5LWljb25zLnBsYWlkLmNvbS9QRkNfR0VORVJBTF9NRVJDSEFORElTRS5wbmciLAogICAgICAidHJhbnNhY3Rpb25fY29kZSI6IG51bGwsCiAgICAgICJ0cmFuc2FjdGlvbl9pZCI6ICJWYlJxUTVyTGRQY242UnFWUDRRZHNYSkcxOFZRM0V0OWdQRTRkIiwKICAgICAgInRyYW5zYWN0aW9uX3R5cGUiOiAicGxhY2UiLAogICAgICAidW5vZmZpY2lhbF9jdXJyZW5jeV9jb2RlIjogbnVsbCwKICAgICAgIndlYnNpdGUiOiAiYWRpZGFzLmNvbSIKICAgIH0sCiAgICB7CiAgICAgICJhY2NvdW50X2lkIjogIlp2bEJMNWVNUFF0blhEVjZRclI5c1JlTlZWejFYQWllYWdEUHoiLAogICAgICAiYWNjb3VudF9vd25lciI6IG51bGwsCiAgICAgICJhbW91bnQiOiAyNS43OCwKICAgICAgImF1dGhvcml6ZWRfZGF0ZSI6ICIyMDI0LTExLTAxIiwKICAgICAgImF1dGhvcml6ZWRfZGF0ZXRpbWUiOiBudWxsLAogICAgICAiY2F0ZWdvcnkiOiBbCiAgICAgICAgIlNob3BzIiwKICAgICAgICAiU3VwZXJtYXJrZXRzIGFuZCBHcm9jZXJpZXMiCiAgICAgIF0sCiAgICAgICJjYXRlZ29yeV9pZCI6ICIxOTA0NzAwMCIsCiAgICAgICJjaGVja19udW1iZXIiOiBudWxsLAogICAgICAiY291bnRlcnBhcnRpZXMiOiBbCiAgICAgICAgewogICAgICAgICAgImNvbmZpZGVuY2VfbGV2ZWwiOiAiVkVSWV9ISUdIIiwKICAgICAgICAgICJlbnRpdHlfaWQiOiAiN21rMUsyOGJPRU83NjQ1OUVvUkJONDk4RGdLZ2RuWTczcWJnbiIsCiAgICAgICAgICAibG9nb191cmwiOiAiaHR0cHM6Ly9wbGFpZC1tZXJjaGFudC1sb2dvcy5wbGFpZC5jb20vdHJhZGVyX2pvZXNfMTA0MS5wbmciLAogICAgICAgICAgIm5hbWUiOiAiVHJhZGVyIEpvZSdzIiwKICAgICAgICAgICJwaG9uZV9udW1iZXIiOiBudWxsLAogICAgICAgICAgInR5cGUiOiAibWVyY2hhbnQiLAogICAgICAgICAgIndlYnNpdGUiOiAidHJhZGVyam9lcy5jb20iCiAgICAgICAgfQogICAgICBdLAogICAgICAiZGF0ZSI6ICIyMDI0LTExLTAxIiwKICAgICAgImRhdGV0aW1lIjogbnVsbCwKICAgICAgImlzb19jdXJyZW5jeV9jb2RlIjogIlVTRCIsCiAgICAgICJsb2NhdGlvbiI6IHsKICAgICAgICAiYWRkcmVzcyI6IG51bGwsCiAgICAgICAgImNpdHkiOiBudWxsLAogICAgICAgICJjb3VudHJ5IjogbnVsbCwKICAgICAgICAibGF0IjogbnVsbCwKICAgICAgICAibG9uIjogbnVsbCwKICAgICAgICAicG9zdGFsX2NvZGUiOiBudWxsLAogICAgICAgICJyZWdpb24iOiBudWxsLAogICAgICAgICJzdG9yZV9udW1iZXIiOiBudWxsCiAgICAgIH0sCiAgICAgICJsb2dvX3VybCI6ICJodHRwczovL3BsYWlkLW1lcmNoYW50LWxvZ29zLnBsYWlkLmNvbS90cmFkZXJfam9lc18xMDQxLnBuZyIsCiAgICAgICJtZXJjaGFudF9lbnRpdHlfaWQiOiAiN21rMUsyOGJPRU83NjQ1OUVvUkJONDk4RGdLZ2RuWTczcWJnbiIsCiAgICAgICJtZXJjaGFudF9uYW1lIjogIlRyYWRlciBKb2UncyIsCiAgICAgICJuYW1lIjogIlRyYWRlciBKb2UncyIsCiAgICAgICJvcmlnaW5hbF9kZXNjcmlwdGlvbiI6ICJUcmFkZXIgSm9lJ3MiLAogICAgICAicGF5bWVudF9jaGFubmVsIjogImluIHN0b3JlIiwKICAgICAgInBheW1lbnRfbWV0YSI6IHsKICAgICAgICAiYnlfb3JkZXJfb2YiOiBudWxsLAogICAgICAgICJwYXllZSI6IG51bGwsCiAgICAgICAgInBheWVyIjogbnVsbCwKICAgICAgICAicGF5bWVudF9tZXRob2QiOiBudWxsLAogICAgICAgICJwYXltZW50X3Byb2Nlc3NvciI6IG51bGwsCiAgICAgICAgInBwZF9pZCI6IG51bGwsCiAgICAgICAgInJlYXNvbiI6IG51bGwsCiAgICAgICAgInJlZmVyZW5jZV9udW1iZXIiOiBudWxsCiAgICAgIH0sCiAgICAgICJwZW5kaW5nIjogZmFsc2UsCiAgICAgICJwZW5kaW5nX3RyYW5zYWN0aW9uX2lkIjogbnVsbCwKICAgICAgInBlcnNvbmFsX2ZpbmFuY2VfY2F0ZWdvcnkiOiB7CiAgICAgICAgImNvbmZpZGVuY2VfbGV2ZWwiOiAiVkVSWV9ISUdIIiwKICAgICAgICAiZGV0YWlsZWQiOiAiRk9PRF9BTkRfRFJJTktfR1JPQ0VSSUVTIiwKICAgICAgICAicHJpbWFyeSI6ICJGT09EX0FORF9EUklOSyIKICAgICAgfSwKICAgICAgInBlcnNvbmFsX2ZpbmFuY2VfY2F0ZWdvcnlfaWNvbl91cmwiOiAiaHR0cHM6Ly9wbGFpZC1jYXRlZ29yeS1pY29ucy5wbGFpZC5jb20vUEZDX0ZPT0RfQU5EX0RSSU5LLnBuZyIsCiAgICAgICJ0cmFuc2FjdGlvbl9jb2RlIjogbnVsbCwKICAgICAgInRyYW5zYWN0aW9uX2lkIjogIndXbnFwakpsZGF0UWJydkp5ZGpFVEtQREIzSjRFOWNQWm9tdm0iLAogICAgICAidHJhbnNhY3Rpb25fdHlwZSI6ICJwbGFjZSIsCiAgICAgICJ1bm9mZmljaWFsX2N1cnJlbmN5X2NvZGUiOiBudWxsLAogICAgICAid2Vic2l0ZSI6ICJ0cmFkZXJqb2VzLmNvbSIKICAgIH0sCiAgICB7CiAgICAgICJhY2NvdW50X2lkIjogIlp2bEJMNWVNUFF0blhEVjZRclI5c1JlTlZWejFYQWllYWdEUHoiLAogICAgICAiYWNjb3VudF9vd25lciI6IG51bGwsCiAgICAgICJhbW91bnQiOiAyMi44LAogICAgICAiYXV0aG9yaXplZF9kYXRlIjogIjIwMjQtMTAtMjkiLAogICAgICAiYXV0aG9yaXplZF9kYXRldGltZSI6IG51bGwsCiAgICAgICJjYXRlZ29yeSI6IFsKICAgICAgICAiU2hvcHMiLAogICAgICAgICJGb29kIGFuZCBCZXZlcmFnZSBTdG9yZSIKICAgICAgXSwKICAgICAgImNhdGVnb3J5X2lkIjogIjE5MDI1MDAwIiwKICAgICAgImNoZWNrX251bWJlciI6IG51bGwsCiAgICAgICJjb3VudGVycGFydGllcyI6IFsKICAgICAgICB7CiAgICAgICAgICAiY29uZmlkZW5jZV9sZXZlbCI6ICJMT1ciLAogICAgICAgICAgImVudGl0eV9pZCI6IG51bGwsCiAgICAgICAgICAibG9nb191cmwiOiBudWxsLAogICAgICAgICAgIm5hbWUiOiAiTGNibyBSYW8iLAogICAgICAgICAgInBob25lX251bWJlciI6IG51bGwsCiAgICAgICAgICAidHlwZSI6ICJtZXJjaGFudCIsCiAgICAgICAgICAid2Vic2l0ZSI6IG51bGwKICAgICAgICB9CiAgICAgIF0sCiAgICAgICJkYXRlIjogIjIwMjQtMTAtMjkiLAogICAgICAiZGF0ZXRpbWUiOiBudWxsLAogICAgICAiaXNvX2N1cnJlbmN5X2NvZGUiOiAiVVNEIiwKICAgICAgImxvY2F0aW9uIjogewogICAgICAgICJhZGRyZXNzIjogbnVsbCwKICAgICAgICAiY2l0eSI6IG51bGwsCiAgICAgICAgImNvdW50cnkiOiBudWxsLAogICAgICAgICJsYXQiOiBudWxsLAogICAgICAgICJsb24iOiBudWxsLAogICAgICAgICJwb3N0YWxfY29kZSI6IG51bGwsCiAgICAgICAgInJlZ2lvbiI6IG51bGwsCiAgICAgICAgInN0b3JlX251bWJlciI6ICIwMTIzIgogICAgICB9LAogICAgICAibG9nb191cmwiOiBudWxsLAogICAgICAibWVyY2hhbnRfZW50aXR5X2lkIjogbnVsbCwKICAgICAgIm1lcmNoYW50X25hbWUiOiAiTGNibyBSYW8iLAogICAgICAibmFtZSI6ICJMQ0JPL1JBTyAjMDEyMyIsCiAgICAgICJvcmlnaW5hbF9kZXNjcmlwdGlvbiI6ICJMQ0JPL1JBTyAjMDEyMyIsCiAgICAgICJwYXltZW50X2NoYW5uZWwiOiAiaW4gc3RvcmUiLAogICAgICAicGF5bWVudF9tZXRhIjogewogICAgICAgICJieV9vcmRlcl9vZiI6IG51bGwsCiAgICAgICAgInBheWVlIjogbnVsbCwKICAgICAgICAicGF5ZXIiOiBudWxsLAogICAgICAgICJwYXltZW50X21ldGhvZCI6IG51bGwsCiAgICAgICAgInBheW1lbnRfcHJvY2Vzc29yIjogbnVsbCwKICAgICAgICAicHBkX2lkIjogbnVsbCwKICAgICAgICAicmVhc29uIjogbnVsbCwKICAgICAgICAicmVmZXJlbmNlX251bWJlciI6IG51bGwKICAgICAgfSwKICAgICAgInBlbmRpbmciOiBmYWxzZSwKICAgICAgInBlbmRpbmdfdHJhbnNhY3Rpb25faWQiOiBudWxsLAogICAgICAicGVyc29uYWxfZmluYW5jZV9jYXRlZ29yeSI6IHsKICAgICAgICAiY29uZmlkZW5jZV9sZXZlbCI6ICJMT1ciLAogICAgICAgICJkZXRhaWxlZCI6ICJGT09EX0FORF9EUklOS19CRUVSX1dJTkVfQU5EX0xJUVVPUiIsCiAgICAgICAgInByaW1hcnkiOiAiRk9PRF9BTkRfRFJJTksiCiAgICAgIH0sCiAgICAgICJwZXJzb25hbF9maW5hbmNlX2NhdGVnb3J5X2ljb25fdXJsIjogImh0dHBzOi8vcGxhaWQtY2F0ZWdvcnktaWNvbnMucGxhaWQuY29tL1BGQ19GT09EX0FORF9EUklOSy5wbmciLAogICAgICAidHJhbnNhY3Rpb25fY29kZSI6IG51bGwsCiAgICAgICJ0cmFuc2FjdGlvbl9pZCI6ICI1dks1Tmc2YmRldGtYNGREQTZOYlNxWks3UURvWE11NUs3OG9RIiwKICAgICAgInRyYW5zYWN0aW9uX3R5cGUiOiAicGxhY2UiLAogICAgICAidW5vZmZpY2lhbF9jdXJyZW5jeV9jb2RlIjogbnVsbCwKICAgICAgIndlYnNpdGUiOiBudWxsCiAgICB9LAogICAgewogICAgICAiYWNjb3VudF9pZCI6ICJadmxCTDVlTVBRdG5YRFY2UXJSOXNSZU5WVnoxWEFpZWFnRFB6IiwKICAgICAgImFjY291bnRfb3duZXIiOiBudWxsLAogICAgICAiYW1vdW50IjogMTMuMjUsCiAgICAgICJhdXRob3JpemVkX2RhdGUiOiAiMjAyNC0xMC0yOSIsCiAgICAgICJhdXRob3JpemVkX2RhdGV0aW1lIjogbnVsbCwKICAgICAgImNhdGVnb3J5IjogWwogICAgICAgICJUcmF2ZWwiLAogICAgICAgICJHYXMgU3RhdGlvbnMiCiAgICAgIF0sCiAgICAgICJjYXRlZ29yeV9pZCI6ICIyMjAwOTAwMCIsCiAgICAgICJjaGVja19udW1iZXIiOiBudWxsLAogICAgICAiY291bnRlcnBhcnRpZXMiOiBbCiAgICAgICAgewogICAgICAgICAgImNvbmZpZGVuY2VfbGV2ZWwiOiAiVkVSWV9ISUdIIiwKICAgICAgICAgICJlbnRpdHlfaWQiOiAiOEttREQyOVE3cTZEMGd6azFvM2Ixenc5ZzBnWmF5N0RqNjhYbyIsCiAgICAgICAgICAibG9nb191cmwiOiAiaHR0cHM6Ly9wbGFpZC1tZXJjaGFudC1sb2dvcy5wbGFpZC5jb20vcXVpa3RyaXBfNzk5LnBuZyIsCiAgICAgICAgICAibmFtZSI6ICJRdWlrVHJpcCIsCiAgICAgICAgICAicGhvbmVfbnVtYmVyIjogbnVsbCwKICAgICAgICAgICJ0eXBlIjogIm1lcmNoYW50IiwKICAgICAgICAgICJ3ZWJzaXRlIjogInF1aWt0cmlwLmNvbSIKICAgICAgICB9CiAgICAgIF0sCiAgICAgICJkYXRlIjogIjIwMjQtMTAtMjkiLAogICAgICAiZGF0ZXRpbWUiOiBudWxsLAogICAgICAiaXNvX2N1cnJlbmN5X2NvZGUiOiAiVVNEIiwKICAgICAgImxvY2F0aW9uIjogewogICAgICAgICJhZGRyZXNzIjogbnVsbCwKICAgICAgICAiY2l0eSI6IG51bGwsCiAgICAgICAgImNvdW50cnkiOiBudWxsLAogICAgICAgICJsYXQiOiBudWxsLAogICAgICAgICJsb24iOiBudWxsLAogICAgICAgICJwb3N0YWxfY29kZSI6IG51bGwsCiAgICAgICAgInJlZ2lvbiI6IG51bGwsCiAgICAgICAgInN0b3JlX251bWJlciI6IG51bGwKICAgICAgfSwKICAgICAgImxvZ29fdXJsIjogImh0dHBzOi8vcGxhaWQtbWVyY2hhbnQtbG9nb3MucGxhaWQuY29tL3F1aWt0cmlwXzc5OS5wbmciLAogICAgICAibWVyY2hhbnRfZW50aXR5X2lkIjogIjhLbUREMjlRN3E2RDBnemsxbzNiMXp3OWcwZ1pheTdEajY4WG8iLAogICAgICAibWVyY2hhbnRfbmFtZSI6ICJRdWlrVHJpcCIsCiAgICAgICJuYW1lIjogIlFUIDAxMjMgMDEyMzQ1NjciLAogICAgICAib3JpZ2luYWxfZGVzY3JpcHRpb24iOiAiUVQgMDEyMyAgICAgICAwMTIzNDU2NyIsCiAgICAgICJwYXltZW50X2NoYW5uZWwiOiAiaW4gc3RvcmUiLAogICAgICAicGF5bWVudF9tZXRhIjogewogICAgICAgICJieV9vcmRlcl9vZiI6IG51bGwsCiAgICAgICAgInBheWVlIjogbnVsbCwKICAgICAgICAicGF5ZXIiOiBudWxsLAogICAgICAgICJwYXltZW50X21ldGhvZCI6IG51bGwsCiAgICAgICAgInBheW1lbnRfcHJvY2Vzc29yIjogbnVsbCwKICAgICAgICAicHBkX2lkIjogbnVsbCwKICAgICAgICAicmVhc29uIjogbnVsbCwKICAgICAgICAicmVmZXJlbmNlX251bWJlciI6IG51bGwKICAgICAgfSwKICAgICAgInBlbmRpbmciOiBmYWxzZSwKICAgICAgInBlbmRpbmdfdHJhbnNhY3Rpb25faWQiOiBudWxsLAogICAgICAicGVyc29uYWxfZmluYW5jZV9jYXRlZ29yeSI6IHsKICAgICAgICAiY29uZmlkZW5jZV9sZXZlbCI6ICJWRVJZX0hJR0giLAogICAgICAgICJkZXRhaWxlZCI6ICJUUkFOU1BPUlRBVElPTl9HQVMiLAogICAgICAgICJwcmltYXJ5IjogIlRSQU5TUE9SVEFUSU9OIgogICAgICB9LAogICAgICAicGVyc29uYWxfZmluYW5jZV9jYXRlZ29yeV9pY29uX3VybCI6ICJodHRwczovL3BsYWlkLWNhdGVnb3J5LWljb25zLnBsYWlkLmNvbS9QRkNfVFJBTlNQT1JUQVRJT04ucG5nIiwKICAgICAgInRyYW5zYWN0aW9uX2NvZGUiOiBudWxsLAogICAgICAidHJhbnNhY3Rpb25faWQiOiAiSk1nVno1OXhubGhNMXB5S2xqa2VVQVhaZ0xKRHc2SUI2Z2tFWCIsCiAgICAgICJ0cmFuc2FjdGlvbl90eXBlIjogInBsYWNlIiwKICAgICAgInVub2ZmaWNpYWxfY3VycmVuY3lfY29kZSI6IG51bGwsCiAgICAgICJ3ZWJzaXRlIjogInF1aWt0cmlwLmNvbSIKICAgIH0sCiAgICB7CiAgICAgICJhY2NvdW50X2lkIjogIlp2bEJMNWVNUFF0blhEVjZRclI5c1JlTlZWejFYQWllYWdEUHoiLAogICAgICAiYWNjb3VudF9vd25lciI6IG51bGwsCiAgICAgICJhbW91bnQiOiAxOS42LAogICAgICAiYXV0aG9yaXplZF9kYXRlIjogIjIwMjQtMTAtMjkiLAogICAgICAiYXV0aG9yaXplZF9kYXRldGltZSI6IG51bGwsCiAgICAgICJjYXRlZ29yeSI6IFsKICAgICAgICAiRm9vZCBhbmQgRHJpbmsiLAogICAgICAgICJSZXN0YXVyYW50cyIKICAgICAgXSwKICAgICAgImNhdGVnb3J5X2lkIjogIjEzMDA1MDAwIiwKICAgICAgImNoZWNrX251bWJlciI6IG51bGwsCiAgICAgICJjb3VudGVycGFydGllcyI6IFsKICAgICAgICB7CiAgICAgICAgICAiY29uZmlkZW5jZV9sZXZlbCI6ICJMT1ciLAogICAgICAgICAgImVudGl0eV9pZCI6IG51bGwsCiAgICAgICAgICAibG9nb191cmwiOiBudWxsLAogICAgICAgICAgIm5hbWUiOiAiSm9obidzIiwKICAgICAgICAgICJwaG9uZV9udW1iZXIiOiBudWxsLAogICAgICAgICAgInR5cGUiOiAibWVyY2hhbnQiLAogICAgICAgICAgIndlYnNpdGUiOiBudWxsCiAgICAgICAgfQogICAgICBdLAogICAgICAiZGF0ZSI6ICIyMDI0LTEwLTI5IiwKICAgICAgImRhdGV0aW1lIjogbnVsbCwKICAgICAgImlzb19jdXJyZW5jeV9jb2RlIjogIlVTRCIsCiAgICAgICJsb2NhdGlvbiI6IHsKICAgICAgICAiYWRkcmVzcyI6IG51bGwsCiAgICAgICAgImNpdHkiOiBudWxsLAogICAgICAgICJjb3VudHJ5IjogbnVsbCwKICAgICAgICAibGF0IjogbnVsbCwKICAgICAgICAibG9uIjogbnVsbCwKICAgICAgICAicG9zdGFsX2NvZGUiOiBudWxsLAogICAgICAgICJyZWdpb24iOiBudWxsLAogICAgICAgICJzdG9yZV9udW1iZXIiOiBudWxsCiAgICAgIH0sCiAgICAgICJsb2dvX3VybCI6IG51bGwsCiAgICAgICJtZXJjaGFudF9lbnRpdHlfaWQiOiBudWxsLAogICAgICAibWVyY2hhbnRfbmFtZSI6ICJKb2huJ3MiLAogICAgICAibmFtZSI6ICJKaW1teSBKb2huJ3MiLAogICAgICAib3JpZ2luYWxfZGVzY3JpcHRpb24iOiAiSmltbXkgSm9obidzIiwKICAgICAgInBheW1lbnRfY2hhbm5lbCI6ICJpbiBzdG9yZSIsCiAgICAgICJwYXltZW50X21ldGEiOiB7CiAgICAgICAgImJ5X29yZGVyX29mIjogbnVsbCwKICAgICAgICAicGF5ZWUiOiBudWxsLAogICAgICAgICJwYXllciI6IG51bGwsCiAgICAgICAgInBheW1lbnRfbWV0aG9kIjogbnVsbCwKICAgICAgICAicGF5bWVudF9wcm9jZXNzb3IiOiBudWxsLAogICAgICAgICJwcGRfaWQiOiBudWxsLAogICAgICAgICJyZWFzb24iOiBudWxsLAogICAgICAgICJyZWZlcmVuY2VfbnVtYmVyIjogbnVsbAogICAgICB9LAogICAgICAicGVuZGluZyI6IGZhbHNlLAogICAgICAicGVuZGluZ190cmFuc2FjdGlvbl9pZCI6IG51bGwsCiAgICAgICJwZXJzb25hbF9maW5hbmNlX2NhdGVnb3J5IjogewogICAgICAgICJjb25maWRlbmNlX2xldmVsIjogIkxPVyIsCiAgICAgICAgImRldGFpbGVkIjogIkdFTkVSQUxfTUVSQ0hBTkRJU0VfT1RIRVJfR0VORVJBTF9NRVJDSEFORElTRSIsCiAgICAgICAgInByaW1hcnkiOiAiR0VORVJBTF9NRVJDSEFORElTRSIKICAgICAgfSwKICAgICAgInBlcnNvbmFsX2ZpbmFuY2VfY2F0ZWdvcnlfaWNvbl91cmwiOiAiaHR0cHM6Ly9wbGFpZC1jYXRlZ29yeS1pY29ucy5wbGFpZC5jb20vUEZDX0dFTkVSQUxfTUVSQ0hBTkRJU0UucG5nIiwKICAgICAgInRyYW5zYWN0aW9uX2NvZGUiOiBudWxsLAogICAgICAidHJhbnNhY3Rpb25faWQiOiAiazdaQWFxa0RuOUllTFd2UE1EM1FUUW13akFhZTYxc0w2ZG9CRCIsCiAgICAgICJ0cmFuc2FjdGlvbl90eXBlIjogInBsYWNlIiwKICAgICAgInVub2ZmaWNpYWxfY3VycmVuY3lfY29kZSI6IG51bGwsCiAgICAgICJ3ZWJzaXRlIjogbnVsbAogICAgfSwKICAgIHsKICAgICAgImFjY291bnRfaWQiOiAiWnZsQkw1ZU1QUXRuWERWNlFyUjlzUmVOVlZ6MVhBaWVhZ0RQeiIsCiAgICAgICJhY2NvdW50X293bmVyIjogbnVsbCwKICAgICAgImFtb3VudCI6IDQuOTIsCiAgICAgICJhdXRob3JpemVkX2RhdGUiOiAiMjAyNC0xMC0yOSIsCiAgICAgICJhdXRob3JpemVkX2RhdGV0aW1lIjogbnVsbCwKICAgICAgImNhdGVnb3J5IjogWwogICAgICAgICJTZXJ2aWNlIgogICAgICBdLAogICAgICAiY2F0ZWdvcnlfaWQiOiAiMTgwMDAwMDAiLAogICAgICAiY2hlY2tfbnVtYmVyIjogbnVsbCwKICAgICAgImNvdW50ZXJwYXJ0aWVzIjogW10sCiAgICAgICJkYXRlIjogIjIwMjQtMTAtMzEiLAogICAgICAiZGF0ZXRpbWUiOiBudWxsLAogICAgICAiaXNvX2N1cnJlbmN5X2NvZGUiOiAiVVNEIiwKICAgICAgImxvY2F0aW9uIjogewogICAgICAgICJhZGRyZXNzIjogbnVsbCwKICAgICAgICAiY2l0eSI6IG51bGwsCiAgICAgICAgImNvdW50cnkiOiBudWxsLAogICAgICAgICJsYXQiOiBudWxsLAogICAgICAgICJsb24iOiBudWxsLAogICAgICAgICJwb3N0YWxfY29kZSI6IG51bGwsCiAgICAgICAgInJlZ2lvbiI6IG51bGwsCiAgICAgICAgInN0b3JlX251bWJlciI6IG51bGwKICAgICAgfSwKICAgICAgImxvZ29fdXJsIjogbnVsbCwKICAgICAgIm1lcmNoYW50X2VudGl0eV9pZCI6IG51bGwsCiAgICAgICJtZXJjaGFudF9uYW1lIjogbnVsbCwKICAgICAgIm5hbWUiOiAiSFAgKklOU1RBTlQgSU5LIiwKICAgICAgIm9yaWdpbmFsX2Rlc2NyaXB0aW9uIjogIkhQICpJTlNUQU5UIElOSyIsCiAgICAgICJwYXltZW50X2NoYW5uZWwiOiAib25saW5lIiwKICAgICAgInBheW1lbnRfbWV0YSI6IHsKICAgICAgICAiYnlfb3JkZXJfb2YiOiBudWxsLAogICAgICAgICJwYXllZSI6IG51bGwsCiAgICAgICAgInBheWVyIjogbnVsbCwKICAgICAgICAicGF5bWVudF9tZXRob2QiOiBudWxsLAogICAgICAgICJwYXltZW50X3Byb2Nlc3NvciI6IG51bGwsCiAgICAgICAgInBwZF9pZCI6IG51bGwsCiAgICAgICAgInJlYXNvbiI6IG51bGwsCiAgICAgICAgInJlZmVyZW5jZV9udW1iZXIiOiBudWxsCiAgICAgIH0sCiAgICAgICJwZW5kaW5nIjogZmFsc2UsCiAgICAgICJwZW5kaW5nX3RyYW5zYWN0aW9uX2lkIjogbnVsbCwKICAgICAgInBlcnNvbmFsX2ZpbmFuY2VfY2F0ZWdvcnkiOiB7CiAgICAgICAgImNvbmZpZGVuY2VfbGV2ZWwiOiAiTE9XIiwKICAgICAgICAiZGV0YWlsZWQiOiAiR0VORVJBTF9TRVJWSUNFU19PVEhFUl9HRU5FUkFMX1NFUlZJQ0VTIiwKICAgICAgICAicHJpbWFyeSI6ICJHRU5FUkFMX1NFUlZJQ0VTIgogICAgICB9LAogICAgICAicGVyc29uYWxfZmluYW5jZV9jYXRlZ29yeV9pY29uX3VybCI6ICJodHRwczovL3BsYWlkLWNhdGVnb3J5LWljb25zLnBsYWlkLmNvbS9QRkNfR0VORVJBTF9TRVJWSUNFUy5wbmciLAogICAgICAidHJhbnNhY3Rpb25fY29kZSI6IG51bGwsCiAgICAgICJ0cmFuc2FjdGlvbl9pZCI6ICJsZU1BNEtkRGJ2VDlSajhhRHczQVNscXdabWR2R0RpcG9kUnlvIiwKICAgICAgInRyYW5zYWN0aW9uX3R5cGUiOiAicGxhY2UiLAogICAgICAidW5vZmZpY2lhbF9jdXJyZW5jeV9jb2RlIjogbnVsbCwKICAgICAgIndlYnNpdGUiOiBudWxsCiAgICB9LAogICAgewogICAgICAiYWNjb3VudF9pZCI6ICJadmxCTDVlTVBRdG5YRFY2UXJSOXNSZU5WVnoxWEFpZWFnRFB6IiwKICAgICAgImFjY291bnRfb3duZXIiOiBudWxsLAogICAgICAiYW1vdW50IjogMTMxLjA5LAogICAgICAiYXV0aG9yaXplZF9kYXRlIjogIjIwMjQtMTAtMzEiLAogICAgICAiYXV0aG9yaXplZF9kYXRldGltZSI6IG51bGwsCiAgICAgICJjYXRlZ29yeSI6IFsKICAgICAgICAiU2hvcHMiLAogICAgICAgICJTdXBlcm1hcmtldHMgYW5kIEdyb2NlcmllcyIKICAgICAgXSwKICAgICAgImNhdGVnb3J5X2lkIjogIjE5MDQ3MDAwIiwKICAgICAgImNoZWNrX251bWJlciI6IG51bGwsCiAgICAgICJjb3VudGVycGFydGllcyI6IFsKICAgICAgICB7CiAgICAgICAgICAiY29uZmlkZW5jZV9sZXZlbCI6ICJWRVJZX0hJR0giLAogICAgICAgICAgImVudGl0eV9pZCI6ICJFYXEzS1htMGpKNjFLcm1NclYwYXc5VmFZMmdycXY1MTdkM2VwIiwKICAgICAgICAgICJsb2dvX3VybCI6ICJodHRwczovL3BsYWlkLW1lcmNoYW50LWxvZ29zLnBsYWlkLmNvbS90YXJnZXRfOTk3LnBuZyIsCiAgICAgICAgICAibmFtZSI6ICJUYXJnZXQiLAogICAgICAgICAgInBob25lX251bWJlciI6IG51bGwsCiAgICAgICAgICAidHlwZSI6ICJtZXJjaGFudCIsCiAgICAgICAgICAid2Vic2l0ZSI6ICJ0YXJnZXQuY29tIgogICAgICAgIH0KICAgICAgXSwKICAgICAgImRhdGUiOiAiMjAyNC0xMC0zMSIsCiAgICAgICJkYXRldGltZSI6IG51bGwsCiAgICAgICJpc29fY3VycmVuY3lfY29kZSI6ICJVU0QiLAogICAgICAibG9jYXRpb24iOiB7CiAgICAgICAgImFkZHJlc3MiOiBudWxsLAogICAgICAgICJjaXR5IjogbnVsbCwKICAgICAgICAiY291bnRyeSI6IG51bGwsCiAgICAgICAgImxhdCI6IG51bGwsCiAgICAgICAgImxvbiI6IG51bGwsCiAgICAgICAgInBvc3RhbF9jb2RlIjogbnVsbCwKICAgICAgICAicmVnaW9uIjogbnVsbCwKICAgICAgICAic3RvcmVfbnVtYmVyIjogbnVsbAogICAgICB9LAogICAgICAibG9nb191cmwiOiAiaHR0cHM6Ly9wbGFpZC1tZXJjaGFudC1sb2dvcy5wbGFpZC5jb20vdGFyZ2V0Xzk5Ny5wbmciLAogICAgICAibWVyY2hhbnRfZW50aXR5X2lkIjogIkVhcTNLWG0wako2MUtybU1yVjBhdzlWYVkyZ3JxdjUxN2QzZXAiLAogICAgICAibWVyY2hhbnRfbmFtZSI6ICJUYXJnZXQiLAogICAgICAibmFtZSI6ICJUYXJnZXQiLAogICAgICAib3JpZ2luYWxfZGVzY3JpcHRpb24iOiAiVEFSR0VULkNPTSAgKiIsCiAgICAgICJwYXltZW50X2NoYW5uZWwiOiAib25saW5lIiwKICAgICAgInBheW1lbnRfbWV0YSI6IHsKICAgICAgICAiYnlfb3JkZXJfb2YiOiBudWxsLAogICAgICAgICJwYXllZSI6IG51bGwsCiAgICAgICAgInBheWVyIjogbnVsbCwKICAgICAgICAicGF5bWVudF9tZXRob2QiOiBudWxsLAogICAgICAgICJwYXltZW50X3Byb2Nlc3NvciI6IG51bGwsCiAgICAgICAgInBwZF9pZCI6IG51bGwsCiAgICAgICAgInJlYXNvbiI6IG51bGwsCiAgICAgICAgInJlZmVyZW5jZV9udW1iZXIiOiBudWxsCiAgICAgIH0sCiAgICAgICJwZW5kaW5nIjogZmFsc2UsCiAgICAgICJwZW5kaW5nX3RyYW5zYWN0aW9uX2lkIjogbnVsbCwKICAgICAgInBlcnNvbmFsX2ZpbmFuY2VfY2F0ZWdvcnkiOiB7CiAgICAgICAgImNvbmZpZGVuY2VfbGV2ZWwiOiAiVkVSWV9ISUdIIiwKICAgICAgICAiZGV0YWlsZWQiOiAiR0VORVJBTF9NRVJDSEFORElTRV9TVVBFUlNUT1JFUyIsCiAgICAgICAgInByaW1hcnkiOiAiR0VORVJBTF9NRVJDSEFORElTRSIKICAgICAgfSwKICAgICAgInBlcnNvbmFsX2ZpbmFuY2VfY2F0ZWdvcnlfaWNvbl91cmwiOiAiaHR0cHM6Ly9wbGFpZC1jYXRlZ29yeS1pY29ucy5wbGFpZC5jb20vUEZDX0dFTkVSQUxfTUVSQ0hBTkRJU0UucG5nIiwKICAgICAgInRyYW5zYWN0aW9uX2NvZGUiOiBudWxsLAogICAgICAidHJhbnNhY3Rpb25faWQiOiAicUxnQWV4OURLcmZOakV2NW9ETWFGZWJWYXBNbVdHaGdyN1JhSyIsCiAgICAgICJ0cmFuc2FjdGlvbl90eXBlIjogInBsYWNlIiwKICAgICAgInVub2ZmaWNpYWxfY3VycmVuY3lfY29kZSI6IG51bGwsCiAgICAgICJ3ZWJzaXRlIjogInRhcmdldC5jb20iCiAgICB9LAogICAgewogICAgICAiYWNjb3VudF9pZCI6ICJadmxCTDVlTVBRdG5YRFY2UXJSOXNSZU5WVnoxWEFpZWFnRFB6IiwKICAgICAgImFjY291bnRfb3duZXIiOiBudWxsLAogICAgICAiYW1vdW50IjogNTcuOCwKICAgICAgImF1dGhvcml6ZWRfZGF0ZSI6ICIyMDI0LTEwLTMxIiwKICAgICAgImF1dGhvcml6ZWRfZGF0ZXRpbWUiOiBudWxsLAogICAgICAiY2F0ZWdvcnkiOiBbCiAgICAgICAgIlNob3BzIiwKICAgICAgICAiV2FyZWhvdXNlcyBhbmQgV2hvbGVzYWxlIFN0b3JlcyIKICAgICAgXSwKICAgICAgImNhdGVnb3J5X2lkIjogIjE5MDUxMDAwIiwKICAgICAgImNoZWNrX251bWJlciI6IG51bGwsCiAgICAgICJjb3VudGVycGFydGllcyI6IFsKICAgICAgICB7CiAgICAgICAgICAiY29uZmlkZW5jZV9sZXZlbCI6ICJWRVJZX0hJR0giLAogICAgICAgICAgImVudGl0eV9pZCI6ICJLQUUwbldOcEVSTFpReU02QU15RG1OWGprUW43NmpLUUJtUnFBIiwKICAgICAgICAgICJsb2dvX3VybCI6ICJodHRwczovL3BsYWlkLW1lcmNoYW50LWxvZ29zLnBsYWlkLmNvbS9zYW1zX2NsdWJfODU4LnBuZyIsCiAgICAgICAgICAibmFtZSI6ICJTYW0ncyBDbHViIiwKICAgICAgICAgICJwaG9uZV9udW1iZXIiOiBudWxsLAogICAgICAgICAgInR5cGUiOiAibWVyY2hhbnQiLAogICAgICAgICAgIndlYnNpdGUiOiAic2Ftc2NsdWIuY29tIgogICAgICAgIH0KICAgICAgXSwKICAgICAgImRhdGUiOiAiMjAyNC0xMS0wMiIsCiAgICAgICJkYXRldGltZSI6IG51bGwsCiAgICAgICJpc29fY3VycmVuY3lfY29kZSI6ICJVU0QiLAogICAgICAibG9jYXRpb24iOiB7CiAgICAgICAgImFkZHJlc3MiOiBudWxsLAogICAgICAgICJjaXR5IjogbnVsbCwKICAgICAgICAiY291bnRyeSI6IG51bGwsCiAgICAgICAgImxhdCI6IG51bGwsCiAgICAgICAgImxvbiI6IG51bGwsCiAgICAgICAgInBvc3RhbF9jb2RlIjogbnVsbCwKICAgICAgICAicmVnaW9uIjogbnVsbCwKICAgICAgICAic3RvcmVfbnVtYmVyIjogbnVsbAogICAgICB9LAogICAgICAibG9nb191cmwiOiAiaHR0cHM6Ly9wbGFpZC1tZXJjaGFudC1sb2dvcy5wbGFpZC5jb20vc2Ftc19jbHViXzg1OC5wbmciLAogICAgICAibWVyY2hhbnRfZW50aXR5X2lkIjogIktBRTBuV05wRVJMWlF5TTZBTXlEbU5YamtRbjc2aktRQm1ScUEiLAogICAgICAibWVyY2hhbnRfbmFtZSI6ICJTYW0ncyBDbHViIiwKICAgICAgIm5hbWUiOiAiU2FtJ3MgQ2x1YiIsCiAgICAgICJvcmlnaW5hbF9kZXNjcmlwdGlvbiI6ICJTYW1zIENsdWIiLAogICAgICAicGF5bWVudF9jaGFubmVsIjogImluIHN0b3JlIiwKICAgICAgInBheW1lbnRfbWV0YSI6IHsKICAgICAgICAiYnlfb3JkZXJfb2YiOiBudWxsLAogICAgICAgICJwYXllZSI6IG51bGwsCiAgICAgICAgInBheWVyIjogbnVsbCwKICAgICAgICAicGF5bWVudF9tZXRob2QiOiBudWxsLAogICAgICAgICJwYXltZW50X3Byb2Nlc3NvciI6IG51bGwsCiAgICAgICAgInBwZF9pZCI6IG51bGwsCiAgICAgICAgInJlYXNvbiI6IG51bGwsCiAgICAgICAgInJlZmVyZW5jZV9udW1iZXIiOiBudWxsCiAgICAgIH0sCiAgICAgICJwZW5kaW5nIjogZmFsc2UsCiAgICAgICJwZW5kaW5nX3RyYW5zYWN0aW9uX2lkIjogbnVsbCwKICAgICAgInBlcnNvbmFsX2ZpbmFuY2VfY2F0ZWdvcnkiOiB7CiAgICAgICAgImNvbmZpZGVuY2VfbGV2ZWwiOiAiVkVSWV9ISUdIIiwKICAgICAgICAiZGV0YWlsZWQiOiAiR0VORVJBTF9NRVJDSEFORElTRV9TVVBFUlNUT1JFUyIsCiAgICAgICAgInByaW1hcnkiOiAiR0VORVJBTF9NRVJDSEFORElTRSIKICAgICAgfSwKICAgICAgInBlcnNvbmFsX2ZpbmFuY2VfY2F0ZWdvcnlfaWNvbl91cmwiOiAiaHR0cHM6Ly9wbGFpZC1jYXRlZ29yeS1pY29ucy5wbGFpZC5jb20vUEZDX0dFTkVSQUxfTUVSQ0hBTkRJU0UucG5nIiwKICAgICAgInRyYW5zYWN0aW9uX2NvZGUiOiBudWxsLAogICAgICAidHJhbnNhY3Rpb25faWQiOiAiSzE4UEI1WmRicWgxN0JWZ3FiUlFoeW9hQTV6MWRlaVJwQTFQeCIsCiAgICAgICJ0cmFuc2FjdGlvbl90eXBlIjogInBsYWNlIiwKICAgICAgInVub2ZmaWNpYWxfY3VycmVuY3lfY29kZSI6IG51bGwsCiAgICAgICJ3ZWJzaXRlIjogInNhbXNjbHViLmNvbSIKICAgIH0sCiAgICB7CiAgICAgICJhY2NvdW50X2lkIjogIlp2bEJMNWVNUFF0blhEVjZRclI5c1JlTlZWejFYQWllYWdEUHoiLAogICAgICAiYWNjb3VudF9vd25lciI6IG51bGwsCiAgICAgICJhbW91bnQiOiAyMi4wMywKICAgICAgImF1dGhvcml6ZWRfZGF0ZSI6ICIyMDI0LTEwLTMxIiwKICAgICAgImF1dGhvcml6ZWRfZGF0ZXRpbWUiOiBudWxsLAogICAgICAiY2F0ZWdvcnkiOiBbCiAgICAgICAgIlNlcnZpY2UiLAogICAgICAgICJTdWJzY3JpcHRpb24iCiAgICAgIF0sCiAgICAgICJjYXRlZ29yeV9pZCI6ICIxODA2MTAwMCIsCiAgICAgICJjaGVja19udW1iZXIiOiBudWxsLAogICAgICAiY291bnRlcnBhcnRpZXMiOiBbCiAgICAgICAgewogICAgICAgICAgImNvbmZpZGVuY2VfbGV2ZWwiOiAiVkVSWV9ISUdIIiwKICAgICAgICAgICJlbnRpdHlfaWQiOiAiM0xFWTJiSjZXMXZrb2FCamdWZzNxQmdZVkV6RDZwOGQxZFFkWSIsCiAgICAgICAgICAibG9nb191cmwiOiAiaHR0cHM6Ly9wbGFpZC1tZXJjaGFudC1sb2dvcy5wbGFpZC5jb20vbmV0ZmxpeF82NzUucG5nIiwKICAgICAgICAgICJuYW1lIjogIk5ldGZsaXgiLAogICAgICAgICAgInBob25lX251bWJlciI6IG51bGwsCiAgICAgICAgICAidHlwZSI6ICJtZXJjaGFudCIsCiAgICAgICAgICAid2Vic2l0ZSI6ICJuZXRmbGl4LmNvbSIKICAgICAgICB9CiAgICAgIF0sCiAgICAgICJkYXRlIjogIjIwMjQtMTEtMDIiLAogICAgICAiZGF0ZXRpbWUiOiBudWxsLAogICAgICAiaXNvX2N1cnJlbmN5X2NvZGUiOiAiVVNEIiwKICAgICAgImxvY2F0aW9uIjogewogICAgICAgICJhZGRyZXNzIjogbnVsbCwKICAgICAgICAiY2l0eSI6IG51bGwsCiAgICAgICAgImNvdW50cnkiOiBudWxsLAogICAgICAgICJsYXQiOiBudWxsLAogICAgICAgICJsb24iOiBudWxsLAogICAgICAgICJwb3N0YWxfY29kZSI6IG51bGwsCiAgICAgICAgInJlZ2lvbiI6ICJDQSIsCiAgICAgICAgInN0b3JlX251bWJlciI6IG51bGwKICAgICAgfSwKICAgICAgImxvZ29fdXJsIjogImh0dHBzOi8vcGxhaWQtbWVyY2hhbnQtbG9nb3MucGxhaWQuY29tL25ldGZsaXhfNjc1LnBuZyIsCiAgICAgICJtZXJjaGFudF9lbnRpdHlfaWQiOiAiM0xFWTJiSjZXMXZrb2FCamdWZzNxQmdZVkV6RDZwOGQxZFFkWSIsCiAgICAgICJtZXJjaGFudF9uYW1lIjogIk5ldGZsaXgiLAogICAgICAibmFtZSI6ICJOZXRmbGl4IiwKICAgICAgIm9yaWdpbmFsX2Rlc2NyaXB0aW9uIjogIk5ldGZsaXguY29tIG5ldGZsaXguY29tIENBIiwKICAgICAgInBheW1lbnRfY2hhbm5lbCI6ICJvbmxpbmUiLAogICAgICAicGF5bWVudF9tZXRhIjogewogICAgICAgICJieV9vcmRlcl9vZiI6IG51bGwsCiAgICAgICAgInBheWVlIjogbnVsbCwKICAgICAgICAicGF5ZXIiOiBudWxsLAogICAgICAgICJwYXltZW50X21ldGhvZCI6IG51bGwsCiAgICAgICAgInBheW1lbnRfcHJvY2Vzc29yIjogbnVsbCwKICAgICAgICAicHBkX2lkIjogbnVsbCwKICAgICAgICAicmVhc29uIjogbnVsbCwKICAgICAgICAicmVmZXJlbmNlX251bWJlciI6IG51bGwKICAgICAgfSwKICAgICAgInBlbmRpbmciOiBmYWxzZSwKICAgICAgInBlbmRpbmdfdHJhbnNhY3Rpb25faWQiOiBudWxsLAogICAgICAicGVyc29uYWxfZmluYW5jZV9jYXRlZ29yeSI6IHsKICAgICAgICAiY29uZmlkZW5jZV9sZXZlbCI6ICJWRVJZX0hJR0giLAogICAgICAgICJkZXRhaWxlZCI6ICJFTlRFUlRBSU5NRU5UX1RWX0FORF9NT1ZJRVMiLAogICAgICAgICJwcmltYXJ5IjogIkVOVEVSVEFJTk1FTlQiCiAgICAgIH0sCiAgICAgICJwZXJzb25hbF9maW5hbmNlX2NhdGVnb3J5X2ljb25fdXJsIjogImh0dHBzOi8vcGxhaWQtY2F0ZWdvcnktaWNvbnMucGxhaWQuY29tL1BGQ19FTlRFUlRBSU5NRU5ULnBuZyIsCiAgICAgICJ0cmFuc2FjdGlvbl9jb2RlIjogbnVsbCwKICAgICAgInRyYW5zYWN0aW9uX2lkIjogInJwOHdRZDlEcnpjN1h4VlJaYkJOc2J4UDVKTWpHOWk3SjYxeHYiLAogICAgICAidHJhbnNhY3Rpb25fdHlwZSI6ICJwbGFjZSIsCiAgICAgICJ1bm9mZmljaWFsX2N1cnJlbmN5X2NvZGUiOiBudWxsLAogICAgICAid2Vic2l0ZSI6ICJuZXRmbGl4LmNvbSIKICAgIH0sCiAgICB7CiAgICAgICJhY2NvdW50X2lkIjogIlp2bEJMNWVNUFF0blhEVjZRclI5c1JlTlZWejFYQWllYWdEUHoiLAogICAgICAiYWNjb3VudF9vd25lciI6IG51bGwsCiAgICAgICJhbW91bnQiOiAxNC45MSwKICAgICAgImF1dGhvcml6ZWRfZGF0ZSI6ICIyMDI0LTExLTAxIiwKICAgICAgImF1dGhvcml6ZWRfZGF0ZXRpbWUiOiBudWxsLAogICAgICAiY2F0ZWdvcnkiOiBbCiAgICAgICAgIkZvb2QgYW5kIERyaW5rIgogICAgICBdLAogICAgICAiY2F0ZWdvcnlfaWQiOiAiMTMwMDAwMDAiLAogICAgICAiY2hlY2tfbnVtYmVyIjogbnVsbCwKICAgICAgImNvdW50ZXJwYXJ0aWVzIjogWwogICAgICAgIHsKICAgICAgICAgICJjb25maWRlbmNlX2xldmVsIjogIlZFUllfSElHSCIsCiAgICAgICAgICAiZW50aXR5X2lkIjogIm0xVm01cHFyYW1NWVpEN1lPNGdBRFo0NDdScWFWcDY4MWpacmoiLAogICAgICAgICAgImxvZ29fdXJsIjogImh0dHBzOi8vcGxhaWQtbWVyY2hhbnQtbG9nb3MucGxhaWQuY29tL2phbWJhX2p1aWNlXzUzMS5wbmciLAogICAgICAgICAgIm5hbWUiOiAiSmFtYmEgSnVpY2UiLAogICAgICAgICAgInBob25lX251bWJlciI6IG51bGwsCiAgICAgICAgICAidHlwZSI6ICJtZXJjaGFudCIsCiAgICAgICAgICAid2Vic2l0ZSI6ICJqYW1iYS5jb20iCiAgICAgICAgfQogICAgICBdLAogICAgICAiZGF0ZSI6ICIyMDI0LTExLTA2IiwKICAgICAgImRhdGV0aW1lIjogbnVsbCwKICAgICAgImlzb19jdXJyZW5jeV9jb2RlIjogIlVTRCIsCiAgICAgICJsb2NhdGlvbiI6IHsKICAgICAgICAiYWRkcmVzcyI6IG51bGwsCiAgICAgICAgImNpdHkiOiBudWxsLAogICAgICAgICJjb3VudHJ5IjogbnVsbCwKICAgICAgICAibGF0IjogbnVsbCwKICAgICAgICAibG9uIjogbnVsbCwKICAgICAgICAicG9zdGFsX2NvZGUiOiBudWxsLAogICAgICAgICJyZWdpb24iOiBudWxsLAogICAgICAgICJzdG9yZV9udW1iZXIiOiBudWxsCiAgICAgIH0sCiAgICAgICJsb2dvX3VybCI6ICJodHRwczovL3BsYWlkLW1lcmNoYW50LWxvZ29zLnBsYWlkLmNvbS9qYW1iYV9qdWljZV81MzEucG5nIiwKICAgICAgIm1lcmNoYW50X2VudGl0eV9pZCI6ICJtMVZtNXBxcmFtTVlaRDdZTzRnQURaNDQ3UnFhVnA2ODFqWnJqIiwKICAgICAgIm1lcmNoYW50X25hbWUiOiAiSmFtYmEgSnVpY2UiLAogICAgICAibmFtZSI6ICJKYW1iYSBKdWljZSIsCiAgICAgICJvcmlnaW5hbF9kZXNjcmlwdGlvbiI6ICJKQU1CQSBKVUlDRSAwMTIzIiwKICAgICAgInBheW1lbnRfY2hhbm5lbCI6ICJpbiBzdG9yZSIsCiAgICAgICJwYXltZW50X21ldGEiOiB7CiAgICAgICAgImJ5X29yZGVyX29mIjogbnVsbCwKICAgICAgICAicGF5ZWUiOiBudWxsLAogICAgICAgICJwYXllciI6IG51bGwsCiAgICAgICAgInBheW1lbnRfbWV0aG9kIjogbnVsbCwKICAgICAgICAicGF5bWVudF9wcm9jZXNzb3IiOiBudWxsLAogICAgICAgICJwcGRfaWQiOiBudWxsLAogICAgICAgICJyZWFzb24iOiBudWxsLAogICAgICAgICJyZWZlcmVuY2VfbnVtYmVyIjogbnVsbAogICAgICB9LAogICAgICAicGVuZGluZyI6IGZhbHNlLAogICAgICAicGVuZGluZ190cmFuc2FjdGlvbl9pZCI6IG51bGwsCiAgICAgICJwZXJzb25hbF9maW5hbmNlX2NhdGVnb3J5IjogewogICAgICAgICJjb25maWRlbmNlX2xldmVsIjogIlZFUllfSElHSCIsCiAgICAgICAgImRldGFpbGVkIjogIkZPT0RfQU5EX0RSSU5LX09USEVSX0ZPT0RfQU5EX0RSSU5LIiwKICAgICAgICAicHJpbWFyeSI6ICJGT09EX0FORF9EUklOSyIKICAgICAgfSwKICAgICAgInBlcnNvbmFsX2ZpbmFuY2VfY2F0ZWdvcnlfaWNvbl91cmwiOiAiaHR0cHM6Ly9wbGFpZC1jYXRlZ29yeS1pY29ucy5wbGFpZC5jb20vUEZDX0ZPT0RfQU5EX0RSSU5LLnBuZyIsCiAgICAgICJ0cmFuc2FjdGlvbl9jb2RlIjogbnVsbCwKICAgICAgInRyYW5zYWN0aW9uX2lkIjogInpreXo4UTlyTlBDWGdXUWV5ajlwSWVxUFdsbUpwZGhsTkxROXYiLAogICAgICAidHJhbnNhY3Rpb25fdHlwZSI6ICJwbGFjZSIsCiAgICAgICJ1bm9mZmljaWFsX2N1cnJlbmN5X2NvZGUiOiBudWxsLAogICAgICAid2Vic2l0ZSI6ICJqYW1iYS5jb20iCiAgICB9LAogICAgewogICAgICAiYWNjb3VudF9pZCI6ICJadmxCTDVlTVBRdG5YRFY2UXJSOXNSZU5WVnoxWEFpZWFnRFB6IiwKICAgICAgImFjY291bnRfb3duZXIiOiBudWxsLAogICAgICAiYW1vdW50IjogNS41LAogICAgICAiYXV0aG9yaXplZF9kYXRlIjogIjIwMjQtMTEtMDEiLAogICAgICAiYXV0aG9yaXplZF9kYXRldGltZSI6IG51bGwsCiAgICAgICJjYXRlZ29yeSI6IFsKICAgICAgICAiRm9vZCBhbmQgRHJpbmsiLAogICAgICAgICJSZXN0YXVyYW50cyIKICAgICAgXSwKICAgICAgImNhdGVnb3J5X2lkIjogIjEzMDA1MDAwIiwKICAgICAgImNoZWNrX251bWJlciI6IG51bGwsCiAgICAgICJjb3VudGVycGFydGllcyI6IFtdLAogICAgICAiZGF0ZSI6ICIyMDI0LTExLTA2IiwKICAgICAgImRhdGV0aW1lIjogbnVsbCwKICAgICAgImlzb19jdXJyZW5jeV9jb2RlIjogIlVTRCIsCiAgICAgICJsb2NhdGlvbiI6IHsKICAgICAgICAiYWRkcmVzcyI6IG51bGwsCiAgICAgICAgImNpdHkiOiBudWxsLAogICAgICAgICJjb3VudHJ5IjogbnVsbCwKICAgICAgICAibGF0IjogbnVsbCwKICAgICAgICAibG9uIjogbnVsbCwKICAgICAgICAicG9zdGFsX2NvZGUiOiBudWxsLAogICAgICAgICJyZWdpb24iOiBudWxsLAogICAgICAgICJzdG9yZV9udW1iZXIiOiBudWxsCiAgICAgIH0sCiAgICAgICJsb2dvX3VybCI6IG51bGwsCiAgICAgICJtZXJjaGFudF9lbnRpdHlfaWQiOiBudWxsLAogICAgICAibWVyY2hhbnRfbmFtZSI6IG51bGwsCiAgICAgICJuYW1lIjogIldldHplbCdzIFByZXR6ZWxzIiwKICAgICAgIm9yaWdpbmFsX2Rlc2NyaXB0aW9uIjogIldFVFpFTCdTIFBSRVRaRUxTIiwKICAgICAgInBheW1lbnRfY2hhbm5lbCI6ICJpbiBzdG9yZSIsCiAgICAgICJwYXltZW50X21ldGEiOiB7CiAgICAgICAgImJ5X29yZGVyX29mIjogbnVsbCwKICAgICAgICAicGF5ZWUiOiBudWxsLAogICAgICAgICJwYXllciI6IG51bGwsCiAgICAgICAgInBheW1lbnRfbWV0aG9kIjogbnVsbCwKICAgICAgICAicGF5bWVudF9wcm9jZXNzb3IiOiBudWxsLAogICAgICAgICJwcGRfaWQiOiBudWxsLAogICAgICAgICJyZWFzb24iOiBudWxsLAogICAgICAgICJyZWZlcmVuY2VfbnVtYmVyIjogbnVsbAogICAgICB9LAogICAgICAicGVuZGluZyI6IGZhbHNlLAogICAgICAicGVuZGluZ190cmFuc2FjdGlvbl9pZCI6IG51bGwsCiAgICAgICJwZXJzb25hbF9maW5hbmNlX2NhdGVnb3J5IjogewogICAgICAgICJjb25maWRlbmNlX2xldmVsIjogIkxPVyIsCiAgICAgICAgImRldGFpbGVkIjogIkZPT0RfQU5EX0RSSU5LX09USEVSX0ZPT0RfQU5EX0RSSU5LIiwKICAgICAgICAicHJpbWFyeSI6ICJGT09EX0FORF9EUklOSyIKICAgICAgfSwKICAgICAgInBlcnNvbmFsX2ZpbmFuY2VfY2F0ZWdvcnlfaWNvbl91cmwiOiAiaHR0cHM6Ly9wbGFpZC1jYXRlZ29yeS1pY29ucy5wbGFpZC5jb20vUEZDX0ZPT0RfQU5EX0RSSU5LLnBuZyIsCiAgICAgICJ0cmFuc2FjdGlvbl9jb2RlIjogbnVsbCwKICAgICAgInRyYW5zYWN0aW9uX2lkIjogIkI0ZWs4NjlacEdDNDFtRG5qdlZ4dUJkWFZMalBSeEM0TThnUFAiLAogICAgICAidHJhbnNhY3Rpb25fdHlwZSI6ICJwbGFjZSIsCiAgICAgICJ1bm9mZmljaWFsX2N1cnJlbmN5X2NvZGUiOiBudWxsLAogICAgICAid2Vic2l0ZSI6IG51bGwKICAgIH0sCiAgICB7CiAgICAgICJhY2NvdW50X2lkIjogIlp2bEJMNWVNUFF0blhEVjZRclI5c1JlTlZWejFYQWllYWdEUHoiLAogICAgICAiYWNjb3VudF9vd25lciI6IG51bGwsCiAgICAgICJhbW91bnQiOiAyLjcyLAogICAgICAiYXV0aG9yaXplZF9kYXRlIjogIjIwMjQtMTEtMDIiLAogICAgICAiYXV0aG9yaXplZF9kYXRldGltZSI6IG51bGwsCiAgICAgICJjYXRlZ29yeSI6IFsKICAgICAgICAiRm9vZCBhbmQgRHJpbmsiLAogICAgICAgICJSZXN0YXVyYW50cyIsCiAgICAgICAgIkNvZmZlZSBTaG9wIgogICAgICBdLAogICAgICAiY2F0ZWdvcnlfaWQiOiAiMTMwMDUwNDMiLAogICAgICAiY2hlY2tfbnVtYmVyIjogbnVsbCwKICAgICAgImNvdW50ZXJwYXJ0aWVzIjogW10sCiAgICAgICJkYXRlIjogIjIwMjQtMTEtMDYiLAogICAgICAiZGF0ZXRpbWUiOiBudWxsLAogICAgICAiaXNvX2N1cnJlbmN5X2NvZGUiOiAiVVNEIiwKICAgICAgImxvY2F0aW9uIjogewogICAgICAgICJhZGRyZXNzIjogbnVsbCwKICAgICAgICAiY2l0eSI6IG51bGwsCiAgICAgICAgImNvdW50cnkiOiBudWxsLAogICAgICAgICJsYXQiOiBudWxsLAogICAgICAgICJsb24iOiBudWxsLAogICAgICAgICJwb3N0YWxfY29kZSI6IG51bGwsCiAgICAgICAgInJlZ2lvbiI6IG51bGwsCiAgICAgICAgInN0b3JlX251bWJlciI6ICIwMTIzNCIKICAgICAgfSwKICAgICAgImxvZ29fdXJsIjogbnVsbCwKICAgICAgIm1lcmNoYW50X2VudGl0eV9pZCI6IG51bGwsCiAgICAgICJtZXJjaGFudF9uYW1lIjogbnVsbCwKICAgICAgIm5hbWUiOiAiUEVFVFMgIyAwMTIzNCIsCiAgICAgICJvcmlnaW5hbF9kZXNjcmlwdGlvbiI6ICJQRUVUUyAjIDAxMjM0IiwKICAgICAgInBheW1lbnRfY2hhbm5lbCI6ICJpbiBzdG9yZSIsCiAgICAgICJwYXltZW50X21ldGEiOiB7CiAgICAgICAgImJ5X29yZGVyX29mIjogbnVsbCwKICAgICAgICAicGF5ZWUiOiBudWxsLAogICAgICAgICJwYXllciI6IG51bGwsCiAgICAgICAgInBheW1lbnRfbWV0aG9kIjogbnVsbCwKICAgICAgICAicGF5bWVudF9wcm9jZXNzb3IiOiBudWxsLAogICAgICAgICJwcGRfaWQiOiBudWxsLAogICAgICAgICJyZWFzb24iOiBudWxsLAogICAgICAgICJyZWZlcmVuY2VfbnVtYmVyIjogbnVsbAogICAgICB9LAogICAgICAicGVuZGluZyI6IGZhbHNlLAogICAgICAicGVuZGluZ190cmFuc2FjdGlvbl9pZCI6IG51bGwsCiAgICAgICJwZXJzb25hbF9maW5hbmNlX2NhdGVnb3J5IjogewogICAgICAgICJjb25maWRlbmNlX2xldmVsIjogIkxPVyIsCiAgICAgICAgImRldGFpbGVkIjogIkdFTkVSQUxfTUVSQ0hBTkRJU0VfT1RIRVJfR0VORVJBTF9NRVJDSEFORElTRSIsCiAgICAgICAgInByaW1hcnkiOiAiR0VORVJBTF9NRVJDSEFORElTRSIKICAgICAgfSwKICAgICAgInBlcnNvbmFsX2ZpbmFuY2VfY2F0ZWdvcnlfaWNvbl91cmwiOiAiaHR0cHM6Ly9wbGFpZC1jYXRlZ29yeS1pY29ucy5wbGFpZC5jb20vUEZDX0dFTkVSQUxfTUVSQ0hBTkRJU0UucG5nIiwKICAgICAgInRyYW5zYWN0aW9uX2NvZGUiOiBudWxsLAogICAgICAidHJhbnNhY3Rpb25faWQiOiAiM3lsSmFwZGIzamY4bkszQTF6N0pGM2psbVFhNUxCaFpsbkVwQSIsCiAgICAgICJ0cmFuc2FjdGlvbl90eXBlIjogInBsYWNlIiwKICAgICAgInVub2ZmaWNpYWxfY3VycmVuY3lfY29kZSI6IG51bGwsCiAgICAgICJ3ZWJzaXRlIjogbnVsbAogICAgfSwKICAgIHsKICAgICAgImFjY291bnRfaWQiOiAiWnZsQkw1ZU1QUXRuWERWNlFyUjlzUmVOVlZ6MVhBaWVhZ0RQeiIsCiAgICAgICJhY2NvdW50X293bmVyIjogbnVsbCwKICAgICAgImFtb3VudCI6IDQ1LAogICAgICAiYXV0aG9yaXplZF9kYXRlIjogIjIwMjQtMTEtMDUiLAogICAgICAiYXV0aG9yaXplZF9kYXRldGltZSI6IG51bGwsCiAgICAgICJjYXRlZ29yeSI6IFsKICAgICAgICAiVHJhdmVsIiwKICAgICAgICAiUHVibGljIFRyYW5zcG9ydGF0aW9uIFNlcnZpY2VzIgogICAgICBdLAogICAgICAiY2F0ZWdvcnlfaWQiOiAiMjIwMTQwMDAiLAogICAgICAiY2hlY2tfbnVtYmVyIjogbnVsbCwKICAgICAgImNvdW50ZXJwYXJ0aWVzIjogWwogICAgICAgIHsKICAgICAgICAgICJjb25maWRlbmNlX2xldmVsIjogIlZFUllfSElHSCIsCiAgICAgICAgICAiZW50aXR5X2lkIjogbnVsbCwKICAgICAgICAgICJsb2dvX3VybCI6IG51bGwsCiAgICAgICAgICAibmFtZSI6ICJDbGlwcGVyIFNlcnZpY2UiLAogICAgICAgICAgInBob25lX251bWJlciI6IG51bGwsCiAgICAgICAgICAidHlwZSI6ICJtZXJjaGFudCIsCiAgICAgICAgICAid2Vic2l0ZSI6IG51bGwKICAgICAgICB9CiAgICAgIF0sCiAgICAgICJkYXRlIjogIjIwMjQtMTEtMDYiLAogICAgICAiZGF0ZXRpbWUiOiBudWxsLAogICAgICAiaXNvX2N1cnJlbmN5X2NvZGUiOiAiVVNEIiwKICAgICAgImxvY2F0aW9uIjogewogICAgICAgICJhZGRyZXNzIjogbnVsbCwKICAgICAgICAiY2l0eSI6IG51bGwsCiAgICAgICAgImNvdW50cnkiOiBudWxsLAogICAgICAgICJsYXQiOiBudWxsLAogICAgICAgICJsb24iOiBudWxsLAogICAgICAgICJwb3N0YWxfY29kZSI6IG51bGwsCiAgICAgICAgInJlZ2lvbiI6IG51bGwsCiAgICAgICAgInN0b3JlX251bWJlciI6IG51bGwKICAgICAgfSwKICAgICAgImxvZ29fdXJsIjogbnVsbCwKICAgICAgIm1lcmNoYW50X2VudGl0eV9pZCI6IG51bGwsCiAgICAgICJtZXJjaGFudF9uYW1lIjogIkNsaXBwZXIgU2VydmljZSIsCiAgICAgICJuYW1lIjogIkNMSVBQRVIgU0VSVklDRSIsCiAgICAgICJvcmlnaW5hbF9kZXNjcmlwdGlvbiI6ICJDTElQUEVSIFNFUlZJQ0UiLAogICAgICAicGF5bWVudF9jaGFubmVsIjogImluIHN0b3JlIiwKICAgICAgInBheW1lbnRfbWV0YSI6IHsKICAgICAgICAiYnlfb3JkZXJfb2YiOiBudWxsLAogICAgICAgICJwYXllZSI6IG51bGwsCiAgICAgICAgInBheWVyIjogbnVsbCwKICAgICAgICAicGF5bWVudF9tZXRob2QiOiBudWxsLAogICAgICAgICJwYXltZW50X3Byb2Nlc3NvciI6IG51bGwsCiAgICAgICAgInBwZF9pZCI6IG51bGwsCiAgICAgICAgInJlYXNvbiI6IG51bGwsCiAgICAgICAgInJlZmVyZW5jZV9udW1iZXIiOiBudWxsCiAgICAgIH0sCiAgICAgICJwZW5kaW5nIjogZmFsc2UsCiAgICAgICJwZW5kaW5nX3RyYW5zYWN0aW9uX2lkIjogbnVsbCwKICAgICAgInBlcnNvbmFsX2ZpbmFuY2VfY2F0ZWdvcnkiOiB7CiAgICAgICAgImNvbmZpZGVuY2VfbGV2ZWwiOiAiVkVSWV9ISUdIIiwKICAgICAgICAiZGV0YWlsZWQiOiAiUEVSU09OQUxfQ0FSRV9IQUlSX0FORF9CRUFVVFkiLAogICAgICAgICJwcmltYXJ5IjogIlBFUlNPTkFMX0NBUkUiCiAgICAgIH0sCiAgICAgICJwZXJzb25hbF9maW5hbmNlX2NhdGVnb3J5X2ljb25fdXJsIjogImh0dHBzOi8vcGxhaWQtY2F0ZWdvcnktaWNvbnMucGxhaWQuY29tL1BGQ19QRVJTT05BTF9DQVJFLnBuZyIsCiAgICAgICJ0cmFuc2FjdGlvbl9jb2RlIjogbnVsbCwKICAgICAgInRyYW5zYWN0aW9uX2lkIjogInhBYktvNzVxYTR1bTVhWjh6bmRwVU1kN2dXNXdieFU2NFZlb3oiLAogICAgICAidHJhbnNhY3Rpb25fdHlwZSI6ICJwbGFjZSIsCiAgICAgICJ1bm9mZmljaWFsX2N1cnJlbmN5X2NvZGUiOiBudWxsLAogICAgICAid2Vic2l0ZSI6IG51bGwKICAgIH0sCiAgICB7CiAgICAgICJhY2NvdW50X2lkIjogIlp2bEJMNWVNUFF0blhEVjZRclI5c1JlTlZWejFYQWllYWdEUHoiLAogICAgICAiYWNjb3VudF9vd25lciI6IG51bGwsCiAgICAgICJhbW91bnQiOiAyOTEuOTgsCiAgICAgICJhdXRob3JpemVkX2RhdGUiOiAiMjAyNC0xMS0wNiIsCiAgICAgICJhdXRob3JpemVkX2RhdGV0aW1lIjogbnVsbCwKICAgICAgImNhdGVnb3J5IjogWwogICAgICAgICJTZXJ2aWNlIiwKICAgICAgICAiVHJhdmVsIEFnZW50cyBhbmQgVG91ciBPcGVyYXRvcnMiCiAgICAgIF0sCiAgICAgICJjYXRlZ29yeV9pZCI6ICIxODA2NzAwMCIsCiAgICAgICJjaGVja19udW1iZXIiOiBudWxsLAogICAgICAiY291bnRlcnBhcnRpZXMiOiBbXSwKICAgICAgImRhdGUiOiAiMjAyNC0xMS0wNiIsCiAgICAgICJkYXRldGltZSI6IG51bGwsCiAgICAgICJpc29fY3VycmVuY3lfY29kZSI6ICJVU0QiLAogICAgICAibG9jYXRpb24iOiB7CiAgICAgICAgImFkZHJlc3MiOiBudWxsLAogICAgICAgICJjaXR5IjogbnVsbCwKICAgICAgICAiY291bnRyeSI6IG51bGwsCiAgICAgICAgImxhdCI6IG51bGwsCiAgICAgICAgImxvbiI6IG51bGwsCiAgICAgICAgInBvc3RhbF9jb2RlIjogbnVsbCwKICAgICAgICAicmVnaW9uIjogbnVsbCwKICAgICAgICAic3RvcmVfbnVtYmVyIjogbnVsbAogICAgICB9LAogICAgICAibG9nb191cmwiOiBudWxsLAogICAgICAibWVyY2hhbnRfZW50aXR5X2lkIjogbnVsbCwKICAgICAgIm1lcmNoYW50X25hbWUiOiBudWxsLAogICAgICAibmFtZSI6ICJBR09EQS5DT00iLAogICAgICAib3JpZ2luYWxfZGVzY3JpcHRpb24iOiAiQUdPREEuQ09NIiwKICAgICAgInBheW1lbnRfY2hhbm5lbCI6ICJvbmxpbmUiLAogICAgICAicGF5bWVudF9tZXRhIjogewogICAgICAgICJieV9vcmRlcl9vZiI6IG51bGwsCiAgICAgICAgInBheWVlIjogbnVsbCwKICAgICAgICAicGF5ZXIiOiBudWxsLAogICAgICAgICJwYXltZW50X21ldGhvZCI6IG51bGwsCiAgICAgICAgInBheW1lbnRfcHJvY2Vzc29yIjogbnVsbCwKICAgICAgICAicHBkX2lkIjogbnVsbCwKICAgICAgICAicmVhc29uIjogbnVsbCwKICAgICAgICAicmVmZXJlbmNlX251bWJlciI6IG51bGwKICAgICAgfSwKICAgICAgInBlbmRpbmciOiBmYWxzZSwKICAgICAgInBlbmRpbmdfdHJhbnNhY3Rpb25faWQiOiBudWxsLAogICAgICAicGVyc29uYWxfZmluYW5jZV9jYXRlZ29yeSI6IHsKICAgICAgICAiY29uZmlkZW5jZV9sZXZlbCI6ICJMT1ciLAogICAgICAgICJkZXRhaWxlZCI6ICJHRU5FUkFMX01FUkNIQU5ESVNFX09USEVSX0dFTkVSQUxfTUVSQ0hBTkRJU0UiLAogICAgICAgICJwcmltYXJ5IjogIkdFTkVSQUxfTUVSQ0hBTkRJU0UiCiAgICAgIH0sCiAgICAgICJwZXJzb25hbF9maW5hbmNlX2NhdGVnb3J5X2ljb25fdXJsIjogImh0dHBzOi8vcGxhaWQtY2F0ZWdvcnktaWNvbnMucGxhaWQuY29tL1BGQ19HRU5FUkFMX01FUkNIQU5ESVNFLnBuZyIsCiAgICAgICJ0cmFuc2FjdGlvbl9jb2RlIjogbnVsbCwKICAgICAgInRyYW5zYWN0aW9uX2lkIjogImR4NFpLNThYb1dDdmJYVlpsTmdhQzlSbDV3a0xFeENKRVFSd00iLAogICAgICAidHJhbnNhY3Rpb25fdHlwZSI6ICJwbGFjZSIsCiAgICAgICJ1bm9mZmljaWFsX2N1cnJlbmN5X2NvZGUiOiBudWxsLAogICAgICAid2Vic2l0ZSI6IG51bGwKICAgIH0sCiAgICB7CiAgICAgICJhY2NvdW50X2lkIjogIlp2bEJMNWVNUFF0blhEVjZRclI5c1JlTlZWejFYQWllYWdEUHoiLAogICAgICAiYWNjb3VudF9vd25lciI6IG51bGwsCiAgICAgICJhbW91bnQiOiA1Mi41LAogICAgICAiYXV0aG9yaXplZF9kYXRlIjogIjIwMjQtMTEtMDYiLAogICAgICAiYXV0aG9yaXplZF9kYXRldGltZSI6IG51bGwsCiAgICAgICJjYXRlZ29yeSI6IFsKICAgICAgICAiU2hvcHMiLAogICAgICAgICJTdXBlcm1hcmtldHMgYW5kIEdyb2NlcmllcyIKICAgICAgXSwKICAgICAgImNhdGVnb3J5X2lkIjogIjE5MDQ3MDAwIiwKICAgICAgImNoZWNrX251bWJlciI6IG51bGwsCiAgICAgICJjb3VudGVycGFydGllcyI6IFsKICAgICAgICB7CiAgICAgICAgICAiY29uZmlkZW5jZV9sZXZlbCI6ICJWRVJZX0hJR0giLAogICAgICAgICAgImVudGl0eV9pZCI6ICJFMUVxZGo3Qk1MM05MWU5BTzU2MmtaajVSMEo0RWtRbzZnWUpBIiwKICAgICAgICAgICJsb2dvX3VybCI6ICJodHRwczovL3BsYWlkLW1lcmNoYW50LWxvZ29zLnBsYWlkLmNvbS9rcm9nZXJfNTU1LnBuZyIsCiAgICAgICAgICAibmFtZSI6ICJLcm9nZXIiLAogICAgICAgICAgInBob25lX251bWJlciI6IG51bGwsCiAgICAgICAgICAidHlwZSI6ICJtZXJjaGFudCIsCiAgICAgICAgICAid2Vic2l0ZSI6ICJrcm9nZXIuY29tIgogICAgICAgIH0KICAgICAgXSwKICAgICAgImRhdGUiOiAiMjAyNC0xMS0wNiIsCiAgICAgICJkYXRldGltZSI6IG51bGwsCiAgICAgICJpc29fY3VycmVuY3lfY29kZSI6ICJVU0QiLAogICAgICAibG9jYXRpb24iOiB7CiAgICAgICAgImFkZHJlc3MiOiBudWxsLAogICAgICAgICJjaXR5IjogbnVsbCwKICAgICAgICAiY291bnRyeSI6IG51bGwsCiAgICAgICAgImxhdCI6IG51bGwsCiAgICAgICAgImxvbiI6IG51bGwsCiAgICAgICAgInBvc3RhbF9jb2RlIjogbnVsbCwKICAgICAgICAicmVnaW9uIjogbnVsbCwKICAgICAgICAic3RvcmVfbnVtYmVyIjogbnVsbAogICAgICB9LAogICAgICAibG9nb191cmwiOiAiaHR0cHM6Ly9wbGFpZC1tZXJjaGFudC1sb2dvcy5wbGFpZC5jb20va3JvZ2VyXzU1NS5wbmciLAogICAgICAibWVyY2hhbnRfZW50aXR5X2lkIjogIkUxRXFkajdCTUwzTkxZTkFPNTYya1pqNVIwSjRFa1FvNmdZSkEiLAogICAgICAibWVyY2hhbnRfbmFtZSI6ICJLcm9nZXIiLAogICAgICAibmFtZSI6ICJLcm9nZXIiLAogICAgICAib3JpZ2luYWxfZGVzY3JpcHRpb24iOiAiS1JPR0VSIDAxMjMiLAogICAgICAicGF5bWVudF9jaGFubmVsIjogImluIHN0b3JlIiwKICAgICAgInBheW1lbnRfbWV0YSI6IHsKICAgICAgICAiYnlfb3JkZXJfb2YiOiBudWxsLAogICAgICAgICJwYXllZSI6IG51bGwsCiAgICAgICAgInBheWVyIjogbnVsbCwKICAgICAgICAicGF5bWVudF9tZXRob2QiOiBudWxsLAogICAgICAgICJwYXltZW50X3Byb2Nlc3NvciI6IG51bGwsCiAgICAgICAgInBwZF9pZCI6IG51bGwsCiAgICAgICAgInJlYXNvbiI6IG51bGwsCiAgICAgICAgInJlZmVyZW5jZV9udW1iZXIiOiBudWxsCiAgICAgIH0sCiAgICAgICJwZW5kaW5nIjogZmFsc2UsCiAgICAgICJwZW5kaW5nX3RyYW5zYWN0aW9uX2lkIjogbnVsbCwKICAgICAgInBlcnNvbmFsX2ZpbmFuY2VfY2F0ZWdvcnkiOiB7CiAgICAgICAgImNvbmZpZGVuY2VfbGV2ZWwiOiAiVkVSWV9ISUdIIiwKICAgICAgICAiZGV0YWlsZWQiOiAiRk9PRF9BTkRfRFJJTktfR1JPQ0VSSUVTIiwKICAgICAgICAicHJpbWFyeSI6ICJGT09EX0FORF9EUklOSyIKICAgICAgfSwKICAgICAgInBlcnNvbmFsX2ZpbmFuY2VfY2F0ZWdvcnlfaWNvbl91cmwiOiAiaHR0cHM6Ly9wbGFpZC1jYXRlZ29yeS1pY29ucy5wbGFpZC5jb20vUEZDX0ZPT0RfQU5EX0RSSU5LLnBuZyIsCiAgICAgICJ0cmFuc2FjdGlvbl9jb2RlIjogbnVsbCwKICAgICAgInRyYW5zYWN0aW9uX2lkIjogImF6eDdBNTlYMWdjNW9yVjZkUHczc29xQWpKM3paeXNaNVFEcTQiLAogICAgICAidHJhbnNhY3Rpb25fdHlwZSI6ICJwbGFjZSIsCiAgICAgICJ1bm9mZmljaWFsX2N1cnJlbmN5X2NvZGUiOiBudWxsLAogICAgICAid2Vic2l0ZSI6ICJrcm9nZXIuY29tIgogICAgfSwKICAgIHsKICAgICAgImFjY291bnRfaWQiOiAiWnZsQkw1ZU1QUXRuWERWNlFyUjlzUmVOVlZ6MVhBaWVhZ0RQeiIsCiAgICAgICJhY2NvdW50X293bmVyIjogbnVsbCwKICAgICAgImFtb3VudCI6IDU3Mi4zLAogICAgICAiYXV0aG9yaXplZF9kYXRlIjogIjIwMjQtMTEtMDYiLAogICAgICAiYXV0aG9yaXplZF9kYXRldGltZSI6IG51bGwsCiAgICAgICJjYXRlZ29yeSI6IFsKICAgICAgICAiU2hvcHMiLAogICAgICAgICJXYXJlaG91c2VzIGFuZCBXaG9sZXNhbGUgU3RvcmVzIgogICAgICBdLAogICAgICAiY2F0ZWdvcnlfaWQiOiAiMTkwNTEwMDAiLAogICAgICAiY2hlY2tfbnVtYmVyIjogbnVsbCwKICAgICAgImNvdW50ZXJwYXJ0aWVzIjogWwogICAgICAgIHsKICAgICAgICAgICJjb25maWRlbmNlX2xldmVsIjogIlZFUllfSElHSCIsCiAgICAgICAgICAiZW50aXR5X2lkIjogIktBRTBuV05wRVJMWlF5TTZBTXlEbU5YamtRbjc2aktRQm1ScUEiLAogICAgICAgICAgImxvZ29fdXJsIjogImh0dHBzOi8vcGxhaWQtbWVyY2hhbnQtbG9nb3MucGxhaWQuY29tL3NhbXNfY2x1Yl84NTgucG5nIiwKICAgICAgICAgICJuYW1lIjogIlNhbSdzIENsdWIiLAogICAgICAgICAgInBob25lX251bWJlciI6IG51bGwsCiAgICAgICAgICAidHlwZSI6ICJtZXJjaGFudCIsCiAgICAgICAgICAid2Vic2l0ZSI6ICJzYW1zY2x1Yi5jb20iCiAgICAgICAgfQogICAgICBdLAogICAgICAiZGF0ZSI6ICIyMDI0LTExLTA2IiwKICAgICAgImRhdGV0aW1lIjogbnVsbCwKICAgICAgImlzb19jdXJyZW5jeV9jb2RlIjogIlVTRCIsCiAgICAgICJsb2NhdGlvbiI6IHsKICAgICAgICAiYWRkcmVzcyI6IG51bGwsCiAgICAgICAgImNpdHkiOiBudWxsLAogICAgICAgICJjb3VudHJ5IjogbnVsbCwKICAgICAgICAibGF0IjogbnVsbCwKICAgICAgICAibG9uIjogbnVsbCwKICAgICAgICAicG9zdGFsX2NvZGUiOiBudWxsLAogICAgICAgICJyZWdpb24iOiBudWxsLAogICAgICAgICJzdG9yZV9udW1iZXIiOiAiMDEyMyIKICAgICAgfSwKICAgICAgImxvZ29fdXJsIjogImh0dHBzOi8vcGxhaWQtbWVyY2hhbnQtbG9nb3MucGxhaWQuY29tL3NhbXNfY2x1Yl84NTgucG5nIiwKICAgICAgIm1lcmNoYW50X2VudGl0eV9pZCI6ICJLQUUwbldOcEVSTFpReU02QU15RG1OWGprUW43NmpLUUJtUnFBIiwKICAgICAgIm1lcmNoYW50X25hbWUiOiAiU2FtJ3MgQ2x1YiIsCiAgICAgICJuYW1lIjogIlNhbSdzIENsdWIiLAogICAgICAib3JpZ2luYWxfZGVzY3JpcHRpb24iOiAiU0FNU0NMVUIgIzAxMjMiLAogICAgICAicGF5bWVudF9jaGFubmVsIjogImluIHN0b3JlIiwKICAgICAgInBheW1lbnRfbWV0YSI6IHsKICAgICAgICAiYnlfb3JkZXJfb2YiOiBudWxsLAogICAgICAgICJwYXllZSI6IG51bGwsCiAgICAgICAgInBheWVyIjogbnVsbCwKICAgICAgICAicGF5bWVudF9tZXRob2QiOiBudWxsLAogICAgICAgICJwYXltZW50X3Byb2Nlc3NvciI6IG51bGwsCiAgICAgICAgInBwZF9pZCI6IG51bGwsCiAgICAgICAgInJlYXNvbiI6IG51bGwsCiAgICAgICAgInJlZmVyZW5jZV9udW1iZXIiOiBudWxsCiAgICAgIH0sCiAgICAgICJwZW5kaW5nIjogZmFsc2UsCiAgICAgICJwZW5kaW5nX3RyYW5zYWN0aW9uX2lkIjogbnVsbCwKICAgICAgInBlcnNvbmFsX2ZpbmFuY2VfY2F0ZWdvcnkiOiB7CiAgICAgICAgImNvbmZpZGVuY2VfbGV2ZWwiOiAiVkVSWV9ISUdIIiwKICAgICAgICAiZGV0YWlsZWQiOiAiR0VORVJBTF9NRVJDSEFORElTRV9TVVBFUlNUT1JFUyIsCiAgICAgICAgInByaW1hcnkiOiAiR0VORVJBTF9NRVJDSEFORElTRSIKICAgICAgfSwKICAgICAgInBlcnNvbmFsX2ZpbmFuY2VfY2F0ZWdvcnlfaWNvbl91cmwiOiAiaHR0cHM6Ly9wbGFpZC1jYXRlZ29yeS1pY29ucy5wbGFpZC5jb20vUEZDX0dFTkVSQUxfTUVSQ0hBTkRJU0UucG5nIiwKICAgICAgInRyYW5zYWN0aW9uX2NvZGUiOiBudWxsLAogICAgICAidHJhbnNhY3Rpb25faWQiOiAiNDlxWjRvR2J4N1Q4NzNYRG9lYm5GbWxiZFc0ZURhRkpiQUxleiIsCiAgICAgICJ0cmFuc2FjdGlvbl90eXBlIjogInBsYWNlIiwKICAgICAgInVub2ZmaWNpYWxfY3VycmVuY3lfY29kZSI6IG51bGwsCiAgICAgICJ3ZWJzaXRlIjogInNhbXNjbHViLmNvbSIKICAgIH0sCiAgICB7CiAgICAgICJhY2NvdW50X2lkIjogIlp2bEJMNWVNUFF0blhEVjZRclI5c1JlTlZWejFYQWllYWdEUHoiLAogICAgICAiYWNjb3VudF9vd25lciI6IG51bGwsCiAgICAgICJhbW91bnQiOiAyNi41MSwKICAgICAgImF1dGhvcml6ZWRfZGF0ZSI6ICIyMDI0LTExLTAxIiwKICAgICAgImF1dGhvcml6ZWRfZGF0ZXRpbWUiOiBudWxsLAogICAgICAiY2F0ZWdvcnkiOiBbCiAgICAgICAgIlNob3BzIiwKICAgICAgICAiRnVybml0dXJlIGFuZCBIb21lIERlY29yIgogICAgICBdLAogICAgICAiY2F0ZWdvcnlfaWQiOiAiMTkwMjcwMDAiLAogICAgICAiY2hlY2tfbnVtYmVyIjogbnVsbCwKICAgICAgImNvdW50ZXJwYXJ0aWVzIjogWwogICAgICAgIHsKICAgICAgICAgICJjb25maWRlbmNlX2xldmVsIjogIlZFUllfSElHSCIsCiAgICAgICAgICAiZW50aXR5X2lkIjogIjBMWlk0ajF6UlZOMUp6YmJhT04yS1ZSWW9kd3JNckpFYVc4TDAiLAogICAgICAgICAgImxvZ29fdXJsIjogImh0dHBzOi8vcGxhaWQtbWVyY2hhbnQtbG9nb3MucGxhaWQuY29tL2JpZ19sb3RzXzExMC5wbmciLAogICAgICAgICAgIm5hbWUiOiAiQmlnIExvdHMiLAogICAgICAgICAgInBob25lX251bWJlciI6IG51bGwsCiAgICAgICAgICAidHlwZSI6ICJtZXJjaGFudCIsCiAgICAgICAgICAid2Vic2l0ZSI6ICJiaWdsb3RzLmNvbSIKICAgICAgICB9CiAgICAgIF0sCiAgICAgICJkYXRlIjogIjIwMjQtMTEtMDMiLAogICAgICAiZGF0ZXRpbWUiOiBudWxsLAogICAgICAiaXNvX2N1cnJlbmN5X2NvZGUiOiAiVVNEIiwKICAgICAgImxvY2F0aW9uIjogewogICAgICAgICJhZGRyZXNzIjogbnVsbCwKICAgICAgICAiY2l0eSI6IG51bGwsCiAgICAgICAgImNvdW50cnkiOiBudWxsLAogICAgICAgICJsYXQiOiBudWxsLAogICAgICAgICJsb24iOiBudWxsLAogICAgICAgICJwb3N0YWxfY29kZSI6IG51bGwsCiAgICAgICAgInJlZ2lvbiI6IG51bGwsCiAgICAgICAgInN0b3JlX251bWJlciI6ICIwMTIzIgogICAgICB9LAogICAgICAibG9nb191cmwiOiAiaHR0cHM6Ly9wbGFpZC1tZXJjaGFudC1sb2dvcy5wbGFpZC5jb20vYmlnX2xvdHNfMTEwLnBuZyIsCiAgICAgICJtZXJjaGFudF9lbnRpdHlfaWQiOiAiMExaWTRqMXpSVk4xSnpiYmFPTjJLVlJZb2R3ck1ySkVhVzhMMCIsCiAgICAgICJtZXJjaGFudF9uYW1lIjogIkJpZyBMb3RzIiwKICAgICAgIm5hbWUiOiAiQmlnIExvdHMiLAogICAgICAib3JpZ2luYWxfZGVzY3JpcHRpb24iOiAiQklHIExPVFMgU1RPUkVTIC0gIzAxMjMiLAogICAgICAicGF5bWVudF9jaGFubmVsIjogImluIHN0b3JlIiwKICAgICAgInBheW1lbnRfbWV0YSI6IHsKICAgICAgICAiYnlfb3JkZXJfb2YiOiBudWxsLAogICAgICAgICJwYXllZSI6IG51bGwsCiAgICAgICAgInBheWVyIjogbnVsbCwKICAgICAgICAicGF5bWVudF9tZXRob2QiOiBudWxsLAogICAgICAgICJwYXltZW50X3Byb2Nlc3NvciI6IG51bGwsCiAgICAgICAgInBwZF9pZCI6IG51bGwsCiAgICAgICAgInJlYXNvbiI6IG51bGwsCiAgICAgICAgInJlZmVyZW5jZV9udW1iZXIiOiBudWxsCiAgICAgIH0sCiAgICAgICJwZW5kaW5nIjogZmFsc2UsCiAgICAgICJwZW5kaW5nX3RyYW5zYWN0aW9uX2lkIjogbnVsbCwKICAgICAgInBlcnNvbmFsX2ZpbmFuY2VfY2F0ZWdvcnkiOiB7CiAgICAgICAgImNvbmZpZGVuY2VfbGV2ZWwiOiAiVkVSWV9ISUdIIiwKICAgICAgICAiZGV0YWlsZWQiOiAiR0VORVJBTF9NRVJDSEFORElTRV9ERVBBUlRNRU5UX1NUT1JFUyIsCiAgICAgICAgInByaW1hcnkiOiAiR0VORVJBTF9NRVJDSEFORElTRSIKICAgICAgfSwKICAgICAgInBlcnNvbmFsX2ZpbmFuY2VfY2F0ZWdvcnlfaWNvbl91cmwiOiAiaHR0cHM6Ly9wbGFpZC1jYXRlZ29yeS1pY29ucy5wbGFpZC5jb20vUEZDX0dFTkVSQUxfTUVSQ0hBTkRJU0UucG5nIiwKICAgICAgInRyYW5zYWN0aW9uX2NvZGUiOiBudWxsLAogICAgICAidHJhbnNhY3Rpb25faWQiOiAiTm9rUGQ1Z05semZvVjFieXpHa2xzN0pNUDVHM1E5c3k2NVF2dyIsCiAgICAgICJ0cmFuc2FjdGlvbl90eXBlIjogInBsYWNlIiwKICAgICAgInVub2ZmaWNpYWxfY3VycmVuY3lfY29kZSI6IG51bGwsCiAgICAgICJ3ZWJzaXRlIjogImJpZ2xvdHMuY29tIgogICAgfSwKICAgIHsKICAgICAgImFjY291bnRfaWQiOiAiWnZsQkw1ZU1QUXRuWERWNlFyUjlzUmVOVlZ6MVhBaWVhZ0RQeiIsCiAgICAgICJhY2NvdW50X293bmVyIjogbnVsbCwKICAgICAgImFtb3VudCI6IDE3LjUsCiAgICAgICJhdXRob3JpemVkX2RhdGUiOiAiMjAyNC0xMS0wMSIsCiAgICAgICJhdXRob3JpemVkX2RhdGV0aW1lIjogbnVsbCwKICAgICAgImNhdGVnb3J5IjogWwogICAgICAgICJGb29kIGFuZCBEcmluayIsCiAgICAgICAgIlJlc3RhdXJhbnRzIiwKICAgICAgICAiQ29mZmVlIFNob3AiCiAgICAgIF0sCiAgICAgICJjYXRlZ29yeV9pZCI6ICIxMzAwNTA0MyIsCiAgICAgICJjaGVja19udW1iZXIiOiBudWxsLAogICAgICAiY291bnRlcnBhcnRpZXMiOiBbCiAgICAgICAgewogICAgICAgICAgImNvbmZpZGVuY2VfbGV2ZWwiOiAiVkVSWV9ISUdIIiwKICAgICAgICAgICJlbnRpdHlfaWQiOiAiTlpBSlE1d1lkbzFXMXAzOVg1cTVncGIxNU9NZTM5cGo0cEpCYiIsCiAgICAgICAgICAibG9nb191cmwiOiAiaHR0cHM6Ly9wbGFpZC1tZXJjaGFudC1sb2dvcy5wbGFpZC5jb20vc3RhcmJ1Y2tzXzk1Ni5wbmciLAogICAgICAgICAgIm5hbWUiOiAiU3RhcmJ1Y2tzIiwKICAgICAgICAgICJwaG9uZV9udW1iZXIiOiBudWxsLAogICAgICAgICAgInR5cGUiOiAibWVyY2hhbnQiLAogICAgICAgICAgIndlYnNpdGUiOiAic3RhcmJ1Y2tzLmNvbSIKICAgICAgICB9CiAgICAgIF0sCiAgICAgICJkYXRlIjogIjIwMjQtMTEtMDQiLAogICAgICAiZGF0ZXRpbWUiOiBudWxsLAogICAgICAiaXNvX2N1cnJlbmN5X2NvZGUiOiAiVVNEIiwKICAgICAgImxvY2F0aW9uIjogewogICAgICAgICJhZGRyZXNzIjogbnVsbCwKICAgICAgICAiY2l0eSI6IG51bGwsCiAgICAgICAgImNvdW50cnkiOiBudWxsLAogICAgICAgICJsYXQiOiBudWxsLAogICAgICAgICJsb24iOiBudWxsLAogICAgICAgICJwb3N0YWxfY29kZSI6IG51bGwsCiAgICAgICAgInJlZ2lvbiI6ICJXQSIsCiAgICAgICAgInN0b3JlX251bWJlciI6IG51bGwKICAgICAgfSwKICAgICAgImxvZ29fdXJsIjogImh0dHBzOi8vcGxhaWQtbWVyY2hhbnQtbG9nb3MucGxhaWQuY29tL3N0YXJidWNrc185NTYucG5nIiwKICAgICAgIm1lcmNoYW50X2VudGl0eV9pZCI6ICJOWkFKUTV3WWRvMVcxcDM5WDVxNWdwYjE1T01lMzlwajRwSkJiIiwKICAgICAgIm1lcmNoYW50X25hbWUiOiAiU3RhcmJ1Y2tzIiwKICAgICAgIm5hbWUiOiAiU3RhcmJ1Y2tzIiwKICAgICAgIm9yaWdpbmFsX2Rlc2NyaXB0aW9uIjogIlNUQVJCVUNLUyAgICAgICAgICAgICAgICAgMDEyLTAxMi0wMTIzIFdBIiwKICAgICAgInBheW1lbnRfY2hhbm5lbCI6ICJvbmxpbmUiLAogICAgICAicGF5bWVudF9tZXRhIjogewogICAgICAgICJieV9vcmRlcl9vZiI6IG51bGwsCiAgICAgICAgInBheWVlIjogbnVsbCwKICAgICAgICAicGF5ZXIiOiBudWxsLAogICAgICAgICJwYXltZW50X21ldGhvZCI6IG51bGwsCiAgICAgICAgInBheW1lbnRfcHJvY2Vzc29yIjogbnVsbCwKICAgICAgICAicHBkX2lkIjogbnVsbCwKICAgICAgICAicmVhc29uIjogbnVsbCwKICAgICAgICAicmVmZXJlbmNlX251bWJlciI6IG51bGwKICAgICAgfSwKICAgICAgInBlbmRpbmciOiBmYWxzZSwKICAgICAgInBlbmRpbmdfdHJhbnNhY3Rpb25faWQiOiBudWxsLAogICAgICAicGVyc29uYWxfZmluYW5jZV9jYXRlZ29yeSI6IHsKICAgICAgICAiY29uZmlkZW5jZV9sZXZlbCI6ICJWRVJZX0hJR0giLAogICAgICAgICJkZXRhaWxlZCI6ICJGT09EX0FORF9EUklOS19DT0ZGRUUiLAogICAgICAgICJwcmltYXJ5IjogIkZPT0RfQU5EX0RSSU5LIgogICAgICB9LAogICAgICAicGVyc29uYWxfZmluYW5jZV9jYXRlZ29yeV9pY29uX3VybCI6ICJodHRwczovL3BsYWlkLWNhdGVnb3J5LWljb25zLnBsYWlkLmNvbS9QRkNfRk9PRF9BTkRfRFJJTksucG5nIiwKICAgICAgInRyYW5zYWN0aW9uX2NvZGUiOiBudWxsLAogICAgICAidHJhbnNhY3Rpb25faWQiOiAiUDhuNzQ1b1dLM2NuWEt5VzMxeDlzbERCNzV4WkVlaW82V0FEbiIsCiAgICAgICJ0cmFuc2FjdGlvbl90eXBlIjogInBsYWNlIiwKICAgICAgInVub2ZmaWNpYWxfY3VycmVuY3lfY29kZSI6IG51bGwsCiAgICAgICJ3ZWJzaXRlIjogInN0YXJidWNrcy5jb20iCiAgICB9LAogICAgewogICAgICAiYWNjb3VudF9pZCI6ICJadmxCTDVlTVBRdG5YRFY2UXJSOXNSZU5WVnoxWEFpZWFnRFB6IiwKICAgICAgImFjY291bnRfb3duZXIiOiBudWxsLAogICAgICAiYW1vdW50IjogOC42OSwKICAgICAgImF1dGhvcml6ZWRfZGF0ZSI6ICIyMDI0LTExLTA0IiwKICAgICAgImF1dGhvcml6ZWRfZGF0ZXRpbWUiOiBudWxsLAogICAgICAiY2F0ZWdvcnkiOiBbCiAgICAgICAgIkZvb2QgYW5kIERyaW5rIiwKICAgICAgICAiUmVzdGF1cmFudHMiCiAgICAgIF0sCiAgICAgICJjYXRlZ29yeV9pZCI6ICIxMzAwNTAwMCIsCiAgICAgICJjaGVja19udW1iZXIiOiBudWxsLAogICAgICAiY291bnRlcnBhcnRpZXMiOiBbCiAgICAgICAgewogICAgICAgICAgImNvbmZpZGVuY2VfbGV2ZWwiOiAiTE9XIiwKICAgICAgICAgICJlbnRpdHlfaWQiOiBudWxsLAogICAgICAgICAgImxvZ29fdXJsIjogbnVsbCwKICAgICAgICAgICJuYW1lIjogIldpY2giLAogICAgICAgICAgInBob25lX251bWJlciI6IG51bGwsCiAgICAgICAgICAidHlwZSI6ICJtZXJjaGFudCIsCiAgICAgICAgICAid2Vic2l0ZSI6IG51bGwKICAgICAgICB9CiAgICAgIF0sCiAgICAgICJkYXRlIjogIjIwMjQtMTEtMDQiLAogICAgICAiZGF0ZXRpbWUiOiBudWxsLAogICAgICAiaXNvX2N1cnJlbmN5X2NvZGUiOiAiVVNEIiwKICAgICAgImxvY2F0aW9uIjogewogICAgICAgICJhZGRyZXNzIjogbnVsbCwKICAgICAgICAiY2l0eSI6IG51bGwsCiAgICAgICAgImNvdW50cnkiOiBudWxsLAogICAgICAgICJsYXQiOiBudWxsLAogICAgICAgICJsb24iOiBudWxsLAogICAgICAgICJwb3N0YWxfY29kZSI6IG51bGwsCiAgICAgICAgInJlZ2lvbiI6IG51bGwsCiAgICAgICAgInN0b3JlX251bWJlciI6ICIwMTIiCiAgICAgIH0sCiAgICAgICJsb2dvX3VybCI6IG51bGwsCiAgICAgICJtZXJjaGFudF9lbnRpdHlfaWQiOiBudWxsLAogICAgICAibWVyY2hhbnRfbmFtZSI6ICJXaWNoIiwKICAgICAgIm5hbWUiOiAiV2hpY2ggV2ljaCIsCiAgICAgICJvcmlnaW5hbF9kZXNjcmlwdGlvbiI6ICJXSElDSCBXSUNIICMwMTIiLAogICAgICAicGF5bWVudF9jaGFubmVsIjogImluIHN0b3JlIiwKICAgICAgInBheW1lbnRfbWV0YSI6IHsKICAgICAgICAiYnlfb3JkZXJfb2YiOiBudWxsLAogICAgICAgICJwYXllZSI6IG51bGwsCiAgICAgICAgInBheWVyIjogbnVsbCwKICAgICAgICAicGF5bWVudF9tZXRob2QiOiBudWxsLAogICAgICAgICJwYXltZW50X3Byb2Nlc3NvciI6IG51bGwsCiAgICAgICAgInBwZF9pZCI6IG51bGwsCiAgICAgICAgInJlYXNvbiI6IG51bGwsCiAgICAgICAgInJlZmVyZW5jZV9udW1iZXIiOiBudWxsCiAgICAgIH0sCiAgICAgICJwZW5kaW5nIjogZmFsc2UsCiAgICAgICJwZW5kaW5nX3RyYW5zYWN0aW9uX2lkIjogbnVsbCwKICAgICAgInBlcnNvbmFsX2ZpbmFuY2VfY2F0ZWdvcnkiOiB7CiAgICAgICAgImNvbmZpZGVuY2VfbGV2ZWwiOiAiTE9XIiwKICAgICAgICAiZGV0YWlsZWQiOiAiR0VORVJBTF9NRVJDSEFORElTRV9PVEhFUl9HRU5FUkFMX01FUkNIQU5ESVNFIiwKICAgICAgICAicHJpbWFyeSI6ICJHRU5FUkFMX01FUkNIQU5ESVNFIgogICAgICB9LAogICAgICAicGVyc29uYWxfZmluYW5jZV9jYXRlZ29yeV9pY29uX3VybCI6ICJodHRwczovL3BsYWlkLWNhdGVnb3J5LWljb25zLnBsYWlkLmNvbS9QRkNfR0VORVJBTF9NRVJDSEFORElTRS5wbmciLAogICAgICAidHJhbnNhY3Rpb25fY29kZSI6IG51bGwsCiAgICAgICJ0cmFuc2FjdGlvbl9pZCI6ICJqalE3ZGxQNUd5Q2JOYXZ3N3J6cHR5NE1RbWs5b3BpNldMYTVrIiwKICAgICAgInRyYW5zYWN0aW9uX3R5cGUiOiAicGxhY2UiLAogICAgICAidW5vZmZpY2lhbF9jdXJyZW5jeV9jb2RlIjogbnVsbCwKICAgICAgIndlYnNpdGUiOiBudWxsCiAgICB9LAogICAgewogICAgICAiYWNjb3VudF9pZCI6ICJadmxCTDVlTVBRdG5YRFY2UXJSOXNSZU5WVnoxWEFpZWFnRFB6IiwKICAgICAgImFjY291bnRfb3duZXIiOiBudWxsLAogICAgICAiYW1vdW50IjogMjIuNSwKICAgICAgImF1dGhvcml6ZWRfZGF0ZSI6ICIyMDI0LTExLTA0IiwKICAgICAgImF1dGhvcml6ZWRfZGF0ZXRpbWUiOiBudWxsLAogICAgICAiY2F0ZWdvcnkiOiBbCiAgICAgICAgIkZvb2QgYW5kIERyaW5rIiwKICAgICAgICAiUmVzdGF1cmFudHMiCiAgICAgIF0sCiAgICAgICJjYXRlZ29yeV9pZCI6ICIxMzAwNTAwMCIsCiAgICAgICJjaGVja19udW1iZXIiOiBudWxsLAogICAgICAiY291bnRlcnBhcnRpZXMiOiBbCiAgICAgICAgewogICAgICAgICAgImNvbmZpZGVuY2VfbGV2ZWwiOiAiTE9XIiwKICAgICAgICAgICJlbnRpdHlfaWQiOiBudWxsLAogICAgICAgICAgImxvZ29fdXJsIjogbnVsbCwKICAgICAgICAgICJuYW1lIjogIlRoZSBQaWcgXHUwMDI2IFBhcnJvdCIsCiAgICAgICAgICAicGhvbmVfbnVtYmVyIjogbnVsbCwKICAgICAgICAgICJ0eXBlIjogIm1lcmNoYW50IiwKICAgICAgICAgICJ3ZWJzaXRlIjogbnVsbAogICAgICAgIH0KICAgICAgXSwKICAgICAgImRhdGUiOiAiMjAyNC0xMS0wNCIsCiAgICAgICJkYXRldGltZSI6IG51bGwsCiAgICAgICJpc29fY3VycmVuY3lfY29kZSI6ICJVU0QiLAogICAgICAibG9jYXRpb24iOiB7CiAgICAgICAgImFkZHJlc3MiOiBudWxsLAogICAgICAgICJjaXR5IjogbnVsbCwKICAgICAgICAiY291bnRyeSI6IG51bGwsCiAgICAgICAgImxhdCI6IG51bGwsCiAgICAgICAgImxvbiI6IG51bGwsCiAgICAgICAgInBvc3RhbF9jb2RlIjogbnVsbCwKICAgICAgICAicmVnaW9uIjogbnVsbCwKICAgICAgICAic3RvcmVfbnVtYmVyIjogbnVsbAogICAgICB9LAogICAgICAibG9nb191cmwiOiBudWxsLAogICAgICAibWVyY2hhbnRfZW50aXR5X2lkIjogbnVsbCwKICAgICAgIm1lcmNoYW50X25hbWUiOiAiVGhlIFBpZyBcdTAwMjYgUGFycm90IiwKICAgICAgIm5hbWUiOiAiVEhFIFBJRyBcdTAwMjYgUEFSUk9UIiwKICAgICAgIm9yaWdpbmFsX2Rlc2NyaXB0aW9uIjogIlRIRSBQSUcgXHUwMDI2IFBBUlJPVCIsCiAgICAgICJwYXltZW50X2NoYW5uZWwiOiAiaW4gc3RvcmUiLAogICAgICAicGF5bWVudF9tZXRhIjogewogICAgICAgICJieV9vcmRlcl9vZiI6IG51bGwsCiAgICAgICAgInBheWVlIjogbnVsbCwKICAgICAgICAicGF5ZXIiOiBudWxsLAogICAgICAgICJwYXltZW50X21ldGhvZCI6IG51bGwsCiAgICAgICAgInBheW1lbnRfcHJvY2Vzc29yIjogbnVsbCwKICAgICAgICAicHBkX2lkIjogbnVsbCwKICAgICAgICAicmVhc29uIjogbnVsbCwKICAgICAgICAicmVmZXJlbmNlX251bWJlciI6IG51bGwKICAgICAgfSwKICAgICAgInBlbmRpbmciOiBmYWxzZSwKICAgICAgInBlbmRpbmdfdHJhbnNhY3Rpb25faWQiOiBudWxsLAogICAgICAicGVyc29uYWxfZmluYW5jZV9jYXRlZ29yeSI6IHsKICAgICAgICAiY29uZmlkZW5jZV9sZXZlbCI6ICJMT1ciLAogICAgICAgICJkZXRhaWxlZCI6ICJHRU5FUkFMX01FUkNIQU5ESVNFX09USEVSX0dFTkVSQUxfTUVSQ0hBTkRJU0UiLAogICAgICAgICJwcmltYXJ5IjogIkdFTkVSQUxfTUVSQ0hBTkRJU0UiCiAgICAgIH0sCiAgICAgICJwZXJzb25hbF9maW5hbmNlX2NhdGVnb3J5X2ljb25fdXJsIjogImh0dHBzOi8vcGxhaWQtY2F0ZWdvcnktaWNvbnMucGxhaWQuY29tL1BGQ19HRU5FUkFMX01FUkNIQU5ESVNFLnBuZyIsCiAgICAgICJ0cmFuc2FjdGlvbl9jb2RlIjogbnVsbCwKICAgICAgInRyYW5zYWN0aW9uX2lkIjogIjc2elhqRWxiNFp0OFJMNERBek05Rjlad2o4R1c2RENkSm54VzQiLAogICAgICAidHJhbnNhY3Rpb25fdHlwZSI6ICJwbGFjZSIsCiAgICAgICJ1bm9mZmljaWFsX2N1cnJlbmN5X2NvZGUiOiBudWxsLAogICAgICAid2Vic2l0ZSI6IG51bGwKICAgIH0sCiAgICB7CiAgICAgICJhY2NvdW50X2lkIjogIlp2bEJMNWVNUFF0blhEVjZRclI5c1JlTlZWejFYQWllYWdEUHoiLAogICAgICAiYWNjb3VudF9vd25lciI6IG51bGwsCiAgICAgICJhbW91bnQiOiAyNy44MywKICAgICAgImF1dGhvcml6ZWRfZGF0ZSI6ICIyMDI0LTExLTA0IiwKICAgICAgImF1dGhvcml6ZWRfZGF0ZXRpbWUiOiBudWxsLAogICAgICAiY2F0ZWdvcnkiOiBbCiAgICAgICAgIlRyYXZlbCIsCiAgICAgICAgIkdhcyBTdGF0aW9ucyIKICAgICAgXSwKICAgICAgImNhdGVnb3J5X2lkIjogIjIyMDA5MDAwIiwKICAgICAgImNoZWNrX251bWJlciI6IG51bGwsCiAgICAgICJjb3VudGVycGFydGllcyI6IFsKICAgICAgICB7CiAgICAgICAgICAiY29uZmlkZW5jZV9sZXZlbCI6ICJMT1ciLAogICAgICAgICAgImVudGl0eV9pZCI6IG51bGwsCiAgICAgICAgICAibG9nb191cmwiOiBudWxsLAogICAgICAgICAgIm5hbWUiOiAiVW5pdGVkIE9pbCIsCiAgICAgICAgICAicGhvbmVfbnVtYmVyIjogbnVsbCwKICAgICAgICAgICJ0eXBlIjogIm1lcmNoYW50IiwKICAgICAgICAgICJ3ZWJzaXRlIjogbnVsbAogICAgICAgIH0KICAgICAgXSwKICAgICAgImRhdGUiOiAiMjAyNC0xMS0wNCIsCiAgICAgICJkYXRldGltZSI6IG51bGwsCiAgICAgICJpc29fY3VycmVuY3lfY29kZSI6ICJVU0QiLAogICAgICAibG9jYXRpb24iOiB7CiAgICAgICAgImFkZHJlc3MiOiBudWxsLAogICAgICAgICJjaXR5IjogbnVsbCwKICAgICAgICAiY291bnRyeSI6IG51bGwsCiAgICAgICAgImxhdCI6IG51bGwsCiAgICAgICAgImxvbiI6IG51bGwsCiAgICAgICAgInBvc3RhbF9jb2RlIjogbnVsbCwKICAgICAgICAicmVnaW9uIjogbnVsbCwKICAgICAgICAic3RvcmVfbnVtYmVyIjogbnVsbAogICAgICB9LAogICAgICAibG9nb191cmwiOiBudWxsLAogICAgICAibWVyY2hhbnRfZW50aXR5X2lkIjogbnVsbCwKICAgICAgIm1lcmNoYW50X25hbWUiOiAiVW5pdGVkIE9pbCIsCiAgICAgICJuYW1lIjogIjAxIC0gVU5JVEVEIE9JTCAwMTIiLAogICAgICAib3JpZ2luYWxfZGVzY3JpcHRpb24iOiAiMDEgLSBVTklURUQgT0lMIDAxMiIsCiAgICAgICJwYXltZW50X2NoYW5uZWwiOiAiaW4gc3RvcmUiLAogICAgICAicGF5bWVudF9tZXRhIjogewogICAgICAgICJieV9vcmRlcl9vZiI6IG51bGwsCiAgICAgICAgInBheWVlIjogbnVsbCwKICAgICAgICAicGF5ZXIiOiBudWxsLAogICAgICAgICJwYXltZW50X21ldGhvZCI6IG51bGwsCiAgICAgICAgInBheW1lbnRfcHJvY2Vzc29yIjogbnVsbCwKICAgICAgICAicHBkX2lkIjogbnVsbCwKICAgICAgICAicmVhc29uIjogbnVsbCwKICAgICAgICAicmVmZXJlbmNlX251bWJlciI6IG51bGwKICAgICAgfSwKICAgICAgInBlbmRpbmciOiBmYWxzZSwKICAgICAgInBlbmRpbmdfdHJhbnNhY3Rpb25faWQiOiBudWxsLAogICAgICAicGVyc29uYWxfZmluYW5jZV9jYXRlZ29yeSI6IHsKICAgICAgICAiY29uZmlkZW5jZV9sZXZlbCI6ICJMT1ciLAogICAgICAgICJkZXRhaWxlZCI6ICJHRU5FUkFMX01FUkNIQU5ESVNFX09USEVSX0dFTkVSQUxfTUVSQ0hBTkRJU0UiLAogICAgICAgICJwcmltYXJ5IjogIkdFTkVSQUxfTUVSQ0hBTkRJU0UiCiAgICAgIH0sCiAgICAgICJwZXJzb25hbF9maW5hbmNlX2NhdGVnb3J5X2ljb25fdXJsIjogImh0dHBzOi8vcGxhaWQtY2F0ZWdvcnktaWNvbnMucGxhaWQuY29tL1BGQ19HRU5FUkFMX01FUkNIQU5ESVNFLnBuZyIsCiAgICAgICJ0cmFuc2FjdGlvbl9jb2RlIjogbnVsbCwKICAgICAgInRyYW5zYWN0aW9uX2lkIjogImVkTndyNTFYZ0Fjb0FSVlpQNjh2c2RSR3pxb205QnVyOTVtTk0iLAogICAgICAidHJhbnNhY3Rpb25fdHlwZSI6ICJwbGFjZSIsCiAgICAgICJ1bm9mZmljaWFsX2N1cnJlbmN5X2NvZGUiOiBudWxsLAogICAgICAid2Vic2l0ZSI6IG51bGwKICAgIH0sCiAgICB7CiAgICAgICJhY2NvdW50X2lkIjogIlp2bEJMNWVNUFF0blhEVjZRclI5c1JlTlZWejFYQWllYWdEUHoiLAogICAgICAiYWNjb3VudF9vd25lciI6IG51bGwsCiAgICAgICJhbW91bnQiOiA3NS41LAogICAgICAiYXV0aG9yaXplZF9kYXRlIjogIjIwMjQtMTEtMDQiLAogICAgICAiYXV0aG9yaXplZF9kYXRldGltZSI6IG51bGwsCiAgICAgICJjYXRlZ29yeSI6IFsKICAgICAgICAiU2hvcHMiLAogICAgICAgICJTdXBlcm1hcmtldHMgYW5kIEdyb2NlcmllcyIKICAgICAgXSwKICAgICAgImNhdGVnb3J5X2lkIjogIjE5MDQ3MDAwIiwKICAgICAgImNoZWNrX251bWJlciI6IG51bGwsCiAgICAgICJjb3VudGVycGFydGllcyI6IFsKICAgICAgICB7CiAgICAgICAgICAiY29uZmlkZW5jZV9sZXZlbCI6ICJWRVJZX0hJR0giLAogICAgICAgICAgImVudGl0eV9pZCI6ICJEZ3FFdzcwajc3RGJKcXliYUsycm1NcTZaendqZzY4SjdCN3pvIiwKICAgICAgICAgICJsb2dvX3VybCI6ICJodHRwczovL3BsYWlkLW1lcmNoYW50LWxvZ29zLnBsYWlkLmNvbS9zYWZld2F5Xzg1My5wbmciLAogICAgICAgICAgIm5hbWUiOiAiU2FmZXdheSIsCiAgICAgICAgICAicGhvbmVfbnVtYmVyIjogbnVsbCwKICAgICAgICAgICJ0eXBlIjogIm1lcmNoYW50IiwKICAgICAgICAgICJ3ZWJzaXRlIjogInNhZmV3YXkuY29tIgogICAgICAgIH0KICAgICAgXSwKICAgICAgImRhdGUiOiAiMjAyNC0xMS0wNCIsCiAgICAgICJkYXRldGltZSI6IG51bGwsCiAgICAgICJpc29fY3VycmVuY3lfY29kZSI6ICJVU0QiLAogICAgICAibG9jYXRpb24iOiB7CiAgICAgICAgImFkZHJlc3MiOiBudWxsLAogICAgICAgICJjaXR5IjogbnVsbCwKICAgICAgICAiY291bnRyeSI6IG51bGwsCiAgICAgICAgImxhdCI6IG51bGwsCiAgICAgICAgImxvbiI6IG51bGwsCiAgICAgICAgInBvc3RhbF9jb2RlIjogbnVsbCwKICAgICAgICAicmVnaW9uIjogbnVsbCwKICAgICAgICAic3RvcmVfbnVtYmVyIjogIjAxMjMiCiAgICAgIH0sCiAgICAgICJsb2dvX3VybCI6ICJodHRwczovL3BsYWlkLW1lcmNoYW50LWxvZ29zLnBsYWlkLmNvbS9zYWZld2F5Xzg1My5wbmciLAogICAgICAibWVyY2hhbnRfZW50aXR5X2lkIjogIkRncUV3NzBqNzdEYkpxeWJhSzJybU1xNlp6d2pnNjhKN0I3em8iLAogICAgICAibWVyY2hhbnRfbmFtZSI6ICJTYWZld2F5IiwKICAgICAgIm5hbWUiOiAiU2FmZXdheSIsCiAgICAgICJvcmlnaW5hbF9kZXNjcmlwdGlvbiI6ICJTQUZFV0FZICMwMTIzIiwKICAgICAgInBheW1lbnRfY2hhbm5lbCI6ICJpbiBzdG9yZSIsCiAgICAgICJwYXltZW50X21ldGEiOiB7CiAgICAgICAgImJ5X29yZGVyX29mIjogbnVsbCwKICAgICAgICAicGF5ZWUiOiBudWxsLAogICAgICAgICJwYXllciI6IG51bGwsCiAgICAgICAgInBheW1lbnRfbWV0aG9kIjogbnVsbCwKICAgICAgICAicGF5bWVudF9wcm9jZXNzb3IiOiBudWxsLAogICAgICAgICJwcGRfaWQiOiBudWxsLAogICAgICAgICJyZWFzb24iOiBudWxsLAogICAgICAgICJyZWZlcmVuY2VfbnVtYmVyIjogbnVsbAogICAgICB9LAogICAgICAicGVuZGluZyI6IGZhbHNlLAogICAgICAicGVuZGluZ190cmFuc2FjdGlvbl9pZCI6IG51bGwsCiAgICAgICJwZXJzb25hbF9maW5hbmNlX2NhdGVnb3J5IjogewogICAgICAgICJjb25maWRlbmNlX2xldmVsIjogIlZFUllfSElHSCIsCiAgICAgICAgImRldGFpbGVkIjogIkZPT0RfQU5EX0RSSU5LX0dST0NFUklFUyIsCiAgICAgICAgInByaW1hcnkiOiAiRk9PRF9BTkRfRFJJTksiCiAgICAgIH0sCiAgICAgICJwZXJzb25hbF9maW5hbmNlX2NhdGVnb3J5X2ljb25fdXJsIjogImh0dHBzOi8vcGxhaWQtY2F0ZWdvcnktaWNvbnMucGxhaWQuY29tL1BGQ19GT09EX0FORF9EUklOSy5wbmciLAogICAgICAidHJhbnNhY3Rpb25fY29kZSI6IG51bGwsCiAgICAgICJ0cmFuc2FjdGlvbl9pZCI6ICJRRWJaTjVtTXJ4VG5KNFhSeGJhOXM5cGFaRHlWUUdDd203RHhwIiwKICAgICAgInRyYW5zYWN0aW9uX3R5cGUiOiAicGxhY2UiLAogICAgICAidW5vZmZpY2lhbF9jdXJyZW5jeV9jb2RlIjogbnVsbCwKICAgICAgIndlYnNpdGUiOiAic2FmZXdheS5jb20iCiAgICB9LAogICAgewogICAgICAiYWNjb3VudF9pZCI6ICJadmxCTDVlTVBRdG5YRFY2UXJSOXNSZU5WVnoxWEFpZWFnRFB6IiwKICAgICAgImFjY291bnRfb3duZXIiOiBudWxsLAogICAgICAiYW1vdW50IjogMTEuMzQsCiAgICAgICJhdXRob3JpemVkX2RhdGUiOiAiMjAyNC0xMS0wNCIsCiAgICAgICJhdXRob3JpemVkX2RhdGV0aW1lIjogbnVsbCwKICAgICAgImNhdGVnb3J5IjogWwogICAgICAgICJGb29kIGFuZCBEcmluayIsCiAgICAgICAgIlJlc3RhdXJhbnRzIgogICAgICBdLAogICAgICAiY2F0ZWdvcnlfaWQiOiAiMTMwMDUwMDAiLAogICAgICAiY2hlY2tfbnVtYmVyIjogbnVsbCwKICAgICAgImNvdW50ZXJwYXJ0aWVzIjogWwogICAgICAgIHsKICAgICAgICAgICJjb25maWRlbmNlX2xldmVsIjogIlZFUllfSElHSCIsCiAgICAgICAgICAiZW50aXR5X2lkIjogIjVtOE5BMVJKODkydzY5alZRMTUwSnJYcXlMVkpuSjkzZFZFZ2ciLAogICAgICAgICAgImxvZ29fdXJsIjogImh0dHBzOi8vcGxhaWQtbWVyY2hhbnQtbG9nb3MucGxhaWQuY29tL3dhZmZsZV9ob3VzZV8xMDk3LnBuZyIsCiAgICAgICAgICAibmFtZSI6ICJXYWZmbGUgSG91c2UiLAogICAgICAgICAgInBob25lX251bWJlciI6IG51bGwsCiAgICAgICAgICAidHlwZSI6ICJtZXJjaGFudCIsCiAgICAgICAgICAid2Vic2l0ZSI6ICJ3YWZmbGVob3VzZS5jb20iCiAgICAgICAgfQogICAgICBdLAogICAgICAiZGF0ZSI6ICIyMDI0LTExLTA1IiwKICAgICAgImRhdGV0aW1lIjogbnVsbCwKICAgICAgImlzb19jdXJyZW5jeV9jb2RlIjogIlVTRCIsCiAgICAgICJsb2NhdGlvbiI6IHsKICAgICAgICAiYWRkcmVzcyI6IG51bGwsCiAgICAgICAgImNpdHkiOiBudWxsLAogICAgICAgICJjb3VudHJ5IjogbnVsbCwKICAgICAgICAibGF0IjogbnVsbCwKICAgICAgICAibG9uIjogbnVsbCwKICAgICAgICAicG9zdGFsX2NvZGUiOiBudWxsLAogICAgICAgICJyZWdpb24iOiBudWxsLAogICAgICAgICJzdG9yZV9udW1iZXIiOiBudWxsCiAgICAgIH0sCiAgICAgICJsb2dvX3VybCI6ICJodHRwczovL3BsYWlkLW1lcmNoYW50LWxvZ29zLnBsYWlkLmNvbS93YWZmbGVfaG91c2VfMTA5Ny5wbmciLAogICAgICAibWVyY2hhbnRfZW50aXR5X2lkIjogIjVtOE5BMVJKODkydzY5alZRMTUwSnJYcXlMVkpuSjkzZFZFZ2ciLAogICAgICAibWVyY2hhbnRfbmFtZSI6ICJXYWZmbGUgSG91c2UiLAogICAgICAibmFtZSI6ICJXYWZmbGUgSG91c2UiLAogICAgICAib3JpZ2luYWxfZGVzY3JpcHRpb24iOiAiV2FmZmxlIEhvdXNlIiwKICAgICAgInBheW1lbnRfY2hhbm5lbCI6ICJpbiBzdG9yZSIsCiAgICAgICJwYXltZW50X21ldGEiOiB7CiAgICAgICAgImJ5X29yZGVyX29mIjogbnVsbCwKICAgICAgICAicGF5ZWUiOiBudWxsLAogICAgICAgICJwYXllciI6IG51bGwsCiAgICAgICAgInBheW1lbnRfbWV0aG9kIjogbnVsbCwKICAgICAgICAicGF5bWVudF9wcm9jZXNzb3IiOiBudWxsLAogICAgICAgICJwcGRfaWQiOiBudWxsLAogICAgICAgICJyZWFzb24iOiBudWxsLAogICAgICAgICJyZWZlcmVuY2VfbnVtYmVyIjogbnVsbAogICAgICB9LAogICAgICAicGVuZGluZyI6IGZhbHNlLAogICAgICAicGVuZGluZ190cmFuc2FjdGlvbl9pZCI6IG51bGwsCiAgICAgICJwZXJzb25hbF9maW5hbmNlX2NhdGVnb3J5IjogewogICAgICAgICJjb25maWRlbmNlX2xldmVsIjogIlZFUllfSElHSCIsCiAgICAgICAgImRldGFpbGVkIjogIkZPT0RfQU5EX0RSSU5LX1JFU1RBVVJBTlQiLAogICAgICAgICJwcmltYXJ5IjogIkZPT0RfQU5EX0RSSU5LIgogICAgICB9LAogICAgICAicGVyc29uYWxfZmluYW5jZV9jYXRlZ29yeV9pY29uX3VybCI6ICJodHRwczovL3BsYWlkLWNhdGVnb3J5LWljb25zLnBsYWlkLmNvbS9QRkNfRk9PRF9BTkRfRFJJTksucG5nIiwKICAgICAgInRyYW5zYWN0aW9uX2NvZGUiOiBudWxsLAogICAgICAidHJhbnNhY3Rpb25faWQiOiAiWnZsQkw1ZU1QUXRuWERWNlFyUjlzUmV4OHBaYXlNY2VxWEc1ZSIsCiAgICAgICJ0cmFuc2FjdGlvbl90eXBlIjogInBsYWNlIiwKICAgICAgInVub2ZmaWNpYWxfY3VycmVuY3lfY29kZSI6IG51bGwsCiAgICAgICJ3ZWJzaXRlIjogIndhZmZsZWhvdXNlLmNvbSIKICAgIH0sCiAgICB7CiAgICAgICJhY2NvdW50X2lkIjogIlp2bEJMNWVNUFF0blhEVjZRclI5c1JlTlZWejFYQWllYWdEUHoiLAogICAgICAiYWNjb3VudF9vd25lciI6IG51bGwsCiAgICAgICJhbW91bnQiOiAyODEuOTcsCiAgICAgICJhdXRob3JpemVkX2RhdGUiOiAiMjAyNC0xMS0wNSIsCiAgICAgICJhdXRob3JpemVkX2RhdGV0aW1lIjogbnVsbCwKICAgICAgImNhdGVnb3J5IjogWwogICAgICAgICJUcmF2ZWwiLAogICAgICAgICJBaXJsaW5lcyBhbmQgQXZpYXRpb24gU2VydmljZXMiCiAgICAgIF0sCiAgICAgICJjYXRlZ29yeV9pZCI6ICIyMjAwMTAwMCIsCiAgICAgICJjaGVja19udW1iZXIiOiBudWxsLAogICAgICAiY291bnRlcnBhcnRpZXMiOiBbCiAgICAgICAgewogICAgICAgICAgImNvbmZpZGVuY2VfbGV2ZWwiOiAiVkVSWV9ISUdIIiwKICAgICAgICAgICJlbnRpdHlfaWQiOiAiTXI5UnAwVk45S2VlTlI4WGdLZ01NbTdOMEw2OUpBOXp3V29ncCIsCiAgICAgICAgICAibG9nb191cmwiOiAiaHR0cHM6Ly9wbGFpZC1tZXJjaGFudC1sb2dvcy5wbGFpZC5jb20vc291dGh3ZXN0XzkyOS5wbmciLAogICAgICAgICAgIm5hbWUiOiAiU291dGh3ZXN0IiwKICAgICAgICAgICJwaG9uZV9udW1iZXIiOiBudWxsLAogICAgICAgICAgInR5cGUiOiAibWVyY2hhbnQiLAogICAgICAgICAgIndlYnNpdGUiOiAic291dGh3ZXN0LmNvbSIKICAgICAgICB9CiAgICAgIF0sCiAgICAgICJkYXRlIjogIjIwMjQtMTEtMDUiLAogICAgICAiZGF0ZXRpbWUiOiBudWxsLAogICAgICAiaXNvX2N1cnJlbmN5X2NvZGUiOiAiVVNEIiwKICAgICAgImxvY2F0aW9uIjogewogICAgICAgICJhZGRyZXNzIjogbnVsbCwKICAgICAgICAiY2l0eSI6IG51bGwsCiAgICAgICAgImNvdW50cnkiOiBudWxsLAogICAgICAgICJsYXQiOiBudWxsLAogICAgICAgICJsb24iOiBudWxsLAogICAgICAgICJwb3N0YWxfY29kZSI6IG51bGwsCiAgICAgICAgInJlZ2lvbiI6ICJUWCIsCiAgICAgICAgInN0b3JlX251bWJlciI6IG51bGwKICAgICAgfSwKICAgICAgImxvZ29fdXJsIjogImh0dHBzOi8vcGxhaWQtbWVyY2hhbnQtbG9nb3MucGxhaWQuY29tL3NvdXRod2VzdF85MjkucG5nIiwKICAgICAgIm1lcmNoYW50X2VudGl0eV9pZCI6ICJNcjlScDBWTjlLZWVOUjhYZ0tnTU1tN04wTDY5SkE5endXb2dwIiwKICAgICAgIm1lcmNoYW50X25hbWUiOiAiU291dGh3ZXN0IiwKICAgICAgIm5hbWUiOiAiU09VVEhXRVMgMDEyMzQ1Njc4OTAxMiIsCiAgICAgICJvcmlnaW5hbF9kZXNjcmlwdGlvbiI6ICJTT1VUSFdFUyAwMTIzNDU2Nzg5MDEyIDAxMi0wMTItMDEyMyBUWCIsCiAgICAgICJwYXltZW50X2NoYW5uZWwiOiAiaW4gc3RvcmUiLAogICAgICAicGF5bWVudF9tZXRhIjogewogICAgICAgICJieV9vcmRlcl9vZiI6IG51bGwsCiAgICAgICAgInBheWVlIjogbnVsbCwKICAgICAgICAicGF5ZXIiOiBudWxsLAogICAgICAgICJwYXltZW50X21ldGhvZCI6IG51bGwsCiAgICAgICAgInBheW1lbnRfcHJvY2Vzc29yIjogbnVsbCwKICAgICAgICAicHBkX2lkIjogbnVsbCwKICAgICAgICAicmVhc29uIjogbnVsbCwKICAgICAgICAicmVmZXJlbmNlX251bWJlciI6IG51bGwKICAgICAgfSwKICAgICAgInBlbmRpbmciOiBmYWxzZSwKICAgICAgInBlbmRpbmdfdHJhbnNhY3Rpb25faWQiOiBudWxsLAogICAgICAicGVyc29uYWxfZmluYW5jZV9jYXRlZ29yeSI6IHsKICAgICAgICAiY29uZmlkZW5jZV9sZXZlbCI6ICJISUdIIiwKICAgICAgICAiZGV0YWlsZWQiOiAiVFJBVkVMX0ZMSUdIVFMiLAogICAgICAgICJwcmltYXJ5IjogIlRSQVZFTCIKICAgICAgfSwKICAgICAgInBlcnNvbmFsX2ZpbmFuY2VfY2F0ZWdvcnlfaWNvbl91cmwiOiAiaHR0cHM6Ly9wbGFpZC1jYXRlZ29yeS1pY29ucy5wbGFpZC5jb20vUEZDX1RSQVZFTC5wbmciLAogICAgICAidHJhbnNhY3Rpb25fY29kZSI6IG51bGwsCiAgICAgICJ0cmFuc2FjdGlvbl9pZCI6ICJNcFdQeDVvNHlyY3BadndRcmRiTXV3WEpnOEV6ZTNmTDZQMUI0IiwKICAgICAgInRyYW5zYWN0aW9uX3R5cGUiOiAic3BlY2lhbCIsCiAgICAgICJ1bm9mZmljaWFsX2N1cnJlbmN5X2NvZGUiOiBudWxsLAogICAgICAid2Vic2l0ZSI6ICJzb3V0aHdlc3QuY29tIgogICAgfSwKICAgIHsKICAgICAgImFjY291bnRfaWQiOiAiWnZsQkw1ZU1QUXRuWERWNlFyUjlzUmVOVlZ6MVhBaWVhZ0RQeiIsCiAgICAgICJhY2NvdW50X293bmVyIjogbnVsbCwKICAgICAgImFtb3VudCI6IDUyLjUsCiAgICAgICJhdXRob3JpemVkX2RhdGUiOiAiMjAyNC0xMS0wNSIsCiAgICAgICJhdXRob3JpemVkX2RhdGV0aW1lIjogbnVsbCwKICAgICAgImNhdGVnb3J5IjogWwogICAgICAgICJUcmF2ZWwiLAogICAgICAgICJHYXMgU3RhdGlvbnMiCiAgICAgIF0sCiAgICAgICJjYXRlZ29yeV9pZCI6ICIyMjAwOTAwMCIsCiAgICAgICJjaGVja19udW1iZXIiOiBudWxsLAogICAgICAiY291bnRlcnBhcnRpZXMiOiBbCiAgICAgICAgewogICAgICAgICAgImNvbmZpZGVuY2VfbGV2ZWwiOiAiVkVSWV9ISUdIIiwKICAgICAgICAgICJlbnRpdHlfaWQiOiAiOEttREQyOVE3cTZEMGd6azFvM2Ixenc5ZzBnWmF5N0RqNjhYbyIsCiAgICAgICAgICAibG9nb191cmwiOiAiaHR0cHM6Ly9wbGFpZC1tZXJjaGFudC1sb2dvcy5wbGFpZC5jb20vcXVpa3RyaXBfNzk5LnBuZyIsCiAgICAgICAgICAibmFtZSI6ICJRdWlrVHJpcCIsCiAgICAgICAgICAicGhvbmVfbnVtYmVyIjogbnVsbCwKICAgICAgICAgICJ0eXBlIjogIm1lcmNoYW50IiwKICAgICAgICAgICJ3ZWJzaXRlIjogInF1aWt0cmlwLmNvbSIKICAgICAgICB9CiAgICAgIF0sCiAgICAgICJkYXRlIjogIjIwMjQtMTEtMTAiLAogICAgICAiZGF0ZXRpbWUiOiBudWxsLAogICAgICAiaXNvX2N1cnJlbmN5X2NvZGUiOiAiVVNEIiwKICAgICAgImxvY2F0aW9uIjogewogICAgICAgICJhZGRyZXNzIjogbnVsbCwKICAgICAgICAiY2l0eSI6IG51bGwsCiAgICAgICAgImNvdW50cnkiOiBudWxsLAogICAgICAgICJsYXQiOiBudWxsLAogICAgICAgICJsb24iOiBudWxsLAogICAgICAgICJwb3N0YWxfY29kZSI6IG51bGwsCiAgICAgICAgInJlZ2lvbiI6IG51bGwsCiAgICAgICAgInN0b3JlX251bWJlciI6IG51bGwKICAgICAgfSwKICAgICAgImxvZ29fdXJsIjogImh0dHBzOi8vcGxhaWQtbWVyY2hhbnQtbG9nb3MucGxhaWQuY29tL3F1aWt0cmlwXzc5OS5wbmciLAogICAgICAibWVyY2hhbnRfZW50aXR5X2lkIjogIjhLbUREMjlRN3E2RDBnemsxbzNiMXp3OWcwZ1pheTdEajY4WG8iLAogICAgICAibWVyY2hhbnRfbmFtZSI6ICJRdWlrVHJpcCIsCiAgICAgICJuYW1lIjogIlF1aWtUcmlwIiwKICAgICAgIm9yaWdpbmFsX2Rlc2NyaXB0aW9uIjogIlF1aWt0cmlwIiwKICAgICAgInBheW1lbnRfY2hhbm5lbCI6ICJpbiBzdG9yZSIsCiAgICAgICJwYXltZW50X21ldGEiOiB7CiAgICAgICAgImJ5X29yZGVyX29mIjogbnVsbCwKICAgICAgICAicGF5ZWUiOiBudWxsLAogICAgICAgICJwYXllciI6IG51bGwsCiAgICAgICAgInBheW1lbnRfbWV0aG9kIjogbnVsbCwKICAgICAgICAicGF5bWVudF9wcm9jZXNzb3IiOiBudWxsLAogICAgICAgICJwcGRfaWQiOiBudWxsLAogICAgICAgICJyZWFzb24iOiBudWxsLAogICAgICAgICJyZWZlcmVuY2VfbnVtYmVyIjogbnVsbAogICAgICB9LAogICAgICAicGVuZGluZyI6IGZhbHNlLAogICAgICAicGVuZGluZ190cmFuc2FjdGlvbl9pZCI6IG51bGwsCiAgICAgICJwZXJzb25hbF9maW5hbmNlX2NhdGVnb3J5IjogewogICAgICAgICJjb25maWRlbmNlX2xldmVsIjogIlZFUllfSElHSCIsCiAgICAgICAgImRldGFpbGVkIjogIlRSQU5TUE9SVEFUSU9OX0dBUyIsCiAgICAgICAgInByaW1hcnkiOiAiVFJBTlNQT1JUQVRJT04iCiAgICAgIH0sCiAgICAgICJwZXJzb25hbF9maW5hbmNlX2NhdGVnb3J5X2ljb25fdXJsIjogImh0dHBzOi8vcGxhaWQtY2F0ZWdvcnktaWNvbnMucGxhaWQuY29tL1BGQ19UUkFOU1BPUlRBVElPTi5wbmciLAogICAgICAidHJhbnNhY3Rpb25fY29kZSI6IG51bGwsCiAgICAgICJ0cmFuc2FjdGlvbl9pZCI6ICIxYlhXeDFtVnpOY1F2eXpFbzM0SlRYVm1lZ3d4OTR0cGplcmdaIiwKICAgICAgInRyYW5zYWN0aW9uX3R5cGUiOiAicGxhY2UiLAogICAgICAidW5vZmZpY2lhbF9jdXJyZW5jeV9jb2RlIjogbnVsbCwKICAgICAgIndlYnNpdGUiOiAicXVpa3RyaXAuY29tIgogICAgfQogIF0sCiAgImhhc19tb3JlIjogdHJ1ZSwKICAibW9kaWZpZWQiOiBbXSwKICAibmV4dF9jdXJzb3IiOiAiQ0FFU0pURmlXRmQ0TVcxV2VrNWpVWFo1ZWtWdk16UktWRmhXYldWbmQzZzVOSFJ3YW1WeVoxb2lEQWlhbjYzQkJoRG8ycENnQXlvTUNKcWZyY0VHRU9qYWtLQUQiLAogICJyZW1vdmVkIjogW10sCiAgInJlcXVlc3RfaWQiOiAiR2t1UFZOWEYwSTFEZUk4IiwKICAidHJhbnNhY3Rpb25zX3VwZGF0ZV9zdGF0dXMiOiAiSElTVE9SSUNBTF9VUERBVEVfQ09NUExFVEUiCn0= + recorded_at: Mon, 19 May 2025 15:35:03 GMT +- request: + method: post + uri: https://sandbox.plaid.com/transactions/sync + body: + encoding: UTF-8 + string: '{"access_token":"access-sandbox-d531d3c9-8520-43ca-9e58-5b70b79fd1d4","cursor":"CAESJTFiWFd4MW1Wek5jUXZ5ekVvMzRKVFhWbWVnd3g5NHRwamVyZ1oiDAian63BBhDo2pCgAyoMCJqfrcEGEOjakKAD","count":100,"options":{"include_original_description":true}}' + headers: + Content-Type: + - application/json + User-Agent: + - Plaid Ruby v38.0.0 + Accept: + - application/json + Plaid-Client-Id: + - "" + Plaid-Version: + - '2020-09-14' + Plaid-Secret: + - "" + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + response: + status: + code: 200 + message: OK + headers: + Server: + - nginx + Date: + - Mon, 19 May 2025 15:35:03 GMT + Content-Type: + - application/json; charset=utf-8 + Transfer-Encoding: + - chunked + Connection: + - keep-alive + Plaid-Version: + - '2020-09-14' + Vary: + - Accept-Encoding + X-Envoy-Upstream-Service-Time: + - '405' + X-Envoy-Decorator-Operation: + - default.svc-apiv2:8080/* + Strict-Transport-Security: + - max-age=31536000; includeSubDomains; preload + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Xss-Protection: + - 1; mode=block + body: + encoding: ASCII-8BIT + string: |- + { + "accounts": [ + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "balances": { + "available": 11065.71, + "current": 1000, + "iso_currency_code": "USD", + "limit": 12200, + "unofficial_currency_code": null + }, + "holder_category": "personal", + "mask": "3053", + "name": "Test Credit Card Account", + "official_name": "Plaid credit card", + "subtype": "credit card", + "type": "credit" + } + ], + "added": [ + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 2.02, + "authorized_date": "2024-11-08", + "authorized_datetime": null, + "category": [ + "Shops", + "Convenience Stores" + ], + "category_id": "19015000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "VDzYgVXKNDqR19N8oRdzd2Y9Z0wobKZ5OjLMO", + "logo_url": "https://plaid-merchant-logos.plaid.com/quickchek_797.png", + "name": "QuickChek", + "phone_number": null, + "type": "merchant", + "website": "quickchek.com" + } + ], + "date": "2024-11-10", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/quickchek_797.png", + "merchant_entity_id": "VDzYgVXKNDqR19N8oRdzd2Y9Z0wobKZ5OjLMO", + "merchant_name": "QuickChek", + "name": "QUICK CHEK FOOD STR", + "original_description": "QUICK CHEK FOOD STR", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "TRANSPORTATION_GAS", + "primary": "TRANSPORTATION" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_TRANSPORTATION.png", + "transaction_code": null, + "transaction_id": "LLEP35oamKfLwWGzKa8mCk6Apgx1W7ukjpEb9", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "quickchek.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 57.89, + "authorized_date": "2024-11-05", + "authorized_datetime": null, + "category": [ + "Food and Drink", + "Restaurants", + "Fast Food" + ], + "category_id": "13005032", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "AEmBpp8kDV9okdRZAZMOVLjzr6gL87yn11mY9", + "logo_url": "https://plaid-merchant-logos.plaid.com/papa_johns_716.png", + "name": "Papa John's", + "phone_number": null, + "type": "merchant", + "website": "papajohns.com" + } + ], + "date": "2024-11-07", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/papa_johns_716.png", + "merchant_entity_id": "AEmBpp8kDV9okdRZAZMOVLjzr6gL87yn11mY9", + "merchant_name": "Papa John's", + "name": "Papa John's", + "original_description": "Papa Johns", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "FOOD_AND_DRINK_FAST_FOOD", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "p1oA739DqKhR4y8Xk1ZWcxJrdLn6oGtpoVz4k", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "papajohns.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 3.41, + "authorized_date": "2024-11-07", + "authorized_datetime": null, + "category": [ + "Shops", + "Music, Video and DVD" + ], + "category_id": "19036000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "Zk3b7MpBEqAkoJ5b1g6joKwbYL3Vp7vBZn4rg", + "logo_url": "https://plaid-merchant-logos.plaid.com/amazon_music_1227.png", + "name": "Amazon Music", + "phone_number": null, + "type": "merchant", + "website": "music.amazon.com" + } + ], + "date": "2024-11-07", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/amazon_music_1227.png", + "merchant_entity_id": "Zk3b7MpBEqAkoJ5b1g6joKwbYL3Vp7vBZn4rg", + "merchant_name": "Amazon Music", + "name": "Amazon Music", + "original_description": "Amazon Music", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "ENTERTAINMENT_MUSIC_AND_AUDIO", + "primary": "ENTERTAINMENT" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_ENTERTAINMENT.png", + "transaction_code": null, + "transaction_id": "oMpyjB9Dlqhb4v8gkyn6tbzMpZy5G3ioq7ba1", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "music.amazon.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 147.23, + "authorized_date": "2024-11-07", + "authorized_datetime": null, + "category": [ + "Travel", + "Airlines and Aviation Services" + ], + "category_id": "22001000", + "check_number": null, + "counterparties": [], + "date": "2024-11-07", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "JetBlue", + "original_description": "JETBLUE 0123456789012", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "ENTERTAINMENT_SPORTING_EVENTS_AMUSEMENT_PARKS_AND_MUSEUMS", + "primary": "ENTERTAINMENT" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_ENTERTAINMENT.png", + "transaction_code": null, + "transaction_id": "g4j7B5kXEnCwdLV7NzQPHV59dRBP8WcE8n5by", + "transaction_type": "special", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 43.2, + "authorized_date": "2024-11-06", + "authorized_datetime": null, + "category": [ + "Food and Drink", + "Restaurants" + ], + "category_id": "13005000", + "check_number": null, + "counterparties": [], + "date": "2024-11-08", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "KID ROCKS HONKY TONK\u0026STEA", + "original_description": "KID ROCKS HONKY TONK\u0026STEA", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "GENERAL_MERCHANDISE_OTHER_GENERAL_MERCHANDISE", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "8lBZ7kqmNMflM6N1rBb8udzkGwyA5MuW3L8A5", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 8.63, + "authorized_date": "2024-11-06", + "authorized_datetime": null, + "category": [ + "Food and Drink", + "Restaurants" + ], + "category_id": "13005000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "LOW", + "entity_id": null, + "logo_url": null, + "name": "JR.", + "phone_number": null, + "type": "merchant", + "website": null + } + ], + "date": "2024-11-08", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": "JR.", + "name": "Carl's Jr.", + "original_description": "Carl's Jr.", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "ENTERTAINMENT_SPORTING_EVENTS_AMUSEMENT_PARKS_AND_MUSEUMS", + "primary": "ENTERTAINMENT" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_ENTERTAINMENT.png", + "transaction_code": null, + "transaction_id": "EjM3A5vK8mCjLea1GE3mCyom95Prvki4xkmw3", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 150, + "authorized_date": "2024-11-08", + "authorized_datetime": null, + "category": [ + "Travel", + "Lodging" + ], + "category_id": "22012000", + "check_number": null, + "counterparties": [], + "date": "2024-11-08", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "DISNEY RESORTS-WDTC", + "original_description": "DISNEY RESORTS-WDTC", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "ENTERTAINMENT_SPORTING_EVENTS_AMUSEMENT_PARKS_AND_MUSEUMS", + "primary": "ENTERTAINMENT" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_ENTERTAINMENT.png", + "transaction_code": null, + "transaction_id": "Wm6kZ5zMajudb4XV6nyafB8VgNb3znC6Z1jra", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 0.2, + "authorized_date": "2024-11-08", + "authorized_datetime": null, + "category": [ + "Food and Drink", + "Restaurants", + "Fast Food" + ], + "category_id": "13005032", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "yD7z7XqNmON4BRvVQa5gbVpRyqeYNY4gpbgkW", + "logo_url": "https://plaid-merchant-logos.plaid.com/raising_canes_chicken_fingers_806.png", + "name": "Raising Cane's Chicken Fingers", + "phone_number": null, + "type": "merchant", + "website": "raisingcanes.com" + } + ], + "date": "2024-11-08", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/raising_canes_chicken_fingers_806.png", + "merchant_entity_id": "yD7z7XqNmON4BRvVQa5gbVpRyqeYNY4gpbgkW", + "merchant_name": "Raising Cane's Chicken Fingers", + "name": "Raising Cane's Chicken Fingers", + "original_description": "RAISING CANE'S 012", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "FOOD_AND_DRINK_FAST_FOOD", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "Aa7KgRpVLAhamWlkAvD3s8Dl5KZ7brF9rA57K", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "raisingcanes.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 36.74, + "authorized_date": "2024-11-08", + "authorized_datetime": null, + "category": [ + "Shops", + "Digital Purchase" + ], + "category_id": "19019000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "2gOwmq9qK56K60oDm3eLrREV2B2mVadkRn8MW", + "logo_url": "https://plaid-merchant-logos.plaid.com/amazon_44.png", + "name": "Amazon", + "phone_number": null, + "type": "merchant", + "website": "amazon.com" + } + ], + "date": "2024-11-08", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": "WA", + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/amazon_44.png", + "merchant_entity_id": "2gOwmq9qK56K60oDm3eLrREV2B2mVadkRn8MW", + "merchant_name": "Amazon", + "name": "Amazon", + "original_description": "AMZN Mktp US Amzn.com/bill WA", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "GENERAL_MERCHANDISE_ONLINE_MARKETPLACES", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "GeLdq5ozW9Te8Jd4MGvPT84MZDwPW7F6MPolV", + "transaction_type": "digital", + "unofficial_currency_code": null, + "website": "amazon.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 4.49, + "authorized_date": "2024-11-06", + "authorized_datetime": null, + "category": [ + "Shops", + "Supermarkets and Groceries" + ], + "category_id": "19047000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "95bAk9jYLq644z7grLky2qaWpBNZ80Z0eOoJD", + "logo_url": "https://plaid-merchant-logos.plaid.com/publix_787.png", + "name": "Publix", + "phone_number": null, + "type": "merchant", + "website": "publix.com" + } + ], + "date": "2024-11-11", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/publix_787.png", + "merchant_entity_id": "95bAk9jYLq644z7grLky2qaWpBNZ80Z0eOoJD", + "merchant_name": "Publix", + "name": "Publix", + "original_description": "Publix", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "FOOD_AND_DRINK_GROCERIES", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "nZLAPzwDylibQdva8jeDtG1eMJoEWbtAlWQdL", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "publix.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 69.48, + "authorized_date": "2024-11-06", + "authorized_datetime": null, + "category": [ + "Shops", + "Supermarkets and Groceries" + ], + "category_id": "19047000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "m7r7AXy8EObAKV8QJOME20Y691QB2mAZ7Rb84", + "logo_url": "https://plaid-counterparty-logos.plaid.com/instacart_6.png", + "name": "Instacart", + "phone_number": null, + "type": "marketplace", + "website": "instacart.com" + } + ], + "date": "2024-11-11", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": "Instacart", + "name": "INSTACART HTTPSINSTACARCA", + "original_description": "INSTACART HTTPSINSTACARCA", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "FOOD_AND_DRINK_GROCERIES", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "bBdylJgXLku1ryVNQ9XehxReg34KG7tmbZ75A", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 25.59, + "authorized_date": "2024-11-09", + "authorized_datetime": null, + "category": [ + "Food and Drink", + "Restaurants", + "Fast Food" + ], + "category_id": "13005032", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "1YZ03w08myRAQ0mRgMvD2EBoOb92RmBXN6nmK", + "logo_url": "https://plaid-merchant-logos.plaid.com/wendys_1114.png", + "name": "Wendy's", + "phone_number": null, + "type": "merchant", + "website": "wendys.com" + } + ], + "date": "2024-11-11", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/wendys_1114.png", + "merchant_entity_id": "1YZ03w08myRAQ0mRgMvD2EBoOb92RmBXN6nmK", + "merchant_name": "Wendy's", + "name": "Wendy's", + "original_description": "WENDY'S", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "FOOD_AND_DRINK_FAST_FOOD", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "mQ1ANkbDmRfb4yvJ6npMt6LmBj1NyEcgydXbq", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "wendys.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 237.28, + "authorized_date": "2024-11-06", + "authorized_datetime": null, + "category": [ + "Shops", + "Music, Video and DVD" + ], + "category_id": "19036000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "z3XzRe488pMdo7NAnL44L7rv9L550berky6mK", + "logo_url": "https://plaid-merchant-logos.plaid.com/apple_itunes_1434.png", + "name": "Apple iTunes", + "phone_number": null, + "type": "merchant", + "website": "apple.com/itunes" + } + ], + "date": "2024-11-09", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/apple_itunes_1434.png", + "merchant_entity_id": "z3XzRe488pMdo7NAnL44L7rv9L550berky6mK", + "merchant_name": "Apple iTunes", + "name": "iTunes", + "original_description": "APL* ITUNES.COM/BILL 012-012-0123 ON", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": "Apple", + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "ENTERTAINMENT_MUSIC_AND_AUDIO", + "primary": "ENTERTAINMENT" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_ENTERTAINMENT.png", + "transaction_code": null, + "transaction_id": "yGmrge5K4NFpDQweBL4yuPM35rxdXZi46XwGE", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "apple.com/itunes" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 26.23, + "authorized_date": "2024-11-06", + "authorized_datetime": null, + "category": [ + "Service" + ], + "category_id": "18000000", + "check_number": null, + "counterparties": [], + "date": "2024-11-09", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "TWX*HBONOW", + "original_description": "TWX*HBONOW", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "GENERAL_MERCHANDISE_OTHER_GENERAL_MERCHANDISE", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "9q36eAK7P1iqGMPbA34yUAZV7NmLojI4xQgrA", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 5.99, + "authorized_date": "2024-11-08", + "authorized_datetime": null, + "category": [ + "Shops", + "Music, Video and DVD" + ], + "category_id": "19036000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "KW8b0J0kX53kBAnYRV5VVnbb3WWpb17VBDra2", + "logo_url": "https://plaid-counterparty-logos.plaid.com/roku_91.png", + "name": "Roku", + "phone_number": null, + "type": "marketplace", + "website": "roku.com" + } + ], + "date": "2024-11-09", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": "Roku", + "name": "Fandango", + "original_description": "ROKU FOR FANDANGONOW", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "MEDIUM", + "detailed": "ENTERTAINMENT_TV_AND_MOVIES", + "primary": "ENTERTAINMENT" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_ENTERTAINMENT.png", + "transaction_code": null, + "transaction_id": "vEGlLPADxdT7rVvMKoxpsbozq3NxkGiq6k1pr", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 27.65, + "authorized_date": "2024-11-07", + "authorized_datetime": null, + "category": [ + "Shops", + "Supermarkets and Groceries" + ], + "category_id": "19047000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "O5W5j4dN9OR3E6ypQmjdkWZZRoXEzVMz2ByWM", + "logo_url": "https://plaid-merchant-logos.plaid.com/walmart_1100.png", + "name": "Walmart", + "phone_number": null, + "type": "merchant", + "website": "walmart.com" + } + ], + "date": "2024-11-12", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": "1500 E Wrangler Blvd", + "city": "Seminole", + "country": null, + "lat": 35.248352, + "lon": -96.654625, + "postal_code": "74868", + "region": "OK", + "store_number": "0123" + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/walmart_1100.png", + "merchant_entity_id": "O5W5j4dN9OR3E6ypQmjdkWZZRoXEzVMz2ByWM", + "merchant_name": "Walmart", + "name": "Walmart", + "original_description": "WAL-MART SUPERCENTER#0123", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "GENERAL_MERCHANDISE_SUPERSTORES", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "RWmGP5oMzdtreRojdm9zi5wEvmqNVpHapbA9B", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "walmart.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 3.15, + "authorized_date": "2024-11-09", + "authorized_datetime": null, + "category": [ + "Service", + "Food and Beverage" + ], + "category_id": "18021000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "Knv5eqDW6wn7mkBMYaAdMz4g4AM1MkQrgvjWW", + "logo_url": "https://plaid-counterparty-logos.plaid.com/postmates_4.png", + "name": "Postmates", + "phone_number": null, + "type": "marketplace", + "website": "postmates.com" + } + ], + "date": "2024-11-12", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": "Postmates", + "name": "Postmates", + "original_description": "POSTMATES TIP HTTPSPOSTMATECA", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "MEDIUM", + "detailed": "FOOD_AND_DRINK_RESTAURANT", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "6RrvP8d6aQt8RdaEAwWkFbyD6lRWjLi8DXe6p", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 1.5, + "authorized_date": "2024-11-12", + "authorized_datetime": null, + "category": [ + "Travel", + "Parking" + ], + "category_id": "22013000", + "check_number": null, + "counterparties": [], + "date": "2024-11-12", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "WEHO Street Meters", + "original_description": "WEHO Street Meters", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "ENTERTAINMENT_MUSIC_AND_AUDIO", + "primary": "ENTERTAINMENT" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_ENTERTAINMENT.png", + "transaction_code": null, + "transaction_id": "XyXrM5BG47fmPpGD7694U6qPyJX8decbKnLQq", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 37.55, + "authorized_date": "2024-11-09", + "authorized_datetime": null, + "category": [ + "Shops", + "Supermarkets and Groceries" + ], + "category_id": "19047000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "DgqEw70j77DbJqybaK2rmMq6Zzwjg68J7B7zo", + "logo_url": "https://plaid-merchant-logos.plaid.com/safeway_853.png", + "name": "Safeway", + "phone_number": null, + "type": "merchant", + "website": "safeway.com" + } + ], + "date": "2024-11-13", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/safeway_853.png", + "merchant_entity_id": "DgqEw70j77DbJqybaK2rmMq6Zzwjg68J7B7zo", + "merchant_name": "Safeway", + "name": "Safeway", + "original_description": "SAFEWAY STORE 0123", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "FOOD_AND_DRINK_GROCERIES", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "DPZBW5VqgbFP764zbpqmSvjWJDPg3bt3WaJ1a", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "safeway.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 12.32, + "authorized_date": "2024-11-09", + "authorized_datetime": null, + "category": [ + "Food and Drink", + "Restaurants" + ], + "category_id": "13005000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "M7K8WZBJjKm0dLkdE7NyKOOqeR506oo1Ev8Jp", + "logo_url": "https://plaid-merchant-logos.plaid.com/zaxbys_1151.png", + "name": "Zaxby's", + "phone_number": null, + "type": "merchant", + "website": "zaxbys.com" + } + ], + "date": "2024-11-13", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": "01234" + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/zaxbys_1151.png", + "merchant_entity_id": "M7K8WZBJjKm0dLkdE7NyKOOqeR506oo1Ev8Jp", + "merchant_name": "Zaxby's", + "name": "Zaxby's", + "original_description": "ZAXBY'S #01234", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "FOOD_AND_DRINK_FAST_FOOD", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "VbRqQ5rLdPcn6RqVP4QdsXJG18VQ3Et9gPEad", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "zaxbys.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 11.18, + "authorized_date": "2024-11-12", + "authorized_datetime": null, + "category": [ + "Shops", + "Convenience Stores" + ], + "category_id": "19015000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "w32E0jpBeX97vOWgER0n2qVbzLJVm1opNMpoR", + "logo_url": "https://plaid-merchant-logos.plaid.com/7eleven_3.png", + "name": "7-Eleven", + "phone_number": null, + "type": "merchant", + "website": "7-eleven.com" + } + ], + "date": "2024-11-13", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/7eleven_3.png", + "merchant_entity_id": "w32E0jpBeX97vOWgER0n2qVbzLJVm1opNMpoR", + "merchant_name": "7-Eleven", + "name": "7-Eleven", + "original_description": "7-ELEVEN 01234", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "GENERAL_MERCHANDISE_CONVENIENCE_STORES", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "wWnqpjJldatQbrvJydjETKPDB3J4E9cPZomGm", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "7-eleven.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 17.06, + "authorized_date": "2024-11-13", + "authorized_datetime": null, + "category": [ + "Travel", + "Public Transportation Services" + ], + "category_id": "22014000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "OMvdNZ28QavBpQQ00rVdjqzDNOdENQ8O5dE7J", + "logo_url": "https://plaid-merchant-logos.plaid.com/nj_transit_682.png", + "name": "NJ Transit", + "phone_number": null, + "type": "merchant", + "website": "njtransit.com" + } + ], + "date": "2024-11-13", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/nj_transit_682.png", + "merchant_entity_id": "OMvdNZ28QavBpQQ00rVdjqzDNOdENQ8O5dE7J", + "merchant_name": "NJ Transit", + "name": "NJT RAIL MY-TIX", + "original_description": "NJT RAIL MY-TIX", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "HIGH", + "detailed": "TRANSPORTATION_PUBLIC_TRANSIT", + "primary": "TRANSPORTATION" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_TRANSPORTATION.png", + "transaction_code": null, + "transaction_id": "5vK5Ng6bdetkX4dDA6NbSqZK7QDoXMu5K78vQ", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "njtransit.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 86.96, + "authorized_date": "2024-11-13", + "authorized_datetime": null, + "category": [ + "Community", + "Education" + ], + "category_id": "12008000", + "check_number": null, + "counterparties": [], + "date": "2024-11-13", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": "NJ", + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "AWL*PEARSON EDUCATION PRSONCS.COM", + "original_description": "AWL*PEARSON EDUCATION PRSONCS.COM NJ", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "GENERAL_SERVICES_EDUCATION", + "primary": "GENERAL_SERVICES" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_SERVICES.png", + "transaction_code": null, + "transaction_id": "JMgVz59xnlhM1pyKljkeUAXZgLJDw6IB6gkAX", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 8.96, + "authorized_date": "2024-11-13", + "authorized_datetime": null, + "category": [ + "Shops", + "Supermarkets and Groceries" + ], + "category_id": "19047000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "LOW", + "entity_id": null, + "logo_url": null, + "name": "Food Company", + "phone_number": null, + "type": "merchant", + "website": null + } + ], + "date": "2024-11-13", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": "Food Company", + "name": "REAL FOOD COMPANY", + "original_description": "REAL FOOD COMPANY", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "FOOD_AND_DRINK_GROCERIES", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "k7ZAaqkDn9IeLWvPMD3QTQmwjAae61sL6do9D", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 19.06, + "authorized_date": "2024-11-13", + "authorized_datetime": null, + "category": [ + "Shops", + "Food and Beverage Store" + ], + "category_id": "19025000", + "check_number": null, + "counterparties": [], + "date": "2024-11-13", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "Hale and Hearty Soups", + "original_description": "HALE AND HEARTY SOUPS - *", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "GENERAL_MERCHANDISE_OTHER_GENERAL_MERCHANDISE", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "leMA4KdDbvT9Rj8aDw3ASlqwZmdvGDipodR4o", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 9.31, + "authorized_date": "2024-11-11", + "authorized_datetime": null, + "category": [ + "Travel", + "Gas Stations" + ], + "category_id": "22009000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "p9wVQrAoADRNAdoAwpodyDVLNOZ9amVgkKVJM", + "logo_url": "https://plaid-merchant-logos.plaid.com/bp_139.png", + "name": "BP", + "phone_number": null, + "type": "merchant", + "website": "bp.com" + } + ], + "date": "2024-11-15", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/bp_139.png", + "merchant_entity_id": "p9wVQrAoADRNAdoAwpodyDVLNOZ9amVgkKVJM", + "merchant_name": "BP", + "name": "BP", + "original_description": "BP", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "TRANSPORTATION_GAS", + "primary": "TRANSPORTATION" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_TRANSPORTATION.png", + "transaction_code": null, + "transaction_id": "bBdylJgXLku1ryVNQ9XehxReg34KG7tmbZ7lp", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "bp.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 5.08, + "authorized_date": "2024-11-13", + "authorized_datetime": null, + "category": [ + "Travel", + "Taxi" + ], + "category_id": "22016000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "zBbZNQaVrRoDBEEv6ngwJ6wBk74Wd1venVVDa", + "logo_url": "https://plaid-merchant-logos.plaid.com/lyft_597.png", + "name": "Lyft", + "phone_number": null, + "type": "merchant", + "website": "lyft.com" + } + ], + "date": "2024-11-15", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/lyft_597.png", + "merchant_entity_id": "zBbZNQaVrRoDBEEv6ngwJ6wBk74Wd1venVVDa", + "merchant_name": "Lyft", + "name": "Lyft", + "original_description": "LYFT *SCOOTER RIDE", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "TRANSPORTATION_TAXIS_AND_RIDE_SHARES", + "primary": "TRANSPORTATION" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_TRANSPORTATION.png", + "transaction_code": null, + "transaction_id": "mQ1ANkbDmRfb4yvJ6npMt6LmBj1NyEcgydXED", + "transaction_type": "special", + "unofficial_currency_code": null, + "website": "lyft.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 59.03, + "authorized_date": "2024-11-13", + "authorized_datetime": null, + "category": [ + "Shops", + "Discount Stores" + ], + "category_id": "19020000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "mzeb8eNQ1j6OeNQE5YNqbBmEvABYnyROprqgn", + "logo_url": "https://plaid-merchant-logos.plaid.com/five_below_376.png", + "name": "Five Below", + "phone_number": null, + "type": "merchant", + "website": "fivebelow.com" + } + ], + "date": "2024-11-15", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/five_below_376.png", + "merchant_entity_id": "mzeb8eNQ1j6OeNQE5YNqbBmEvABYnyROprqgn", + "merchant_name": "Five Below", + "name": "Five Below", + "original_description": "Five Below", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "GENERAL_MERCHANDISE_DISCOUNT_STORES", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "yGmrge5K4NFpDQweBL4yuPM35rxdXZi46XwGQ", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "fivebelow.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 14.82, + "authorized_date": "2024-11-13", + "authorized_datetime": null, + "category": [ + "Service" + ], + "category_id": "18000000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "5B10W0429bM0nAE0XNWD3nOqo9KvRMo2mBVXD", + "logo_url": "https://plaid-merchant-logos.plaid.com/godaddy_438.png", + "name": "GoDaddy", + "phone_number": null, + "type": "merchant", + "website": "godaddy.com" + } + ], + "date": "2024-11-18", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/godaddy_438.png", + "merchant_entity_id": "5B10W0429bM0nAE0XNWD3nOqo9KvRMo2mBVXD", + "merchant_name": "GoDaddy", + "name": "DNH*GODADDY.COM", + "original_description": "DNH*GODADDY.COM", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "GENERAL_SERVICES_OTHER_GENERAL_SERVICES", + "primary": "GENERAL_SERVICES" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_SERVICES.png", + "transaction_code": null, + "transaction_id": "9q36eAK7P1iqGMPbA34yUAZV7NmLojI4xQgrW", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "godaddy.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 21.98, + "authorized_date": "2024-11-13", + "authorized_datetime": null, + "category": [ + "Service", + "Food and Beverage" + ], + "category_id": "18021000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "WKk6bENeYwvVaLaY8EEOw8Koa2X72m2wJOk1Z", + "logo_url": "https://plaid-counterparty-logos.plaid.com/seamless_5.png", + "name": "Seamless", + "phone_number": null, + "type": "marketplace", + "website": "seamless.com" + } + ], + "date": "2024-11-18", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": "NY", + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": "Seamless", + "name": "Seamless", + "original_description": "SEAMLSSMOKJAKOREANEAT SEAMLESS.COM NY", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "MEDIUM", + "detailed": "FOOD_AND_DRINK_RESTAURANT", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "vEGlLPADxdT7rVvMKoxpsbozq3NxkGiq6k1pj", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 32.66, + "authorized_date": "2024-11-18", + "authorized_datetime": null, + "category": [ + "Shops", + "Beauty Products" + ], + "category_id": "19006000", + "check_number": null, + "counterparties": [], + "date": "2024-11-18", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "FABFITFUN", + "original_description": "FABFITFUN", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "GENERAL_MERCHANDISE_OTHER_GENERAL_MERCHANDISE", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "RWmGP5oMzdtreRojdm9zi5wEvmqNVpHapbA99", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 125.16, + "authorized_date": "2024-11-18", + "authorized_datetime": null, + "category": [ + "Shops", + "Department Stores" + ], + "category_id": "19018000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "bN0wJ6wvppDz375EzNJNQv9bBODam4qWOrE3k", + "logo_url": "https://plaid-merchant-logos.plaid.com/nordstrom_684.png", + "name": "Nordstrom", + "phone_number": null, + "type": "merchant", + "website": "nordstrom.com" + } + ], + "date": "2024-11-18", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/nordstrom_684.png", + "merchant_entity_id": "bN0wJ6wvppDz375EzNJNQv9bBODam4qWOrE3k", + "merchant_name": "Nordstrom", + "name": "Nordstrom Rack", + "original_description": "Nordstrom Rack", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "GENERAL_MERCHANDISE_DEPARTMENT_STORES", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "6RrvP8d6aQt8RdaEAwWkFbyD6lRWjLi8DXe6l", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "nordstrom.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 3.75, + "authorized_date": "2024-11-18", + "authorized_datetime": null, + "category": [ + "Travel", + "Taxi" + ], + "category_id": "22016000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "eyg8o776k0QmNgVpAmaQj4WgzW9Qzo6O51gdd", + "logo_url": "https://plaid-merchant-logos.plaid.com/uber_1060.png", + "name": "Uber", + "phone_number": null, + "type": "merchant", + "website": "uber.com" + } + ], + "date": "2024-11-18", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/uber_1060.png", + "merchant_entity_id": "eyg8o776k0QmNgVpAmaQj4WgzW9Qzo6O51gdd", + "merchant_name": "Uber", + "name": "Uber", + "original_description": "UBER HELP.UBER.COMCA", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "TRANSPORTATION_TAXIS_AND_RIDE_SHARES", + "primary": "TRANSPORTATION" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_TRANSPORTATION.png", + "transaction_code": null, + "transaction_id": "XyXrM5BG47fmPpGD7694U6qPyJX8decbKnLQ6", + "transaction_type": "special", + "unofficial_currency_code": null, + "website": "uber.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 9.74, + "authorized_date": "2024-11-18", + "authorized_datetime": null, + "category": [ + "Food and Drink", + "Restaurants", + "Fast Food" + ], + "category_id": "13005032", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "1YZ03w08myRAQ0mRgMvD2EBoOb92RmBXN6nmK", + "logo_url": "https://plaid-merchant-logos.plaid.com/wendys_1114.png", + "name": "Wendy's", + "phone_number": null, + "type": "merchant", + "website": "wendys.com" + } + ], + "date": "2024-11-18", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": "0123" + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/wendys_1114.png", + "merchant_entity_id": "1YZ03w08myRAQ0mRgMvD2EBoOb92RmBXN6nmK", + "merchant_name": "Wendy's", + "name": "Wendy's", + "original_description": "WENDYS #0123", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "FOOD_AND_DRINK_FAST_FOOD", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "DPZBW5VqgbFP764zbpqmSvjWJDPg3bt3WaJ1e", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "wendys.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 12.44, + "authorized_date": "2024-11-13", + "authorized_datetime": null, + "category": [ + "Food and Drink", + "Restaurants" + ], + "category_id": "13005000", + "check_number": null, + "counterparties": [], + "date": "2024-11-14", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "SE01234", + "original_description": "SE01234", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "GENERAL_MERCHANDISE_OTHER_GENERAL_MERCHANDISE", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "VbRqQ5rLdPcn6RqVP4QdsXJG18VQ3Et9gPEa1", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 62.69, + "authorized_date": "2024-11-16", + "authorized_datetime": null, + "category": [ + "Shops", + "Department Stores" + ], + "category_id": "19018000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "Eaq3KXm0jJ61KrmMrV0aw9VaY2grqv517d3ep", + "logo_url": "https://plaid-merchant-logos.plaid.com/target_997.png", + "name": "Target", + "phone_number": null, + "type": "merchant", + "website": "target.com" + } + ], + "date": "2024-11-16", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/target_997.png", + "merchant_entity_id": "Eaq3KXm0jJ61KrmMrV0aw9VaY2grqv517d3ep", + "merchant_name": "Target", + "name": "Target", + "original_description": "Target", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "HIGH", + "detailed": "GENERAL_MERCHANDISE_SUPERSTORES", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "wWnqpjJldatQbrvJydjETKPDB3J4E9cPZomG8", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "target.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 3.75, + "authorized_date": "2024-11-17", + "authorized_datetime": null, + "category": [ + "Shops", + "Supermarkets and Groceries" + ], + "category_id": "19047000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "5VDpAWnN4X9VYR437da5D71Bva4o7RLQ2V3NY", + "logo_url": "https://plaid-merchant-logos.plaid.com/acme_markets_12.png", + "name": "Acme Markets", + "phone_number": null, + "type": "merchant", + "website": "acmemarkets.com" + } + ], + "date": "2024-11-17", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/acme_markets_12.png", + "merchant_entity_id": "5VDpAWnN4X9VYR437da5D71Bva4o7RLQ2V3NY", + "merchant_name": "Acme Markets", + "name": "ACME STORE 0123", + "original_description": "ACME STORE 0123", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "FOOD_AND_DRINK_GROCERIES", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "5vK5Ng6bdetkX4dDA6NbSqZK7QDoXMu5K78vE", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "acmemarkets.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 6.04, + "authorized_date": "2024-11-17", + "authorized_datetime": null, + "category": [ + "Food and Drink", + "Restaurants", + "Fast Food" + ], + "category_id": "13005032", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "Mjqdpqn3ZgOdrAYpkAKMkArEON7avQ8jV9BX1", + "logo_url": "https://plaid-merchant-logos.plaid.com/chipotle_mexican_grill_202.png", + "name": "Chipotle Mexican Grill", + "phone_number": null, + "type": "merchant", + "website": "chipotle.com" + } + ], + "date": "2024-11-17", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/chipotle_mexican_grill_202.png", + "merchant_entity_id": "Mjqdpqn3ZgOdrAYpkAKMkArEON7avQ8jV9BX1", + "merchant_name": "Chipotle Mexican Grill", + "name": "Chipotle Mexican Grill", + "original_description": "CHIPOTLE 0123", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "FOOD_AND_DRINK_FAST_FOOD", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "JMgVz59xnlhM1pyKljkeUAXZgLJDw6IB6gkAK", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "chipotle.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 8.05, + "authorized_date": "2024-11-17", + "authorized_datetime": null, + "category": [ + "Service", + "Subscription" + ], + "category_id": "18061000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "2373QOZJ18DqqK0KWvgpng3nmVDLMvDvy05RN", + "logo_url": "https://plaid-merchant-logos.plaid.com/spotify_947.png", + "name": "Spotify", + "phone_number": null, + "type": "merchant", + "website": "spotify.com" + } + ], + "date": "2024-11-17", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": "NY", + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/spotify_947.png", + "merchant_entity_id": "2373QOZJ18DqqK0KWvgpng3nmVDLMvDvy05RN", + "merchant_name": "Spotify", + "name": "Spotify", + "original_description": "Spotify Usa 012-0123456 Ny", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "ENTERTAINMENT_MUSIC_AND_AUDIO", + "primary": "ENTERTAINMENT" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_ENTERTAINMENT.png", + "transaction_code": null, + "transaction_id": "k7ZAaqkDn9IeLWvPMD3QTQmwjAae61sL6do9r", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "spotify.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 7.88, + "authorized_date": "2024-11-17", + "authorized_datetime": null, + "category": [ + "Shops", + "Digital Purchase" + ], + "category_id": "19019000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "Jm0aKeARgavDqr73LnjVW0KOyJvyOjVdXaRny", + "logo_url": "https://plaid-merchant-logos.plaid.com/amazon_kindle_46.png", + "name": "Amazon Kindle", + "phone_number": null, + "type": "merchant", + "website": "amazon.com/Kindle-eBooks" + } + ], + "date": "2024-11-17", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/amazon_kindle_46.png", + "merchant_entity_id": "Jm0aKeARgavDqr73LnjVW0KOyJvyOjVdXaRny", + "merchant_name": "Amazon Kindle", + "name": "Kindle Unltd", + "original_description": "Kindle Unltd", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "HIGH", + "detailed": "GENERAL_MERCHANDISE_BOOKSTORES_AND_NEWSSTANDS", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "leMA4KdDbvT9Rj8aDw3ASlqwZmdvGDipodR4L", + "transaction_type": "digital", + "unofficial_currency_code": null, + "website": "amazon.com/Kindle-eBooks" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 26.41, + "authorized_date": "2024-11-17", + "authorized_datetime": null, + "category": [ + "Shops", + "Automotive", + "Car Parts and Accessories" + ], + "category_id": "19005006", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "ZMB5QNp60a6gzv3kRg11DbOnDBakqV8bmkMk5", + "logo_url": "https://plaid-merchant-logos.plaid.com/oreilly_auto_parts_693.png", + "name": "O'Reilly Auto Parts", + "phone_number": null, + "type": "merchant", + "website": "oriellyauto.com" + } + ], + "date": "2024-11-17", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": "1101 E 23rd St S", + "city": "Independence", + "country": null, + "lat": 39.078136, + "lon": -94.400932, + "postal_code": "64055", + "region": "MO", + "store_number": "0123" + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/oreilly_auto_parts_693.png", + "merchant_entity_id": "ZMB5QNp60a6gzv3kRg11DbOnDBakqV8bmkMk5", + "merchant_name": "O'Reilly Auto Parts", + "name": "O'Reilly Auto Parts", + "original_description": "OREILLY AUTO #0123", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "HIGH", + "detailed": "GENERAL_SERVICES_AUTOMOTIVE", + "primary": "GENERAL_SERVICES" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_SERVICES.png", + "transaction_code": null, + "transaction_id": "qLgAex9DKrfNjEv5oDMaFebVapMmWGhgr7REd", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "oriellyauto.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 29.73, + "authorized_date": "2024-11-17", + "authorized_datetime": null, + "category": [ + "Service", + "Subscription" + ], + "category_id": "18061000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "3LEY2bJ6W1vkoaBjgVg3qBgYVEzD6p8d1dQdY", + "logo_url": "https://plaid-merchant-logos.plaid.com/netflix_675.png", + "name": "Netflix", + "phone_number": null, + "type": "merchant", + "website": "netflix.com" + } + ], + "date": "2024-11-17", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/netflix_675.png", + "merchant_entity_id": "3LEY2bJ6W1vkoaBjgVg3qBgYVEzD6p8d1dQdY", + "merchant_name": "Netflix", + "name": "Netflix", + "original_description": "NETFLIX.COM 012-012-0123 ON", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "ENTERTAINMENT_TV_AND_MOVIES", + "primary": "ENTERTAINMENT" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_ENTERTAINMENT.png", + "transaction_code": null, + "transaction_id": "K18PB5Zdbqh17BVgqbRQhyoaA5z1deiRpA1yR", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "netflix.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 29.93, + "authorized_date": "2024-11-17", + "authorized_datetime": null, + "category": [ + "Shops", + "Clothing and Accessories" + ], + "category_id": "19012000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "Q9qOA3RZj15MaMybaApnJD5YVKmMZjgL3LkAz", + "logo_url": "https://plaid-merchant-logos.plaid.com/zara_1150.png", + "name": "Zara", + "phone_number": null, + "type": "merchant", + "website": "zara.com" + } + ], + "date": "2024-11-17", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/zara_1150.png", + "merchant_entity_id": "Q9qOA3RZj15MaMybaApnJD5YVKmMZjgL3LkAz", + "merchant_name": "Zara", + "name": "Zara", + "original_description": "ZARA USA 01234", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "GENERAL_MERCHANDISE_CLOTHING_AND_ACCESSORIES", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "rp8wQd9Drzc7XxVRZbBNsbxP5JMjG9i7J61Qd", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "zara.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 3.74, + "authorized_date": "2024-11-17", + "authorized_datetime": null, + "category": [ + "Service", + "Photography" + ], + "category_id": "18047000", + "check_number": null, + "counterparties": [], + "date": "2024-11-19", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "SHUTTERFLY", + "original_description": "SHUTTERFLY", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "GENERAL_MERCHANDISE_GIFTS_AND_NOVELTIES", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "zkyz8Q9rNPCXgWQeyj9pIeqPWlmJpdhlNLQVw", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 12.67, + "authorized_date": "2024-11-17", + "authorized_datetime": null, + "category": [ + "Shops", + "Supermarkets and Groceries" + ], + "category_id": "19047000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "LOW", + "entity_id": null, + "logo_url": null, + "name": "Market", + "phone_number": null, + "type": "merchant", + "website": null + } + ], + "date": "2024-11-19", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": "Market", + "name": "CITY ACRES MARKET", + "original_description": "CITY ACRES MARKET", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "GENERAL_MERCHANDISE_OTHER_GENERAL_MERCHANDISE", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "B4ek869ZpGC41mDnjvVxuBdXVLjPRxC4M8gBL", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 4.81, + "authorized_date": "2024-11-17", + "authorized_datetime": null, + "category": [ + "Travel", + "Parking" + ], + "category_id": "22013000", + "check_number": null, + "counterparties": [], + "date": "2024-11-20", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "PASSPORT PARKING", + "original_description": "PASSPORT PARKING", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "TRANSPORTATION_PARKING", + "primary": "TRANSPORTATION" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_TRANSPORTATION.png", + "transaction_code": null, + "transaction_id": "3ylJapdb3jf8nK3A1z7JF3jlmQa5LBhZlnEAP", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 8.11, + "authorized_date": "2024-11-18", + "authorized_datetime": null, + "category": [ + "Shops", + "Digital Purchase" + ], + "category_id": "19019000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "Jm0aKeARgavDqr73LnjVW0KOyJvyOjVdXaRny", + "logo_url": "https://plaid-merchant-logos.plaid.com/amazon_kindle_46.png", + "name": "Amazon Kindle", + "phone_number": null, + "type": "merchant", + "website": "amazon.com/Kindle-eBooks" + } + ], + "date": "2024-11-20", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/amazon_kindle_46.png", + "merchant_entity_id": "Jm0aKeARgavDqr73LnjVW0KOyJvyOjVdXaRny", + "merchant_name": "Amazon Kindle", + "name": "Kindle Unltd", + "original_description": "Kindle Unltd", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "HIGH", + "detailed": "GENERAL_MERCHANDISE_BOOKSTORES_AND_NEWSSTANDS", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "xAbKo75qa4um5aZ8zndpUMd7gW5wbxU64Ve1k", + "transaction_type": "digital", + "unofficial_currency_code": null, + "website": "amazon.com/Kindle-eBooks" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 37.98, + "authorized_date": "2024-11-21", + "authorized_datetime": null, + "category": [ + "Shops", + "Beauty Products" + ], + "category_id": "19006000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "gO9YYkjpjQqeogAv1BRZpr64o3ZBJ9YmwyjRA", + "logo_url": "https://plaid-merchant-logos.plaid.com/sephora_884.png", + "name": "Sephora", + "phone_number": null, + "type": "merchant", + "website": "sephora.com" + } + ], + "date": "2024-11-21", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/sephora_884.png", + "merchant_entity_id": "gO9YYkjpjQqeogAv1BRZpr64o3ZBJ9YmwyjRA", + "merchant_name": "Sephora", + "name": "Sephora", + "original_description": "SEPHORA 01", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "PERSONAL_CARE_HAIR_AND_BEAUTY", + "primary": "PERSONAL_CARE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_PERSONAL_CARE.png", + "transaction_code": null, + "transaction_id": "dx4ZK58XoWCvbXVZlNgaC9Rl5wkLExCJEQRkX", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "sephora.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 2.7, + "authorized_date": "2024-11-21", + "authorized_datetime": null, + "category": [ + "Food and Drink" + ], + "category_id": "13000000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "EJqmBmLJ1XR2mX4p0oekLBMvZzZaAegzBnA2n", + "logo_url": "https://plaid-merchant-logos.plaid.com/usconnect_1078.png", + "name": "USConnect", + "phone_number": null, + "type": "merchant", + "website": "usconnectme.com" + } + ], + "date": "2024-11-26", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/usconnect_1078.png", + "merchant_entity_id": "EJqmBmLJ1XR2mX4p0oekLBMvZzZaAegzBnA2n", + "merchant_name": "USConnect", + "name": "USCONNECT CCVND VEND S", + "original_description": "USCONNECT CCVND VEND S", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "FOOD_AND_DRINK_VENDING_MACHINES", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "azx7A59X1gc5orV6dPw3soqAjJ3zZysZ5QDNn", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "usconnectme.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 40.01, + "authorized_date": "2024-11-22", + "authorized_datetime": null, + "category": [ + "Travel", + "Gas Stations" + ], + "category_id": "22009000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "8y7851JXryBnkOWOjW163yqzAB01oa8k6e1g9", + "logo_url": "https://plaid-merchant-logos.plaid.com/shell_891.png", + "name": "Shell", + "phone_number": null, + "type": "merchant", + "website": "shell.com" + } + ], + "date": "2024-11-22", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/shell_891.png", + "merchant_entity_id": "8y7851JXryBnkOWOjW163yqzAB01oa8k6e1g9", + "merchant_name": "Shell", + "name": "Shell", + "original_description": "SHELL OIL 01234567890", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "TRANSPORTATION_GAS", + "primary": "TRANSPORTATION" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_TRANSPORTATION.png", + "transaction_code": null, + "transaction_id": "49qZ4oGbx7T873XDoebnFmlbdW4eDaFJbALo4", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "shell.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 9.08, + "authorized_date": "2024-11-22", + "authorized_datetime": null, + "category": [ + "Shops", + "Digital Purchase" + ], + "category_id": "19019000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "8LVAN69qv4bO21pNgv3VEZqByB2V0MOm87mMB", + "logo_url": "https://plaid-counterparty-logos.plaid.com/google_play_120.png", + "name": "Google Play Store", + "phone_number": null, + "type": "marketplace", + "website": "play.google.com/store" + } + ], + "date": "2024-11-22", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": "Google Play Store", + "name": "YouTubePremium", + "original_description": "GOOGLE *YouTubePremium", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": "Google Wallet", + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "MEDIUM", + "detailed": "GENERAL_MERCHANDISE_OTHER_GENERAL_MERCHANDISE", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "NokPd5gNlzfoV1byzGkls7JMP5G3Q9sy65Q3N", + "transaction_type": "digital", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 17.4, + "authorized_date": "2024-11-22", + "authorized_datetime": null, + "category": [ + "Food and Drink", + "Restaurants" + ], + "category_id": "13005000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "EjvMbgqymKEYd4Bek9pYygYNYM5wpD6YqQ3qa", + "logo_url": "https://plaid-merchant-logos.plaid.com/mcalisters_deli_618.png", + "name": "McAlister's Deli", + "phone_number": null, + "type": "merchant", + "website": "mcalistersdeli.com" + } + ], + "date": "2024-11-25", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/mcalisters_deli_618.png", + "merchant_entity_id": "EjvMbgqymKEYd4Bek9pYygYNYM5wpD6YqQ3qa", + "merchant_name": "McAlister's Deli", + "name": "McAlister's Deli", + "original_description": "MCALISTER'S DELI 012", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "HIGH", + "detailed": "FOOD_AND_DRINK_OTHER_FOOD_AND_DRINK", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "P8n745oWK3cnXKyW31x9slDB75xZEeio6WA1B", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "mcalistersdeli.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 11.01, + "authorized_date": "2024-11-22", + "authorized_datetime": null, + "category": [ + "Food and Drink", + "Restaurants" + ], + "category_id": "13005000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "ra5BzW43Yb82KaLQVQa8Rry024qD3XOZrQkDA", + "logo_url": "https://plaid-merchant-logos.plaid.com/red_robin_814.png", + "name": "Red Robin", + "phone_number": null, + "type": "merchant", + "website": "redrobin.com" + } + ], + "date": "2024-11-23", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/red_robin_814.png", + "merchant_entity_id": "ra5BzW43Yb82KaLQVQa8Rry024qD3XOZrQkDA", + "merchant_name": "Red Robin", + "name": "Red Robin", + "original_description": "Red Robin", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "FOOD_AND_DRINK_FAST_FOOD", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "jjQ7dlP5GyCbNavw7rzpty4MQmk9opi6WLaEN", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "redrobin.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 1.73, + "authorized_date": "2024-11-26", + "authorized_datetime": null, + "category": [ + "Shops", + "Music, Video and DVD" + ], + "category_id": "19036000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "mBkp5yNnWLzkODb2Xn5BO1d6RbAWNXjejEzvp", + "logo_url": "https://plaid-merchant-logos.plaid.com/vudu_1095.png", + "name": "Vudu", + "phone_number": null, + "type": "merchant", + "website": "vudu.com" + } + ], + "date": "2024-11-30", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": "CA", + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/vudu_1095.png", + "merchant_entity_id": "mBkp5yNnWLzkODb2Xn5BO1d6RbAWNXjejEzvp", + "merchant_name": "Vudu", + "name": "VUDU.COM", + "original_description": "VUDU.COM 012-012-0123 CA", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "ENTERTAINMENT_TV_AND_MOVIES", + "primary": "ENTERTAINMENT" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_ENTERTAINMENT.png", + "transaction_code": null, + "transaction_id": "76zXjElb4Zt8RL4DAzM9F9Zwj8GW6DCdJnxZ7", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "vudu.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 16.33, + "authorized_date": "2024-11-26", + "authorized_datetime": null, + "category": [ + "Food and Drink", + "Restaurants" + ], + "category_id": "13005000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "K172mgkYODR47W5ERMy0zbrMjMvq08qebpKMa", + "logo_url": "https://plaid-merchant-logos.plaid.com/pret_a_manger_776.png", + "name": "Pret A Manger", + "phone_number": null, + "type": "merchant", + "website": "pret.com" + } + ], + "date": "2024-11-29", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": "30 Rockefeller Plz", + "city": "New York", + "country": null, + "lat": 40.759182, + "lon": -73.979645, + "postal_code": "10112", + "region": "NY", + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/pret_a_manger_776.png", + "merchant_entity_id": "K172mgkYODR47W5ERMy0zbrMjMvq08qebpKMa", + "merchant_name": "Pret A Manger", + "name": "Pret A Manger", + "original_description": "PRET A MANGER 012", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "HIGH", + "detailed": "FOOD_AND_DRINK_RESTAURANT", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "edNwr51XgAcoARVZP68vsdRGzqom9Bur95mgA", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "pret.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 20.62, + "authorized_date": "2024-11-29", + "authorized_datetime": null, + "category": [ + "Shops", + "Department Stores" + ], + "category_id": "19018000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "wVy2NR88jw5Z2qro8Vo4oro8E3aErD0gDN0nZ", + "logo_url": "https://plaid-merchant-logos.plaid.com/kohls_553.png", + "name": "Kohl's", + "phone_number": null, + "type": "merchant", + "website": "kohls.com" + } + ], + "date": "2024-11-29", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": "OH", + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/kohls_553.png", + "merchant_entity_id": "wVy2NR88jw5Z2qro8Vo4oro8E3aErD0gDN0nZ", + "merchant_name": "Kohl's", + "name": "WWW.KOHLS.COM #0123", + "original_description": "WWW.KOHLS.COM #0123 012-012-0123 OH", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "HIGH", + "detailed": "GENERAL_MERCHANDISE_DEPARTMENT_STORES", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "QEbZN5mMrxTnJ4XRxba9s9paZDyVQGCwm7D1y", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "kohls.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 37.5, + "authorized_date": "2024-11-28", + "authorized_datetime": null, + "category": [ + "Travel", + "Public Transportation Services" + ], + "category_id": "22014000", + "check_number": null, + "counterparties": [], + "date": "2024-11-28", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "PRESTO", + "original_description": "PRESTO", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "ENTERTAINMENT_SPORTING_EVENTS_AMUSEMENT_PARKS_AND_MUSEUMS", + "primary": "ENTERTAINMENT" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_ENTERTAINMENT.png", + "transaction_code": null, + "transaction_id": "ZvlBL5eMPQtnXDV6QrR9sRex8pZayMceqXGE7", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 11.21, + "authorized_date": "2024-11-29", + "authorized_datetime": null, + "category": [ + "Shops", + "Digital Purchase" + ], + "category_id": "19019000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "Anyvk4KqqD8Vb1R9YE0y8e91oR2YB0r3qYXjJ", + "logo_url": "https://plaid-merchant-logos.plaid.com/audible_78.png", + "name": "Audible", + "phone_number": null, + "type": "merchant", + "website": "audible.com" + } + ], + "date": "2024-12-01", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": "NJ", + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/audible_78.png", + "merchant_entity_id": "Anyvk4KqqD8Vb1R9YE0y8e91oR2YB0r3qYXjJ", + "merchant_name": "Audible", + "name": "Audible", + "original_description": "Audible US 012-012-0123 NJ", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "ENTERTAINMENT_MUSIC_AND_AUDIO", + "primary": "ENTERTAINMENT" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_ENTERTAINMENT.png", + "transaction_code": null, + "transaction_id": "MpWPx5o4yrcpZvwQrdbMuwXJg8Eze3fL6P1W3", + "transaction_type": "digital", + "unofficial_currency_code": null, + "website": "audible.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 147.35, + "authorized_date": "2024-11-29", + "authorized_datetime": null, + "category": [ + "Food and Drink", + "Restaurants" + ], + "category_id": "13005000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "RYJLRvgg1BEX5DYQvBg89zdAevEZ4kJaYoQ69", + "logo_url": "https://plaid-merchant-logos.plaid.com/texas_roadhouse_1004.png", + "name": "Texas Roadhouse", + "phone_number": null, + "type": "merchant", + "website": "texasroadhouse.com" + } + ], + "date": "2024-12-01", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": "2900 James Sanders Blvd", + "city": "Paducah", + "country": null, + "lat": 37.075722, + "lon": -88.683014, + "postal_code": "42001", + "region": "KY", + "store_number": "0123" + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/texas_roadhouse_1004.png", + "merchant_entity_id": "RYJLRvgg1BEX5DYQvBg89zdAevEZ4kJaYoQ69", + "merchant_name": "Texas Roadhouse", + "name": "Texas Roadhouse", + "original_description": "TEXAS ROADHOUSE #0123", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "FOOD_AND_DRINK_RESTAURANT", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "1bXWx1mVzNcQvyzEo34JTXVmegwx94tpjerkB", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "texasroadhouse.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 8.8, + "authorized_date": "2024-12-01", + "authorized_datetime": null, + "category": [ + "Food and Drink" + ], + "category_id": "13000000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "m1Vm5pqramMYZD7YO4gADZ447RqaVp681jZrj", + "logo_url": "https://plaid-merchant-logos.plaid.com/jamba_juice_531.png", + "name": "Jamba Juice", + "phone_number": null, + "type": "merchant", + "website": "jamba.com" + } + ], + "date": "2024-12-01", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/jamba_juice_531.png", + "merchant_entity_id": "m1Vm5pqramMYZD7YO4gADZ447RqaVp681jZrj", + "merchant_name": "Jamba Juice", + "name": "Jamba Juice", + "original_description": "JAMBA JUICE 0123 QSR", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "FOOD_AND_DRINK_OTHER_FOOD_AND_DRINK", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "LLEP35oamKfLwWGzKa8mCk6Apgx1W7ukjpExR", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "jamba.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 15.4, + "authorized_date": "2024-11-29", + "authorized_datetime": null, + "category": [ + "Food and Drink", + "Restaurants", + "Fast Food" + ], + "category_id": "13005032", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "AEmBpp8kDV9okdRZAZMOVLjzr6gL87yn11mY9", + "logo_url": "https://plaid-merchant-logos.plaid.com/papa_johns_716.png", + "name": "Papa John's", + "phone_number": null, + "type": "merchant", + "website": "papajohns.com" + } + ], + "date": "2024-12-02", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": "0123" + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/papa_johns_716.png", + "merchant_entity_id": "AEmBpp8kDV9okdRZAZMOVLjzr6gL87yn11mY9", + "merchant_name": "Papa John's", + "name": "Papa John's", + "original_description": "PAPA JOHNS #0123", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "FOOD_AND_DRINK_FAST_FOOD", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "p1oA739DqKhR4y8Xk1ZWcxJrdLn6oGtpoVzvN", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "papajohns.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 16.46, + "authorized_date": "2024-11-29", + "authorized_datetime": null, + "category": [ + "Food and Drink", + "Restaurants" + ], + "category_id": "13005000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "e3kZwLYb4j8M2aDqQQrV0M1qRd8an7AmL8nrV", + "logo_url": "https://plaid-merchant-logos.plaid.com/wingstop_1127.png", + "name": "Wingstop", + "phone_number": null, + "type": "merchant", + "website": "wingstop.com" + } + ], + "date": "2024-12-03", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/wingstop_1127.png", + "merchant_entity_id": "e3kZwLYb4j8M2aDqQQrV0M1qRd8an7AmL8nrV", + "merchant_name": "Wingstop", + "name": "Wingstop", + "original_description": "Wingstop", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "FOOD_AND_DRINK_FAST_FOOD", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "oMpyjB9Dlqhb4v8gkyn6tbzMpZy5G3ioq7bZ8", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "wingstop.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 15.75, + "authorized_date": "2024-12-03", + "authorized_datetime": null, + "category": [ + "Recreation", + "Gyms and Fitness Centers" + ], + "category_id": "17018000", + "check_number": null, + "counterparties": [], + "date": "2024-12-03", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "SOULCYCLE-ONLINE", + "original_description": "SOULCYCLE-ONLINE", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "PERSONAL_CARE_GYMS_AND_FITNESS_CENTERS", + "primary": "PERSONAL_CARE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_PERSONAL_CARE.png", + "transaction_code": null, + "transaction_id": "g4j7B5kXEnCwdLV7NzQPHV59dRBP8WcE8n56n", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 26.25, + "authorized_date": "2024-12-05", + "authorized_datetime": null, + "category": [ + "Recreation", + "Gyms and Fitness Centers" + ], + "category_id": "17018000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "odq3QAzb84gKe1zXB1ZO66E6jQmM2YwO9D5zV", + "logo_url": "https://plaid-merchant-logos.plaid.com/la_fitness_563.png", + "name": "LA Fitness", + "phone_number": null, + "type": "merchant", + "website": "lafitness.com" + } + ], + "date": "2024-12-05", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": "CA", + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/la_fitness_563.png", + "merchant_entity_id": "odq3QAzb84gKe1zXB1ZO66E6jQmM2YwO9D5zV", + "merchant_name": "LA Fitness", + "name": "LA Fitness", + "original_description": "LA FITNESS 012-012-0123 CA", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "HIGH", + "detailed": "PERSONAL_CARE_GYMS_AND_FITNESS_CENTERS", + "primary": "PERSONAL_CARE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_PERSONAL_CARE.png", + "transaction_code": null, + "transaction_id": "8lBZ7kqmNMflM6N1rBb8udzkGwyA5MuW3L8Xm", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "lafitness.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 6.65, + "authorized_date": "2024-12-05", + "authorized_datetime": null, + "category": [ + "Food and Drink", + "Restaurants", + "Coffee Shop" + ], + "category_id": "13005043", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "p64nrAXvN7r7mjrdp0qNKnB137Da6BWbbrEwz", + "logo_url": "https://plaid-merchant-logos.plaid.com/dunkin_donuts_305.png", + "name": "Dunkin'", + "phone_number": null, + "type": "merchant", + "website": "dunkindonuts.com" + } + ], + "date": "2024-12-05", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/dunkin_donuts_305.png", + "merchant_entity_id": "p64nrAXvN7r7mjrdp0qNKnB137Da6BWbbrEwz", + "merchant_name": "Dunkin'", + "name": "Dunkin' Donuts", + "original_description": "Dunkin Donuts", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "FOOD_AND_DRINK_COFFEE", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "EjM3A5vK8mCjLea1GE3mCyom95Prvki4xkmBm", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "dunkindonuts.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 33.06, + "authorized_date": "2024-12-05", + "authorized_datetime": null, + "category": [ + "Shops", + "Digital Purchase" + ], + "category_id": "19019000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "2gOwmq9qK56K60oDm3eLrREV2B2mVadkRn8MW", + "logo_url": "https://plaid-merchant-logos.plaid.com/amazon_44.png", + "name": "Amazon", + "phone_number": null, + "type": "merchant", + "website": "amazon.com" + } + ], + "date": "2024-12-05", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/amazon_44.png", + "merchant_entity_id": "2gOwmq9qK56K60oDm3eLrREV2B2mVadkRn8MW", + "merchant_name": "Amazon", + "name": "Amazon.com #...0123", + "original_description": "Amazon.com #...0123", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "GENERAL_MERCHANDISE_ONLINE_MARKETPLACES", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "Wm6kZ5zMajudb4XV6nyafB8VgNb3znC6Z1jbQ", + "transaction_type": "digital", + "unofficial_currency_code": null, + "website": "amazon.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 86.25, + "authorized_date": "2024-12-05", + "authorized_datetime": null, + "category": [ + "Shops", + "Clothing and Accessories" + ], + "category_id": "19012000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": null, + "logo_url": null, + "name": "ASOS", + "phone_number": null, + "type": "merchant", + "website": null + } + ], + "date": "2024-12-05", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": "ASOS", + "name": "ASOS US SALES LLC WWW.ASOS.COM DE", + "original_description": "ASOS US SALES LLC WWW.ASOS.COM DE", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "GENERAL_MERCHANDISE_CLOTHING_AND_ACCESSORIES", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "Aa7KgRpVLAhamWlkAvD3s8Dl5KZ7brF9rA5pL", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 174.98, + "authorized_date": "2024-12-05", + "authorized_datetime": null, + "category": [ + "Shops", + "Computers and Electronics" + ], + "category_id": "19013000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "wQn4M4dwnYzpK156NqjykAN4DJ0KbrEOLZZ8W", + "logo_url": "https://plaid-merchant-logos.plaid.com/microsoft_635.png", + "name": "Microsoft", + "phone_number": null, + "type": "merchant", + "website": "microsoft.com" + } + ], + "date": "2024-12-05", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/microsoft_635.png", + "merchant_entity_id": "wQn4M4dwnYzpK156NqjykAN4DJ0KbrEOLZZ8W", + "merchant_name": "Microsoft", + "name": "MICROSOFT *OFFICE 012", + "original_description": "MICROSOFT *OFFICE 012", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "GENERAL_MERCHANDISE_ELECTRONICS", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "GeLdq5ozW9Te8Jd4MGvPT84MZDwPW7F6MPopx", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "microsoft.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 5.09, + "authorized_date": "2024-12-05", + "authorized_datetime": null, + "category": [ + "Travel", + "Taxi" + ], + "category_id": "22016000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "eyg8o776k0QmNgVpAmaQj4WgzW9Qzo6O51gdd", + "logo_url": "https://plaid-merchant-logos.plaid.com/uber_1060.png", + "name": "Uber", + "phone_number": null, + "type": "merchant", + "website": "uber.com" + } + ], + "date": "2024-12-06", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/uber_1060.png", + "merchant_entity_id": "eyg8o776k0QmNgVpAmaQj4WgzW9Qzo6O51gdd", + "merchant_name": "Uber", + "name": "Uber", + "original_description": "UBER *TRIP", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "TRANSPORTATION_TAXIS_AND_RIDE_SHARES", + "primary": "TRANSPORTATION" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_TRANSPORTATION.png", + "transaction_code": null, + "transaction_id": "nZLAPzwDylibQdva8jeDtG1eMJoEWbtAlWQ5l", + "transaction_type": "special", + "unofficial_currency_code": null, + "website": "uber.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 30.01, + "authorized_date": "2024-12-05", + "authorized_datetime": null, + "category": [ + "Food and Drink", + "Restaurants", + "Fast Food" + ], + "category_id": "13005032", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "Mjqdpqn3ZgOdrAYpkAKMkArEON7avQ8jV9BX1", + "logo_url": "https://plaid-merchant-logos.plaid.com/chipotle_mexican_grill_202.png", + "name": "Chipotle Mexican Grill", + "phone_number": null, + "type": "merchant", + "website": "chipotle.com" + } + ], + "date": "2024-12-07", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/chipotle_mexican_grill_202.png", + "merchant_entity_id": "Mjqdpqn3ZgOdrAYpkAKMkArEON7avQ8jV9BX1", + "merchant_name": "Chipotle Mexican Grill", + "name": "Chipotle Mexican Grill", + "original_description": "CHIPOTLE 0123", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "FOOD_AND_DRINK_FAST_FOOD", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "bBdylJgXLku1ryVNQ9XehxReg34KG7tmbZ7kp", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "chipotle.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 495.39, + "authorized_date": "2024-12-05", + "authorized_datetime": null, + "category": [ + "Shops", + "Clothing and Accessories", + "Women's Store" + ], + "category_id": "19012001", + "check_number": null, + "counterparties": [], + "date": "2024-12-07", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "Anthropologie", + "original_description": "ANTHROPOLOGIE.COM", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "ENTERTAINMENT_MUSIC_AND_AUDIO", + "primary": "ENTERTAINMENT" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_ENTERTAINMENT.png", + "transaction_code": null, + "transaction_id": "mQ1ANkbDmRfb4yvJ6npMt6LmBj1NyEcgydXoD", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 37.04, + "authorized_date": "2024-12-07", + "authorized_datetime": null, + "category": [ + "Shops", + "Furniture and Home Decor" + ], + "category_id": "19027000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "8rXDZKKrAZ0Ndo1Rg6mOWZB68B8Xo06ZLBWn7", + "logo_url": "https://plaid-merchant-logos.plaid.com/ikea_514.png", + "name": "IKEA", + "phone_number": null, + "type": "merchant", + "website": "ikea.com" + } + ], + "date": "2024-12-12", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/ikea_514.png", + "merchant_entity_id": "8rXDZKKrAZ0Ndo1Rg6mOWZB68B8Xo06ZLBWn7", + "merchant_name": "IKEA", + "name": "IKEA", + "original_description": "Ikea", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "HOME_IMPROVEMENT_FURNITURE", + "primary": "HOME_IMPROVEMENT" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_HOME_IMPROVEMENT.png", + "transaction_code": null, + "transaction_id": "yGmrge5K4NFpDQweBL4yuPM35rxdXZi46XwaQ", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "ikea.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 91.16, + "authorized_date": "2024-12-12", + "authorized_datetime": null, + "category": [ + "Food and Drink", + "Restaurants" + ], + "category_id": "13005000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "m2M3MJoE27zdYprWD2kpbzeoOm6WMDOY5L92r", + "logo_url": "https://plaid-merchant-logos.plaid.com/dave_busters_268.png", + "name": "Dave \u0026 Buster's", + "phone_number": null, + "type": "merchant", + "website": "daveandbusters.com" + } + ], + "date": "2024-12-12", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/dave_busters_268.png", + "merchant_entity_id": "m2M3MJoE27zdYprWD2kpbzeoOm6WMDOY5L92r", + "merchant_name": "Dave \u0026 Buster's", + "name": "Dave \u0026 Buster's", + "original_description": "Dave \u0026 Buster's", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "HIGH", + "detailed": "FOOD_AND_DRINK_RESTAURANT", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "9q36eAK7P1iqGMPbA34yUAZV7NmLojI4xQgvW", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "daveandbusters.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 60.72, + "authorized_date": "2024-12-07", + "authorized_datetime": null, + "category": [ + "Shops", + "Supermarkets and Groceries" + ], + "category_id": "19047000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "DgqEw70j77DbJqybaK2rmMq6Zzwjg68J7B7zo", + "logo_url": "https://plaid-merchant-logos.plaid.com/safeway_853.png", + "name": "Safeway", + "phone_number": null, + "type": "merchant", + "website": "safeway.com" + } + ], + "date": "2024-12-08", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/safeway_853.png", + "merchant_entity_id": "DgqEw70j77DbJqybaK2rmMq6Zzwjg68J7B7zo", + "merchant_name": "Safeway", + "name": "Safeway", + "original_description": "SAFEWAY STORE 0123", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "FOOD_AND_DRINK_GROCERIES", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "vEGlLPADxdT7rVvMKoxpsbozq3NxkGiq6k1Kj", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "safeway.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 88.5, + "authorized_date": "2024-12-11", + "authorized_datetime": null, + "category": [ + "Recreation", + "Gyms and Fitness Centers" + ], + "category_id": "17018000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "Q9O00aLQbjp2ZVJkZnmywoaXk7Xp88eWMnwep", + "logo_url": "https://plaid-merchant-logos.plaid.com/ymca_1143.png", + "name": "YMCA", + "phone_number": null, + "type": "merchant", + "website": "ymca.org" + } + ], + "date": "2024-12-11", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/ymca_1143.png", + "merchant_entity_id": "Q9O00aLQbjp2ZVJkZnmywoaXk7Xp88eWMnwep", + "merchant_name": "YMCA", + "name": "YMCA", + "original_description": "YMCA", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "GOVERNMENT_AND_NON_PROFIT_DONATIONS", + "primary": "GOVERNMENT_AND_NON_PROFIT" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GOVERNMENT_AND_NON_PROFIT.png", + "transaction_code": null, + "transaction_id": "RWmGP5oMzdtreRojdm9zi5wEvmqNVpHapbAq9", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "ymca.org" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 67.8, + "authorized_date": "2024-12-11", + "authorized_datetime": null, + "category": [ + "Shops", + "Hardware Store" + ], + "category_id": "19030000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "OvD4k3VrjJYXoar5MNKZQEd333BA1oK8JA8v6", + "logo_url": "https://plaid-merchant-logos.plaid.com/lowes_591.png", + "name": "Lowe's", + "phone_number": null, + "type": "merchant", + "website": "lowes.com" + } + ], + "date": "2024-12-11", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": "012" + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/lowes_591.png", + "merchant_entity_id": "OvD4k3VrjJYXoar5MNKZQEd333BA1oK8JA8v6", + "merchant_name": "Lowe's", + "name": "Lowe's", + "original_description": "LOWE'S #012", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "HOME_IMPROVEMENT_HARDWARE", + "primary": "HOME_IMPROVEMENT" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_HOME_IMPROVEMENT.png", + "transaction_code": null, + "transaction_id": "6RrvP8d6aQt8RdaEAwWkFbyD6lRWjLi8DXell", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "lowes.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 4.79, + "authorized_date": "2024-12-12", + "authorized_datetime": null, + "category": [ + "Food and Drink", + "Restaurants", + "Coffee Shop" + ], + "category_id": "13005043", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "NZAJQ5wYdo1W1p39X5q5gpb15OMe39pj4pJBb", + "logo_url": "https://plaid-merchant-logos.plaid.com/starbucks_956.png", + "name": "Starbucks", + "phone_number": null, + "type": "merchant", + "website": "starbucks.com" + } + ], + "date": "2024-12-16", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/starbucks_956.png", + "merchant_entity_id": "NZAJQ5wYdo1W1p39X5q5gpb15OMe39pj4pJBb", + "merchant_name": "Starbucks", + "name": "Starbucks", + "original_description": "STARBUCKS 01234", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "FOOD_AND_DRINK_COFFEE", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "XyXrM5BG47fmPpGD7694U6qPyJX8decbKnLX6", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "starbucks.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 5.63, + "authorized_date": "2024-12-16", + "authorized_datetime": null, + "category": [ + "Travel", + "Parking" + ], + "category_id": "22013000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "AypeXeN8WKnmvm7RAowe0a0Xr9b47dANe0MLk", + "logo_url": "https://plaid-merchant-logos.plaid.com/laz_parking_570.png", + "name": "LAZ Parking", + "phone_number": null, + "type": "merchant", + "website": "lazparking.com" + } + ], + "date": "2024-12-16", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/laz_parking_570.png", + "merchant_entity_id": "AypeXeN8WKnmvm7RAowe0a0Xr9b47dANe0MLk", + "merchant_name": "LAZ Parking", + "name": "LAZ PARKING 012345", + "original_description": "LAZ PARKING 012345", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "TRANSPORTATION_PARKING", + "primary": "TRANSPORTATION" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_TRANSPORTATION.png", + "transaction_code": null, + "transaction_id": "DPZBW5VqgbFP764zbpqmSvjWJDPg3bt3WaJoe", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "lazparking.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 3.36, + "authorized_date": "2024-12-16", + "authorized_datetime": null, + "category": [ + "Shops", + "Warehouses and Wholesale Stores" + ], + "category_id": "19051000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "KAE0nWNpERLZQyM6AMyDmNXjkQn76jKQBmRqA", + "logo_url": "https://plaid-merchant-logos.plaid.com/sams_club_858.png", + "name": "Sam's Club", + "phone_number": null, + "type": "merchant", + "website": "samsclub.com" + } + ], + "date": "2024-12-16", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": "0123" + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/sams_club_858.png", + "merchant_entity_id": "KAE0nWNpERLZQyM6AMyDmNXjkQn76jKQBmRqA", + "merchant_name": "Sam's Club", + "name": "Sam's Club", + "original_description": "SAMS CLUB #0123", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "GENERAL_MERCHANDISE_SUPERSTORES", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "VbRqQ5rLdPcn6RqVP4QdsXJG18VQ3Et9gPEV1", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "samsclub.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 348.25, + "authorized_date": "2024-12-12", + "authorized_datetime": null, + "category": [ + "Service" + ], + "category_id": "18000000", + "check_number": null, + "counterparties": [], + "date": "2024-12-17", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "STK*Shutterstock", + "original_description": "STK*Shutterstock", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "ENTERTAINMENT_MUSIC_AND_AUDIO", + "primary": "ENTERTAINMENT" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_ENTERTAINMENT.png", + "transaction_code": null, + "transaction_id": "wWnqpjJldatQbrvJydjETKPDB3J4E9cPZomp8", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 18.75, + "authorized_date": "2024-12-16", + "authorized_datetime": null, + "category": [ + "Service" + ], + "category_id": "18000000", + "check_number": null, + "counterparties": [], + "date": "2024-12-17", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "Valve", + "original_description": "Valve", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "GENERAL_MERCHANDISE_OTHER_GENERAL_MERCHANDISE", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "5vK5Ng6bdetkX4dDA6NbSqZK7QDoXMu5K78nE", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 38.47, + "authorized_date": "2024-12-12", + "authorized_datetime": null, + "category": [ + "Service", + "Financial", + "Taxes" + ], + "category_id": "18020001", + "check_number": null, + "counterparties": [], + "date": "2024-12-15", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "FREETAXUSA.COM", + "original_description": "FREETAXUSA.COM", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "GENERAL_MERCHANDISE_OTHER_GENERAL_MERCHANDISE", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "JMgVz59xnlhM1pyKljkeUAXZgLJDw6IB6gkyK", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 11.25, + "authorized_date": "2024-12-13", + "authorized_datetime": null, + "category": [ + "Travel", + "Gas Stations" + ], + "category_id": "22009000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "ZM4Jngp0WpL0RW228dA3EoYBbJJnADeA2jDRY", + "logo_url": "https://plaid-merchant-logos.plaid.com/texaco_1003.png", + "name": "Texaco", + "phone_number": null, + "type": "merchant", + "website": "texaco.com" + } + ], + "date": "2024-12-15", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/texaco_1003.png", + "merchant_entity_id": "ZM4Jngp0WpL0RW228dA3EoYBbJJnADeA2jDRY", + "merchant_name": "Texaco", + "name": "Texaco", + "original_description": "Texaco", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "TRANSPORTATION_GAS", + "primary": "TRANSPORTATION" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_TRANSPORTATION.png", + "transaction_code": null, + "transaction_id": "k7ZAaqkDn9IeLWvPMD3QTQmwjAae61sL6dojr", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "texaco.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 21.41, + "authorized_date": "2024-12-13", + "authorized_datetime": null, + "category": [ + "Shops", + "Food and Beverage Store" + ], + "category_id": "19025000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "wVqOb79B01Ebd2ZXeeYjozWb3eW6AXXm06Nzy", + "logo_url": "https://plaid-merchant-logos.plaid.com/bevmo_108.png", + "name": "BevMo!", + "phone_number": null, + "type": "merchant", + "website": "bevmo.com" + } + ], + "date": "2024-12-15", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": "01" + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/bevmo_108.png", + "merchant_entity_id": "wVqOb79B01Ebd2ZXeeYjozWb3eW6AXXm06Nzy", + "merchant_name": "BevMo!", + "name": "BEVERAGES \u0026 MORE #01", + "original_description": "BEVERAGES \u0026 MORE #01", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "HIGH", + "detailed": "FOOD_AND_DRINK_BEER_WINE_AND_LIQUOR", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "leMA4KdDbvT9Rj8aDw3ASlqwZmdvGDipodRqL", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "bevmo.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 16.01, + "authorized_date": "2024-12-13", + "authorized_datetime": null, + "category": [ + "Shops", + "Automotive", + "Car Parts and Accessories" + ], + "category_id": "19005006", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": null, + "logo_url": null, + "name": "Pep Boys", + "phone_number": null, + "type": "merchant", + "website": null + } + ], + "date": "2024-12-15", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": "2491 Aramingo Ave", + "city": "Philadelphia", + "country": null, + "lat": 39.974564, + "lon": -75.11924, + "postal_code": "19125", + "region": "PA", + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": "Pep Boys", + "name": "PEPBOYS STORE 012", + "original_description": "PEPBOYS STORE 012", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "GENERAL_SERVICES_AUTOMOTIVE", + "primary": "GENERAL_SERVICES" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_SERVICES.png", + "transaction_code": null, + "transaction_id": "qLgAex9DKrfNjEv5oDMaFebVapMmWGhgr7Rjd", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 18, + "authorized_date": "2024-12-13", + "authorized_datetime": null, + "category": [ + "Travel", + "Parking" + ], + "category_id": "22013000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "AypeXeN8WKnmvm7RAowe0a0Xr9b47dANe0MLk", + "logo_url": "https://plaid-merchant-logos.plaid.com/laz_parking_570.png", + "name": "LAZ Parking", + "phone_number": null, + "type": "merchant", + "website": "lazparking.com" + } + ], + "date": "2024-12-15", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/laz_parking_570.png", + "merchant_entity_id": "AypeXeN8WKnmvm7RAowe0a0Xr9b47dANe0MLk", + "merchant_name": "LAZ Parking", + "name": "LAZ Parking", + "original_description": "LAZ Parking", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "TRANSPORTATION_PARKING", + "primary": "TRANSPORTATION" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_TRANSPORTATION.png", + "transaction_code": null, + "transaction_id": "K18PB5Zdbqh17BVgqbRQhyoaA5z1deiRpA19R", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "lazparking.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 221.87, + "authorized_date": "2024-12-13", + "authorized_datetime": null, + "category": [ + "Travel", + "Lodging", + "Hotels and Motels" + ], + "category_id": "22012003", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "b5JD7jwmQYwpb9raKaZbLjV8903dVXaJXm5ap", + "logo_url": "https://plaid-merchant-logos.plaid.com/airbnb_29.png", + "name": "Airbnb", + "phone_number": null, + "type": "merchant", + "website": "airbnb.com" + } + ], + "date": "2024-12-13", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/airbnb_29.png", + "merchant_entity_id": "b5JD7jwmQYwpb9raKaZbLjV8903dVXaJXm5ap", + "merchant_name": "Airbnb", + "name": "Airbnb", + "original_description": "Airbnb", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "TRAVEL_LODGING", + "primary": "TRAVEL" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_TRAVEL.png", + "transaction_code": null, + "transaction_id": "rp8wQd9Drzc7XxVRZbBNsbxP5JMjG9i7J61Ad", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "airbnb.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 8.24, + "authorized_date": "2024-12-13", + "authorized_datetime": null, + "category": [ + "Food and Drink", + "Restaurants" + ], + "category_id": "13005000", + "check_number": null, + "counterparties": [], + "date": "2024-12-13", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "Subway", + "original_description": "SUBWAY 01234567", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "FOOD_AND_DRINK_FAST_FOOD", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "zkyz8Q9rNPCXgWQeyj9pIeqPWlmJpdhlNLQyw", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 16.28, + "authorized_date": "2024-12-13", + "authorized_datetime": null, + "category": [ + "Food and Drink", + "Restaurants", + "Fast Food" + ], + "category_id": "13005032", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "Mjqdpqn3ZgOdrAYpkAKMkArEON7avQ8jV9BX1", + "logo_url": "https://plaid-merchant-logos.plaid.com/chipotle_mexican_grill_202.png", + "name": "Chipotle Mexican Grill", + "phone_number": null, + "type": "merchant", + "website": "chipotle.com" + } + ], + "date": "2024-12-13", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/chipotle_mexican_grill_202.png", + "merchant_entity_id": "Mjqdpqn3ZgOdrAYpkAKMkArEON7avQ8jV9BX1", + "merchant_name": "Chipotle Mexican Grill", + "name": "Chipotle Mexican Grill", + "original_description": "CHIPOTLE 0123", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "FOOD_AND_DRINK_FAST_FOOD", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "B4ek869ZpGC41mDnjvVxuBdXVLjPRxC4M8gpL", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "chipotle.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 7.49, + "authorized_date": "2024-12-16", + "authorized_datetime": null, + "category": [ + "Travel", + "Gas Stations" + ], + "category_id": "22009000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "8y7851JXryBnkOWOjW163yqzAB01oa8k6e1g9", + "logo_url": "https://plaid-merchant-logos.plaid.com/shell_891.png", + "name": "Shell", + "phone_number": null, + "type": "merchant", + "website": "shell.com" + } + ], + "date": "2024-12-20", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/shell_891.png", + "merchant_entity_id": "8y7851JXryBnkOWOjW163yqzAB01oa8k6e1g9", + "merchant_name": "Shell", + "name": "SHELL/SHELL #...0123", + "original_description": "SHELL/SHELL #...0123", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "TRANSPORTATION_GAS", + "primary": "TRANSPORTATION" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_TRANSPORTATION.png", + "transaction_code": null, + "transaction_id": "3ylJapdb3jf8nK3A1z7JF3jlmQa5LBhZlnEjP", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "shell.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 15.47, + "authorized_date": "2024-12-16", + "authorized_datetime": null, + "category": [ + "Food and Drink", + "Restaurants", + "Coffee Shop" + ], + "category_id": "13005043", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "p64nrAXvN7r7mjrdp0qNKnB137Da6BWbbrEwz", + "logo_url": "https://plaid-merchant-logos.plaid.com/dunkin_donuts_305.png", + "name": "Dunkin'", + "phone_number": null, + "type": "merchant", + "website": "dunkindonuts.com" + } + ], + "date": "2024-12-20", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": "012345" + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/dunkin_donuts_305.png", + "merchant_entity_id": "p64nrAXvN7r7mjrdp0qNKnB137Da6BWbbrEwz", + "merchant_name": "Dunkin'", + "name": "Dunkin' Donuts", + "original_description": "DUNKIN #012345 Q01", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "FOOD_AND_DRINK_COFFEE", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "xAbKo75qa4um5aZ8zndpUMd7gW5wbxU64Vezk", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "dunkindonuts.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 5.99, + "authorized_date": "2024-12-20", + "authorized_datetime": null, + "category": [ + "Travel", + "Car Service", + "Ride Share" + ], + "category_id": "22006001", + "check_number": null, + "counterparties": [], + "date": "2024-12-20", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "JUNO USA, LP", + "original_description": "JUNO USA, LP", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "GENERAL_MERCHANDISE_OTHER_GENERAL_MERCHANDISE", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "dx4ZK58XoWCvbXVZlNgaC9Rl5wkLExCJEQRbX", + "transaction_type": "special", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 18.98, + "authorized_date": "2024-12-20", + "authorized_datetime": null, + "category": [ + "Shops", + "Clothing and Accessories" + ], + "category_id": "19012000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "3pNw9kDYvbpLZKX8p3BD6KdXOZYvJL4M8nKOM", + "logo_url": "https://plaid-merchant-logos.plaid.com/claires_216.png", + "name": "Claire's", + "phone_number": null, + "type": "merchant", + "website": "claires.com" + } + ], + "date": "2024-12-20", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": "0123" + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/claires_216.png", + "merchant_entity_id": "3pNw9kDYvbpLZKX8p3BD6KdXOZYvJL4M8nKOM", + "merchant_name": "Claire's", + "name": "Claire's", + "original_description": "CLAIRE'S #0123", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "GENERAL_MERCHANDISE_CLOTHING_AND_ACCESSORIES", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "azx7A59X1gc5orV6dPw3soqAjJ3zZysZ5QDEn", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "claires.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 205.77, + "authorized_date": "2024-12-16", + "authorized_datetime": null, + "category": [ + "Travel", + "Airlines and Aviation Services" + ], + "category_id": "22001000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "bMX8XMQbeoNK1jdBewBvq34JmV5wDBOLqKk74", + "logo_url": "https://plaid-merchant-logos.plaid.com/spirit_airlines_943.png", + "name": "Spirit Airlines", + "phone_number": null, + "type": "merchant", + "website": "spirit.com" + } + ], + "date": "2024-12-19", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/spirit_airlines_943.png", + "merchant_entity_id": "bMX8XMQbeoNK1jdBewBvq34JmV5wDBOLqKk74", + "merchant_name": "Spirit Airlines", + "name": "Spirit Airlines", + "original_description": "Spirit Airlines", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "TRAVEL_FLIGHTS", + "primary": "TRAVEL" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_TRAVEL.png", + "transaction_code": null, + "transaction_id": "49qZ4oGbx7T873XDoebnFmlbdW4eDaFJbALv4", + "transaction_type": "special", + "unofficial_currency_code": null, + "website": "spirit.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 12.25, + "authorized_date": "2024-12-19", + "authorized_datetime": null, + "category": [ + "Shops", + "Sporting Goods" + ], + "category_id": "19046000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "LOW", + "entity_id": null, + "logo_url": null, + "name": "Sporting Goods", + "phone_number": null, + "type": "merchant", + "website": null + } + ], + "date": "2024-12-19", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": "Sporting Goods", + "name": "DICK'S Sporting Goods", + "original_description": "Dicks Sporting Goods", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "GENERAL_MERCHANDISE_SPORTING_GOODS", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "NokPd5gNlzfoV1byzGkls7JMP5G3Q9sy65QGN", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 443.42, + "authorized_date": "2024-12-19", + "authorized_datetime": null, + "category": [ + "Shops", + "Computers and Electronics" + ], + "category_id": "19013000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "q63vdERovbmjyQoYA6k7m6je8EzOv6ywA7Ea2", + "logo_url": "https://plaid-merchant-logos.plaid.com/best_buy_103.png", + "name": "Best Buy", + "phone_number": null, + "type": "merchant", + "website": "bestbuy.com" + } + ], + "date": "2024-12-19", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/best_buy_103.png", + "merchant_entity_id": "q63vdERovbmjyQoYA6k7m6je8EzOv6ywA7Ea2", + "merchant_name": "Best Buy", + "name": "Best Buy", + "original_description": "BEST BUY 01234567", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "GENERAL_MERCHANDISE_ELECTRONICS", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "P8n745oWK3cnXKyW31x9slDB75xZEeio6WAeB", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "bestbuy.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 3445.87, + "authorized_date": "2024-12-16", + "authorized_datetime": null, + "category": [ + "Shops", + "Warehouses and Wholesale Stores" + ], + "category_id": "19051000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "pBowAoZJMM9DKR37jvNmzM4yWBBXyMzV2rM3A", + "logo_url": "https://plaid-merchant-logos.plaid.com/costco_235.png", + "name": "Costco", + "phone_number": null, + "type": "merchant", + "website": "costco.com" + } + ], + "date": "2024-12-21", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/costco_235.png", + "merchant_entity_id": "pBowAoZJMM9DKR37jvNmzM4yWBBXyMzV2rM3A", + "merchant_name": "Costco", + "name": "Costco", + "original_description": "WWW COSTCO COM", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "GENERAL_MERCHANDISE_SUPERSTORES", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "jjQ7dlP5GyCbNavw7rzpty4MQmk9opi6WLa7N", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "costco.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 4.9, + "authorized_date": "2024-12-19", + "authorized_datetime": null, + "category": [ + "Travel", + "Taxi" + ], + "category_id": "22016000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "eyg8o776k0QmNgVpAmaQj4WgzW9Qzo6O51gdd", + "logo_url": "https://plaid-merchant-logos.plaid.com/uber_1060.png", + "name": "Uber", + "phone_number": null, + "type": "merchant", + "website": "uber.com" + } + ], + "date": "2024-12-21", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/uber_1060.png", + "merchant_entity_id": "eyg8o776k0QmNgVpAmaQj4WgzW9Qzo6O51gdd", + "merchant_name": "Uber", + "name": "Uber", + "original_description": "UBER", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "TRANSPORTATION_TAXIS_AND_RIDE_SHARES", + "primary": "TRANSPORTATION" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_TRANSPORTATION.png", + "transaction_code": null, + "transaction_id": "76zXjElb4Zt8RL4DAzM9F9Zwj8GW6DCdJnx57", + "transaction_type": "special", + "unofficial_currency_code": null, + "website": "uber.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 29.88, + "authorized_date": "2024-12-19", + "authorized_datetime": null, + "category": [ + "Food and Drink", + "Restaurants", + "Fast Food" + ], + "category_id": "13005032", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "AEmBpp8kDV9okdRZAZMOVLjzr6gL87yn11mY9", + "logo_url": "https://plaid-merchant-logos.plaid.com/papa_johns_716.png", + "name": "Papa John's", + "phone_number": null, + "type": "merchant", + "website": "papajohns.com" + } + ], + "date": "2024-12-21", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/papa_johns_716.png", + "merchant_entity_id": "AEmBpp8kDV9okdRZAZMOVLjzr6gL87yn11mY9", + "merchant_name": "Papa John's", + "name": "Papa John's", + "original_description": "Papa Johns", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "FOOD_AND_DRINK_FAST_FOOD", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "edNwr51XgAcoARVZP68vsdRGzqom9Bur95mbA", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "papajohns.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 18.75, + "authorized_date": "2024-12-19", + "authorized_datetime": null, + "category": [ + "Service", + "Shipping and Freight" + ], + "category_id": "18058000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "9Dn92eaeYEjom88122akjmMnore4Ed76Qd5WZ", + "logo_url": "https://plaid-merchant-logos.plaid.com/us_post_office_1059.png", + "name": "U.S. Post Office", + "phone_number": null, + "type": "merchant", + "website": "usps.com" + } + ], + "date": "2024-12-21", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/us_post_office_1059.png", + "merchant_entity_id": "9Dn92eaeYEjom88122akjmMnore4Ed76Qd5WZ", + "merchant_name": "U.S. Post Office", + "name": "USPS POSTAGE STAMPS.COM", + "original_description": "USPS POSTAGE STAMPS.COM", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "GENERAL_SERVICES_POSTAGE_AND_SHIPPING", + "primary": "GENERAL_SERVICES" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_SERVICES.png", + "transaction_code": null, + "transaction_id": "QEbZN5mMrxTnJ4XRxba9s9paZDyVQGCwm7Dgy", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "usps.com" + } + ], + "has_more": true, + "modified": [], + "next_cursor": "CAESJVFFYlpONW1NcnhUbko0WFJ4YmE5czlwYVpEeVZRR0N3bTdEZ3kiDAian63BBhDo2pCgAyoMCJqfrcEGEOjakKAD", + "removed": [], + "request_id": "0Gt7jQjgZTQBRfQ", + "transactions_update_status": "HISTORICAL_UPDATE_COMPLETE" + } + recorded_at: Mon, 19 May 2025 15:35:03 GMT +- request: + method: post + uri: https://sandbox.plaid.com/transactions/sync + body: + encoding: UTF-8 + string: '{"access_token":"access-sandbox-d531d3c9-8520-43ca-9e58-5b70b79fd1d4","cursor":"CAESJVFFYlpONW1NcnhUbko0WFJ4YmE5czlwYVpEeVZRR0N3bTdEZ3kiDAian63BBhDo2pCgAyoMCJqfrcEGEOjakKAD","count":100,"options":{"include_original_description":true}}' + headers: + Content-Type: + - application/json + User-Agent: + - Plaid Ruby v38.0.0 + Accept: + - application/json + Plaid-Client-Id: + - "" + Plaid-Version: + - '2020-09-14' + Plaid-Secret: + - "" + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + response: + status: + code: 200 + message: OK + headers: + Server: + - nginx + Date: + - Mon, 19 May 2025 15:35:04 GMT + Content-Type: + - application/json; charset=utf-8 + Transfer-Encoding: + - chunked + Connection: + - keep-alive + Plaid-Version: + - '2020-09-14' + Vary: + - Accept-Encoding + X-Envoy-Upstream-Service-Time: + - '439' + X-Envoy-Decorator-Operation: + - default.svc-apiv2:8080/* + Strict-Transport-Security: + - max-age=31536000; includeSubDomains; preload + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Xss-Protection: + - 1; mode=block + body: + encoding: ASCII-8BIT + string: |- + { + "accounts": [ + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "balances": { + "available": 11065.71, + "current": 1000, + "iso_currency_code": "USD", + "limit": 12200, + "unofficial_currency_code": null + }, + "holder_category": "personal", + "mask": "3053", + "name": "Test Credit Card Account", + "official_name": "Plaid credit card", + "subtype": "credit card", + "type": "credit" + } + ], + "added": [ + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 30.12, + "authorized_date": "2024-12-21", + "authorized_datetime": null, + "category": [ + "Food and Drink", + "Restaurants" + ], + "category_id": "13005000", + "check_number": null, + "counterparties": [], + "date": "2024-12-21", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "*GUYS 0123 QSR", + "original_description": "*GUYS 0123 QSR", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "ENTERTAINMENT_SPORTING_EVENTS_AMUSEMENT_PARKS_AND_MUSEUMS", + "primary": "ENTERTAINMENT" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_ENTERTAINMENT.png", + "transaction_code": null, + "transaction_id": "ZvlBL5eMPQtnXDV6QrR9sRex8pZayMceqXGR7", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 8.1, + "authorized_date": "2024-12-21", + "authorized_datetime": null, + "category": [ + "Shops", + "Supermarkets and Groceries" + ], + "category_id": "19047000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "mk9mJ322wek9V0Y565eLq210z8W97My52ABen", + "logo_url": "https://plaid-merchant-logos.plaid.com/ingles_markets_520.png", + "name": "Ingles Markets", + "phone_number": null, + "type": "merchant", + "website": "ingles-markets.com" + } + ], + "date": "2024-12-21", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": "1818 W Dixon Blvd", + "city": "Shelby", + "country": null, + "lat": 35.295883, + "lon": -81.572388, + "postal_code": "28152", + "region": "NC", + "store_number": "012" + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/ingles_markets_520.png", + "merchant_entity_id": "mk9mJ322wek9V0Y565eLq210z8W97My52ABen", + "merchant_name": "Ingles Markets", + "name": "INGLES MARKETS #012", + "original_description": "INGLES MARKETS #012", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "FOOD_AND_DRINK_GROCERIES", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "MpWPx5o4yrcpZvwQrdbMuwXJg8Eze3fL6P1l3", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "ingles-markets.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 9.64, + "authorized_date": "2024-12-18", + "authorized_datetime": null, + "category": [ + "Food and Drink", + "Restaurants" + ], + "category_id": "13005000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "EZ92VM3NzEaVdzq5eRB2YOb14a3OYk3gRvyZQ", + "logo_url": "https://plaid-counterparty-logos.plaid.com/uber_eats_2.png", + "name": "Uber Eats", + "phone_number": null, + "type": "marketplace", + "website": "ubereats.com" + } + ], + "date": "2024-12-18", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": "Uber Eats", + "name": "Uber Eats", + "original_description": "UBER EATS", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "FOOD_AND_DRINK_RESTAURANT", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "1bXWx1mVzNcQvyzEo34JTXVmegwx94tpjerKB", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 8.63, + "authorized_date": "2024-12-20", + "authorized_datetime": null, + "category": [ + "Travel", + "Public Transportation Services" + ], + "category_id": "22014000", + "check_number": null, + "counterparties": [], + "date": "2024-12-24", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "MTA*MNR STATION TIX", + "original_description": "MTA*MNR STATION TIX", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "TRANSPORTATION_PUBLIC_TRANSIT", + "primary": "TRANSPORTATION" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_TRANSPORTATION.png", + "transaction_code": null, + "transaction_id": "LLEP35oamKfLwWGzKa8mCk6Apgx1W7ukjpEQR", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 11.25, + "authorized_date": "2024-12-20", + "authorized_datetime": null, + "category": [ + "Community", + "Public and Social Services" + ], + "category_id": "12017000", + "check_number": null, + "counterparties": [], + "date": "2024-12-24", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": "Parenthood Federa", + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "Planned Parenthood", + "original_description": "PLANNED PARENTHOOD FEDERA", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "MEDICAL_OTHER_MEDICAL", + "primary": "MEDICAL" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_MEDICAL.png", + "transaction_code": null, + "transaction_id": "p1oA739DqKhR4y8Xk1ZWcxJrdLn6oGtpoVzrN", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 11.27, + "authorized_date": "2024-12-22", + "authorized_datetime": null, + "category": [ + "Food and Drink", + "Restaurants", + "Fast Food" + ], + "category_id": "13005032", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "OEkMw43LJ9yzKOJqrLJyJVBY8dyYa4LqeRLLn", + "logo_url": "https://plaid-merchant-logos.plaid.com/jack_in_the_box_528.png", + "name": "Jack in the Box", + "phone_number": null, + "type": "merchant", + "website": "jackinthebox.com" + } + ], + "date": "2024-12-24", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/jack_in_the_box_528.png", + "merchant_entity_id": "OEkMw43LJ9yzKOJqrLJyJVBY8dyYa4LqeRLLn", + "merchant_name": "Jack in the Box", + "name": "Jack in the Box", + "original_description": "Jack in the Box", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "FOOD_AND_DRINK_FAST_FOOD", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "oMpyjB9Dlqhb4v8gkyn6tbzMpZy5G3ioq7bM8", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "jackinthebox.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 30.12, + "authorized_date": "2024-12-23", + "authorized_datetime": null, + "category": [ + "Food and Drink", + "Restaurants" + ], + "category_id": "13005000", + "check_number": null, + "counterparties": [], + "date": "2024-12-24", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "*GUYS 0123 QSR", + "original_description": "*GUYS 0123 QSR", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "ENTERTAINMENT_SPORTING_EVENTS_AMUSEMENT_PARKS_AND_MUSEUMS", + "primary": "ENTERTAINMENT" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_ENTERTAINMENT.png", + "transaction_code": null, + "transaction_id": "g4j7B5kXEnCwdLV7NzQPHV59dRBP8WcE8n5Vn", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 19.22, + "authorized_date": "2024-12-24", + "authorized_datetime": null, + "category": [ + "Food and Drink", + "Restaurants", + "Fast Food" + ], + "category_id": "13005032", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "Mjqdpqn3ZgOdrAYpkAKMkArEON7avQ8jV9BX1", + "logo_url": "https://plaid-merchant-logos.plaid.com/chipotle_mexican_grill_202.png", + "name": "Chipotle Mexican Grill", + "phone_number": null, + "type": "merchant", + "website": "chipotle.com" + } + ], + "date": "2024-12-24", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/chipotle_mexican_grill_202.png", + "merchant_entity_id": "Mjqdpqn3ZgOdrAYpkAKMkArEON7avQ8jV9BX1", + "merchant_name": "Chipotle Mexican Grill", + "name": "Chipotle Mexican Grill", + "original_description": "CHIPOTLE 0123 #...0123", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "FOOD_AND_DRINK_FAST_FOOD", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "8lBZ7kqmNMflM6N1rBb8udzkGwyA5MuW3L81m", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "chipotle.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 45, + "authorized_date": "2024-12-24", + "authorized_datetime": null, + "category": [ + "Travel", + "Public Transportation Services" + ], + "category_id": "22014000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": null, + "logo_url": null, + "name": "Clipper Service", + "phone_number": null, + "type": "merchant", + "website": null + } + ], + "date": "2024-12-24", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": "Clipper Service", + "name": "CLIPPER SERVICE", + "original_description": "CLIPPER SERVICE", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "PERSONAL_CARE_HAIR_AND_BEAUTY", + "primary": "PERSONAL_CARE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_PERSONAL_CARE.png", + "transaction_code": null, + "transaction_id": "EjM3A5vK8mCjLea1GE3mCyom95Prvki4xkmRm", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 4.7, + "authorized_date": "2024-12-24", + "authorized_datetime": null, + "category": [ + "Shops", + "Discount Stores" + ], + "category_id": "19020000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "rMKJ1dN2kL4NQarZ3oQMW9j14YpL845dDQo7R", + "logo_url": "https://plaid-merchant-logos.plaid.com/dollar_tree_289.png", + "name": "Dollar Tree", + "phone_number": null, + "type": "merchant", + "website": "dollartree.com" + } + ], + "date": "2024-12-24", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/dollar_tree_289.png", + "merchant_entity_id": "rMKJ1dN2kL4NQarZ3oQMW9j14YpL845dDQo7R", + "merchant_name": "Dollar Tree", + "name": "DOLLARTREE", + "original_description": "DOLLARTREE", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "GENERAL_MERCHANDISE_DISCOUNT_STORES", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "Wm6kZ5zMajudb4XV6nyafB8VgNb3znC6Z1j9Q", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "dollartree.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 354.3, + "authorized_date": "2024-12-24", + "authorized_datetime": null, + "category": [ + "Travel", + "Airlines and Aviation Services" + ], + "category_id": "22001000", + "check_number": null, + "counterparties": [], + "date": "2024-12-24", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "JetBlue", + "original_description": "JetBlue", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "ENTERTAINMENT_SPORTING_EVENTS_AMUSEMENT_PARKS_AND_MUSEUMS", + "primary": "ENTERTAINMENT" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_ENTERTAINMENT.png", + "transaction_code": null, + "transaction_id": "Aa7KgRpVLAhamWlkAvD3s8Dl5KZ7brF9rA5jL", + "transaction_type": "special", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 146.27, + "authorized_date": "2024-12-22", + "authorized_datetime": null, + "category": [ + "Shops", + "Clothing and Accessories" + ], + "category_id": "19012000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "wY2K5ovrKVkJOaWaQbRW3Z2Lo2kZ1vV2YNLO6", + "logo_url": "https://plaid-merchant-logos.plaid.com/tj_maxx_1026.png", + "name": "TJ Maxx", + "phone_number": null, + "type": "merchant", + "website": "tjmaxx.com" + } + ], + "date": "2024-12-22", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": "48 E 33rd St", + "city": "Edmond", + "country": null, + "lat": 35.621834, + "lon": -97.484398, + "postal_code": "73013", + "region": "OK", + "store_number": "0123" + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/tj_maxx_1026.png", + "merchant_entity_id": "wY2K5ovrKVkJOaWaQbRW3Z2Lo2kZ1vV2YNLO6", + "merchant_name": "TJ Maxx", + "name": "T.J.Maxx", + "original_description": "TJMAXX #0123", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "GENERAL_MERCHANDISE_DEPARTMENT_STORES", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "GeLdq5ozW9Te8Jd4MGvPT84MZDwPW7F6MPoBx", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "tjmaxx.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 19.25, + "authorized_date": "2024-12-23", + "authorized_datetime": null, + "category": [ + "Travel", + "Gas Stations" + ], + "category_id": "22009000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "pgvBww362Nz7L4NBq3QY5M7g6pk1mRJWv1w3Q", + "logo_url": "https://plaid-merchant-logos.plaid.com/kwik_trip_562.png", + "name": "Kwik Trip", + "phone_number": null, + "type": "merchant", + "website": "kwiktrip.com" + } + ], + "date": "2024-12-23", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": "012" + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/kwik_trip_562.png", + "merchant_entity_id": "pgvBww362Nz7L4NBq3QY5M7g6pk1mRJWv1w3Q", + "merchant_name": "Kwik Trip", + "name": "Kwik Trip", + "original_description": "Auth : Kwik Trip #012", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "TRANSPORTATION_GAS", + "primary": "TRANSPORTATION" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_TRANSPORTATION.png", + "transaction_code": null, + "transaction_id": "nZLAPzwDylibQdva8jeDtG1eMJoEWbtAlWQel", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "kwiktrip.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 64.2, + "authorized_date": "2024-12-23", + "authorized_datetime": null, + "category": [ + "Service" + ], + "category_id": "18000000", + "check_number": null, + "counterparties": [], + "date": "2024-12-23", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "ROVER.COM PET CARE", + "original_description": "ROVER.COM PET CARE", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "GENERAL_MERCHANDISE_PET_SUPPLIES", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "bBdylJgXLku1ryVNQ9XehxReg34KG7tmbZ7xp", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 17.95, + "authorized_date": "2024-12-23", + "authorized_datetime": null, + "category": [ + "Food and Drink", + "Restaurants" + ], + "category_id": "13005000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "0y81d9veNWk3yL7qqoRqQE3Lg3r1062zVAXKM", + "logo_url": "https://plaid-merchant-logos.plaid.com/popeyes_768.png", + "name": "Popeyes", + "phone_number": null, + "type": "merchant", + "website": "popeyes.com" + } + ], + "date": "2024-12-26", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/popeyes_768.png", + "merchant_entity_id": "0y81d9veNWk3yL7qqoRqQE3Lg3r1062zVAXKM", + "merchant_name": "Popeyes", + "name": "Popeyes", + "original_description": "Popeyes Louisiana Kitchen", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "FOOD_AND_DRINK_FAST_FOOD", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "mQ1ANkbDmRfb4yvJ6npMt6LmBj1NyEcgydXmD", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "popeyes.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 9.98, + "authorized_date": "2024-12-23", + "authorized_datetime": null, + "category": [ + "Food and Drink", + "Restaurants", + "Fast Food" + ], + "category_id": "13005032", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "OEkMw43LJ9yzKOJqrLJyJVBY8dyYa4LqeRLLn", + "logo_url": "https://plaid-merchant-logos.plaid.com/jack_in_the_box_528.png", + "name": "Jack in the Box", + "phone_number": null, + "type": "merchant", + "website": "jackinthebox.com" + } + ], + "date": "2024-12-26", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/jack_in_the_box_528.png", + "merchant_entity_id": "OEkMw43LJ9yzKOJqrLJyJVBY8dyYa4LqeRLLn", + "merchant_name": "Jack in the Box", + "name": "Jack in the Box", + "original_description": "Jack in the Box", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "FOOD_AND_DRINK_FAST_FOOD", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "yGmrge5K4NFpDQweBL4yuPM35rxdXZi46Xw3Q", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "jackinthebox.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 76.63, + "authorized_date": "2024-12-24", + "authorized_datetime": null, + "category": [ + "Shops", + "Digital Purchase" + ], + "category_id": "19019000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "2gOwmq9qK56K60oDm3eLrREV2B2mVadkRn8MW", + "logo_url": "https://plaid-merchant-logos.plaid.com/amazon_44.png", + "name": "Amazon", + "phone_number": null, + "type": "merchant", + "website": "amazon.com" + } + ], + "date": "2024-12-26", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/amazon_44.png", + "merchant_entity_id": "2gOwmq9qK56K60oDm3eLrREV2B2mVadkRn8MW", + "merchant_name": "Amazon", + "name": "AMAZON.COM AMZN.COM/BILL AMZN.COM/BILLWA", + "original_description": "AMAZON.COM AMZN.COM/BILL AMZN.COM/BILLWA", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "GENERAL_MERCHANDISE_ONLINE_MARKETPLACES", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "9q36eAK7P1iqGMPbA34yUAZV7NmLojI4xQgGW", + "transaction_type": "digital", + "unofficial_currency_code": null, + "website": "amazon.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 3.97, + "authorized_date": "2024-12-24", + "authorized_datetime": null, + "category": [ + "Travel", + "Gas Stations" + ], + "category_id": "22009000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "wkW8w9jD57qVwvyDKoWr2A2Ve84ABrMDXv35p", + "logo_url": "https://plaid-merchant-logos.plaid.com/sheetz_889.png", + "name": "Sheetz", + "phone_number": null, + "type": "merchant", + "website": "sheetz.com" + } + ], + "date": "2024-12-25", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/sheetz_889.png", + "merchant_entity_id": "wkW8w9jD57qVwvyDKoWr2A2Ve84ABrMDXv35p", + "merchant_name": "Sheetz", + "name": "Sheetz", + "original_description": "Sheetz", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "TRANSPORTATION_GAS", + "primary": "TRANSPORTATION" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_TRANSPORTATION.png", + "transaction_code": null, + "transaction_id": "vEGlLPADxdT7rVvMKoxpsbozq3NxkGiq6k1zj", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "sheetz.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 17.33, + "authorized_date": "2024-12-24", + "authorized_datetime": null, + "category": [ + "Travel", + "Airlines and Aviation Services" + ], + "category_id": "22001000", + "check_number": null, + "counterparties": [], + "date": "2024-12-29", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "Alaska Airlines", + "original_description": "ALASKA AIR 0123456789012", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "GENERAL_MERCHANDISE_OTHER_GENERAL_MERCHANDISE", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "RWmGP5oMzdtreRojdm9zi5wEvmqNVpHapbAl9", + "transaction_type": "special", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 107.24, + "authorized_date": "2024-12-29", + "authorized_datetime": null, + "category": [ + "Shops", + "Furniture and Home Decor" + ], + "category_id": "19027000", + "check_number": null, + "counterparties": [], + "date": "2024-12-29", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "Wayfair", + "original_description": "WAYFAIR*Wayfair", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "GENERAL_MERCHANDISE_OTHER_GENERAL_MERCHANDISE", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "6RrvP8d6aQt8RdaEAwWkFbyD6lRWjLi8DXe9l", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 18.74, + "authorized_date": "2024-12-29", + "authorized_datetime": null, + "category": [ + "Service", + "Security and Safety" + ], + "category_id": "18057000", + "check_number": null, + "counterparties": [], + "date": "2024-12-29", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "SIMPLISAFE.COM", + "original_description": "SIMPLISAFE.COM", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "HOME_IMPROVEMENT_SECURITY", + "primary": "HOME_IMPROVEMENT" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_HOME_IMPROVEMENT.png", + "transaction_code": null, + "transaction_id": "XyXrM5BG47fmPpGD7694U6qPyJX8decbKnL66", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 9.62, + "authorized_date": "2024-12-29", + "authorized_datetime": null, + "category": [ + "Service", + "Subscription" + ], + "category_id": "18061000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "LOW", + "entity_id": null, + "logo_url": null, + "name": "LLC", + "phone_number": null, + "type": "merchant", + "website": null + }, + { + "confidence_level": "VERY_HIGH", + "entity_id": "KW8b0J0kX53kBAnYRV5VVnbb3WWpb17VBDra2", + "logo_url": "https://plaid-counterparty-logos.plaid.com/roku_91.png", + "name": "Roku", + "phone_number": null, + "type": "marketplace", + "website": "roku.com" + } + ], + "date": "2024-12-29", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": "LLC", + "name": "ROKU FOR HULU LLC", + "original_description": "ROKU FOR HULU LLC", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "ENTERTAINMENT_TV_AND_MOVIES", + "primary": "ENTERTAINMENT" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_ENTERTAINMENT.png", + "transaction_code": null, + "transaction_id": "DPZBW5VqgbFP764zbpqmSvjWJDPg3bt3WaJwe", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 139.63, + "authorized_date": "2024-12-29", + "authorized_datetime": null, + "category": [ + "Shops", + "Supermarkets and Groceries" + ], + "category_id": "19047000", + "check_number": null, + "counterparties": [], + "date": "2024-12-29", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "METRO MARKET 012", + "original_description": "METRO MARKET 012", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "FOOD_AND_DRINK_GROCERIES", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "VbRqQ5rLdPcn6RqVP4QdsXJG18VQ3Et9gPEm1", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 60.39, + "authorized_date": "2024-12-29", + "authorized_datetime": null, + "category": [ + "Service", + "Food and Beverage" + ], + "category_id": "18021000", + "check_number": null, + "counterparties": [], + "date": "2024-12-29", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "GROVE/EPANTRY", + "original_description": "GROVE/EPANTRY", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "GENERAL_MERCHANDISE_OTHER_GENERAL_MERCHANDISE", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "wWnqpjJldatQbrvJydjETKPDB3J4E9cPZomN8", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 15.75, + "authorized_date": "2024-12-29", + "authorized_datetime": null, + "category": [ + "Food and Drink", + "Restaurants", + "Fast Food" + ], + "category_id": "13005032", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "Ew00y0rDXn7nvvXkrWe3RQ9Y8e1Bw6pq3pwYJ", + "logo_url": "https://plaid-merchant-logos.plaid.com/panda_express_714.png", + "name": "Panda Express", + "phone_number": null, + "type": "merchant", + "website": "pandaexpress.com" + } + ], + "date": "2024-12-29", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": "0123" + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/panda_express_714.png", + "merchant_entity_id": "Ew00y0rDXn7nvvXkrWe3RQ9Y8e1Bw6pq3pwYJ", + "merchant_name": "Panda Express", + "name": "Panda Express", + "original_description": "PANDA EXPRESS #0123", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "FOOD_AND_DRINK_FAST_FOOD", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "5vK5Ng6bdetkX4dDA6NbSqZK7QDoXMu5K78wE", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "pandaexpress.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 16.64, + "authorized_date": "2024-12-29", + "authorized_datetime": null, + "category": [ + "Travel", + "Gas Stations" + ], + "category_id": "22009000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "9WWLDa32VDYBXOybW5rw9vZX8BD3nyRR37W6o", + "logo_url": "https://plaid-merchant-logos.plaid.com/gulf_oil_463.png", + "name": "Gulf Oil", + "phone_number": null, + "type": "merchant", + "website": "gulfoil.com" + } + ], + "date": "2024-12-29", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/gulf_oil_463.png", + "merchant_entity_id": "9WWLDa32VDYBXOybW5rw9vZX8BD3nyRR37W6o", + "merchant_name": "Gulf Oil", + "name": "Gulf Oil", + "original_description": "GULF OIL 01234567", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "TRANSPORTATION_GAS", + "primary": "TRANSPORTATION" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_TRANSPORTATION.png", + "transaction_code": null, + "transaction_id": "JMgVz59xnlhM1pyKljkeUAXZgLJDw6IB6gk4K", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "gulfoil.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 5.9, + "authorized_date": "2024-12-29", + "authorized_datetime": null, + "category": [ + "Travel", + "Taxi" + ], + "category_id": "22016000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "eyg8o776k0QmNgVpAmaQj4WgzW9Qzo6O51gdd", + "logo_url": "https://plaid-merchant-logos.plaid.com/uber_1060.png", + "name": "Uber", + "phone_number": null, + "type": "merchant", + "website": "uber.com" + } + ], + "date": "2024-12-30", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/uber_1060.png", + "merchant_entity_id": "eyg8o776k0QmNgVpAmaQj4WgzW9Qzo6O51gdd", + "merchant_name": "Uber", + "name": "Uber", + "original_description": "UBER HELP.UBER.COMCA", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "TRANSPORTATION_TAXIS_AND_RIDE_SHARES", + "primary": "TRANSPORTATION" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_TRANSPORTATION.png", + "transaction_code": null, + "transaction_id": "k7ZAaqkDn9IeLWvPMD3QTQmwjAae61sL6doQr", + "transaction_type": "special", + "unofficial_currency_code": null, + "website": "uber.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 12.18, + "authorized_date": "2024-12-29", + "authorized_datetime": null, + "category": [ + "Shops", + "Bookstores" + ], + "category_id": "19009000", + "check_number": null, + "counterparties": [], + "date": "2024-12-30", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "Chegg", + "original_description": "Chegg", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "GENERAL_SERVICES_EDUCATION", + "primary": "GENERAL_SERVICES" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_SERVICES.png", + "transaction_code": null, + "transaction_id": "leMA4KdDbvT9Rj8aDw3ASlqwZmdvGDipodRwL", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 3.74, + "authorized_date": "2024-12-31", + "authorized_datetime": null, + "category": [ + "Service" + ], + "category_id": "18000000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "5B10W0429bM0nAE0XNWD3nOqo9KvRMo2mBVXD", + "logo_url": "https://plaid-merchant-logos.plaid.com/godaddy_438.png", + "name": "GoDaddy", + "phone_number": null, + "type": "merchant", + "website": "godaddy.com" + } + ], + "date": "2024-12-31", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/godaddy_438.png", + "merchant_entity_id": "5B10W0429bM0nAE0XNWD3nOqo9KvRMo2mBVXD", + "merchant_name": "GoDaddy", + "name": "DNH*GODADDY.COM", + "original_description": "DNH*GODADDY.COM", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "GENERAL_SERVICES_OTHER_GENERAL_SERVICES", + "primary": "GENERAL_SERVICES" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_SERVICES.png", + "transaction_code": null, + "transaction_id": "bBdylJgXLku1ryVNQ9XehxReg34KG7tmbZ7xV", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "godaddy.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 4.5, + "authorized_date": "2024-12-31", + "authorized_datetime": null, + "category": [ + "Travel", + "Parking" + ], + "category_id": "22013000", + "check_number": null, + "counterparties": [], + "date": "2024-12-31", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "BH PARKING GARAGES", + "original_description": "BH PARKING GARAGES", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "TRANSPORTATION_PARKING", + "primary": "TRANSPORTATION" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_TRANSPORTATION.png", + "transaction_code": null, + "transaction_id": "mQ1ANkbDmRfb4yvJ6npMt6LmBj1NyEcgydXmg", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 6.97, + "authorized_date": "2024-12-31", + "authorized_datetime": null, + "category": [ + "Food and Drink", + "Restaurants", + "Coffee Shop" + ], + "category_id": "13005043", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "p64nrAXvN7r7mjrdp0qNKnB137Da6BWbbrEwz", + "logo_url": "https://plaid-merchant-logos.plaid.com/dunkin_donuts_305.png", + "name": "Dunkin'", + "phone_number": null, + "type": "merchant", + "website": "dunkindonuts.com" + } + ], + "date": "2024-12-31", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": "012345" + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/dunkin_donuts_305.png", + "merchant_entity_id": "p64nrAXvN7r7mjrdp0qNKnB137Da6BWbbrEwz", + "merchant_name": "Dunkin'", + "name": "Dunkin' Donuts", + "original_description": "DUNKIN #012345", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "FOOD_AND_DRINK_COFFEE", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "yGmrge5K4NFpDQweBL4yuPM35rxdXZi46Xw3K", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "dunkindonuts.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 37.5, + "authorized_date": "2024-12-31", + "authorized_datetime": null, + "category": [ + "Food and Drink", + "Restaurants" + ], + "category_id": "13005000", + "check_number": null, + "counterparties": [], + "date": "2024-12-31", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "SUPRA", + "original_description": "SUPRA", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "GENERAL_MERCHANDISE_OTHER_GENERAL_MERCHANDISE", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "9q36eAK7P1iqGMPbA34yUAZV7NmLojI4xQgGV", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 46.81, + "authorized_date": "2024-12-31", + "authorized_datetime": null, + "category": [ + "Service", + "Subscription" + ], + "category_id": "18061000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "rybeAOyg6ZE9z8LdD852ObK3kQ8RRaM0LyDrg", + "logo_url": "https://plaid-merchant-logos.plaid.com/siriusxm_906.png", + "name": "SiriusXM", + "phone_number": null, + "type": "merchant", + "website": "siriusxm.com" + } + ], + "date": "2024-12-31", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": "NY", + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/siriusxm_906.png", + "merchant_entity_id": "rybeAOyg6ZE9z8LdD852ObK3kQ8RRaM0LyDrg", + "merchant_name": "SiriusXM", + "name": "SXM*SIRIUSXM.COM/ACCT", + "original_description": "SXM*SIRIUSXM.COM/ACCT 012-012-0123 NY", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "ENTERTAINMENT_MUSIC_AND_AUDIO", + "primary": "ENTERTAINMENT" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_ENTERTAINMENT.png", + "transaction_code": null, + "transaction_id": "vEGlLPADxdT7rVvMKoxpsbozq3NxkGiq6k1zX", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "siriusxm.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 247.5, + "authorized_date": "2024-12-31", + "authorized_datetime": null, + "category": [ + "Food and Drink", + "Restaurants" + ], + "category_id": "13005000", + "check_number": null, + "counterparties": [], + "date": "2025-01-04", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "VIATORTRIPADVISOR US", + "original_description": "VIATORTRIPADVISOR US", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "GENERAL_MERCHANDISE_OTHER_GENERAL_MERCHANDISE", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "RWmGP5oMzdtreRojdm9zi5wEvmqNVpHapbAlJ", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 4.83, + "authorized_date": "2024-12-31", + "authorized_datetime": null, + "category": [ + "Food and Drink", + "Restaurants" + ], + "category_id": "13005000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "EJ70Mg1YmVNWVyXj85wvmNzjzg5madJyLYgo1", + "logo_url": "https://plaid-merchant-logos.plaid.com/dairy_queen_265.png", + "name": "Dairy Queen", + "phone_number": null, + "type": "merchant", + "website": "dairyqueen.com" + } + ], + "date": "2025-01-03", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/dairy_queen_265.png", + "merchant_entity_id": "EJ70Mg1YmVNWVyXj85wvmNzjzg5madJyLYgo1", + "merchant_name": "Dairy Queen", + "name": "Dairy Queen", + "original_description": "Dairy Queen", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "FOOD_AND_DRINK_FAST_FOOD", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "6RrvP8d6aQt8RdaEAwWkFbyD6lRWjLi8DXe9m", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "dairyqueen.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 6.75, + "authorized_date": "2025-01-01", + "authorized_datetime": null, + "category": [ + "Food and Drink", + "Restaurants", + "Fast Food" + ], + "category_id": "13005032", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "yD7z7XqNmON4BRvVQa5gbVpRyqeYNY4gpbgkW", + "logo_url": "https://plaid-merchant-logos.plaid.com/raising_canes_chicken_fingers_806.png", + "name": "Raising Cane's Chicken Fingers", + "phone_number": null, + "type": "merchant", + "website": "raisingcanes.com" + } + ], + "date": "2025-01-03", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": "012" + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/raising_canes_chicken_fingers_806.png", + "merchant_entity_id": "yD7z7XqNmON4BRvVQa5gbVpRyqeYNY4gpbgkW", + "merchant_name": "Raising Cane's Chicken Fingers", + "name": "Raising Cane's Chicken Fingers", + "original_description": "RAISING CANE'S #012", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "FOOD_AND_DRINK_FAST_FOOD", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "XyXrM5BG47fmPpGD7694U6qPyJX8decbKnL6D", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "raisingcanes.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 60.6, + "authorized_date": "2025-01-03", + "authorized_datetime": null, + "category": [ + "Recreation", + "Gyms and Fitness Centers" + ], + "category_id": "17018000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "1VgdDQkWvvEwemEMpaEVY6Z3Q1wdbnwbEJMz9", + "logo_url": "https://plaid-merchant-logos.plaid.com/24_hour_fitness_1.png", + "name": "24 Hour Fitness", + "phone_number": null, + "type": "merchant", + "website": "24hourfitness.com" + } + ], + "date": "2025-01-03", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": "1265 Laurel Tree Ln Ste 100", + "city": "Carlsbad", + "country": null, + "lat": 33.122879, + "lon": -117.298241, + "postal_code": "92011", + "region": "CA", + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/24_hour_fitness_1.png", + "merchant_entity_id": "1VgdDQkWvvEwemEMpaEVY6Z3Q1wdbnwbEJMz9", + "merchant_name": "24 Hour Fitness", + "name": "24 Hour Fitness", + "original_description": "24 Hour Fitness USA, I", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "PERSONAL_CARE_GYMS_AND_FITNESS_CENTERS", + "primary": "PERSONAL_CARE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_PERSONAL_CARE.png", + "transaction_code": null, + "transaction_id": "DPZBW5VqgbFP764zbpqmSvjWJDPg3bt3WaJwd", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "24hourfitness.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 88.29, + "authorized_date": "2025-01-03", + "authorized_datetime": null, + "category": [ + "Shops" + ], + "category_id": "19000000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "zwkjrQbbDQqZJRk3egOAo0XB7jnygNDJk9Vjz", + "logo_url": "https://plaid-counterparty-logos.plaid.com/paypal_76.png", + "name": "PayPal", + "phone_number": null, + "type": "payment_app", + "website": "paypal.com" + } + ], + "date": "2025-01-03", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "Etsy", + "original_description": "PAYPAL *ETSY", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": "PayPal", + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "GENERAL_MERCHANDISE_OTHER_GENERAL_MERCHANDISE", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "VbRqQ5rLdPcn6RqVP4QdsXJG18VQ3Et9gPEmN", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 27.97, + "authorized_date": "2025-01-03", + "authorized_datetime": null, + "category": [ + "Shops", + "Convenience Stores" + ], + "category_id": "19015000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "B3gNWKRQ1KjaL6BRD1wJNR8EVzpQAK5LAwNbV", + "logo_url": "https://plaid-merchant-logos.plaid.com/circle_k_213.png", + "name": "Circle K", + "phone_number": null, + "type": "merchant", + "website": "circlek.com" + } + ], + "date": "2025-01-03", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/circle_k_213.png", + "merchant_entity_id": "B3gNWKRQ1KjaL6BRD1wJNR8EVzpQAK5LAwNbV", + "merchant_name": "Circle K", + "name": "Circle K", + "original_description": "Circle K", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "TRANSPORTATION_GAS", + "primary": "TRANSPORTATION" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_TRANSPORTATION.png", + "transaction_code": null, + "transaction_id": "wWnqpjJldatQbrvJydjETKPDB3J4E9cPZomNd", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "circlek.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 20.54, + "authorized_date": "2025-01-03", + "authorized_datetime": null, + "category": [ + "Recreation", + "Arts and Entertainment", + "Movie Theatres" + ], + "category_id": "17001009", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "nADWWmL6e6BBZZLzvkvQn3evqKj61KrZanN1O", + "logo_url": "https://plaid-merchant-logos.plaid.com/amc_theatres_49.png", + "name": "AMC Theatres", + "phone_number": null, + "type": "merchant", + "website": "amctheatres.com" + } + ], + "date": "2025-01-03", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/amc_theatres_49.png", + "merchant_entity_id": "nADWWmL6e6BBZZLzvkvQn3evqKj61KrZanN1O", + "merchant_name": "AMC Theatres", + "name": "0123 AMC ONLINE", + "original_description": "0123 AMC ONLINE", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "ENTERTAINMENT_TV_AND_MOVIES", + "primary": "ENTERTAINMENT" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_ENTERTAINMENT.png", + "transaction_code": null, + "transaction_id": "5vK5Ng6bdetkX4dDA6NbSqZK7QDoXMu5K78we", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "amctheatres.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 2.02, + "authorized_date": "2024-12-31", + "authorized_datetime": null, + "category": [ + "Shops", + "Convenience Stores" + ], + "category_id": "19015000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "VDzYgVXKNDqR19N8oRdzd2Y9Z0wobKZ5OjLMO", + "logo_url": "https://plaid-merchant-logos.plaid.com/quickchek_797.png", + "name": "QuickChek", + "phone_number": null, + "type": "merchant", + "website": "quickchek.com" + } + ], + "date": "2025-01-01", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/quickchek_797.png", + "merchant_entity_id": "VDzYgVXKNDqR19N8oRdzd2Y9Z0wobKZ5OjLMO", + "merchant_name": "QuickChek", + "name": "QUICK CHEK FOOD STR", + "original_description": "QUICK CHEK FOOD STR", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "TRANSPORTATION_GAS", + "primary": "TRANSPORTATION" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_TRANSPORTATION.png", + "transaction_code": null, + "transaction_id": "JMgVz59xnlhM1pyKljkeUAXZgLJDw6IB6gk4l", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "quickchek.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 2.28, + "authorized_date": "2025-01-01", + "authorized_datetime": null, + "category": [ + "Food and Drink", + "Restaurants" + ], + "category_id": "13005000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "QpojvDpD1bBOJzXRv6bnBz9dbLEE9KwBg1wEr", + "logo_url": "https://plaid-merchant-logos.plaid.com/canteen_vending_163.png", + "name": "Canteen Vending", + "phone_number": null, + "type": "merchant", + "website": "canteen.com" + } + ], + "date": "2025-01-01", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/canteen_vending_163.png", + "merchant_entity_id": "QpojvDpD1bBOJzXRv6bnBz9dbLEE9KwBg1wEr", + "merchant_name": "Canteen Vending", + "name": "USA*CANTEEN VENDING", + "original_description": "USA*CANTEEN VENDING", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "FOOD_AND_DRINK_VENDING_MACHINES", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "k7ZAaqkDn9IeLWvPMD3QTQmwjAae61sL6doQy", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "canteen.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 89.12, + "authorized_date": "2025-01-01", + "authorized_datetime": null, + "category": [ + "Shops", + "Warehouses and Wholesale Stores" + ], + "category_id": "19051000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "pBowAoZJMM9DKR37jvNmzM4yWBBXyMzV2rM3A", + "logo_url": "https://plaid-merchant-logos.plaid.com/costco_235.png", + "name": "Costco", + "phone_number": null, + "type": "merchant", + "website": "costco.com" + } + ], + "date": "2025-01-06", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": "0123" + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/costco_235.png", + "merchant_entity_id": "pBowAoZJMM9DKR37jvNmzM4yWBBXyMzV2rM3A", + "merchant_name": "Costco", + "name": "Costco", + "original_description": "COSTCO WHSE #0123", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "GENERAL_MERCHANDISE_SUPERSTORES", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "leMA4KdDbvT9Rj8aDw3ASlqwZmdvGDipodRwP", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "costco.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 3.52, + "authorized_date": "2025-01-02", + "authorized_datetime": null, + "category": [ + "Food and Drink", + "Restaurants", + "Fast Food" + ], + "category_id": "13005032", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "vzWXDWBjB06j5BJoD3Jo84OJZg7JJzmqOZA22", + "logo_url": "https://plaid-merchant-logos.plaid.com/mcdonalds_619.png", + "name": "McDonald's", + "phone_number": null, + "type": "merchant", + "website": "mcdonalds.com" + } + ], + "date": "2025-01-07", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": "6729 Arlington Blvd", + "city": "Falls Church", + "country": null, + "lat": null, + "lon": null, + "postal_code": "22042", + "region": "VA", + "store_number": "0123" + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/mcdonalds_619.png", + "merchant_entity_id": "vzWXDWBjB06j5BJoD3Jo84OJZg7JJzmqOZA22", + "merchant_name": "McDonald's", + "name": "McDonald's", + "original_description": "MCDONALD'S #0123", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "FOOD_AND_DRINK_FAST_FOOD", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "qLgAex9DKrfNjEv5oDMaFebVapMmWGhgr7Rmb", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "mcdonalds.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 15.73, + "authorized_date": "2025-01-03", + "authorized_datetime": null, + "category": [ + "Service", + "Subscription" + ], + "category_id": "18061000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "3LEY2bJ6W1vkoaBjgVg3qBgYVEzD6p8d1dQdY", + "logo_url": "https://plaid-merchant-logos.plaid.com/netflix_675.png", + "name": "Netflix", + "phone_number": null, + "type": "merchant", + "website": "netflix.com" + } + ], + "date": "2025-01-07", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/netflix_675.png", + "merchant_entity_id": "3LEY2bJ6W1vkoaBjgVg3qBgYVEzD6p8d1dQdY", + "merchant_name": "Netflix", + "name": "Netflix", + "original_description": "NETFLIX.COM 012-012-0123 ON", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "ENTERTAINMENT_TV_AND_MOVIES", + "primary": "ENTERTAINMENT" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_ENTERTAINMENT.png", + "transaction_code": null, + "transaction_id": "K18PB5Zdbqh17BVgqbRQhyoaA5z1deiRpA18z", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "netflix.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 8.32, + "authorized_date": "2025-01-03", + "authorized_datetime": null, + "category": [ + "Shops", + "Supermarkets and Groceries" + ], + "category_id": "19047000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "J5VqjvXoRQjv5vWrMLp3YDmjOjb9ao52b1NQA", + "logo_url": "https://plaid-merchant-logos.plaid.com/hannaford_473.png", + "name": "Hannaford", + "phone_number": null, + "type": "merchant", + "website": "hannaford.com" + } + ], + "date": "2025-01-07", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/hannaford_473.png", + "merchant_entity_id": "J5VqjvXoRQjv5vWrMLp3YDmjOjb9ao52b1NQA", + "merchant_name": "Hannaford", + "name": "Hannaford", + "original_description": "Hannaford", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "FOOD_AND_DRINK_GROCERIES", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "rp8wQd9Drzc7XxVRZbBNsbxP5JMjG9i7J61wj", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "hannaford.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 2.19, + "authorized_date": "2025-01-07", + "authorized_datetime": null, + "category": [ + "Service", + "Personal Care" + ], + "category_id": "18045000", + "check_number": null, + "counterparties": [], + "date": "2025-01-07", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "CHANGE POINT LAUNDRY PYMT", + "original_description": "CHANGE POINT LAUNDRY PYMT", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "GENERAL_MERCHANDISE_OTHER_GENERAL_MERCHANDISE", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "zkyz8Q9rNPCXgWQeyj9pIeqPWlmJpdhlNLQap", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 9.71, + "authorized_date": "2025-01-07", + "authorized_datetime": null, + "category": [ + "Service" + ], + "category_id": "18000000", + "check_number": null, + "counterparties": [], + "date": "2025-01-07", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "CANVA* FOR WORK MONTH", + "original_description": "CANVA* FOR WORK MONTH", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "GENERAL_SERVICES_OTHER_GENERAL_SERVICES", + "primary": "GENERAL_SERVICES" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_SERVICES.png", + "transaction_code": null, + "transaction_id": "B4ek869ZpGC41mDnjvVxuBdXVLjPRxC4M8gyQ", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 1499.25, + "authorized_date": "2025-01-07", + "authorized_datetime": null, + "category": [ + "Shops", + "Computers and Electronics", + "Cameras" + ], + "category_id": "19013003", + "check_number": null, + "counterparties": [ + { + "confidence_level": "LOW", + "entity_id": null, + "logo_url": null, + "name": "B\u0026h Photo", + "phone_number": null, + "type": "merchant", + "website": null + } + ], + "date": "2025-01-07", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": "NY", + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": "B\u0026h Photo", + "name": "B\u0026H PHOTO 012-0123456", + "original_description": "B\u0026H PHOTO 012-012-0123 012-0123456 NY", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "GENERAL_MERCHANDISE_OTHER_GENERAL_MERCHANDISE", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "3ylJapdb3jf8nK3A1z7JF3jlmQa5LBhZlnEJe", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 110.08, + "authorized_date": "2025-01-07", + "authorized_datetime": null, + "category": [ + "Recreation", + "Arts and Entertainment" + ], + "category_id": "17001000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "MvWV6Y45JMz6qg4WwWk8YXM6dZyyAa2MrW4z1", + "logo_url": "https://plaid-merchant-logos.plaid.com/ticketmaster_1016.png", + "name": "Ticketmaster", + "phone_number": null, + "type": "merchant", + "website": "ticketmaster.com" + } + ], + "date": "2025-01-07", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/ticketmaster_1016.png", + "merchant_entity_id": "MvWV6Y45JMz6qg4WwWk8YXM6dZyyAa2MrW4z1", + "merchant_name": "Ticketmaster", + "name": "Ticketmaster", + "original_description": "TM *TICKETMASTER TKTS", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": "Ticketmaster", + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "ENTERTAINMENT_SPORTING_EVENTS_AMUSEMENT_PARKS_AND_MUSEUMS", + "primary": "ENTERTAINMENT" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_ENTERTAINMENT.png", + "transaction_code": null, + "transaction_id": "xAbKo75qa4um5aZ8zndpUMd7gW5wbxU64Vewv", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "ticketmaster.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 7.5, + "authorized_date": "2025-01-03", + "authorized_datetime": null, + "category": [ + "Service", + "Cable" + ], + "category_id": "18009000", + "check_number": null, + "counterparties": [], + "date": "2025-01-08", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "DIRECTV*NOW", + "original_description": "DIRECTV*NOW", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "ENTERTAINMENT_TV_AND_MOVIES", + "primary": "ENTERTAINMENT" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_ENTERTAINMENT.png", + "transaction_code": null, + "transaction_id": "dx4ZK58XoWCvbXVZlNgaC9Rl5wkLExCJEQRNQ", + "transaction_type": "special", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 2.25, + "authorized_date": "2025-01-07", + "authorized_datetime": null, + "category": [ + "Travel", + "Airlines and Aviation Services" + ], + "category_id": "22001000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "bMX8XMQbeoNK1jdBewBvq34JmV5wDBOLqKk74", + "logo_url": "https://plaid-merchant-logos.plaid.com/spirit_airlines_943.png", + "name": "Spirit Airlines", + "phone_number": null, + "type": "merchant", + "website": "spirit.com" + } + ], + "date": "2025-01-08", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/spirit_airlines_943.png", + "merchant_entity_id": "bMX8XMQbeoNK1jdBewBvq34JmV5wDBOLqKk74", + "merchant_name": "Spirit Airlines", + "name": "Spirit Airlines", + "original_description": "SPIRIT AIRLINES ONBOARD R", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "TRAVEL_FLIGHTS", + "primary": "TRAVEL" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_TRAVEL.png", + "transaction_code": null, + "transaction_id": "azx7A59X1gc5orV6dPw3soqAjJ3zZysZ5QD43", + "transaction_type": "special", + "unofficial_currency_code": null, + "website": "spirit.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 2.79, + "authorized_date": "2025-01-07", + "authorized_datetime": null, + "category": [ + "Shops", + "Music, Video and DVD" + ], + "category_id": "19036000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "r7MA910JJELKpYekdAz6n34373RQw2a3Nn52E", + "logo_url": "https://plaid-merchant-logos.plaid.com/redbox_816.png", + "name": "Redbox", + "phone_number": null, + "type": "merchant", + "website": "redbox.com" + } + ], + "date": "2025-01-08", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/redbox_816.png", + "merchant_entity_id": "r7MA910JJELKpYekdAz6n34373RQw2a3Nn52E", + "merchant_name": "Redbox", + "name": "Redbox", + "original_description": "Redbox", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "ENTERTAINMENT_TV_AND_MOVIES", + "primary": "ENTERTAINMENT" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_ENTERTAINMENT.png", + "transaction_code": null, + "transaction_id": "49qZ4oGbx7T873XDoebnFmlbdW4eDaFJbAL5L", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "redbox.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 141.51, + "authorized_date": "2025-01-08", + "authorized_datetime": null, + "category": [ + "Shops", + "Food and Beverage Store" + ], + "category_id": "19025000", + "check_number": null, + "counterparties": [], + "date": "2025-01-08", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "NAKEDWINES.COM INC", + "original_description": "NAKEDWINES.COM INC", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "FOOD_AND_DRINK_BEER_WINE_AND_LIQUOR", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "NokPd5gNlzfoV1byzGkls7JMP5G3Q9sy65QZA", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 21.64, + "authorized_date": "2025-01-08", + "authorized_datetime": null, + "category": [ + "Shops", + "Clothing and Accessories", + "Women's Store" + ], + "category_id": "19012001", + "check_number": null, + "counterparties": [], + "date": "2025-01-08", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "Forever 01", + "original_description": "Forever 01", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "GENERAL_MERCHANDISE_OTHER_GENERAL_MERCHANDISE", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "P8n745oWK3cnXKyW31x9slDB75xZEeio6WAdL", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 24.43, + "authorized_date": "2025-01-08", + "authorized_datetime": null, + "category": [ + "Food and Drink", + "Restaurants" + ], + "category_id": "13005000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "e3kZwLYb4j8M2aDqQQrV0M1qRd8an7AmL8nrV", + "logo_url": "https://plaid-merchant-logos.plaid.com/wingstop_1127.png", + "name": "Wingstop", + "phone_number": null, + "type": "merchant", + "website": "wingstop.com" + } + ], + "date": "2025-01-08", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/wingstop_1127.png", + "merchant_entity_id": "e3kZwLYb4j8M2aDqQQrV0M1qRd8an7AmL8nrV", + "merchant_name": "Wingstop", + "name": "Wingstop", + "original_description": "Wingstop", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "FOOD_AND_DRINK_FAST_FOOD", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "jjQ7dlP5GyCbNavw7rzpty4MQmk9opi6WLa4m", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "wingstop.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 40.58, + "authorized_date": "2025-01-08", + "authorized_datetime": null, + "category": [ + "Service" + ], + "category_id": "18000000", + "check_number": null, + "counterparties": [], + "date": "2025-01-08", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "GEEKSQUAD RENEW", + "original_description": "GEEKSQUAD RENEW", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "GENERAL_MERCHANDISE_OTHER_GENERAL_MERCHANDISE", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "76zXjElb4Zt8RL4DAzM9F9Zwj8GW6DCdJnxQJ", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 380.94, + "authorized_date": "2025-01-07", + "authorized_datetime": null, + "category": [ + "Travel", + "Airlines and Aviation Services" + ], + "category_id": "22001000", + "check_number": null, + "counterparties": [], + "date": "2025-01-11", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "JetBlue", + "original_description": "JETBLUE 0123456789012", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "ENTERTAINMENT_SPORTING_EVENTS_AMUSEMENT_PARKS_AND_MUSEUMS", + "primary": "ENTERTAINMENT" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_ENTERTAINMENT.png", + "transaction_code": null, + "transaction_id": "edNwr51XgAcoARVZP68vsdRGzqom9Bur95mDZ", + "transaction_type": "special", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 10.5, + "authorized_date": "2025-01-07", + "authorized_datetime": null, + "category": [ + "Food and Drink", + "Restaurants", + "Fast Food" + ], + "category_id": "13005032", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "a4r8Wog9LbWrwqWpXZeJZr9b8rRbgavga0dkM", + "logo_url": "https://plaid-merchant-logos.plaid.com/dominos_292.png", + "name": "Domino's", + "phone_number": null, + "type": "merchant", + "website": "dominos.com" + } + ], + "date": "2025-01-12", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": "1230 N Kickapoo Ave", + "city": "Shawnee", + "country": null, + "lat": null, + "lon": null, + "postal_code": "74801", + "region": "OK", + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/dominos_292.png", + "merchant_entity_id": "a4r8Wog9LbWrwqWpXZeJZr9b8rRbgavga0dkM", + "merchant_name": "Domino's", + "name": "Domino's", + "original_description": "DOMINO'S 0123", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "FOOD_AND_DRINK_FAST_FOOD", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "QEbZN5mMrxTnJ4XRxba9s9paZDyVQGCwm7Do5", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "dominos.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 10.61, + "authorized_date": "2025-01-08", + "authorized_datetime": null, + "category": [ + "Service", + "Subscription" + ], + "category_id": "18061000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "rybeAOyg6ZE9z8LdD852ObK3kQ8RRaM0LyDrg", + "logo_url": "https://plaid-merchant-logos.plaid.com/siriusxm_906.png", + "name": "SiriusXM", + "phone_number": null, + "type": "merchant", + "website": "siriusxm.com" + } + ], + "date": "2025-01-12", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": "NY", + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/siriusxm_906.png", + "merchant_entity_id": "rybeAOyg6ZE9z8LdD852ObK3kQ8RRaM0LyDrg", + "merchant_name": "SiriusXM", + "name": "SXM*SIRIUSXM.COM/ACCT", + "original_description": "SXM*SIRIUSXM.COM/ACCT 012-012-0123 NY", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "ENTERTAINMENT_MUSIC_AND_AUDIO", + "primary": "ENTERTAINMENT" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_ENTERTAINMENT.png", + "transaction_code": null, + "transaction_id": "ZvlBL5eMPQtnXDV6QrR9sRex8pZayMceqXGLj", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "siriusxm.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 6.46, + "authorized_date": "2025-01-12", + "authorized_datetime": null, + "category": [ + "Shops", + "Convenience Stores" + ], + "category_id": "19015000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "VDzYgVXKNDqR19N8oRdzd2Y9Z0wobKZ5OjLMO", + "logo_url": "https://plaid-merchant-logos.plaid.com/quickchek_797.png", + "name": "QuickChek", + "phone_number": null, + "type": "merchant", + "website": "quickchek.com" + } + ], + "date": "2025-01-12", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/quickchek_797.png", + "merchant_entity_id": "VDzYgVXKNDqR19N8oRdzd2Y9Z0wobKZ5OjLMO", + "merchant_name": "QuickChek", + "name": "QUICK CHEK CORPORATION", + "original_description": "QUICK CHEK CORPORATION", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "TRANSPORTATION_GAS", + "primary": "TRANSPORTATION" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_TRANSPORTATION.png", + "transaction_code": null, + "transaction_id": "MpWPx5o4yrcpZvwQrdbMuwXJg8Eze3fL6P1xM", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "quickchek.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 26.25, + "authorized_date": "2025-01-12", + "authorized_datetime": null, + "category": [ + "Shops", + "Convenience Stores" + ], + "category_id": "19015000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "w32E0jpBeX97vOWgER0n2qVbzLJVm1opNMpoR", + "logo_url": "https://plaid-merchant-logos.plaid.com/7eleven_3.png", + "name": "7-Eleven", + "phone_number": null, + "type": "merchant", + "website": "7-eleven.com" + } + ], + "date": "2025-01-12", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/7eleven_3.png", + "merchant_entity_id": "w32E0jpBeX97vOWgER0n2qVbzLJVm1opNMpoR", + "merchant_name": "7-Eleven", + "name": "7-Eleven", + "original_description": "ALON 7-ELEVEN 0123", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "GENERAL_MERCHANDISE_CONVENIENCE_STORES", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "1bXWx1mVzNcQvyzEo34JTXVmegwx94tpjer7g", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "7-eleven.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 20.9, + "authorized_date": "2025-01-07", + "authorized_datetime": null, + "category": [ + "Shops", + "Supermarkets and Groceries" + ], + "category_id": "19047000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "AndorbmbMKgjOazDKwrVBAVqp889Wvy1AEJ0B", + "logo_url": "https://plaid-merchant-logos.plaid.com/heb_466.png", + "name": "H-E-B", + "phone_number": null, + "type": "merchant", + "website": "heb.com" + } + ], + "date": "2025-01-09", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": "012" + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/heb_466.png", + "merchant_entity_id": "AndorbmbMKgjOazDKwrVBAVqp889Wvy1AEJ0B", + "merchant_name": "H-E-B", + "name": "H-E-B GAS #012", + "original_description": "H-E-B GAS #012", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "FOOD_AND_DRINK_GROCERIES", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "LLEP35oamKfLwWGzKa8mCk6Apgx1W7ukjpE87", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "heb.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 26.25, + "authorized_date": "2025-01-08", + "authorized_datetime": null, + "category": [ + "Food and Drink", + "Restaurants" + ], + "category_id": "13005000", + "check_number": null, + "counterparties": [], + "date": "2025-01-09", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "PARKWHIZ, INC.", + "original_description": "PARKWHIZ, INC.", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "ENTERTAINMENT_SPORTING_EVENTS_AMUSEMENT_PARKS_AND_MUSEUMS", + "primary": "ENTERTAINMENT" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_ENTERTAINMENT.png", + "transaction_code": null, + "transaction_id": "p1oA739DqKhR4y8Xk1ZWcxJrdLn6oGtpoVzgv", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 89.25, + "authorized_date": "2025-01-08", + "authorized_datetime": null, + "category": [ + "Service", + "Subscription" + ], + "category_id": "18061000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "XZAmBNLd29wbbLB49r58oD5b6y7kz5A1982j3", + "logo_url": "https://plaid-merchant-logos.plaid.com/amazon_prime_1987.png", + "name": "Amazon Prime", + "phone_number": null, + "type": "merchant", + "website": "amazon.com/amazonprime" + } + ], + "date": "2025-01-09", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": "Seattle", + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": "WA", + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/amazon_prime_1987.png", + "merchant_entity_id": "XZAmBNLd29wbbLB49r58oD5b6y7kz5A1982j3", + "merchant_name": "Amazon Prime", + "name": "Amazon Prime", + "original_description": "Amazon Prime 0123456789 WA", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "GENERAL_SERVICES_OTHER_GENERAL_SERVICES", + "primary": "GENERAL_SERVICES" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_SERVICES.png", + "transaction_code": null, + "transaction_id": "oMpyjB9Dlqhb4v8gkyn6tbzMpZy5G3ioq7b9M", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "amazon.com/amazonprime" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 28.84, + "authorized_date": "2025-01-08", + "authorized_datetime": null, + "category": [ + "Shops", + "Convenience Stores" + ], + "category_id": "19015000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "w32E0jpBeX97vOWgER0n2qVbzLJVm1opNMpoR", + "logo_url": "https://plaid-merchant-logos.plaid.com/7eleven_3.png", + "name": "7-Eleven", + "phone_number": null, + "type": "merchant", + "website": "7-eleven.com" + } + ], + "date": "2025-01-13", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/7eleven_3.png", + "merchant_entity_id": "w32E0jpBeX97vOWgER0n2qVbzLJVm1opNMpoR", + "merchant_name": "7-Eleven", + "name": "7-Eleven", + "original_description": "7-Eleven", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "GENERAL_MERCHANDISE_CONVENIENCE_STORES", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "g4j7B5kXEnCwdLV7NzQPHV59dRBP8WcE8n5DD", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "7-eleven.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 85.52, + "authorized_date": "2025-01-09", + "authorized_datetime": null, + "category": [ + "Travel", + "Gas Stations" + ], + "category_id": "22009000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "54Bo6XYgmrd6o9r9ZjMrOj2k2RV3j2vDQyEyv", + "logo_url": "https://plaid-merchant-logos.plaid.com/chevron_195.png", + "name": "Chevron", + "phone_number": null, + "type": "merchant", + "website": "chevron.com" + } + ], + "date": "2025-01-10", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/chevron_195.png", + "merchant_entity_id": "54Bo6XYgmrd6o9r9ZjMrOj2k2RV3j2vDQyEyv", + "merchant_name": "Chevron", + "name": "Chevron", + "original_description": "CHEVRON 0123456", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "TRANSPORTATION_GAS", + "primary": "TRANSPORTATION" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_TRANSPORTATION.png", + "transaction_code": null, + "transaction_id": "8lBZ7kqmNMflM6N1rBb8udzkGwyA5MuW3L8a6", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "chevron.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 100.79, + "authorized_date": "2025-01-12", + "authorized_datetime": null, + "category": [ + "Shops", + "Office Supplies" + ], + "category_id": "19039000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "YmK41dQb77WQQo0JDRvr0AOWmWbwOwv8r3XmO", + "logo_url": "https://plaid-merchant-logos.plaid.com/office_depot_695.png", + "name": "Office Depot", + "phone_number": null, + "type": "merchant", + "website": "officedepot.com" + } + ], + "date": "2025-01-14", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": "10525 Gulf Fwy", + "city": "Houston", + "country": null, + "lat": 29.641092, + "lon": -95.234528, + "postal_code": "77034", + "region": "TX", + "store_number": "012" + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/office_depot_695.png", + "merchant_entity_id": "YmK41dQb77WQQo0JDRvr0AOWmWbwOwv8r3XmO", + "merchant_name": "Office Depot", + "name": "Office Depot", + "original_description": "OFFICE DEPOT #012", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "GENERAL_MERCHANDISE_OFFICE_SUPPLIES", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "EjM3A5vK8mCjLea1GE3mCyom95Prvki4xkmQN", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "officedepot.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 81.08, + "authorized_date": "2025-01-14", + "authorized_datetime": null, + "category": [ + "Service", + "Security and Safety" + ], + "category_id": "18057000", + "check_number": null, + "counterparties": [], + "date": "2025-01-14", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "SIMPLISAFE", + "original_description": "SIMPLISAFE", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "GENERAL_MERCHANDISE_PET_SUPPLIES", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "Wm6kZ5zMajudb4XV6nyafB8VgNb3znC6Z1jM5", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 12.98, + "authorized_date": "2025-01-12", + "authorized_datetime": null, + "category": [ + "Service", + "Food and Beverage" + ], + "category_id": "18021000", + "check_number": null, + "counterparties": [], + "date": "2025-01-17", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "GO PUFF", + "original_description": "GO PUFF", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "GENERAL_MERCHANDISE_OTHER_GENERAL_MERCHANDISE", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "Aa7KgRpVLAhamWlkAvD3s8Dl5KZ7brF9rA5wV", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 192.83, + "authorized_date": "2025-01-12", + "authorized_datetime": null, + "category": [ + "Shops", + "Department Stores" + ], + "category_id": "19018000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "bN0wJ6wvppDz375EzNJNQv9bBODam4qWOrE3k", + "logo_url": "https://plaid-merchant-logos.plaid.com/nordstrom_684.png", + "name": "Nordstrom", + "phone_number": null, + "type": "merchant", + "website": "nordstrom.com" + } + ], + "date": "2025-01-16", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/nordstrom_684.png", + "merchant_entity_id": "bN0wJ6wvppDz375EzNJNQv9bBODam4qWOrE3k", + "merchant_name": "Nordstrom", + "name": "Nordstrom Direct", + "original_description": "NORDSTROM DIRECT", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "GENERAL_MERCHANDISE_DEPARTMENT_STORES", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "GeLdq5ozW9Te8Jd4MGvPT84MZDwPW7F6MPo9J", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "nordstrom.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 16.04, + "authorized_date": "2025-01-14", + "authorized_datetime": null, + "category": [ + "Shops", + "Food and Beverage Store", + "Beer, Wine and Spirits" + ], + "category_id": "19025004", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "Q0gnRQogjMLpMQ29MmYvN49aaz3ALgj7Er4e9", + "logo_url": "https://plaid-merchant-logos.plaid.com/fine_wine_good_spirits_1886.png", + "name": "Fine Wine \u0026 Good Spirits", + "phone_number": null, + "type": "merchant", + "website": "finewineandgoodspirits.com" + } + ], + "date": "2025-01-15", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/fine_wine_good_spirits_1886.png", + "merchant_entity_id": "Q0gnRQogjMLpMQ29MmYvN49aaz3ALgj7Er4e9", + "merchant_name": "Fine Wine \u0026 Good Spirits", + "name": "WINE AND SPIRITS 0123", + "original_description": "WINE AND SPIRITS 0123", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "FOOD_AND_DRINK_BEER_WINE_AND_LIQUOR", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "nZLAPzwDylibQdva8jeDtG1eMJoEWbtAlWQk8", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "finewineandgoodspirits.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 31.38, + "authorized_date": "2025-01-21", + "authorized_datetime": null, + "category": [ + "Shops", + "Clothing and Accessories" + ], + "category_id": "19012000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "o88J8OOgX3nMnQWBwk6kq8D32YWjEwaX2D8ra", + "logo_url": "https://plaid-merchant-logos.plaid.com/old_navy_698.png", + "name": "Old Navy", + "phone_number": null, + "type": "merchant", + "website": "oldnavy.com" + } + ], + "date": "2025-01-21", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/old_navy_698.png", + "merchant_entity_id": "o88J8OOgX3nMnQWBwk6kq8D32YWjEwaX2D8ra", + "merchant_name": "Old Navy", + "name": "Old Navy", + "original_description": "OLD NAVY US 0123", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "GENERAL_MERCHANDISE_CLOTHING_AND_ACCESSORIES", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "bBdylJgXLku1ryVNQ9XehxReg34KG7tmbZ7LV", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "oldnavy.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 8.03, + "authorized_date": "2025-01-21", + "authorized_datetime": null, + "category": [ + "Service" + ], + "category_id": "18000000", + "check_number": null, + "counterparties": [], + "date": "2025-01-21", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "ROVER.COM PET CARE", + "original_description": "ROVER.COM PET CARE", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "GENERAL_MERCHANDISE_PET_SUPPLIES", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "mQ1ANkbDmRfb4yvJ6npMt6LmBj1NyEcgydXjg", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 4.18, + "authorized_date": "2025-01-21", + "authorized_datetime": null, + "category": [ + "Food and Drink", + "Restaurants" + ], + "category_id": "13005000", + "check_number": null, + "counterparties": [], + "date": "2025-01-22", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "Einstein Bros. Bagels", + "original_description": "Einstein Brothers", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "FOOD_AND_DRINK_OTHER_FOOD_AND_DRINK", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "yGmrge5K4NFpDQweBL4yuPM35rxdXZi46XwdK", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 8.52, + "authorized_date": "2025-01-21", + "authorized_datetime": null, + "category": [ + "Food and Drink", + "Restaurants", + "Fast Food" + ], + "category_id": "13005032", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "16RXA67KaQVW2JnKrkqndbVkpZW8ykA8YAB28", + "logo_url": "https://plaid-merchant-logos.plaid.com/innout_burger_517.png", + "name": "In-N-Out Burger", + "phone_number": null, + "type": "merchant", + "website": "in-n-out.com" + } + ], + "date": "2025-01-22", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": "11455 Laurel Canyon Blvd", + "city": "San Fernando", + "country": null, + "lat": null, + "lon": null, + "postal_code": "91340", + "region": "CA", + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/innout_burger_517.png", + "merchant_entity_id": "16RXA67KaQVW2JnKrkqndbVkpZW8ykA8YAB28", + "merchant_name": "In-N-Out Burger", + "name": "In-N-Out Burger", + "original_description": "IN N OUT BURGER 012", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "FOOD_AND_DRINK_FAST_FOOD", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "9q36eAK7P1iqGMPbA34yUAZV7NmLojI4xQg8V", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "in-n-out.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 29.97, + "authorized_date": "2025-01-21", + "authorized_datetime": null, + "category": [ + "Shops", + "Convenience Stores" + ], + "category_id": "19015000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "VDzYgVXKNDqR19N8oRdzd2Y9Z0wobKZ5OjLMO", + "logo_url": "https://plaid-merchant-logos.plaid.com/quickchek_797.png", + "name": "QuickChek", + "phone_number": null, + "type": "merchant", + "website": "quickchek.com" + } + ], + "date": "2025-01-22", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/quickchek_797.png", + "merchant_entity_id": "VDzYgVXKNDqR19N8oRdzd2Y9Z0wobKZ5OjLMO", + "merchant_name": "QuickChek", + "name": "QUICK CHEK CORPORATION", + "original_description": "QUICK CHEK CORPORATION", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "TRANSPORTATION_GAS", + "primary": "TRANSPORTATION" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_TRANSPORTATION.png", + "transaction_code": null, + "transaction_id": "vEGlLPADxdT7rVvMKoxpsbozq3NxkGiq6k1xX", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "quickchek.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 97.3, + "authorized_date": "2025-01-21", + "authorized_datetime": null, + "category": [ + "Travel", + "Gas Stations" + ], + "category_id": "22009000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "8y7851JXryBnkOWOjW163yqzAB01oa8k6e1g9", + "logo_url": "https://plaid-merchant-logos.plaid.com/shell_891.png", + "name": "Shell", + "phone_number": null, + "type": "merchant", + "website": "shell.com" + } + ], + "date": "2025-01-23", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/shell_891.png", + "merchant_entity_id": "8y7851JXryBnkOWOjW163yqzAB01oa8k6e1g9", + "merchant_name": "Shell", + "name": "SHELL/SHELL", + "original_description": "SHELL/SHELL", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "TRANSPORTATION_GAS", + "primary": "TRANSPORTATION" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_TRANSPORTATION.png", + "transaction_code": null, + "transaction_id": "RWmGP5oMzdtreRojdm9zi5wEvmqNVpHapbAjJ", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "shell.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 8.75, + "authorized_date": "2025-01-21", + "authorized_datetime": null, + "category": [ + "Shops", + "Digital Purchase" + ], + "category_id": "19019000", + "check_number": null, + "counterparties": [], + "date": "2025-01-23", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "Touchtunes.helpshift.com", + "original_description": "Touchtunes.helpshift.com", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "GENERAL_MERCHANDISE_OTHER_GENERAL_MERCHANDISE", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "6RrvP8d6aQt8RdaEAwWkFbyD6lRWjLi8DXeJm", + "transaction_type": "digital", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 18, + "authorized_date": "2025-01-23", + "authorized_datetime": null, + "category": [ + "Service", + "Food and Beverage" + ], + "category_id": "18021000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "WKk6bENeYwvVaLaY8EEOw8Koa2X72m2wJOk1Z", + "logo_url": "https://plaid-counterparty-logos.plaid.com/seamless_5.png", + "name": "Seamless", + "phone_number": null, + "type": "marketplace", + "website": "seamless.com" + } + ], + "date": "2025-01-23", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": "Seamless", + "name": "Seamless", + "original_description": "Seamless", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "MEDIUM", + "detailed": "FOOD_AND_DRINK_RESTAURANT", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "XyXrM5BG47fmPpGD7694U6qPyJX8decbKnLgD", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 28.11, + "authorized_date": "2025-01-23", + "authorized_datetime": null, + "category": [ + "Shops", + "Food and Beverage Store" + ], + "category_id": "19025000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "LOW", + "entity_id": null, + "logo_url": null, + "name": "Liquors And Wines", + "phone_number": null, + "type": "merchant", + "website": null + } + ], + "date": "2025-01-23", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": "Liquors And Wines", + "name": "DANIEL LIQUORS AND WINES", + "original_description": "DANIEL LIQUORS AND WINES", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "FOOD_AND_DRINK_BEER_WINE_AND_LIQUOR", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "DPZBW5VqgbFP764zbpqmSvjWJDPg3bt3WaJed", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 88, + "authorized_date": "2025-01-21", + "authorized_datetime": null, + "category": [ + "Travel", + "Public Transportation Services" + ], + "category_id": "22014000", + "check_number": null, + "counterparties": [], + "date": "2025-01-26", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": "012" + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "METRO #012", + "original_description": "METRO #012", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "GENERAL_MERCHANDISE_OTHER_GENERAL_MERCHANDISE", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "VbRqQ5rLdPcn6RqVP4QdsXJG18VQ3Et9gPEkN", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 20.21, + "authorized_date": "2025-01-21", + "authorized_datetime": null, + "category": [ + "Shops", + "Food and Beverage Store" + ], + "category_id": "19025000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "LOW", + "entity_id": null, + "logo_url": null, + "name": "Jo-ann Fabric \u0026 Craft Stores", + "phone_number": null, + "type": "merchant", + "website": null + } + ], + "date": "2025-01-26", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": "Jo-ann Fabric \u0026 Craft Stores", + "name": "Jo-Ann Fabric \u0026 Craft", + "original_description": "Jo-Ann Fabric \u0026 Craft Stores", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "GENERAL_MERCHANDISE_GIFTS_AND_NOVELTIES", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "wWnqpjJldatQbrvJydjETKPDB3J4E9cPZom9d", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 3.31, + "authorized_date": "2025-01-23", + "authorized_datetime": null, + "category": [ + "Food and Drink", + "Restaurants" + ], + "category_id": "13005000", + "check_number": null, + "counterparties": [], + "date": "2025-01-26", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "SE01234", + "original_description": "SE01234", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "GENERAL_MERCHANDISE_OTHER_GENERAL_MERCHANDISE", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "5vK5Ng6bdetkX4dDA6NbSqZK7QDoXMu5K78Ve", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 12.74, + "authorized_date": "2025-01-23", + "authorized_datetime": null, + "category": [ + "Food and Drink", + "Restaurants", + "Fast Food" + ], + "category_id": "13005032", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "DDM7W339RYJwyjZ4A7v6O9m5jVooQWMrJoaO4", + "logo_url": "https://plaid-merchant-logos.plaid.com/jimmy_johns_539.png", + "name": "Jimmy John's", + "phone_number": null, + "type": "merchant", + "website": "jimmyjohns.com" + } + ], + "date": "2025-01-26", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": "012" + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/jimmy_johns_539.png", + "merchant_entity_id": "DDM7W339RYJwyjZ4A7v6O9m5jVooQWMrJoaO4", + "merchant_name": "Jimmy John's", + "name": "Jimmy Johns", + "original_description": "JIMMY JOHNS # 012 - E", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "FOOD_AND_DRINK_RESTAURANT", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "JMgVz59xnlhM1pyKljkeUAXZgLJDw6IB6gkjl", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "jimmyjohns.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 89.25, + "authorized_date": "2025-01-25", + "authorized_datetime": null, + "category": [ + "Service", + "Subscription" + ], + "category_id": "18061000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "XZAmBNLd29wbbLB49r58oD5b6y7kz5A1982j3", + "logo_url": "https://plaid-merchant-logos.plaid.com/amazon_prime_1987.png", + "name": "Amazon Prime", + "phone_number": null, + "type": "merchant", + "website": "amazon.com/amazonprime" + } + ], + "date": "2025-01-26", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": "Seattle", + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": "WA", + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/amazon_prime_1987.png", + "merchant_entity_id": "XZAmBNLd29wbbLB49r58oD5b6y7kz5A1982j3", + "merchant_name": "Amazon Prime", + "name": "Amazon Prime", + "original_description": "Amazon Prime 0123456789 WA", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "GENERAL_SERVICES_OTHER_GENERAL_SERVICES", + "primary": "GENERAL_SERVICES" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_SERVICES.png", + "transaction_code": null, + "transaction_id": "k7ZAaqkDn9IeLWvPMD3QTQmwjAae61sL6doEy", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "amazon.com/amazonprime" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 10.27, + "authorized_date": "2025-01-25", + "authorized_datetime": null, + "category": [ + "Shops", + "Discount Stores" + ], + "category_id": "19020000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "Zzn79pb0YEwA8JD6KeyZABvmpp3w1WVZeJEY6", + "logo_url": "https://plaid-merchant-logos.plaid.com/dollar_general_287.png", + "name": "Dollar General", + "phone_number": null, + "type": "merchant", + "website": "dollargeneral.com" + } + ], + "date": "2025-01-26", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": "5697 Old State Route 21", + "city": "House Springs", + "country": null, + "lat": 38.371567, + "lon": -90.501236, + "postal_code": "63051", + "region": "MO", + "store_number": "01234" + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/dollar_general_287.png", + "merchant_entity_id": "Zzn79pb0YEwA8JD6KeyZABvmpp3w1WVZeJEY6", + "merchant_name": "Dollar General", + "name": "Dollar General", + "original_description": "DOLLAR GENERAL #01234", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "GENERAL_MERCHANDISE_DISCOUNT_STORES", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "leMA4KdDbvT9Rj8aDw3ASlqwZmdvGDipodRWP", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "dollargeneral.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 4.18, + "authorized_date": "2025-01-23", + "authorized_datetime": null, + "category": [ + "Food and Drink", + "Restaurants" + ], + "category_id": "13005000", + "check_number": null, + "counterparties": [], + "date": "2025-01-24", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "Einstein Bros. Bagels", + "original_description": "Einstein Brothers", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "FOOD_AND_DRINK_OTHER_FOOD_AND_DRINK", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "qLgAex9DKrfNjEv5oDMaFebVapMmWGhgr7RWb", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 12.38, + "authorized_date": "2025-01-23", + "authorized_datetime": null, + "category": [ + "Food and Drink", + "Restaurants" + ], + "category_id": "13005000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "LOW", + "entity_id": null, + "logo_url": null, + "name": "The Halal Guys", + "phone_number": null, + "type": "merchant", + "website": null + } + ], + "date": "2025-01-25", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": "The Halal Guys", + "name": "THE HALAL GUYS", + "original_description": "THE HALAL GUYS", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "FOOD_AND_DRINK_GROCERIES", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "K18PB5Zdbqh17BVgqbRQhyoaA5z1deiRpA1qz", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 52.41, + "authorized_date": "2025-01-23", + "authorized_datetime": null, + "category": [ + "Service" + ], + "category_id": "18000000", + "check_number": null, + "counterparties": [], + "date": "2025-01-25", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "PCH*INTELIUS", + "original_description": "PCH*INTELIUS 012-012-0123", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "GENERAL_MERCHANDISE_OTHER_GENERAL_MERCHANDISE", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "rp8wQd9Drzc7XxVRZbBNsbxP5JMjG9i7J614j", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 6.53, + "authorized_date": "2025-01-23", + "authorized_datetime": null, + "category": [ + "Shops", + "Discount Stores" + ], + "category_id": "19020000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "LOW", + "entity_id": null, + "logo_url": null, + "name": "Only Stores", + "phone_number": null, + "type": "merchant", + "website": null + } + ], + "date": "2025-01-25", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": "012" + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": "Only Stores", + "name": "01 CENTS ONLY STORES #012", + "original_description": "01 CENTS ONLY STORES #012", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "GENERAL_MERCHANDISE_OTHER_GENERAL_MERCHANDISE", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "zkyz8Q9rNPCXgWQeyj9pIeqPWlmJpdhlNLQrp", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 37.18, + "authorized_date": "2025-01-25", + "authorized_datetime": null, + "category": [ + "Shops", + "Supermarkets and Groceries" + ], + "category_id": "19047000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "VJMjzL8D214p3z76Zr411N4goOLmr4MmQV1Z5", + "logo_url": "https://plaid-merchant-logos.plaid.com/smiths_917.png", + "name": "Smith's", + "phone_number": null, + "type": "merchant", + "website": "smithsfoodanddrug.com" + } + ], + "date": "2025-01-25", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/smiths_917.png", + "merchant_entity_id": "VJMjzL8D214p3z76Zr411N4goOLmr4MmQV1Z5", + "merchant_name": "Smith's", + "name": "SMITH'S FOOD 0123", + "original_description": "SMITH'S FOOD 0123", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "HIGH", + "detailed": "GENERAL_MERCHANDISE_SUPERSTORES", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "B4ek869ZpGC41mDnjvVxuBdXVLjPRxC4M8gEQ", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "smithsfoodanddrug.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 101, + "authorized_date": "2025-01-25", + "authorized_datetime": null, + "category": [ + "Shops", + "Food and Beverage Store" + ], + "category_id": "19025000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "wVqOb79B01Ebd2ZXeeYjozWb3eW6AXXm06Nzy", + "logo_url": "https://plaid-merchant-logos.plaid.com/bevmo_108.png", + "name": "BevMo!", + "phone_number": null, + "type": "merchant", + "website": "bevmo.com" + } + ], + "date": "2025-01-28", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": "01" + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/bevmo_108.png", + "merchant_entity_id": "wVqOb79B01Ebd2ZXeeYjozWb3eW6AXXm06Nzy", + "merchant_name": "BevMo!", + "name": "BEVERAGES \u0026 MORE #01", + "original_description": "BEVERAGES \u0026 MORE #01", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "HIGH", + "detailed": "FOOD_AND_DRINK_BEER_WINE_AND_LIQUOR", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "3ylJapdb3jf8nK3A1z7JF3jlmQa5LBhZlnE6e", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "bevmo.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 34.97, + "authorized_date": "2025-01-25", + "authorized_datetime": null, + "category": [ + "Food and Drink", + "Restaurants" + ], + "category_id": "13005000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "ra5BzW43Yb82KaLQVQa8Rry024qD3XOZrQkDA", + "logo_url": "https://plaid-merchant-logos.plaid.com/red_robin_814.png", + "name": "Red Robin", + "phone_number": null, + "type": "merchant", + "website": "redrobin.com" + } + ], + "date": "2025-01-28", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": "401 NE Northgate Way", + "city": "Seattle", + "country": null, + "lat": 47.708199, + "lon": -122.323715, + "postal_code": "98125", + "region": "WA", + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/red_robin_814.png", + "merchant_entity_id": "ra5BzW43Yb82KaLQVQa8Rry024qD3XOZrQkDA", + "merchant_name": "Red Robin", + "name": "Red Robin", + "original_description": "RED ROBIN NO 012", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "FOOD_AND_DRINK_FAST_FOOD", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "xAbKo75qa4um5aZ8zndpUMd7gW5wbxU64Vejv", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "redrobin.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 220.92, + "authorized_date": "2025-01-26", + "authorized_datetime": null, + "category": [ + "Shops", + "Furniture and Home Decor" + ], + "category_id": "19027000", + "check_number": null, + "counterparties": [], + "date": "2025-01-28", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "Wayfair", + "original_description": "WAYFAIR*Wayfair", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "GENERAL_MERCHANDISE_OTHER_GENERAL_MERCHANDISE", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "dx4ZK58XoWCvbXVZlNgaC9Rl5wkLExCJEQRKQ", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 7.51, + "authorized_date": "2025-01-25", + "authorized_datetime": null, + "category": [ + "Shops", + "Music, Video and DVD" + ], + "category_id": "19036000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "z3XzRe488pMdo7NAnL44L7rv9L550berky6mK", + "logo_url": "https://plaid-merchant-logos.plaid.com/apple_itunes_1434.png", + "name": "Apple iTunes", + "phone_number": null, + "type": "merchant", + "website": "apple.com/itunes" + } + ], + "date": "2025-01-30", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": "CA", + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/apple_itunes_1434.png", + "merchant_entity_id": "z3XzRe488pMdo7NAnL44L7rv9L550berky6mK", + "merchant_name": "Apple iTunes", + "name": "iTunes", + "original_description": "Apl* Itunes.com/bill 012-012-0123 Ca", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": "Apple", + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "ENTERTAINMENT_MUSIC_AND_AUDIO", + "primary": "ENTERTAINMENT" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_ENTERTAINMENT.png", + "transaction_code": null, + "transaction_id": "azx7A59X1gc5orV6dPw3soqAjJ3zZysZ5QDw3", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "apple.com/itunes" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 6.3, + "authorized_date": "2025-01-27", + "authorized_datetime": null, + "category": [ + "Food and Drink", + "Restaurants" + ], + "category_id": "13005000", + "check_number": null, + "counterparties": [], + "date": "2025-01-27", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "Einstein Bros. Bagels", + "original_description": "Einstein Brothers", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "FOOD_AND_DRINK_OTHER_FOOD_AND_DRINK", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "49qZ4oGbx7T873XDoebnFmlbdW4eDaFJbALzL", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 23.59, + "authorized_date": "2025-02-02", + "authorized_datetime": null, + "category": [ + "Service", + "Photography" + ], + "category_id": "18047000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "LdzDnMeoWOvzp841RmvBko0q20LoJrXeA1JZ5", + "logo_url": "https://plaid-merchant-logos.plaid.com/shutterfly_inc_902.png", + "name": "Shutterfly Inc.", + "phone_number": null, + "type": "merchant", + "website": "shutterfly.com" + } + ], + "date": "2025-02-03", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": "CA", + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/shutterfly_inc_902.png", + "merchant_entity_id": "LdzDnMeoWOvzp841RmvBko0q20LoJrXeA1JZ5", + "merchant_name": "Shutterfly Inc.", + "name": "SHUTTERFLY", + "original_description": "SHUTTERFLY 012-012-0123 CA", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "HIGH", + "detailed": "GENERAL_MERCHANDISE_GIFTS_AND_NOVELTIES", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "NokPd5gNlzfoV1byzGkls7JMP5G3Q9sy65QdA", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "shutterfly.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 163.07, + "authorized_date": "2025-02-05", + "authorized_datetime": null, + "category": [ + "Travel", + "Lodging" + ], + "category_id": "22012000", + "check_number": null, + "counterparties": [], + "date": "2025-02-05", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": "WA", + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "Hotels.com", + "original_description": "HOTELS.COM012345678901 HOTELS.COM WA", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "TRAVEL_LODGING", + "primary": "TRAVEL" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_TRAVEL.png", + "transaction_code": null, + "transaction_id": "P8n745oWK3cnXKyW31x9slDB75xZEeio6WAaL", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 21.91, + "authorized_date": "2025-02-05", + "authorized_datetime": null, + "category": [ + "Food and Drink", + "Restaurants", + "Fast Food" + ], + "category_id": "13005032", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "Ew00y0rDXn7nvvXkrWe3RQ9Y8e1Bw6pq3pwYJ", + "logo_url": "https://plaid-merchant-logos.plaid.com/panda_express_714.png", + "name": "Panda Express", + "phone_number": null, + "type": "merchant", + "website": "pandaexpress.com" + } + ], + "date": "2025-02-05", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/panda_express_714.png", + "merchant_entity_id": "Ew00y0rDXn7nvvXkrWe3RQ9Y8e1Bw6pq3pwYJ", + "merchant_name": "Panda Express", + "name": "Panda Express", + "original_description": "PANDA EXPRESS 0123", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "FOOD_AND_DRINK_FAST_FOOD", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "jjQ7dlP5GyCbNavw7rzpty4MQmk9opi6WLadm", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "pandaexpress.com" + } + ], + "has_more": true, + "modified": [], + "next_cursor": "CAESJWpqUTdkbFA1R3lDYk5hdnc3cnpwdHk0TVFtazlvcGk2V0xhZG0iDAian63BBhDo2pCgAyoMCJqfrcEGEOjakKAD", + "removed": [], + "request_id": "jgySY5dZuyROXXI", + "transactions_update_status": "HISTORICAL_UPDATE_COMPLETE" + } + recorded_at: Mon, 19 May 2025 15:35:04 GMT +- request: + method: post + uri: https://sandbox.plaid.com/transactions/sync + body: + encoding: UTF-8 + string: '{"access_token":"access-sandbox-d531d3c9-8520-43ca-9e58-5b70b79fd1d4","cursor":"CAESJWpqUTdkbFA1R3lDYk5hdnc3cnpwdHk0TVFtazlvcGk2V0xhZG0iDAian63BBhDo2pCgAyoMCJqfrcEGEOjakKAD","count":100,"options":{"include_original_description":true}}' + headers: + Content-Type: + - application/json + User-Agent: + - Plaid Ruby v38.0.0 + Accept: + - application/json + Plaid-Client-Id: + - "" + Plaid-Version: + - '2020-09-14' + Plaid-Secret: + - "" + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + response: + status: + code: 200 + message: OK + headers: + Server: + - nginx + Date: + - Mon, 19 May 2025 15:35:05 GMT + Content-Type: + - application/json; charset=utf-8 + Transfer-Encoding: + - chunked + Connection: + - keep-alive + Plaid-Version: + - '2020-09-14' + Vary: + - Accept-Encoding + X-Envoy-Upstream-Service-Time: + - '338' + X-Envoy-Decorator-Operation: + - default.svc-apiv2:8080/* + Strict-Transport-Security: + - max-age=31536000; includeSubDomains; preload + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Xss-Protection: + - 1; mode=block + body: + encoding: ASCII-8BIT + string: |- + { + "accounts": [ + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "balances": { + "available": 11065.71, + "current": 1000, + "iso_currency_code": "USD", + "limit": 12200, + "unofficial_currency_code": null + }, + "holder_category": "personal", + "mask": "3053", + "name": "Test Credit Card Account", + "official_name": "Plaid credit card", + "subtype": "credit card", + "type": "credit" + } + ], + "added": [ + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 14.85, + "authorized_date": "2025-02-05", + "authorized_datetime": null, + "category": [ + "Shops", + "Supermarkets and Groceries" + ], + "category_id": "19047000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "7mk1K28bOEO76459EoRBN498DgKgdnY73qbgn", + "logo_url": "https://plaid-merchant-logos.plaid.com/trader_joes_1041.png", + "name": "Trader Joe's", + "phone_number": null, + "type": "merchant", + "website": "traderjoes.com" + } + ], + "date": "2025-02-08", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": "012" + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/trader_joes_1041.png", + "merchant_entity_id": "7mk1K28bOEO76459EoRBN498DgKgdnY73qbgn", + "merchant_name": "Trader Joe's", + "name": "Trader Joe's", + "original_description": "TRADER JOE'S # 012", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "FOOD_AND_DRINK_GROCERIES", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "76zXjElb4Zt8RL4DAzM9F9Zwj8GW6DCdJnxPJ", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "traderjoes.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 122.28, + "authorized_date": "2025-02-09", + "authorized_datetime": null, + "category": [ + "Service", + "Business Services" + ], + "category_id": "18008000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "mJeXWm6RR0jqLNqn46Yw686OaB7OL92vqLDED", + "logo_url": "https://plaid-merchant-logos.plaid.com/wish_1130.png", + "name": "Wish", + "phone_number": null, + "type": "merchant", + "website": "wish.com" + } + ], + "date": "2025-02-09", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/wish_1130.png", + "merchant_entity_id": "mJeXWm6RR0jqLNqn46Yw686OaB7OL92vqLDED", + "merchant_name": "Wish", + "name": "WISH.COM", + "original_description": "WISH.COM", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "GENERAL_MERCHANDISE_ONLINE_MARKETPLACES", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "edNwr51XgAcoARVZP68vsdRGzqom9Bur95mQZ", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "wish.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 2.33, + "authorized_date": "2025-02-09", + "authorized_datetime": null, + "category": [ + "Shops", + "Discount Stores" + ], + "category_id": "19020000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "4rWqrp33ZRn8M10qwLRKVL9L09XVaXrMRKJ5p", + "logo_url": "https://plaid-merchant-logos.plaid.com/dollarama_1491.png", + "name": "Dollarama", + "phone_number": null, + "type": "merchant", + "website": "dollarama.com" + } + ], + "date": "2025-02-09", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": "012" + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/dollarama_1491.png", + "merchant_entity_id": "4rWqrp33ZRn8M10qwLRKVL9L09XVaXrMRKJ5p", + "merchant_name": "Dollarama", + "name": "DOLLARAMA # 012 TORONTO ON", + "original_description": "DOLLARAMA # 012 TORONTO ON", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "GENERAL_MERCHANDISE_DISCOUNT_STORES", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "QEbZN5mMrxTnJ4XRxba9s9paZDyVQGCwm7DX5", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "dollarama.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 26.95, + "authorized_date": "2025-02-09", + "authorized_datetime": null, + "category": [ + "Shops", + "Supermarkets and Groceries" + ], + "category_id": "19047000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "a1wEv51o8g7QQEbN2o9NRa3np6AXn0qZ2ZdL9", + "logo_url": "https://plaid-merchant-logos.plaid.com/hellofresh_479.png", + "name": "HelloFresh", + "phone_number": null, + "type": "merchant", + "website": "hellofresh.com" + } + ], + "date": "2025-02-10", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/hellofresh_479.png", + "merchant_entity_id": "a1wEv51o8g7QQEbN2o9NRa3np6AXn0qZ2ZdL9", + "merchant_name": "HelloFresh", + "name": "HELLOFRESH", + "original_description": "HELLOFRESH", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "FOOD_AND_DRINK_GROCERIES", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "ZvlBL5eMPQtnXDV6QrR9sRex8pZayMceqXGpj", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "hellofresh.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 43.75, + "authorized_date": "2025-02-10", + "authorized_datetime": null, + "category": [ + "Food and Drink", + "Restaurants", + "Coffee Shop" + ], + "category_id": "13005043", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "p64nrAXvN7r7mjrdp0qNKnB137Da6BWbbrEwz", + "logo_url": "https://plaid-merchant-logos.plaid.com/dunkin_donuts_305.png", + "name": "Dunkin'", + "phone_number": null, + "type": "merchant", + "website": "dunkindonuts.com" + } + ], + "date": "2025-02-10", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": "MA", + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/dunkin_donuts_305.png", + "merchant_entity_id": "p64nrAXvN7r7mjrdp0qNKnB137Da6BWbbrEwz", + "merchant_name": "Dunkin'", + "name": "Dunkin' Donuts", + "original_description": "DUNKIN' AUTO 012-012-0123 MA", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "FOOD_AND_DRINK_COFFEE", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "MpWPx5o4yrcpZvwQrdbMuwXJg8Eze3fL6P1vM", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "dunkindonuts.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 43.75, + "authorized_date": "2025-02-10", + "authorized_datetime": null, + "category": [ + "Food and Drink", + "Restaurants", + "Coffee Shop" + ], + "category_id": "13005043", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "p64nrAXvN7r7mjrdp0qNKnB137Da6BWbbrEwz", + "logo_url": "https://plaid-merchant-logos.plaid.com/dunkin_donuts_305.png", + "name": "Dunkin'", + "phone_number": null, + "type": "merchant", + "website": "dunkindonuts.com" + } + ], + "date": "2025-02-10", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/dunkin_donuts_305.png", + "merchant_entity_id": "p64nrAXvN7r7mjrdp0qNKnB137Da6BWbbrEwz", + "merchant_name": "Dunkin'", + "name": "Dunkin' Donuts", + "original_description": "DUNKIN' AUTO", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "FOOD_AND_DRINK_COFFEE", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "1bXWx1mVzNcQvyzEo34JTXVmegwx94tpjerRg", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "dunkindonuts.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 4.3, + "authorized_date": "2025-02-10", + "authorized_datetime": null, + "category": [ + "Food and Drink", + "Restaurants", + "Coffee Shop" + ], + "category_id": "13005043", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "p64nrAXvN7r7mjrdp0qNKnB137Da6BWbbrEwz", + "logo_url": "https://plaid-merchant-logos.plaid.com/dunkin_donuts_305.png", + "name": "Dunkin'", + "phone_number": null, + "type": "merchant", + "website": "dunkindonuts.com" + } + ], + "date": "2025-02-10", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": "012345" + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/dunkin_donuts_305.png", + "merchant_entity_id": "p64nrAXvN7r7mjrdp0qNKnB137Da6BWbbrEwz", + "merchant_name": "Dunkin'", + "name": "Dunkin' Donuts", + "original_description": "DUNKIN #012345", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "FOOD_AND_DRINK_COFFEE", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "LLEP35oamKfLwWGzKa8mCk6Apgx1W7ukjpEM7", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "dunkindonuts.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 5.58, + "authorized_date": "2025-02-10", + "authorized_datetime": null, + "category": [ + "Shops", + "Clothing and Accessories", + "Women's Store" + ], + "category_id": "19012001", + "check_number": null, + "counterparties": [ + { + "confidence_level": "LOW", + "entity_id": null, + "logo_url": null, + "name": "Less", + "phone_number": null, + "type": "merchant", + "website": null + } + ], + "date": "2025-02-10", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": "Less", + "name": "Ross Dress for Less", + "original_description": "Ross Dress for Less", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "GENERAL_MERCHANDISE_OTHER_GENERAL_MERCHANDISE", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "p1oA739DqKhR4y8Xk1ZWcxJrdLn6oGtpoVzGv", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 594.34, + "authorized_date": "2025-02-09", + "authorized_datetime": null, + "category": [ + "Shops" + ], + "category_id": "19000000", + "check_number": null, + "counterparties": [], + "date": "2025-02-14", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "OVR*O.CO/OVERSTOCK.COM", + "original_description": "OVR*O.CO/OVERSTOCK.COM", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "GENERAL_MERCHANDISE_OTHER_GENERAL_MERCHANDISE", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "oMpyjB9Dlqhb4v8gkyn6tbzMpZy5G3ioq7bDM", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 7.49, + "authorized_date": "2025-02-10", + "authorized_datetime": null, + "category": [ + "Shops", + "Digital Purchase" + ], + "category_id": "19019000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "o2b36aaRWwVwoD70pgje1ML938DADoJ2b9LnY", + "logo_url": "https://plaid-merchant-logos.plaid.com/ebay_310.png", + "name": "eBay", + "phone_number": null, + "type": "merchant", + "website": "ebay.com" + } + ], + "date": "2025-02-14", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/ebay_310.png", + "merchant_entity_id": "o2b36aaRWwVwoD70pgje1ML938DADoJ2b9LnY", + "merchant_name": "eBay", + "name": "eBay", + "original_description": "eBay", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "GENERAL_MERCHANDISE_ONLINE_MARKETPLACES", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "g4j7B5kXEnCwdLV7NzQPHV59dRBP8WcE8n5BD", + "transaction_type": "digital", + "unofficial_currency_code": null, + "website": "ebay.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 57.75, + "authorized_date": "2025-02-11", + "authorized_datetime": null, + "category": [ + "Recreation" + ], + "category_id": "17000000", + "check_number": null, + "counterparties": [], + "date": "2025-02-14", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "VAIL SKI PASS \u0026 RC", + "original_description": "VAIL SKI PASS \u0026 RC", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "ENTERTAINMENT_SPORTING_EVENTS_AMUSEMENT_PARKS_AND_MUSEUMS", + "primary": "ENTERTAINMENT" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_ENTERTAINMENT.png", + "transaction_code": null, + "transaction_id": "8lBZ7kqmNMflM6N1rBb8udzkGwyA5MuW3L866", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 5.93, + "authorized_date": "2025-02-10", + "authorized_datetime": null, + "category": [ + "Food and Drink", + "Restaurants", + "Fast Food" + ], + "category_id": "13005032", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "mVrw538wamwdm22mK8jqpp7qd5br0eeV9o4a1", + "logo_url": "https://plaid-merchant-logos.plaid.com/burger_king_155.png", + "name": "Burger King", + "phone_number": null, + "type": "merchant", + "website": "burgerking.com" + } + ], + "date": "2025-02-13", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": "330 Pompton Ave", + "city": "Cedar Grove", + "country": null, + "lat": 40.844574, + "lon": -74.228607, + "postal_code": "07009", + "region": "NJ", + "store_number": "01234" + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/burger_king_155.png", + "merchant_entity_id": "mVrw538wamwdm22mK8jqpp7qd5br0eeV9o4a1", + "merchant_name": "Burger King", + "name": "Burger King", + "original_description": "BURGER KING #01234", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "FOOD_AND_DRINK_FAST_FOOD", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "EjM3A5vK8mCjLea1GE3mCyom95Prvki4xkm7N", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "burgerking.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 4.78, + "authorized_date": "2025-02-10", + "authorized_datetime": null, + "category": [ + "Travel", + "Taxi" + ], + "category_id": "22016000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "eyg8o776k0QmNgVpAmaQj4WgzW9Qzo6O51gdd", + "logo_url": "https://plaid-merchant-logos.plaid.com/uber_1060.png", + "name": "Uber", + "phone_number": null, + "type": "merchant", + "website": "uber.com" + } + ], + "date": "2025-02-13", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/uber_1060.png", + "merchant_entity_id": "eyg8o776k0QmNgVpAmaQj4WgzW9Qzo6O51gdd", + "merchant_name": "Uber", + "name": "Uber", + "original_description": "UBER *TRIP", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "TRANSPORTATION_TAXIS_AND_RIDE_SHARES", + "primary": "TRANSPORTATION" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_TRANSPORTATION.png", + "transaction_code": null, + "transaction_id": "Wm6kZ5zMajudb4XV6nyafB8VgNb3znC6Z1j85", + "transaction_type": "special", + "unofficial_currency_code": null, + "website": "uber.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 24.17, + "authorized_date": "2025-02-10", + "authorized_datetime": null, + "category": [ + "Travel", + "Gas Stations" + ], + "category_id": "22009000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "2YqLq71Rkk4Nev2gO7Yqa9EJmdj6ZZd3X4qEK", + "logo_url": "https://plaid-merchant-logos.plaid.com/mapco_602.png", + "name": "Mapco", + "phone_number": null, + "type": "merchant", + "website": "mapcorewards.com" + } + ], + "date": "2025-02-13", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/mapco_602.png", + "merchant_entity_id": "2YqLq71Rkk4Nev2gO7Yqa9EJmdj6ZZd3X4qEK", + "merchant_name": "Mapco", + "name": "MAPCO 0123", + "original_description": "MAPCO 0123", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "TRANSPORTATION_GAS", + "primary": "TRANSPORTATION" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_TRANSPORTATION.png", + "transaction_code": null, + "transaction_id": "Aa7KgRpVLAhamWlkAvD3s8Dl5KZ7brF9rA5DV", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "mapcorewards.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 75, + "authorized_date": "2025-02-10", + "authorized_datetime": null, + "category": [ + "Food and Drink", + "Restaurants" + ], + "category_id": "13005000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "m2M3MJoE27zdYprWD2kpbzeoOm6WMDOY5L92r", + "logo_url": "https://plaid-merchant-logos.plaid.com/dave_busters_268.png", + "name": "Dave \u0026 Buster's", + "phone_number": null, + "type": "merchant", + "website": "daveandbusters.com" + } + ], + "date": "2025-02-15", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/dave_busters_268.png", + "merchant_entity_id": "m2M3MJoE27zdYprWD2kpbzeoOm6WMDOY5L92r", + "merchant_name": "Dave \u0026 Buster's", + "name": "Dave \u0026 Buster's", + "original_description": "Dave \u0026 Buster's", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "HIGH", + "detailed": "FOOD_AND_DRINK_RESTAURANT", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "GeLdq5ozW9Te8Jd4MGvPT84MZDwPW7F6MPovJ", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "daveandbusters.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 10.9, + "authorized_date": "2025-02-11", + "authorized_datetime": null, + "category": [ + "Shops", + "Gift and Novelty" + ], + "category_id": "19028000", + "check_number": null, + "counterparties": [], + "date": "2025-02-15", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "QVC012345678901234OF*", + "original_description": "QVC012345678901234OF*", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "PERSONAL_CARE_HAIR_AND_BEAUTY", + "primary": "PERSONAL_CARE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_PERSONAL_CARE.png", + "transaction_code": null, + "transaction_id": "nZLAPzwDylibQdva8jeDtG1eMJoEWbtAlWQR8", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 44.84, + "authorized_date": "2025-02-11", + "authorized_datetime": null, + "category": [ + "Food and Drink", + "Restaurants" + ], + "category_id": "13005000", + "check_number": null, + "counterparties": [], + "date": "2025-02-15", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "CHP", + "original_description": "CHP", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "GENERAL_MERCHANDISE_OTHER_GENERAL_MERCHANDISE", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "bBdylJgXLku1ryVNQ9XehxReg34KG7tmbZ7jV", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 52.68, + "authorized_date": "2025-02-11", + "authorized_datetime": null, + "category": [ + "Travel", + "Gas Stations" + ], + "category_id": "22009000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "gKVEwLow3LyK4qbbvKn6oLvBmXXLA0y79YBBz", + "logo_url": "https://plaid-merchant-logos.plaid.com/loves_travel_stops_590.png", + "name": "Love's Travel Stops", + "phone_number": null, + "type": "merchant", + "website": "loves.com" + } + ], + "date": "2025-02-15", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/loves_travel_stops_590.png", + "merchant_entity_id": "gKVEwLow3LyK4qbbvKn6oLvBmXXLA0y79YBBz", + "merchant_name": "Love's Travel Stops", + "name": "LOVE S TRAVEL 01234567", + "original_description": "LOVE S TRAVEL 01234567", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "TRANSPORTATION_GAS", + "primary": "TRANSPORTATION" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_TRANSPORTATION.png", + "transaction_code": null, + "transaction_id": "mQ1ANkbDmRfb4yvJ6npMt6LmBj1NyEcgydXNg", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "loves.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 53.04, + "authorized_date": "2025-02-15", + "authorized_datetime": null, + "category": [ + "Food and Drink", + "Restaurants" + ], + "category_id": "13005000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "LOW", + "entity_id": null, + "logo_url": null, + "name": "Oreganos Pizza", + "phone_number": null, + "type": "merchant", + "website": null + } + ], + "date": "2025-02-15", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": "Oreganos Pizza", + "name": "OREGANOS PIZZA 0123", + "original_description": "OREGANOS PIZZA 0123", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "ENTERTAINMENT_SPORTING_EVENTS_AMUSEMENT_PARKS_AND_MUSEUMS", + "primary": "ENTERTAINMENT" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_ENTERTAINMENT.png", + "transaction_code": null, + "transaction_id": "yGmrge5K4NFpDQweBL4yuPM35rxdXZi46XwmK", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 15, + "authorized_date": "2025-02-11", + "authorized_datetime": null, + "category": [ + "Service", + "Cleaning" + ], + "category_id": "18011000", + "check_number": null, + "counterparties": [], + "date": "2025-02-11", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "HANDY.COM - MAR01", + "original_description": "HANDY.COM - MAR01", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "GENERAL_MERCHANDISE_OTHER_GENERAL_MERCHANDISE", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "9q36eAK7P1iqGMPbA34yUAZV7NmLojI4xQg1V", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 45.5, + "authorized_date": "2025-02-11", + "authorized_datetime": null, + "category": [ + "Food and Drink", + "Restaurants" + ], + "category_id": "13005000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "m2M3MJoE27zdYprWD2kpbzeoOm6WMDOY5L92r", + "logo_url": "https://plaid-merchant-logos.plaid.com/dave_busters_268.png", + "name": "Dave \u0026 Buster's", + "phone_number": null, + "type": "merchant", + "website": "daveandbusters.com" + } + ], + "date": "2025-02-12", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": "01" + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/dave_busters_268.png", + "merchant_entity_id": "m2M3MJoE27zdYprWD2kpbzeoOm6WMDOY5L92r", + "merchant_name": "Dave \u0026 Buster's", + "name": "Dave \u0026 Buster's", + "original_description": "DAVE \u0026 BUSTER'S #01", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "HIGH", + "detailed": "FOOD_AND_DRINK_RESTAURANT", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "vEGlLPADxdT7rVvMKoxpsbozq3NxkGiq6k1mX", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "daveandbusters.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 9.47, + "authorized_date": "2025-02-11", + "authorized_datetime": null, + "category": [ + "Service", + "Subscription" + ], + "category_id": "18061000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "ZzO1V6gJ8KbO926KrNYONbQqobXpgjWnA28nR", + "logo_url": "https://plaid-merchant-logos.plaid.com/hulu_504.png", + "name": "Hulu", + "phone_number": null, + "type": "merchant", + "website": "hulu.com" + } + ], + "date": "2025-02-12", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/hulu_504.png", + "merchant_entity_id": "ZzO1V6gJ8KbO926KrNYONbQqobXpgjWnA28nR", + "merchant_name": "Hulu", + "name": "Hulu LLC", + "original_description": "AMZ*Hulu LLC", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": "Amazon", + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "ENTERTAINMENT_TV_AND_MOVIES", + "primary": "ENTERTAINMENT" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_ENTERTAINMENT.png", + "transaction_code": null, + "transaction_id": "RWmGP5oMzdtreRojdm9zi5wEvmqNVpHapbAyJ", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "hulu.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 27, + "authorized_date": "2025-02-11", + "authorized_datetime": null, + "category": [ + "Shops", + "Digital Purchase" + ], + "category_id": "19019000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "5ngqyLXKYBknN8OywL79Z1qoWmyE0zKq20nz6", + "logo_url": "https://plaid-merchant-logos.plaid.com/etsy_332.png", + "name": "Etsy", + "phone_number": null, + "type": "merchant", + "website": "etsy.com" + } + ], + "date": "2025-02-12", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/etsy_332.png", + "merchant_entity_id": "5ngqyLXKYBknN8OywL79Z1qoWmyE0zKq20nz6", + "merchant_name": "Etsy", + "name": "Etsy", + "original_description": "Etsy.com", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "GENERAL_MERCHANDISE_ONLINE_MARKETPLACES", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "6RrvP8d6aQt8RdaEAwWkFbyD6lRWjLi8DXeZm", + "transaction_type": "digital", + "unofficial_currency_code": null, + "website": "etsy.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 89.62, + "authorized_date": "2025-02-11", + "authorized_datetime": null, + "category": [ + "Service", + "Cable" + ], + "category_id": "18009000", + "check_number": null, + "counterparties": [], + "date": "2025-02-12", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "DTV*DIRECTV SERVICE", + "original_description": "DTV*DIRECTV SERVICE", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "GENERAL_SERVICES_OTHER_GENERAL_SERVICES", + "primary": "GENERAL_SERVICES" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_SERVICES.png", + "transaction_code": null, + "transaction_id": "XyXrM5BG47fmPpGD7694U6qPyJX8decbKnLZD", + "transaction_type": "special", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 33.23, + "authorized_date": "2025-02-11", + "authorized_datetime": null, + "category": [ + "Travel", + "Airlines and Aviation Services" + ], + "category_id": "22001000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "LOW", + "entity_id": null, + "logo_url": null, + "name": "Inflt", + "phone_number": null, + "type": "merchant", + "website": null + } + ], + "date": "2025-02-12", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": "Inflt", + "name": "UA INFLT 0123456789012", + "original_description": "UA INFLT 0123456789012", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "ENTERTAINMENT_SPORTING_EVENTS_AMUSEMENT_PARKS_AND_MUSEUMS", + "primary": "ENTERTAINMENT" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_ENTERTAINMENT.png", + "transaction_code": null, + "transaction_id": "DPZBW5VqgbFP764zbpqmSvjWJDPg3bt3WaJDd", + "transaction_type": "special", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 13.55, + "authorized_date": "2025-02-16", + "authorized_datetime": null, + "category": [ + "Travel", + "Gas Stations" + ], + "category_id": "22009000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "8y7851JXryBnkOWOjW163yqzAB01oa8k6e1g9", + "logo_url": "https://plaid-merchant-logos.plaid.com/shell_891.png", + "name": "Shell", + "phone_number": null, + "type": "merchant", + "website": "shell.com" + } + ], + "date": "2025-02-16", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/shell_891.png", + "merchant_entity_id": "8y7851JXryBnkOWOjW163yqzAB01oa8k6e1g9", + "merchant_name": "Shell", + "name": "SHELL/SHELL #...0123", + "original_description": "SHELL/SHELL #...0123", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "TRANSPORTATION_GAS", + "primary": "TRANSPORTATION" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_TRANSPORTATION.png", + "transaction_code": null, + "transaction_id": "VbRqQ5rLdPcn6RqVP4QdsXJG18VQ3Et9gPE1N", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "shell.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 22.83, + "authorized_date": "2025-02-16", + "authorized_datetime": null, + "category": [ + "Shops", + "Digital Purchase" + ], + "category_id": "19019000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "2gOwmq9qK56K60oDm3eLrREV2B2mVadkRn8MW", + "logo_url": "https://plaid-merchant-logos.plaid.com/amazon_44.png", + "name": "Amazon", + "phone_number": null, + "type": "merchant", + "website": "amazon.com" + } + ], + "date": "2025-02-16", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": "WA", + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/amazon_44.png", + "merchant_entity_id": "2gOwmq9qK56K60oDm3eLrREV2B2mVadkRn8MW", + "merchant_name": "Amazon", + "name": "AMAZON MKTPLACE PMTS AMZN.COM/BILL", + "original_description": "AMAZON MKTPLACE PMTS AMZN.COM/BILL WA", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "GENERAL_MERCHANDISE_ONLINE_MARKETPLACES", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "wWnqpjJldatQbrvJydjETKPDB3J4E9cPZomwd", + "transaction_type": "digital", + "unofficial_currency_code": null, + "website": "amazon.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 72.54, + "authorized_date": "2025-02-16", + "authorized_datetime": null, + "category": [ + "Shops", + "Supermarkets and Groceries" + ], + "category_id": "19047000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "E1Eqdj7BML3NLYNAO562kZj5R0J4EkQo6gYJA", + "logo_url": "https://plaid-merchant-logos.plaid.com/kroger_555.png", + "name": "Kroger", + "phone_number": null, + "type": "merchant", + "website": "kroger.com" + } + ], + "date": "2025-02-16", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": "012" + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/kroger_555.png", + "merchant_entity_id": "E1Eqdj7BML3NLYNAO562kZj5R0J4EkQo6gYJA", + "merchant_name": "Kroger", + "name": "Kroger", + "original_description": "KROGER #012 #...0123", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "FOOD_AND_DRINK_GROCERIES", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "5vK5Ng6bdetkX4dDA6NbSqZK7QDoXMu5K78le", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "kroger.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 525.8, + "authorized_date": "2025-02-16", + "authorized_datetime": null, + "category": [ + "Recreation", + "Arts and Entertainment" + ], + "category_id": "17001000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "LOW", + "entity_id": null, + "logo_url": null, + "name": "Tickets", + "phone_number": null, + "type": "merchant", + "website": null + } + ], + "date": "2025-02-16", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": "Tickets", + "name": "SeatGeek_Tickets", + "original_description": "SeatGeek_Tickets", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "ENTERTAINMENT_SPORTING_EVENTS_AMUSEMENT_PARKS_AND_MUSEUMS", + "primary": "ENTERTAINMENT" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_ENTERTAINMENT.png", + "transaction_code": null, + "transaction_id": "JMgVz59xnlhM1pyKljkeUAXZgLJDw6IB6gk3l", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 8.8, + "authorized_date": "2025-02-16", + "authorized_datetime": null, + "category": [ + "Food and Drink", + "Restaurants" + ], + "category_id": "13005000", + "check_number": null, + "counterparties": [], + "date": "2025-02-21", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "C* FOOD HALL - EMV", + "original_description": "C* FOOD HALL - EMV", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "FOOD_AND_DRINK_GROCERIES", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "k7ZAaqkDn9IeLWvPMD3QTQmwjAae61sL6dony", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 64.91, + "authorized_date": "2025-02-17", + "authorized_datetime": null, + "category": [ + "Recreation", + "Gyms and Fitness Centers" + ], + "category_id": "17018000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "LOW", + "entity_id": null, + "logo_url": null, + "name": "Fitness", + "phone_number": null, + "type": "merchant", + "website": null + } + ], + "date": "2025-02-21", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": "Fitness", + "name": "LA Fitness", + "original_description": "LA FITNESS", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "PERSONAL_CARE_GYMS_AND_FITNESS_CENTERS", + "primary": "PERSONAL_CARE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_PERSONAL_CARE.png", + "transaction_code": null, + "transaction_id": "leMA4KdDbvT9Rj8aDw3ASlqwZmdvGDipodRQP", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 1.87, + "authorized_date": "2025-02-19", + "authorized_datetime": null, + "category": [ + "Shops", + "Supermarkets and Groceries" + ], + "category_id": "19047000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "95bAk9jYLq644z7grLky2qaWpBNZ80Z0eOoJD", + "logo_url": "https://plaid-merchant-logos.plaid.com/publix_787.png", + "name": "Publix", + "phone_number": null, + "type": "merchant", + "website": "publix.com" + } + ], + "date": "2025-02-21", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": "7604 Highway 70 S", + "city": "Nashville", + "country": null, + "lat": 36.078503, + "lon": -86.945427, + "postal_code": "37221", + "region": "TN", + "store_number": "0123" + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/publix_787.png", + "merchant_entity_id": "95bAk9jYLq644z7grLky2qaWpBNZ80Z0eOoJD", + "merchant_name": "Publix", + "name": "Publix", + "original_description": "PUBLIX #0123 #...0123", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "FOOD_AND_DRINK_GROCERIES", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "bBdylJgXLku1ryVNQ9XehxReg34KG7tmbZ7jD", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "publix.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 6.81, + "authorized_date": "2025-02-16", + "authorized_datetime": null, + "category": [ + "Food and Drink", + "Restaurants" + ], + "category_id": "13005000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "EJ70Mg1YmVNWVyXj85wvmNzjzg5madJyLYgo1", + "logo_url": "https://plaid-merchant-logos.plaid.com/dairy_queen_265.png", + "name": "Dairy Queen", + "phone_number": null, + "type": "merchant", + "website": "dairyqueen.com" + } + ], + "date": "2025-02-17", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/dairy_queen_265.png", + "merchant_entity_id": "EJ70Mg1YmVNWVyXj85wvmNzjzg5madJyLYgo1", + "merchant_name": "Dairy Queen", + "name": "Dairy Queen", + "original_description": "Dairy Queen", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "FOOD_AND_DRINK_FAST_FOOD", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "mQ1ANkbDmRfb4yvJ6npMt6LmBj1NyEcgydXa1", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "dairyqueen.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 117.48, + "authorized_date": "2025-02-16", + "authorized_datetime": null, + "category": [ + "Shops", + "Supermarkets and Groceries" + ], + "category_id": "19047000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "BzJndQpm8ERB0yK25EM6n48raQaNKLK8Vkw5A", + "logo_url": "https://plaid-merchant-logos.plaid.com/vons_1093.png", + "name": "Vons", + "phone_number": null, + "type": "merchant", + "website": "vons.com" + } + ], + "date": "2025-02-17", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": "0123" + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/vons_1093.png", + "merchant_entity_id": "BzJndQpm8ERB0yK25EM6n48raQaNKLK8Vkw5A", + "merchant_name": "Vons", + "name": "Vons", + "original_description": "VONS #0123", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "FOOD_AND_DRINK_GROCERIES", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "yGmrge5K4NFpDQweBL4yuPM35rxdXZi46XwBj", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "vons.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 38.7, + "authorized_date": "2025-02-16", + "authorized_datetime": null, + "category": [ + "Shops", + "Clothing and Accessories" + ], + "category_id": "19012000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "Q9qOA3RZj15MaMybaApnJD5YVKmMZjgL3LkAz", + "logo_url": "https://plaid-merchant-logos.plaid.com/zara_1150.png", + "name": "Zara", + "phone_number": null, + "type": "merchant", + "website": "zara.com" + } + ], + "date": "2025-02-17", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/zara_1150.png", + "merchant_entity_id": "Q9qOA3RZj15MaMybaApnJD5YVKmMZjgL3LkAz", + "merchant_name": "Zara", + "name": "Zara", + "original_description": "ZARA USA 01234", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "GENERAL_MERCHANDISE_CLOTHING_AND_ACCESSORIES", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "9q36eAK7P1iqGMPbA34yUAZV7NmLojI4xQg6j", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "zara.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 1.5, + "authorized_date": "2025-02-17", + "authorized_datetime": null, + "category": [ + "Travel", + "Taxi" + ], + "category_id": "22016000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "eyg8o776k0QmNgVpAmaQj4WgzW9Qzo6O51gdd", + "logo_url": "https://plaid-merchant-logos.plaid.com/uber_1060.png", + "name": "Uber", + "phone_number": null, + "type": "merchant", + "website": "uber.com" + } + ], + "date": "2025-02-17", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/uber_1060.png", + "merchant_entity_id": "eyg8o776k0QmNgVpAmaQj4WgzW9Qzo6O51gdd", + "merchant_name": "Uber", + "name": "UBER *", + "original_description": "UBER *", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "TRANSPORTATION_TAXIS_AND_RIDE_SHARES", + "primary": "TRANSPORTATION" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_TRANSPORTATION.png", + "transaction_code": null, + "transaction_id": "vEGlLPADxdT7rVvMKoxpsbozq3NxkGiq6k1dE", + "transaction_type": "special", + "unofficial_currency_code": null, + "website": "uber.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 22.05, + "authorized_date": "2025-02-16", + "authorized_datetime": null, + "category": [ + "Shops", + "Music, Video and DVD" + ], + "category_id": "19036000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "z3XzRe488pMdo7NAnL44L7rv9L550berky6mK", + "logo_url": "https://plaid-merchant-logos.plaid.com/apple_itunes_1434.png", + "name": "Apple iTunes", + "phone_number": null, + "type": "merchant", + "website": "apple.com/itunes" + } + ], + "date": "2025-02-20", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": "CA", + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/apple_itunes_1434.png", + "merchant_entity_id": "z3XzRe488pMdo7NAnL44L7rv9L550berky6mK", + "merchant_name": "Apple iTunes", + "name": "iTunes", + "original_description": "Apl*itunes.com/bill 012-012-0123 Ca", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": "Apple", + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "ENTERTAINMENT_MUSIC_AND_AUDIO", + "primary": "ENTERTAINMENT" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_ENTERTAINMENT.png", + "transaction_code": null, + "transaction_id": "RWmGP5oMzdtreRojdm9zi5wEvmqNVpHapbAEW", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "apple.com/itunes" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 2.33, + "authorized_date": "2025-02-17", + "authorized_datetime": null, + "category": [ + "Shops", + "Discount Stores" + ], + "category_id": "19020000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "4rWqrp33ZRn8M10qwLRKVL9L09XVaXrMRKJ5p", + "logo_url": "https://plaid-merchant-logos.plaid.com/dollarama_1491.png", + "name": "Dollarama", + "phone_number": null, + "type": "merchant", + "website": "dollarama.com" + } + ], + "date": "2025-02-18", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": "012" + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/dollarama_1491.png", + "merchant_entity_id": "4rWqrp33ZRn8M10qwLRKVL9L09XVaXrMRKJ5p", + "merchant_name": "Dollarama", + "name": "DOLLARAMA # 012 TORONTO ON", + "original_description": "DOLLARAMA # 012 TORONTO ON", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "GENERAL_MERCHANDISE_DISCOUNT_STORES", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "6RrvP8d6aQt8RdaEAwWkFbyD6lRWjLi8DXe5L", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "dollarama.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 16.95, + "authorized_date": "2025-02-17", + "authorized_datetime": null, + "category": [ + "Service", + "Subscription" + ], + "category_id": "18061000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "3LEY2bJ6W1vkoaBjgVg3qBgYVEzD6p8d1dQdY", + "logo_url": "https://plaid-merchant-logos.plaid.com/netflix_675.png", + "name": "Netflix", + "phone_number": null, + "type": "merchant", + "website": "netflix.com" + } + ], + "date": "2025-02-18", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": "CA", + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/netflix_675.png", + "merchant_entity_id": "3LEY2bJ6W1vkoaBjgVg3qBgYVEzD6p8d1dQdY", + "merchant_name": "Netflix", + "name": "Netflix", + "original_description": "Netflix.com netflix.com CA", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "ENTERTAINMENT_TV_AND_MOVIES", + "primary": "ENTERTAINMENT" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_ENTERTAINMENT.png", + "transaction_code": null, + "transaction_id": "XyXrM5BG47fmPpGD7694U6qPyJX8decbKnLan", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "netflix.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 4.17, + "authorized_date": "2025-02-18", + "authorized_datetime": null, + "category": [ + "Food and Drink", + "Restaurants", + "Fast Food" + ], + "category_id": "13005032", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "vzWXDWBjB06j5BJoD3Jo84OJZg7JJzmqOZA22", + "logo_url": "https://plaid-merchant-logos.plaid.com/mcdonalds_619.png", + "name": "McDonald's", + "phone_number": null, + "type": "merchant", + "website": "mcdonalds.com" + } + ], + "date": "2025-02-18", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": "6729 Arlington Blvd", + "city": "Falls Church", + "country": null, + "lat": null, + "lon": null, + "postal_code": "22042", + "region": "VA", + "store_number": "0123" + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/mcdonalds_619.png", + "merchant_entity_id": "vzWXDWBjB06j5BJoD3Jo84OJZg7JJzmqOZA22", + "merchant_name": "McDonald's", + "name": "McDonald's", + "original_description": "MCDONALD'S F0123", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "FOOD_AND_DRINK_FAST_FOOD", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "DPZBW5VqgbFP764zbpqmSvjWJDPg3bt3WaJMQ", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "mcdonalds.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 82.25, + "authorized_date": "2025-02-17", + "authorized_datetime": null, + "category": [ + "Food and Drink", + "Restaurants" + ], + "category_id": "13005000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "LOW", + "entity_id": null, + "logo_url": null, + "name": "The Ashford \u0026 Six", + "phone_number": null, + "type": "merchant", + "website": null + } + ], + "date": "2025-02-22", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": "The Ashford \u0026 Six", + "name": "THE ASHFORD \u0026 SIX 01", + "original_description": "THE ASHFORD \u0026 SIX 01", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "GENERAL_MERCHANDISE_OTHER_GENERAL_MERCHANDISE", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "VbRqQ5rLdPcn6RqVP4QdsXJG18VQ3Et9gPErE", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 48.26, + "authorized_date": "2025-02-19", + "authorized_datetime": null, + "category": [ + "Service", + "Shipping and Freight" + ], + "category_id": "18058000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "87BE46o0VXpZ1DZMmBBnAe7q2wAKbn3kZJZq2", + "logo_url": "https://plaid-merchant-logos.plaid.com/fedex_365.png", + "name": "FedEx", + "phone_number": null, + "type": "merchant", + "website": "fedex.com" + } + ], + "date": "2025-02-19", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/fedex_365.png", + "merchant_entity_id": "87BE46o0VXpZ1DZMmBBnAe7q2wAKbn3kZJZq2", + "merchant_name": "FedEx", + "name": "FedEx", + "original_description": "FEDEXOFFICE 01234567", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "HIGH", + "detailed": "GENERAL_SERVICES_POSTAGE_AND_SHIPPING", + "primary": "GENERAL_SERVICES" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_SERVICES.png", + "transaction_code": null, + "transaction_id": "wWnqpjJldatQbrvJydjETKPDB3J4E9cPZom81", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "fedex.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 6.75, + "authorized_date": "2025-02-19", + "authorized_datetime": null, + "category": [ + "Travel", + "Parking" + ], + "category_id": "22013000", + "check_number": null, + "counterparties": [], + "date": "2025-02-24", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "PKG PS *-*, *, KEC", + "original_description": "PKG PS *-*, *, KEC", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "GENERAL_MERCHANDISE_OTHER_GENERAL_MERCHANDISE", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "5vK5Ng6bdetkX4dDA6NbSqZK7QDoXMu5K78mX", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 10.47, + "authorized_date": "2025-02-23", + "authorized_datetime": null, + "category": [ + "Shops", + "Convenience Stores" + ], + "category_id": "19015000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "B3gNWKRQ1KjaL6BRD1wJNR8EVzpQAK5LAwNbV", + "logo_url": "https://plaid-merchant-logos.plaid.com/circle_k_213.png", + "name": "Circle K", + "phone_number": null, + "type": "merchant", + "website": "circlek.com" + } + ], + "date": "2025-02-24", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/circle_k_213.png", + "merchant_entity_id": "B3gNWKRQ1KjaL6BRD1wJNR8EVzpQAK5LAwNbV", + "merchant_name": "Circle K", + "name": "Circle K", + "original_description": "CIRCLE K 01234", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "TRANSPORTATION_GAS", + "primary": "TRANSPORTATION" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_TRANSPORTATION.png", + "transaction_code": null, + "transaction_id": "JMgVz59xnlhM1pyKljkeUAXZgLJDw6IB6gkPM", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "circlek.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 19.78, + "authorized_date": "2025-02-23", + "authorized_datetime": null, + "category": [ + "Travel", + "Taxi" + ], + "category_id": "22016000", + "check_number": null, + "counterparties": [], + "date": "2025-02-24", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "QUEENS MEDALLION LEASI", + "original_description": "QUEENS MEDALLION LEASI", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "GENERAL_MERCHANDISE_OTHER_GENERAL_MERCHANDISE", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "k7ZAaqkDn9IeLWvPMD3QTQmwjAae61sL6dov6", + "transaction_type": "special", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 39.73, + "authorized_date": "2025-02-20", + "authorized_datetime": null, + "category": [ + "Food and Drink", + "Restaurants", + "Fast Food" + ], + "category_id": "13005032", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "a4r8Wog9LbWrwqWpXZeJZr9b8rRbgavga0dkM", + "logo_url": "https://plaid-merchant-logos.plaid.com/dominos_292.png", + "name": "Domino's", + "phone_number": null, + "type": "merchant", + "website": "dominos.com" + } + ], + "date": "2025-02-23", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": "1230 N Kickapoo Ave", + "city": "Shawnee", + "country": null, + "lat": null, + "lon": null, + "postal_code": "74801", + "region": "OK", + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/dominos_292.png", + "merchant_entity_id": "a4r8Wog9LbWrwqWpXZeJZr9b8rRbgavga0dkM", + "merchant_name": "Domino's", + "name": "Domino's", + "original_description": "DOMINO'S PIZZA 0123", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "FOOD_AND_DRINK_FAST_FOOD", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "leMA4KdDbvT9Rj8aDw3ASlqwZmdvGDipodRx3", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "dominos.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 18.87, + "authorized_date": "2025-02-21", + "authorized_datetime": null, + "category": [ + "Shops", + "Furniture and Home Decor" + ], + "category_id": "19027000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "p51LQXRo28X81vDv7WyX48JvrYZQ56vO3WONr", + "logo_url": "https://plaid-merchant-logos.plaid.com/homegoods_492.png", + "name": "HomeGoods", + "phone_number": null, + "type": "merchant", + "website": "homegoods.com" + } + ], + "date": "2025-02-23", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/homegoods_492.png", + "merchant_entity_id": "p51LQXRo28X81vDv7WyX48JvrYZQ56vO3WONr", + "merchant_name": "HomeGoods", + "name": "HomeGoods", + "original_description": "HomeGoods", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "HOME_IMPROVEMENT_FURNITURE", + "primary": "HOME_IMPROVEMENT" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_HOME_IMPROVEMENT.png", + "transaction_code": null, + "transaction_id": "qLgAex9DKrfNjEv5oDMaFebVapMmWGhgr7R3z", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "homegoods.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 2.92, + "authorized_date": "2025-02-23", + "authorized_datetime": null, + "category": [ + "Shops", + "Supermarkets and Groceries" + ], + "category_id": "19047000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "95bAk9jYLq644z7grLky2qaWpBNZ80Z0eOoJD", + "logo_url": "https://plaid-merchant-logos.plaid.com/publix_787.png", + "name": "Publix", + "phone_number": null, + "type": "merchant", + "website": "publix.com" + } + ], + "date": "2025-02-23", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/publix_787.png", + "merchant_entity_id": "95bAk9jYLq644z7grLky2qaWpBNZ80Z0eOoJD", + "merchant_name": "Publix", + "name": "Publix", + "original_description": "Publix", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "FOOD_AND_DRINK_GROCERIES", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "K18PB5Zdbqh17BVgqbRQhyoaA5z1deiRpA1Qv", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "publix.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 22.73, + "authorized_date": "2025-02-23", + "authorized_datetime": null, + "category": [ + "Community", + "Education" + ], + "category_id": "12008000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "O3dgyvZVkJqLepeQZ4ZNd1LD114gNV0DXzABY", + "logo_url": "https://plaid-merchant-logos.plaid.com/udemy_1479.png", + "name": "Udemy", + "phone_number": null, + "type": "merchant", + "website": "udemy.com" + } + ], + "date": "2025-02-23", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/udemy_1479.png", + "merchant_entity_id": "O3dgyvZVkJqLepeQZ4ZNd1LD114gNV0DXzABY", + "merchant_name": "Udemy", + "name": "UDEMY ONLINE COURSES", + "original_description": "UDEMY ONLINE COURSES", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "GENERAL_SERVICES_EDUCATION", + "primary": "GENERAL_SERVICES" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_SERVICES.png", + "transaction_code": null, + "transaction_id": "rp8wQd9Drzc7XxVRZbBNsbxP5JMjG9i7J61z5", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "udemy.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 12.22, + "authorized_date": "2025-02-21", + "authorized_datetime": null, + "category": [ + "Shops", + "Supermarkets and Groceries" + ], + "category_id": "19047000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "VJMjzL8D214p3z76Zr411N4goOLmr4MmQV1Z5", + "logo_url": "https://plaid-merchant-logos.plaid.com/smiths_917.png", + "name": "Smith's", + "phone_number": null, + "type": "merchant", + "website": "smithsfoodanddrug.com" + } + ], + "date": "2025-02-26", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/smiths_917.png", + "merchant_entity_id": "VJMjzL8D214p3z76Zr411N4goOLmr4MmQV1Z5", + "merchant_name": "Smith's", + "name": "SMITH'S FOOD 0123", + "original_description": "SMITH'S FOOD 0123", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "HIGH", + "detailed": "GENERAL_MERCHANDISE_SUPERSTORES", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "zkyz8Q9rNPCXgWQeyj9pIeqPWlmJpdhlNLQn9", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "smithsfoodanddrug.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 43.73, + "authorized_date": "2025-02-23", + "authorized_datetime": null, + "category": [ + "Service" + ], + "category_id": "18000000", + "check_number": null, + "counterparties": [], + "date": "2025-02-26", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "Valve", + "original_description": "Valve", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "GENERAL_MERCHANDISE_OTHER_GENERAL_MERCHANDISE", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "B4ek869ZpGC41mDnjvVxuBdXVLjPRxC4M8glB", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 5.23, + "authorized_date": "2025-02-25", + "authorized_datetime": null, + "category": [ + "Food and Drink", + "Restaurants", + "Fast Food" + ], + "category_id": "13005032", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "vzWXDWBjB06j5BJoD3Jo84OJZg7JJzmqOZA22", + "logo_url": "https://plaid-merchant-logos.plaid.com/mcdonalds_619.png", + "name": "McDonald's", + "phone_number": null, + "type": "merchant", + "website": "mcdonalds.com" + } + ], + "date": "2025-02-26", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": "MI", + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/mcdonalds_619.png", + "merchant_entity_id": "vzWXDWBjB06j5BJoD3Jo84OJZg7JJzmqOZA22", + "merchant_name": "McDonald's", + "name": "McDonald's", + "original_description": "MCDONALD'S M0123 OF MI", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "FOOD_AND_DRINK_FAST_FOOD", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "3ylJapdb3jf8nK3A1z7JF3jlmQa5LBhZlnExj", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "mcdonalds.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 2.35, + "authorized_date": "2025-02-26", + "authorized_datetime": null, + "category": [ + "Travel", + "Taxi" + ], + "category_id": "22016000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "eyg8o776k0QmNgVpAmaQj4WgzW9Qzo6O51gdd", + "logo_url": "https://plaid-merchant-logos.plaid.com/uber_1060.png", + "name": "Uber", + "phone_number": null, + "type": "merchant", + "website": "uber.com" + } + ], + "date": "2025-02-26", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/uber_1060.png", + "merchant_entity_id": "eyg8o776k0QmNgVpAmaQj4WgzW9Qzo6O51gdd", + "merchant_name": "Uber", + "name": "Uber", + "original_description": "UBER TRIP HELP.UBER.COM", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "TRANSPORTATION_TAXIS_AND_RIDE_SHARES", + "primary": "TRANSPORTATION" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_TRANSPORTATION.png", + "transaction_code": null, + "transaction_id": "xAbKo75qa4um5aZ8zndpUMd7gW5wbxU64Veb7", + "transaction_type": "special", + "unofficial_currency_code": null, + "website": "uber.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 179.25, + "authorized_date": "2025-02-26", + "authorized_datetime": null, + "category": [ + "Shops", + "Department Stores" + ], + "category_id": "19018000", + "check_number": null, + "counterparties": [], + "date": "2025-02-26", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "JC Penney", + "original_description": "JC Penney", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "GENERAL_MERCHANDISE_OTHER_GENERAL_MERCHANDISE", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "dx4ZK58XoWCvbXVZlNgaC9Rl5wkLExCJEQRpN", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 37.49, + "authorized_date": "2025-02-23", + "authorized_datetime": null, + "category": [ + "Service", + "Telecommunication Services" + ], + "category_id": "18063000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "AnKWZ5q9wYnkYKg7YDrOwz04jKyEqadoo4K3m", + "logo_url": "https://plaid-merchant-logos.plaid.com/spectrum_933.png", + "name": "Spectrum", + "phone_number": null, + "type": "merchant", + "website": "spectrum.com" + } + ], + "date": "2025-02-28", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/spectrum_933.png", + "merchant_entity_id": "AnKWZ5q9wYnkYKg7YDrOwz04jKyEqadoo4K3m", + "merchant_name": "Spectrum", + "name": "BRIGHT HOUSE NETWORKS", + "original_description": "BRIGHT HOUSE NETWORKS", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "RENT_AND_UTILITIES_INTERNET_AND_CABLE", + "primary": "RENT_AND_UTILITIES" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_RENT_AND_UTILITIES.png", + "transaction_code": null, + "transaction_id": "azx7A59X1gc5orV6dPw3soqAjJ3zZysZ5QDMw", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "spectrum.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 13.62, + "authorized_date": "2025-02-26", + "authorized_datetime": null, + "category": [ + "Shops", + "Convenience Stores" + ], + "category_id": "19015000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "VDzYgVXKNDqR19N8oRdzd2Y9Z0wobKZ5OjLMO", + "logo_url": "https://plaid-merchant-logos.plaid.com/quickchek_797.png", + "name": "QuickChek", + "phone_number": null, + "type": "merchant", + "website": "quickchek.com" + } + ], + "date": "2025-02-28", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/quickchek_797.png", + "merchant_entity_id": "VDzYgVXKNDqR19N8oRdzd2Y9Z0wobKZ5OjLMO", + "merchant_name": "QuickChek", + "name": "QUICK CHEK FOOD STR", + "original_description": "QUICK CHEK FOOD STR", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "TRANSPORTATION_GAS", + "primary": "TRANSPORTATION" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_TRANSPORTATION.png", + "transaction_code": null, + "transaction_id": "49qZ4oGbx7T873XDoebnFmlbdW4eDaFJbALPP", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "quickchek.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 59.84, + "authorized_date": "2025-02-23", + "authorized_datetime": null, + "category": [ + "Food and Drink", + "Restaurants" + ], + "category_id": "13005000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "kpvEdVDo86ka3N2mzMbZrED6No8q35k2kpgAa", + "logo_url": "https://plaid-merchant-logos.plaid.com/jasons_deli_532.png", + "name": "Jason's Deli", + "phone_number": null, + "type": "merchant", + "website": "jasonsdeli.com" + } + ], + "date": "2025-02-27", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/jasons_deli_532.png", + "merchant_entity_id": "kpvEdVDo86ka3N2mzMbZrED6No8q35k2kpgAa", + "merchant_name": "Jason's Deli", + "name": "Jason's Deli", + "original_description": "Jason's Deli", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "FOOD_AND_DRINK_RESTAURANT", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "NokPd5gNlzfoV1byzGkls7JMP5G3Q9sy65Qwz", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "jasonsdeli.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 19.71, + "authorized_date": "2025-02-25", + "authorized_datetime": null, + "category": [ + "Travel", + "Taxi" + ], + "category_id": "22016000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "eyg8o776k0QmNgVpAmaQj4WgzW9Qzo6O51gdd", + "logo_url": "https://plaid-merchant-logos.plaid.com/uber_1060.png", + "name": "Uber", + "phone_number": null, + "type": "merchant", + "website": "uber.com" + } + ], + "date": "2025-02-27", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/uber_1060.png", + "merchant_entity_id": "eyg8o776k0QmNgVpAmaQj4WgzW9Qzo6O51gdd", + "merchant_name": "Uber", + "name": "Uber", + "original_description": "UBER *TRIP", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "TRANSPORTATION_TAXIS_AND_RIDE_SHARES", + "primary": "TRANSPORTATION" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_TRANSPORTATION.png", + "transaction_code": null, + "transaction_id": "P8n745oWK3cnXKyW31x9slDB75xZEeio6WARb", + "transaction_type": "special", + "unofficial_currency_code": null, + "website": "uber.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 3.74, + "authorized_date": "2025-02-25", + "authorized_datetime": null, + "category": [ + "Shops", + "Digital Purchase" + ], + "category_id": "19019000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "o2b36aaRWwVwoD70pgje1ML938DADoJ2b9LnY", + "logo_url": "https://plaid-merchant-logos.plaid.com/ebay_310.png", + "name": "eBay", + "phone_number": null, + "type": "merchant", + "website": "ebay.com" + } + ], + "date": "2025-02-27", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/ebay_310.png", + "merchant_entity_id": "o2b36aaRWwVwoD70pgje1ML938DADoJ2b9LnY", + "merchant_name": "eBay", + "name": "eBay", + "original_description": "eBay 012-012-0123", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "GENERAL_MERCHANDISE_ONLINE_MARKETPLACES", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "jjQ7dlP5GyCbNavw7rzpty4MQmk9opi6WLaeo", + "transaction_type": "digital", + "unofficial_currency_code": null, + "website": "ebay.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 18.57, + "authorized_date": "2025-02-26", + "authorized_datetime": null, + "category": [ + "Shops", + "Music, Video and DVD" + ], + "category_id": "19036000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "z3XzRe488pMdo7NAnL44L7rv9L550berky6mK", + "logo_url": "https://plaid-merchant-logos.plaid.com/apple_itunes_1434.png", + "name": "Apple iTunes", + "phone_number": null, + "type": "merchant", + "website": "apple.com/itunes" + } + ], + "date": "2025-02-27", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": "CA", + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/apple_itunes_1434.png", + "merchant_entity_id": "z3XzRe488pMdo7NAnL44L7rv9L550berky6mK", + "merchant_name": "Apple iTunes", + "name": "iTunes", + "original_description": "APL*ITUNES.COM/BILL 012-012-0123 CA", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": "Apple", + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "ENTERTAINMENT_MUSIC_AND_AUDIO", + "primary": "ENTERTAINMENT" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_ENTERTAINMENT.png", + "transaction_code": null, + "transaction_id": "76zXjElb4Zt8RL4DAzM9F9Zwj8GW6DCdJnxqN", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "apple.com/itunes" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 2.82, + "authorized_date": "2025-02-25", + "authorized_datetime": null, + "category": [ + "Food and Drink", + "Restaurants" + ], + "category_id": "13005000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "LOW", + "entity_id": null, + "logo_url": null, + "name": "JR.", + "phone_number": null, + "type": "merchant", + "website": null + } + ], + "date": "2025-02-25", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": "JR.", + "name": "Carl's Jr.", + "original_description": "Carl's Jr.", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "ENTERTAINMENT_SPORTING_EVENTS_AMUSEMENT_PARKS_AND_MUSEUMS", + "primary": "ENTERTAINMENT" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_ENTERTAINMENT.png", + "transaction_code": null, + "transaction_id": "edNwr51XgAcoARVZP68vsdRGzqom9Bur95mGL", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 21.35, + "authorized_date": "2025-02-25", + "authorized_datetime": null, + "category": [ + "Food and Drink", + "Restaurants" + ], + "category_id": "13005000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "rkV1j7R89J27wa1dpjneMge542DA1OqrzMjYJ", + "logo_url": "https://plaid-merchant-logos.plaid.com/outback_steakhouse_710.png", + "name": "Outback Steakhouse", + "phone_number": null, + "type": "merchant", + "website": "outback.com" + } + ], + "date": "2025-02-25", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/outback_steakhouse_710.png", + "merchant_entity_id": "rkV1j7R89J27wa1dpjneMge542DA1OqrzMjYJ", + "merchant_name": "Outback Steakhouse", + "name": "Outback Steakhouse", + "original_description": "OUTBACK 0123", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "FOOD_AND_DRINK_RESTAURANT", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "QEbZN5mMrxTnJ4XRxba9s9paZDyVQGCwm7DVw", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "outback.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 3.56, + "authorized_date": "2025-02-25", + "authorized_datetime": null, + "category": [ + "Shops", + "Lawn and Garden" + ], + "category_id": "19054000", + "check_number": null, + "counterparties": [], + "date": "2025-02-25", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "SKIP SCOOTERS", + "original_description": "SKIP SCOOTERS", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "GENERAL_MERCHANDISE_OTHER_GENERAL_MERCHANDISE", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "ZvlBL5eMPQtnXDV6QrR9sRex8pZayMceqXGBJ", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 5.25, + "authorized_date": "2025-02-25", + "authorized_datetime": null, + "category": [ + "Recreation", + "Gyms and Fitness Centers" + ], + "category_id": "17018000", + "check_number": null, + "counterparties": [], + "date": "2025-02-25", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": "NY", + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "SOULCYCLE-ONLINE", + "original_description": "SOULCYCLE-ONLINE 012-012-0123 NY", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "PERSONAL_CARE_GYMS_AND_FITNESS_CENTERS", + "primary": "PERSONAL_CARE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_PERSONAL_CARE.png", + "transaction_code": null, + "transaction_id": "MpWPx5o4yrcpZvwQrdbMuwXJg8Eze3fL6P1re", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 9.73, + "authorized_date": "2025-02-25", + "authorized_datetime": null, + "category": [ + "Shops", + "Supermarkets and Groceries" + ], + "category_id": "19047000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "Rrp9n4KpLKELA28QR4YMJ8DNJgwy1XOggANqd", + "logo_url": "https://plaid-merchant-logos.plaid.com/harris_teeter_supermarkets_477.png", + "name": "Harris Teeter Supermarkets", + "phone_number": null, + "type": "merchant", + "website": "harristeeter.com" + } + ], + "date": "2025-03-01", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/harris_teeter_supermarkets_477.png", + "merchant_entity_id": "Rrp9n4KpLKELA28QR4YMJ8DNJgwy1XOggANqd", + "merchant_name": "Harris Teeter Supermarkets", + "name": "Harris Teeter Supermarkets, Inc.", + "original_description": "HARRIS TEETER 012", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "FOOD_AND_DRINK_GROCERIES", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "1bXWx1mVzNcQvyzEo34JTXVmegwx94tpjer1m", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "harristeeter.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 12.23, + "authorized_date": "2025-02-25", + "authorized_datetime": null, + "category": [ + "Shops", + "Bookstores" + ], + "category_id": "19009000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "Jm0aKeARgavDqr73LnjVW0KOyJvyOjVdXaRny", + "logo_url": "https://plaid-merchant-logos.plaid.com/amazon_kindle_46.png", + "name": "Amazon Kindle", + "phone_number": null, + "type": "merchant", + "website": "amazon.com/Kindle-eBooks" + } + ], + "date": "2025-03-01", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/amazon_kindle_46.png", + "merchant_entity_id": "Jm0aKeARgavDqr73LnjVW0KOyJvyOjVdXaRny", + "merchant_name": "Amazon Kindle", + "name": "Kindle Svcs", + "original_description": "Kindle Svcs", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "GENERAL_MERCHANDISE_BOOKSTORES_AND_NEWSSTANDS", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "LLEP35oamKfLwWGzKa8mCk6Apgx1W7ukjpE5o", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "amazon.com/Kindle-eBooks" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 357.07, + "authorized_date": "2025-02-26", + "authorized_datetime": null, + "category": [ + "Shops", + "Supermarkets and Groceries" + ], + "category_id": "19047000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "m7r7AXy8EObAKV8QJOME20Y691QB2mAZ7Rb84", + "logo_url": "https://plaid-counterparty-logos.plaid.com/instacart_6.png", + "name": "Instacart", + "phone_number": null, + "type": "marketplace", + "website": "instacart.com" + } + ], + "date": "2025-03-01", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": "Instacart", + "name": "INSTACART HTTPSINSTACARCA", + "original_description": "INSTACART HTTPSINSTACARCA", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "FOOD_AND_DRINK_GROCERIES", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "p1oA739DqKhR4y8Xk1ZWcxJrdLn6oGtpoVzdb", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 68.49, + "authorized_date": "2025-02-26", + "authorized_datetime": null, + "category": [ + "Service", + "Food and Beverage" + ], + "category_id": "18021000", + "check_number": null, + "counterparties": [], + "date": "2025-03-03", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "MEALPAL", + "original_description": "MEALPAL", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "GENERAL_MERCHANDISE_OTHER_GENERAL_MERCHANDISE", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "oMpyjB9Dlqhb4v8gkyn6tbzMpZy5G3ioq7bmv", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 3.37, + "authorized_date": "2025-02-26", + "authorized_datetime": null, + "category": [ + "Food and Drink", + "Restaurants", + "Fast Food" + ], + "category_id": "13005032", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "yD7z7XqNmON4BRvVQa5gbVpRyqeYNY4gpbgkW", + "logo_url": "https://plaid-merchant-logos.plaid.com/raising_canes_chicken_fingers_806.png", + "name": "Raising Cane's Chicken Fingers", + "phone_number": null, + "type": "merchant", + "website": "raisingcanes.com" + } + ], + "date": "2025-03-03", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": "01" + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/raising_canes_chicken_fingers_806.png", + "merchant_entity_id": "yD7z7XqNmON4BRvVQa5gbVpRyqeYNY4gpbgkW", + "merchant_name": "Raising Cane's Chicken Fingers", + "name": "Raising Cane's Chicken Fingers", + "original_description": "RAISING CANE'S #01", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "FOOD_AND_DRINK_FAST_FOOD", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "g4j7B5kXEnCwdLV7NzQPHV59dRBP8WcE8n5J9", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "raisingcanes.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 7.18, + "authorized_date": "2025-02-27", + "authorized_datetime": null, + "category": [ + "Shops", + "Food and Beverage Store" + ], + "category_id": "19025000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "qOk00LRrQ8yVVnoEpJ4KO8mZzXzRRR5wAV7Ng", + "logo_url": "https://plaid-merchant-logos.plaid.com/abc_fine_wine_spirits_1495.png", + "name": "ABC Fine Wine \u0026 Spirits", + "phone_number": null, + "type": "merchant", + "website": "abcfws.com" + } + ], + "date": "2025-03-03", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/abc_fine_wine_spirits_1495.png", + "merchant_entity_id": "qOk00LRrQ8yVVnoEpJ4KO8mZzXzRRR5wAV7Ng", + "merchant_name": "ABC Fine Wine \u0026 Spirits", + "name": "ABC Fine Wine \u0026 Spirits", + "original_description": "ABC FINE WINE/SPIRITS 012", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "HIGH", + "detailed": "FOOD_AND_DRINK_BEER_WINE_AND_LIQUOR", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "8lBZ7kqmNMflM6N1rBb8udzkGwyA5MuW3L8Be", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "abcfws.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 20.45, + "authorized_date": "2025-03-03", + "authorized_datetime": null, + "category": [ + "Food and Drink", + "Restaurants", + "Fast Food" + ], + "category_id": "13005032", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "DDM7W339RYJwyjZ4A7v6O9m5jVooQWMrJoaO4", + "logo_url": "https://plaid-merchant-logos.plaid.com/jimmy_johns_539.png", + "name": "Jimmy John's", + "phone_number": null, + "type": "merchant", + "website": "jimmyjohns.com" + } + ], + "date": "2025-03-03", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": "N112 W16268 Mequon Rd", + "city": "Germantown", + "country": null, + "lat": 43.222084, + "lon": -88.111198, + "postal_code": "53022", + "region": "WI", + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/jimmy_johns_539.png", + "merchant_entity_id": "DDM7W339RYJwyjZ4A7v6O9m5jVooQWMrJoaO4", + "merchant_name": "Jimmy John's", + "name": "Jimmy Johns", + "original_description": "Jimmy Johns - 0123", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "FOOD_AND_DRINK_RESTAURANT", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "EjM3A5vK8mCjLea1GE3mCyom95Prvki4xkmNd", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "jimmyjohns.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 20.41, + "authorized_date": "2025-02-26", + "authorized_datetime": null, + "category": [ + "Travel", + "Gas Stations" + ], + "category_id": "22009000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "pBowAoZJMM9DKR37jvNmzM4yWBBXyMzV2rM3A", + "logo_url": "https://plaid-merchant-logos.plaid.com/costco_235.png", + "name": "Costco", + "phone_number": null, + "type": "merchant", + "website": "costco.com" + } + ], + "date": "2025-03-02", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": "0123" + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/costco_235.png", + "merchant_entity_id": "pBowAoZJMM9DKR37jvNmzM4yWBBXyMzV2rM3A", + "merchant_name": "Costco", + "name": "Costco Gas", + "original_description": "COSTCO GAS #0123", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "TRANSPORTATION_GAS", + "primary": "TRANSPORTATION" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_TRANSPORTATION.png", + "transaction_code": null, + "transaction_id": "Wm6kZ5zMajudb4XV6nyafB8VgNb3znC6Z1jVA", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "costco.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 3.23, + "authorized_date": "2025-03-02", + "authorized_datetime": null, + "category": [ + "Shops", + "Gift and Novelty" + ], + "category_id": "19028000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "0jMeg9zdA10WvR3rr4nY68QN4KYqZR6kK3wqX", + "logo_url": "https://plaid-merchant-logos.plaid.com/party_city_725.png", + "name": "Party City", + "phone_number": null, + "type": "merchant", + "website": "partycity.com" + } + ], + "date": "2025-03-02", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/party_city_725.png", + "merchant_entity_id": "0jMeg9zdA10WvR3rr4nY68QN4KYqZR6kK3wqX", + "merchant_name": "Party City", + "name": "Party City", + "original_description": "PARTY CITY 012", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "GENERAL_MERCHANDISE_GIFTS_AND_NOVELTIES", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "Aa7KgRpVLAhamWlkAvD3s8Dl5KZ7brF9rA5mb", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "partycity.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 140, + "authorized_date": "2025-03-02", + "authorized_datetime": null, + "category": [ + "Travel", + "Airlines and Aviation Services" + ], + "category_id": "22001000", + "check_number": null, + "counterparties": [], + "date": "2025-03-02", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "SWA*EARLYBRD0123456789012", + "original_description": "SWA*EARLYBRD0123456789012", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "GENERAL_MERCHANDISE_OTHER_GENERAL_MERCHANDISE", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "GeLdq5ozW9Te8Jd4MGvPT84MZDwPW7F6MPodz", + "transaction_type": "special", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 7.3, + "authorized_date": "2025-02-27", + "authorized_datetime": null, + "category": [ + "Shops", + "Clothing and Accessories", + "Shoe Store" + ], + "category_id": "19012003", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "QJo7QMZXjwzqmkMpb3v9LQjRREQZ3Da6dMmQj", + "logo_url": "https://plaid-merchant-logos.plaid.com/payless_power_1772.png", + "name": "Payless Power", + "phone_number": null, + "type": "merchant", + "website": "paylesspower.com" + } + ], + "date": "2025-03-04", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/payless_power_1772.png", + "merchant_entity_id": "QJo7QMZXjwzqmkMpb3v9LQjRREQZ3Da6dMmQj", + "merchant_name": "Payless Power", + "name": "PAYLESS SHOESO01234567", + "original_description": "PAYLESS SHOESO01234567", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "HIGH", + "detailed": "RENT_AND_UTILITIES_GAS_AND_ELECTRICITY", + "primary": "RENT_AND_UTILITIES" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_RENT_AND_UTILITIES.png", + "transaction_code": null, + "transaction_id": "nZLAPzwDylibQdva8jeDtG1eMJoEWbtAlWQ41", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "paylesspower.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 20.07, + "authorized_date": "2025-03-03", + "authorized_datetime": null, + "category": [ + "Travel", + "Gas Stations" + ], + "category_id": "22009000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "gKVEwLow3LyK4qbbvKn6oLvBmXXLA0y79YBBz", + "logo_url": "https://plaid-merchant-logos.plaid.com/loves_travel_stops_590.png", + "name": "Love's Travel Stops", + "phone_number": null, + "type": "merchant", + "website": "loves.com" + } + ], + "date": "2025-03-04", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/loves_travel_stops_590.png", + "merchant_entity_id": "gKVEwLow3LyK4qbbvKn6oLvBmXXLA0y79YBBz", + "merchant_name": "Love's Travel Stops", + "name": "LOVE S TRAVEL 01234567", + "original_description": "LOVE S TRAVEL 01234567", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "TRANSPORTATION_GAS", + "primary": "TRANSPORTATION" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_TRANSPORTATION.png", + "transaction_code": null, + "transaction_id": "bBdylJgXLku1ryVNQ9XehxReg34KG7tmbZ7eD", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "loves.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 420.63, + "authorized_date": "2025-03-03", + "authorized_datetime": null, + "category": [ + "Travel", + "Lodging", + "Hotels and Motels" + ], + "category_id": "22012003", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "Qm3r3JjDK18jY9De5o1qANrVEyez6Kwpz8bKR", + "logo_url": "https://plaid-merchant-logos.plaid.com/marriott_611.png", + "name": "Marriott", + "phone_number": null, + "type": "merchant", + "website": "marriott.com" + } + ], + "date": "2025-03-04", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/marriott_611.png", + "merchant_entity_id": "Qm3r3JjDK18jY9De5o1qANrVEyez6Kwpz8bKR", + "merchant_name": "Marriott", + "name": "Marriott International", + "original_description": "COURTYARD BY MARRIOTT", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "TRAVEL_LODGING", + "primary": "TRAVEL" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_TRAVEL.png", + "transaction_code": null, + "transaction_id": "mQ1ANkbDmRfb4yvJ6npMt6LmBj1NyEcgydXl1", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "marriott.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 19.74, + "authorized_date": "2025-03-04", + "authorized_datetime": null, + "category": [ + "Travel", + "Gas Stations" + ], + "category_id": "22009000", + "check_number": null, + "counterparties": [], + "date": "2025-03-04", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "01 - UNITED OIL 01", + "original_description": "01 - UNITED OIL 01", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "GENERAL_MERCHANDISE_OTHER_GENERAL_MERCHANDISE", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "yGmrge5K4NFpDQweBL4yuPM35rxdXZi46XwZj", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 1.13, + "authorized_date": "2025-03-02", + "authorized_datetime": null, + "category": [ + "Service", + "Automotive", + "Car Wash and Detail" + ], + "category_id": "18006004", + "check_number": null, + "counterparties": [], + "date": "2025-03-05", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "AUTO AIR VACUUM SERVICE", + "original_description": "AUTO AIR VACUUM SERVICE", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "GENERAL_SERVICES_AUTOMOTIVE", + "primary": "GENERAL_SERVICES" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_SERVICES.png", + "transaction_code": null, + "transaction_id": "9q36eAK7P1iqGMPbA34yUAZV7NmLojI4xQg3j", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 99.51, + "authorized_date": "2025-03-04", + "authorized_datetime": null, + "category": [ + "Recreation", + "Arts and Entertainment" + ], + "category_id": "17001000", + "check_number": null, + "counterparties": [], + "date": "2025-03-05", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "TFI*TICKETFLY EVENTS", + "original_description": "TFI*TICKETFLY EVENTS", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "ENTERTAINMENT_SPORTING_EVENTS_AMUSEMENT_PARKS_AND_MUSEUMS", + "primary": "ENTERTAINMENT" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_ENTERTAINMENT.png", + "transaction_code": null, + "transaction_id": "vEGlLPADxdT7rVvMKoxpsbozq3NxkGiq6k1PE", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 27.83, + "authorized_date": "2025-03-05", + "authorized_datetime": null, + "category": [ + "Travel", + "Gas Stations" + ], + "category_id": "22009000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "LOW", + "entity_id": null, + "logo_url": null, + "name": "United Oil", + "phone_number": null, + "type": "merchant", + "website": null + } + ], + "date": "2025-03-05", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": "United Oil", + "name": "01 - UNITED OIL 012", + "original_description": "01 - UNITED OIL 012", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "GENERAL_MERCHANDISE_OTHER_GENERAL_MERCHANDISE", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "RWmGP5oMzdtreRojdm9zi5wEvmqNVpHapbALW", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 34.63, + "authorized_date": "2025-03-03", + "authorized_datetime": null, + "category": [ + "Shops", + "Computers and Electronics", + "Video Games" + ], + "category_id": "19013001", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "3oRMK5OMq55E6LeoK6JeeEQwv1Yv4e55YEVWX", + "logo_url": "https://plaid-merchant-logos.plaid.com/sony_playstation_927.png", + "name": "Sony Playstation", + "phone_number": null, + "type": "merchant", + "website": "playstation.com" + } + ], + "date": "2025-03-06", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": "CA", + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/sony_playstation_927.png", + "merchant_entity_id": "3oRMK5OMq55E6LeoK6JeeEQwv1Yv4e55YEVWX", + "merchant_name": "Sony Playstation", + "name": "PLAYSTATION NETWORK", + "original_description": "PLAYSTATION NETWORK 012-012-0123 CA", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "ENTERTAINMENT_VIDEO_GAMES", + "primary": "ENTERTAINMENT" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_ENTERTAINMENT.png", + "transaction_code": null, + "transaction_id": "6RrvP8d6aQt8RdaEAwWkFbyD6lRWjLi8DXeqL", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "playstation.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 14.46, + "authorized_date": "2025-03-03", + "authorized_datetime": null, + "category": [ + "Shops", + "Digital Purchase" + ], + "category_id": "19019000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "dqvQMVay4MVNzrVp0OaZ2qKeYN5mEb1eoV6Mp", + "logo_url": "https://plaid-merchant-logos.plaid.com/groupon_459.png", + "name": "Groupon", + "phone_number": null, + "type": "merchant", + "website": "groupon.com" + } + ], + "date": "2025-03-06", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/groupon_459.png", + "merchant_entity_id": "dqvQMVay4MVNzrVp0OaZ2qKeYN5mEb1eoV6Mp", + "merchant_name": "Groupon", + "name": "Groupon", + "original_description": "GROUPON INC", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "GENERAL_MERCHANDISE_OTHER_GENERAL_MERCHANDISE", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "XyXrM5BG47fmPpGD7694U6qPyJX8decbKnLrn", + "transaction_type": "digital", + "unofficial_currency_code": null, + "website": "groupon.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 1786.58, + "authorized_date": "2025-03-04", + "authorized_datetime": null, + "category": [ + "Shops", + "Hardware Store" + ], + "category_id": "19030000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "OvD4k3VrjJYXoar5MNKZQEd333BA1oK8JA8v6", + "logo_url": "https://plaid-merchant-logos.plaid.com/lowes_591.png", + "name": "Lowe's", + "phone_number": null, + "type": "merchant", + "website": "lowes.com" + } + ], + "date": "2025-03-07", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": "012345" + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/lowes_591.png", + "merchant_entity_id": "OvD4k3VrjJYXoar5MNKZQEd333BA1oK8JA8v6", + "merchant_name": "Lowe's", + "name": "Lowe's Home Improvement", + "original_description": "LOWES #012345", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "HOME_IMPROVEMENT_HARDWARE", + "primary": "HOME_IMPROVEMENT" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_HOME_IMPROVEMENT.png", + "transaction_code": null, + "transaction_id": "DPZBW5VqgbFP764zbpqmSvjWJDPg3bt3WaJrQ", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "lowes.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 36.95, + "authorized_date": "2025-03-07", + "authorized_datetime": null, + "category": [ + "Shops", + "Warehouses and Wholesale Stores" + ], + "category_id": "19051000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "pBowAoZJMM9DKR37jvNmzM4yWBBXyMzV2rM3A", + "logo_url": "https://plaid-merchant-logos.plaid.com/costco_235.png", + "name": "Costco", + "phone_number": null, + "type": "merchant", + "website": "costco.com" + } + ], + "date": "2025-03-10", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/costco_235.png", + "merchant_entity_id": "pBowAoZJMM9DKR37jvNmzM4yWBBXyMzV2rM3A", + "merchant_name": "Costco", + "name": "Costco", + "original_description": "WWW COSTCO COM", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "GENERAL_MERCHANDISE_SUPERSTORES", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "VbRqQ5rLdPcn6RqVP4QdsXJG18VQ3Et9gPEvE", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "costco.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 5.25, + "authorized_date": "2025-03-07", + "authorized_datetime": null, + "category": [ + "Shops", + "Supermarkets and Groceries" + ], + "category_id": "19047000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "DgqEw70j77DbJqybaK2rmMq6Zzwjg68J7B7zo", + "logo_url": "https://plaid-merchant-logos.plaid.com/safeway_853.png", + "name": "Safeway", + "phone_number": null, + "type": "merchant", + "website": "safeway.com" + } + ], + "date": "2025-03-12", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": "012" + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/safeway_853.png", + "merchant_entity_id": "DgqEw70j77DbJqybaK2rmMq6Zzwjg68J7B7zo", + "merchant_name": "Safeway", + "name": "Safeway", + "original_description": "SAFEWAY #012", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "FOOD_AND_DRINK_GROCERIES", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "wWnqpjJldatQbrvJydjETKPDB3J4E9cPZoma1", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "safeway.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 169.75, + "authorized_date": "2025-03-08", + "authorized_datetime": null, + "category": [ + "Shops", + "Department Stores" + ], + "category_id": "19018000", + "check_number": null, + "counterparties": [], + "date": "2025-03-12", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "JC Penney", + "original_description": "JC Penney", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "GENERAL_MERCHANDISE_OTHER_GENERAL_MERCHANDISE", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "5vK5Ng6bdetkX4dDA6NbSqZK7QDoXMu5K78EX", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 65.51, + "authorized_date": "2025-03-12", + "authorized_datetime": null, + "category": [ + "Shops", + "Clothing and Accessories" + ], + "category_id": "19012000", + "check_number": null, + "counterparties": [], + "date": "2025-03-12", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": "01" + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "TILLYS #01", + "original_description": "TILLYS #01", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "GENERAL_MERCHANDISE_OTHER_GENERAL_MERCHANDISE", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "JMgVz59xnlhM1pyKljkeUAXZgLJDw6IB6gkGM", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 131.6, + "authorized_date": "2025-03-08", + "authorized_datetime": null, + "category": [ + "Shops", + "Clothing and Accessories" + ], + "category_id": "19012000", + "check_number": null, + "counterparties": [], + "date": "2025-03-08", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "Zappos.com", + "original_description": "ZAP*ZAPPOS.COM", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "GENERAL_MERCHANDISE_OTHER_GENERAL_MERCHANDISE", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "k7ZAaqkDn9IeLWvPMD3QTQmwjAae61sL6do36", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 18.75, + "authorized_date": "2025-03-08", + "authorized_datetime": null, + "category": [ + "Travel", + "Airlines and Aviation Services" + ], + "category_id": "22001000", + "check_number": null, + "counterparties": [], + "date": "2025-03-08", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "Alaska Airlines", + "original_description": "ALASKA AIR 0123456789012", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "GENERAL_MERCHANDISE_OTHER_GENERAL_MERCHANDISE", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "leMA4KdDbvT9Rj8aDw3ASlqwZmdvGDipodR53", + "transaction_type": "special", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 21.19, + "authorized_date": "2025-03-08", + "authorized_datetime": null, + "category": [ + "Shops", + "Clothing and Accessories", + "Women's Store" + ], + "category_id": "19012001", + "check_number": null, + "counterparties": [], + "date": "2025-03-08", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "MADEWELL.COM", + "original_description": "MADEWELL.COM", + "payment_channel": "online", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "GENERAL_MERCHANDISE_OTHER_GENERAL_MERCHANDISE", + "primary": "GENERAL_MERCHANDISE" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_GENERAL_MERCHANDISE.png", + "transaction_code": null, + "transaction_id": "qLgAex9DKrfNjEv5oDMaFebVapMmWGhgr7R5z", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 45.85, + "authorized_date": "2025-03-08", + "authorized_datetime": null, + "category": [ + "Travel", + "Public Transportation Services" + ], + "category_id": "22014000", + "check_number": null, + "counterparties": [], + "date": "2025-03-09", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": null, + "merchant_entity_id": null, + "merchant_name": null, + "name": "MTA*METROCARD MACHINE", + "original_description": "MTA*METROCARD MACHINE", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "LOW", + "detailed": "TRANSPORTATION_PUBLIC_TRANSIT", + "primary": "TRANSPORTATION" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_TRANSPORTATION.png", + "transaction_code": null, + "transaction_id": "K18PB5Zdbqh17BVgqbRQhyoaA5z1deiRpA1jv", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": null + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 21.41, + "authorized_date": "2025-03-08", + "authorized_datetime": null, + "category": [ + "Shops", + "Food and Beverage Store" + ], + "category_id": "19025000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "wVqOb79B01Ebd2ZXeeYjozWb3eW6AXXm06Nzy", + "logo_url": "https://plaid-merchant-logos.plaid.com/bevmo_108.png", + "name": "BevMo!", + "phone_number": null, + "type": "merchant", + "website": "bevmo.com" + } + ], + "date": "2025-03-11", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": "01" + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/bevmo_108.png", + "merchant_entity_id": "wVqOb79B01Ebd2ZXeeYjozWb3eW6AXXm06Nzy", + "merchant_name": "BevMo!", + "name": "BEVERAGES \u0026 MORE #01", + "original_description": "BEVERAGES \u0026 MORE #01", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "HIGH", + "detailed": "FOOD_AND_DRINK_BEER_WINE_AND_LIQUOR", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "rp8wQd9Drzc7XxVRZbBNsbxP5JMjG9i7J61X5", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "bevmo.com" + }, + { + "account_id": "ZvlBL5eMPQtnXDV6QrR9sReNVVz1XAieagDPz", + "account_owner": null, + "amount": 8.36, + "authorized_date": "2025-03-08", + "authorized_datetime": null, + "category": [ + "Shops", + "Supermarkets and Groceries" + ], + "category_id": "19047000", + "check_number": null, + "counterparties": [ + { + "confidence_level": "VERY_HIGH", + "entity_id": "Wwj2nkj2Ez5b4mVQzWmy8Q0a8YA0LwEaojdZV", + "logo_url": "https://plaid-merchant-logos.plaid.com/albertsons_34.png", + "name": "Albertsons", + "phone_number": null, + "type": "merchant", + "website": "albertsons.com" + } + ], + "date": "2025-03-13", + "datetime": null, + "iso_currency_code": "USD", + "location": { + "address": null, + "city": null, + "country": null, + "lat": null, + "lon": null, + "postal_code": null, + "region": null, + "store_number": null + }, + "logo_url": "https://plaid-merchant-logos.plaid.com/albertsons_34.png", + "merchant_entity_id": "Wwj2nkj2Ez5b4mVQzWmy8Q0a8YA0LwEaojdZV", + "merchant_name": "Albertsons", + "name": "Albertsons", + "original_description": "ALBERTSONS STORE 0123", + "payment_channel": "in store", + "payment_meta": { + "by_order_of": null, + "payee": null, + "payer": null, + "payment_method": null, + "payment_processor": null, + "ppd_id": null, + "reason": null, + "reference_number": null + }, + "pending": false, + "pending_transaction_id": null, + "personal_finance_category": { + "confidence_level": "VERY_HIGH", + "detailed": "FOOD_AND_DRINK_GROCERIES", + "primary": "FOOD_AND_DRINK" + }, + "personal_finance_category_icon_url": "https://plaid-category-icons.plaid.com/PFC_FOOD_AND_DRINK.png", + "transaction_code": null, + "transaction_id": "zkyz8Q9rNPCXgWQeyj9pIeqPWlmJpdhlNLQK9", + "transaction_type": "place", + "unofficial_currency_code": null, + "website": "albertsons.com" + } + ], + "has_more": false, + "modified": [], + "next_cursor": "CAESJXpreXo4UTlyTlBDWGdXUWV5ajlwSWVxUFdsbUpwZGhsTkxRSzkaDAian63BBhDo2pCgAyIMCJqfrcEGEOjakKADKgwImp+twQYQ6NqQoAM=", + "removed": [], + "request_id": "J5rBJVxCzSHaeAe", + "transactions_update_status": "HISTORICAL_UPDATE_COMPLETE" + } + recorded_at: Mon, 19 May 2025 15:35:05 GMT +- request: + method: post + uri: https://sandbox.plaid.com/transactions/sync + body: + encoding: UTF-8 + string: '{"access_token":"access-sandbox-d531d3c9-8520-43ca-9e58-5b70b79fd1d4","cursor":"CAESJXpreXo4UTlyTlBDWGdXUWV5ajlwSWVxUFdsbUpwZGhsTkxRSzkaDAian63BBhDo2pCgAyIMCJqfrcEGEOjakKADKgwImp+twQYQ6NqQoAM=","count":100,"options":{"include_original_description":true}}' + headers: + Content-Type: + - application/json + User-Agent: + - Plaid Ruby v38.0.0 + Accept: + - application/json + Plaid-Client-Id: + - "" + Plaid-Version: + - '2020-09-14' + Plaid-Secret: + - "" + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + response: + status: + code: 200 + message: OK + headers: + Server: + - nginx + Date: + - Mon, 19 May 2025 15:35:05 GMT + Content-Type: + - application/json; charset=utf-8 + Content-Length: + - '321' + Connection: + - keep-alive + Plaid-Version: + - '2020-09-14' + Vary: + - Accept-Encoding + X-Envoy-Upstream-Service-Time: + - '271' X-Envoy-Decorator-Operation: - default.svc-apiv2:8080/* Strict-Transport-Security: @@ -126,10 +96000,10 @@ http_interactions: "added": [], "has_more": false, "modified": [], - "next_cursor": "", + "next_cursor": "CAESJXpreXo4UTlyTlBDWGdXUWV5ajlwSWVxUFdsbUpwZGhsTkxRSzkaDAian63BBhDo2pCgAyIMCJqfrcEGEOjakKADKgwImp+twQYQ6NqQoAM=", "removed": [], - "request_id": "KT5sHHvcrYWdNvs", - "transactions_update_status": "NOT_READY" + "request_id": "Gbx8GdsJTC2V8sf", + "transactions_update_status": "HISTORICAL_UPDATE_COMPLETE" } - recorded_at: Mon, 19 May 2025 13:54:31 GMT + recorded_at: Mon, 19 May 2025 15:35:05 GMT recorded_with: VCR 6.3.1 diff --git a/test/vcr_cassettes/plaid/link_token.yml b/test/vcr_cassettes/plaid/link_token.yml index 0c93e198..707187fe 100644 --- a/test/vcr_cassettes/plaid/link_token.yml +++ b/test/vcr_cassettes/plaid/link_token.yml @@ -29,7 +29,7 @@ http_interactions: Server: - nginx Date: - - Mon, 19 May 2025 12:22:57 GMT + - Mon, 19 May 2025 15:34:40 GMT Content-Type: - application/json; charset=utf-8 Content-Length: @@ -41,7 +41,7 @@ http_interactions: Vary: - Accept-Encoding X-Envoy-Upstream-Service-Time: - - '51' + - '74' X-Envoy-Decorator-Operation: - default.svc-apiv2:8080/* Strict-Transport-Security: @@ -56,9 +56,9 @@ http_interactions: encoding: ASCII-8BIT string: |- { - "expiration": "2025-05-19T16:22:58Z", - "link_token": "link-sandbox-f8d1c8ab-86c9-4f6e-9136-8e8fce0b078a", - "request_id": "JOT5vEl1srPSLI4" + "expiration": "2025-05-19T19:34:40Z", + "link_token": "link-sandbox-3b445f38-abc0-4781-b6d5-271a7b1089d4", + "request_id": "QtzDCRM39QhsuHF" } - recorded_at: Mon, 19 May 2025 12:22:57 GMT + recorded_at: Mon, 19 May 2025 15:34:40 GMT recorded_with: VCR 6.3.1