mirror of
https://github.com/datahub-project/datahub.git
synced 2025-07-14 12:41:30 +00:00
25 lines
1.2 KiB
JavaScript
25 lines
1.2 KiB
JavaScript
const datasetClassifiers = {
|
|
CONNECTIONS_FOLLOWERS_FOLLOWING: 'Connections + Followers + Following',
|
|
PROFILE_DATA: 'Profile Data',
|
|
MESSAGING_DATA: 'Messaging Data (Metadata + Content)',
|
|
THIRD_PARTY_INTEGRATIONS: 'Third Party Integrations In Use',
|
|
ACTIVITY: 'Activity (Newsfeed Posts + Shares + Likes)',
|
|
JOB_APPLICATION_FLOW_DATA: 'Job Application Flow Data (Job Application + AWLI + Resumes + Application Answers)',
|
|
ENTERPRISE_PRODUCT_DATA: 'Enterprise Product Data',
|
|
ACCOUNT_STATUS: 'Account Status',
|
|
ADDRESS_BOOK_IMPORT_DATA: 'Address Book Import Data',
|
|
MICROSOFT_DATA: 'Data from Microsoft',
|
|
SUBSIDIARY_DATA: 'Data from companies LinkedIn acquired (Lynda, Slideshare, Connectifier, Bizo, etcetera)',
|
|
THIRD_PARTY_DATA: 'Data from Third-party Integrations',
|
|
DEVICE_DATA: 'Device Data',
|
|
SEARCH_HISTORY: 'Search History',
|
|
COURSE_VIEWING_HISTORY: 'Course Viewing History',
|
|
WVMP: "Who's Viewed My Profile",
|
|
PROFILE_VIEWS_BY_ME: 'Profile Views (by me)',
|
|
ADVERTISING_DATA: 'Advertising related (LMS) Data',
|
|
USAGE_ERROR_CONNECTIVITY_DATA: 'Usage, Error Reporting, Connectivity Data',
|
|
OTHER_CLICKSTREAM_BROWSING_DATA: 'Other Clickstream Data + Browsing history'
|
|
};
|
|
|
|
export { datasetClassifiers };
|