-
Notifications
You must be signed in to change notification settings - Fork 72
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
1193 saas connector fullstory (#1821)
- Loading branch information
HamzaWaseemOnBench
authored
Nov 22, 2022
1 parent
af6036d
commit 0045404
Showing
10 changed files
with
559 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
saas_config: | ||
fides_key: <instance_fides_key> | ||
name: Fullstory SaaS Config | ||
type: fullstory | ||
description: A sample schema representing the Fullstory connector for Fides | ||
version: 0.0.1 | ||
|
||
connector_params: | ||
- name: domain | ||
- name: api_key | ||
|
||
external_references: | ||
- name: fullstory_user_id | ||
label: Fullstory User ID | ||
description: Dataset reference to the location of Fullstory user IDs | ||
|
||
client_config: | ||
protocol: https | ||
host: <domain> | ||
authentication: | ||
strategy: api_key | ||
configuration: | ||
headers: | ||
- name: Authorization | ||
value: Basic <api_key> | ||
|
||
test_request: | ||
method: GET | ||
path: /operations/v1 | ||
|
||
endpoints: | ||
- name: user | ||
requests: | ||
read: | ||
method: GET | ||
path: /users/v1/individual/<user_id> | ||
param_values: | ||
- name: user_id | ||
references: | ||
- fullstory_user_id | ||
update: | ||
method: POST | ||
path: /users/v1/individual/<user_id>/customvars | ||
body: | | ||
{ | ||
<masked_object_fields> | ||
} | ||
param_values: | ||
- name: user_id | ||
references: | ||
- dataset: <instance_fides_key> | ||
field: user.uid | ||
direction: from |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
dataset: | ||
- fides_key: <instance_fides_key> | ||
name: Fullstory Dataset | ||
description: A sample dataset representing the Fullstory connector for Fides | ||
collections: | ||
- name: user | ||
fields: | ||
- name: uid | ||
data_categories: [user.unique_id] | ||
fidesops_meta: | ||
data_type: string | ||
primary_key: True | ||
- name: displayName | ||
data_categories: [user.name] | ||
fidesops_meta: | ||
data_type: string | ||
- name: email | ||
data_categories: [user.contact.email] | ||
fidesops_meta: | ||
data_type: string | ||
- name: numSessions | ||
data_categories: [system.operations] | ||
fidesops_meta: | ||
data_type: integer | ||
- name: firstSeen | ||
data_categories: [system.operations] | ||
fidesops_meta: | ||
data_type: string | ||
- name: lastSeen | ||
data_categories: [system.operations] | ||
fidesops_meta: | ||
data_type: string | ||
- name: existingOperation | ||
data_categories: [system.operations] | ||
fidesops_meta: | ||
data_type: string |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
CREATE TABLE public.fullstory_users ( | ||
email CHARACTER VARYING(100) PRIMARY KEY, | ||
fullstory_user_id CHARACTER VARYING(100) | ||
); | ||
|
||
INSERT INTO public.fullstory_users VALUES | ||
('[email protected]', '1234') |
Oops, something went wrong.