Created
January 19, 2017 14:46
-
-
Save Synchro/2c6186203c15dc2bd14bd2c7f6396583 to your computer and use it in GitHub Desktop.
Salesforce prefix to entity name mapping
This file contains hidden or 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
| <?php | |
| /** | |
| * Mapping array for salesforce ID prefixes to entity name & description. | |
| * @link http://www.fishofprey.com/2011/09/obscure-salesforce-object-key-prefixes.html | |
| * Convert copy/paste from that page with: | |
| * Search: '^([a-zA-Z0-9]+)[ \t]+(\w+)[ \t]*(.*)$' | |
| * Replace: ' '$1' => ['$2', '$3'],' | |
| * @author Marcus Bointon <[email protected]> | |
| */ | |
| $prefixes = [ | |
| '000' => ['', 'Empty Key'], | |
| '001' => ['Account', ''], | |
| '002' => ['Note', ''], | |
| '003' => ['Contact', ''], | |
| '005' => ['User', ''], | |
| '006' => ['Opportunity', ''], | |
| '007' => ['Activity', ''], | |
| '008' => ['OpportunityHistory', ''], | |
| '00a' => ['CaseComment', 'or IdeaComment'], | |
| '00A' => ['FORECAST_ITEM', ''], | |
| '00a' => ['IdeaComment', 'or CaseComment'], | |
| '00B' => ['ListView', ''], | |
| '00b' => ['WebLink', 'Custom Button or Link - CUSTOM_RESOURCE_LINK'], | |
| '00C' => ['DELETE_EVENT', ''], | |
| '00c' => ['Training', ''], | |
| '00D' => ['Organization', ''], | |
| '00e' => ['Profile', ''], | |
| '00E' => ['UserRole', ''], | |
| '00f' => ['MH_BLUESHEET', ''], | |
| '00F' => ['QUEUE', 'TDC'], | |
| '00G' => ['Group', ''], | |
| '00g' => ['MH_GOLDSHEET', ''], | |
| '00h' => ['Layout', 'Page Layout'], | |
| '00I' => ['Partner', ''], | |
| '00i' => ['Pricebook', ''], | |
| '00J' => ['OpportunityCompetitor', ''], | |
| '00j' => ['Product', 'PRICEBOOK_ENTRY_MAPPING'], | |
| '00K' => ['OpportunityContactRole', ''], | |
| '00k' => ['OpportunityLineItem', ''], | |
| '00l' => ['Folder', ''], | |
| '00m' => ['EMAIL_ATTACHMENT_LOOKUP', ''], | |
| '00N' => ['CustomFieldDefinition', 'Setup > Create > Objects > [Your Object] > [Your Field]'], | |
| '00n' => ['EMAIL_ATTACHMENT_ARCHIVE', ''], | |
| '00o' => ['OpportunityLineItemSchedule', 'Represents information about the quantity, revenue distribution, and delivery dates for a particular OpportunityLineItem.'], | |
| '00O' => ['Report', ''], | |
| '00P' => ['Attachment', ''], | |
| '00p' => ['UserTeamMember', ''], | |
| '00Q' => ['Lead', ''], | |
| '00q' => [ | |
| 'OpportunityTeamMember', | |
| 'This object is available only in organizations that have enabled team selling.' | |
| ], | |
| '00r' => ['AccountShare', ''], | |
| '00s' => ['AccountOwnerSharingRule', ''], | |
| '00S' => ['ImportQueue', ''], | |
| '00t' => ['OpportunityShare', ''], | |
| '00T' => ['Task', ''], | |
| '00U' => ['Event', ''], | |
| '00u' => ['OpportunityOwnerSharingRule', ''], | |
| '00v' => ['CampaignMember', ''], | |
| '00w' => ['PAYMENT_APPLICATION', ''], | |
| '00x' => ['BILLED_PRODUCT', ''], | |
| '00X' => ['EmailTemplate', ''], | |
| '00Y' => ['EmailTemp', ''], | |
| '00y' => ['PURCHASE_RULE', ''], | |
| '00z' => ['PURCHASE_RULE_ENTRY', ''], | |
| '010' => ['CaseSolution', ''], | |
| '011' => ['GroupMember', ''], | |
| '012' => ['RecordType', ''], | |
| '013' => ['RecordTypePicklist', ''], | |
| '014' => ['ProfileRecordType', ''], | |
| '015' => ['Document', ''], | |
| '016' => ['BrandTemplate', '(Letterhead)'], | |
| '017' => ['Entity', 'History'], | |
| '018' => ['EmailStatus', ''], | |
| '019' => ['BusinessProcess', ''], | |
| '01A' => ['BusinessProcessPicklist', ''], | |
| '01a' => ['DashboardComponent', ''], | |
| '01B' => ['LayoutSection', ''], | |
| '01b' => ['ListViewCriterion', ''], | |
| '01C' => ['LayoutItem', ''], | |
| '01c' => ['ListViewDisplayColumn', ''], | |
| '01d' => ['FOLDER_GROUPS', ''], | |
| '01D' => ['UserAccountTeamMember', ''], | |
| '01e' => ['PicklistSet', ''], | |
| '01f' => ['WEBEX_MEETING', ''], | |
| '01g' => [ | |
| 'API_QUERY', | |
| 'The first part of the QueryLocatory returned for an API SOQL query that needs to be paged.' | |
| ], | |
| '01G' => ['ProfileLayout', ''], | |
| '01H' => ['MailmergeTemplate', ''], | |
| '01h' => ['Translation', ''], | |
| '01I' => ['CustomEntityDefinition', 'a.k.a. External Object'], | |
| '01i' => ['TRANSLATION_USER', ''], | |
| '01j' => ['LocalizedValue', ''], | |
| '01J' => ['PicklistMaster', ''], | |
| '01k' => ['FieldPermissions', 'a.k.a. PROFILE_FLS_ITEM'], | |
| '01l' => ['ActionResponse', ''], | |
| '01L' => ['CURRENCY_TYPE', ''], | |
| '01M' => ['ACC_TEAM_MEMBER', ''], | |
| '01m' => ['BusinessHours', ''], | |
| '01n' => ['CaseShare', ''], | |
| '01N' => ['Scontrol', ''], | |
| '01o' => ['LeadShare', ''], | |
| '01O' => ['USER_UI_CONFIGURATION', ''], | |
| '01p' => ['ApexClass', ''], | |
| '01P' => ['ProfileTabConfiguration', '/ PermissionSetTabSetting'], | |
| '01q' => ['ApexTrigger', ''], | |
| '01Q' => ['WorkflowRule', 'AssignmentRule'], | |
| '01r' => ['CustomTabDefinition', 'Visualforce Tab'], | |
| '01R' => ['RuleFilter', ''], | |
| '01s' => ['Pricebook2', ''], | |
| '01S' => ['RuleFilterItem', ''], | |
| '01t' => ['Product2', ''], | |
| '01T' => ['RuleFilterAction', ''], | |
| '01U' => ['ActionAssignEscalate', ''], | |
| '01u' => ['PricebookEntry', ''], | |
| '01V' => ['ActionTask', ''], | |
| '01v' => ['PricebookShare', ''], | |
| '01W' => ['ActionEmail', ''], | |
| '01w' => ['OpportunityUpdateReminder', ''], | |
| '01X' => ['ActionEmailRecipient', ''], | |
| '01x' => ['OPP_UPDATE_REMINDER_STATS', ''], | |
| '01Y' => ['CampaignMemberStatus', ''], | |
| '01y' => ['CaseOwnerSharingRule', ''], | |
| '01z' => ['CaseEscalation', ''], | |
| '01Z' => ['Dashboard', ''], | |
| '020' => ['EventAttendee', '/ ExternalIdMap'], | |
| '021' => ['QUANTITY_FORECAST', ''], | |
| '022' => ['FiscalYearSettings', ''], | |
| '023' => ['Calendar', ''], | |
| '024' => ['CalendarShare', ''], | |
| '025' => ['ListLayoutItem', ''], | |
| '026' => ['Period', ''], | |
| '027' => ['REVENUE_FORECAST', ''], | |
| '028' => ['OPPORTUNITY_OVERRIDE', ''], | |
| '029' => ['LINEITEM_OVERRIDE', ''], | |
| '02a' => ['ContractContactRole', ''], | |
| '02A' => ['LeadOwnerSharingRule', ''], | |
| '02b' => ['ComponentResourceLink', ''], | |
| '02B' => ['LabelDefinition', ''], | |
| '02C' => ['LabelData', ''], | |
| '02c' => ['Sharing', 'Rule'], | |
| '02D' => ['CaseHistory2', ''], | |
| '02d' => ['DIVISION', ''], | |
| '02e' => ['DIVISION_WORKFLOW_RULE', ''], | |
| '02E' => ['HELP_SETTING', ''], | |
| '02F' => ['CustomFieldMap', ''], | |
| '02f' => ['DelegateGroup', ''], | |
| '02g' => ['DelegateGroupMember', ''], | |
| '02G' => ['TenantSecret', ''], | |
| '02h' => ['DelegateGroupGrant', ''], | |
| '02H' => ['MH_GOLD_PROGRAM', ''], | |
| '02i' => ['Asset', ''], | |
| '02I' => ['MH_GOLD_INFORMATION', ''], | |
| '02j' => ['PROFILE_ENTITY_PERMISSIONS', '/ CategoryAccess'], | |
| '02J' => ['RecommendationAudience', '/ MH_GOLD_CONTACT'], | |
| '02k' => ['ListLayout', ''], | |
| '02K' => ['MH_GOLD_ACTION', ''], | |
| '02L' => ['MH_CUSTOMER_CRITERION', ''], | |
| '02l' => ['OUTBOUND_QUEUE', ''], | |
| '02m' => ['CustomIndex', ''], | |
| '02M' => ['MH_GREENSHEET', ''], | |
| '02n' => ['CategoryNode', ''], | |
| '02N' => ['ContentLogMetricsByOrg', '/ MH_GREEN_GIVE_INFO'], | |
| '02o' => ['CategoryData', ''], | |
| '02O' => ['MH_GREEN_GET_INFO', ''], | |
| '02p' => ['DivTransferEvent', ''], | |
| '02P' => ['MH_CONTACT_ROLE', ''], | |
| '02q' => ['LayoutItemColumn', ''], | |
| '02Q' => ['MH_INFORMATION', ''], | |
| '02r' => ['OpportunityAlert', ''], | |
| '02R' => ['USER_PREFERENCE2', ''], | |
| '02s' => ['EmailMessage', ''], | |
| '02S' => ['HTML_COMPONENT', ''], | |
| '02T' => ['CustomPage', ''], | |
| '02t' => ['EmailRoutingAddress', ''], | |
| '02U' => ['CustomPageItem', ''], | |
| '02u' => ['TabSet', 'AKA. Apps'], | |
| '02V' => ['PageComponent', ''], | |
| '02v' => ['TabSetMember', ''], | |
| '02w' => ['LoginIpRange', ''], | |
| '02X' => ['CustomPageProfile', ''], | |
| '02x' => ['LoginHours', ''], | |
| '02y' => ['ReportAggregate', ''], | |
| '02Y' => ['UserComponentData', ''], | |
| '02Z' => ['AccountContactRole', ''], | |
| '02z' => ['ReportColorRange', ''], | |
| '030' => ['PROFILE_TAB_SET', ''], | |
| '031' => ['USER_TAB_SET_MEMBER', ''], | |
| '032' => ['ACC_TERRITORY_RULE', ''], | |
| '033' => ['AllPackage', 'Package being built in the developer org'], | |
| '034' => ['PackageMember', ''], | |
| '035' => ['SelfServiceUser', ''], | |
| '036' => ['JobQueue', ''], | |
| '037' => ['ReportColumn', ''], | |
| '038' => ['ReportFilterItem', ''], | |
| '039' => ['ReportBreak', ''], | |
| '03a' => ['DependentPicklist', ''], | |
| '03b' => ['PACKAGE_EXPORT', ''], | |
| '03c' => ['LayoutRightPanel', ''], | |
| '03D' => ['ContactOwnerSharingRule', ''], | |
| '03d' => ['ValidationFormula', 'Validation Rule'], | |
| '03e' => ['CustomSetupDefinition', ''], | |
| '03E' => ['GatherStatsTaskInfo', ''], | |
| '03f' => ['CustomSetup', ''], | |
| '03G' => ['AccountCriteriaSharingRule', ''], | |
| '03g' => ['QueueSobject', ''], | |
| '03H' => ['ContactCriteriaSharingRule', ''], | |
| '03I' => ['CaseCriteriaSharingRule', ''], | |
| '03i' => ['ConsoleConfig', ''], | |
| '03j' => ['CaseContactRole', ''], | |
| '03J' => ['ChatterMessage', ''], | |
| '03K' => ['ChatterMessageThread', ''], | |
| '03k' => ['ConsoleConfigItem', ''], | |
| '03M' => ['ChatterConversation', ''], | |
| '03n' => ['ApexClassIdentifier', ''], | |
| '03N' => ['ChatterConversationMember', ''], | |
| '03P' => ['DataAssessmentMetric', ''], | |
| '03q' => ['ApexClassIdentifierRelationship', ''], | |
| '03Q' => ['DataAssessmentFieldMetric', ''], | |
| '03R' => ['DataAssessmentValueMetric', ''], | |
| '03s' => ['ContactShare', ''], | |
| '03S' => ['ContentAsset', ''], | |
| '03U' => ['DataAssessmentBIMetrics', ''], | |
| '03u' => ['UserPreference', ''], | |
| '03V' => ['CampaignInfluenceModel', ''], | |
| '03Y' => ['InteractionScreenRule', ''], | |
| '03Z' => ['InteractionScreenRuleAction', ''], | |
| '040' => ['ReportParam', ''], | |
| '041' => ['ACC_TERRITORY_ASSIGN', ''], | |
| '042' => ['ACC_TERR_ASSIGN_RULE_ITEM', ''], | |
| '043' => ['OutboundField', ''], | |
| '044' => ['ExternalizedReference', ''], | |
| '045' => ['PartnerNetworkSetup', ''], | |
| '04a' => ['ProcessDefinition', ''], | |
| '04B' => ['Bookmark', ''], | |
| '04b' => ['ProcessNode', ''], | |
| '04c' => ['ProcessTransition', ''], | |
| '04d' => ['ProcessTransitionCondition', ''], | |
| '04e' => ['ProcessActionItem', ''], | |
| '04E' => ['SandOmObserver', ''], | |
| '04F' => ['LoginGeo', ''], | |
| '04f' => ['ProcessWorkitemProperties', ''], | |
| '04G' => ['DatacloudIndustryCode', ''], | |
| '04g' => ['ProcessInstance', ''], | |
| '04H' => ['InstanceDirective', ''], | |
| '04h' => ['ProcessInstanceStep', ''], | |
| '04I' => ['EmbeddedServiceConfig', ''], | |
| '04i' => ['ProcessInstanceWorkitem', ''], | |
| '04j' => ['ProcessAllowedSubmitter', ''], | |
| '04k' => ['ActionOutboundMessage', 'Outbound Message Id'], | |
| '04l' => ['OutboundMessage', 'Outbound Notification Id'], | |
| '04m' => ['AdditionalNumber', ''], | |
| '04n' => ['SoftphoneLayout', ''], | |
| '04o' => ['SoftphoneLayoutSection', ''], | |
| '04P' => ['PartnerNetworkConnection', ''], | |
| '04p' => ['SoftphoneLayoutItem', ''], | |
| '04Q' => ['LogAnalysisRun', ''], | |
| '04q' => ['SoftphoneLayoutInfoField', ''], | |
| '04R' => ['LogAnalysisItem', ''], | |
| '04r' => ['SoftphoneLayoutCallType', ''], | |
| '04s' => ['AsyncRequest', 'AsyncResult, DeployResult'], | |
| '04S' => ['USER_TERRITORY', ''], | |
| '04t' => ['AllPackageVersion', 'Install Package'], | |
| '04T' => ['TERRITORY', ''], | |
| '04u' => ['ActionOverride', ''], | |
| '04U' => ['DNB_ACCOUNT_MAPPING', ''], | |
| '04v' => ['CallCenter', ''], | |
| '04V' => ['PartnerNetworkRecordConnection', ''], | |
| '04w' => ['DatedConversionRate', ''], | |
| '04W' => ['RevenueForecastHistory', ''], | |
| '04x' => ['PackageExtension', ''], | |
| '04X' => ['QuantityForecastHistory', ''], | |
| '04Y' => ['ActionFieldUpdate', 'Field Update'], | |
| '04y' => ['ListColumn', ''], | |
| '04Z' => ['EntityLock', ''], | |
| '04z' => ['LayoutItemActionRef', ''], | |
| '050' => ['PackageLicense', ''], | |
| '051' => ['UserPackageLicense', ''], | |
| '052' => ['SfdcOutboundMessage', ''], | |
| '053' => ['WorkflowTimeTrigger', ''], | |
| '054' => ['WorkflowTimeAction', ''], | |
| '055' => ['WorkflowTimeQueue', ''], | |
| '056' => ['ContentTagName', ''], | |
| '057' => ['ContentDocumentSubscription', ''], | |
| '058' => ['ContentWorkspace', ''], | |
| '059' => ['ContentWorkspaceDoc', ''], | |
| '05A' => ['ContentWorkspaceMembership', ''], | |
| '05a' => ['DataStatistics', ''], | |
| '05B' => ['CampaignCriteriaSharingRule', ''], | |
| '05C' => ['ContentVersionComment', ''], | |
| '05c' => ['CopyExportChunk2', ''], | |
| '05D' => ['ContentDistribution', ''], | |
| '05d' => ['CopyImportChunk2', ''], | |
| '05E' => ['AsyncApiBatchOptions', ''], | |
| '05e' => ['CopyEntityTally2', ''], | |
| '05f' => ['AcceptedRecommendation', ''], | |
| '05F' => ['ApexTestSuite', ''], | |
| '05G' => ['IpWhitelist', ''], | |
| '05g' => ['TwoFactorTempCode', ''], | |
| '05H' => ['ContentDistributionView', ''], | |
| '05I' => ['CampaignSharingRuleFilterItem', ''], | |
| '05J' => ['ContentVersionRating', ''], | |
| '05k' => ['ColorDefinition', ''], | |
| '05K' => ['ContentVersionRenditionContent', ''], | |
| '05L' => ['DBCThumbnailFilter', ''], | |
| '05m' => ['ApexTestRunResult', ''], | |
| '05M' => ['Experiment', ''], | |
| '05n' => ['ApexTestResultLimits', ''], | |
| '05N' => ['ContentVersionTagName', ''], | |
| '05o' => ['EclairNgMapGeoJson', ''], | |
| '05P' => ['ContentWorkspacePermission', ''], | |
| '05p' => ['EclairNgMap', ''], | |
| '05Q' => ['ContentTagSubscription', ''], | |
| '05R' => ['ContentWorkspaceSubscription', ''], | |
| '05S' => ['ContentUserSubscription', ''], | |
| '05T' => ['ContentContent', ''], | |
| '05t' => ['CustomEntityTranslation', ''], | |
| '05U' => ['EntityFeedLayout', ''], | |
| '05V' => ['ContentNotification', ''], | |
| '05W' => ['ContentNotificationParam', ''], | |
| '05X' => ['DocumentAttachmentMap', ''], | |
| '05Z' => ['ContentWorkspaceRecentEvent', ''], | |
| '060' => ['Portal', ''], | |
| '061' => ['PortalAccount', ''], | |
| '062' => ['PortalStyleConfig', ''], | |
| '063' => ['MobileConfig', ''], | |
| '064' => ['QuerySet', ''], | |
| '065' => ['QuerySetItem', ''], | |
| '066' => ['ApexPage', ''], | |
| '067' => ['PortalMember', ''], | |
| '068' => ['ContentVersion', ''], | |
| '069' => ['ContentDocument', ''], | |
| '06A' => ['ContentDocumentLink', ''], | |
| '06a' => ['LocalNamespace', ''], | |
| '06B' => ['ContentWorkspaceAllowedRecType', ''], | |
| '06b' => ['FeedActionState', ''], | |
| '06d' => ['GrantedByLicense', ''], | |
| '06E' => ['DandBCompany', ''], | |
| '06e' => ['DdcProspectorMetrics', ''], | |
| '06F' => ['EmailCapture', ''], | |
| '06G' => ['CustomConsoleComponent', ''], | |
| '06h' => ['FileSearchActivity', ''], | |
| '06i' => ['FlexQueueItem', ''], | |
| '06j' => ['ApexEmailNotification', ''], | |
| '06k' => ['ProfileActionOverride', ''], | |
| '06m' => ['AppDefinition', ''], | |
| '06N' => ['ApplicationDependency', ''], | |
| '06o' => ['AppTabMember', ''], | |
| '06O' => ['ServiceDeskAttributes', ''], | |
| '06P' => ['Application', 'Connected App'], | |
| '06p' => ['NotifTypeUserSetting', ''], | |
| '06r' => ['AppNotificationType', ''], | |
| '06s' => ['SkinnyTable', ''], | |
| '06t' => ['SkinnyTableField', ''], | |
| '06v' => ['AppNotifTypeUserSetting', ''], | |
| '06w' => ['AppBrand', ''], | |
| '06Y' => ['FeedActionDefinition', ''], | |
| '070' => ['CustomReportType', ''], | |
| '071' => ['CrtObject', ''], | |
| '072' => ['CrtColumn', 'Related to reports in some way.'], | |
| '073' => ['CrtLayoutSection', ''], | |
| '074' => ['CorsWhitelistEntry', ''], | |
| '075' => ['DuplicateErrorLog', ''], | |
| '076' => ['RateLimitingNotification', ''], | |
| '077' => ['ApiCapture', ''], | |
| '078' => ['ApiUsage', ''], | |
| '079' => ['MobileMarkedRecord', ''], | |
| '07a' => ['ApexDebuggerSession', ''], | |
| '07A' => ['MassMail', ''], | |
| '07d' => ['ApexDebuggerEvent', ''], | |
| '07D' => ['FeedPostTemplate', ''], | |
| '07e' => ['FeedPostTemplateItem', ''], | |
| '07E' => ['Sandbox', ''], | |
| '07F' => ['FeedFavorite', ''], | |
| '07g' => ['ActionLinkGroupTemplate', ''], | |
| '07G' => ['SummaryRecalcQueue', ''], | |
| '07h' => ['ConnectedAppOauthPolicy', ''], | |
| '07H' => ['ContentFolder', ''], | |
| '07i' => ['CleanRule', ''], | |
| '07I' => ['ContentFolderMember', ''], | |
| '07J' => ['ComponentObjectDependency', ''], | |
| '07j' => ['ContentSyncSetting', ''], | |
| '07k' => ['AccountContactRelation', ''], | |
| '07K' => ['ComponentFeatureDependency', ''], | |
| '07l' => ['ActionLinkTemplate', ''], | |
| '07L' => ['ApexLog', ''], | |
| '07M' => ['ApexTestResult', ''], | |
| '07m' => ['DatacloudAddress', ''], | |
| '07N' => ['ActionLinkTemplateBinding', ''], | |
| '07n' => ['ApexExecutionOverlayResult', ''], | |
| '07O' => ['Canvas', ''], | |
| '07o' => ['EntityLimit', ''], | |
| '07P' => ['EntitySizeJob', ''], | |
| '07p' => ['UserAppMenuItem', ''], | |
| '07R' => ['DataCategoryMapping', ''], | |
| '07S' => ['CleanDataSource', '/ CleanDataService'], | |
| '07T' => ['AuthConfig', ''], | |
| '07U' => ['AuthConfigProviders', ''], | |
| '07u' => ['UserEntityAccess', ''], | |
| '07V' => ['ActionSend', ''], | |
| '07v' => ['ContentFolderLink', ''], | |
| '07W' => ['CustomBrand', ''], | |
| '07w' => ['DatacloudIndustryChapter', ''], | |
| '07X' => ['CustomBrandAsset', ''], | |
| '07x' => ['DatacloudIndustrySubChapter', ''], | |
| '07Y' => ['CleanRule', '/ BatchOrgSizeJob'], | |
| '07y' => ['DatacloudIndustryContent', ''], | |
| '07z' => ['DatacloudIndustry', ''], | |
| '07Z' => ['EntityDataSize', ''], | |
| '080' => ['PacCrudPermission', ''], | |
| '081' => ['StaticResource', ''], | |
| '082' => ['UninstallExport', 'Data from Uninstalled Packages? A zip containing CSVs.'], | |
| '083' => ['Vote', ''], | |
| '084' => ['VoteConfig', ''], | |
| '085' => ['VoteStats', ''], | |
| '086' => ['MobileDevice', ''], | |
| '087' => ['Idea', ''], | |
| '08a' => ['CronJobDetail', ''], | |
| '08C' => ['DatacloudContact', ''], | |
| '08d' => ['CampaignOwnerSharingRule', ''], | |
| '08E' => ['AddressCountry', ''], | |
| '08e' => ['CronTrigger', ''], | |
| '08F' => ['AddressState', ''], | |
| '08G' => ['CleanJobLog', ''], | |
| '08g' => ['CronFiredTrigger', ''], | |
| '08H' => ['CleanBatchErrorLog', ''], | |
| '08I' => ['CleanEntityErrorLog', ''], | |
| '08j' => ['ArtifactOauthConsumer', ''], | |
| '08K' => ['DuplicateRuleMatchRule', ''], | |
| '08l' => ['AQTWorkloadData', ''], | |
| '08M' => ['FeedAttachment', ''], | |
| '08n' => ['AqtCompoundRecommendedIndex', ''], | |
| '08o' => ['AqtCreatedIndex', ''], | |
| '08O' => ['FTestSystemCatalogEntity', ''], | |
| '08P' => ['BackgroundOperation', ''], | |
| '08Q' => ['ForecastingOwnerAdjustment', ''], | |
| '08r' => ['AqtLongRunningRequestData', ''], | |
| '08R' => ['FeedMute', ''], | |
| '08s' => ['CampaignShare', ''], | |
| '08t' => ['AqtRIRequestMap', ''], | |
| '08u' => ['AqtRecommendedIndex', ''], | |
| '08U' => ['FeedRevision', ''], | |
| '08v' => ['AqtAwrData', ''], | |
| '08V' => ['FTestMetadataCatalogEntity', ''], | |
| '08W' => ['DashboardGridLayout', ''], | |
| '08X' => ['DashboardGridComponent', ''], | |
| '08x' => ['InstancePerm', ''], | |
| '08y' => ['CspTrustedSite', ''], | |
| '090' => ['MobileExcludedField', ''], | |
| '091' => ['EmailServicesFunction', ''], | |
| '092' => ['Weekly', 'Data Export'], | |
| '093' => ['EmailServicesAddress', ''], | |
| '094' => ['MobileView', ''], | |
| '095' => ['MobileViewSortColumn', ''], | |
| '096' => ['MobileViewDisplayColumn', ''], | |
| '097' => ['MobileViewFilter', ''], | |
| '098' => ['GoogleDoc', ''], | |
| '099' => ['ApexComponent', ''], | |
| '09a' => ['Community', ''], | |
| '09A' => ['FeedPollChoice', ''], | |
| '09B' => ['FeedPollVote', ''], | |
| '09C' => ['AsyncApiJobMatchDetail', ''], | |
| '09d' => ['FeedFilterCriterion', ''], | |
| '09D' => ['QuickActionDefinition', ''], | |
| '09E' => ['AsyncApiBatchMatchDetail', ''], | |
| '09e' => ['InvocableAction', ''], | |
| '09F' => ['DatacloudPurchaseUsage', ''], | |
| '09f' => ['InvocableActionParameter', ''], | |
| '09g' => ['InvocableActionPicklist', ''], | |
| '09H' => ['ConnectedApplication2', ''], | |
| '09h' => ['IncrementalCandidate', ''], | |
| '09I' => ['QuickActionListItem', ''], | |
| '09j' => ['QoptimizerOption', '/ IpRange'], | |
| '09J' => ['QuickActionList', ''], | |
| '09K' => ['DatacloudCompany', ''], | |
| '09k' => ['IconDefinition', ''], | |
| '09L' => ['ActionFlow', ''], | |
| '09M' => ['ActionFlowParam', ''], | |
| '09m' => ['FeedEntityUnpublished', ''], | |
| '09N' => ['DatacloudDandBCompany', ''], | |
| '09O' => ['DatacloudOwnedEntity', ''], | |
| '09P' => ['EmailDomainKey', ''], | |
| '09S' => ['AsyncRequestFFX', ''], | |
| '09T' => ['AsyncRequestFFXResult', ''], | |
| '09t' => ['UiFormulaRule', ''], | |
| '09U' => ['DomainCookieStore', ''], | |
| '09V' => ['DashboardStickyFilter', ''], | |
| '09W' => ['ThirdPartyAccountLinkLocal', ''], | |
| '09X' => ['DcSocialProfileHandle', ''], | |
| '09Y' => ['DcSocialProfile', ''], | |
| '09Z' => ['FeedFilterDefinition', ''], | |
| '0A0' => ['ReportJob', ''], | |
| '0A1' => ['ReportJobFieldMap', ''], | |
| '0A2' => ['DevelopmentPackageVersion', 'Change Set'], | |
| '0A3' => ['InstalledPackageVersion', 'Installed Package'], | |
| '0A4' => ['ProcessTransitionApprover', ''], | |
| '0A5' => ['AllManagedPackageMember', ''], | |
| '0A7' => ['CustomShareRowCause', ''], | |
| '0A8' => ['ReportJobRun', ''], | |
| '0A9' => ['ReportJobRunError', ''], | |
| '0Aa' => ['CollaborationGroupRecord', ''], | |
| '0Ab' => ['AuraDefinitionBundle', ''], | |
| '0ab' => ['AuraDefinitionBundleInfo', ''], | |
| '0ab' => ['AuraDefinitionBundleInfo', ''], | |
| '0AB' => ['ProfilePortalDelegate', ''], | |
| '0Ad' => ['AuraDefinition', ''], | |
| '0aD' => ['AuraDefinitionChange', ''], | |
| '0ad' => ['AuraDefinitionInfo', ''], | |
| '0ad' => ['AuraDefinitionInfo', ''], | |
| '0AD' => ['PackageEvent', ''], | |
| '0Af' => ['DeployRequest', ''], | |
| '0AF' => ['FolderShare', ''], | |
| '0Ag' => ['ActionLinkGroup', ''], | |
| '0AH' => ['CompactLayout', ''], | |
| '0Ai' => ['DeployMessage', ''], | |
| '0AI' => ['FirehoseCheckpoint', ''], | |
| '0Aj' => ['AsyncApiTransformationSpec', ''], | |
| '0AJ' => ['ComponentInstanceProperty', ''], | |
| '0Ak' => ['AuthSession', ''], | |
| '0AK' => ['ComponentInstance', ''], | |
| '0Al' => ['DeployTestResult', ''], | |
| '0AL' => ['ExternalSocialAccount', ''], | |
| '0am' => ['AudienceMembership', ''], | |
| '0am' => ['AudienceMembership', ''], | |
| '0AM' => ['CompactLayoutItem', ''], | |
| '0Am' => ['SplitMapping', ''], | |
| '0An' => ['ActionLink', ''], | |
| '0AN' => ['CompactLayoutMapping', ''], | |
| '0AO' => ['CopyExport', ''], | |
| '0Ao' => ['SplitPod', ''], | |
| '0AP' => ['CopyImport', ''], | |
| '0Ap' => ['Split', ''], | |
| '0Aq' => ['ActionLinkGroupAssoc', ''], | |
| '0AQ' => ['CopyExportChunk', ''], | |
| '0AR' => ['CopyImportChunk', ''], | |
| '0Ar' => ['SplitAction', ''], | |
| '0AS' => ['CopyEntityTally', ''], | |
| '0As' => ['SplitActionResult', ''], | |
| '0At' => ['ActionLinkUserState', ''], | |
| '0AT' => ['EventLogFile', ''], | |
| '0Au' => ['AnalyticNotification', ''], | |
| '0AU' => ['AuthSecurityLevel', ''], | |
| '0Av' => ['AnalyticThreshold', ''], | |
| '0AV' => ['CopyExportObserverInfo', ''], | |
| '0Aw' => ['AnalyticCondition', ''], | |
| '0AW' => ['CanvasFeedItem', ''], | |
| '0AX' => ['ConsolePersonalization', ''], | |
| '0Ax' => ['ContentVersioningPolicy', ''], | |
| '0Ay' => ['AnalyticAction', ''], | |
| '0AZ' => ['ActionApex', ''], | |
| '0Az' => ['AuraResource', ''], | |
| '0B0' => ['MobileEntitySetting', ''], | |
| '0B1' => ['MessageIdentifier', ''], | |
| '0B2' => ['PortalLanguageConfig', ''], | |
| '0B3' => ['PortalLanguageTabConfig', ''], | |
| '0B9' => ['MobileTab', ''], | |
| '0BA' => ['CustomDataType', ''], | |
| '0Ba' => ['LoginBrandAsset', ''], | |
| '0BB' => ['CustomDataTypeComponent', ''], | |
| '0Bb' => ['LoginBrand', ''], | |
| '0BC' => ['CustomFieldDataColumn', ''], | |
| '0Bc' => ['MqSlaJob', ''], | |
| '0Bd' => ['HistoricalFieldConfig', ''], | |
| '0BE' => ['FileFieldData', ''], | |
| '0Be' => ['HistoricalTransactionPrefix', ''], | |
| '0BF' => ['ComponentAppVersion', ''], | |
| '0Bf' => ['HistoricalStaging', ''], | |
| '0BG' => ['CampaignInfluenceAdjustment', ''], | |
| '0BH' => ['AllManagedClassRelationship', ''], | |
| '0BI' => ['ContentVersionMap', ''], | |
| '0Bi' => ['HistoricalSelectorValue', ''], | |
| '0BJ' => ['ActionAssignTeam', ''], | |
| '0Bk' => ['HistoricalSelector', ''], | |
| '0Bl' => ['BlacklistedConsumer', ''], | |
| '0BL' => ['PackageIdMapping', ''], | |
| '0BM' => ['Connection', 'Salesforce to Salesforce'], | |
| '0Bm' => ['DuplicateRule', ''], | |
| '0Bn' => ['ConsoleSidebarContainer', ''], | |
| '0Bo' => ['SidebarComponentLayout', ''], | |
| '0Bp' => ['ListPoolUsage', ''], | |
| '0BR' => ['LogSearchResult', ''], | |
| '0Bs' => ['DatacloudSocialHandle', ''], | |
| '0Bt' => ['Announcement', ''], | |
| '0Bu' => ['DunsRightAsyncBatch', ''], | |
| '0Bv' => ['DunsRightAsyncAccountRecord', ''], | |
| '0BV' => ['OpportunityCriteriaSharingRule', ''], | |
| '0Bw' => ['EltWorkflow', ''], | |
| '0BW' => ['MobilePushDevice', ''], | |
| '0Bx' => ['DunsRightAsyncChunk', ''], | |
| '0BX' => ['HistoricalEntityConfig', ''], | |
| '0By' => ['ContentDispositionAssignment', ''], | |
| '0BY' => ['MqSlaRequest', ''], | |
| '0BZ' => ['EmailBrand', ''], | |
| '0C0' => ['Holiday', ''], | |
| '0C2' => ['MobileSession', ''], | |
| '0C3' => ['LiveChatUserConfig', ''], | |
| '0C3' => ['RequestThrottle', ''], | |
| '0C5' => ['Skill', ''], | |
| '0C8' => ['LongJob', ''], | |
| '0C9' => ['SkillUser', ''], | |
| '0ca' => ['ChatterActivity', ''], | |
| '0CA' => ['SkillProfile', ''], | |
| '0CB' => ['LiveChatUserConfigUser', ''], | |
| '0CC' => ['SiteChangelistComponent', ''], | |
| '0CD' => ['LiveChatUserConfigProfile', ''], | |
| '0CE' => ['GroupSubscription', ''], | |
| '0CF' => ['ChatterNowUserFavorites', ''], | |
| '0CG' => ['MailAppSettings', ''], | |
| '0Cg' => ['OrganizationValueInfo', ''], | |
| '0CH' => ['ContentHubItem', ''], | |
| '0Ch' => ['LayoutParticle', ''], | |
| '0Ci' => ['AppManifest', ''], | |
| '0CI' => ['EntityImplements', ''], | |
| '0CJ' => ['FieldImplements', ''], | |
| '0Cj' => ['OperationLog', ''], | |
| '0CK' => ['MailAppExchangeWhitelist', ''], | |
| '0CL' => ['SiteChangelist', ''], | |
| '0CM' => ['ChatSessionMembers', ''], | |
| '0Cn' => ['NotificationMember', ''], | |
| '0CO' => ['MailAppExchangeUserMap', ''], | |
| '0CP' => ['CustomPermission', ''], | |
| '0CQ' => ['OauthToken', ''], | |
| '0CS' => ['ChatterNowUserSettings', ''], | |
| '0cs' => ['OauthConsumerScope', ''], | |
| '0Ct' => ['ManagedContentBlock', ''], | |
| '0Cu' => ['ManagedContentBlockVersion', ''], | |
| '0CU' => ['OrgSizingDataHolder', ''], | |
| '0Cv' => ['KanbanView', ''], | |
| '0CW' => ['OrgSizingInfo', ''], | |
| '0CX' => ['MobilePushUserUpdate', ''], | |
| '0Cy' => ['OwnerChangeOptionInfo', ''], | |
| '0CZ' => ['EmailMessageRelation', ''], | |
| '0Cz' => ['Setting', ''], | |
| '0D0' => ['CustomIndexUsage', ''], | |
| '0D1' => ['DataCategoryGroup', ''], | |
| '0D2' => ['OrgWideEmailAddress', ''], | |
| '0D3' => ['OrgEmailAddressSecurity', ''], | |
| '0D4' => ['LeadCriteriaSharingRule', ''], | |
| '0D5' => [ | |
| 'FeedItem', | |
| 'or NewsFeed or UserProfileFeed - Use caution as there are at least three object types exposed via the partner API with the same keyPrefix!' | |
| ], | |
| '0D6' => ['FeedTrackedChange', ''], | |
| '0D7' => ['FeedComment', ''], | |
| '0D8' => ['AllManagedMemberOption', ''], | |
| '0D9' => ['LeadSharingRuleFilterItem', ''], | |
| '0DA' => ['EntityCategoryGroup', ''], | |
| '0Db' => ['ForecastingType', ''], | |
| '0DC' => ['ProcessTransitionAction', ''], | |
| '0Dd' => ['ListViewChart', ''], | |
| '0DD' => ['SynonymGroup', ''], | |
| '0De' => ['ListViewChartInstance', ''], | |
| '0DE' => ['Synonym', ''], | |
| '0Df' => ['InstanceSizeJob', ''], | |
| '0DF' => [ | |
| 'VersionSet', | |
| 'encodes your package version selections when the enterprise WSDL was generated. See Package Version Settings' | |
| ], | |
| '0Dg' => ['FeedEntry', ''], | |
| '0DG' => ['NamedFilter', ''], | |
| '0DH' => ['FieldAttributes', ''], | |
| '0Dh' => ['MaterializedFeedEntry', ''], | |
| '0Di' => ['FeedClumpMapping', ''], | |
| '0Dj' => ['FeedClumpInfo', ''], | |
| '0Dk' => ['ObjectMapping', ''], | |
| '0Dl' => ['ObjectMappingField', ''], | |
| '0DM' => ['Site', ''], | |
| '0DN' => ['SitePageOverride', ''], | |
| '0Dq' => ['AuthenticatorPairing', '/ TwoFactorAuthPairing'], | |
| '0DQ' => ['IndexKeyDefinitionItem', ''], | |
| '0DR' => ['AndroidPushApplicationSetup', ''], | |
| '0Dr' => ['MailAppOwaWhitelist', ''], | |
| '0DS' => ['AppMenuItem', ''], | |
| '0Ds' => ['UserAppInfo', ''], | |
| '0DT' => ['IdeaReputationLevel', ''], | |
| '0Dt' => ['OrgSigningKey', ''], | |
| '0Du' => ['ExchangeUserMapping', ''], | |
| '0DU' => ['LimitUsageHistory', ''], | |
| '0Dv' => ['NotifTypeOrgSetting', ''], | |
| '0DV' => ['PushUpgradeRequest', ''], | |
| '0DX' => ['PushUpgradeJob', ''], | |
| '0Dy' => ['GlobalVariableType', ''], | |
| '0DY' => ['PushUpgradeJobError', ''], | |
| '0DZ' => ['LiveChatTranscriptEvent', ''], | |
| '0Dz' => ['OptimizerMetricsAverage', ''], | |
| '0E0' => ['EmailSyncConfig', ''], | |
| '0E1' => ['EmailSyncEntitySetting', ''], | |
| '0e1' => ['ProfileClientSettings', ''], | |
| '0E2' => ['EmailSyncFieldMapping', ''], | |
| '0E3' => ['EmailSyncValueMapping', ''], | |
| '0E4' => ['EmailConfigEntitySetting', ''], | |
| '0E5' => ['EmailUserEntitySetting', ''], | |
| '0E6' => ['EmailSyncAdvancedSetting', ''], | |
| '0E8' => ['EntitySubscription', ''], | |
| '0EA' => ['PackageVersionPatchOrg', ''], | |
| '0eb' => ['EntityBlacklist', ''], | |
| '0Eb' => ['ModuleDependency', ''], | |
| '0EB' => ['Renderer', ''], | |
| '0ED' => ['LpuAccessMapping', ''], | |
| '0EE' => ['DeployDirection', ''], | |
| '0Ee' => ['HistoricalDataFilter', ''], | |
| '0Ef' => ['HistoricalDataFilterItem', ''], | |
| '0EF' => ['RequestTrace', ''], | |
| '0Eg' => ['GlobalDbKey', ''], | |
| '0EG' => ['ReportChart', ''], | |
| '0EH' => ['SummaryLayout', ''], | |
| '0Eh' => ['TodayCard', ''], | |
| '0EI' => ['SummaryLayoutItem', ''], | |
| '0EJ' => ['SummaryLayoutSliceInfo', ''], | |
| '0El' => ['InstalledMobileApp', ''], | |
| '0EM' => [ | |
| 'ContentReference', | |
| 'Appears next to refid query string parameter when pulling images. See rtaimage servlet parameters…what does the refid refer to?' | |
| ], | |
| '0Em' => ['TodayCardProperty', ''], | |
| '0en' => ['Endorsement', ''], | |
| '0En' => ['ReadOnlyMemcachedServer', ''], | |
| '0eo' => ['CommChannelLayout', ''], | |
| '0EO' => ['PicklistItemProperty', ''], | |
| '0ep' => ['CommChannelLayoutItem', ''], | |
| '0EP' => ['InboundChangeSet', ''], | |
| '0Ep' => ['ReadOnlyUserLogin', ''], | |
| '0EQ' => ['CategoryJobTask', ''], | |
| '0eq' => ['CommChannelLayoutMapping', ''], | |
| '0Eq' => ['LeadConvertSettings', ''], | |
| '0Er' => ['PlatformCachePartition', ''], | |
| '0ER' => ['RichTextAreaFieldData', ''], | |
| '0Es' => ['TemplateDeployment', ''], | |
| '0Et' => ['ReadOnlyAuthSession', ''], | |
| '0Eu' => ['TemplateDeploymentItem', ''], | |
| '0EV' => ['AllInstalledPackageVersion', ''], | |
| '0Ev' => ['PlatformCachePartitionType', ''], | |
| '0EW' => ['ChangeSetDeployHistory', ''], | |
| '0EX' => ['ChangeSetDeployMessage', ''], | |
| '0Ex' => ['PlatformCacheTrial', ''], | |
| '0Ey' => ['ReadOnlyRedisServer', ''], | |
| '0Ez' => ['ReadOnlyLoginHistory', ''], | |
| '0EZ' => ['S2XExchOAuthCredential', ''], | |
| '0F0' => ['EmailTempAttachmentMap', ''], | |
| '0F1' => ['DuplicateRuleFilter', ''], | |
| '0F2' => ['HadoopCounter', ''], | |
| '0F3' => ['ReportBlock', ''], | |
| '0F5' => ['PhotoItem', ''], | |
| '0F7' => ['FeedPost', ''], | |
| '0F8' => ['SoftphoneScreenPopOption', ''], | |
| '0F9' => ['CollaborationGroup', ''], | |
| '0Fa' => ['ContextFieldAttributes', ''], | |
| '0FA' => ['CsnDomain', ''], | |
| '0FB' => ['CollaborationGroupMember', ''], | |
| '0Fe' => ['IdentityConnector', ''], | |
| '0Ff' => ['InboundSocialPost', ''], | |
| '0Fg' => ['InteractionLoop', ''], | |
| '0FG' => ['MobilePushServiceDevice', ''], | |
| '0Fh' => ['InteractionActionCall', ''], | |
| '0FH' => ['LinkReference', ''], | |
| '0FI' => ['DuplicateRuleFilterItem', ''], | |
| '0Fi' => ['InteractionActionCallParam', ''], | |
| '0Fj' => ['InteractionMetadataValue', ''], | |
| '0Fl' => ['ContentRenditionPolicy', ''], | |
| '0FM' => ['FeedMapping', ''], | |
| '0FO' => ['AssistantProgress', '/ OrgSizeJob'], | |
| '0Fo' => ['FlowInterview', ''], | |
| '0Fp' => ['HammerResultStatus', ''], | |
| '0FP' => ['ReportRunTracker', ''], | |
| '0Fq' => ['FeedChannel', ''], | |
| '0FQ' => ['TrialMaster', ''], | |
| '0Fr' => ['FeedChannelSubscription', ''], | |
| '0fr' => ['FeedRecommendationInfo', ''], | |
| '0FR' => ['PackageOperationError', ''], | |
| '0Fs' => ['OrderOwnerSharingRule', ''], | |
| '0Ft' => ['OrderCriteriaSharingRule', ''], | |
| '0FT' => ['TopicAssignment', ''], | |
| '0Fu' => ['OrderSharingRuleFilterItem', ''], | |
| '0Fv' => ['InteractionRefOrValue', ''], | |
| '0FX' => ['QoptimizerLimitOverride', ''], | |
| '0Fy' => ['OrderShare', ''], | |
| '0Fz' => ['IndexKeyDefinition', ''], | |
| '0G1' => ['FeedFieldHistory', ''], | |
| '0G2' => ['ForecastingCompositeKey', ''], | |
| '0G3' => ['ForecastingItem', ''], | |
| '0G4' => ['OracleAwrSqlstat', ''], | |
| '0G5' => ['OracleAwrSqltext', ''], | |
| '0G6' => ['ForecastingFact', ''], | |
| '0G7' => ['ForecastingAdjustment', ''], | |
| '0G8' => ['ReportBucketField', ''], | |
| '0G9' => ['AccountSharingRuleFilterItem', ''], | |
| '0Ga' => ['RecommendedIndex', ''], | |
| '0GC' => ['EmailDisclaimer', ''], | |
| '0Gc' => ['RecommendedIndexLrrMap', ''], | |
| '0GD' => ['ReportBucketFieldValue', ''], | |
| '0GE' => ['ReportBucketFieldSourceValue', ''], | |
| '0Gf' => ['InterestingSqlFromAwr', ''], | |
| '0GH' => ['SchemaBuilderLayout', ''], | |
| '0GI' => ['SchemaBuilderLayoutItem', ''], | |
| '0Gi' => ['SecurityHealthCheck', ''], | |
| '0GJ' => ['ApplePushApplicationSetup', ''], | |
| '0GK' => ['DuplicateRecordSet', ''], | |
| '0GL' => ['DuplicateRecordItem', ''], | |
| '0GM' => ['MetadataIdentifier', ''], | |
| '0Gm' => ['S2XEventTxnProps', ''], | |
| '0GN' => ['MetadataContent', ''], | |
| '0Go' => ['AssistantInteraction', ''], | |
| '0GO' => ['LiveChatSensitiveDataRule', ''], | |
| '0GP' => ['ProspectorRecModel', ''], | |
| '0Gp' => ['UiFormulaCriterion', ''], | |
| '0Gq' => ['IntelligenceField', ''], | |
| '0Gr' => ['UiFormulaRuleAssignment', ''], | |
| '0GS' => ['S2XEventMap', ''], | |
| '0GT' => ['S2XContactMap', ''], | |
| '0GU' => ['LongRunningRequest', ''], | |
| '0Gu' => ['SCSTermsOfService', ''], | |
| '0GV' => ['SiteDetail', ''], | |
| '0GW' => ['RelatedEntity', ''], | |
| '0Gw' => ['S2XSandmanError', ''], | |
| '0Gx' => ['FormulaOperator', ''], | |
| '0Gy' => ['DiscoveryUserLicense', ''], | |
| '0GY' => ['Tombstone', ''], | |
| '0Gz' => ['DiscoveryOrgLicense', ''], | |
| '0H0' => ['SiteRedirectMapping', ''], | |
| '0H1' => ['CollaborationInvitation', ''], | |
| '0H2' => ['LpuSharingSet', ''], | |
| '0H4' => ['ConnectedApplication', ''], | |
| '0H6' => ['ChangeSetUploadHistory', ''], | |
| '0H7' => ['PackageSupportAccess', ''], | |
| '0H9' => ['OracleAwrSqlignore', ''], | |
| '0Ha' => ['SandOmInfo', ''], | |
| '0hc' => ['HashtagCount', ''], | |
| '0Hc' => ['ProfileTabSetConfiguration', ''], | |
| '0HC' => ['RecordSalt', ''], | |
| '0hd' => ['HashtagDefinition', ''], | |
| '0Hd' => ['TestSuiteMembership', ''], | |
| '0He' => ['CaptchaKey', ''], | |
| '0HE' => ['SettingsTemplate', ''], | |
| '0Hf' => ['PackageInstallRequest', ''], | |
| '0HF' => ['ReadOnlyLoginMessage', '/ PublishEvent'], | |
| '0HG' => ['EntitySharingModel', ''], | |
| '0Hg' => ['SandstormWhitelist', ''], | |
| '0Hi' => ['AppIpRange', ''], | |
| '0HI' => ['ReportBlockAggregate', ''], | |
| '0Hj' => ['AppManifestVersion', ''], | |
| '0HJ' => ['LiveChatButtonDeployment', ''], | |
| '0Hk' => ['ConnectivityDevConfig', ''], | |
| '0HK' => ['LiveAgentSession', ''], | |
| '0Hl' => ['ConnectivityAttributes', ''], | |
| '0HN' => ['TwoFactorInfo', ''], | |
| '0HO' => ['MobilePushSetupRegistry', ''], | |
| '0Hp' => ['SandOmImportInfoDetail', ''], | |
| '0HP' => ['UserProvisioningRequest', ''], | |
| '0HQ' => ['ReadOnlyAppserver', ''], | |
| '0Hq' => ['SandOmInfoDetail', ''], | |
| '0HR' => ['MetricsTransmissionHistory', ''], | |
| '0HS' => ['SharingOperation', ''], | |
| '0Hs' => ['UserProvisioningLog', ''], | |
| '0ht' => ['Hashtag', ''], | |
| '0Ht' => ['SandOmImportInfo', ''], | |
| '0HT' => ['ScrutinyRun', ''], | |
| '0HU' => ['ProfileSessionSetting', ''], | |
| '0HV' => ['ProfilePasswordPolicy', ''], | |
| '0HW' => ['ConnectedAppSessionPolicy', ''], | |
| '0HX' => ['UserProvMockTarget', ''], | |
| '0HY' => ['UserProvAccountStaging', ''], | |
| '0HZ' => ['ConnectedAppPlugin', ''], | |
| '0Hz' => ['ExperimentRequest', ''], | |
| '0I0' => ['FeedLike', ''], | |
| '0I1' => ['DbLockUsage', ''], | |
| '0I2' => ['SiteAsset', ''], | |
| '0I3' => ['SiteComponent', ''], | |
| '0I4' => ['Domain', ''], | |
| '0I5' => ['CollaborationGroupMemberRequest', ''], | |
| '0I6' => ['OpportunitySharingRuleFilterItem', ''], | |
| '0I7' => ['CaseSharingRuleFilterItem', ''], | |
| '0I8' => ['ContactSharingRuleFilterItem', ''], | |
| '0I9' => ['ReportObjectFilterItem', ''], | |
| '0Ia' => ['CustomEntityTruncateInfo', ''], | |
| '0IA' => ['KnowledgeLanguageConfig', ''], | |
| '0IB' => ['DashboardFilter', ''], | |
| '0Ib' => ['MatchingInformation', ''], | |
| '0IC' => ['DashboardFilterItem', ''], | |
| '0ID' => ['DashboardFilterRepCol', ''], | |
| '0Ie' => ['SupervisorAgentConfigSkill', ''], | |
| '0If' => ['LiveChatButtonSkill', ''], | |
| '0IF' => ['PushTopic', ''], | |
| '0Ig' => ['LiveChatTranscriptSkill', ''], | |
| '0IG' => ['MobileDeviceRegistrar', ''], | |
| '0Ih' => ['ServiceDeskComponent', ''], | |
| '0II' => ['FeedCrossReference', ''], | |
| '0Ii' => ['PushProfileMapping', ''], | |
| '0Ij' => ['PushIntent', ''], | |
| '0Ik' => ['Module', ''], | |
| '0Il' => ['ScrutinyPkChunkData', ''], | |
| '0in' => ['KnowledgeableUser', ''], | |
| '0In' => ['PhoenixDataSync', ''], | |
| '0IO' => ['BrandingValue', ''], | |
| '0Io' => ['RawEmail', ''], | |
| '0IS' => ['ApexComponentAttribute', ''], | |
| '0IT' => ['GridforceJob', ''], | |
| '0It' => ['WaveDataConnector', ''], | |
| '0IU' => ['HadoopJob', ''], | |
| '0Iu' => ['WaveBaseDataset', ''], | |
| '0IV' => ['LogSearch', ''], | |
| '0Iv' => ['WaveBaseField', ''], | |
| '0IW' => ['MobileApplicationDetail', ''], | |
| '0Iw' => ['RecommendationMetric', ''], | |
| '0IX' => ['FieldSet', ''], | |
| '0IY' => ['FieldSetItem', ''], | |
| '0Iy' => ['SplitFrameworkResult', ''], | |
| '0IZ' => ['JiffyTrace', ''], | |
| '0Iz' => ['PackageDependency', ''], | |
| '0J0' => ['SetupEntityAccess', ''], | |
| '0J2' => ['Personalization', ''], | |
| '0J4' => ['SPSamlAttributes', ''], | |
| '0J5' => ['PredictiveModel', ''], | |
| '0J8' => ['ServiceDeskHotkey', ''], | |
| '0J9' => ['ForecastingQuota', ''], | |
| '0Ja' => ['ReadOnlyOauthToken', ''], | |
| '0Jb' => ['ReadOnlyOauthTokenScope', ''], | |
| '0Jd' => ['ForecastingCategoryMapping', ''], | |
| '0JD' => ['MatchingRule', ''], | |
| '0JE' => ['MatchingRuleItem', ''], | |
| '0Je' => ['UserProvisioningConfig', ''], | |
| '0Jf' => ['DomainSite', ''], | |
| '0JF' => ['NotifDeliveryUserPref', ''], | |
| '0Jg' => ['ForecastingTypeToCategory', ''], | |
| '0Ji' => ['MacroInstruction', ''], | |
| '0Jj' => ['CopySuspension', ''], | |
| '0JJ' => ['MatchIndexValue', ''], | |
| '0JK' => ['MatchIndexDefinition', ''], | |
| '0Jk' => ['ReadOnlySecurityToken', ''], | |
| '0Jl' => ['ReadOnlyLoginIp', ''], | |
| '0JL' => ['ServiceDeskCustomStyling', ''], | |
| '0JM' => ['OauthTokenLocal', ''], | |
| '0Jm' => ['ReadOnlyLoginIpEmail', ''], | |
| '0Jn' => ['PlatformActionList', ''], | |
| '0Jo' => ['PlatformActionListItem', ''], | |
| '0JO' => ['SearchActivity', ''], | |
| '0Jp' => ['ReadOnlyClientBrowser', ''], | |
| '0JP' => ['RecordOrigin', ''], | |
| '0Jq' => ['SCSInboundSettings', ''], | |
| '0Jr' => ['ThirdPartyAccountLink', ''], | |
| '0JS' => ['JigsawSavedSearch', ''], | |
| '0Js' => ['SkinnyIndex', ''], | |
| '0JT' => ['JobTracker', ''], | |
| '0Jt' => ['SkinnyIndexColumn', ''], | |
| '0Ju' => ['RelationshipInfo', ''], | |
| '0JU' => ['UserListViewCriterion', ''], | |
| '0JV' => ['PlatformAction', ''], | |
| '0Jv' => ['RelationshipDomain', ''], | |
| '0JW' => ['SetupNode', ''], | |
| '0JX' => ['SetupCustomNode', ''], | |
| '0JY' => ['MacroAction', ''], | |
| '0Jy' => ['StandardAction', ''], | |
| '0JZ' => ['Macro', ''], | |
| '0Jz' => ['TodayGoal', ''], | |
| '0K0' => ['ActionKnowledgeSubmit', ''], | |
| '0K2' => ['ActionChatterPost', ''], | |
| '0K3' => ['ActionChatterPostRecipient', ''], | |
| '0K4' => ['SamplingStrategy', ''], | |
| '0K6' => ['SampledEntity', ''], | |
| '0K7' => ['StorageConfigAuditTrail', ''], | |
| '0KA' => ['UserConfigTransferSkill', ''], | |
| '0ka' => ['UserListPreference', ''], | |
| '0KB' => ['UserConfigTransferButton', ''], | |
| '0KD' => ['TabDefinition', ''], | |
| '0KG' => ['SqlIdToRequestMap', ''], | |
| '0Kg' => ['TwoFactorMethodsInfo', ''], | |
| '0Kh' => ['FormulaFunctionCategory', ''], | |
| '0Km' => ['CustomAppMetrics', ''], | |
| '0Kn' => ['FormulaFunction', ''], | |
| '0Ko' => ['GlobalVariable', ''], | |
| '0KO' => ['SecurityHealthCheckRisks', ''], | |
| '0Kp' => ['TwoFactorMethodsInfoLocal', ''], | |
| '0Kq' => ['LoginFlow', ''], | |
| '0KY' => ['StandardValueSet', ''], | |
| '0L2' => ['TenantPlatformLicense', ''], | |
| '0L3' => ['TenantUserLicense', ''], | |
| '0L4' => ['TenantEditionLicense', ''], | |
| '0L5' => ['TenantAddOnLicense', ''], | |
| '0Lc' => ['LicensedCustomPermission', ''], | |
| '0LC' => ['TenantLicensingRequest', ''], | |
| '0Ld' => ['LicenseDefinition', ''], | |
| '0LD' => ['RecalcCampaignStats', ''], | |
| '0LE' => ['SamlSsoConfig', ''], | |
| '0Lf' => ['UserFeedChannel', ''], | |
| '0LG' => ['ReportInstance', ''], | |
| '0LH' => ['SocialKeyJobLog', ''], | |
| '0Li' => ['AssetTokenEvent', ''], | |
| '0LI' => ['SocialKeyEntityErrorLog', ''], | |
| '0Lj' => ['AnalyticActionConfiguration', ''], | |
| '0LN' => ['StorageSizeJob', ''], | |
| '0LO' => ['SetupAssistantAnswer', ''], | |
| '0Lq' => ['EmbeddedServiceDetail', ''], | |
| '0M0' => ['FlexiPage', ''], | |
| '0M1' => ['SocialUserAuth', ''], | |
| '0M2' => ['FlexiPageRegion', ''], | |
| '0M3' => ['SocialKeyParentRecord', ''], | |
| '0M4' => ['SocialKeyPersonaRecord', ''], | |
| '0M6' => ['StreamingChannel', ''], | |
| '0M9' => ['SandboxObserver', ''], | |
| '0Ma' => ['SandboxObserver2', ''], | |
| '0MD' => ['SearchPromotionRule', ''], | |
| '0ME' => ['SessionLevelPolicy', ''], | |
| '0MF' => ['SynonymDictionary', ''], | |
| '0MH' => ['TransitionMessage', ''], | |
| '0MJ' => ['SystemStreamingChannel', ''], | |
| '0MK' => ['XCleanMatchRateMetrics', ''], | |
| '0MN' => ['LayoutSectionState', ''], | |
| '0MO' => ['AppNotifTypeOrgSetting', ''], | |
| '0MR' => ['MetricsDataFile', ''], | |
| '0mt' => ['ManagedTopicLocation', ''], | |
| '0MV' => ['UserFavorite', ''], | |
| '0MW' => ['BuffaloOrgEstimate', ''], | |
| '0N0' => ['UserMembershipSharingRule', ''], | |
| '0N1' => ['UserCriteriaSharingRule', ''], | |
| '0N2' => ['UserShare', ''], | |
| '0N3' => ['UserSharingRuleFilterItem', ''], | |
| '0Na' => ['UserListView', ''], | |
| '0NB' => ['SecureAgent', ''], | |
| '0ND' => ['SecureAgentPlugin', ''], | |
| '0NE' => ['SecureAgentPluginProperty', ''], | |
| '0Ng' => ['CleanInfo', ''], | |
| '0Nh' => ['CleanActivityLog', ''], | |
| '0NI' => ['TransactionSecurityPolicy', ''], | |
| '0Ni' => ['UserProvAccount', ''], | |
| '0Nj' => ['CleanEntityError', ''], | |
| '0NK' => ['S2XAdminError', ''], | |
| '0NL' => ['StandardReportType', ''], | |
| '0NM' => ['SearchQuerySuggestion', ''], | |
| '0NN' => ['PostArchivalDeletionRequest', ''], | |
| '0No' => ['LiveChatBlockingRule', ''], | |
| '0Np' => ['XCleanBulkJob', ''], | |
| '0NQ' => ['TransactionSecurityAction', ''], | |
| '0NR' => ['TransactionSecurityActionEvent', ''], | |
| '0ns' => ['ProcessNodeSecurity', ''], | |
| '0Nt' => ['SharedPicklistDefinition', ''], | |
| '0Nv' => ['EntityParticle', ''], | |
| '0Nw' => ['UserAppMenuCustomization', ''], | |
| '0O0' => ['XinstanceInfo', ''], | |
| '0O1' => ['TwoFactorU2F', ''], | |
| '0O6' => ['FieldMappingField', ''], | |
| '0O7' => ['FieldMappingRow', ''], | |
| '0O8' => ['FieldMapping', ''], | |
| '0OC' => ['TransactionSecurityCondition', ''], | |
| '0OO' => ['ProcessInstanceNode', ''], | |
| '0P0' => ['FlowVariableAssignment', ''], | |
| '0P1' => ['Certificate', ''], | |
| '0P2' => ['CertificateIp', ''], | |
| '0Pa' => ['PermissionSetAssignment', ''], | |
| '0PD' => ['CustomPermissionDependency', ''], | |
| '0PF' => ['ParallelJobItemData', ''], | |
| '0PL' => ['PermissionSetLicense', ''], | |
| '0PQ' => ['ProcessTimeQueue', ''], | |
| '0PS' => ['PermissionSet', 'Permission set metadata'], | |
| '0Q0' => ['Quote', ''], | |
| '0Qc' => ['ActionQuickCreate', ''], | |
| '0QD' => ['QuoteDocument', ''], | |
| '0QL' => ['QuoteLineItem', ''], | |
| '0QR' => ['QuoteTemplateRichTextData', ''], | |
| '0Qt' => ['VerificationHistory', ''], | |
| '0Qy' => ['SecureAgentsCluster', ''], | |
| '0R2' => ['UiPlugin', ''], | |
| '0RA' => ['ActivityRelation', ''], | |
| '0RD' => ['RecommendationDefinition', ''], | |
| '0RE' => ['EventRelation', ''], | |
| '0rp' => ['RemoteProxy', 'Remote Site Setting to allow access to an external URL.'], | |
| '0RT' => ['TaskRelation', ''], | |
| '0SE' => ['ProfileSkillEndorsement', ''], | |
| '0Sk' => ['ProfileSkill', ''], | |
| '0SM' => ['ProfileSkillUser', ''], | |
| '0SO' => ['AuthProvider', ''], | |
| '0sp' => ['ServiceProvider', ''], | |
| '0SP' => ['SocialPersona', ''], | |
| '0sr' => ['ScheduledRecommendation', ''], | |
| '0ST' => ['SocialPost', ''], | |
| '0t0' => ['TagDefinition', ''], | |
| '0ta' => ['TopicComputeStatus', ''], | |
| '0te' => ['TopicUserEvent', ''], | |
| '0tg' => ['TopicGroupActivity', ''], | |
| '0TI' => ['TopicIndex', ''], | |
| '0tn' => ['TopicNameChange', ''], | |
| '0TO' => ['Topic', ''], | |
| '0TR' => ['CloudConfiguration', ''], | |
| '0tR' => ['TopicRecordSetting', ''], | |
| '0tr' => ['TrendingTopic', ''], | |
| '0ts' => ['ProcessTransitionSecurity', ''], | |
| '0tS' => ['TopicSuggestionSetting', ''], | |
| '0Tt' => ['TopicTerm', ''], | |
| '0TT' => ['Trialforce', 'Template'], | |
| '0tu' => ['TopicUserActivity', ''], | |
| '0TY' => ['TopicOntology', ''], | |
| '0ur' => ['UserRecSummary', ''], | |
| '0UT' => ['TenantUsageEntitlement', ''], | |
| '0W0' => ['WorkThanks', ''], | |
| '0W1' => ['WorkBadgeDefinition', ''], | |
| '0W2' => ['WorkBadge', ''], | |
| '0W3' => ['WorkReward', ''], | |
| '0W4' => ['WorkRewardFund', ''], | |
| '0W5' => ['WorkAccess', ''], | |
| '0W7' => ['WorkPerformanceCycle', ''], | |
| '0W8' => ['WorkFeedbackQuestionSet', ''], | |
| '0WA' => ['WorkFeedbackQuestion', ''], | |
| '0WB' => ['WorkFeedback', ''], | |
| '0WC' => ['WorkFeedbackRequest', ''], | |
| '0WD' => ['WorkCoaching', ''], | |
| '0WE' => ['WorkGoal', ''], | |
| '0WF' => ['WorkGoalCollaborator', ''], | |
| '0WG' => ['WorkGoalLink', ''], | |
| '0WH' => ['WorkRewardFundType', ''], | |
| '0WI' => ['Goal', ''], | |
| '0WJ' => ['Metric', ''], | |
| '0WK' => ['GoalLink', ''], | |
| '0WL' => ['WorkFeedbackTemplate', ''], | |
| '0WM' => ['MetricDataLink', ''], | |
| '0WO' => ['WorkOrder', ''], | |
| '0XA' => ['NamedCredential', ''], | |
| '0XC' => ['ExternalDataSource', 'Data Source for External Objects'], | |
| '0XU' => ['ExternalDataUserAuth', ''], | |
| '0Ya' => ['LoginHistory', ''], | |
| '0Ym' => ['SetupAuditTrail', ''], | |
| '0Yq' => ['RateLimitIntBuckets', ''], | |
| '0Ys' => ['ParallelJobStatus', ''], | |
| '0Yu' => ['IdpEventLog', ''], | |
| '0Yw' => ['UserLogin', ''], | |
| '0ZQ' => ['SendEmailActionDefinition', ''], | |
| '100' => ['UserLicense', ''], | |
| '101' => ['ExternalString', 'Custom Label'], | |
| '102' => ['FeatureLicense', ''], | |
| '10y' => ['TaskRecurrenceException', ''], | |
| '10z' => ['EventRecurrenceException', ''], | |
| '110' => ['ObjectPermissions', ''], | |
| '111' => ['EventComments', ''], | |
| '112' => ['ProposedEventTime', ''], | |
| '113' => ['ProposedEventResponse', ''], | |
| '11a' => ['DBCThumbnail', ''], | |
| '19i' => ['EmbeddedServiceBranding', ''], | |
| '1AB' => ['CleanAccountBackup', ''], | |
| '1bm' => ['BranchMerge', ''], | |
| '1br' => ['Branch', ''], | |
| '1CA' => ['AccountCleanInfo', ''], | |
| '1cb' => ['ChangeListBranch', ''], | |
| '1CB' => ['CleanContactBackup', ''], | |
| '1CC' => ['ContactCleanInfo', ''], | |
| '1CF' => ['PathAssistantStepInfo', ''], | |
| '1ci' => ['Integration', ''], | |
| '1cl' => ['ChangeList', ''], | |
| '1CL' => ['LeadCleanInfo', ''], | |
| '1CP' => ['PathAssistant', ''], | |
| '1CS' => ['PathAssistantStepItem', ''], | |
| '1dc' => ['MetadataContainer', 'from the Tooling AP'], | |
| '1de' => ['IDEWorkspace', ''], | |
| '1do' => ['ApexExecutionOverlayAction', ''], | |
| '1dp' => ['IDEPerspective', ''], | |
| '1dr' => ['ContainerAsyncRequest', 'from the Tooling API'], | |
| '1EF' => ['DataDotComFieldSetting', ''], | |
| '1ES' => ['DataDotComEntitySetting', ''], | |
| '1EV' => ['CustomEvent', ''], | |
| '1FS' => ['CleanFieldSettingOld', ''], | |
| '1gh' => ['GitHubRepositoryLink', ''], | |
| '1gp' => ['GitHubPushOperation', ''], | |
| '1HB' => ['LoginEvent', ''], | |
| '1HC' => ['PlatformEventMetric', ''], | |
| '1JS' => ['CleanJobSetting', ''], | |
| '1L7' => ['ComparisonSummary', ''], | |
| '1L8' => ['ComparisonResult', ''], | |
| '1LB' => ['CleanLeadBackup', ''], | |
| '1mr' => ['MetadataRevisionTemplate', ''], | |
| '1pm' => ['PartitionLevelMember', ''], | |
| '1ps' => ['PartitionLevelScheme', ''], | |
| '1rp' => ['Repository', ''], | |
| '1rr' => ['ResetAsyncRequest', ''], | |
| '1S1' => ['MenuItem', ''], | |
| '1sa' => ['StagingArea', ''], | |
| '1SA' => ['StampAssignment', ''], | |
| '1ST' => ['Stamp', ''], | |
| '1vc' => ['VersionedContentEntity', ''], | |
| '1WL' => ['WorkOrderLineItem', ''], | |
| '200' => ['ChunkableTask', ''], | |
| '201' => ['ChunkableEntityTally', ''], | |
| '202' => ['ChunkableEntityChunk', ''], | |
| '203' => ['ChunkableEntityTally2', ''], | |
| '204' => ['SfdcPartner', ''], | |
| '205' => ['ChunkableEntityChunk2', ''], | |
| '208' => ['SFDC_DIVISION', ''], | |
| '2FE' => ['CleanFactEntityClaim', ''], | |
| '2FF' => ['CleanFactFieldClaim', ''], | |
| '2LA' => ['PermissionSetLicenseAssign', ''], | |
| '300' => ['FlowDefinition', 'InteractionDefinition - Visual Workflow or Flow'], | |
| '301' => ['InteractionDefinitionVersion', ''], | |
| '308' => ['InteractionCondition', ''], | |
| '309' => ['InteractionOperand', ''], | |
| '30a' => ['InteractionAllocation', ''], | |
| '30A' => ['InteractionAllocator', ''], | |
| '30C' => ['InteractionChoice', ''], | |
| '30c' => ['InteractionConstant', ''], | |
| '30d' => ['InteractionDataColumn', ''], | |
| '30D' => ['InteractionDecision', ''], | |
| '30e' => ['InteractionWaitEvent', ''], | |
| '30F' => ['InteractionForm', ''], | |
| '30f' => ['InteractionFormula', ''], | |
| '30g' => ['InteractionLayoutGroup', ''], | |
| '30L' => ['InteractionConnector', ''], | |
| '30m' => ['InteractionApexCall', ''], | |
| '30p' => ['InteractionWaitEventParam', ''], | |
| '30Q' => ['InteractionQuestion', ''], | |
| '30R' => ['InteractionReference', ''], | |
| '30r' => ['InteractionResource', ''], | |
| '30S' => ['InteractionStatement', ''], | |
| '30t' => ['InteractionTodo', ''], | |
| '30v' => ['InteractionValueList', ''], | |
| '30V' => ['InteractionVariable', ''], | |
| '30W' => ['InteractionWait', ''], | |
| '310' => ['InteractionLayoutDetail', ''], | |
| '31A' => ['Subinteraction', ''], | |
| '31c' => ['InteractionChoiceLookup', ''], | |
| '31C' => ['SubinteractionVariableAssignment', ''], | |
| '31d' => ['InteractionDataSource', ''], | |
| '31i' => ['InteractionDataInput', ''], | |
| '31o' => ['InteractionDataOutput', ''], | |
| '31S' => ['InteractionSwitch', ''], | |
| '31V' => ['InteractionFieldValue', ''], | |
| '31v' => ['InteractionValueListEntry', ''], | |
| '3Db' => ['EventDelivery', ''], | |
| '3DP' => ['EventDeliveryData', ''], | |
| '3Dp' => ['EventDeliveryParam', ''], | |
| '3HP' => ['EventSubscriptionHandleData', ''], | |
| '3J5' => ['ProfileIpRestrictionMetrics', ''], | |
| '3M0' => ['DataDotComCleanMetrics', ''], | |
| '3M1' => ['OrgObjectsMetrics', ''], | |
| '3M2' => ['OrgStandardObjectsMetrics', ''], | |
| '3M3' => ['ChatterMetrics', ''], | |
| '3M4' => ['ChatterOrgWideMetrics', ''], | |
| '3M5' => ['NetworkCustomerLoginMetrics', ''], | |
| '3M6' => ['NetworkPartnerLoginMetrics', ''], | |
| '3MA' => ['PermissionSetMetricsByOrg', ''], | |
| '3MB' => ['DataDotComSocialMetrics', ''], | |
| '3MC' => ['OpportunityMetrics', ''], | |
| '3MD' => ['ContentMetrics', ''], | |
| '3ME' => ['CustomObjectUsageMetrics', ''], | |
| '3MF' => ['SharingRowCauseMetrics', ''], | |
| '3MG' => ['SharingMetrics', ''], | |
| '3MH' => ['IdeaMetrics', ''], | |
| '3MI' => ['UserDimMetrics', ''], | |
| '3MJ' => ['PermissionSetLicenseMetrics', ''], | |
| '3MK' => ['OpptyAndPricingMetrics', ''], | |
| '3MM' => ['ChatterGroupConMetrics', ''], | |
| '3MN' => ['ChatterUserNetworkMetrics', ''], | |
| '3MO' => ['QuickActionMetrics', ''], | |
| '3MQ' => ['VisualforceMetrics', ''], | |
| '3MR' => ['EventLogFileMetrics', ''], | |
| '3MS' => ['DataDotComListPoolMetrics', ''], | |
| '3MT' => ['ProcessMetrics', ''], | |
| '3MU' => ['DeclarativePlatformMetrics', ''], | |
| '3MV' => ['SharingUserMetrics', ''], | |
| '3MW' => ['PlatformOrgObjectMetrics', ''], | |
| '3N1' => ['ExtIdentityLoginMetrics', ''], | |
| '3NA' => ['CustomObjectUserLicenseMetrics', ''], | |
| '3NO' => ['OpportunitySplitMetrics', ''], | |
| '3NS' => ['SandboxOrgDimensionMetrics', ''], | |
| '3NT' => ['SandboxDimensionMetrics', ''], | |
| '3NU' => ['DataDotComCleanPrefMetrics', ''], | |
| '3NV' => ['TwoFactorMetrics', ''], | |
| '3NW' => ['NetworkPowerCustomerLoginMetrics', ''], | |
| '3NX' => ['LightningComponentMetrics', ''], | |
| '3NY' => ['ChatterUniqueContributorDailyMetrics', ''], | |
| '3NZ' => ['ChatterActivityDailyMetrics', ''], | |
| '3Pb' => ['EventPublication', ''], | |
| '3Ph' => ['EventPublicationHandle', ''], | |
| '3PP' => ['EventParameterData', ''], | |
| '3Pp' => ['EventPublicationParam', ''], | |
| '3SP' => ['EventSubscriptionData', ''], | |
| '400' => ['ApexClassMember', ''], | |
| '401' => ['ApexTriggerMember', ''], | |
| '402' => ['ApexPageMember', ''], | |
| '403' => ['ApexComponentMember', ''], | |
| '404' => ['WorkflowRuleMember', ''], | |
| '405' => ['ValidationRuleMember', ''], | |
| '406' => ['WorkflowFieldUpdateMember', ''], | |
| '407' => ['WorkflowTaskMember', ''], | |
| '408' => ['WorkflowAlertMember', ''], | |
| '410' => ['WorkflowOutboundMessageMember', ''], | |
| '412' => ['CustomFieldMember', ''], | |
| '413' => ['ContentLogMetricsByFileType', ''], | |
| '4A0' => ['PendingChange', ''], | |
| '4ci' => ['CompactLayoutItemInfo', ''], | |
| '4cl' => ['CompactLayoutInfo', ''], | |
| '4co' => ['SearchLayout', ''], | |
| '4dt' => ['DataType', ''], | |
| '4F0' => ['ApexClassVersion', ''], | |
| '4F1' => ['ApexTriggerVersion', ''], | |
| '4F2' => ['ApexPageVersion', ''], | |
| '4F3' => ['ApexComponentVersion', ''], | |
| '4F4' => ['CustomFieldVersion', ''], | |
| '4F5' => ['EntityDefinitionVersion', ''], | |
| '4fe' => ['FieldDefinition', ''], | |
| '4fp' => ['UserFieldAccess', ''], | |
| '4ft' => ['ServiceFieldDataType', ''], | |
| '4ie' => ['EntityDefinition', ''], | |
| '4NA' => ['CooperSettingsMetrics', ''], | |
| '4NB' => ['SupportOrgWideMetrics', ''], | |
| '4pb' => ['Publisher', ''], | |
| '4pv' => ['PicklistValueInfo', ''], | |
| '4sr' => ['Service', ''], | |
| '4st' => ['ServiceDataType', ''], | |
| '4sv' => ['ServiceVersion', ''], | |
| '4ve' => ['ApexPageInfo', ''], | |
| '4ws' => ['WebServiceDefinition', ''], | |
| '4wt' => ['WsdlDataType', ''], | |
| '4xs' => ['XmlSchema', ''], | |
| '500' => ['Case', ''], | |
| '501' => ['Solution', ''], | |
| '570' => ['LiveChatTranscript', ''], | |
| '571' => ['LiveChatVisitor', ''], | |
| '572' => ['LiveChatDeployment', ''], | |
| '573' => ['LiveChatButton', ''], | |
| '574' => ['QuickText', ''], | |
| '5CS' => ['ChatSession', ''], | |
| '5Pa' => ['SessionPermSetActivation', ''], | |
| '5Sp' => ['SegmentSpace', ''], | |
| '600' => ['BILLING_DIVISION', ''], | |
| '601' => ['BILLING_ORDER', ''], | |
| '602' => ['CURRENCY', ''], | |
| '604' => ['PLAN', ''], | |
| '605' => ['PRODUCT', ''], | |
| '606' => ['BILLING_ORDER_ITEM', ''], | |
| '607' => ['PLAN_PRODUCT', ''], | |
| '608' => ['ForecastShare', ''], | |
| '6AA' => ['AssociationQueueItem', ''], | |
| '6AB' => ['EventAssociationItem', ''], | |
| '6AC' => ['MailAssociationItem', ''], | |
| '6AD' => ['TaskAssociationItem', ''], | |
| '6pS' => ['PartitionStatus', ''], | |
| '6SS' => ['SegmentSpaceChunk', ''], | |
| '700' => ['MetadataChangeTemplate', ''], | |
| '701' => ['Campaign', ''], | |
| '707' => ['AsyncApexJob', ''], | |
| '708' => ['BatchApexRelationship', ''], | |
| '709' => ['ApexTestQueueItem', ''], | |
| '70a' => ['AssetShare', ''], | |
| '70b' => ['AssetOwnerSharingRule', ''], | |
| '70c' => ['AssetCriteriaSharingRule', ''], | |
| '70d' => ['AssetSharingRuleFilterItem', ''], | |
| '710' => ['LoginIp', ''], | |
| '711' => ['ApiLoginKey', ''], | |
| '712' => ['LoginIpEmail', ''], | |
| '713' => ['ClientBrowser', ''], | |
| '714' => ['ApexCodeCoverage', ''], | |
| '715' => ['ApexCodeCoverageAggregate', ''], | |
| '716' => ['ApexOrgWideCoverage', ''], | |
| '729' => ['Photo', ''], | |
| '737' => ['FieldHistory', ''], | |
| '750' => ['AsyncApiJob', 'Bulk Query Job'], | |
| '751' => ['AsyncApiBatch', 'Bulk Query Batch'], | |
| '752' => ['AsyncApiQueryResult', 'Bulk Query Result'], | |
| '753' => ['TempStore', ''], | |
| '754' => ['AsyncApiJobOptions', ''], | |
| '766' => ['UiStyleDefinition', ''], | |
| '777' => ['UiStyle', ''], | |
| '7dl' => ['DebugLevel', ''], | |
| '7Eq' => ['LeadConvertMapping', ''], | |
| '7tf' => ['TraceFlag', ''], | |
| '7tg' => ['S2XGoogleServiceAccount', ''], | |
| '800' => ['Contract', ''], | |
| '801' => ['Order', ''], | |
| '802' => ['OrderItem', ''], | |
| '803' => ['INVOICE', ''], | |
| '804' => ['INVOICE_ITEM', ''], | |
| '805' => ['PAYMENT', ''], | |
| '806' => ['Approval', ''], | |
| '807' => ['URI_BLOCK_RULE', ''], | |
| '80D' => ['OrganizationValue', ''], | |
| '811' => ['ContractLineItem', ''], | |
| '817' => ['S2XTransaction', ''], | |
| '820' => ['S2XRecordMap', ''], | |
| '822' => ['S2XUserMap', ''], | |
| '823' => ['S2XServiceAccount', ''], | |
| '824' => ['S2XTransactionLock', ''], | |
| '825' => ['S2XEventRecordMap', ''], | |
| '888' => ['OauthConsumer', 'Remote Access'], | |
| '889' => ['OauthConsumerAsset', ''], | |
| '9BV' => ['PackageBooleanValue', ''], | |
| '9DV' => ['PackageDateValue', ''], | |
| '9NV' => ['PackageIntegerValue', ''], | |
| 'Also' => [ | |
| 'OpportunityPartner', | |
| 'which "is automatically created when a Partner object is created for a partner relationship between an account and an opportunity"' | |
| ], | |
| 'CF00N' => [ | |
| 'Custom', | |
| 'Field Id using in the query string. Note the keyprefix isn\'t actually CF0. In this case "CF" has been appended to the "00N" of the Custom Field Definition.' | |
| ], | |
| 'ka0' => ['Article', 'Knowledge Article'], | |
| 'X00' => [ | |
| 'Found', | |
| 'in the PermissionSet Name column where the ProfileId is also defined. It matches the ProfileId with the exception of the key prefix.' | |
| ], | |
| ]; | |
| //Create reverse mapping from entity name to prefix | |
| $rprefixes = []; | |
| foreach ($prefixes as $prefix => $info) { | |
| $rprefixes[$info[0]] = $prefix; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment